summaryrefslogtreecommitdiffstats
authorNina Li2006-04-05 02:15:06 (EDT)
committer Nina Li2006-04-05 02:15:06 (EDT)
commitfe41917b2706c3a4f1fd9b0efadf6d564184de0b (patch) (side-by-side diff)
tree43713b6dc320e7e47e8bc5bce27c940f9dc1e217
parent8fc6854da4764359d4500cfdeb1f492e06c20030 (diff)
downloadorg.eclipse.birt-fe41917b2706c3a4f1fd9b0efadf6d564184de0b.zip
org.eclipse.birt-fe41917b2706c3a4f1fd9b0efadf6d564184de0b.tar.gz
org.eclipse.birt-fe41917b2706c3a4f1fd9b0efadf6d564184de0b.tar.bz2
- Summary: Chart Tests need to be updated to reflect recent changes
- Bugzilla Bug (s) Resolved: 134557 - Description: Update the chart JUnit tests - Tests Description : Unit tests - Files Edited: - Files Added: - Notes to Build Team: None - Notes to Developers: None - Notes to QA: None - Notes to Documentation: None
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--chart/org.eclipse.birt.chart.tests/META-INF/MANIFEST.MF7
-rw-r--r--chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/AllTests.java2
-rw-r--r--chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/2dline.svg260
-rw-r--r--chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/2dpie.svg260
-rw-r--r--chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/2dscatter.svg260
-rw-r--r--chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/2dstock.svg260
-rw-r--r--chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/2dvert.svg260
-rw-r--r--chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/2dvert2.svg260
-rw-r--r--chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/3dline.svg260
-rw-r--r--chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/3dpie.svg260
-rw-r--r--chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/3dvert.svg260
-rw-r--r--chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/primitives/arc.svg260
-rw-r--r--chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/primitives/line.svg260
-rw-r--r--chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/primitives/polygon.svg260
-rw-r--r--chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/primitives/rect.pngbin1014 -> 1031 bytes
-rw-r--r--chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/primitives/rect.svg260
-rw-r--r--chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/engine/EngineTest.java12
-rw-r--r--chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/engine/computation/RectangleTest.java71
-rw-r--r--chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/engine/computation/ValueFormatterTest.java33
-rw-r--r--chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/engine/datafeed/DataSetProcessorImplTest.java69
-rw-r--r--chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/engine/datafeed/StockDataSetProcessorImplTest.java68
-rw-r--r--chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/engine/internal/MatrixTest.java96
-rw-r--r--chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/engine/internal/TupleComparatorTest.java9
-rw-r--r--chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/engine/util/FractionTest.java8
-rw-r--r--chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/i18n/MessagesTest.java9
25 files changed, 3029 insertions, 735 deletions
diff --git a/chart/org.eclipse.birt.chart.tests/META-INF/MANIFEST.MF b/chart/org.eclipse.birt.chart.tests/META-INF/MANIFEST.MF
index a243907..54c437d 100644
--- a/chart/org.eclipse.birt.chart.tests/META-INF/MANIFEST.MF
+++ b/chart/org.eclipse.birt.chart.tests/META-INF/MANIFEST.MF
@@ -24,12 +24,13 @@ Export-Package: org.eclipse.birt.chart.tests,
org.eclipse.birt.chart.tests.engine.model.attribute,
org.eclipse.birt.chart.tests.engine.util,
org.eclipse.birt.chart.tests.i18n,
- org.eclipse.birt.chart.tests.reportitem,
org.eclipse.birt.chart.tests.util
-Require-Bundle: org.eclipse.birt.chart.device.extension,
+Require-Bundle: org.eclipse.core.runtime,
+ org.eclipse.birt.chart.device.extension,
org.eclipse.birt.chart.device.svg,
org.eclipse.birt.chart.engine,
org.eclipse.birt.chart.engine.extension,
- org.eclipse.birt.chart.reportitem,
+ org.eclipse.birt.core,
+ org.eclipse.emf.ecore,
org.junit
Eclipse-LazyStart: true
diff --git a/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/AllTests.java b/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/AllTests.java
index 719de53..2b48763 100644
--- a/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/AllTests.java
+++ b/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/AllTests.java
@@ -14,7 +14,6 @@ package org.eclipse.birt.chart.tests;
import org.eclipse.birt.chart.tests.i18n.I18nTest;
import org.eclipse.birt.chart.tests.device.DeviceTest;
import org.eclipse.birt.chart.tests.engine.EngineTest;
-import org.eclipse.birt.chart.tests.reportitem.ReportItemTest;
import junit.framework.Test;
import junit.framework.TestSuite;
@@ -28,7 +27,6 @@ public class AllTests {
suite.addTest(DeviceTest.suite());
suite.addTest(I18nTest.suite());
suite.addTest(EngineTest.suite());
- suite.addTest(ReportItemTest.suite());
//$JUnit-END$
return suite;
diff --git a/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/2dline.svg b/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/2dline.svg
index b6d0079..5ee2988 100644
--- a/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/2dline.svg
+++ b/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/2dline.svg
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="533.0" height="333.0"><g style="fill:none;stroke:none"><defs/><script><![CDATA[function BuildHelper(tag, attrList, text) {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="533.0" height="333.0"><g id="outerG" style="fill:none;stroke:none"><defs/><script><![CDATA[function BuildHelper(tag, attrList, text) {
this.tag = tag;
this.attrList = attrList;
this.text = text;
@@ -71,42 +71,82 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
}
}
- TM.show = function TooltiplManager_showTooltip(evt){
- var text = TM.getText(TM.getTitleElement(evt));
- x = evt.clientX;
- y = evt.clientY;
- if (typeof this.group == 'undefined'){
- this.height = 15;
- this.xPadding = 5;
- this.yPadding = -20;
- var mainSvg = evt.target.ownerDocument.documentElement;
- var off = mainSvg.currentTranslate;
- var scl = mainSvg.currentScale;
- this.group = new BuildHelper("g",
- {
- transform:"translate("+(((x+20))/scl)+","+(((y+20))/scl)+")"
- } );
- this.group.addToParent(mainSvg);
- this.rectangle = new BuildHelper("rect",
- {id:"test",
- x: 0,
- y: this.yPadding,
- height: this.height,
- classType: "tooltip"
- } );
- this.rectangle.addToParent(this.group.element);
- var textObj = new BuildHelper("text",
- {id:"tooltip",
- x: this.xPadding,
- y: (this.height/2+4+this.yPadding),
- classType: "tooltip text"
- },text);
- textObj.addToParent(this.group.element);
- var itemlength = textObj.element.getComputedTextLength();
- this.rectangle.element.setAttributeNS(null, "width", (itemlength+2*this.xPadding));
- }
- }
-
+ TM.show = function TooltiplManager_showTooltip(evt){
+ var text = TM.getText(TM.getTitleElement(evt));
+ x = evt.clientX;
+ y = evt.clientY;
+ update = true;
+ if (this.oldX != 'undefined'){
+ diffX = (x - this.oldX);
+ if (diffX < 0) diffX= diffX*(-1);
+ diffY = (y - this.oldY);
+ if (diffY < 0) diffY= diffY*(-1);
+ if ((diffY > 5) || (diffX > 5))
+ update = true;
+ }
+ if (update)
+ TM.remove();
+ if (typeof this.group == 'undefined'){
+ this.oldX = x;
+ this.oldY = y;
+ this.height = 15;
+ this.xPadding = 5;
+ this.yPadding = 20;
+ var mainSvg = evt.target.ownerDocument.documentElement;
+ var off = mainSvg.currentTranslate;
+ var scl = mainSvg.currentScale;
+ var adjustedX = (x-off.x)/scl;
+ var adjustedY = (y-off.y)/scl;
+ this.group = new BuildHelper("g",
+ {
+ opacity:0.8,
+ display: "inline",
+ transform:"translate("+(adjustedX + (10/scl))+","+(adjustedY + (10/scl))+")"
+ } );
+ this.group.addToParent(mainSvg);
+ this.rectangle = new BuildHelper("rect",
+ {id:"test",
+ x: 0,
+ y: 5,
+ transform:"scale("+(1/scl)+","+(1/scl)+")",
+ rx: 2,
+ ry: 2,
+ stroke: "black",
+ height: this.height,
+ classType: "tooltip"
+ } );
+ this.rectangle.addToParent(this.group.element);
+ var textObj = new BuildHelper("text",
+ {id:"tooltip",
+ x: this.xPadding,
+ y: (this.yPadding),
+ transform:"scale("+(1/scl)+","+(1/scl)+")",
+ classType: "tooltip text"
+ });
+ textObj.addToParent(this.group.element);
+ TM.setContent(textObj, text);
+ var outline = textObj.element.getBBox();
+ this.rectangle.element.setAttributeNS(null, "width", (outline.width+2*this.xPadding));
+ this.rectangle.element.setAttributeNS(null, "height", (outline.height+6));
+ }
+ }
+ TM.setContent = function TooltipManager_setContent(textElement, text){
+ var multiLine = text.split(/\\n/);
+ for (var x=0; x<multiLine.length; x++){
+ if (x == 0){
+ textObj = new BuildHelper("tspan",
+ {x: 5
+ },multiLine[x]);
+ }
+ else{
+ textObj = new BuildHelper("tspan",
+ {x: 5,
+ dy:17
+ },multiLine[x]);
+ }
+ textObj.addToParent(textElement.element);
+ }
+ }
TM.getTitleElement = function TM_getTitleElement(evt){
var elem = evt.currentTarget;
@@ -126,15 +166,18 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
return childs.item(x).nodeValue;
return "";
}
- function toggleVisibility(evt, id, compList){
+ function toggleLabelsVisibility(evt, id, compList, labelList){
var mainSvg = evt.target.ownerDocument;
for (i = 0; i < compList.length; i=i+1){
var comp = mainSvg.getElementById(id+'_'+compList[i]);
+ if ( comp == null ) continue;
var styleStr = comp.getAttribute("style");
- rVisibleExp=/visibility:visible/g;
- rHiddenExp=/visibility:hidden/g;
+ rVisibleExp=/visibility:[ ]*visible/g;
+ rInheritExp=/visibility:[ ]*inherit/g;
+ rHiddenExp=/visibility:[ ]*hidden/g;
results = styleStr.search(rVisibleExp);
- if (results == -1){
+ inResults = styleStr.search(rInheritExp);
+ if ((results == -1) && (inResults == -1)){
results = styleStr.search(rHiddenExp);
if (results == -1)
styleStr = styleStr + "visibility:hidden;";
@@ -142,10 +185,74 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
styleStr = styleStr.replace(rHiddenExp,"visibility:visible");
}
else{
+ if (inResults == -1){
styleStr = styleStr.replace(rVisibleExp,"visibility:hidden");
+ }else{
+ styleStr = styleStr.replace(rInheritExp,"visibility:hidden");
+ }
}
comp.setAttributeNS(null, "style", styleStr);
}
+ }
+ function toggleVisibility(evt, id, compList, labelList){
+ var mainSvg = evt.target.ownerDocument;
+ var isHidden = true;
+ for (i = 0; i < compList.length; i=i+1){
+ var comp = mainSvg.getElementById(id+'_'+compList[i]);
+ if ( comp == null ) continue;
+ var styleStr = comp.getAttribute("style");
+ rVisibleExp=/visibility:[ ]*visible/g;
+ rHiddenExp=/visibility:[ ]*hidden/g;
+ results = styleStr.search(rVisibleExp);
+ if (results == -1){
+ results = styleStr.search(rHiddenExp);
+ if (results == -1)
+ styleStr = styleStr + "visibility:hidden;";
+ else{
+ styleStr = styleStr.replace(rHiddenExp,"visibility:visible");
+ isHidden = false;
+ }
+ }
+ else{
+ styleStr = styleStr.replace(rVisibleExp,"visibility:hidden");
+ }
+ comp.setAttributeNS(null, "style", styleStr);
+ }
+ if (labelList != null){
+ for (i = 0; i < labelList.length; i=i+1){
+ var comp = mainSvg.getElementById(id+'_'+labelList[i]+'_g');
+ var styleStr = comp.getAttribute("style");
+ if (isHidden){
+ styleStr = styleStr + "visibility:hidden;";
+ toggleLabelVisibility(evt, id+'_'+labelList[i], 'inherit');
+ }else{
+ styleStr = styleStr.replace(rHiddenExp,"visibility:visible");
+ }
+ comp.setAttributeNS(null, "style", styleStr);
+ }
+ }
+ }
+ function toggleLabelVisibility(evt, id, property){
+ var mainSvg = evt.target.ownerDocument;
+ var comp = mainSvg.getElementById(id);
+ var styleStr = comp.getAttribute("style");
+ rVisibleExp=/visibility:[ ]*visible/g;
+ rInheritExp=/visibility:[ ]*inherit/g;
+ rHiddenExp=/visibility:[ ]*hidden/g;
+ results = styleStr.search(rVisibleExp);
+ inResults = styleStr.search(rInheritExp);
+ if ((results == -1) && (inResults == -1)){
+ results = styleStr.search(rHiddenExp);
+ if (results == -1)
+ styleStr = styleStr + "visibility:"+property+";";
+ }
+ else{
+ if (inResults == -1)
+ styleStr = styleStr.replace(rVisibleExp,"visibility:"+property);
+ else
+ styleStr = styleStr.replace(rInheritExp,"visibility:"+property);
+ }
+ comp.setAttributeNS(null, "style", styleStr);
}
function toHex(val)
{
@@ -162,51 +269,104 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
}
var oldCompId = null;
var oldCompList = null;
+ var fillToColor = new Array();
+ var strokeToColor = new Array();
function highlight(evt, id, compList){
- highlightElement(evt, oldCompId, oldCompList);
+ highlightElement(evt, oldCompId, oldCompList, false);
if (id != oldCompId){
- highlightElement(evt, id, compList);
+ highlightElement(evt, id, compList, true);
oldCompId = id;
oldCompList = compList;
}
else{
oldCompId = null;
oldCompList = null;
+ fillToColor = new Array();
+ strokeToColor = new Array();
}
}
- function highlightElement(evt, id, compList){
+ function highlightElement(evt, id, compList, highlight){
if ((id == null) || (compList == null)) return;
var mainSvg = evt.target.ownerDocument;
for (i = 0; i < compList.length; i=i+1){
var comp = mainSvg.getElementById(id+'_'+compList[i]);
+ if ( comp == null ) continue;
var styleStr = comp.getAttribute("style");
fillIndex = styleStr.search("fill:");
if (fillIndex != -1){
- styleStr = getNewStyle(styleStr, fillIndex, "fill:");
+ styleStr = getNewStyle(styleStr, fillIndex, "fill:", highlight, fillToColor, compList[i]);
}
strokeIndex = styleStr.search("stroke:");
if (strokeIndex != -1){
- styleStr = getNewStyle(styleStr, strokeIndex, "stroke:");
+ styleStr = getNewStyle(styleStr, strokeIndex, "stroke:", highlight, strokeToColor, compList[i]);
}
comp.setAttributeNS(null, "style", styleStr);
}
}
- function getNewStyle(style, index, styleAttr){
+ function getNewStyle(style, index, styleAttr, highlight, lookUpTable, id){
color = style.substring(index+styleAttr.length, style.length );
rgbIndex = color.search("rgb");
if (rgbIndex == -1){
hexColor = color.substring(1, 7);
- hc = getXorColor(hexColor);
+ hc = getHighlight(hexColor, highlight, lookUpTable, id);
return style.replace(styleAttr+"#"+hexColor,styleAttr+hc);
}
else{
bracketIndex = color.search("\\)");
color = color.substring(0, bracketIndex);
hexColor = getHexFromRGB(color);
- hc = getXorColor(hexColor);
+ hc = getHighlight(hexColor, highlight, lookUpTable, id);
return style.substring(0, index) + styleAttr+hc+ style.substring(index+bracketIndex+styleAttr.length+1, style.length);
}
}
+ function isIE(){
+ var agt=parent.navigator.userAgent.toLowerCase();
+ return (agt.indexOf("msie")!=-1);
+}
+ function resizeSVG(e){
+ if(isIE()){
+ var root=e.target.ownerDocument.documentElement;
+ var hotSpot = e.target.ownerDocument.getElementById('hotSpots');
+ var g = e.target.ownerDocument.getElementById('outerG');
+ var xScale = (innerWidth) / root.getAttribute('width');
+ var yScale = (innerHeight) / root.getAttribute('height');
+ g.setAttributeNS(null, 'transform', 'scale('+xScale+','+yScale+')');
+ hotSpot.setAttributeNS(null, 'transform', 'scale('+xScale+','+yScale+')');
+ }
+ }
+ function getHighlight(color, highlight, lookupTable, id){
+ if (!(highlight)){
+ color = lookupTable[id];
+ }
+ else{
+ lookupTable[id] = color;
+ }
+ r = color.substring(0, 2);
+ r = parseInt(r, 16);
+ g = color.substring(2, 4);
+ g = parseInt(g, 16);
+ b = color.substring(4, 6);
+ b = parseInt(b, 16);
+ var value = parseInt(r, 16);
+ if (highlight){
+ r = Math.ceil( (r + 255) / 2 );
+ g = Math.ceil( (g + 255) / 2 );
+ b = Math.ceil( (b + 255) / 2 );
+ }
+ rStr = r.toString(16);
+ gStr = g.toString(16);
+ bStr = b.toString(16);
+ while (rStr.length < 2){
+ rStr = "0"+rStr;
+ }
+ while (gStr.length < 2){
+ gStr = "0"+gStr;
+ }
+ while (bStr.length < 2){
+ bStr = "0"+bStr;
+ }
+return "#"+rStr+gStr+bStr;
+}
function getHexFromRGB(color){
findThem = /\d{1,3}/g;
listOfnum = color.match(findThem);
@@ -224,4 +384,4 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
}
return r+g+b;
}
-]]></script><style type="text/css"><![CDATA[.tooltip.text{ text-anchor:left;font-size:12pt;fill:black;}.tooltip{fill:rgb(244,245,235)}]]></style><path d=" M0.0 0.0 L533.0 0.0 L533.0 333.0 L0.0 333.0 L0.0 0.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M4.0 4.0 L245.46354166666666 4.0 L245.46354166666666 49.0 L4.0 49.0 L4.0 4.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,6.666666507720947,42.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M2.34375 0.0 L2.34375 -22.90625 L5.375 -22.90625 L5.375 -2.703125 L16.65625 -2.703125 L16.65625 0.0 L2.34375 0.0 Z"/><path d=" M19.921875 -19.671875 L19.921875 -22.90625 L22.734375 -22.90625 L22.734375 -19.671875 L19.921875 -19.671875 Z M19.921875 0.0 L19.921875 -16.59375 L22.734375 -16.59375 L22.734375 0.0 L19.921875 0.0 Z"/><path d=" M27.015625 0.0 L27.015625 -16.59375 L29.546875 -16.59375 L29.546875 -14.234375 Q31.375 -16.96875 34.828125 -16.96875 Q36.328125 -16.96875 37.5859375 -16.4296875 Q38.84375 -15.890625 39.46875 -15.015625 Q40.09375 -14.140625 40.34375 -12.9375 Q40.5 -12.15625 40.5 -10.203125 L40.5 0.0 L37.6875 0.0 L37.6875 -10.09375 Q37.6875 -11.8125 37.359375 -12.6640625 Q37.03125 -13.515625 36.1953125 -14.0234375 Q35.359375 -14.53125 34.234375 -14.53125 Q32.4375 -14.53125 31.1328125 -13.390625 Q29.828125 -12.25 29.828125 -9.0625 L29.828125 0.0 L27.015625 0.0 Z"/><path d=" M56.171875 -5.34375 L59.078125 -4.984375 Q58.390625 -2.4375 56.53125 -1.03125 Q54.671875 0.375 51.78125 0.375 Q48.140625 0.375 46.0078125 -1.8671875 Q43.875 -4.109375 43.875 -8.15625 Q43.875 -12.34375 46.03125 -14.65625 Q48.1875 -16.96875 51.625 -16.96875 Q54.953125 -16.96875 57.0625 -14.703125 Q59.171875 -12.4375 59.171875 -8.328125 Q59.171875 -8.078125 59.15625 -7.578125 L46.78125 -7.578125 Q46.9375 -4.84375 48.328125 -3.390625 Q49.71875 -1.9375 51.796875 -1.9375 Q53.34375 -1.9375 54.4375 -2.75 Q55.53125 -3.5625 56.171875 -5.34375 Z M46.9375 -9.890625 L56.203125 -9.890625 Q56.015625 -11.984375 55.140625 -13.03125 Q53.796875 -14.65625 51.65625 -14.65625 Q49.71875 -14.65625 48.3984375 -13.359375 Q47.078125 -12.0625 46.9375 -9.890625 Z"/><path d=" M60.015625 6.359375 L60.015625 4.328125 L78.65625 4.328125 L78.65625 6.359375 L60.015625 6.359375 Z"/><path d=" M97.109375 -8.03125 L100.140625 -7.265625 Q99.1875 -3.53125 96.7109375 -1.5703125 Q94.234375 0.390625 90.65625 0.390625 Q86.953125 0.390625 84.6328125 -1.1171875 Q82.3125 -2.625 81.1015625 -5.484375 Q79.890625 -8.34375 79.890625 -11.625 Q79.890625 -15.203125 81.2578125 -17.8671875 Q82.625 -20.53125 85.1484375 -21.9140625 Q87.671875 -23.296875 90.703125 -23.296875 Q94.140625 -23.296875 96.484375 -21.546875 Q98.828125 -19.796875 99.75 -16.625 L96.765625 -15.921875 Q95.96875 -18.421875 94.453125 -19.5625 Q92.9375 -20.703125 90.640625 -20.703125 Q88.0 -20.703125 86.2265625 -19.4375 Q84.453125 -18.171875 83.734375 -16.0390625 Q83.015625 -13.90625 83.015625 -11.640625 Q83.015625 -8.71875 83.8671875 -6.5390625 Q84.71875 -4.359375 86.515625 -3.28125 Q88.3125 -2.203125 90.40625 -2.203125 Q92.953125 -2.203125 94.71875 -3.671875 Q96.484375 -5.140625 97.109375 -8.03125 Z"/><path d=" M103.515625 0.0 L103.515625 -22.90625 L106.328125 -22.90625 L106.328125 -14.6875 Q108.296875 -16.96875 111.296875 -16.96875 Q113.140625 -16.96875 114.5 -16.2421875 Q115.859375 -15.515625 116.4453125 -14.234375 Q117.03125 -12.953125 117.03125 -10.515625 L117.03125 0.0 L114.21875 0.0 L114.21875 -10.515625 Q114.21875 -12.625 113.3046875 -13.5859375 Q112.390625 -14.546875 110.71875 -14.546875 Q109.46875 -14.546875 108.3671875 -13.8984375 Q107.265625 -13.25 106.796875 -12.140625 Q106.328125 -11.03125 106.328125 -9.078125 L106.328125 0.0 L103.515625 0.0 Z"/><path d=" M132.140625 -2.046875 Q130.578125 -0.71875 129.1328125 -0.171875 Q127.6875 0.375 126.03125 0.375 Q123.296875 0.375 121.828125 -0.9609375 Q120.359375 -2.296875 120.359375 -4.375 Q120.359375 -5.59375 120.9140625 -6.6015625 Q121.46875 -7.609375 122.3671875 -8.21875 Q123.265625 -8.828125 124.390625 -9.140625 Q125.21875 -9.359375 126.890625 -9.5625 Q130.296875 -9.96875 131.90625 -10.53125 Q131.921875 -11.109375 131.921875 -11.265625 Q131.921875 -12.984375 131.125 -13.6875 Q130.046875 -14.640625 127.921875 -14.640625 Q125.9375 -14.640625 124.9921875 -13.9453125 Q124.046875 -13.25 123.59375 -11.484375 L120.84375 -11.859375 Q121.21875 -13.625 122.078125 -14.7109375 Q122.9375 -15.796875 124.5625 -16.3828125 Q126.1875 -16.96875 128.328125 -16.96875 Q130.453125 -16.96875 131.78125 -16.46875 Q133.109375 -15.96875 133.734375 -15.2109375 Q134.359375 -14.453125 134.609375 -13.296875 Q134.75 -12.578125 134.75 -10.703125 L134.75 -6.953125 Q134.75 -3.03125 134.9296875 -1.9921875 Q135.109375 -0.953125 135.640625 0.0 L132.703125 0.0 Q132.265625 -0.875 132.140625 -2.046875 Z M131.90625 -8.328125 Q130.375 -7.703125 127.3125 -7.265625 Q125.578125 -7.015625 124.859375 -6.703125 Q124.140625 -6.390625 123.75 -5.7890625 Q123.359375 -5.1875 123.359375 -4.453125 Q123.359375 -3.328125 124.2109375 -2.578125 Q125.0625 -1.828125 126.703125 -1.828125 Q128.328125 -1.828125 129.59375 -2.5390625 Q130.859375 -3.25 131.453125 -4.484375 Q131.90625 -5.4375 131.90625 -7.296875 L131.90625 -8.328125 Z"/><path d=" M139.078125 0.0 L139.078125 -16.59375 L141.609375 -16.59375 L141.609375 -14.078125 Q142.578125 -15.84375 143.3984375 -16.40625 Q144.21875 -16.96875 145.203125 -16.96875 Q146.625 -16.96875 148.09375 -16.0625 L147.125 -13.453125 Q146.09375 -14.0625 145.0625 -14.0625 Q144.140625 -14.0625 143.40625 -13.5078125 Q142.671875 -12.953125 142.359375 -11.96875 Q141.890625 -10.46875 141.890625 -8.6875 L141.890625 0.0 L139.078125 0.0 Z"/><path d=" M155.90625 -2.515625 L156.3125 -0.03125 Q155.125 0.21875 154.1875 0.21875 Q152.65625 0.21875 151.8125 -0.265625 Q150.96875 -0.75 150.625 -1.5390625 Q150.28125 -2.328125 150.28125 -4.859375 L150.28125 -14.40625 L148.21875 -14.40625 L148.21875 -16.59375 L150.28125 -16.59375 L150.28125 -20.703125 L153.078125 -22.390625 L153.078125 -16.59375 L155.90625 -16.59375 L155.90625 -14.40625 L153.078125 -14.40625 L153.078125 -4.703125 Q153.078125 -3.5 153.2265625 -3.15625 Q153.375 -2.8125 153.7109375 -2.609375 Q154.046875 -2.40625 154.671875 -2.40625 Q155.140625 -2.40625 155.90625 -2.515625 Z"/><path d=" M156.0625 6.359375 L156.0625 4.328125 L174.703125 4.328125 L174.703125 6.359375 L156.0625 6.359375 Z"/><path d=" M182.640625 0.0 L182.640625 -20.203125 L175.09375 -20.203125 L175.09375 -22.90625 L193.25 -22.90625 L193.25 -20.203125 L185.671875 -20.203125 L185.671875 0.0 L182.640625 0.0 Z"/><path d=" M196.015625 -19.671875 L196.015625 -22.90625 L198.828125 -22.90625 L198.828125 -19.671875 L196.015625 -19.671875 Z M196.015625 0.0 L196.015625 -16.59375 L198.828125 -16.59375 L198.828125 0.0 L196.015625 0.0 Z"/><path d=" M209.25 -2.515625 L209.65625 -0.03125 Q208.46875 0.21875 207.53125 0.21875 Q206.0 0.21875 205.15625 -0.265625 Q204.3125 -0.75 203.96875 -1.5390625 Q203.625 -2.328125 203.625 -4.859375 L203.625 -14.40625 L201.5625 -14.40625 L201.5625 -16.59375 L203.625 -16.59375 L203.625 -20.703125 L206.421875 -22.390625 L206.421875 -16.59375 L209.25 -16.59375 L209.25 -14.40625 L206.421875 -14.40625 L206.421875 -4.703125 Q206.421875 -3.5 206.5703125 -3.15625 Q206.71875 -2.8125 207.0546875 -2.609375 Q207.390625 -2.40625 208.015625 -2.40625 Q208.484375 -2.40625 209.25 -2.515625 Z"/><path d=" M211.9375 0.0 L211.9375 -22.90625 L214.75 -22.90625 L214.75 0.0 L211.9375 0.0 Z"/><path d=" M230.46875 -5.34375 L233.375 -4.984375 Q232.6875 -2.4375 230.828125 -1.03125 Q228.96875 0.375 226.078125 0.375 Q222.4375 0.375 220.3046875 -1.8671875 Q218.171875 -4.109375 218.171875 -8.15625 Q218.171875 -12.34375 220.328125 -14.65625 Q222.484375 -16.96875 225.921875 -16.96875 Q229.25 -16.96875 231.359375 -14.703125 Q233.46875 -12.4375 233.46875 -8.328125 Q233.46875 -8.078125 233.453125 -7.578125 L221.078125 -7.578125 Q221.234375 -4.84375 222.625 -3.390625 Q224.015625 -1.9375 226.09375 -1.9375 Q227.640625 -1.9375 228.734375 -2.75 Q229.828125 -3.5625 230.46875 -5.34375 Z M221.234375 -9.890625 L230.5 -9.890625 Q230.3125 -11.984375 229.4375 -13.03125 Q228.09375 -14.65625 225.953125 -14.65625 Q224.015625 -14.65625 222.6953125 -13.359375 Q221.375 -12.0625 221.234375 -9.890625 Z"/></g></g><path d=" M4.0 4.0 L245.46354166666666 4.0 L245.46354166666666 49.0 L4.0 49.0 L4.0 4.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M58.78841145833333 54.0 L436.73046875 54.0 L436.73046875 277.3333333333333 L58.78841145833333 277.3333333333333 L58.78841145833333 54.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M58.78841145833333 283.0 L435.73046875 283.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M58.0 278.0 L58.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M184.0 278.0 L184.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M310.0 278.0 L310.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M435.0 278.0 L435.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M58.78841145833332 305.0 L179.14602661132812 305.0 L179.14602661132812 335.0 L58.78841145833332 335.0 L58.78841145833332 305.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,61.455078125,330.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.09375 0.0 L5.90625 -7.828125 L0.78125 -15.03125 L3.140625 -15.03125 L5.875 -11.171875 Q6.734375 -9.984375 7.078125 -9.328125 Q7.59375 -10.15625 8.28125 -11.046875 L11.296875 -15.03125 L13.46875 -15.03125 L8.1875 -7.953125 L13.875 0.0 L11.40625 0.0 L7.625 -5.359375 Q7.3125 -5.828125 6.96875 -6.375 Q6.46875 -5.546875 6.25 -5.234375 L2.484375 0.0 L0.09375 0.0 Z"/><path d=" M14.88714599609375 -4.515625 L14.88714599609375 -6.375 L20.55902099609375 -6.375 L20.55902099609375 -4.515625 L14.88714599609375 -4.515625 Z"/><path d=" M21.28125 0.0 L27.0625 -15.03125 L29.203125 -15.03125 L35.34375 0.0 L33.078125 0.0 L31.328125 -4.546875 L25.046875 -4.546875 L23.390625 0.0 L21.28125 0.0 Z M25.625 -6.171875 L30.71875 -6.171875 L29.140625 -10.34375 Q28.421875 -12.234375 28.078125 -13.453125 Q27.796875 -12.0 27.265625 -10.578125 L25.625 -6.171875 Z"/><path d=" M35.68402099609375 0.0 L39.65277099609375 -5.65625 L35.98089599609375 -10.890625 L38.29339599609375 -10.890625 L39.96527099609375 -8.34375 Q40.43402099609375 -7.609375 40.71527099609375 -7.109375 Q41.16839599609375 -7.796875 41.54339599609375 -8.3125 L43.38714599609375 -10.890625 L45.59027099609375 -10.890625 L41.82464599609375 -5.765625 L45.87152099609375 0.0 L43.60589599609375 0.0 L41.37152099609375 -3.390625 L40.77777099609375 -4.296875 L37.91839599609375 0.0 L35.68402099609375 0.0 Z"/><path d=" M47.57464599609375 -12.90625 L47.57464599609375 -15.03125 L49.41839599609375 -15.03125 L49.41839599609375 -12.90625 L47.57464599609375 -12.90625 Z M47.57464599609375 0.0 L47.57464599609375 -10.890625 L49.41839599609375 -10.890625 L49.41839599609375 0.0 L47.57464599609375 0.0 Z"/><path d=" M51.559600830078125 -3.25 L53.387725830078125 -3.53125 Q53.543975830078125 -2.4375 54.247100830078125 -1.8515625 Q54.950225830078125 -1.265625 56.215850830078125 -1.265625 Q57.481475830078125 -1.265625 58.098663330078125 -1.7890625 Q58.715850830078125 -2.3125 58.715850830078125 -3.0 Q58.715850830078125 -3.625 58.168975830078125 -3.984375 Q57.793975830078125 -4.234375 56.278350830078125 -4.609375 Q54.247100830078125 -5.125 53.465850830078125 -5.5 Q52.684600830078125 -5.875 52.278350830078125 -6.5390625 Q51.872100830078125 -7.203125 51.872100830078125 -8.0 Q51.872100830078125 -8.71875 52.208038330078125 -9.34375 Q52.543975830078125 -9.96875 53.106475830078125 -10.375 Q53.543975830078125 -10.6875 54.286163330078125 -10.9140625 Q55.028350830078125 -11.140625 55.887725830078125 -11.140625 Q57.168975830078125 -11.140625 58.137725830078125 -10.765625 Q59.106475830078125 -10.390625 59.567413330078125 -9.765625 Q60.028350830078125 -9.140625 60.200225830078125 -8.078125 L58.387725830078125 -7.828125 Q58.278350830078125 -8.671875 57.684600830078125 -9.1484375 Q57.090850830078125 -9.625 56.012725830078125 -9.625 Q54.747100830078125 -9.625 54.200225830078125 -9.203125 Q53.653350830078125 -8.78125 53.653350830078125 -8.21875 Q53.653350830078125 -7.859375 53.887725830078125 -7.5625 Q54.106475830078125 -7.265625 54.590850830078125 -7.078125 Q54.872100830078125 -6.96875 56.215850830078125 -6.609375 Q58.184600830078125 -6.078125 58.958038330078125 -5.75 Q59.731475830078125 -5.421875 60.168975830078125 -4.78125 Q60.606475830078125 -4.140625 60.606475830078125 -3.203125 Q60.606475830078125 -2.28125 60.067413330078125 -1.4609375 Q59.528350830078125 -0.640625 58.512725830078125 -0.1953125 Q57.497100830078125 0.25 56.215850830078125 0.25 Q54.090850830078125 0.25 52.981475830078125 -0.6328125 Q51.872100830078125 -1.515625 51.559600830078125 -3.25 Z"/><path d=" M61.262725830078125 4.171875 L61.262725830078125 2.84375 L73.49710083007812 2.84375 L73.49710083007812 4.171875 L61.262725830078125 4.171875 Z"/><path d=" M78.86572265625 0.0 L78.86572265625 -13.265625 L73.92822265625 -13.265625 L73.92822265625 -15.03125 L85.83447265625 -15.03125 L85.83447265625 -13.265625 L80.86572265625 -13.265625 L80.86572265625 0.0 L78.86572265625 0.0 Z"/><path d=" M87.83737182617188 -12.90625 L87.83737182617188 -15.03125 L89.68112182617188 -15.03125 L89.68112182617188 -12.90625 L87.83737182617188 -12.90625 Z M87.83737182617188 0.0 L87.83737182617188 -10.890625 L89.68112182617188 -10.890625 L89.68112182617188 0.0 L87.83737182617188 0.0 Z"/><path d=" M96.60357666015625 -1.65625 L96.86920166015625 -0.015625 Q96.08795166015625 0.140625 95.46295166015625 0.140625 Q94.46295166015625 0.140625 93.90826416015625 -0.1796875 Q93.35357666015625 -0.5 93.12701416015625 -1.015625 Q92.90045166015625 -1.53125 92.90045166015625 -3.1875 L92.90045166015625 -9.453125 L91.55670166015625 -9.453125 L91.55670166015625 -10.890625 L92.90045166015625 -10.890625 L92.90045166015625 -13.59375 L94.74420166015625 -14.6875 L94.74420166015625 -10.890625 L96.60357666015625 -10.890625 L96.60357666015625 -9.453125 L94.74420166015625 -9.453125 L94.74420166015625 -3.09375 Q94.74420166015625 -2.296875 94.83795166015625 -2.0703125 Q94.93170166015625 -1.84375 95.15045166015625 -1.7109375 Q95.36920166015625 -1.578125 95.79107666015625 -1.578125 Q96.08795166015625 -1.578125 96.60357666015625 -1.65625 Z"/><path d=" M98.44674682617188 0.0 L98.44674682617188 -15.03125 L100.29049682617188 -15.03125 L100.29049682617188 0.0 L98.44674682617188 0.0 Z"/><path d=" M110.68170166015625 -3.5 L112.58795166015625 -3.265625 Q112.13482666015625 -1.59375 110.91607666015625 -0.671875 Q109.69732666015625 0.25 107.79107666015625 0.25 Q105.40045166015625 0.25 104.00201416015625 -1.2265625 Q102.60357666015625 -2.703125 102.60357666015625 -5.359375 Q102.60357666015625 -8.09375 104.01763916015625 -9.6171875 Q105.43170166015625 -11.140625 107.69732666015625 -11.140625 Q109.88482666015625 -11.140625 111.26763916015625 -9.6484375 Q112.65045166015625 -8.15625 112.65045166015625 -5.46875 Q112.65045166015625 -5.296875 112.63482666015625 -4.96875 L104.50982666015625 -4.96875 Q104.61920166015625 -3.171875 105.53326416015625 -2.21875 Q106.44732666015625 -1.265625 107.80670166015625 -1.265625 Q108.82232666015625 -1.265625 109.54107666015625 -1.8046875 Q110.25982666015625 -2.34375 110.68170166015625 -3.5 Z M104.61920166015625 -6.484375 L110.69732666015625 -6.484375 Q110.57232666015625 -7.859375 109.99420166015625 -8.546875 Q109.11920166015625 -9.625 107.71295166015625 -9.625 Q106.44732666015625 -9.625 105.58013916015625 -8.7734375 Q104.71295166015625 -7.921875 104.61920166015625 -6.484375 Z"/></g></g><path d=" M58.78841145833332 305.0 L179.14602661132812 305.0 L179.14602661132812 335.0 L58.78841145833332 335.0 L58.78841145833332 305.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M52.121744791666664 276.3333333333333 L52.121744791666664 54.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.121744791666664 276.0 L57.121744791666664 276.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.121744791666664 254.0 L57.121744791666664 254.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.121744791666664 231.0 L57.121744791666664 231.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.121744791666664 209.0 L57.121744791666664 209.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.121744791666664 187.0 L57.121744791666664 187.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.121744791666664 165.0 L57.121744791666664 165.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.121744791666664 142.0 L57.121744791666664 142.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.121744791666664 120.0 L57.121744791666664 120.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.121744791666664 98.0 L57.121744791666664 98.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.121744791666664 76.0 L57.121744791666664 76.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.121744791666664 54.0 L57.121744791666664 54.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M37.00000000000001 144.3576151529948 L157.3576151529948 144.3576151529948 L157.3576151529948 174.3576151529948 L37.00000000000001 174.3576151529948 L37.00000000000001 144.3576151529948 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-137.3576151529948,211.3576151529948)" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(-0.0,-1.0,1.0,0.0,32.000005086263,171.6909472147624)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.859375 0.0 L5.859375 -6.375 L0.0625 -15.03125 L2.484375 -15.03125 L5.4375 -10.5 Q6.265625 -9.234375 6.96875 -7.953125 Q7.65625 -9.140625 8.609375 -10.609375 L11.53125 -15.03125 L13.84375 -15.03125 L7.84375 -6.375 L7.84375 0.0 L5.859375 0.0 Z"/><path d=" M14.88714599609375 -4.515625 L14.88714599609375 -6.375 L20.55902099609375 -6.375 L20.55902099609375 -4.515625 L14.88714599609375 -4.515625 Z"/><path d=" M21.28125 0.0 L27.0625 -15.03125 L29.203125 -15.03125 L35.34375 0.0 L33.078125 0.0 L31.328125 -4.546875 L25.046875 -4.546875 L23.390625 0.0 L21.28125 0.0 Z M25.625 -6.171875 L30.71875 -6.171875 L29.140625 -10.34375 Q28.421875 -12.234375 28.078125 -13.453125 Q27.796875 -12.0 27.265625 -10.578125 L25.625 -6.171875 Z"/><path d=" M35.68402099609375 0.0 L39.65277099609375 -5.65625 L35.98089599609375 -10.890625 L38.29339599609375 -10.890625 L39.96527099609375 -8.34375 Q40.43402099609375 -7.609375 40.71527099609375 -7.109375 Q41.16839599609375 -7.796875 41.54339599609375 -8.3125 L43.38714599609375 -10.890625 L45.59027099609375 -10.890625 L41.82464599609375 -5.765625 L45.87152099609375 0.0 L43.60589599609375 0.0 L41.37152099609375 -3.390625 L40.77777099609375 -4.296875 L37.91839599609375 0.0 L35.68402099609375 0.0 Z"/><path d=" M47.57464599609375 -12.90625 L47.57464599609375 -15.03125 L49.41839599609375 -15.03125 L49.41839599609375 -12.90625 L47.57464599609375 -12.90625 Z M47.57464599609375 0.0 L47.57464599609375 -10.890625 L49.41839599609375 -10.890625 L49.41839599609375 0.0 L47.57464599609375 0.0 Z"/><path d=" M51.559600830078125 -3.25 L53.387725830078125 -3.53125 Q53.543975830078125 -2.4375 54.247100830078125 -1.8515625 Q54.950225830078125 -1.265625 56.215850830078125 -1.265625 Q57.481475830078125 -1.265625 58.098663330078125 -1.7890625 Q58.715850830078125 -2.3125 58.715850830078125 -3.0 Q58.715850830078125 -3.625 58.168975830078125 -3.984375 Q57.793975830078125 -4.234375 56.278350830078125 -4.609375 Q54.247100830078125 -5.125 53.465850830078125 -5.5 Q52.684600830078125 -5.875 52.278350830078125 -6.5390625 Q51.872100830078125 -7.203125 51.872100830078125 -8.0 Q51.872100830078125 -8.71875 52.208038330078125 -9.34375 Q52.543975830078125 -9.96875 53.106475830078125 -10.375 Q53.543975830078125 -10.6875 54.286163330078125 -10.9140625 Q55.028350830078125 -11.140625 55.887725830078125 -11.140625 Q57.168975830078125 -11.140625 58.137725830078125 -10.765625 Q59.106475830078125 -10.390625 59.567413330078125 -9.765625 Q60.028350830078125 -9.140625 60.200225830078125 -8.078125 L58.387725830078125 -7.828125 Q58.278350830078125 -8.671875 57.684600830078125 -9.1484375 Q57.090850830078125 -9.625 56.012725830078125 -9.625 Q54.747100830078125 -9.625 54.200225830078125 -9.203125 Q53.653350830078125 -8.78125 53.653350830078125 -8.21875 Q53.653350830078125 -7.859375 53.887725830078125 -7.5625 Q54.106475830078125 -7.265625 54.590850830078125 -7.078125 Q54.872100830078125 -6.96875 56.215850830078125 -6.609375 Q58.184600830078125 -6.078125 58.958038330078125 -5.75 Q59.731475830078125 -5.421875 60.168975830078125 -4.78125 Q60.606475830078125 -4.140625 60.606475830078125 -3.203125 Q60.606475830078125 -2.28125 60.067413330078125 -1.4609375 Q59.528350830078125 -0.640625 58.512725830078125 -0.1953125 Q57.497100830078125 0.25 56.215850830078125 0.25 Q54.090850830078125 0.25 52.981475830078125 -0.6328125 Q51.872100830078125 -1.515625 51.559600830078125 -3.25 Z"/><path d=" M61.262725830078125 4.171875 L61.262725830078125 2.84375 L73.49710083007812 2.84375 L73.49710083007812 4.171875 L61.262725830078125 4.171875 Z"/><path d=" M78.86572265625 0.0 L78.86572265625 -13.265625 L73.92822265625 -13.265625 L73.92822265625 -15.03125 L85.83447265625 -15.03125 L85.83447265625 -13.265625 L80.86572265625 -13.265625 L80.86572265625 0.0 L78.86572265625 0.0 Z"/><path d=" M87.83737182617188 -12.90625 L87.83737182617188 -15.03125 L89.68112182617188 -15.03125 L89.68112182617188 -12.90625 L87.83737182617188 -12.90625 Z M87.83737182617188 0.0 L87.83737182617188 -10.890625 L89.68112182617188 -10.890625 L89.68112182617188 0.0 L87.83737182617188 0.0 Z"/><path d=" M96.60357666015625 -1.65625 L96.86920166015625 -0.015625 Q96.08795166015625 0.140625 95.46295166015625 0.140625 Q94.46295166015625 0.140625 93.90826416015625 -0.1796875 Q93.35357666015625 -0.5 93.12701416015625 -1.015625 Q92.90045166015625 -1.53125 92.90045166015625 -3.1875 L92.90045166015625 -9.453125 L91.55670166015625 -9.453125 L91.55670166015625 -10.890625 L92.90045166015625 -10.890625 L92.90045166015625 -13.59375 L94.74420166015625 -14.6875 L94.74420166015625 -10.890625 L96.60357666015625 -10.890625 L96.60357666015625 -9.453125 L94.74420166015625 -9.453125 L94.74420166015625 -3.09375 Q94.74420166015625 -2.296875 94.83795166015625 -2.0703125 Q94.93170166015625 -1.84375 95.15045166015625 -1.7109375 Q95.36920166015625 -1.578125 95.79107666015625 -1.578125 Q96.08795166015625 -1.578125 96.60357666015625 -1.65625 Z"/><path d=" M98.44674682617188 0.0 L98.44674682617188 -15.03125 L100.29049682617188 -15.03125 L100.29049682617188 0.0 L98.44674682617188 0.0 Z"/><path d=" M110.68170166015625 -3.5 L112.58795166015625 -3.265625 Q112.13482666015625 -1.59375 110.91607666015625 -0.671875 Q109.69732666015625 0.25 107.79107666015625 0.25 Q105.40045166015625 0.25 104.00201416015625 -1.2265625 Q102.60357666015625 -2.703125 102.60357666015625 -5.359375 Q102.60357666015625 -8.09375 104.01763916015625 -9.6171875 Q105.43170166015625 -11.140625 107.69732666015625 -11.140625 Q109.88482666015625 -11.140625 111.26763916015625 -9.6484375 Q112.65045166015625 -8.15625 112.65045166015625 -5.46875 Q112.65045166015625 -5.296875 112.63482666015625 -4.96875 L104.50982666015625 -4.96875 Q104.61920166015625 -3.171875 105.53326416015625 -2.21875 Q106.44732666015625 -1.265625 107.80670166015625 -1.265625 Q108.82232666015625 -1.265625 109.54107666015625 -1.8046875 Q110.25982666015625 -2.34375 110.68170166015625 -3.5 Z M104.61920166015625 -6.484375 L110.69732666015625 -6.484375 Q110.57232666015625 -7.859375 109.99420166015625 -8.546875 Q109.11920166015625 -9.625 107.71295166015625 -9.625 Q106.44732666015625 -9.625 105.58013916015625 -8.7734375 Q104.71295166015625 -7.921875 104.61920166015625 -6.484375 Z"/></g></g><path d=" M37.00000000000001 144.3576151529948 L157.3576151529948 144.3576151529948 L157.3576151529948 174.3576151529948 L37.00000000000001 174.3576151529948 L37.00000000000001 144.3576151529948 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-137.3576151529948,211.3576151529948)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M121.0 154.0500030517578 L246.0 254.10000610351562" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M246.0 254.10000610351562 L372.0 76.23332977294922" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M116.0 159.0 L126.0 159.0 L126.0 149.0 L116.0 149.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M116.0 159.0 L126.0 159.0 L126.0 149.0 L116.0 149.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M241.0 259.0 L251.0 259.0 L251.0 249.0 L241.0 249.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M241.0 259.0 L251.0 259.0 L251.0 249.0 L241.0 249.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M367.0 81.0 L377.0 81.0 L377.0 71.0 L367.0 71.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M367.0 81.0 L377.0 81.0 L377.0 71.0 L367.0 71.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M106.54557291666667 121.05000305175781 L135.45442708333334 121.05000305175781 L135.45442708333334 144.0500030517578 L106.54557291666667 144.0500030517578 L106.54557291666667 121.05000305175781 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,109.21224212646484,140.0500030517578)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.671875 -3.0 L2.140625 -3.125 Q2.3125 -2.046875 2.90625 -1.5078125 Q3.5 -0.96875 4.34375 -0.96875 Q5.359375 -0.96875 6.0625 -1.734375 Q6.765625 -2.5 6.765625 -3.765625 Q6.765625 -4.96875 6.09375 -5.6640625 Q5.421875 -6.359375 4.328125 -6.359375 Q3.640625 -6.359375 3.09375 -6.046875 Q2.546875 -5.734375 2.234375 -5.25 L0.921875 -5.421875 L2.03125 -11.296875 L7.71875 -11.296875 L7.71875 -9.953125 L3.15625 -9.953125 L2.53125 -6.875 Q3.5625 -7.59375 4.703125 -7.59375 Q6.203125 -7.59375 7.234375 -6.5546875 Q8.265625 -5.515625 8.265625 -3.890625 Q8.265625 -2.328125 7.359375 -1.203125 Q6.25 0.203125 4.34375 0.203125 Q2.78125 0.203125 1.796875 -0.6796875 Q0.8125 -1.5625 0.671875 -3.0 Z"/><path d=" M10.3515625 0.0 L10.3515625 -1.609375 L11.9609375 -1.609375 L11.9609375 0.0 L10.3515625 0.0 Z"/><path d=" M14.015625 -5.65625 Q14.015625 -7.6875 14.4296875 -8.921875 Q14.84375 -10.15625 15.671875 -10.828125 Q16.5 -11.5 17.75 -11.5 Q18.671875 -11.5 19.3671875 -11.1328125 Q20.0625 -10.765625 20.515625 -10.0625 Q20.96875 -9.359375 21.2265625 -8.359375 Q21.484375 -7.359375 21.484375 -5.65625 Q21.484375 -3.640625 21.0703125 -2.3984375 Q20.65625 -1.15625 19.828125 -0.4765625 Q19.0 0.203125 17.75 0.203125 Q16.09375 0.203125 15.140625 -1.0 Q14.015625 -2.421875 14.015625 -5.65625 Z M15.453125 -5.65625 Q15.453125 -2.828125 16.1171875 -1.8984375 Q16.78125 -0.96875 17.75 -0.96875 Q18.71875 -0.96875 19.375 -1.90625 Q20.03125 -2.84375 20.03125 -5.65625 Q20.03125 -8.484375 19.375 -9.4140625 Q18.71875 -10.34375 17.734375 -10.34375 Q16.765625 -10.34375 16.1875 -9.515625 Q15.453125 -8.46875 15.453125 -5.65625 Z"/></g></g><path d=" M106.54557291666667 121.05000305175781 L135.45442708333334 121.05000305175781 L135.45442708333334 144.0500030517578 L106.54557291666667 144.0500030517578 L106.54557291666667 121.05000305175781 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M228.88151041666666 221.10000610351562 L263.1184895833333 221.10000610351562 L263.1184895833333 244.10000610351562 L228.88151041666666 244.10000610351562 L228.88151041666666 221.10000610351562 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,231.5481719970703,240.10000610351562)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.515625 -3.4375 L0.515625 -4.859375 L4.828125 -4.859375 L4.828125 -3.4375 L0.515625 -3.4375 Z"/><path d=" M10.5 0.0 L10.5 -2.75 L5.53125 -2.75 L5.53125 -4.03125 L10.765625 -11.453125 L11.90625 -11.453125 L11.90625 -4.03125 L13.453125 -4.03125 L13.453125 -2.75 L11.90625 -2.75 L11.90625 0.0 L10.5 0.0 Z M10.5 -4.03125 L10.5 -9.203125 L6.921875 -4.03125 L10.5 -4.03125 Z"/><path d=" M15.6796875 0.0 L15.6796875 -1.609375 L17.2890625 -1.609375 L17.2890625 0.0 L15.6796875 0.0 Z"/><path d=" M19.34375 -5.65625 Q19.34375 -7.6875 19.7578125 -8.921875 Q20.171875 -10.15625 21.0 -10.828125 Q21.828125 -11.5 23.078125 -11.5 Q24.0 -11.5 24.6953125 -11.1328125 Q25.390625 -10.765625 25.84375 -10.0625 Q26.296875 -9.359375 26.5546875 -8.359375 Q26.8125 -7.359375 26.8125 -5.65625 Q26.8125 -3.640625 26.3984375 -2.3984375 Q25.984375 -1.15625 25.15625 -0.4765625 Q24.328125 0.203125 23.078125 0.203125 Q21.421875 0.203125 20.46875 -1.0 Q19.34375 -2.421875 19.34375 -5.65625 Z M20.78125 -5.65625 Q20.78125 -2.828125 21.4453125 -1.8984375 Q22.109375 -0.96875 23.078125 -0.96875 Q24.046875 -0.96875 24.703125 -1.90625 Q25.359375 -2.84375 25.359375 -5.65625 Q25.359375 -8.484375 24.703125 -9.4140625 Q24.046875 -10.34375 23.0625 -10.34375 Q22.09375 -10.34375 21.515625 -9.515625 Q20.78125 -8.46875 20.78125 -5.65625 Z"/></g></g><path d=" M228.88151041666666 221.10000610351562 L263.1184895833333 221.10000610351562 L263.1184895833333 244.10000610351562 L228.88151041666666 244.10000610351562 L228.88151041666666 221.10000610351562 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M353.0963541666667 43.23332977294922 L390.90364583333337 43.23332977294922 L390.90364583333337 66.23332977294922 L353.0963541666667 66.23332977294922 L353.0963541666667 43.23332977294922 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,355.7630310058594,62.23332977294922)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.96875 0.0 L4.5625 0.0 L4.5625 -8.96875 Q4.046875 -8.484375 3.2265625 -8.0 Q2.40625 -7.515625 1.75 -7.265625 L1.75 -8.625 Q2.921875 -9.1875 3.8046875 -9.9765625 Q4.6875 -10.765625 5.0625 -11.5 L5.96875 -11.5 L5.96875 0.0 Z"/><path d=" M16.9609375 -1.359375 L16.9609375 0.0 L9.3828125 0.0 Q9.3671875 -0.515625 9.5546875 -0.984375 Q9.8359375 -1.75 10.4765625 -2.5 Q11.1171875 -3.25 12.3203125 -4.234375 Q14.1796875 -5.765625 14.8359375 -6.6640625 Q15.4921875 -7.5625 15.4921875 -8.359375 Q15.4921875 -9.1875 14.8984375 -9.765625 Q14.3046875 -10.34375 13.3359375 -10.34375 Q12.3203125 -10.34375 11.7109375 -9.734375 Q11.1015625 -9.125 11.1015625 -8.046875 L9.6484375 -8.1875 Q9.8046875 -9.8125 10.7734375 -10.65625 Q11.7421875 -11.5 13.3671875 -11.5 Q15.0234375 -11.5 15.984375 -10.5859375 Q16.9453125 -9.671875 16.9453125 -8.328125 Q16.9453125 -7.640625 16.6640625 -6.9765625 Q16.3828125 -6.3125 15.7265625 -5.578125 Q15.0703125 -4.84375 13.5546875 -3.5625 Q12.2890625 -2.5 11.9296875 -2.1171875 Q11.5703125 -1.734375 11.3359375 -1.359375 L16.9609375 -1.359375 Z"/><path d=" M19.25 0.0 L19.25 -1.609375 L20.859375 -1.609375 L20.859375 0.0 L19.25 0.0 Z"/><path d=" M22.9140625 -5.65625 Q22.9140625 -7.6875 23.328125 -8.921875 Q23.7421875 -10.15625 24.5703125 -10.828125 Q25.3984375 -11.5 26.6484375 -11.5 Q27.5703125 -11.5 28.265625 -11.1328125 Q28.9609375 -10.765625 29.4140625 -10.0625 Q29.8671875 -9.359375 30.125 -8.359375 Q30.3828125 -7.359375 30.3828125 -5.65625 Q30.3828125 -3.640625 29.96875 -2.3984375 Q29.5546875 -1.15625 28.7265625 -0.4765625 Q27.8984375 0.203125 26.6484375 0.203125 Q24.9921875 0.203125 24.0390625 -1.0 Q22.9140625 -2.421875 22.9140625 -5.65625 Z M24.3515625 -5.65625 Q24.3515625 -2.828125 25.015625 -1.8984375 Q25.6796875 -0.96875 26.6484375 -0.96875 Q27.6171875 -0.96875 28.2734375 -1.90625 Q28.9296875 -2.84375 28.9296875 -5.65625 Q28.9296875 -8.484375 28.2734375 -9.4140625 Q27.6171875 -10.34375 26.6328125 -10.34375 Q25.6640625 -10.34375 25.0859375 -9.515625 Q24.3515625 -8.46875 24.3515625 -5.65625 Z"/></g></g><path d=" M353.0963541666667 43.23332977294922 L390.90364583333337 43.23332977294922 L390.90364583333337 66.23332977294922 L353.0963541666667 66.23332977294922 L353.0963541666667 43.23332977294922 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M112.15440538194444 289.0 L129.49294704861111 289.0 L129.49294704861111 312.0 L112.15440538194444 312.0 L112.15440538194444 289.0 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,114.82107543945312,308.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M-0.03125 0.0 L4.375 -11.453125 L6.015625 -11.453125 L10.703125 0.0 L8.96875 0.0 L7.640625 -3.46875 L2.84375 -3.46875 L1.59375 0.0 L-0.03125 0.0 Z M3.28125 -4.703125 L7.171875 -4.703125 L5.96875 -7.875 Q5.421875 -9.328125 5.15625 -10.25 Q4.9375 -9.15625 4.546875 -8.0625 L3.28125 -4.703125 Z"/></g></g><path d=" M112.15440538194444 289.0 L129.49294704861111 289.0 L129.49294704861111 312.0 L112.15440538194444 312.0 L112.15440538194444 289.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M238.15440538194443 289.0 L255.4929470486111 289.0 L255.4929470486111 312.0 L238.15440538194443 312.0 L238.15440538194443 289.0 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,240.82107543945312,308.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M1.171875 0.0 L1.171875 -11.453125 L5.46875 -11.453125 Q6.78125 -11.453125 7.578125 -11.109375 Q8.375 -10.765625 8.8203125 -10.0390625 Q9.265625 -9.3125 9.265625 -8.53125 Q9.265625 -7.796875 8.8671875 -7.1484375 Q8.46875 -6.5 7.671875 -6.09375 Q8.703125 -5.796875 9.265625 -5.0625 Q9.828125 -4.328125 9.828125 -3.328125 Q9.828125 -2.515625 9.484375 -1.828125 Q9.140625 -1.140625 8.640625 -0.765625 Q8.140625 -0.390625 7.390625 -0.1953125 Q6.640625 0.0 5.546875 0.0 L1.171875 0.0 Z M2.6875 -6.640625 L5.171875 -6.640625 Q6.171875 -6.640625 6.609375 -6.78125 Q7.1875 -6.953125 7.484375 -7.3515625 Q7.78125 -7.75 7.78125 -8.34375 Q7.78125 -8.921875 7.5078125 -9.3515625 Q7.234375 -9.78125 6.7265625 -9.9453125 Q6.21875 -10.109375 4.984375 -10.109375 L2.6875 -10.109375 L2.6875 -6.640625 Z M2.6875 -1.359375 L5.546875 -1.359375 Q6.28125 -1.359375 6.578125 -1.40625 Q7.09375 -1.5 7.4453125 -1.71875 Q7.796875 -1.9375 8.0234375 -2.359375 Q8.25 -2.78125 8.25 -3.328125 Q8.25 -3.96875 7.921875 -4.4375 Q7.59375 -4.90625 7.015625 -5.1015625 Q6.4375 -5.296875 5.34375 -5.296875 L2.6875 -5.296875 L2.6875 -1.359375 Z"/></g></g><path d=" M238.15440538194443 289.0 L255.4929470486111 289.0 L255.4929470486111 312.0 L238.15440538194443 312.0 L238.15440538194443 289.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M363.71299913194446 289.0 L381.93435329861114 289.0 L381.93435329861114 312.0 L363.71299913194446 312.0 L363.71299913194446 289.0 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,366.3796691894531,308.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M9.40625 -4.015625 L10.921875 -3.640625 Q10.453125 -1.765625 9.2109375 -0.78125 Q7.96875 0.203125 6.1875 0.203125 Q4.328125 0.203125 3.171875 -0.5546875 Q2.015625 -1.3125 1.40625 -2.7421875 Q0.796875 -4.171875 0.796875 -5.8125 Q0.796875 -7.609375 1.484375 -8.9375 Q2.171875 -10.265625 3.4296875 -10.9609375 Q4.6875 -11.65625 6.203125 -11.65625 Q7.921875 -11.65625 9.09375 -10.78125 Q10.265625 -9.90625 10.734375 -8.3125 L9.234375 -7.96875 Q8.84375 -9.21875 8.0859375 -9.7890625 Q7.328125 -10.359375 6.171875 -10.359375 Q4.859375 -10.359375 3.96875 -9.7265625 Q3.078125 -9.09375 2.71875 -8.0234375 Q2.359375 -6.953125 2.359375 -5.828125 Q2.359375 -4.359375 2.7890625 -3.2734375 Q3.21875 -2.1875 4.1171875 -1.6484375 Q5.015625 -1.109375 6.0625 -1.109375 Q7.328125 -1.109375 8.2109375 -1.84375 Q9.09375 -2.578125 9.40625 -4.015625 Z"/></g></g><path d=" M363.71299913194446 289.0 L381.93435329861114 289.0 L381.93435329861114 312.0 L363.71299913194446 312.0 L363.71299913194446 289.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M58.78841145833332 305.0 L179.14602661132812 305.0 L179.14602661132812 335.0 L58.78841145833332 335.0 L58.78841145833332 305.0 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,61.455078125,330.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.09375 0.0 L5.90625 -7.828125 L0.78125 -15.03125 L3.140625 -15.03125 L5.875 -11.171875 Q6.734375 -9.984375 7.078125 -9.328125 Q7.59375 -10.15625 8.28125 -11.046875 L11.296875 -15.03125 L13.46875 -15.03125 L8.1875 -7.953125 L13.875 0.0 L11.40625 0.0 L7.625 -5.359375 Q7.3125 -5.828125 6.96875 -6.375 Q6.46875 -5.546875 6.25 -5.234375 L2.484375 0.0 L0.09375 0.0 Z"/><path d=" M14.88714599609375 -4.515625 L14.88714599609375 -6.375 L20.55902099609375 -6.375 L20.55902099609375 -4.515625 L14.88714599609375 -4.515625 Z"/><path d=" M21.28125 0.0 L27.0625 -15.03125 L29.203125 -15.03125 L35.34375 0.0 L33.078125 0.0 L31.328125 -4.546875 L25.046875 -4.546875 L23.390625 0.0 L21.28125 0.0 Z M25.625 -6.171875 L30.71875 -6.171875 L29.140625 -10.34375 Q28.421875 -12.234375 28.078125 -13.453125 Q27.796875 -12.0 27.265625 -10.578125 L25.625 -6.171875 Z"/><path d=" M35.68402099609375 0.0 L39.65277099609375 -5.65625 L35.98089599609375 -10.890625 L38.29339599609375 -10.890625 L39.96527099609375 -8.34375 Q40.43402099609375 -7.609375 40.71527099609375 -7.109375 Q41.16839599609375 -7.796875 41.54339599609375 -8.3125 L43.38714599609375 -10.890625 L45.59027099609375 -10.890625 L41.82464599609375 -5.765625 L45.87152099609375 0.0 L43.60589599609375 0.0 L41.37152099609375 -3.390625 L40.77777099609375 -4.296875 L37.91839599609375 0.0 L35.68402099609375 0.0 Z"/><path d=" M47.57464599609375 -12.90625 L47.57464599609375 -15.03125 L49.41839599609375 -15.03125 L49.41839599609375 -12.90625 L47.57464599609375 -12.90625 Z M47.57464599609375 0.0 L47.57464599609375 -10.890625 L49.41839599609375 -10.890625 L49.41839599609375 0.0 L47.57464599609375 0.0 Z"/><path d=" M51.559600830078125 -3.25 L53.387725830078125 -3.53125 Q53.543975830078125 -2.4375 54.247100830078125 -1.8515625 Q54.950225830078125 -1.265625 56.215850830078125 -1.265625 Q57.481475830078125 -1.265625 58.098663330078125 -1.7890625 Q58.715850830078125 -2.3125 58.715850830078125 -3.0 Q58.715850830078125 -3.625 58.168975830078125 -3.984375 Q57.793975830078125 -4.234375 56.278350830078125 -4.609375 Q54.247100830078125 -5.125 53.465850830078125 -5.5 Q52.684600830078125 -5.875 52.278350830078125 -6.5390625 Q51.872100830078125 -7.203125 51.872100830078125 -8.0 Q51.872100830078125 -8.71875 52.208038330078125 -9.34375 Q52.543975830078125 -9.96875 53.106475830078125 -10.375 Q53.543975830078125 -10.6875 54.286163330078125 -10.9140625 Q55.028350830078125 -11.140625 55.887725830078125 -11.140625 Q57.168975830078125 -11.140625 58.137725830078125 -10.765625 Q59.106475830078125 -10.390625 59.567413330078125 -9.765625 Q60.028350830078125 -9.140625 60.200225830078125 -8.078125 L58.387725830078125 -7.828125 Q58.278350830078125 -8.671875 57.684600830078125 -9.1484375 Q57.090850830078125 -9.625 56.012725830078125 -9.625 Q54.747100830078125 -9.625 54.200225830078125 -9.203125 Q53.653350830078125 -8.78125 53.653350830078125 -8.21875 Q53.653350830078125 -7.859375 53.887725830078125 -7.5625 Q54.106475830078125 -7.265625 54.590850830078125 -7.078125 Q54.872100830078125 -6.96875 56.215850830078125 -6.609375 Q58.184600830078125 -6.078125 58.958038330078125 -5.75 Q59.731475830078125 -5.421875 60.168975830078125 -4.78125 Q60.606475830078125 -4.140625 60.606475830078125 -3.203125 Q60.606475830078125 -2.28125 60.067413330078125 -1.4609375 Q59.528350830078125 -0.640625 58.512725830078125 -0.1953125 Q57.497100830078125 0.25 56.215850830078125 0.25 Q54.090850830078125 0.25 52.981475830078125 -0.6328125 Q51.872100830078125 -1.515625 51.559600830078125 -3.25 Z"/><path d=" M61.262725830078125 4.171875 L61.262725830078125 2.84375 L73.49710083007812 2.84375 L73.49710083007812 4.171875 L61.262725830078125 4.171875 Z"/><path d=" M78.86572265625 0.0 L78.86572265625 -13.265625 L73.92822265625 -13.265625 L73.92822265625 -15.03125 L85.83447265625 -15.03125 L85.83447265625 -13.265625 L80.86572265625 -13.265625 L80.86572265625 0.0 L78.86572265625 0.0 Z"/><path d=" M87.83737182617188 -12.90625 L87.83737182617188 -15.03125 L89.68112182617188 -15.03125 L89.68112182617188 -12.90625 L87.83737182617188 -12.90625 Z M87.83737182617188 0.0 L87.83737182617188 -10.890625 L89.68112182617188 -10.890625 L89.68112182617188 0.0 L87.83737182617188 0.0 Z"/><path d=" M96.60357666015625 -1.65625 L96.86920166015625 -0.015625 Q96.08795166015625 0.140625 95.46295166015625 0.140625 Q94.46295166015625 0.140625 93.90826416015625 -0.1796875 Q93.35357666015625 -0.5 93.12701416015625 -1.015625 Q92.90045166015625 -1.53125 92.90045166015625 -3.1875 L92.90045166015625 -9.453125 L91.55670166015625 -9.453125 L91.55670166015625 -10.890625 L92.90045166015625 -10.890625 L92.90045166015625 -13.59375 L94.74420166015625 -14.6875 L94.74420166015625 -10.890625 L96.60357666015625 -10.890625 L96.60357666015625 -9.453125 L94.74420166015625 -9.453125 L94.74420166015625 -3.09375 Q94.74420166015625 -2.296875 94.83795166015625 -2.0703125 Q94.93170166015625 -1.84375 95.15045166015625 -1.7109375 Q95.36920166015625 -1.578125 95.79107666015625 -1.578125 Q96.08795166015625 -1.578125 96.60357666015625 -1.65625 Z"/><path d=" M98.44674682617188 0.0 L98.44674682617188 -15.03125 L100.29049682617188 -15.03125 L100.29049682617188 0.0 L98.44674682617188 0.0 Z"/><path d=" M110.68170166015625 -3.5 L112.58795166015625 -3.265625 Q112.13482666015625 -1.59375 110.91607666015625 -0.671875 Q109.69732666015625 0.25 107.79107666015625 0.25 Q105.40045166015625 0.25 104.00201416015625 -1.2265625 Q102.60357666015625 -2.703125 102.60357666015625 -5.359375 Q102.60357666015625 -8.09375 104.01763916015625 -9.6171875 Q105.43170166015625 -11.140625 107.69732666015625 -11.140625 Q109.88482666015625 -11.140625 111.26763916015625 -9.6484375 Q112.65045166015625 -8.15625 112.65045166015625 -5.46875 Q112.65045166015625 -5.296875 112.63482666015625 -4.96875 L104.50982666015625 -4.96875 Q104.61920166015625 -3.171875 105.53326416015625 -2.21875 Q106.44732666015625 -1.265625 107.80670166015625 -1.265625 Q108.82232666015625 -1.265625 109.54107666015625 -1.8046875 Q110.25982666015625 -2.34375 110.68170166015625 -3.5 Z M104.61920166015625 -6.484375 L110.69732666015625 -6.484375 Q110.57232666015625 -7.859375 109.99420166015625 -8.546875 Q109.11920166015625 -9.625 107.71295166015625 -9.625 Q106.44732666015625 -9.625 105.58013916015625 -8.7734375 Q104.71295166015625 -7.921875 104.61920166015625 -6.484375 Z"/></g></g><path d=" M58.78841145833332 305.0 L179.14602661132812 305.0 L179.14602661132812 335.0 L58.78841145833332 335.0 L58.78841145833332 305.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M25.228515625 264.5 L46.121744791666664 264.5 L46.121744791666664 287.5 L25.228515625 287.5 L25.228515625 264.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,27.89518165588379,283.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.515625 -3.4375 L0.515625 -4.859375 L4.828125 -4.859375 L4.828125 -3.4375 L0.515625 -3.4375 Z"/><path d=" M13.296875 -8.65625 L11.890625 -8.546875 Q11.703125 -9.375 11.359375 -9.75 Q10.796875 -10.34375 9.953125 -10.34375 Q9.28125 -10.34375 8.78125 -9.96875 Q8.109375 -9.484375 7.7265625 -8.5546875 Q7.34375 -7.625 7.328125 -5.90625 Q7.84375 -6.6875 8.578125 -7.0625 Q9.3125 -7.4375 10.109375 -7.4375 Q11.515625 -7.4375 12.5078125 -6.3984375 Q13.5 -5.359375 13.5 -3.71875 Q13.5 -2.640625 13.03125 -1.71875 Q12.5625 -0.796875 11.75 -0.296875 Q10.9375 0.203125 9.90625 0.203125 Q8.15625 0.203125 7.046875 -1.09375 Q5.9375 -2.390625 5.9375 -5.359375 Q5.9375 -8.6875 7.15625 -10.1875 Q8.234375 -11.5 10.046875 -11.5 Q11.390625 -11.5 12.2578125 -10.7421875 Q13.125 -9.984375 13.296875 -8.65625 Z M7.546875 -3.71875 Q7.546875 -2.984375 7.859375 -2.3203125 Q8.171875 -1.65625 8.7265625 -1.3125 Q9.28125 -0.96875 9.890625 -0.96875 Q10.78125 -0.96875 11.421875 -1.6875 Q12.0625 -2.40625 12.0625 -3.640625 Q12.0625 -4.828125 11.4296875 -5.5078125 Q10.796875 -6.1875 9.828125 -6.1875 Q8.875 -6.1875 8.2109375 -5.5078125 Q7.546875 -4.828125 7.546875 -3.71875 Z"/></g></g><path d=" M25.228515625 264.5 L46.121744791666664 264.5 L46.121744791666664 287.5 L25.228515625 287.5 L25.228515625 264.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M25.228515625 242.5 L46.121744791666664 242.5 L46.121744791666664 265.5 L25.228515625 265.5 L25.228515625 242.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,27.89518165588379,261.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.515625 -3.4375 L0.515625 -4.859375 L4.828125 -4.859375 L4.828125 -3.4375 L0.515625 -3.4375 Z"/><path d=" M10.5 0.0 L10.5 -2.75 L5.53125 -2.75 L5.53125 -4.03125 L10.765625 -11.453125 L11.90625 -11.453125 L11.90625 -4.03125 L13.453125 -4.03125 L13.453125 -2.75 L11.90625 -2.75 L11.90625 0.0 L10.5 0.0 Z M10.5 -4.03125 L10.5 -9.203125 L6.921875 -4.03125 L10.5 -4.03125 Z"/></g></g><path d=" M25.228515625 242.5 L46.121744791666664 242.5 L46.121744791666664 265.5 L25.228515625 265.5 L25.228515625 242.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M25.228515625 219.5 L46.121744791666664 219.5 L46.121744791666664 242.5 L25.228515625 242.5 L25.228515625 219.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,27.89518165588379,238.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.515625 -3.4375 L0.515625 -4.859375 L4.828125 -4.859375 L4.828125 -3.4375 L0.515625 -3.4375 Z"/><path d=" M13.390625 -1.359375 L13.390625 0.0 L5.8125 0.0 Q5.796875 -0.515625 5.984375 -0.984375 Q6.265625 -1.75 6.90625 -2.5 Q7.546875 -3.25 8.75 -4.234375 Q10.609375 -5.765625 11.265625 -6.6640625 Q11.921875 -7.5625 11.921875 -8.359375 Q11.921875 -9.1875 11.328125 -9.765625 Q10.734375 -10.34375 9.765625 -10.34375 Q8.75 -10.34375 8.140625 -9.734375 Q7.53125 -9.125 7.53125 -8.046875 L6.078125 -8.1875 Q6.234375 -9.8125 7.203125 -10.65625 Q8.171875 -11.5 9.796875 -11.5 Q11.453125 -11.5 12.4140625 -10.5859375 Q13.375 -9.671875 13.375 -8.328125 Q13.375 -7.640625 13.09375 -6.9765625 Q12.8125 -6.3125 12.15625 -5.578125 Q11.5 -4.84375 9.984375 -3.5625 Q8.71875 -2.5 8.359375 -2.1171875 Q8.0 -1.734375 7.765625 -1.359375 L13.390625 -1.359375 Z"/></g></g><path d=" M25.228515625 219.5 L46.121744791666664 219.5 L46.121744791666664 242.5 L25.228515625 242.5 L25.228515625 219.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.556640625 197.5 L46.121744791666664 197.5 L46.121744791666664 220.5 L30.556640625 220.5 L30.556640625 197.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,33.22330856323242,216.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.671875 -5.65625 Q0.671875 -7.6875 1.0859375 -8.921875 Q1.5 -10.15625 2.328125 -10.828125 Q3.15625 -11.5 4.40625 -11.5 Q5.328125 -11.5 6.0234375 -11.1328125 Q6.71875 -10.765625 7.171875 -10.0625 Q7.625 -9.359375 7.8828125 -8.359375 Q8.140625 -7.359375 8.140625 -5.65625 Q8.140625 -3.640625 7.7265625 -2.3984375 Q7.3125 -1.15625 6.484375 -0.4765625 Q5.65625 0.203125 4.40625 0.203125 Q2.75 0.203125 1.796875 -1.0 Q0.671875 -2.421875 0.671875 -5.65625 Z M2.109375 -5.65625 Q2.109375 -2.828125 2.7734375 -1.8984375 Q3.4375 -0.96875 4.40625 -0.96875 Q5.375 -0.96875 6.03125 -1.90625 Q6.6875 -2.84375 6.6875 -5.65625 Q6.6875 -8.484375 6.03125 -9.4140625 Q5.375 -10.34375 4.390625 -10.34375 Q3.421875 -10.34375 2.84375 -9.515625 Q2.109375 -8.46875 2.109375 -5.65625 Z"/></g></g><path d=" M30.556640625 197.5 L46.121744791666664 197.5 L46.121744791666664 220.5 L30.556640625 220.5 L30.556640625 197.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.556640625 175.5 L46.121744791666664 175.5 L46.121744791666664 198.5 L30.556640625 198.5 L30.556640625 175.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,33.22330856323242,194.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M8.0625 -1.359375 L8.0625 0.0 L0.484375 0.0 Q0.46875 -0.515625 0.65625 -0.984375 Q0.9375 -1.75 1.578125 -2.5 Q2.21875 -3.25 3.421875 -4.234375 Q5.28125 -5.765625 5.9375 -6.6640625 Q6.59375 -7.5625 6.59375 -8.359375 Q6.59375 -9.1875 6.0 -9.765625 Q5.40625 -10.34375 4.4375 -10.34375 Q3.421875 -10.34375 2.8125 -9.734375 Q2.203125 -9.125 2.203125 -8.046875 L0.75 -8.1875 Q0.90625 -9.8125 1.875 -10.65625 Q2.84375 -11.5 4.46875 -11.5 Q6.125 -11.5 7.0859375 -10.5859375 Q8.046875 -9.671875 8.046875 -8.328125 Q8.046875 -7.640625 7.765625 -6.9765625 Q7.484375 -6.3125 6.828125 -5.578125 Q6.171875 -4.84375 4.65625 -3.5625 Q3.390625 -2.5 3.03125 -2.1171875 Q2.671875 -1.734375 2.4375 -1.359375 L8.0625 -1.359375 Z"/></g></g><path d=" M30.556640625 175.5 L46.121744791666664 175.5 L46.121744791666664 198.5 L30.556640625 198.5 L30.556640625 175.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.556640625 153.5 L46.121744791666664 153.5 L46.121744791666664 176.5 L30.556640625 176.5 L30.556640625 153.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,33.22330856323242,172.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.171875 0.0 L5.171875 -2.75 L0.203125 -2.75 L0.203125 -4.03125 L5.4375 -11.453125 L6.578125 -11.453125 L6.578125 -4.03125 L8.125 -4.03125 L8.125 -2.75 L6.578125 -2.75 L6.578125 0.0 L5.171875 0.0 Z M5.171875 -4.03125 L5.171875 -9.203125 L1.59375 -4.03125 L5.171875 -4.03125 Z"/></g></g><path d=" M30.556640625 153.5 L46.121744791666664 153.5 L46.121744791666664 176.5 L30.556640625 176.5 L30.556640625 153.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.556640625 130.5 L46.121744791666664 130.5 L46.121744791666664 153.5 L30.556640625 153.5 L30.556640625 130.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,33.22330856323242,149.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M7.96875 -8.65625 L6.5625 -8.546875 Q6.375 -9.375 6.03125 -9.75 Q5.46875 -10.34375 4.625 -10.34375 Q3.953125 -10.34375 3.453125 -9.96875 Q2.78125 -9.484375 2.3984375 -8.5546875 Q2.015625 -7.625 2.0 -5.90625 Q2.515625 -6.6875 3.25 -7.0625 Q3.984375 -7.4375 4.78125 -7.4375 Q6.1875 -7.4375 7.1796875 -6.3984375 Q8.171875 -5.359375 8.171875 -3.71875 Q8.171875 -2.640625 7.703125 -1.71875 Q7.234375 -0.796875 6.421875 -0.296875 Q5.609375 0.203125 4.578125 0.203125 Q2.828125 0.203125 1.71875 -1.09375 Q0.609375 -2.390625 0.609375 -5.359375 Q0.609375 -8.6875 1.828125 -10.1875 Q2.90625 -11.5 4.71875 -11.5 Q6.0625 -11.5 6.9296875 -10.7421875 Q7.796875 -9.984375 7.96875 -8.65625 Z M2.21875 -3.71875 Q2.21875 -2.984375 2.53125 -2.3203125 Q2.84375 -1.65625 3.3984375 -1.3125 Q3.953125 -0.96875 4.5625 -0.96875 Q5.453125 -0.96875 6.09375 -1.6875 Q6.734375 -2.40625 6.734375 -3.640625 Q6.734375 -4.828125 6.1015625 -5.5078125 Q5.46875 -6.1875 4.5 -6.1875 Q3.546875 -6.1875 2.8828125 -5.5078125 Q2.21875 -4.828125 2.21875 -3.71875 Z"/></g></g><path d=" M30.556640625 130.5 L46.121744791666664 130.5 L46.121744791666664 153.5 L30.556640625 153.5 L30.556640625 130.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.556640625 108.5 L46.121744791666664 108.5 L46.121744791666664 131.5 L30.556640625 131.5 L30.556640625 108.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,33.22330856323242,127.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M2.828125 -6.21875 Q1.953125 -6.53125 1.53125 -7.125 Q1.109375 -7.71875 1.109375 -8.546875 Q1.109375 -9.796875 2.0078125 -10.6484375 Q2.90625 -11.5 4.40625 -11.5 Q5.90625 -11.5 6.8203125 -10.6328125 Q7.734375 -9.765625 7.734375 -8.515625 Q7.734375 -7.71875 7.3125 -7.125 Q6.890625 -6.53125 6.046875 -6.21875 Q7.09375 -5.875 7.6484375 -5.109375 Q8.203125 -4.34375 8.203125 -3.28125 Q8.203125 -1.8125 7.1640625 -0.8046875 Q6.125 0.203125 4.421875 0.203125 Q2.734375 0.203125 1.6953125 -0.8046875 Q0.65625 -1.8125 0.65625 -3.3125 Q0.65625 -4.4375 1.21875 -5.1875 Q1.78125 -5.9375 2.828125 -6.21875 Z M2.546875 -8.59375 Q2.546875 -7.78125 3.0703125 -7.265625 Q3.59375 -6.75 4.4375 -6.75 Q5.25 -6.75 5.765625 -7.265625 Q6.28125 -7.78125 6.28125 -8.515625 Q6.28125 -9.296875 5.75 -9.8203125 Q5.21875 -10.34375 4.421875 -10.34375 Q3.609375 -10.34375 3.078125 -9.828125 Q2.546875 -9.3125 2.546875 -8.59375 Z M2.09375 -3.3125 Q2.09375 -2.703125 2.3828125 -2.140625 Q2.671875 -1.578125 3.234375 -1.2734375 Q3.796875 -0.96875 4.4375 -0.96875 Q5.453125 -0.96875 6.109375 -1.6171875 Q6.765625 -2.265625 6.765625 -3.265625 Q6.765625 -4.28125 6.0859375 -4.9453125 Q5.40625 -5.609375 4.390625 -5.609375 Q3.40625 -5.609375 2.75 -4.953125 Q2.09375 -4.296875 2.09375 -3.3125 Z"/></g></g><path d=" M30.556640625 108.5 L46.121744791666664 108.5 L46.121744791666664 131.5 L30.556640625 131.5 L30.556640625 108.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.658203125 86.5 L46.121744791666664 86.5 L46.121744791666664 109.5 L21.658203125 109.5 L21.658203125 86.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,24.32486915588379,105.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.96875 0.0 L4.5625 0.0 L4.5625 -8.96875 Q4.046875 -8.484375 3.2265625 -8.0 Q2.40625 -7.515625 1.75 -7.265625 L1.75 -8.625 Q2.921875 -9.1875 3.8046875 -9.9765625 Q4.6875 -10.765625 5.0625 -11.5 L5.96875 -11.5 L5.96875 0.0 Z"/><path d=" M9.5703125 -5.65625 Q9.5703125 -7.6875 9.984375 -8.921875 Q10.3984375 -10.15625 11.2265625 -10.828125 Q12.0546875 -11.5 13.3046875 -11.5 Q14.2265625 -11.5 14.921875 -11.1328125 Q15.6171875 -10.765625 16.0703125 -10.0625 Q16.5234375 -9.359375 16.78125 -8.359375 Q17.0390625 -7.359375 17.0390625 -5.65625 Q17.0390625 -3.640625 16.625 -2.3984375 Q16.2109375 -1.15625 15.3828125 -0.4765625 Q14.5546875 0.203125 13.3046875 0.203125 Q11.6484375 0.203125 10.6953125 -1.0 Q9.5703125 -2.421875 9.5703125 -5.65625 Z M11.0078125 -5.65625 Q11.0078125 -2.828125 11.671875 -1.8984375 Q12.3359375 -0.96875 13.3046875 -0.96875 Q14.2734375 -0.96875 14.9296875 -1.90625 Q15.5859375 -2.84375 15.5859375 -5.65625 Q15.5859375 -8.484375 14.9296875 -9.4140625 Q14.2734375 -10.34375 13.2890625 -10.34375 Q12.3203125 -10.34375 11.7421875 -9.515625 Q11.0078125 -8.46875 11.0078125 -5.65625 Z"/></g></g><path d=" M21.658203125 86.5 L46.121744791666664 86.5 L46.121744791666664 109.5 L21.658203125 109.5 L21.658203125 86.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.658203125 64.5 L46.121744791666664 64.5 L46.121744791666664 87.5 L21.658203125 87.5 L21.658203125 64.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,24.32486915588379,83.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.96875 0.0 L4.5625 0.0 L4.5625 -8.96875 Q4.046875 -8.484375 3.2265625 -8.0 Q2.40625 -7.515625 1.75 -7.265625 L1.75 -8.625 Q2.921875 -9.1875 3.8046875 -9.9765625 Q4.6875 -10.765625 5.0625 -11.5 L5.96875 -11.5 L5.96875 0.0 Z"/><path d=" M16.9609375 -1.359375 L16.9609375 0.0 L9.3828125 0.0 Q9.3671875 -0.515625 9.5546875 -0.984375 Q9.8359375 -1.75 10.4765625 -2.5 Q11.1171875 -3.25 12.3203125 -4.234375 Q14.1796875 -5.765625 14.8359375 -6.6640625 Q15.4921875 -7.5625 15.4921875 -8.359375 Q15.4921875 -9.1875 14.8984375 -9.765625 Q14.3046875 -10.34375 13.3359375 -10.34375 Q12.3203125 -10.34375 11.7109375 -9.734375 Q11.1015625 -9.125 11.1015625 -8.046875 L9.6484375 -8.1875 Q9.8046875 -9.8125 10.7734375 -10.65625 Q11.7421875 -11.5 13.3671875 -11.5 Q15.0234375 -11.5 15.984375 -10.5859375 Q16.9453125 -9.671875 16.9453125 -8.328125 Q16.9453125 -7.640625 16.6640625 -6.9765625 Q16.3828125 -6.3125 15.7265625 -5.578125 Q15.0703125 -4.84375 13.5546875 -3.5625 Q12.2890625 -2.5 11.9296875 -2.1171875 Q11.5703125 -1.734375 11.3359375 -1.359375 L16.9609375 -1.359375 Z"/></g></g><path d=" M21.658203125 64.5 L46.121744791666664 64.5 L46.121744791666664 87.5 L21.658203125 87.5 L21.658203125 64.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.658203125 42.5 L46.121744791666664 42.5 L46.121744791666664 65.5 L21.658203125 65.5 L21.658203125 42.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,24.32486915588379,61.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.96875 0.0 L4.5625 0.0 L4.5625 -8.96875 Q4.046875 -8.484375 3.2265625 -8.0 Q2.40625 -7.515625 1.75 -7.265625 L1.75 -8.625 Q2.921875 -9.1875 3.8046875 -9.9765625 Q4.6875 -10.765625 5.0625 -11.5 L5.96875 -11.5 L5.96875 0.0 Z"/><path d=" M14.0703125 0.0 L14.0703125 -2.75 L9.1015625 -2.75 L9.1015625 -4.03125 L14.3359375 -11.453125 L15.4765625 -11.453125 L15.4765625 -4.03125 L17.0234375 -4.03125 L17.0234375 -2.75 L15.4765625 -2.75 L15.4765625 0.0 L14.0703125 0.0 Z M14.0703125 -4.03125 L14.0703125 -9.203125 L10.4921875 -4.03125 L14.0703125 -4.03125 Z"/></g></g><path d=" M21.658203125 42.5 L46.121744791666664 42.5 L46.121744791666664 65.5 L21.658203125 65.5 L21.658203125 42.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M37.00000000000001 138.42591349283856 L151.42591349283856 138.42591349283856 L151.42591349283856 168.42591349283856 L37.00000000000001 168.42591349283856 L37.00000000000001 138.42591349283856 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-131.42591349283856,205.42591349283856)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(-0.0,-1.0,1.0,0.0,32.000005086263,165.75924555460614)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.859375 0.0 L5.859375 -6.375 L0.0625 -15.03125 L2.484375 -15.03125 L5.4375 -10.5 Q6.265625 -9.234375 6.96875 -7.953125 Q7.65625 -9.140625 8.609375 -10.609375 L11.53125 -15.03125 L13.84375 -15.03125 L7.84375 -6.375 L7.84375 0.0 L5.859375 0.0 Z"/><path d=" M14.88714599609375 -4.515625 L14.88714599609375 -6.375 L20.55902099609375 -6.375 L20.55902099609375 -4.515625 L14.88714599609375 -4.515625 Z"/><path d=" M21.28125 0.0 L27.0625 -15.03125 L29.203125 -15.03125 L35.34375 0.0 L33.078125 0.0 L31.328125 -4.546875 L25.046875 -4.546875 L23.390625 0.0 L21.28125 0.0 Z M25.625 -6.171875 L30.71875 -6.171875 L29.140625 -10.34375 Q28.421875 -12.234375 28.078125 -13.453125 Q27.796875 -12.0 27.265625 -10.578125 L25.625 -6.171875 Z"/><path d=" M35.68402099609375 0.0 L39.65277099609375 -5.65625 L35.98089599609375 -10.890625 L38.29339599609375 -10.890625 L39.96527099609375 -8.34375 Q40.43402099609375 -7.609375 40.71527099609375 -7.109375 Q41.16839599609375 -7.796875 41.54339599609375 -8.3125 L43.38714599609375 -10.890625 L45.59027099609375 -10.890625 L41.82464599609375 -5.765625 L45.87152099609375 0.0 L43.60589599609375 0.0 L41.37152099609375 -3.390625 L40.77777099609375 -4.296875 L37.91839599609375 0.0 L35.68402099609375 0.0 Z"/><path d=" M47.57464599609375 -12.90625 L47.57464599609375 -15.03125 L49.41839599609375 -15.03125 L49.41839599609375 -12.90625 L47.57464599609375 -12.90625 Z M47.57464599609375 0.0 L47.57464599609375 -10.890625 L49.41839599609375 -10.890625 L49.41839599609375 0.0 L47.57464599609375 0.0 Z"/><path d=" M51.559600830078125 -3.25 L53.387725830078125 -3.53125 Q53.543975830078125 -2.4375 54.247100830078125 -1.8515625 Q54.950225830078125 -1.265625 56.215850830078125 -1.265625 Q57.481475830078125 -1.265625 58.098663330078125 -1.7890625 Q58.715850830078125 -2.3125 58.715850830078125 -3.0 Q58.715850830078125 -3.625 58.168975830078125 -3.984375 Q57.793975830078125 -4.234375 56.278350830078125 -4.609375 Q54.247100830078125 -5.125 53.465850830078125 -5.5 Q52.684600830078125 -5.875 52.278350830078125 -6.5390625 Q51.872100830078125 -7.203125 51.872100830078125 -8.0 Q51.872100830078125 -8.71875 52.208038330078125 -9.34375 Q52.543975830078125 -9.96875 53.106475830078125 -10.375 Q53.543975830078125 -10.6875 54.286163330078125 -10.9140625 Q55.028350830078125 -11.140625 55.887725830078125 -11.140625 Q57.168975830078125 -11.140625 58.137725830078125 -10.765625 Q59.106475830078125 -10.390625 59.567413330078125 -9.765625 Q60.028350830078125 -9.140625 60.200225830078125 -8.078125 L58.387725830078125 -7.828125 Q58.278350830078125 -8.671875 57.684600830078125 -9.1484375 Q57.090850830078125 -9.625 56.012725830078125 -9.625 Q54.747100830078125 -9.625 54.200225830078125 -9.203125 Q53.653350830078125 -8.78125 53.653350830078125 -8.21875 Q53.653350830078125 -7.859375 53.887725830078125 -7.5625 Q54.106475830078125 -7.265625 54.590850830078125 -7.078125 Q54.872100830078125 -6.96875 56.215850830078125 -6.609375 Q58.184600830078125 -6.078125 58.958038330078125 -5.75 Q59.731475830078125 -5.421875 60.168975830078125 -4.78125 Q60.606475830078125 -4.140625 60.606475830078125 -3.203125 Q60.606475830078125 -2.28125 60.067413330078125 -1.4609375 Q59.528350830078125 -0.640625 58.512725830078125 -0.1953125 Q57.497100830078125 0.25 56.215850830078125 0.25 Q54.090850830078125 0.25 52.981475830078125 -0.6328125 Q51.872100830078125 -1.515625 51.559600830078125 -3.25 Z"/><path d=""/><path d=" M72.93402099609375 0.0 L72.93402099609375 -13.265625 L67.99652099609375 -13.265625 L67.99652099609375 -15.03125 L79.90277099609375 -15.03125 L79.90277099609375 -13.265625 L74.93402099609375 -13.265625 L74.93402099609375 0.0 L72.93402099609375 0.0 Z"/><path d=" M81.90567016601562 -12.90625 L81.90567016601562 -15.03125 L83.74942016601562 -15.03125 L83.74942016601562 -12.90625 L81.90567016601562 -12.90625 Z M81.90567016601562 0.0 L81.90567016601562 -10.890625 L83.74942016601562 -10.890625 L83.74942016601562 0.0 L81.90567016601562 0.0 Z"/><path d=" M90.671875 -1.65625 L90.9375 -0.015625 Q90.15625 0.140625 89.53125 0.140625 Q88.53125 0.140625 87.9765625 -0.1796875 Q87.421875 -0.5 87.1953125 -1.015625 Q86.96875 -1.53125 86.96875 -3.1875 L86.96875 -9.453125 L85.625 -9.453125 L85.625 -10.890625 L86.96875 -10.890625 L86.96875 -13.59375 L88.8125 -14.6875 L88.8125 -10.890625 L90.671875 -10.890625 L90.671875 -9.453125 L88.8125 -9.453125 L88.8125 -3.09375 Q88.8125 -2.296875 88.90625 -2.0703125 Q89.0 -1.84375 89.21875 -1.7109375 Q89.4375 -1.578125 89.859375 -1.578125 Q90.15625 -1.578125 90.671875 -1.65625 Z"/><path d=" M92.51504516601562 0.0 L92.51504516601562 -15.03125 L94.35879516601562 -15.03125 L94.35879516601562 0.0 L92.51504516601562 0.0 Z"/><path d=" M104.75 -3.5 L106.65625 -3.265625 Q106.203125 -1.59375 104.984375 -0.671875 Q103.765625 0.25 101.859375 0.25 Q99.46875 0.25 98.0703125 -1.2265625 Q96.671875 -2.703125 96.671875 -5.359375 Q96.671875 -8.09375 98.0859375 -9.6171875 Q99.5 -11.140625 101.765625 -11.140625 Q103.953125 -11.140625 105.3359375 -9.6484375 Q106.71875 -8.15625 106.71875 -5.46875 Q106.71875 -5.296875 106.703125 -4.96875 L98.578125 -4.96875 Q98.6875 -3.171875 99.6015625 -2.21875 Q100.515625 -1.265625 101.875 -1.265625 Q102.890625 -1.265625 103.609375 -1.8046875 Q104.328125 -2.34375 104.75 -3.5 Z M98.6875 -6.484375 L104.765625 -6.484375 Q104.640625 -7.859375 104.0625 -8.546875 Q103.1875 -9.625 101.78125 -9.625 Q100.515625 -9.625 99.6484375 -8.7734375 Q98.78125 -7.921875 98.6875 -6.484375 Z"/></g></g><path d=" M37.00000000000001 138.42591349283856 L151.42591349283856 138.42591349283856 L151.42591349283856 168.42591349283856 L37.00000000000001 168.42591349283856 L37.00000000000001 138.42591349283856 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-131.42591349283856,205.42591349283856)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M448.3971354166667 185.5 L470.3971354166667 185.5" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M454.0 190.0 L464.0 190.0 L464.0 180.0 L454.0 180.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M454.0 190.0 L464.0 190.0 L464.0 180.0 L454.0 180.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M474.3971354166667 174.0 L539.7591145833334 174.0 L539.7591145833334 197.0 L474.3971354166667 197.0 L474.3971354166667 174.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,477.0638122558594,193.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.71875 -3.6875 L2.15625 -3.8125 Q2.25 -2.953125 2.625 -2.3984375 Q3.0 -1.84375 3.78125 -1.5078125 Q4.5625 -1.171875 5.53125 -1.171875 Q6.40625 -1.171875 7.0703125 -1.4296875 Q7.734375 -1.6875 8.0546875 -2.1328125 Q8.375 -2.578125 8.375 -3.109375 Q8.375 -3.65625 8.0625 -4.0546875 Q7.75 -4.453125 7.03125 -4.734375 Q6.578125 -4.90625 5.0 -5.2890625 Q3.421875 -5.671875 2.78125 -6.0 Q1.96875 -6.4375 1.5625 -7.0703125 Q1.15625 -7.703125 1.15625 -8.5 Q1.15625 -9.359375 1.6484375 -10.1171875 Q2.140625 -10.875 3.0859375 -11.265625 Q4.03125 -11.65625 5.1875 -11.65625 Q6.46875 -11.65625 7.4375 -11.2421875 Q8.40625 -10.828125 8.9296875 -10.03125 Q9.453125 -9.234375 9.5 -8.234375 L8.046875 -8.125 Q7.921875 -9.203125 7.25 -9.7578125 Q6.578125 -10.3125 5.25 -10.3125 Q3.875 -10.3125 3.25 -9.8125 Q2.625 -9.3125 2.625 -8.59375 Q2.625 -7.984375 3.0625 -7.578125 Q3.5 -7.1875 5.3515625 -6.765625 Q7.203125 -6.34375 7.890625 -6.03125 Q8.890625 -5.578125 9.3671875 -4.8671875 Q9.84375 -4.15625 9.84375 -3.234375 Q9.84375 -2.328125 9.3203125 -1.515625 Q8.796875 -0.703125 7.8125 -0.25 Q6.828125 0.203125 5.609375 0.203125 Q4.046875 0.203125 3.0 -0.2578125 Q1.953125 -0.71875 1.3515625 -1.625 Q0.75 -2.53125 0.71875 -3.6875 Z"/><path d=" M17.40625 -2.671875 L18.859375 -2.5 Q18.515625 -1.21875 17.5859375 -0.515625 Q16.65625 0.1875 15.21875 0.1875 Q13.390625 0.1875 12.328125 -0.9375 Q11.265625 -2.0625 11.265625 -4.078125 Q11.265625 -6.171875 12.34375 -7.328125 Q13.421875 -8.484375 15.140625 -8.484375 Q16.796875 -8.484375 17.8515625 -7.3515625 Q18.90625 -6.21875 18.90625 -4.171875 Q18.90625 -4.046875 18.90625 -3.796875 L12.71875 -3.796875 Q12.796875 -2.421875 13.4921875 -1.6953125 Q14.1875 -0.96875 15.21875 -0.96875 Q16.0 -0.96875 16.546875 -1.375 Q17.09375 -1.78125 17.40625 -2.671875 Z M12.796875 -4.953125 L17.421875 -4.953125 Q17.328125 -6.0 16.890625 -6.515625 Q16.21875 -7.328125 15.15625 -7.328125 Q14.1875 -7.328125 13.5234375 -6.6796875 Q12.859375 -6.03125 12.796875 -4.953125 Z"/><path d=" M20.6171875 0.0 L20.6171875 -8.296875 L21.8828125 -8.296875 L21.8828125 -7.046875 Q22.3671875 -7.921875 22.7734375 -8.203125 Q23.1796875 -8.484375 23.6796875 -8.484375 Q24.3828125 -8.484375 25.1171875 -8.03125 L24.6328125 -6.734375 Q24.1171875 -7.03125 23.6015625 -7.03125 Q23.1484375 -7.03125 22.78125 -6.7578125 Q22.4140625 -6.484375 22.2578125 -5.984375 Q22.0234375 -5.234375 22.0234375 -4.34375 L22.0234375 0.0 L20.6171875 0.0 Z"/><path d=" M25.9609375 -9.84375 L25.9609375 -11.453125 L27.3671875 -11.453125 L27.3671875 -9.84375 L25.9609375 -9.84375 Z M25.9609375 0.0 L25.9609375 -8.296875 L27.3671875 -8.296875 L27.3671875 0.0 L25.9609375 0.0 Z"/><path d=" M35.1875 -2.671875 L36.640625 -2.5 Q36.296875 -1.21875 35.3671875 -0.515625 Q34.4375 0.1875 33.0 0.1875 Q31.171875 0.1875 30.109375 -0.9375 Q29.046875 -2.0625 29.046875 -4.078125 Q29.046875 -6.171875 30.125 -7.328125 Q31.203125 -8.484375 32.921875 -8.484375 Q34.578125 -8.484375 35.6328125 -7.3515625 Q36.6875 -6.21875 36.6875 -4.171875 Q36.6875 -4.046875 36.6875 -3.796875 L30.5 -3.796875 Q30.578125 -2.421875 31.2734375 -1.6953125 Q31.96875 -0.96875 33.0 -0.96875 Q33.78125 -0.96875 34.328125 -1.375 Q34.875 -1.78125 35.1875 -2.671875 Z M30.578125 -4.953125 L35.203125 -4.953125 Q35.109375 -6.0 34.671875 -6.515625 Q34.0 -7.328125 32.9375 -7.328125 Q31.96875 -7.328125 31.3046875 -6.6796875 Q30.640625 -6.03125 30.578125 -4.953125 Z"/><path d=" M37.8515625 -2.484375 L39.2421875 -2.703125 Q39.3515625 -1.859375 39.890625 -1.4140625 Q40.4296875 -0.96875 41.3828125 -0.96875 Q42.3515625 -0.96875 42.8203125 -1.3671875 Q43.2890625 -1.765625 43.2890625 -2.296875 Q43.2890625 -2.765625 42.8828125 -3.046875 Q42.5859375 -3.234375 41.4453125 -3.515625 Q39.8984375 -3.90625 39.296875 -4.1953125 Q38.6953125 -4.484375 38.390625 -4.984375 Q38.0859375 -5.484375 38.0859375 -6.09375 Q38.0859375 -6.65625 38.3359375 -7.125 Q38.5859375 -7.59375 39.0234375 -7.90625 Q39.3515625 -8.15625 39.921875 -8.3203125 Q40.4921875 -8.484375 41.1328125 -8.484375 Q42.1171875 -8.484375 42.8515625 -8.203125 Q43.5859375 -7.921875 43.9375 -7.4453125 Q44.2890625 -6.96875 44.4296875 -6.15625 L43.0546875 -5.96875 Q42.9609375 -6.609375 42.5078125 -6.96875 Q42.0546875 -7.328125 41.2421875 -7.328125 Q40.2734375 -7.328125 39.859375 -7.0078125 Q39.4453125 -6.6875 39.4453125 -6.265625 Q39.4453125 -5.984375 39.6171875 -5.765625 Q39.7890625 -5.546875 40.1484375 -5.390625 Q40.3671875 -5.3125 41.3984375 -5.03125 Q42.8828125 -4.640625 43.4765625 -4.3828125 Q44.0703125 -4.125 44.40625 -3.640625 Q44.7421875 -3.15625 44.7421875 -2.4375 Q44.7421875 -1.734375 44.328125 -1.1171875 Q43.9140625 -0.5 43.140625 -0.15625 Q42.3671875 0.1875 41.3984375 0.1875 Q39.7734375 0.1875 38.9296875 -0.484375 Q38.0859375 -1.15625 37.8515625 -2.484375 Z"/><path d=""/><path d=" M55.765625 0.0 L54.359375 0.0 L54.359375 -8.96875 Q53.84375 -8.484375 53.0234375 -8.0 Q52.203125 -7.515625 51.546875 -7.265625 L51.546875 -8.625 Q52.71875 -9.1875 53.6015625 -9.9765625 Q54.484375 -10.765625 54.859375 -11.5 L55.765625 -11.5 L55.765625 0.0 Z"/></g></g><path d=" M474.3971354166667 174.0 L539.7591145833334 174.0 L539.7591145833334 197.0 L474.3971354166667 197.0 L474.3971354166667 174.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/></g><g style="fill-opacity:0.01;fill:#FFFFFF;"/></svg> \ No newline at end of file
+]]></script><style type="text/css"><![CDATA[.tooltip.text{ text-anchor:left;font-size:12pt;fill:black;}.tooltip{fill:rgb(244,245,235)}]]></style><path d=" M0.0 0.0 L533.0 0.0 L533.0 333.0 L0.0 333.0 L0.0 0.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M4.0 4.0 L245.46354166666666 4.0 L245.46354166666666 49.0 L4.0 49.0 L4.0 4.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="32" style="fill-opacity:1.0;fill:#000000;" x="6.6666665" y="42.0">Line_Chart_Title</text><path d=" M4.0 4.0 L245.46354166666666 4.0 L245.46354166666666 49.0 L4.0 49.0 L4.0 4.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M58.78841145833333 54.0 L436.73046875 54.0 L436.73046875 277.3333333333333 L58.78841145833333 277.3333333333333 L58.78841145833333 54.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M58.78841145833333 283.0 L435.73046875 283.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M58.0 278.0 L58.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M184.0 278.0 L184.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M310.0 278.0 L310.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M435.0 278.0 L435.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M58.78841145833332 305.0 L179.14602661132812 305.0 L179.14602661132812 335.0 L58.78841145833332 335.0 L58.78841145833332 305.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="21" style="fill-opacity:1.0;fill:#000000;" x="61.45508" y="330.0">X-Axis_Title</text><path d=" M58.78841145833332 305.0 L179.14602661132812 305.0 L179.14602661132812 335.0 L58.78841145833332 335.0 L58.78841145833332 305.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M52.121744791666664 276.3333333333333 L52.121744791666664 54.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.121744791666664 276.0 L57.121744791666664 276.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.121744791666664 254.0 L57.121744791666664 254.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.121744791666664 231.0 L57.121744791666664 231.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.121744791666664 209.0 L57.121744791666664 209.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.121744791666664 187.0 L57.121744791666664 187.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.121744791666664 165.0 L57.121744791666664 165.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.121744791666664 142.0 L57.121744791666664 142.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.121744791666664 120.0 L57.121744791666664 120.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.121744791666664 98.0 L57.121744791666664 98.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.121744791666664 76.0 L57.121744791666664 76.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.121744791666664 54.0 L57.121744791666664 54.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M37.00000000000001 144.3576151529948 L157.3576151529948 144.3576151529948 L157.3576151529948 174.3576151529948 L37.00000000000001 174.3576151529948 L37.00000000000001 144.3576151529948 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-137.3576151529948,211.3576151529948)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="21" style="fill-opacity:1.0;fill:#000000;" transform="matrix(-0.0,-1.0,1.0,0.0,-137.3576151529948,211.3576151529948)" x="39.666668" y="169.35762">Y-Axis_Title</text><path d=" M37.00000000000001 144.3576151529948 L157.3576151529948 144.3576151529948 L157.3576151529948 174.3576151529948 L37.00000000000001 174.3576151529948 L37.00000000000001 144.3576151529948 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-137.3576151529948,211.3576151529948)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M121.0 154.0500030517578 L246.0 254.10000610351562" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M246.0 254.10000610351562 L372.0 76.23332977294922" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M116.0 159.0 L126.0 159.0 L126.0 149.0 L116.0 149.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M116.0 159.0 L126.0 159.0 L126.0 149.0 L116.0 149.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M241.0 259.0 L251.0 259.0 L251.0 249.0 L241.0 249.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M241.0 259.0 L251.0 259.0 L251.0 249.0 L241.0 249.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M367.0 81.0 L377.0 81.0 L377.0 71.0 L367.0 71.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M367.0 81.0 L377.0 81.0 L377.0 71.0 L367.0 71.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M106.54557291666667 121.05000305175781 L135.45442708333334 121.05000305175781 L135.45442708333334 144.0500030517578 L106.54557291666667 144.0500030517578 L106.54557291666667 121.05000305175781 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="109.21224" y="140.05">5.0</text><path d=" M106.54557291666667 121.05000305175781 L135.45442708333334 121.05000305175781 L135.45442708333334 144.0500030517578 L106.54557291666667 144.0500030517578 L106.54557291666667 121.05000305175781 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M228.88151041666666 221.10000610351562 L263.1184895833333 221.10000610351562 L263.1184895833333 244.10000610351562 L228.88151041666666 244.10000610351562 L228.88151041666666 221.10000610351562 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="231.54817" y="240.1">-4.0</text><path d=" M228.88151041666666 221.10000610351562 L263.1184895833333 221.10000610351562 L263.1184895833333 244.10000610351562 L228.88151041666666 244.10000610351562 L228.88151041666666 221.10000610351562 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M353.0963541666667 43.23332977294922 L390.90364583333337 43.23332977294922 L390.90364583333337 66.23332977294922 L353.0963541666667 66.23332977294922 L353.0963541666667 43.23332977294922 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="355.76303" y="62.23333">12.0</text><path d=" M353.0963541666667 43.23332977294922 L390.90364583333337 43.23332977294922 L390.90364583333337 66.23332977294922 L353.0963541666667 66.23332977294922 L353.0963541666667 43.23332977294922 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M112.15440538194444 289.0 L129.49294704861111 289.0 L129.49294704861111 312.0 L112.15440538194444 312.0 L112.15440538194444 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="114.821075" y="308.0">A</text><path d=" M112.15440538194444 289.0 L129.49294704861111 289.0 L129.49294704861111 312.0 L112.15440538194444 312.0 L112.15440538194444 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M238.15440538194443 289.0 L255.4929470486111 289.0 L255.4929470486111 312.0 L238.15440538194443 312.0 L238.15440538194443 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="240.82108" y="308.0">B</text><path d=" M238.15440538194443 289.0 L255.4929470486111 289.0 L255.4929470486111 312.0 L238.15440538194443 312.0 L238.15440538194443 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M363.71299913194446 289.0 L381.93435329861114 289.0 L381.93435329861114 312.0 L363.71299913194446 312.0 L363.71299913194446 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="366.37967" y="308.0">C</text><path d=" M363.71299913194446 289.0 L381.93435329861114 289.0 L381.93435329861114 312.0 L363.71299913194446 312.0 L363.71299913194446 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M58.78841145833332 305.0 L179.14602661132812 305.0 L179.14602661132812 335.0 L58.78841145833332 335.0 L58.78841145833332 305.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="21" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="61.45508" y="330.0">X-Axis_Title</text><path d=" M58.78841145833332 305.0 L179.14602661132812 305.0 L179.14602661132812 335.0 L58.78841145833332 335.0 L58.78841145833332 305.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M25.228515625 264.5 L46.121744791666664 264.5 L46.121744791666664 287.5 L25.228515625 287.5 L25.228515625 264.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="27.895182" y="283.5">-6</text><path d=" M25.228515625 264.5 L46.121744791666664 264.5 L46.121744791666664 287.5 L25.228515625 287.5 L25.228515625 264.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M25.228515625 242.5 L46.121744791666664 242.5 L46.121744791666664 265.5 L25.228515625 265.5 L25.228515625 242.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="27.895182" y="261.5">-4</text><path d=" M25.228515625 242.5 L46.121744791666664 242.5 L46.121744791666664 265.5 L25.228515625 265.5 L25.228515625 242.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M25.228515625 219.5 L46.121744791666664 219.5 L46.121744791666664 242.5 L25.228515625 242.5 L25.228515625 219.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="27.895182" y="238.5">-2</text><path d=" M25.228515625 219.5 L46.121744791666664 219.5 L46.121744791666664 242.5 L25.228515625 242.5 L25.228515625 219.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.556640625 197.5 L46.121744791666664 197.5 L46.121744791666664 220.5 L30.556640625 220.5 L30.556640625 197.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="33.22331" y="216.5">0</text><path d=" M30.556640625 197.5 L46.121744791666664 197.5 L46.121744791666664 220.5 L30.556640625 220.5 L30.556640625 197.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.556640625 175.5 L46.121744791666664 175.5 L46.121744791666664 198.5 L30.556640625 198.5 L30.556640625 175.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="33.22331" y="194.5">2</text><path d=" M30.556640625 175.5 L46.121744791666664 175.5 L46.121744791666664 198.5 L30.556640625 198.5 L30.556640625 175.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.556640625 153.5 L46.121744791666664 153.5 L46.121744791666664 176.5 L30.556640625 176.5 L30.556640625 153.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="33.22331" y="172.5">4</text><path d=" M30.556640625 153.5 L46.121744791666664 153.5 L46.121744791666664 176.5 L30.556640625 176.5 L30.556640625 153.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.556640625 130.5 L46.121744791666664 130.5 L46.121744791666664 153.5 L30.556640625 153.5 L30.556640625 130.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="33.22331" y="149.5">6</text><path d=" M30.556640625 130.5 L46.121744791666664 130.5 L46.121744791666664 153.5 L30.556640625 153.5 L30.556640625 130.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.556640625 108.5 L46.121744791666664 108.5 L46.121744791666664 131.5 L30.556640625 131.5 L30.556640625 108.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="33.22331" y="127.5">8</text><path d=" M30.556640625 108.5 L46.121744791666664 108.5 L46.121744791666664 131.5 L30.556640625 131.5 L30.556640625 108.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.658203125 86.5 L46.121744791666664 86.5 L46.121744791666664 109.5 L21.658203125 109.5 L21.658203125 86.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="24.32487" y="105.5">10</text><path d=" M21.658203125 86.5 L46.121744791666664 86.5 L46.121744791666664 109.5 L21.658203125 109.5 L21.658203125 86.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.658203125 64.5 L46.121744791666664 64.5 L46.121744791666664 87.5 L21.658203125 87.5 L21.658203125 64.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="24.32487" y="83.5">12</text><path d=" M21.658203125 64.5 L46.121744791666664 64.5 L46.121744791666664 87.5 L21.658203125 87.5 L21.658203125 64.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.658203125 42.5 L46.121744791666664 42.5 L46.121744791666664 65.5 L21.658203125 65.5 L21.658203125 42.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="24.32487" y="61.5">14</text><path d=" M21.658203125 42.5 L46.121744791666664 42.5 L46.121744791666664 65.5 L21.658203125 65.5 L21.658203125 42.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M37.00000000000001 138.42591349283856 L151.42591349283856 138.42591349283856 L151.42591349283856 168.42591349283856 L37.00000000000001 168.42591349283856 L37.00000000000001 138.42591349283856 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-131.42591349283856,205.42591349283856)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="21" style="fill-opacity:1.0;fill:#000000;" transform="matrix(-0.0,-1.0,1.0,0.0,-131.42591349283856,205.42591349283856)" x="39.666668" y="163.42592">Y-Axis Title</text><path d=" M37.00000000000001 138.42591349283856 L151.42591349283856 138.42591349283856 L151.42591349283856 168.42591349283856 L37.00000000000001 168.42591349283856 L37.00000000000001 138.42591349283856 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-131.42591349283856,205.42591349283856)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M448.3971354166667 185.5 L470.3971354166667 185.5" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M454.0 190.0 L464.0 190.0 L464.0 180.0 L454.0 180.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M454.0 190.0 L464.0 190.0 L464.0 180.0 L454.0 180.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M474.3971354166667 174.0 L539.7591145833334 174.0 L539.7591145833334 197.0 L474.3971354166667 197.0 L474.3971354166667 174.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="477.0638" y="193.0">Series 1</text><path d=" M474.3971354166667 174.0 L539.7591145833334 174.0 L539.7591145833334 197.0 L474.3971354166667 197.0 L474.3971354166667 174.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/></g><g id="hotSpots" style="fill-opacity:0.01;fill:#FFFFFF;"/></svg> \ No newline at end of file
diff --git a/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/2dpie.svg b/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/2dpie.svg
index 46b79aa..c302791 100644
--- a/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/2dpie.svg
+++ b/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/2dpie.svg
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="533.0" height="333.0"><g style="fill:none;stroke:none"><defs/><script><![CDATA[function BuildHelper(tag, attrList, text) {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="533.0" height="333.0"><g id="outerG" style="fill:none;stroke:none"><defs/><script><![CDATA[function BuildHelper(tag, attrList, text) {
this.tag = tag;
this.attrList = attrList;
this.text = text;
@@ -71,42 +71,82 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
}
}
- TM.show = function TooltiplManager_showTooltip(evt){
- var text = TM.getText(TM.getTitleElement(evt));
- x = evt.clientX;
- y = evt.clientY;
- if (typeof this.group == 'undefined'){
- this.height = 15;
- this.xPadding = 5;
- this.yPadding = -20;
- var mainSvg = evt.target.ownerDocument.documentElement;
- var off = mainSvg.currentTranslate;
- var scl = mainSvg.currentScale;
- this.group = new BuildHelper("g",
- {
- transform:"translate("+(((x+20))/scl)+","+(((y+20))/scl)+")"
- } );
- this.group.addToParent(mainSvg);
- this.rectangle = new BuildHelper("rect",
- {id:"test",
- x: 0,
- y: this.yPadding,
- height: this.height,
- classType: "tooltip"
- } );
- this.rectangle.addToParent(this.group.element);
- var textObj = new BuildHelper("text",
- {id:"tooltip",
- x: this.xPadding,
- y: (this.height/2+4+this.yPadding),
- classType: "tooltip text"
- },text);
- textObj.addToParent(this.group.element);
- var itemlength = textObj.element.getComputedTextLength();
- this.rectangle.element.setAttributeNS(null, "width", (itemlength+2*this.xPadding));
- }
- }
-
+ TM.show = function TooltiplManager_showTooltip(evt){
+ var text = TM.getText(TM.getTitleElement(evt));
+ x = evt.clientX;
+ y = evt.clientY;
+ update = true;
+ if (this.oldX != 'undefined'){
+ diffX = (x - this.oldX);
+ if (diffX < 0) diffX= diffX*(-1);
+ diffY = (y - this.oldY);
+ if (diffY < 0) diffY= diffY*(-1);
+ if ((diffY > 5) || (diffX > 5))
+ update = true;
+ }
+ if (update)
+ TM.remove();
+ if (typeof this.group == 'undefined'){
+ this.oldX = x;
+ this.oldY = y;
+ this.height = 15;
+ this.xPadding = 5;
+ this.yPadding = 20;
+ var mainSvg = evt.target.ownerDocument.documentElement;
+ var off = mainSvg.currentTranslate;
+ var scl = mainSvg.currentScale;
+ var adjustedX = (x-off.x)/scl;
+ var adjustedY = (y-off.y)/scl;
+ this.group = new BuildHelper("g",
+ {
+ opacity:0.8,
+ display: "inline",
+ transform:"translate("+(adjustedX + (10/scl))+","+(adjustedY + (10/scl))+")"
+ } );
+ this.group.addToParent(mainSvg);
+ this.rectangle = new BuildHelper("rect",
+ {id:"test",
+ x: 0,
+ y: 5,
+ transform:"scale("+(1/scl)+","+(1/scl)+")",
+ rx: 2,
+ ry: 2,
+ stroke: "black",
+ height: this.height,
+ classType: "tooltip"
+ } );
+ this.rectangle.addToParent(this.group.element);
+ var textObj = new BuildHelper("text",
+ {id:"tooltip",
+ x: this.xPadding,
+ y: (this.yPadding),
+ transform:"scale("+(1/scl)+","+(1/scl)+")",
+ classType: "tooltip text"
+ });
+ textObj.addToParent(this.group.element);
+ TM.setContent(textObj, text);
+ var outline = textObj.element.getBBox();
+ this.rectangle.element.setAttributeNS(null, "width", (outline.width+2*this.xPadding));
+ this.rectangle.element.setAttributeNS(null, "height", (outline.height+6));
+ }
+ }
+ TM.setContent = function TooltipManager_setContent(textElement, text){
+ var multiLine = text.split(/\\n/);
+ for (var x=0; x<multiLine.length; x++){
+ if (x == 0){
+ textObj = new BuildHelper("tspan",
+ {x: 5
+ },multiLine[x]);
+ }
+ else{
+ textObj = new BuildHelper("tspan",
+ {x: 5,
+ dy:17
+ },multiLine[x]);
+ }
+ textObj.addToParent(textElement.element);
+ }
+ }
TM.getTitleElement = function TM_getTitleElement(evt){
var elem = evt.currentTarget;
@@ -126,15 +166,18 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
return childs.item(x).nodeValue;
return "";
}
- function toggleVisibility(evt, id, compList){
+ function toggleLabelsVisibility(evt, id, compList, labelList){
var mainSvg = evt.target.ownerDocument;
for (i = 0; i < compList.length; i=i+1){
var comp = mainSvg.getElementById(id+'_'+compList[i]);
+ if ( comp == null ) continue;
var styleStr = comp.getAttribute("style");
- rVisibleExp=/visibility:visible/g;
- rHiddenExp=/visibility:hidden/g;
+ rVisibleExp=/visibility:[ ]*visible/g;
+ rInheritExp=/visibility:[ ]*inherit/g;
+ rHiddenExp=/visibility:[ ]*hidden/g;
results = styleStr.search(rVisibleExp);
- if (results == -1){
+ inResults = styleStr.search(rInheritExp);
+ if ((results == -1) && (inResults == -1)){
results = styleStr.search(rHiddenExp);
if (results == -1)
styleStr = styleStr + "visibility:hidden;";
@@ -142,10 +185,74 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
styleStr = styleStr.replace(rHiddenExp,"visibility:visible");
}
else{
+ if (inResults == -1){
styleStr = styleStr.replace(rVisibleExp,"visibility:hidden");
+ }else{
+ styleStr = styleStr.replace(rInheritExp,"visibility:hidden");
+ }
}
comp.setAttributeNS(null, "style", styleStr);
}
+ }
+ function toggleVisibility(evt, id, compList, labelList){
+ var mainSvg = evt.target.ownerDocument;
+ var isHidden = true;
+ for (i = 0; i < compList.length; i=i+1){
+ var comp = mainSvg.getElementById(id+'_'+compList[i]);
+ if ( comp == null ) continue;
+ var styleStr = comp.getAttribute("style");
+ rVisibleExp=/visibility:[ ]*visible/g;
+ rHiddenExp=/visibility:[ ]*hidden/g;
+ results = styleStr.search(rVisibleExp);
+ if (results == -1){
+ results = styleStr.search(rHiddenExp);
+ if (results == -1)
+ styleStr = styleStr + "visibility:hidden;";
+ else{
+ styleStr = styleStr.replace(rHiddenExp,"visibility:visible");
+ isHidden = false;
+ }
+ }
+ else{
+ styleStr = styleStr.replace(rVisibleExp,"visibility:hidden");
+ }
+ comp.setAttributeNS(null, "style", styleStr);
+ }
+ if (labelList != null){
+ for (i = 0; i < labelList.length; i=i+1){
+ var comp = mainSvg.getElementById(id+'_'+labelList[i]+'_g');
+ var styleStr = comp.getAttribute("style");
+ if (isHidden){
+ styleStr = styleStr + "visibility:hidden;";
+ toggleLabelVisibility(evt, id+'_'+labelList[i], 'inherit');
+ }else{
+ styleStr = styleStr.replace(rHiddenExp,"visibility:visible");
+ }
+ comp.setAttributeNS(null, "style", styleStr);
+ }
+ }
+ }
+ function toggleLabelVisibility(evt, id, property){
+ var mainSvg = evt.target.ownerDocument;
+ var comp = mainSvg.getElementById(id);
+ var styleStr = comp.getAttribute("style");
+ rVisibleExp=/visibility:[ ]*visible/g;
+ rInheritExp=/visibility:[ ]*inherit/g;
+ rHiddenExp=/visibility:[ ]*hidden/g;
+ results = styleStr.search(rVisibleExp);
+ inResults = styleStr.search(rInheritExp);
+ if ((results == -1) && (inResults == -1)){
+ results = styleStr.search(rHiddenExp);
+ if (results == -1)
+ styleStr = styleStr + "visibility:"+property+";";
+ }
+ else{
+ if (inResults == -1)
+ styleStr = styleStr.replace(rVisibleExp,"visibility:"+property);
+ else
+ styleStr = styleStr.replace(rInheritExp,"visibility:"+property);
+ }
+ comp.setAttributeNS(null, "style", styleStr);
}
function toHex(val)
{
@@ -162,51 +269,104 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
}
var oldCompId = null;
var oldCompList = null;
+ var fillToColor = new Array();
+ var strokeToColor = new Array();
function highlight(evt, id, compList){
- highlightElement(evt, oldCompId, oldCompList);
+ highlightElement(evt, oldCompId, oldCompList, false);
if (id != oldCompId){
- highlightElement(evt, id, compList);
+ highlightElement(evt, id, compList, true);
oldCompId = id;
oldCompList = compList;
}
else{
oldCompId = null;
oldCompList = null;
+ fillToColor = new Array();
+ strokeToColor = new Array();
}
}
- function highlightElement(evt, id, compList){
+ function highlightElement(evt, id, compList, highlight){
if ((id == null) || (compList == null)) return;
var mainSvg = evt.target.ownerDocument;
for (i = 0; i < compList.length; i=i+1){
var comp = mainSvg.getElementById(id+'_'+compList[i]);
+ if ( comp == null ) continue;
var styleStr = comp.getAttribute("style");
fillIndex = styleStr.search("fill:");
if (fillIndex != -1){
- styleStr = getNewStyle(styleStr, fillIndex, "fill:");
+ styleStr = getNewStyle(styleStr, fillIndex, "fill:", highlight, fillToColor, compList[i]);
}
strokeIndex = styleStr.search("stroke:");
if (strokeIndex != -1){
- styleStr = getNewStyle(styleStr, strokeIndex, "stroke:");
+ styleStr = getNewStyle(styleStr, strokeIndex, "stroke:", highlight, strokeToColor, compList[i]);
}
comp.setAttributeNS(null, "style", styleStr);
}
}
- function getNewStyle(style, index, styleAttr){
+ function getNewStyle(style, index, styleAttr, highlight, lookUpTable, id){
color = style.substring(index+styleAttr.length, style.length );
rgbIndex = color.search("rgb");
if (rgbIndex == -1){
hexColor = color.substring(1, 7);
- hc = getXorColor(hexColor);
+ hc = getHighlight(hexColor, highlight, lookUpTable, id);
return style.replace(styleAttr+"#"+hexColor,styleAttr+hc);
}
else{
bracketIndex = color.search("\\)");
color = color.substring(0, bracketIndex);
hexColor = getHexFromRGB(color);
- hc = getXorColor(hexColor);
+ hc = getHighlight(hexColor, highlight, lookUpTable, id);
return style.substring(0, index) + styleAttr+hc+ style.substring(index+bracketIndex+styleAttr.length+1, style.length);
}
}
+ function isIE(){
+ var agt=parent.navigator.userAgent.toLowerCase();
+ return (agt.indexOf("msie")!=-1);
+}
+ function resizeSVG(e){
+ if(isIE()){
+ var root=e.target.ownerDocument.documentElement;
+ var hotSpot = e.target.ownerDocument.getElementById('hotSpots');
+ var g = e.target.ownerDocument.getElementById('outerG');
+ var xScale = (innerWidth) / root.getAttribute('width');
+ var yScale = (innerHeight) / root.getAttribute('height');
+ g.setAttributeNS(null, 'transform', 'scale('+xScale+','+yScale+')');
+ hotSpot.setAttributeNS(null, 'transform', 'scale('+xScale+','+yScale+')');
+ }
+ }
+ function getHighlight(color, highlight, lookupTable, id){
+ if (!(highlight)){
+ color = lookupTable[id];
+ }
+ else{
+ lookupTable[id] = color;
+ }
+ r = color.substring(0, 2);
+ r = parseInt(r, 16);
+ g = color.substring(2, 4);
+ g = parseInt(g, 16);
+ b = color.substring(4, 6);
+ b = parseInt(b, 16);
+ var value = parseInt(r, 16);
+ if (highlight){
+ r = Math.ceil( (r + 255) / 2 );
+ g = Math.ceil( (g + 255) / 2 );
+ b = Math.ceil( (b + 255) / 2 );
+ }
+ rStr = r.toString(16);
+ gStr = g.toString(16);
+ bStr = b.toString(16);
+ while (rStr.length < 2){
+ rStr = "0"+rStr;
+ }
+ while (gStr.length < 2){
+ gStr = "0"+gStr;
+ }
+ while (bStr.length < 2){
+ bStr = "0"+bStr;
+ }
+return "#"+rStr+gStr+bStr;
+}
function getHexFromRGB(color){
findThem = /\d{1,3}/g;
listOfnum = color.match(findThem);
@@ -224,4 +384,4 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
}
return r+g+b;
}
-]]></script><style type="text/css"><![CDATA[.tooltip.text{ text-anchor:left;font-size:12pt;fill:black;}.tooltip{fill:rgb(244,245,235)}]]></style><path d=" M0.0 0.0 L533.0 0.0 L533.0 333.0 L0.0 333.0 L0.0 0.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M4.0 4.0 L231.21354166666666 4.0 L231.21354166666666 49.0 L4.0 49.0 L4.0 4.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,6.666666507720947,42.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M2.46875 0.0 L2.46875 -22.90625 L11.109375 -22.90625 Q13.390625 -22.90625 14.59375 -22.6875 Q16.28125 -22.40625 17.421875 -21.6171875 Q18.5625 -20.828125 19.2578125 -19.40625 Q19.953125 -17.984375 19.953125 -16.28125 Q19.953125 -13.359375 18.09375 -11.3359375 Q16.234375 -9.3125 11.375 -9.3125 L5.5 -9.3125 L5.5 0.0 L2.46875 0.0 Z M5.5 -12.015625 L11.421875 -12.015625 Q14.359375 -12.015625 15.59375 -13.109375 Q16.828125 -14.203125 16.828125 -16.1875 Q16.828125 -17.625 16.1015625 -18.6484375 Q15.375 -19.671875 14.1875 -20.0 Q13.421875 -20.203125 11.359375 -20.203125 L5.5 -20.203125 L5.5 -12.015625 Z"/><path d=" M23.46875 -19.671875 L23.46875 -22.90625 L26.28125 -22.90625 L26.28125 -19.671875 L23.46875 -19.671875 Z M23.46875 0.0 L23.46875 -16.59375 L26.28125 -16.59375 L26.28125 0.0 L23.46875 0.0 Z"/><path d=" M41.921875 -5.34375 L44.828125 -4.984375 Q44.140625 -2.4375 42.28125 -1.03125 Q40.421875 0.375 37.53125 0.375 Q33.890625 0.375 31.7578125 -1.8671875 Q29.625 -4.109375 29.625 -8.15625 Q29.625 -12.34375 31.78125 -14.65625 Q33.9375 -16.96875 37.375 -16.96875 Q40.703125 -16.96875 42.8125 -14.703125 Q44.921875 -12.4375 44.921875 -8.328125 Q44.921875 -8.078125 44.90625 -7.578125 L32.53125 -7.578125 Q32.6875 -4.84375 34.078125 -3.390625 Q35.46875 -1.9375 37.546875 -1.9375 Q39.09375 -1.9375 40.1875 -2.75 Q41.28125 -3.5625 41.921875 -5.34375 Z M32.6875 -9.890625 L41.953125 -9.890625 Q41.765625 -11.984375 40.890625 -13.03125 Q39.546875 -14.65625 37.40625 -14.65625 Q35.46875 -14.65625 34.1484375 -13.359375 Q32.828125 -12.0625 32.6875 -9.890625 Z"/><path d=" M45.765625 6.359375 L45.765625 4.328125 L64.40625 4.328125 L64.40625 6.359375 L45.765625 6.359375 Z"/><path d=" M82.859375 -8.03125 L85.890625 -7.265625 Q84.9375 -3.53125 82.4609375 -1.5703125 Q79.984375 0.390625 76.40625 0.390625 Q72.703125 0.390625 70.3828125 -1.1171875 Q68.0625 -2.625 66.8515625 -5.484375 Q65.640625 -8.34375 65.640625 -11.625 Q65.640625 -15.203125 67.0078125 -17.8671875 Q68.375 -20.53125 70.8984375 -21.9140625 Q73.421875 -23.296875 76.453125 -23.296875 Q79.890625 -23.296875 82.234375 -21.546875 Q84.578125 -19.796875 85.5 -16.625 L82.515625 -15.921875 Q81.71875 -18.421875 80.203125 -19.5625 Q78.6875 -20.703125 76.390625 -20.703125 Q73.75 -20.703125 71.9765625 -19.4375 Q70.203125 -18.171875 69.484375 -16.0390625 Q68.765625 -13.90625 68.765625 -11.640625 Q68.765625 -8.71875 69.6171875 -6.5390625 Q70.46875 -4.359375 72.265625 -3.28125 Q74.0625 -2.203125 76.15625 -2.203125 Q78.703125 -2.203125 80.46875 -3.671875 Q82.234375 -5.140625 82.859375 -8.03125 Z"/><path d=" M89.265625 0.0 L89.265625 -22.90625 L92.078125 -22.90625 L92.078125 -14.6875 Q94.046875 -16.96875 97.046875 -16.96875 Q98.890625 -16.96875 100.25 -16.2421875 Q101.609375 -15.515625 102.1953125 -14.234375 Q102.78125 -12.953125 102.78125 -10.515625 L102.78125 0.0 L99.96875 0.0 L99.96875 -10.515625 Q99.96875 -12.625 99.0546875 -13.5859375 Q98.140625 -14.546875 96.46875 -14.546875 Q95.21875 -14.546875 94.1171875 -13.8984375 Q93.015625 -13.25 92.546875 -12.140625 Q92.078125 -11.03125 92.078125 -9.078125 L92.078125 0.0 L89.265625 0.0 Z"/><path d=" M117.890625 -2.046875 Q116.328125 -0.71875 114.8828125 -0.171875 Q113.4375 0.375 111.78125 0.375 Q109.046875 0.375 107.578125 -0.9609375 Q106.109375 -2.296875 106.109375 -4.375 Q106.109375 -5.59375 106.6640625 -6.6015625 Q107.21875 -7.609375 108.1171875 -8.21875 Q109.015625 -8.828125 110.140625 -9.140625 Q110.96875 -9.359375 112.640625 -9.5625 Q116.046875 -9.96875 117.65625 -10.53125 Q117.671875 -11.109375 117.671875 -11.265625 Q117.671875 -12.984375 116.875 -13.6875 Q115.796875 -14.640625 113.671875 -14.640625 Q111.6875 -14.640625 110.7421875 -13.9453125 Q109.796875 -13.25 109.34375 -11.484375 L106.59375 -11.859375 Q106.96875 -13.625 107.828125 -14.7109375 Q108.6875 -15.796875 110.3125 -16.3828125 Q111.9375 -16.96875 114.078125 -16.96875 Q116.203125 -16.96875 117.53125 -16.46875 Q118.859375 -15.96875 119.484375 -15.2109375 Q120.109375 -14.453125 120.359375 -13.296875 Q120.5 -12.578125 120.5 -10.703125 L120.5 -6.953125 Q120.5 -3.03125 120.6796875 -1.9921875 Q120.859375 -0.953125 121.390625 0.0 L118.453125 0.0 Q118.015625 -0.875 117.890625 -2.046875 Z M117.65625 -8.328125 Q116.125 -7.703125 113.0625 -7.265625 Q111.328125 -7.015625 110.609375 -6.703125 Q109.890625 -6.390625 109.5 -5.7890625 Q109.109375 -5.1875 109.109375 -4.453125 Q109.109375 -3.328125 109.9609375 -2.578125 Q110.8125 -1.828125 112.453125 -1.828125 Q114.078125 -1.828125 115.34375 -2.5390625 Q116.609375 -3.25 117.203125 -4.484375 Q117.65625 -5.4375 117.65625 -7.296875 L117.65625 -8.328125 Z"/><path d=" M124.828125 0.0 L124.828125 -16.59375 L127.359375 -16.59375 L127.359375 -14.078125 Q128.328125 -15.84375 129.1484375 -16.40625 Q129.96875 -16.96875 130.953125 -16.96875 Q132.375 -16.96875 133.84375 -16.0625 L132.875 -13.453125 Q131.84375 -14.0625 130.8125 -14.0625 Q129.890625 -14.0625 129.15625 -13.5078125 Q128.421875 -12.953125 128.109375 -11.96875 Q127.640625 -10.46875 127.640625 -8.6875 L127.640625 0.0 L124.828125 0.0 Z"/><path d=" M141.65625 -2.515625 L142.0625 -0.03125 Q140.875 0.21875 139.9375 0.21875 Q138.40625 0.21875 137.5625 -0.265625 Q136.71875 -0.75 136.375 -1.5390625 Q136.03125 -2.328125 136.03125 -4.859375 L136.03125 -14.40625 L133.96875 -14.40625 L133.96875 -16.59375 L136.03125 -16.59375 L136.03125 -20.703125 L138.828125 -22.390625 L138.828125 -16.59375 L141.65625 -16.59375 L141.65625 -14.40625 L138.828125 -14.40625 L138.828125 -4.703125 Q138.828125 -3.5 138.9765625 -3.15625 Q139.125 -2.8125 139.4609375 -2.609375 Q139.796875 -2.40625 140.421875 -2.40625 Q140.890625 -2.40625 141.65625 -2.515625 Z"/><path d=" M141.8125 6.359375 L141.8125 4.328125 L160.453125 4.328125 L160.453125 6.359375 L141.8125 6.359375 Z"/><path d=" M168.390625 0.0 L168.390625 -20.203125 L160.84375 -20.203125 L160.84375 -22.90625 L179.0 -22.90625 L179.0 -20.203125 L171.421875 -20.203125 L171.421875 0.0 L168.390625 0.0 Z"/><path d=" M181.765625 -19.671875 L181.765625 -22.90625 L184.578125 -22.90625 L184.578125 -19.671875 L181.765625 -19.671875 Z M181.765625 0.0 L181.765625 -16.59375 L184.578125 -16.59375 L184.578125 0.0 L181.765625 0.0 Z"/><path d=" M195.0 -2.515625 L195.40625 -0.03125 Q194.21875 0.21875 193.28125 0.21875 Q191.75 0.21875 190.90625 -0.265625 Q190.0625 -0.75 189.71875 -1.5390625 Q189.375 -2.328125 189.375 -4.859375 L189.375 -14.40625 L187.3125 -14.40625 L187.3125 -16.59375 L189.375 -16.59375 L189.375 -20.703125 L192.171875 -22.390625 L192.171875 -16.59375 L195.0 -16.59375 L195.0 -14.40625 L192.171875 -14.40625 L192.171875 -4.703125 Q192.171875 -3.5 192.3203125 -3.15625 Q192.46875 -2.8125 192.8046875 -2.609375 Q193.140625 -2.40625 193.765625 -2.40625 Q194.234375 -2.40625 195.0 -2.515625 Z"/><path d=" M197.6875 0.0 L197.6875 -22.90625 L200.5 -22.90625 L200.5 0.0 L197.6875 0.0 Z"/><path d=" M216.21875 -5.34375 L219.125 -4.984375 Q218.4375 -2.4375 216.578125 -1.03125 Q214.71875 0.375 211.828125 0.375 Q208.1875 0.375 206.0546875 -1.8671875 Q203.921875 -4.109375 203.921875 -8.15625 Q203.921875 -12.34375 206.078125 -14.65625 Q208.234375 -16.96875 211.671875 -16.96875 Q215.0 -16.96875 217.109375 -14.703125 Q219.21875 -12.4375 219.21875 -8.328125 Q219.21875 -8.078125 219.203125 -7.578125 L206.828125 -7.578125 Q206.984375 -4.84375 208.375 -3.390625 Q209.765625 -1.9375 211.84375 -1.9375 Q213.390625 -1.9375 214.484375 -2.75 Q215.578125 -3.5625 216.21875 -5.34375 Z M206.984375 -9.890625 L216.25 -9.890625 Q216.0625 -11.984375 215.1875 -13.03125 Q213.84375 -14.65625 211.703125 -14.65625 Q209.765625 -14.65625 208.4453125 -13.359375 Q207.125 -12.0625 206.984375 -9.890625 Z"/></g></g><path d=" M4.0 4.0 L231.21354166666666 4.0 L231.21354166666666 49.0 L4.0 49.0 L4.0 4.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M4.0 42.0 L472.96875 42.0 L472.96875 329.0 L4.0 329.0 L4.0 42.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M440.7005208333333 156.9808428970625 C440.7005208333333 103.06625846664303 367.2695962389061 58.09464415086265 271.5637328465947 53.3956784998981 L255.4150390625 156.9808428970625 Z" style="fill-opacity:0.4980392156862745;fill:#7f7f7f;"/><path d=" M440.7005208333333 156.9808428970625 C440.7005208333333 103.06625846664303 367.2695962389061 58.09464415086265 271.5637328465947 53.3956784998981 L255.4150390625 156.9808428970625 Z" style="stroke:#585858;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M248.5637328465947 49.3956784998981 C173.32120493796572 45.7014215170726 101.61434214546247 68.00757238553588 67.32446596730261 105.77452806688578 L232.4150390625 152.9808428970625 Z" style="fill-opacity:0.4980392156862745;fill:#7f7f7f;"/><path d=" M248.5637328465947 49.3956784998981 C173.32120493796572 45.7014215170726 101.61434214546247 68.00757238553588 67.32446596730261 105.77452806688578 L232.4150390625 152.9808428970625 Z" style="stroke:#585858;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M72.32446596730261 141.77452806688578 C37.49875101864828 180.13165791487515 48.39193037247509 226.56580730266313 99.72109204841917 258.5576073544791 C151.05025372436324 290.5494074062951 232.20024945319776 301.48278083076497 303.8154172452267 286.0553225564406 C375.4305850372556 270.6278642821163 422.70052083333326 232.03005612580907 422.7005208333333 188.98084289706253 L237.4150390625 188.9808428970625 Z" style="fill-opacity:0.4980392156862745;fill:#7f7f7f;"/><path d=" M72.32446596730261 141.77452806688578 C37.49875101864828 180.13165791487515 48.39193037247509 226.56580730266313 99.72109204841917 258.5576073544791 C151.05025372436324 290.5494074062951 232.20024945319776 301.48278083076497 303.8154172452267 286.0553225564406 C375.4305850372556 270.6278642821163 422.70052083333326 232.03005612580907 422.7005208333333 188.98084289706253 L237.4150390625 188.9808428970625 Z" style="stroke:#585858;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M8.0 304.0 L92.8506571451823 304.0 L92.8506571451823 334.0 L8.0 334.0 L8.0 304.0 Z" style="fill-opacity:0.4980392156862745;fill:#7f7f7f;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,10.666666984558105,329.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.9375 -4.828125 L2.8125 -5.0 Q2.953125 -3.859375 3.4375 -3.140625 Q3.921875 -2.421875 4.953125 -1.9765625 Q5.984375 -1.53125 7.265625 -1.53125 Q8.390625 -1.53125 9.265625 -1.8671875 Q10.140625 -2.203125 10.5703125 -2.796875 Q11.0 -3.390625 11.0 -4.078125 Q11.0 -4.78125 10.5859375 -5.3125 Q10.171875 -5.84375 9.234375 -6.203125 Q8.625 -6.4375 6.5546875 -6.9375 Q4.484375 -7.4375 3.65625 -7.875 Q2.578125 -8.4375 2.046875 -9.2734375 Q1.515625 -10.109375 1.515625 -11.140625 Q1.515625 -12.28125 2.1640625 -13.2734375 Q2.8125 -14.265625 4.0546875 -14.7734375 Q5.296875 -15.28125 6.8125 -15.28125 Q8.484375 -15.28125 9.7578125 -14.75 Q11.03125 -14.21875 11.71875 -13.171875 Q12.40625 -12.125 12.453125 -10.796875 L10.546875 -10.65625 Q10.390625 -12.078125 9.5078125 -12.8046875 Q8.625 -13.53125 6.890625 -13.53125 Q5.09375 -13.53125 4.265625 -12.875 Q3.4375 -12.21875 3.4375 -11.28125 Q3.4375 -10.46875 4.015625 -9.953125 Q4.59375 -9.421875 7.015625 -8.875 Q9.4375 -8.328125 10.34375 -7.921875 Q11.65625 -7.3125 12.28125 -6.3828125 Q12.90625 -5.453125 12.90625 -4.25 Q12.90625 -3.046875 12.21875 -1.984375 Q11.53125 -0.921875 10.25 -0.3359375 Q8.96875 0.25 7.359375 0.25 Q5.3125 0.25 3.9296875 -0.34375 Q2.546875 -0.9375 1.765625 -2.1328125 Q0.984375 -3.328125 0.9375 -4.828125 Z"/><path d=" M23.05902099609375 -3.5 L24.96527099609375 -3.265625 Q24.51214599609375 -1.59375 23.29339599609375 -0.671875 Q22.07464599609375 0.25 20.16839599609375 0.25 Q17.77777099609375 0.25 16.37933349609375 -1.2265625 Q14.98089599609375 -2.703125 14.98089599609375 -5.359375 Q14.98089599609375 -8.09375 16.39495849609375 -9.6171875 Q17.80902099609375 -11.140625 20.07464599609375 -11.140625 Q22.26214599609375 -11.140625 23.64495849609375 -9.6484375 Q25.02777099609375 -8.15625 25.02777099609375 -5.46875 Q25.02777099609375 -5.296875 25.01214599609375 -4.96875 L16.88714599609375 -4.96875 Q16.99652099609375 -3.171875 17.91058349609375 -2.21875 Q18.82464599609375 -1.265625 20.18402099609375 -1.265625 Q21.19964599609375 -1.265625 21.91839599609375 -1.8046875 Q22.63714599609375 -2.34375 23.05902099609375 -3.5 Z M16.99652099609375 -6.484375 L23.07464599609375 -6.484375 Q22.94964599609375 -7.859375 22.37152099609375 -8.546875 Q21.49652099609375 -9.625 20.09027099609375 -9.625 Q18.82464599609375 -9.625 17.95745849609375 -8.7734375 Q17.09027099609375 -7.921875 16.99652099609375 -6.484375 Z"/><path d=" M27.427642822265625 0.0 L27.427642822265625 -10.890625 L29.099517822265625 -10.890625 L29.099517822265625 -9.234375 Q29.724517822265625 -10.390625 30.263580322265625 -10.765625 Q30.802642822265625 -11.140625 31.458892822265625 -11.140625 Q32.380767822265625 -11.140625 33.349517822265625 -10.546875 L32.708892822265625 -8.828125 Q32.037017822265625 -9.234375 31.365142822265625 -9.234375 Q30.755767822265625 -9.234375 30.271392822265625 -8.8671875 Q29.787017822265625 -8.5 29.583892822265625 -7.859375 Q29.271392822265625 -6.875 29.271392822265625 -5.703125 L29.271392822265625 0.0 L27.427642822265625 0.0 Z"/><path d=" M34.556121826171875 -12.90625 L34.556121826171875 -15.03125 L36.399871826171875 -15.03125 L36.399871826171875 -12.90625 L34.556121826171875 -12.90625 Z M34.556121826171875 0.0 L34.556121826171875 -10.890625 L36.399871826171875 -10.890625 L36.399871826171875 0.0 L34.556121826171875 0.0 Z"/><path d=" M46.74420166015625 -3.5 L48.65045166015625 -3.265625 Q48.19732666015625 -1.59375 46.97857666015625 -0.671875 Q45.75982666015625 0.25 43.85357666015625 0.25 Q41.46295166015625 0.25 40.06451416015625 -1.2265625 Q38.66607666015625 -2.703125 38.66607666015625 -5.359375 Q38.66607666015625 -8.09375 40.08013916015625 -9.6171875 Q41.49420166015625 -11.140625 43.75982666015625 -11.140625 Q45.94732666015625 -11.140625 47.33013916015625 -9.6484375 Q48.71295166015625 -8.15625 48.71295166015625 -5.46875 Q48.71295166015625 -5.296875 48.69732666015625 -4.96875 L40.57232666015625 -4.96875 Q40.68170166015625 -3.171875 41.59576416015625 -2.21875 Q42.50982666015625 -1.265625 43.86920166015625 -1.265625 Q44.88482666015625 -1.265625 45.60357666015625 -1.8046875 Q46.32232666015625 -2.34375 46.74420166015625 -3.5 Z M40.68170166015625 -6.484375 L46.75982666015625 -6.484375 Q46.63482666015625 -7.859375 46.05670166015625 -8.546875 Q45.18170166015625 -9.625 43.77545166015625 -9.625 Q42.50982666015625 -9.625 41.64263916015625 -8.7734375 Q40.77545166015625 -7.921875 40.68170166015625 -6.484375 Z"/><path d=" M50.394073486328125 -3.25 L52.222198486328125 -3.53125 Q52.378448486328125 -2.4375 53.081573486328125 -1.8515625 Q53.784698486328125 -1.265625 55.050323486328125 -1.265625 Q56.315948486328125 -1.265625 56.933135986328125 -1.7890625 Q57.550323486328125 -2.3125 57.550323486328125 -3.0 Q57.550323486328125 -3.625 57.003448486328125 -3.984375 Q56.628448486328125 -4.234375 55.112823486328125 -4.609375 Q53.081573486328125 -5.125 52.300323486328125 -5.5 Q51.519073486328125 -5.875 51.112823486328125 -6.5390625 Q50.706573486328125 -7.203125 50.706573486328125 -8.0 Q50.706573486328125 -8.71875 51.042510986328125 -9.34375 Q51.378448486328125 -9.96875 51.940948486328125 -10.375 Q52.378448486328125 -10.6875 53.120635986328125 -10.9140625 Q53.862823486328125 -11.140625 54.722198486328125 -11.140625 Q56.003448486328125 -11.140625 56.972198486328125 -10.765625 Q57.940948486328125 -10.390625 58.401885986328125 -9.765625 Q58.862823486328125 -9.140625 59.034698486328125 -8.078125 L57.222198486328125 -7.828125 Q57.112823486328125 -8.671875 56.519073486328125 -9.1484375 Q55.925323486328125 -9.625 54.847198486328125 -9.625 Q53.581573486328125 -9.625 53.034698486328125 -9.203125 Q52.487823486328125 -8.78125 52.487823486328125 -8.21875 Q52.487823486328125 -7.859375 52.722198486328125 -7.5625 Q52.940948486328125 -7.265625 53.425323486328125 -7.078125 Q53.706573486328125 -6.96875 55.050323486328125 -6.609375 Q57.019073486328125 -6.078125 57.792510986328125 -5.75 Q58.565948486328125 -5.421875 59.003448486328125 -4.78125 Q59.440948486328125 -4.140625 59.440948486328125 -3.203125 Q59.440948486328125 -2.28125 58.901885986328125 -1.4609375 Q58.362823486328125 -0.640625 57.347198486328125 -0.1953125 Q56.331573486328125 0.25 55.050323486328125 0.25 Q52.925323486328125 0.25 51.815948486328125 -0.6328125 Q50.706573486328125 -1.515625 50.394073486328125 -3.25 Z"/><path d=""/><path d=" M74.15911865234375 0.0 L72.31536865234375 0.0 L72.31536865234375 -11.765625 Q71.64349365234375 -11.125 70.55755615234375 -10.4921875 Q69.47161865234375 -9.859375 68.61224365234375 -9.53125 L68.61224365234375 -11.328125 Q70.15911865234375 -12.046875 71.32318115234375 -13.0859375 Q72.48724365234375 -14.125 72.97161865234375 -15.09375 L74.15911865234375 -15.09375 L74.15911865234375 0.0 Z"/></g></g><path d=" M8.0 304.0 L92.8506571451823 304.0 L92.8506571451823 334.0 L8.0 334.0 L8.0 304.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M392.7673723482833 86.2205995038715 L400.1401457163845 82.42923719261587" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M400.1401457163845 82.42923719261587 L446.7005208333333 82.42923719261587" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M141.89066260309596 61.54475439153825 L137.0425664006326 56.63645323952362" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M137.0425664006326 56.63645323952362 L36.129557291666686 56.63645323952362" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M193.49209507617303 290.53608523571603 L191.157641437614 295.99295335967156" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M191.157641437614 295.99295335967156 L36.129557291666686 295.99295335967156" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M485.0 157.0 L485.0 171.0 L499.0 171.0 L499.0 157.0 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><path d=" M485.0 157.0 L485.0 171.0 L499.0 171.0 L499.0 157.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M507.6354166666667 152.66666666666666 L524.9739583333334 152.66666666666666 L524.9739583333334 175.66666666666666 L507.6354166666667 175.66666666666666 L507.6354166666667 152.66666666666666 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,510.3020935058594,171.6666717529297)" style="fill-opacity:1.0;fill:#000000;"><path d=" M-0.03125 0.0 L4.375 -11.453125 L6.015625 -11.453125 L10.703125 0.0 L8.96875 0.0 L7.640625 -3.46875 L2.84375 -3.46875 L1.59375 0.0 L-0.03125 0.0 Z M3.28125 -4.703125 L7.171875 -4.703125 L5.96875 -7.875 Q5.421875 -9.328125 5.15625 -10.25 Q4.9375 -9.15625 4.546875 -8.0625 L3.28125 -4.703125 Z"/></g></g><path d=" M507.6354166666667 152.66666666666666 L524.9739583333334 152.66666666666666 L524.9739583333334 175.66666666666666 L507.6354166666667 175.66666666666666 L507.6354166666667 152.66666666666666 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M485.0 178.0 L485.0 192.0 L499.0 192.0 L499.0 178.0 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><path d=" M485.0 178.0 L485.0 192.0 L499.0 192.0 L499.0 178.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M507.6354166666667 173.99999999999997 L524.9739583333334 173.99999999999997 L524.9739583333334 196.99999999999997 L507.6354166666667 196.99999999999997 L507.6354166666667 173.99999999999997 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,510.3020935058594,193.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M1.171875 0.0 L1.171875 -11.453125 L5.46875 -11.453125 Q6.78125 -11.453125 7.578125 -11.109375 Q8.375 -10.765625 8.8203125 -10.0390625 Q9.265625 -9.3125 9.265625 -8.53125 Q9.265625 -7.796875 8.8671875 -7.1484375 Q8.46875 -6.5 7.671875 -6.09375 Q8.703125 -5.796875 9.265625 -5.0625 Q9.828125 -4.328125 9.828125 -3.328125 Q9.828125 -2.515625 9.484375 -1.828125 Q9.140625 -1.140625 8.640625 -0.765625 Q8.140625 -0.390625 7.390625 -0.1953125 Q6.640625 0.0 5.546875 0.0 L1.171875 0.0 Z M2.6875 -6.640625 L5.171875 -6.640625 Q6.171875 -6.640625 6.609375 -6.78125 Q7.1875 -6.953125 7.484375 -7.3515625 Q7.78125 -7.75 7.78125 -8.34375 Q7.78125 -8.921875 7.5078125 -9.3515625 Q7.234375 -9.78125 6.7265625 -9.9453125 Q6.21875 -10.109375 4.984375 -10.109375 L2.6875 -10.109375 L2.6875 -6.640625 Z M2.6875 -1.359375 L5.546875 -1.359375 Q6.28125 -1.359375 6.578125 -1.40625 Q7.09375 -1.5 7.4453125 -1.71875 Q7.796875 -1.9375 8.0234375 -2.359375 Q8.25 -2.78125 8.25 -3.328125 Q8.25 -3.96875 7.921875 -4.4375 Q7.59375 -4.90625 7.015625 -5.1015625 Q6.4375 -5.296875 5.34375 -5.296875 L2.6875 -5.296875 L2.6875 -1.359375 Z"/></g></g><path d=" M507.6354166666667 173.99999999999997 L524.9739583333334 173.99999999999997 L524.9739583333334 196.99999999999997 L507.6354166666667 196.99999999999997 L507.6354166666667 173.99999999999997 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M485.0 199.0 L485.0 213.0 L499.0 213.0 L499.0 199.0 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><path d=" M485.0 199.0 L485.0 213.0 L499.0 213.0 L499.0 199.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M507.6354166666667 195.3333333333333 L525.8567708333334 195.3333333333333 L525.8567708333334 218.3333333333333 L507.6354166666667 218.3333333333333 L507.6354166666667 195.3333333333333 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,510.3020935058594,214.3333282470703)" style="fill-opacity:1.0;fill:#000000;"><path d=" M9.40625 -4.015625 L10.921875 -3.640625 Q10.453125 -1.765625 9.2109375 -0.78125 Q7.96875 0.203125 6.1875 0.203125 Q4.328125 0.203125 3.171875 -0.5546875 Q2.015625 -1.3125 1.40625 -2.7421875 Q0.796875 -4.171875 0.796875 -5.8125 Q0.796875 -7.609375 1.484375 -8.9375 Q2.171875 -10.265625 3.4296875 -10.9609375 Q4.6875 -11.65625 6.203125 -11.65625 Q7.921875 -11.65625 9.09375 -10.78125 Q10.265625 -9.90625 10.734375 -8.3125 L9.234375 -7.96875 Q8.84375 -9.21875 8.0859375 -9.7890625 Q7.328125 -10.359375 6.171875 -10.359375 Q4.859375 -10.359375 3.96875 -9.7265625 Q3.078125 -9.09375 2.71875 -8.0234375 Q2.359375 -6.953125 2.359375 -5.828125 Q2.359375 -4.359375 2.7890625 -3.2734375 Q3.21875 -2.1875 4.1171875 -1.6484375 Q5.015625 -1.109375 6.0625 -1.109375 Q7.328125 -1.109375 8.2109375 -1.84375 Q9.09375 -2.578125 9.40625 -4.015625 Z"/></g></g><path d=" M507.6354166666667 195.3333333333333 L525.8567708333334 195.3333333333333 L525.8567708333334 218.3333333333333 L507.6354166666667 218.3333333333333 L507.6354166666667 195.3333333333333 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M446.7005208333333 71.92923719261587 L475.609375 71.92923719261587 L475.609375 94.92923719261587 L446.7005208333333 94.92923719261587 L446.7005208333333 71.92923719261587 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,449.3671875,90.92923736572266)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.671875 -3.0 L2.140625 -3.125 Q2.3125 -2.046875 2.90625 -1.5078125 Q3.5 -0.96875 4.34375 -0.96875 Q5.359375 -0.96875 6.0625 -1.734375 Q6.765625 -2.5 6.765625 -3.765625 Q6.765625 -4.96875 6.09375 -5.6640625 Q5.421875 -6.359375 4.328125 -6.359375 Q3.640625 -6.359375 3.09375 -6.046875 Q2.546875 -5.734375 2.234375 -5.25 L0.921875 -5.421875 L2.03125 -11.296875 L7.71875 -11.296875 L7.71875 -9.953125 L3.15625 -9.953125 L2.53125 -6.875 Q3.5625 -7.59375 4.703125 -7.59375 Q6.203125 -7.59375 7.234375 -6.5546875 Q8.265625 -5.515625 8.265625 -3.890625 Q8.265625 -2.328125 7.359375 -1.203125 Q6.25 0.203125 4.34375 0.203125 Q2.78125 0.203125 1.796875 -0.6796875 Q0.8125 -1.5625 0.671875 -3.0 Z"/><path d=" M10.3515625 0.0 L10.3515625 -1.609375 L11.9609375 -1.609375 L11.9609375 0.0 L10.3515625 0.0 Z"/><path d=" M14.015625 -5.65625 Q14.015625 -7.6875 14.4296875 -8.921875 Q14.84375 -10.15625 15.671875 -10.828125 Q16.5 -11.5 17.75 -11.5 Q18.671875 -11.5 19.3671875 -11.1328125 Q20.0625 -10.765625 20.515625 -10.0625 Q20.96875 -9.359375 21.2265625 -8.359375 Q21.484375 -7.359375 21.484375 -5.65625 Q21.484375 -3.640625 21.0703125 -2.3984375 Q20.65625 -1.15625 19.828125 -0.4765625 Q19.0 0.203125 17.75 0.203125 Q16.09375 0.203125 15.140625 -1.0 Q14.015625 -2.421875 14.015625 -5.65625 Z M15.453125 -5.65625 Q15.453125 -2.828125 16.1171875 -1.8984375 Q16.78125 -0.96875 17.75 -0.96875 Q18.71875 -0.96875 19.375 -1.90625 Q20.03125 -2.84375 20.03125 -5.65625 Q20.03125 -8.484375 19.375 -9.4140625 Q18.71875 -10.34375 17.734375 -10.34375 Q16.765625 -10.34375 16.1875 -9.515625 Q15.453125 -8.46875 15.453125 -5.65625 Z"/></g></g><path d=" M446.7005208333333 71.92923719261587 L475.609375 71.92923719261587 L475.609375 94.92923719261587 L446.7005208333333 94.92923719261587 L446.7005208333333 71.92923719261587 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M7.220703125000021 45.13645323952362 L36.129557291666686 45.13645323952362 L36.129557291666686 68.13645323952362 L7.220703125000021 68.13645323952362 L7.220703125000021 45.13645323952362 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,9.887370109558105,64.1364517211914)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.171875 0.0 L5.171875 -2.75 L0.203125 -2.75 L0.203125 -4.03125 L5.4375 -11.453125 L6.578125 -11.453125 L6.578125 -4.03125 L8.125 -4.03125 L8.125 -2.75 L6.578125 -2.75 L6.578125 0.0 L5.171875 0.0 Z M5.171875 -4.03125 L5.171875 -9.203125 L1.59375 -4.03125 L5.171875 -4.03125 Z"/><path d=" M10.3515625 0.0 L10.3515625 -1.609375 L11.9609375 -1.609375 L11.9609375 0.0 L10.3515625 0.0 Z"/><path d=" M14.015625 -5.65625 Q14.015625 -7.6875 14.4296875 -8.921875 Q14.84375 -10.15625 15.671875 -10.828125 Q16.5 -11.5 17.75 -11.5 Q18.671875 -11.5 19.3671875 -11.1328125 Q20.0625 -10.765625 20.515625 -10.0625 Q20.96875 -9.359375 21.2265625 -8.359375 Q21.484375 -7.359375 21.484375 -5.65625 Q21.484375 -3.640625 21.0703125 -2.3984375 Q20.65625 -1.15625 19.828125 -0.4765625 Q19.0 0.203125 17.75 0.203125 Q16.09375 0.203125 15.140625 -1.0 Q14.015625 -2.421875 14.015625 -5.65625 Z M15.453125 -5.65625 Q15.453125 -2.828125 16.1171875 -1.8984375 Q16.78125 -0.96875 17.75 -0.96875 Q18.71875 -0.96875 19.375 -1.90625 Q20.03125 -2.84375 20.03125 -5.65625 Q20.03125 -8.484375 19.375 -9.4140625 Q18.71875 -10.34375 17.734375 -10.34375 Q16.765625 -10.34375 16.1875 -9.515625 Q15.453125 -8.46875 15.453125 -5.65625 Z"/></g></g><path d=" M7.220703125000021 45.13645323952362 L36.129557291666686 45.13645323952362 L36.129557291666686 68.13645323952362 L7.220703125000021 68.13645323952362 L7.220703125000021 45.13645323952362 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M-1.6777343749999787 284.49295335967156 L36.129557291666686 284.49295335967156 L36.129557291666686 307.49295335967156 L-1.6777343749999787 307.49295335967156 L-1.6777343749999787 284.49295335967156 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,0.9889323115348816,303.4929504394531)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.96875 0.0 L4.5625 0.0 L4.5625 -8.96875 Q4.046875 -8.484375 3.2265625 -8.0 Q2.40625 -7.515625 1.75 -7.265625 L1.75 -8.625 Q2.921875 -9.1875 3.8046875 -9.9765625 Q4.6875 -10.765625 5.0625 -11.5 L5.96875 -11.5 L5.96875 0.0 Z"/><path d=" M16.9609375 -1.359375 L16.9609375 0.0 L9.3828125 0.0 Q9.3671875 -0.515625 9.5546875 -0.984375 Q9.8359375 -1.75 10.4765625 -2.5 Q11.1171875 -3.25 12.3203125 -4.234375 Q14.1796875 -5.765625 14.8359375 -6.6640625 Q15.4921875 -7.5625 15.4921875 -8.359375 Q15.4921875 -9.1875 14.8984375 -9.765625 Q14.3046875 -10.34375 13.3359375 -10.34375 Q12.3203125 -10.34375 11.7109375 -9.734375 Q11.1015625 -9.125 11.1015625 -8.046875 L9.6484375 -8.1875 Q9.8046875 -9.8125 10.7734375 -10.65625 Q11.7421875 -11.5 13.3671875 -11.5 Q15.0234375 -11.5 15.984375 -10.5859375 Q16.9453125 -9.671875 16.9453125 -8.328125 Q16.9453125 -7.640625 16.6640625 -6.9765625 Q16.3828125 -6.3125 15.7265625 -5.578125 Q15.0703125 -4.84375 13.5546875 -3.5625 Q12.2890625 -2.5 11.9296875 -2.1171875 Q11.5703125 -1.734375 11.3359375 -1.359375 L16.9609375 -1.359375 Z"/><path d=" M19.25 0.0 L19.25 -1.609375 L20.859375 -1.609375 L20.859375 0.0 L19.25 0.0 Z"/><path d=" M22.9140625 -5.65625 Q22.9140625 -7.6875 23.328125 -8.921875 Q23.7421875 -10.15625 24.5703125 -10.828125 Q25.3984375 -11.5 26.6484375 -11.5 Q27.5703125 -11.5 28.265625 -11.1328125 Q28.9609375 -10.765625 29.4140625 -10.0625 Q29.8671875 -9.359375 30.125 -8.359375 Q30.3828125 -7.359375 30.3828125 -5.65625 Q30.3828125 -3.640625 29.96875 -2.3984375 Q29.5546875 -1.15625 28.7265625 -0.4765625 Q27.8984375 0.203125 26.6484375 0.203125 Q24.9921875 0.203125 24.0390625 -1.0 Q22.9140625 -2.421875 22.9140625 -5.65625 Z M24.3515625 -5.65625 Q24.3515625 -2.828125 25.015625 -1.8984375 Q25.6796875 -0.96875 26.6484375 -0.96875 Q27.6171875 -0.96875 28.2734375 -1.90625 Q28.9296875 -2.84375 28.9296875 -5.65625 Q28.9296875 -8.484375 28.2734375 -9.4140625 Q27.6171875 -10.34375 26.6328125 -10.34375 Q25.6640625 -10.34375 25.0859375 -9.515625 Q24.3515625 -8.46875 24.3515625 -5.65625 Z"/></g></g><path d=" M-1.6777343749999787 284.49295335967156 L36.129557291666686 284.49295335967156 L36.129557291666686 307.49295335967156 L-1.6777343749999787 307.49295335967156 L-1.6777343749999787 284.49295335967156 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/></g><g style="fill-opacity:0.01;fill:#FFFFFF;"/></svg> \ No newline at end of file
+]]></script><style type="text/css"><![CDATA[.tooltip.text{ text-anchor:left;font-size:12pt;fill:black;}.tooltip{fill:rgb(244,245,235)}]]></style><path d=" M0.0 0.0 L533.0 0.0 L533.0 333.0 L0.0 333.0 L0.0 0.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M4.0 4.0 L231.21354166666666 4.0 L231.21354166666666 49.0 L4.0 49.0 L4.0 4.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="32" style="fill-opacity:1.0;fill:#000000;" x="6.6666665" y="42.0">Pie_Chart_Title</text><path d=" M4.0 4.0 L231.21354166666666 4.0 L231.21354166666666 49.0 L4.0 49.0 L4.0 4.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M4.0 42.0 L472.96875 42.0 L472.96875 329.0 L4.0 329.0 L4.0 42.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M440.7005208333333 156.9808428970625 C440.7005208333333 103.06625846664303 367.2695962389061 58.09464415086265 271.5637328465947 53.3956784998981 L255.4150390625 156.9808428970625 Z" style="fill-opacity:0.4980392156862745;fill:#7f7f7f;"/><path d=" M440.7005208333333 156.9808428970625 C440.7005208333333 103.06625846664303 367.2695962389061 58.09464415086265 271.5637328465947 53.3956784998981 L255.4150390625 156.9808428970625 Z" style="stroke:#585858;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M248.5637328465947 49.3956784998981 C173.32120493796572 45.7014215170726 101.61434214546247 68.00757238553588 67.32446596730261 105.77452806688578 L232.4150390625 152.9808428970625 Z" style="fill-opacity:0.4980392156862745;fill:#7f7f7f;"/><path d=" M248.5637328465947 49.3956784998981 C173.32120493796572 45.7014215170726 101.61434214546247 68.00757238553588 67.32446596730261 105.77452806688578 L232.4150390625 152.9808428970625 Z" style="stroke:#585858;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M72.32446596730261 141.77452806688578 C37.49875101864828 180.13165791487515 48.39193037247509 226.56580730266313 99.72109204841917 258.5576073544791 C151.05025372436324 290.5494074062951 232.20024945319776 301.48278083076497 303.8154172452267 286.0553225564406 C375.4305850372556 270.6278642821163 422.70052083333326 232.03005612580907 422.7005208333333 188.98084289706253 L237.4150390625 188.9808428970625 Z" style="fill-opacity:0.4980392156862745;fill:#7f7f7f;"/><path d=" M72.32446596730261 141.77452806688578 C37.49875101864828 180.13165791487515 48.39193037247509 226.56580730266313 99.72109204841917 258.5576073544791 C151.05025372436324 290.5494074062951 232.20024945319776 301.48278083076497 303.8154172452267 286.0553225564406 C375.4305850372556 270.6278642821163 422.70052083333326 232.03005612580907 422.7005208333333 188.98084289706253 L237.4150390625 188.9808428970625 Z" style="stroke:#585858;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M8.0 304.0 L92.8506571451823 304.0 L92.8506571451823 334.0 L8.0 334.0 L8.0 304.0 Z" style="fill-opacity:0.4980392156862745;fill:#7f7f7f;"/><text font-family="SansSerif" font-size="21" style="fill-opacity:1.0;fill:#000000;" x="10.666667" y="329.0">Series 1</text><path d=" M8.0 304.0 L92.8506571451823 304.0 L92.8506571451823 334.0 L8.0 334.0 L8.0 304.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M392.7673723482833 86.2205995038715 L400.1401457163845 82.42923719261587" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M400.1401457163845 82.42923719261587 L446.7005208333333 82.42923719261587" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M141.89066260309596 61.54475439153825 L137.0425664006326 56.63645323952362" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M137.0425664006326 56.63645323952362 L36.129557291666686 56.63645323952362" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M193.49209507617303 290.53608523571603 L191.157641437614 295.99295335967156" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M191.157641437614 295.99295335967156 L36.129557291666686 295.99295335967156" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M485.0 157.0 L485.0 171.0 L499.0 171.0 L499.0 157.0 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><path d=" M485.0 157.0 L485.0 171.0 L499.0 171.0 L499.0 157.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M507.6354166666667 152.66666666666666 L524.9739583333334 152.66666666666666 L524.9739583333334 175.66666666666666 L507.6354166666667 175.66666666666666 L507.6354166666667 152.66666666666666 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" x="510.3021" y="171.66667">A</text><path d=" M507.6354166666667 152.66666666666666 L524.9739583333334 152.66666666666666 L524.9739583333334 175.66666666666666 L507.6354166666667 175.66666666666666 L507.6354166666667 152.66666666666666 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M485.0 178.0 L485.0 192.0 L499.0 192.0 L499.0 178.0 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><path d=" M485.0 178.0 L485.0 192.0 L499.0 192.0 L499.0 178.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M507.6354166666667 173.99999999999997 L524.9739583333334 173.99999999999997 L524.9739583333334 196.99999999999997 L507.6354166666667 196.99999999999997 L507.6354166666667 173.99999999999997 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" x="510.3021" y="193.0">B</text><path d=" M507.6354166666667 173.99999999999997 L524.9739583333334 173.99999999999997 L524.9739583333334 196.99999999999997 L507.6354166666667 196.99999999999997 L507.6354166666667 173.99999999999997 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M485.0 199.0 L485.0 213.0 L499.0 213.0 L499.0 199.0 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><path d=" M485.0 199.0 L485.0 213.0 L499.0 213.0 L499.0 199.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M507.6354166666667 195.3333333333333 L525.8567708333334 195.3333333333333 L525.8567708333334 218.3333333333333 L507.6354166666667 218.3333333333333 L507.6354166666667 195.3333333333333 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" x="510.3021" y="214.33333">C</text><path d=" M507.6354166666667 195.3333333333333 L525.8567708333334 195.3333333333333 L525.8567708333334 218.3333333333333 L507.6354166666667 218.3333333333333 L507.6354166666667 195.3333333333333 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M446.7005208333333 71.92923719261587 L475.609375 71.92923719261587 L475.609375 94.92923719261587 L446.7005208333333 94.92923719261587 L446.7005208333333 71.92923719261587 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" x="449.3672" y="90.92924">5.0</text><path d=" M446.7005208333333 71.92923719261587 L475.609375 71.92923719261587 L475.609375 94.92923719261587 L446.7005208333333 94.92923719261587 L446.7005208333333 71.92923719261587 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M7.220703125000021 45.13645323952362 L36.129557291666686 45.13645323952362 L36.129557291666686 68.13645323952362 L7.220703125000021 68.13645323952362 L7.220703125000021 45.13645323952362 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" x="9.88737" y="64.13645">4.0</text><path d=" M7.220703125000021 45.13645323952362 L36.129557291666686 45.13645323952362 L36.129557291666686 68.13645323952362 L7.220703125000021 68.13645323952362 L7.220703125000021 45.13645323952362 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M-1.6777343749999787 284.49295335967156 L36.129557291666686 284.49295335967156 L36.129557291666686 307.49295335967156 L-1.6777343749999787 307.49295335967156 L-1.6777343749999787 284.49295335967156 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" x="0.9889323" y="303.49295">12.0</text><path d=" M-1.6777343749999787 284.49295335967156 L36.129557291666686 284.49295335967156 L36.129557291666686 307.49295335967156 L-1.6777343749999787 307.49295335967156 L-1.6777343749999787 284.49295335967156 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/></g><g id="hotSpots" style="fill-opacity:0.01;fill:#FFFFFF;"/></svg> \ No newline at end of file
diff --git a/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/2dscatter.svg b/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/2dscatter.svg
index acb7bdb..d7299a4 100644
--- a/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/2dscatter.svg
+++ b/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/2dscatter.svg
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="533.0" height="333.0"><g style="fill:none;stroke:none"><defs/><script><![CDATA[function BuildHelper(tag, attrList, text) {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="533.0" height="333.0"><g id="outerG" style="fill:none;stroke:none"><defs/><script><![CDATA[function BuildHelper(tag, attrList, text) {
this.tag = tag;
this.attrList = attrList;
this.text = text;
@@ -71,42 +71,82 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
}
}
- TM.show = function TooltiplManager_showTooltip(evt){
- var text = TM.getText(TM.getTitleElement(evt));
- x = evt.clientX;
- y = evt.clientY;
- if (typeof this.group == 'undefined'){
- this.height = 15;
- this.xPadding = 5;
- this.yPadding = -20;
- var mainSvg = evt.target.ownerDocument.documentElement;
- var off = mainSvg.currentTranslate;
- var scl = mainSvg.currentScale;
- this.group = new BuildHelper("g",
- {
- transform:"translate("+(((x+20))/scl)+","+(((y+20))/scl)+")"
- } );
- this.group.addToParent(mainSvg);
- this.rectangle = new BuildHelper("rect",
- {id:"test",
- x: 0,
- y: this.yPadding,
- height: this.height,
- classType: "tooltip"
- } );
- this.rectangle.addToParent(this.group.element);
- var textObj = new BuildHelper("text",
- {id:"tooltip",
- x: this.xPadding,
- y: (this.height/2+4+this.yPadding),
- classType: "tooltip text"
- },text);
- textObj.addToParent(this.group.element);
- var itemlength = textObj.element.getComputedTextLength();
- this.rectangle.element.setAttributeNS(null, "width", (itemlength+2*this.xPadding));
- }
- }
-
+ TM.show = function TooltiplManager_showTooltip(evt){
+ var text = TM.getText(TM.getTitleElement(evt));
+ x = evt.clientX;
+ y = evt.clientY;
+ update = true;
+ if (this.oldX != 'undefined'){
+ diffX = (x - this.oldX);
+ if (diffX < 0) diffX= diffX*(-1);
+ diffY = (y - this.oldY);
+ if (diffY < 0) diffY= diffY*(-1);
+ if ((diffY > 5) || (diffX > 5))
+ update = true;
+ }
+ if (update)
+ TM.remove();
+ if (typeof this.group == 'undefined'){
+ this.oldX = x;
+ this.oldY = y;
+ this.height = 15;
+ this.xPadding = 5;
+ this.yPadding = 20;
+ var mainSvg = evt.target.ownerDocument.documentElement;
+ var off = mainSvg.currentTranslate;
+ var scl = mainSvg.currentScale;
+ var adjustedX = (x-off.x)/scl;
+ var adjustedY = (y-off.y)/scl;
+ this.group = new BuildHelper("g",
+ {
+ opacity:0.8,
+ display: "inline",
+ transform:"translate("+(adjustedX + (10/scl))+","+(adjustedY + (10/scl))+")"
+ } );
+ this.group.addToParent(mainSvg);
+ this.rectangle = new BuildHelper("rect",
+ {id:"test",
+ x: 0,
+ y: 5,
+ transform:"scale("+(1/scl)+","+(1/scl)+")",
+ rx: 2,
+ ry: 2,
+ stroke: "black",
+ height: this.height,
+ classType: "tooltip"
+ } );
+ this.rectangle.addToParent(this.group.element);
+ var textObj = new BuildHelper("text",
+ {id:"tooltip",
+ x: this.xPadding,
+ y: (this.yPadding),
+ transform:"scale("+(1/scl)+","+(1/scl)+")",
+ classType: "tooltip text"
+ });
+ textObj.addToParent(this.group.element);
+ TM.setContent(textObj, text);
+ var outline = textObj.element.getBBox();
+ this.rectangle.element.setAttributeNS(null, "width", (outline.width+2*this.xPadding));
+ this.rectangle.element.setAttributeNS(null, "height", (outline.height+6));
+ }
+ }
+ TM.setContent = function TooltipManager_setContent(textElement, text){
+ var multiLine = text.split(/\\n/);
+ for (var x=0; x<multiLine.length; x++){
+ if (x == 0){
+ textObj = new BuildHelper("tspan",
+ {x: 5
+ },multiLine[x]);
+ }
+ else{
+ textObj = new BuildHelper("tspan",
+ {x: 5,
+ dy:17
+ },multiLine[x]);
+ }
+ textObj.addToParent(textElement.element);
+ }
+ }
TM.getTitleElement = function TM_getTitleElement(evt){
var elem = evt.currentTarget;
@@ -126,15 +166,18 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
return childs.item(x).nodeValue;
return "";
}
- function toggleVisibility(evt, id, compList){
+ function toggleLabelsVisibility(evt, id, compList, labelList){
var mainSvg = evt.target.ownerDocument;
for (i = 0; i < compList.length; i=i+1){
var comp = mainSvg.getElementById(id+'_'+compList[i]);
+ if ( comp == null ) continue;
var styleStr = comp.getAttribute("style");
- rVisibleExp=/visibility:visible/g;
- rHiddenExp=/visibility:hidden/g;
+ rVisibleExp=/visibility:[ ]*visible/g;
+ rInheritExp=/visibility:[ ]*inherit/g;
+ rHiddenExp=/visibility:[ ]*hidden/g;
results = styleStr.search(rVisibleExp);
- if (results == -1){
+ inResults = styleStr.search(rInheritExp);
+ if ((results == -1) && (inResults == -1)){
results = styleStr.search(rHiddenExp);
if (results == -1)
styleStr = styleStr + "visibility:hidden;";
@@ -142,10 +185,74 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
styleStr = styleStr.replace(rHiddenExp,"visibility:visible");
}
else{
+ if (inResults == -1){
styleStr = styleStr.replace(rVisibleExp,"visibility:hidden");
+ }else{
+ styleStr = styleStr.replace(rInheritExp,"visibility:hidden");
+ }
}
comp.setAttributeNS(null, "style", styleStr);
}
+ }
+ function toggleVisibility(evt, id, compList, labelList){
+ var mainSvg = evt.target.ownerDocument;
+ var isHidden = true;
+ for (i = 0; i < compList.length; i=i+1){
+ var comp = mainSvg.getElementById(id+'_'+compList[i]);
+ if ( comp == null ) continue;
+ var styleStr = comp.getAttribute("style");
+ rVisibleExp=/visibility:[ ]*visible/g;
+ rHiddenExp=/visibility:[ ]*hidden/g;
+ results = styleStr.search(rVisibleExp);
+ if (results == -1){
+ results = styleStr.search(rHiddenExp);
+ if (results == -1)
+ styleStr = styleStr + "visibility:hidden;";
+ else{
+ styleStr = styleStr.replace(rHiddenExp,"visibility:visible");
+ isHidden = false;
+ }
+ }
+ else{
+ styleStr = styleStr.replace(rVisibleExp,"visibility:hidden");
+ }
+ comp.setAttributeNS(null, "style", styleStr);
+ }
+ if (labelList != null){
+ for (i = 0; i < labelList.length; i=i+1){
+ var comp = mainSvg.getElementById(id+'_'+labelList[i]+'_g');
+ var styleStr = comp.getAttribute("style");
+ if (isHidden){
+ styleStr = styleStr + "visibility:hidden;";
+ toggleLabelVisibility(evt, id+'_'+labelList[i], 'inherit');
+ }else{
+ styleStr = styleStr.replace(rHiddenExp,"visibility:visible");
+ }
+ comp.setAttributeNS(null, "style", styleStr);
+ }
+ }
+ }
+ function toggleLabelVisibility(evt, id, property){
+ var mainSvg = evt.target.ownerDocument;
+ var comp = mainSvg.getElementById(id);
+ var styleStr = comp.getAttribute("style");
+ rVisibleExp=/visibility:[ ]*visible/g;
+ rInheritExp=/visibility:[ ]*inherit/g;
+ rHiddenExp=/visibility:[ ]*hidden/g;
+ results = styleStr.search(rVisibleExp);
+ inResults = styleStr.search(rInheritExp);
+ if ((results == -1) && (inResults == -1)){
+ results = styleStr.search(rHiddenExp);
+ if (results == -1)
+ styleStr = styleStr + "visibility:"+property+";";
+ }
+ else{
+ if (inResults == -1)
+ styleStr = styleStr.replace(rVisibleExp,"visibility:"+property);
+ else
+ styleStr = styleStr.replace(rInheritExp,"visibility:"+property);
+ }
+ comp.setAttributeNS(null, "style", styleStr);
}
function toHex(val)
{
@@ -162,51 +269,104 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
}
var oldCompId = null;
var oldCompList = null;
+ var fillToColor = new Array();
+ var strokeToColor = new Array();
function highlight(evt, id, compList){
- highlightElement(evt, oldCompId, oldCompList);
+ highlightElement(evt, oldCompId, oldCompList, false);
if (id != oldCompId){
- highlightElement(evt, id, compList);
+ highlightElement(evt, id, compList, true);
oldCompId = id;
oldCompList = compList;
}
else{
oldCompId = null;
oldCompList = null;
+ fillToColor = new Array();
+ strokeToColor = new Array();
}
}
- function highlightElement(evt, id, compList){
+ function highlightElement(evt, id, compList, highlight){
if ((id == null) || (compList == null)) return;
var mainSvg = evt.target.ownerDocument;
for (i = 0; i < compList.length; i=i+1){
var comp = mainSvg.getElementById(id+'_'+compList[i]);
+ if ( comp == null ) continue;
var styleStr = comp.getAttribute("style");
fillIndex = styleStr.search("fill:");
if (fillIndex != -1){
- styleStr = getNewStyle(styleStr, fillIndex, "fill:");
+ styleStr = getNewStyle(styleStr, fillIndex, "fill:", highlight, fillToColor, compList[i]);
}
strokeIndex = styleStr.search("stroke:");
if (strokeIndex != -1){
- styleStr = getNewStyle(styleStr, strokeIndex, "stroke:");
+ styleStr = getNewStyle(styleStr, strokeIndex, "stroke:", highlight, strokeToColor, compList[i]);
}
comp.setAttributeNS(null, "style", styleStr);
}
}
- function getNewStyle(style, index, styleAttr){
+ function getNewStyle(style, index, styleAttr, highlight, lookUpTable, id){
color = style.substring(index+styleAttr.length, style.length );
rgbIndex = color.search("rgb");
if (rgbIndex == -1){
hexColor = color.substring(1, 7);
- hc = getXorColor(hexColor);
+ hc = getHighlight(hexColor, highlight, lookUpTable, id);
return style.replace(styleAttr+"#"+hexColor,styleAttr+hc);
}
else{
bracketIndex = color.search("\\)");
color = color.substring(0, bracketIndex);
hexColor = getHexFromRGB(color);
- hc = getXorColor(hexColor);
+ hc = getHighlight(hexColor, highlight, lookUpTable, id);
return style.substring(0, index) + styleAttr+hc+ style.substring(index+bracketIndex+styleAttr.length+1, style.length);
}
}
+ function isIE(){
+ var agt=parent.navigator.userAgent.toLowerCase();
+ return (agt.indexOf("msie")!=-1);
+}
+ function resizeSVG(e){
+ if(isIE()){
+ var root=e.target.ownerDocument.documentElement;
+ var hotSpot = e.target.ownerDocument.getElementById('hotSpots');
+ var g = e.target.ownerDocument.getElementById('outerG');
+ var xScale = (innerWidth) / root.getAttribute('width');
+ var yScale = (innerHeight) / root.getAttribute('height');
+ g.setAttributeNS(null, 'transform', 'scale('+xScale+','+yScale+')');
+ hotSpot.setAttributeNS(null, 'transform', 'scale('+xScale+','+yScale+')');
+ }
+ }
+ function getHighlight(color, highlight, lookupTable, id){
+ if (!(highlight)){
+ color = lookupTable[id];
+ }
+ else{
+ lookupTable[id] = color;
+ }
+ r = color.substring(0, 2);
+ r = parseInt(r, 16);
+ g = color.substring(2, 4);
+ g = parseInt(g, 16);
+ b = color.substring(4, 6);
+ b = parseInt(b, 16);
+ var value = parseInt(r, 16);
+ if (highlight){
+ r = Math.ceil( (r + 255) / 2 );
+ g = Math.ceil( (g + 255) / 2 );
+ b = Math.ceil( (b + 255) / 2 );
+ }
+ rStr = r.toString(16);
+ gStr = g.toString(16);
+ bStr = b.toString(16);
+ while (rStr.length < 2){
+ rStr = "0"+rStr;
+ }
+ while (gStr.length < 2){
+ gStr = "0"+gStr;
+ }
+ while (bStr.length < 2){
+ bStr = "0"+bStr;
+ }
+return "#"+rStr+gStr+bStr;
+}
function getHexFromRGB(color){
findThem = /\d{1,3}/g;
listOfnum = color.match(findThem);
@@ -224,4 +384,4 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
}
return r+g+b;
}
-]]></script><style type="text/css"><![CDATA[.tooltip.text{ text-anchor:left;font-size:12pt;fill:black;}.tooltip{fill:rgb(244,245,235)}]]></style><path d=" M0.0 0.0 L533.0 0.0 L533.0 333.0 L0.0 333.0 L0.0 0.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M4.0 4.0 L268.5260416666667 4.0 L268.5260416666667 49.0 L4.0 49.0 L4.0 4.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,6.666666507720947,42.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M1.4375 -7.359375 L4.296875 -7.609375 Q4.5 -5.890625 5.2421875 -4.7890625 Q5.984375 -3.6875 7.546875 -3.0078125 Q9.109375 -2.328125 11.0625 -2.328125 Q12.796875 -2.328125 14.125 -2.84375 Q15.453125 -3.359375 16.1015625 -4.2578125 Q16.75 -5.15625 16.75 -6.21875 Q16.75 -7.296875 16.125 -8.1015625 Q15.5 -8.90625 14.0625 -9.453125 Q13.140625 -9.8125 9.984375 -10.5703125 Q6.828125 -11.328125 5.5625 -12.0 Q3.921875 -12.859375 3.1171875 -14.1328125 Q2.3125 -15.40625 2.3125 -16.984375 Q2.3125 -18.71875 3.296875 -20.2265625 Q4.28125 -21.734375 6.171875 -22.515625 Q8.0625 -23.296875 10.375 -23.296875 Q12.921875 -23.296875 14.8671875 -22.4765625 Q16.8125 -21.65625 17.859375 -20.0625 Q18.90625 -18.46875 18.984375 -16.453125 L16.078125 -16.234375 Q15.84375 -18.40625 14.4921875 -19.515625 Q13.140625 -20.625 10.5 -20.625 Q7.75 -20.625 6.4921875 -19.6171875 Q5.234375 -18.609375 5.234375 -17.1875 Q5.234375 -15.953125 6.125 -15.15625 Q7.0 -14.359375 10.6953125 -13.5234375 Q14.390625 -12.6875 15.765625 -12.0625 Q17.765625 -11.140625 18.71875 -9.7265625 Q19.671875 -8.3125 19.671875 -6.46875 Q19.671875 -4.640625 18.625 -3.0234375 Q17.578125 -1.40625 15.6171875 -0.5078125 Q13.65625 0.390625 11.203125 0.390625 Q8.09375 0.390625 5.9921875 -0.515625 Q3.890625 -1.421875 2.6953125 -3.2421875 Q1.5 -5.0625 1.4375 -7.359375 Z"/><path d=" M34.28125 -6.078125 L37.046875 -5.71875 Q36.59375 -2.859375 34.7265625 -1.2421875 Q32.859375 0.375 30.140625 0.375 Q26.734375 0.375 24.6640625 -1.8515625 Q22.59375 -4.078125 22.59375 -8.234375 Q22.59375 -10.921875 23.484375 -12.9375 Q24.375 -14.953125 26.1953125 -15.9609375 Q28.015625 -16.96875 30.15625 -16.96875 Q32.859375 -16.96875 34.578125 -15.6015625 Q36.296875 -14.234375 36.78125 -11.71875 L34.046875 -11.296875 Q33.65625 -12.96875 32.6640625 -13.8125 Q31.671875 -14.65625 30.265625 -14.65625 Q28.140625 -14.65625 26.8125 -13.1328125 Q25.484375 -11.609375 25.484375 -8.3125 Q25.484375 -4.96875 26.765625 -3.453125 Q28.046875 -1.9375 30.109375 -1.9375 Q31.765625 -1.9375 32.875 -2.953125 Q33.984375 -3.96875 34.28125 -6.078125 Z"/><path d=" M50.28125 -2.046875 Q48.71875 -0.71875 47.2734375 -0.171875 Q45.828125 0.375 44.171875 0.375 Q41.4375 0.375 39.96875 -0.9609375 Q38.5 -2.296875 38.5 -4.375 Q38.5 -5.59375 39.0546875 -6.6015625 Q39.609375 -7.609375 40.5078125 -8.21875 Q41.40625 -8.828125 42.53125 -9.140625 Q43.359375 -9.359375 45.03125 -9.5625 Q48.4375 -9.96875 50.046875 -10.53125 Q50.0625 -11.109375 50.0625 -11.265625 Q50.0625 -12.984375 49.265625 -13.6875 Q48.1875 -14.640625 46.0625 -14.640625 Q44.078125 -14.640625 43.1328125 -13.9453125 Q42.1875 -13.25 41.734375 -11.484375 L38.984375 -11.859375 Q39.359375 -13.625 40.21875 -14.7109375 Q41.078125 -15.796875 42.703125 -16.3828125 Q44.328125 -16.96875 46.46875 -16.96875 Q48.59375 -16.96875 49.921875 -16.46875 Q51.25 -15.96875 51.875 -15.2109375 Q52.5 -14.453125 52.75 -13.296875 Q52.890625 -12.578125 52.890625 -10.703125 L52.890625 -6.953125 Q52.890625 -3.03125 53.0703125 -1.9921875 Q53.25 -0.953125 53.78125 0.0 L50.84375 0.0 Q50.40625 -0.875 50.28125 -2.046875 Z M50.046875 -8.328125 Q48.515625 -7.703125 45.453125 -7.265625 Q43.71875 -7.015625 43.0 -6.703125 Q42.28125 -6.390625 41.890625 -5.7890625 Q41.5 -5.1875 41.5 -4.453125 Q41.5 -3.328125 42.3515625 -2.578125 Q43.203125 -1.828125 44.84375 -1.828125 Q46.46875 -1.828125 47.734375 -2.5390625 Q49.0 -3.25 49.59375 -4.484375 Q50.046875 -5.4375 50.046875 -7.296875 L50.046875 -8.328125 Z"/><path d=" M63.390625 -2.515625 L63.796875 -0.03125 Q62.609375 0.21875 61.671875 0.21875 Q60.140625 0.21875 59.296875 -0.265625 Q58.453125 -0.75 58.109375 -1.5390625 Q57.765625 -2.328125 57.765625 -4.859375 L57.765625 -14.40625 L55.703125 -14.40625 L55.703125 -16.59375 L57.765625 -16.59375 L57.765625 -20.703125 L60.5625 -22.390625 L60.5625 -16.59375 L63.390625 -16.59375 L63.390625 -14.40625 L60.5625 -14.40625 L60.5625 -4.703125 Q60.5625 -3.5 60.7109375 -3.15625 Q60.859375 -2.8125 61.1953125 -2.609375 Q61.53125 -2.40625 62.15625 -2.40625 Q62.625 -2.40625 63.390625 -2.515625 Z"/><path d=" M72.28125 -2.515625 L72.6875 -0.03125 Q71.5 0.21875 70.5625 0.21875 Q69.03125 0.21875 68.1875 -0.265625 Q67.34375 -0.75 67.0 -1.5390625 Q66.65625 -2.328125 66.65625 -4.859375 L66.65625 -14.40625 L64.59375 -14.40625 L64.59375 -16.59375 L66.65625 -16.59375 L66.65625 -20.703125 L69.453125 -22.390625 L69.453125 -16.59375 L72.28125 -16.59375 L72.28125 -14.40625 L69.453125 -14.40625 L69.453125 -4.703125 Q69.453125 -3.5 69.6015625 -3.15625 Q69.75 -2.8125 70.0859375 -2.609375 Q70.421875 -2.40625 71.046875 -2.40625 Q71.515625 -2.40625 72.28125 -2.515625 Z"/><path d=" M86.390625 -5.34375 L89.296875 -4.984375 Q88.609375 -2.4375 86.75 -1.03125 Q84.890625 0.375 82.0 0.375 Q78.359375 0.375 76.2265625 -1.8671875 Q74.09375 -4.109375 74.09375 -8.15625 Q74.09375 -12.34375 76.25 -14.65625 Q78.40625 -16.96875 81.84375 -16.96875 Q85.171875 -16.96875 87.28125 -14.703125 Q89.390625 -12.4375 89.390625 -8.328125 Q89.390625 -8.078125 89.375 -7.578125 L77.0 -7.578125 Q77.15625 -4.84375 78.546875 -3.390625 Q79.9375 -1.9375 82.015625 -1.9375 Q83.5625 -1.9375 84.65625 -2.75 Q85.75 -3.5625 86.390625 -5.34375 Z M77.15625 -9.890625 L86.421875 -9.890625 Q86.234375 -11.984375 85.359375 -13.03125 Q84.015625 -14.65625 81.875 -14.65625 Q79.9375 -14.65625 78.6171875 -13.359375 Q77.296875 -12.0625 77.15625 -9.890625 Z"/><path d=" M92.796875 0.0 L92.796875 -16.59375 L95.328125 -16.59375 L95.328125 -14.078125 Q96.296875 -15.84375 97.1171875 -16.40625 Q97.9375 -16.96875 98.921875 -16.96875 Q100.34375 -16.96875 101.8125 -16.0625 L100.84375 -13.453125 Q99.8125 -14.0625 98.78125 -14.0625 Q97.859375 -14.0625 97.125 -13.5078125 Q96.390625 -12.953125 96.078125 -11.96875 Q95.609375 -10.46875 95.609375 -8.6875 L95.609375 0.0 L92.796875 0.0 Z"/><path d=""/><path d=" M129.078125 -8.03125 L132.109375 -7.265625 Q131.15625 -3.53125 128.6796875 -1.5703125 Q126.203125 0.390625 122.625 0.390625 Q118.921875 0.390625 116.6015625 -1.1171875 Q114.28125 -2.625 113.0703125 -5.484375 Q111.859375 -8.34375 111.859375 -11.625 Q111.859375 -15.203125 113.2265625 -17.8671875 Q114.59375 -20.53125 117.1171875 -21.9140625 Q119.640625 -23.296875 122.671875 -23.296875 Q126.109375 -23.296875 128.453125 -21.546875 Q130.796875 -19.796875 131.71875 -16.625 L128.734375 -15.921875 Q127.9375 -18.421875 126.421875 -19.5625 Q124.90625 -20.703125 122.609375 -20.703125 Q119.96875 -20.703125 118.1953125 -19.4375 Q116.421875 -18.171875 115.703125 -16.0390625 Q114.984375 -13.90625 114.984375 -11.640625 Q114.984375 -8.71875 115.8359375 -6.5390625 Q116.6875 -4.359375 118.484375 -3.28125 Q120.28125 -2.203125 122.375 -2.203125 Q124.921875 -2.203125 126.6875 -3.671875 Q128.453125 -5.140625 129.078125 -8.03125 Z"/><path d=" M135.484375 0.0 L135.484375 -22.90625 L138.296875 -22.90625 L138.296875 -14.6875 Q140.265625 -16.96875 143.265625 -16.96875 Q145.109375 -16.96875 146.46875 -16.2421875 Q147.828125 -15.515625 148.4140625 -14.234375 Q149.0 -12.953125 149.0 -10.515625 L149.0 0.0 L146.1875 0.0 L146.1875 -10.515625 Q146.1875 -12.625 145.2734375 -13.5859375 Q144.359375 -14.546875 142.6875 -14.546875 Q141.4375 -14.546875 140.3359375 -13.8984375 Q139.234375 -13.25 138.765625 -12.140625 Q138.296875 -11.03125 138.296875 -9.078125 L138.296875 0.0 L135.484375 0.0 Z"/><path d=" M164.109375 -2.046875 Q162.546875 -0.71875 161.1015625 -0.171875 Q159.65625 0.375 158.0 0.375 Q155.265625 0.375 153.796875 -0.9609375 Q152.328125 -2.296875 152.328125 -4.375 Q152.328125 -5.59375 152.8828125 -6.6015625 Q153.4375 -7.609375 154.3359375 -8.21875 Q155.234375 -8.828125 156.359375 -9.140625 Q157.1875 -9.359375 158.859375 -9.5625 Q162.265625 -9.96875 163.875 -10.53125 Q163.890625 -11.109375 163.890625 -11.265625 Q163.890625 -12.984375 163.09375 -13.6875 Q162.015625 -14.640625 159.890625 -14.640625 Q157.90625 -14.640625 156.9609375 -13.9453125 Q156.015625 -13.25 155.5625 -11.484375 L152.8125 -11.859375 Q153.1875 -13.625 154.046875 -14.7109375 Q154.90625 -15.796875 156.53125 -16.3828125 Q158.15625 -16.96875 160.296875 -16.96875 Q162.421875 -16.96875 163.75 -16.46875 Q165.078125 -15.96875 165.703125 -15.2109375 Q166.328125 -14.453125 166.578125 -13.296875 Q166.71875 -12.578125 166.71875 -10.703125 L166.71875 -6.953125 Q166.71875 -3.03125 166.8984375 -1.9921875 Q167.078125 -0.953125 167.609375 0.0 L164.671875 0.0 Q164.234375 -0.875 164.109375 -2.046875 Z M163.875 -8.328125 Q162.34375 -7.703125 159.28125 -7.265625 Q157.546875 -7.015625 156.828125 -6.703125 Q156.109375 -6.390625 155.71875 -5.7890625 Q155.328125 -5.1875 155.328125 -4.453125 Q155.328125 -3.328125 156.1796875 -2.578125 Q157.03125 -1.828125 158.671875 -1.828125 Q160.296875 -1.828125 161.5625 -2.5390625 Q162.828125 -3.25 163.421875 -4.484375 Q163.875 -5.4375 163.875 -7.296875 L163.875 -8.328125 Z"/><path d=" M171.046875 0.0 L171.046875 -16.59375 L173.578125 -16.59375 L173.578125 -14.078125 Q174.546875 -15.84375 175.3671875 -16.40625 Q176.1875 -16.96875 177.171875 -16.96875 Q178.59375 -16.96875 180.0625 -16.0625 L179.09375 -13.453125 Q178.0625 -14.0625 177.03125 -14.0625 Q176.109375 -14.0625 175.375 -13.5078125 Q174.640625 -12.953125 174.328125 -11.96875 Q173.859375 -10.46875 173.859375 -8.6875 L173.859375 0.0 L171.046875 0.0 Z"/><path d=" M187.875 -2.515625 L188.28125 -0.03125 Q187.09375 0.21875 186.15625 0.21875 Q184.625 0.21875 183.78125 -0.265625 Q182.9375 -0.75 182.59375 -1.5390625 Q182.25 -2.328125 182.25 -4.859375 L182.25 -14.40625 L180.1875 -14.40625 L180.1875 -16.59375 L182.25 -16.59375 L182.25 -20.703125 L185.046875 -22.390625 L185.046875 -16.59375 L187.875 -16.59375 L187.875 -14.40625 L185.046875 -14.40625 L185.046875 -4.703125 Q185.046875 -3.5 185.1953125 -3.15625 Q185.34375 -2.8125 185.6796875 -2.609375 Q186.015625 -2.40625 186.640625 -2.40625 Q187.109375 -2.40625 187.875 -2.515625 Z"/><path d=""/><path d=" M205.703125 0.0 L205.703125 -20.203125 L198.15625 -20.203125 L198.15625 -22.90625 L216.3125 -22.90625 L216.3125 -20.203125 L208.734375 -20.203125 L208.734375 0.0 L205.703125 0.0 Z"/><path d=" M219.078125 -19.671875 L219.078125 -22.90625 L221.890625 -22.90625 L221.890625 -19.671875 L219.078125 -19.671875 Z M219.078125 0.0 L219.078125 -16.59375 L221.890625 -16.59375 L221.890625 0.0 L219.078125 0.0 Z"/><path d=" M232.3125 -2.515625 L232.71875 -0.03125 Q231.53125 0.21875 230.59375 0.21875 Q229.0625 0.21875 228.21875 -0.265625 Q227.375 -0.75 227.03125 -1.5390625 Q226.6875 -2.328125 226.6875 -4.859375 L226.6875 -14.40625 L224.625 -14.40625 L224.625 -16.59375 L226.6875 -16.59375 L226.6875 -20.703125 L229.484375 -22.390625 L229.484375 -16.59375 L232.3125 -16.59375 L232.3125 -14.40625 L229.484375 -14.40625 L229.484375 -4.703125 Q229.484375 -3.5 229.6328125 -3.15625 Q229.78125 -2.8125 230.1171875 -2.609375 Q230.453125 -2.40625 231.078125 -2.40625 Q231.546875 -2.40625 232.3125 -2.515625 Z"/><path d=" M235.0 0.0 L235.0 -22.90625 L237.8125 -22.90625 L237.8125 0.0 L235.0 0.0 Z"/><path d=" M253.53125 -5.34375 L256.4375 -4.984375 Q255.75 -2.4375 253.890625 -1.03125 Q252.03125 0.375 249.140625 0.375 Q245.5 0.375 243.3671875 -1.8671875 Q241.234375 -4.109375 241.234375 -8.15625 Q241.234375 -12.34375 243.390625 -14.65625 Q245.546875 -16.96875 248.984375 -16.96875 Q252.3125 -16.96875 254.421875 -14.703125 Q256.53125 -12.4375 256.53125 -8.328125 Q256.53125 -8.078125 256.515625 -7.578125 L244.140625 -7.578125 Q244.296875 -4.84375 245.6875 -3.390625 Q247.078125 -1.9375 249.15625 -1.9375 Q250.703125 -1.9375 251.796875 -2.75 Q252.890625 -3.5625 253.53125 -5.34375 Z M244.296875 -9.890625 L253.5625 -9.890625 Q253.375 -11.984375 252.5 -13.03125 Q251.15625 -14.65625 249.015625 -14.65625 Q247.078125 -14.65625 245.7578125 -13.359375 Q244.4375 -12.0625 244.296875 -9.890625 Z"/></g></g><path d=" M4.0 4.0 L268.5260416666667 4.0 L268.5260416666667 49.0 L4.0 49.0 L4.0 4.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M58.81966145833333 54.0 L427.6695963541667 54.0 L427.6695963541667 277.3333333333333 L58.81966145833333 277.3333333333333 L58.81966145833333 54.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M58.81966145833333 283.0 L426.6695963541667 283.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M58.0 278.0 L58.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M87.0 278.0 L87.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M115.0 278.0 L115.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M143.0 278.0 L143.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M172.0 278.0 L172.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M200.0 278.0 L200.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M228.0 278.0 L228.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M256.0 278.0 L256.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M285.0 278.0 L285.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M313.0 278.0 L313.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M341.0 278.0 L341.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M370.0 278.0 L370.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M398.0 278.0 L398.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M426.0 278.0 L426.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M58.81966145833332 305.0 L173.24557495117188 305.0 L173.24557495117188 335.0 L58.81966145833332 335.0 L58.81966145833332 305.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,61.486328125,330.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.09375 0.0 L5.90625 -7.828125 L0.78125 -15.03125 L3.140625 -15.03125 L5.875 -11.171875 Q6.734375 -9.984375 7.078125 -9.328125 Q7.59375 -10.15625 8.28125 -11.046875 L11.296875 -15.03125 L13.46875 -15.03125 L8.1875 -7.953125 L13.875 0.0 L11.40625 0.0 L7.625 -5.359375 Q7.3125 -5.828125 6.96875 -6.375 Q6.46875 -5.546875 6.25 -5.234375 L2.484375 0.0 L0.09375 0.0 Z"/><path d=" M14.88714599609375 -4.515625 L14.88714599609375 -6.375 L20.55902099609375 -6.375 L20.55902099609375 -4.515625 L14.88714599609375 -4.515625 Z"/><path d=" M21.28125 0.0 L27.0625 -15.03125 L29.203125 -15.03125 L35.34375 0.0 L33.078125 0.0 L31.328125 -4.546875 L25.046875 -4.546875 L23.390625 0.0 L21.28125 0.0 Z M25.625 -6.171875 L30.71875 -6.171875 L29.140625 -10.34375 Q28.421875 -12.234375 28.078125 -13.453125 Q27.796875 -12.0 27.265625 -10.578125 L25.625 -6.171875 Z"/><path d=" M35.68402099609375 0.0 L39.65277099609375 -5.65625 L35.98089599609375 -10.890625 L38.29339599609375 -10.890625 L39.96527099609375 -8.34375 Q40.43402099609375 -7.609375 40.71527099609375 -7.109375 Q41.16839599609375 -7.796875 41.54339599609375 -8.3125 L43.38714599609375 -10.890625 L45.59027099609375 -10.890625 L41.82464599609375 -5.765625 L45.87152099609375 0.0 L43.60589599609375 0.0 L41.37152099609375 -3.390625 L40.77777099609375 -4.296875 L37.91839599609375 0.0 L35.68402099609375 0.0 Z"/><path d=" M47.57464599609375 -12.90625 L47.57464599609375 -15.03125 L49.41839599609375 -15.03125 L49.41839599609375 -12.90625 L47.57464599609375 -12.90625 Z M47.57464599609375 0.0 L47.57464599609375 -10.890625 L49.41839599609375 -10.890625 L49.41839599609375 0.0 L47.57464599609375 0.0 Z"/><path d=" M51.559600830078125 -3.25 L53.387725830078125 -3.53125 Q53.543975830078125 -2.4375 54.247100830078125 -1.8515625 Q54.950225830078125 -1.265625 56.215850830078125 -1.265625 Q57.481475830078125 -1.265625 58.098663330078125 -1.7890625 Q58.715850830078125 -2.3125 58.715850830078125 -3.0 Q58.715850830078125 -3.625 58.168975830078125 -3.984375 Q57.793975830078125 -4.234375 56.278350830078125 -4.609375 Q54.247100830078125 -5.125 53.465850830078125 -5.5 Q52.684600830078125 -5.875 52.278350830078125 -6.5390625 Q51.872100830078125 -7.203125 51.872100830078125 -8.0 Q51.872100830078125 -8.71875 52.208038330078125 -9.34375 Q52.543975830078125 -9.96875 53.106475830078125 -10.375 Q53.543975830078125 -10.6875 54.286163330078125 -10.9140625 Q55.028350830078125 -11.140625 55.887725830078125 -11.140625 Q57.168975830078125 -11.140625 58.137725830078125 -10.765625 Q59.106475830078125 -10.390625 59.567413330078125 -9.765625 Q60.028350830078125 -9.140625 60.200225830078125 -8.078125 L58.387725830078125 -7.828125 Q58.278350830078125 -8.671875 57.684600830078125 -9.1484375 Q57.090850830078125 -9.625 56.012725830078125 -9.625 Q54.747100830078125 -9.625 54.200225830078125 -9.203125 Q53.653350830078125 -8.78125 53.653350830078125 -8.21875 Q53.653350830078125 -7.859375 53.887725830078125 -7.5625 Q54.106475830078125 -7.265625 54.590850830078125 -7.078125 Q54.872100830078125 -6.96875 56.215850830078125 -6.609375 Q58.184600830078125 -6.078125 58.958038330078125 -5.75 Q59.731475830078125 -5.421875 60.168975830078125 -4.78125 Q60.606475830078125 -4.140625 60.606475830078125 -3.203125 Q60.606475830078125 -2.28125 60.067413330078125 -1.4609375 Q59.528350830078125 -0.640625 58.512725830078125 -0.1953125 Q57.497100830078125 0.25 56.215850830078125 0.25 Q54.090850830078125 0.25 52.981475830078125 -0.6328125 Q51.872100830078125 -1.515625 51.559600830078125 -3.25 Z"/><path d=""/><path d=" M72.93402099609375 0.0 L72.93402099609375 -13.265625 L67.99652099609375 -13.265625 L67.99652099609375 -15.03125 L79.90277099609375 -15.03125 L79.90277099609375 -13.265625 L74.93402099609375 -13.265625 L74.93402099609375 0.0 L72.93402099609375 0.0 Z"/><path d=" M81.90567016601562 -12.90625 L81.90567016601562 -15.03125 L83.74942016601562 -15.03125 L83.74942016601562 -12.90625 L81.90567016601562 -12.90625 Z M81.90567016601562 0.0 L81.90567016601562 -10.890625 L83.74942016601562 -10.890625 L83.74942016601562 0.0 L81.90567016601562 0.0 Z"/><path d=" M90.671875 -1.65625 L90.9375 -0.015625 Q90.15625 0.140625 89.53125 0.140625 Q88.53125 0.140625 87.9765625 -0.1796875 Q87.421875 -0.5 87.1953125 -1.015625 Q86.96875 -1.53125 86.96875 -3.1875 L86.96875 -9.453125 L85.625 -9.453125 L85.625 -10.890625 L86.96875 -10.890625 L86.96875 -13.59375 L88.8125 -14.6875 L88.8125 -10.890625 L90.671875 -10.890625 L90.671875 -9.453125 L88.8125 -9.453125 L88.8125 -3.09375 Q88.8125 -2.296875 88.90625 -2.0703125 Q89.0 -1.84375 89.21875 -1.7109375 Q89.4375 -1.578125 89.859375 -1.578125 Q90.15625 -1.578125 90.671875 -1.65625 Z"/><path d=" M92.51504516601562 0.0 L92.51504516601562 -15.03125 L94.35879516601562 -15.03125 L94.35879516601562 0.0 L92.51504516601562 0.0 Z"/><path d=" M104.75 -3.5 L106.65625 -3.265625 Q106.203125 -1.59375 104.984375 -0.671875 Q103.765625 0.25 101.859375 0.25 Q99.46875 0.25 98.0703125 -1.2265625 Q96.671875 -2.703125 96.671875 -5.359375 Q96.671875 -8.09375 98.0859375 -9.6171875 Q99.5 -11.140625 101.765625 -11.140625 Q103.953125 -11.140625 105.3359375 -9.6484375 Q106.71875 -8.15625 106.71875 -5.46875 Q106.71875 -5.296875 106.703125 -4.96875 L98.578125 -4.96875 Q98.6875 -3.171875 99.6015625 -2.21875 Q100.515625 -1.265625 101.875 -1.265625 Q102.890625 -1.265625 103.609375 -1.8046875 Q104.328125 -2.34375 104.75 -3.5 Z M98.6875 -6.484375 L104.765625 -6.484375 Q104.640625 -7.859375 104.0625 -8.546875 Q103.1875 -9.625 101.78125 -9.625 Q100.515625 -9.625 99.6484375 -8.7734375 Q98.78125 -7.921875 98.6875 -6.484375 Z"/></g></g><path d=" M58.81966145833332 305.0 L173.24557495117188 305.0 L173.24557495117188 335.0 L58.81966145833332 335.0 L58.81966145833332 305.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M52.152994791666664 276.3333333333333 L52.152994791666664 54.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 276.0 L57.152994791666664 276.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 256.0 L57.152994791666664 256.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 235.0 L57.152994791666664 235.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 215.0 L57.152994791666664 215.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 195.0 L57.152994791666664 195.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 175.0 L57.152994791666664 175.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 155.0 L57.152994791666664 155.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 134.0 L57.152994791666664 134.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 114.0 L57.152994791666664 114.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 94.0 L57.152994791666664 94.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 74.0 L57.152994791666664 74.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 54.0 L57.152994791666664 54.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M37.00000000000001 138.42591349283856 L151.42591349283856 138.42591349283856 L151.42591349283856 168.42591349283856 L37.00000000000001 168.42591349283856 L37.00000000000001 138.42591349283856 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-131.42591349283856,205.42591349283856)" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(-0.0,-1.0,1.0,0.0,32.000005086263,165.75924555460614)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.859375 0.0 L5.859375 -6.375 L0.0625 -15.03125 L2.484375 -15.03125 L5.4375 -10.5 Q6.265625 -9.234375 6.96875 -7.953125 Q7.65625 -9.140625 8.609375 -10.609375 L11.53125 -15.03125 L13.84375 -15.03125 L7.84375 -6.375 L7.84375 0.0 L5.859375 0.0 Z"/><path d=" M14.88714599609375 -4.515625 L14.88714599609375 -6.375 L20.55902099609375 -6.375 L20.55902099609375 -4.515625 L14.88714599609375 -4.515625 Z"/><path d=" M21.28125 0.0 L27.0625 -15.03125 L29.203125 -15.03125 L35.34375 0.0 L33.078125 0.0 L31.328125 -4.546875 L25.046875 -4.546875 L23.390625 0.0 L21.28125 0.0 Z M25.625 -6.171875 L30.71875 -6.171875 L29.140625 -10.34375 Q28.421875 -12.234375 28.078125 -13.453125 Q27.796875 -12.0 27.265625 -10.578125 L25.625 -6.171875 Z"/><path d=" M35.68402099609375 0.0 L39.65277099609375 -5.65625 L35.98089599609375 -10.890625 L38.29339599609375 -10.890625 L39.96527099609375 -8.34375 Q40.43402099609375 -7.609375 40.71527099609375 -7.109375 Q41.16839599609375 -7.796875 41.54339599609375 -8.3125 L43.38714599609375 -10.890625 L45.59027099609375 -10.890625 L41.82464599609375 -5.765625 L45.87152099609375 0.0 L43.60589599609375 0.0 L41.37152099609375 -3.390625 L40.77777099609375 -4.296875 L37.91839599609375 0.0 L35.68402099609375 0.0 Z"/><path d=" M47.57464599609375 -12.90625 L47.57464599609375 -15.03125 L49.41839599609375 -15.03125 L49.41839599609375 -12.90625 L47.57464599609375 -12.90625 Z M47.57464599609375 0.0 L47.57464599609375 -10.890625 L49.41839599609375 -10.890625 L49.41839599609375 0.0 L47.57464599609375 0.0 Z"/><path d=" M51.559600830078125 -3.25 L53.387725830078125 -3.53125 Q53.543975830078125 -2.4375 54.247100830078125 -1.8515625 Q54.950225830078125 -1.265625 56.215850830078125 -1.265625 Q57.481475830078125 -1.265625 58.098663330078125 -1.7890625 Q58.715850830078125 -2.3125 58.715850830078125 -3.0 Q58.715850830078125 -3.625 58.168975830078125 -3.984375 Q57.793975830078125 -4.234375 56.278350830078125 -4.609375 Q54.247100830078125 -5.125 53.465850830078125 -5.5 Q52.684600830078125 -5.875 52.278350830078125 -6.5390625 Q51.872100830078125 -7.203125 51.872100830078125 -8.0 Q51.872100830078125 -8.71875 52.208038330078125 -9.34375 Q52.543975830078125 -9.96875 53.106475830078125 -10.375 Q53.543975830078125 -10.6875 54.286163330078125 -10.9140625 Q55.028350830078125 -11.140625 55.887725830078125 -11.140625 Q57.168975830078125 -11.140625 58.137725830078125 -10.765625 Q59.106475830078125 -10.390625 59.567413330078125 -9.765625 Q60.028350830078125 -9.140625 60.200225830078125 -8.078125 L58.387725830078125 -7.828125 Q58.278350830078125 -8.671875 57.684600830078125 -9.1484375 Q57.090850830078125 -9.625 56.012725830078125 -9.625 Q54.747100830078125 -9.625 54.200225830078125 -9.203125 Q53.653350830078125 -8.78125 53.653350830078125 -8.21875 Q53.653350830078125 -7.859375 53.887725830078125 -7.5625 Q54.106475830078125 -7.265625 54.590850830078125 -7.078125 Q54.872100830078125 -6.96875 56.215850830078125 -6.609375 Q58.184600830078125 -6.078125 58.958038330078125 -5.75 Q59.731475830078125 -5.421875 60.168975830078125 -4.78125 Q60.606475830078125 -4.140625 60.606475830078125 -3.203125 Q60.606475830078125 -2.28125 60.067413330078125 -1.4609375 Q59.528350830078125 -0.640625 58.512725830078125 -0.1953125 Q57.497100830078125 0.25 56.215850830078125 0.25 Q54.090850830078125 0.25 52.981475830078125 -0.6328125 Q51.872100830078125 -1.515625 51.559600830078125 -3.25 Z"/><path d=""/><path d=" M72.93402099609375 0.0 L72.93402099609375 -13.265625 L67.99652099609375 -13.265625 L67.99652099609375 -15.03125 L79.90277099609375 -15.03125 L79.90277099609375 -13.265625 L74.93402099609375 -13.265625 L74.93402099609375 0.0 L72.93402099609375 0.0 Z"/><path d=" M81.90567016601562 -12.90625 L81.90567016601562 -15.03125 L83.74942016601562 -15.03125 L83.74942016601562 -12.90625 L81.90567016601562 -12.90625 Z M81.90567016601562 0.0 L81.90567016601562 -10.890625 L83.74942016601562 -10.890625 L83.74942016601562 0.0 L81.90567016601562 0.0 Z"/><path d=" M90.671875 -1.65625 L90.9375 -0.015625 Q90.15625 0.140625 89.53125 0.140625 Q88.53125 0.140625 87.9765625 -0.1796875 Q87.421875 -0.5 87.1953125 -1.015625 Q86.96875 -1.53125 86.96875 -3.1875 L86.96875 -9.453125 L85.625 -9.453125 L85.625 -10.890625 L86.96875 -10.890625 L86.96875 -13.59375 L88.8125 -14.6875 L88.8125 -10.890625 L90.671875 -10.890625 L90.671875 -9.453125 L88.8125 -9.453125 L88.8125 -3.09375 Q88.8125 -2.296875 88.90625 -2.0703125 Q89.0 -1.84375 89.21875 -1.7109375 Q89.4375 -1.578125 89.859375 -1.578125 Q90.15625 -1.578125 90.671875 -1.65625 Z"/><path d=" M92.51504516601562 0.0 L92.51504516601562 -15.03125 L94.35879516601562 -15.03125 L94.35879516601562 0.0 L92.51504516601562 0.0 Z"/><path d=" M104.75 -3.5 L106.65625 -3.265625 Q106.203125 -1.59375 104.984375 -0.671875 Q103.765625 0.25 101.859375 0.25 Q99.46875 0.25 98.0703125 -1.2265625 Q96.671875 -2.703125 96.671875 -5.359375 Q96.671875 -8.09375 98.0859375 -9.6171875 Q99.5 -11.140625 101.765625 -11.140625 Q103.953125 -11.140625 105.3359375 -9.6484375 Q106.71875 -8.15625 106.71875 -5.46875 Q106.71875 -5.296875 106.703125 -4.96875 L98.578125 -4.96875 Q98.6875 -3.171875 99.6015625 -2.21875 Q100.515625 -1.265625 101.875 -1.265625 Q102.890625 -1.265625 103.609375 -1.8046875 Q104.328125 -2.34375 104.75 -3.5 Z M98.6875 -6.484375 L104.765625 -6.484375 Q104.640625 -7.859375 104.0625 -8.546875 Q103.1875 -9.625 101.78125 -9.625 Q100.515625 -9.625 99.6484375 -8.7734375 Q98.78125 -7.921875 98.6875 -6.484375 Z"/></g></g><path d=" M37.00000000000001 138.42591349283856 L151.42591349283856 138.42591349283856 L151.42591349283856 168.42591349283856 L37.00000000000001 168.42591349283856 L37.00000000000001 138.42591349283856 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-131.42591349283856,205.42591349283856)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M228.5965576171875 59.10606384277344 L228.5965576171875 69.10606384277344" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#0080ff;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M223.5965576171875 64.10606384277344 L233.5965576171875 64.10606384277344" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#0080ff;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M398.3734436035156 251.1212158203125 L398.3734436035156 261.1212158203125" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#0080ff;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M393.3734436035156 256.1212158203125 L403.3734436035156 256.1212158203125" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#0080ff;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M87.11580657958984 89.42424011230469 L87.11580657958984 99.42424011230469" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#0080ff;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M82.11580657958984 94.42424011230469 L92.11580657958984 94.42424011230469" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#0080ff;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M209.69291178385416 31.106063842773438 L247.50020345052081 31.106063842773438 L247.50020345052081 54.10606384277344 L209.69291178385416 54.10606384277344 L209.69291178385416 31.106063842773438 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,212.3595733642578,50.10606384277344)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.96875 0.0 L4.5625 0.0 L4.5625 -8.96875 Q4.046875 -8.484375 3.2265625 -8.0 Q2.40625 -7.515625 1.75 -7.265625 L1.75 -8.625 Q2.921875 -9.1875 3.8046875 -9.9765625 Q4.6875 -10.765625 5.0625 -11.5 L5.96875 -11.5 L5.96875 0.0 Z"/><path d=" M9.5703125 -3.0 L11.0390625 -3.125 Q11.2109375 -2.046875 11.8046875 -1.5078125 Q12.3984375 -0.96875 13.2421875 -0.96875 Q14.2578125 -0.96875 14.9609375 -1.734375 Q15.6640625 -2.5 15.6640625 -3.765625 Q15.6640625 -4.96875 14.9921875 -5.6640625 Q14.3203125 -6.359375 13.2265625 -6.359375 Q12.5390625 -6.359375 11.9921875 -6.046875 Q11.4453125 -5.734375 11.1328125 -5.25 L9.8203125 -5.421875 L10.9296875 -11.296875 L16.6171875 -11.296875 L16.6171875 -9.953125 L12.0546875 -9.953125 L11.4296875 -6.875 Q12.4609375 -7.59375 13.6015625 -7.59375 Q15.1015625 -7.59375 16.1328125 -6.5546875 Q17.1640625 -5.515625 17.1640625 -3.890625 Q17.1640625 -2.328125 16.2578125 -1.203125 Q15.1484375 0.203125 13.2421875 0.203125 Q11.6796875 0.203125 10.6953125 -0.6796875 Q9.7109375 -1.5625 9.5703125 -3.0 Z"/><path d=" M19.25 0.0 L19.25 -1.609375 L20.859375 -1.609375 L20.859375 0.0 L19.25 0.0 Z"/><path d=" M22.9140625 -5.65625 Q22.9140625 -7.6875 23.328125 -8.921875 Q23.7421875 -10.15625 24.5703125 -10.828125 Q25.3984375 -11.5 26.6484375 -11.5 Q27.5703125 -11.5 28.265625 -11.1328125 Q28.9609375 -10.765625 29.4140625 -10.0625 Q29.8671875 -9.359375 30.125 -8.359375 Q30.3828125 -7.359375 30.3828125 -5.65625 Q30.3828125 -3.640625 29.96875 -2.3984375 Q29.5546875 -1.15625 28.7265625 -0.4765625 Q27.8984375 0.203125 26.6484375 0.203125 Q24.9921875 0.203125 24.0390625 -1.0 Q22.9140625 -2.421875 22.9140625 -5.65625 Z M24.3515625 -5.65625 Q24.3515625 -2.828125 25.015625 -1.8984375 Q25.6796875 -0.96875 26.6484375 -0.96875 Q27.6171875 -0.96875 28.2734375 -1.90625 Q28.9296875 -2.84375 28.9296875 -5.65625 Q28.9296875 -8.484375 28.2734375 -9.4140625 Q27.6171875 -10.34375 26.6328125 -10.34375 Q25.6640625 -10.34375 25.0859375 -9.515625 Q24.3515625 -8.46875 24.3515625 -5.65625 Z"/></g></g><path d=" M209.69291178385416 31.106063842773438 L247.50020345052081 31.106063842773438 L247.50020345052081 54.10606384277344 L209.69291178385416 54.10606384277344 L209.69291178385416 31.106063842773438 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M381.2549540201823 223.1212158203125 L415.491933186849 223.1212158203125 L415.491933186849 246.1212158203125 L381.2549540201823 246.1212158203125 L381.2549540201823 223.1212158203125 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,383.921630859375,242.1212158203125)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.515625 -3.4375 L0.515625 -4.859375 L4.828125 -4.859375 L4.828125 -3.4375 L0.515625 -3.4375 Z"/><path d=" M10.5 0.0 L10.5 -2.75 L5.53125 -2.75 L5.53125 -4.03125 L10.765625 -11.453125 L11.90625 -11.453125 L11.90625 -4.03125 L13.453125 -4.03125 L13.453125 -2.75 L11.90625 -2.75 L11.90625 0.0 L10.5 0.0 Z M10.5 -4.03125 L10.5 -9.203125 L6.921875 -4.03125 L10.5 -4.03125 Z"/><path d=" M15.6796875 0.0 L15.6796875 -1.609375 L17.2890625 -1.609375 L17.2890625 0.0 L15.6796875 0.0 Z"/><path d=" M19.34375 -5.65625 Q19.34375 -7.6875 19.7578125 -8.921875 Q20.171875 -10.15625 21.0 -10.828125 Q21.828125 -11.5 23.078125 -11.5 Q24.0 -11.5 24.6953125 -11.1328125 Q25.390625 -10.765625 25.84375 -10.0625 Q26.296875 -9.359375 26.5546875 -8.359375 Q26.8125 -7.359375 26.8125 -5.65625 Q26.8125 -3.640625 26.3984375 -2.3984375 Q25.984375 -1.15625 25.15625 -0.4765625 Q24.328125 0.203125 23.078125 0.203125 Q21.421875 0.203125 20.46875 -1.0 Q19.34375 -2.421875 19.34375 -5.65625 Z M20.78125 -5.65625 Q20.78125 -2.828125 21.4453125 -1.8984375 Q22.109375 -0.96875 23.078125 -0.96875 Q24.046875 -0.96875 24.703125 -1.90625 Q25.359375 -2.84375 25.359375 -5.65625 Q25.359375 -8.484375 24.703125 -9.4140625 Q24.046875 -10.34375 23.0625 -10.34375 Q22.09375 -10.34375 21.515625 -9.515625 Q20.78125 -8.46875 20.78125 -5.65625 Z"/></g></g><path d=" M381.2549540201823 223.1212158203125 L415.491933186849 223.1212158203125 L415.491933186849 246.1212158203125 L381.2549540201823 246.1212158203125 L381.2549540201823 223.1212158203125 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M68.21216074625652 61.42424011230469 L106.01945241292319 61.42424011230469 L106.01945241292319 84.42424011230469 L68.21216074625652 84.42424011230469 L68.21216074625652 61.42424011230469 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,70.87882995605469,80.42424011230469)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.96875 0.0 L4.5625 0.0 L4.5625 -8.96875 Q4.046875 -8.484375 3.2265625 -8.0 Q2.40625 -7.515625 1.75 -7.265625 L1.75 -8.625 Q2.921875 -9.1875 3.8046875 -9.9765625 Q4.6875 -10.765625 5.0625 -11.5 L5.96875 -11.5 L5.96875 0.0 Z"/><path d=" M16.9609375 -1.359375 L16.9609375 0.0 L9.3828125 0.0 Q9.3671875 -0.515625 9.5546875 -0.984375 Q9.8359375 -1.75 10.4765625 -2.5 Q11.1171875 -3.25 12.3203125 -4.234375 Q14.1796875 -5.765625 14.8359375 -6.6640625 Q15.4921875 -7.5625 15.4921875 -8.359375 Q15.4921875 -9.1875 14.8984375 -9.765625 Q14.3046875 -10.34375 13.3359375 -10.34375 Q12.3203125 -10.34375 11.7109375 -9.734375 Q11.1015625 -9.125 11.1015625 -8.046875 L9.6484375 -8.1875 Q9.8046875 -9.8125 10.7734375 -10.65625 Q11.7421875 -11.5 13.3671875 -11.5 Q15.0234375 -11.5 15.984375 -10.5859375 Q16.9453125 -9.671875 16.9453125 -8.328125 Q16.9453125 -7.640625 16.6640625 -6.9765625 Q16.3828125 -6.3125 15.7265625 -5.578125 Q15.0703125 -4.84375 13.5546875 -3.5625 Q12.2890625 -2.5 11.9296875 -2.1171875 Q11.5703125 -1.734375 11.3359375 -1.359375 L16.9609375 -1.359375 Z"/><path d=" M19.25 0.0 L19.25 -1.609375 L20.859375 -1.609375 L20.859375 0.0 L19.25 0.0 Z"/><path d=" M22.9140625 -5.65625 Q22.9140625 -7.6875 23.328125 -8.921875 Q23.7421875 -10.15625 24.5703125 -10.828125 Q25.3984375 -11.5 26.6484375 -11.5 Q27.5703125 -11.5 28.265625 -11.1328125 Q28.9609375 -10.765625 29.4140625 -10.0625 Q29.8671875 -9.359375 30.125 -8.359375 Q30.3828125 -7.359375 30.3828125 -5.65625 Q30.3828125 -3.640625 29.96875 -2.3984375 Q29.5546875 -1.15625 28.7265625 -0.4765625 Q27.8984375 0.203125 26.6484375 0.203125 Q24.9921875 0.203125 24.0390625 -1.0 Q22.9140625 -2.421875 22.9140625 -5.65625 Z M24.3515625 -5.65625 Q24.3515625 -2.828125 25.015625 -1.8984375 Q25.6796875 -0.96875 26.6484375 -0.96875 Q27.6171875 -0.96875 28.2734375 -1.90625 Q28.9296875 -2.84375 28.9296875 -5.65625 Q28.9296875 -8.484375 28.2734375 -9.4140625 Q27.6171875 -10.34375 26.6328125 -10.34375 Q25.6640625 -10.34375 25.0859375 -9.515625 Q24.3515625 -8.46875 24.3515625 -5.65625 Z"/></g></g><path d=" M68.21216074625652 61.42424011230469 L106.01945241292319 61.42424011230469 L106.01945241292319 84.42424011230469 L68.21216074625652 84.42424011230469 L68.21216074625652 61.42424011230469 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.55338541666667 289.0 L68.44661458333334 289.0 L68.44661458333334 312.0 L47.55338541666667 312.0 L47.55338541666667 289.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,50.22005081176758,308.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.515625 -3.4375 L0.515625 -4.859375 L4.828125 -4.859375 L4.828125 -3.4375 L0.515625 -3.4375 Z"/><path d=" M6.0 -3.03125 L7.40625 -3.21875 Q7.65625 -2.015625 8.234375 -1.4921875 Q8.8125 -0.96875 9.65625 -0.96875 Q10.640625 -0.96875 11.328125 -1.65625 Q12.015625 -2.34375 12.015625 -3.359375 Q12.015625 -4.328125 11.3828125 -4.953125 Q10.75 -5.578125 9.765625 -5.578125 Q9.375 -5.578125 8.78125 -5.421875 L8.9375 -6.65625 Q9.078125 -6.640625 9.15625 -6.640625 Q10.0625 -6.640625 10.78125 -7.109375 Q11.5 -7.578125 11.5 -8.5625 Q11.5 -9.328125 10.9765625 -9.8359375 Q10.453125 -10.34375 9.625 -10.34375 Q8.796875 -10.34375 8.25 -9.828125 Q7.703125 -9.3125 7.546875 -8.28125 L6.140625 -8.53125 Q6.40625 -9.953125 7.3203125 -10.7265625 Q8.234375 -11.5 9.59375 -11.5 Q10.53125 -11.5 11.3203125 -11.1015625 Q12.109375 -10.703125 12.5234375 -10.0078125 Q12.9375 -9.3125 12.9375 -8.53125 Q12.9375 -7.78125 12.5390625 -7.171875 Q12.140625 -6.5625 11.359375 -6.203125 Q12.375 -5.96875 12.9375 -5.234375 Q13.5 -4.5 13.5 -3.390625 Q13.5 -1.890625 12.40625 -0.84375 Q11.3125 0.203125 9.640625 0.203125 Q8.140625 0.203125 7.140625 -0.6953125 Q6.140625 -1.59375 6.0 -3.03125 Z"/></g></g><path d=" M47.55338541666667 289.0 L68.44661458333334 289.0 L68.44661458333334 312.0 L47.55338541666667 312.0 L47.55338541666667 289.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M76.55338541666667 289.0 L97.44661458333334 289.0 L97.44661458333334 312.0 L76.55338541666667 312.0 L76.55338541666667 289.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,79.22005462646484,308.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.515625 -3.4375 L0.515625 -4.859375 L4.828125 -4.859375 L4.828125 -3.4375 L0.515625 -3.4375 Z"/><path d=" M13.390625 -1.359375 L13.390625 0.0 L5.8125 0.0 Q5.796875 -0.515625 5.984375 -0.984375 Q6.265625 -1.75 6.90625 -2.5 Q7.546875 -3.25 8.75 -4.234375 Q10.609375 -5.765625 11.265625 -6.6640625 Q11.921875 -7.5625 11.921875 -8.359375 Q11.921875 -9.1875 11.328125 -9.765625 Q10.734375 -10.34375 9.765625 -10.34375 Q8.75 -10.34375 8.140625 -9.734375 Q7.53125 -9.125 7.53125 -8.046875 L6.078125 -8.1875 Q6.234375 -9.8125 7.203125 -10.65625 Q8.171875 -11.5 9.796875 -11.5 Q11.453125 -11.5 12.4140625 -10.5859375 Q13.375 -9.671875 13.375 -8.328125 Q13.375 -7.640625 13.09375 -6.9765625 Q12.8125 -6.3125 12.15625 -5.578125 Q11.5 -4.84375 9.984375 -3.5625 Q8.71875 -2.5 8.359375 -2.1171875 Q8.0 -1.734375 7.765625 -1.359375 L13.390625 -1.359375 Z"/></g></g><path d=" M76.55338541666667 289.0 L97.44661458333334 289.0 L97.44661458333334 312.0 L76.55338541666667 312.0 L76.55338541666667 289.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M104.55338541666667 289.0 L125.44661458333334 289.0 L125.44661458333334 312.0 L104.55338541666667 312.0 L104.55338541666667 289.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,107.22005462646484,308.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.515625 -3.4375 L0.515625 -4.859375 L4.828125 -4.859375 L4.828125 -3.4375 L0.515625 -3.4375 Z"/><path d=" M11.296875 0.0 L9.890625 0.0 L9.890625 -8.96875 Q9.375 -8.484375 8.5546875 -8.0 Q7.734375 -7.515625 7.078125 -7.265625 L7.078125 -8.625 Q8.25 -9.1875 9.1328125 -9.9765625 Q10.015625 -10.765625 10.390625 -11.5 L11.296875 -11.5 L11.296875 0.0 Z"/></g></g><path d=" M104.55338541666667 289.0 L125.44661458333334 289.0 L125.44661458333334 312.0 L104.55338541666667 312.0 L104.55338541666667 289.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M135.21744791666666 289.0 L150.78255208333331 289.0 L150.78255208333331 312.0 L135.21744791666666 312.0 L135.21744791666666 289.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,137.8841094970703,308.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.671875 -5.65625 Q0.671875 -7.6875 1.0859375 -8.921875 Q1.5 -10.15625 2.328125 -10.828125 Q3.15625 -11.5 4.40625 -11.5 Q5.328125 -11.5 6.0234375 -11.1328125 Q6.71875 -10.765625 7.171875 -10.0625 Q7.625 -9.359375 7.8828125 -8.359375 Q8.140625 -7.359375 8.140625 -5.65625 Q8.140625 -3.640625 7.7265625 -2.3984375 Q7.3125 -1.15625 6.484375 -0.4765625 Q5.65625 0.203125 4.40625 0.203125 Q2.75 0.203125 1.796875 -1.0 Q0.671875 -2.421875 0.671875 -5.65625 Z M2.109375 -5.65625 Q2.109375 -2.828125 2.7734375 -1.8984375 Q3.4375 -0.96875 4.40625 -0.96875 Q5.375 -0.96875 6.03125 -1.90625 Q6.6875 -2.84375 6.6875 -5.65625 Q6.6875 -8.484375 6.03125 -9.4140625 Q5.375 -10.34375 4.390625 -10.34375 Q3.421875 -10.34375 2.84375 -9.515625 Q2.109375 -8.46875 2.109375 -5.65625 Z"/></g></g><path d=" M135.21744791666666 289.0 L150.78255208333331 289.0 L150.78255208333331 312.0 L135.21744791666666 312.0 L135.21744791666666 289.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M164.21744791666666 289.0 L179.78255208333331 289.0 L179.78255208333331 312.0 L164.21744791666666 312.0 L164.21744791666666 289.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,166.8841094970703,308.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.96875 0.0 L4.5625 0.0 L4.5625 -8.96875 Q4.046875 -8.484375 3.2265625 -8.0 Q2.40625 -7.515625 1.75 -7.265625 L1.75 -8.625 Q2.921875 -9.1875 3.8046875 -9.9765625 Q4.6875 -10.765625 5.0625 -11.5 L5.96875 -11.5 L5.96875 0.0 Z"/></g></g><path d=" M164.21744791666666 289.0 L179.78255208333331 289.0 L179.78255208333331 312.0 L164.21744791666666 312.0 L164.21744791666666 289.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M192.21744791666666 289.0 L207.78255208333331 289.0 L207.78255208333331 312.0 L192.21744791666666 312.0 L192.21744791666666 289.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,194.8841094970703,308.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M8.0625 -1.359375 L8.0625 0.0 L0.484375 0.0 Q0.46875 -0.515625 0.65625 -0.984375 Q0.9375 -1.75 1.578125 -2.5 Q2.21875 -3.25 3.421875 -4.234375 Q5.28125 -5.765625 5.9375 -6.6640625 Q6.59375 -7.5625 6.59375 -8.359375 Q6.59375 -9.1875 6.0 -9.765625 Q5.40625 -10.34375 4.4375 -10.34375 Q3.421875 -10.34375 2.8125 -9.734375 Q2.203125 -9.125 2.203125 -8.046875 L0.75 -8.1875 Q0.90625 -9.8125 1.875 -10.65625 Q2.84375 -11.5 4.46875 -11.5 Q6.125 -11.5 7.0859375 -10.5859375 Q8.046875 -9.671875 8.046875 -8.328125 Q8.046875 -7.640625 7.765625 -6.9765625 Q7.484375 -6.3125 6.828125 -5.578125 Q6.171875 -4.84375 4.65625 -3.5625 Q3.390625 -2.5 3.03125 -2.1171875 Q2.671875 -1.734375 2.4375 -1.359375 L8.0625 -1.359375 Z"/></g></g><path d=" M192.21744791666666 289.0 L207.78255208333331 289.0 L207.78255208333331 312.0 L192.21744791666666 312.0 L192.21744791666666 289.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M220.21744791666666 289.0 L235.78255208333331 289.0 L235.78255208333331 312.0 L220.21744791666666 312.0 L220.21744791666666 289.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,222.8841094970703,308.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.671875 -3.03125 L2.078125 -3.21875 Q2.328125 -2.015625 2.90625 -1.4921875 Q3.484375 -0.96875 4.328125 -0.96875 Q5.3125 -0.96875 6.0 -1.65625 Q6.6875 -2.34375 6.6875 -3.359375 Q6.6875 -4.328125 6.0546875 -4.953125 Q5.421875 -5.578125 4.4375 -5.578125 Q4.046875 -5.578125 3.453125 -5.421875 L3.609375 -6.65625 Q3.75 -6.640625 3.828125 -6.640625 Q4.734375 -6.640625 5.453125 -7.109375 Q6.171875 -7.578125 6.171875 -8.5625 Q6.171875 -9.328125 5.6484375 -9.8359375 Q5.125 -10.34375 4.296875 -10.34375 Q3.46875 -10.34375 2.921875 -9.828125 Q2.375 -9.3125 2.21875 -8.28125 L0.8125 -8.53125 Q1.078125 -9.953125 1.9921875 -10.7265625 Q2.90625 -11.5 4.265625 -11.5 Q5.203125 -11.5 5.9921875 -11.1015625 Q6.78125 -10.703125 7.1953125 -10.0078125 Q7.609375 -9.3125 7.609375 -8.53125 Q7.609375 -7.78125 7.2109375 -7.171875 Q6.8125 -6.5625 6.03125 -6.203125 Q7.046875 -5.96875 7.609375 -5.234375 Q8.171875 -4.5 8.171875 -3.390625 Q8.171875 -1.890625 7.078125 -0.84375 Q5.984375 0.203125 4.3125 0.203125 Q2.8125 0.203125 1.8125 -0.6953125 Q0.8125 -1.59375 0.671875 -3.03125 Z"/></g></g><path d=" M220.21744791666666 289.0 L235.78255208333331 289.0 L235.78255208333331 312.0 L220.21744791666666 312.0 L220.21744791666666 289.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M248.21744791666666 289.0 L263.7825520833333 289.0 L263.7825520833333 312.0 L248.21744791666666 312.0 L248.21744791666666 289.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,250.8841094970703,308.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.171875 0.0 L5.171875 -2.75 L0.203125 -2.75 L0.203125 -4.03125 L5.4375 -11.453125 L6.578125 -11.453125 L6.578125 -4.03125 L8.125 -4.03125 L8.125 -2.75 L6.578125 -2.75 L6.578125 0.0 L5.171875 0.0 Z M5.171875 -4.03125 L5.171875 -9.203125 L1.59375 -4.03125 L5.171875 -4.03125 Z"/></g></g><path d=" M248.21744791666666 289.0 L263.7825520833333 289.0 L263.7825520833333 312.0 L248.21744791666666 312.0 L248.21744791666666 289.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M277.2174479166667 289.0 L292.78255208333337 289.0 L292.78255208333337 312.0 L277.2174479166667 312.0 L277.2174479166667 289.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,279.8841247558594,308.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.671875 -3.0 L2.140625 -3.125 Q2.3125 -2.046875 2.90625 -1.5078125 Q3.5 -0.96875 4.34375 -0.96875 Q5.359375 -0.96875 6.0625 -1.734375 Q6.765625 -2.5 6.765625 -3.765625 Q6.765625 -4.96875 6.09375 -5.6640625 Q5.421875 -6.359375 4.328125 -6.359375 Q3.640625 -6.359375 3.09375 -6.046875 Q2.546875 -5.734375 2.234375 -5.25 L0.921875 -5.421875 L2.03125 -11.296875 L7.71875 -11.296875 L7.71875 -9.953125 L3.15625 -9.953125 L2.53125 -6.875 Q3.5625 -7.59375 4.703125 -7.59375 Q6.203125 -7.59375 7.234375 -6.5546875 Q8.265625 -5.515625 8.265625 -3.890625 Q8.265625 -2.328125 7.359375 -1.203125 Q6.25 0.203125 4.34375 0.203125 Q2.78125 0.203125 1.796875 -0.6796875 Q0.8125 -1.5625 0.671875 -3.0 Z"/></g></g><path d=" M277.2174479166667 289.0 L292.78255208333337 289.0 L292.78255208333337 312.0 L277.2174479166667 312.0 L277.2174479166667 289.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M305.2174479166667 289.0 L320.78255208333337 289.0 L320.78255208333337 312.0 L305.2174479166667 312.0 L305.2174479166667 289.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,307.8841247558594,308.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M7.96875 -8.65625 L6.5625 -8.546875 Q6.375 -9.375 6.03125 -9.75 Q5.46875 -10.34375 4.625 -10.34375 Q3.953125 -10.34375 3.453125 -9.96875 Q2.78125 -9.484375 2.3984375 -8.5546875 Q2.015625 -7.625 2.0 -5.90625 Q2.515625 -6.6875 3.25 -7.0625 Q3.984375 -7.4375 4.78125 -7.4375 Q6.1875 -7.4375 7.1796875 -6.3984375 Q8.171875 -5.359375 8.171875 -3.71875 Q8.171875 -2.640625 7.703125 -1.71875 Q7.234375 -0.796875 6.421875 -0.296875 Q5.609375 0.203125 4.578125 0.203125 Q2.828125 0.203125 1.71875 -1.09375 Q0.609375 -2.390625 0.609375 -5.359375 Q0.609375 -8.6875 1.828125 -10.1875 Q2.90625 -11.5 4.71875 -11.5 Q6.0625 -11.5 6.9296875 -10.7421875 Q7.796875 -9.984375 7.96875 -8.65625 Z M2.21875 -3.71875 Q2.21875 -2.984375 2.53125 -2.3203125 Q2.84375 -1.65625 3.3984375 -1.3125 Q3.953125 -0.96875 4.5625 -0.96875 Q5.453125 -0.96875 6.09375 -1.6875 Q6.734375 -2.40625 6.734375 -3.640625 Q6.734375 -4.828125 6.1015625 -5.5078125 Q5.46875 -6.1875 4.5 -6.1875 Q3.546875 -6.1875 2.8828125 -5.5078125 Q2.21875 -4.828125 2.21875 -3.71875 Z"/></g></g><path d=" M305.2174479166667 289.0 L320.78255208333337 289.0 L320.78255208333337 312.0 L305.2174479166667 312.0 L305.2174479166667 289.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M333.2174479166667 289.0 L348.78255208333337 289.0 L348.78255208333337 312.0 L333.2174479166667 312.0 L333.2174479166667 289.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,335.8841247558594,308.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.765625 -9.953125 L0.765625 -11.3125 L8.171875 -11.3125 L8.171875 -10.21875 Q7.078125 -9.046875 6.0078125 -7.1171875 Q4.9375 -5.1875 4.34375 -3.15625 Q3.921875 -1.71875 3.8125 0.0 L2.359375 0.0 Q2.390625 -1.359375 2.8984375 -3.2734375 Q3.40625 -5.1875 4.3515625 -6.9609375 Q5.296875 -8.734375 6.375 -9.953125 L0.765625 -9.953125 Z"/></g></g><path d=" M333.2174479166667 289.0 L348.78255208333337 289.0 L348.78255208333337 312.0 L333.2174479166667 312.0 L333.2174479166667 289.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M362.2174479166667 289.0 L377.78255208333337 289.0 L377.78255208333337 312.0 L362.2174479166667 312.0 L362.2174479166667 289.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,364.8841247558594,308.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M2.828125 -6.21875 Q1.953125 -6.53125 1.53125 -7.125 Q1.109375 -7.71875 1.109375 -8.546875 Q1.109375 -9.796875 2.0078125 -10.6484375 Q2.90625 -11.5 4.40625 -11.5 Q5.90625 -11.5 6.8203125 -10.6328125 Q7.734375 -9.765625 7.734375 -8.515625 Q7.734375 -7.71875 7.3125 -7.125 Q6.890625 -6.53125 6.046875 -6.21875 Q7.09375 -5.875 7.6484375 -5.109375 Q8.203125 -4.34375 8.203125 -3.28125 Q8.203125 -1.8125 7.1640625 -0.8046875 Q6.125 0.203125 4.421875 0.203125 Q2.734375 0.203125 1.6953125 -0.8046875 Q0.65625 -1.8125 0.65625 -3.3125 Q0.65625 -4.4375 1.21875 -5.1875 Q1.78125 -5.9375 2.828125 -6.21875 Z M2.546875 -8.59375 Q2.546875 -7.78125 3.0703125 -7.265625 Q3.59375 -6.75 4.4375 -6.75 Q5.25 -6.75 5.765625 -7.265625 Q6.28125 -7.78125 6.28125 -8.515625 Q6.28125 -9.296875 5.75 -9.8203125 Q5.21875 -10.34375 4.421875 -10.34375 Q3.609375 -10.34375 3.078125 -9.828125 Q2.546875 -9.3125 2.546875 -8.59375 Z M2.09375 -3.3125 Q2.09375 -2.703125 2.3828125 -2.140625 Q2.671875 -1.578125 3.234375 -1.2734375 Q3.796875 -0.96875 4.4375 -0.96875 Q5.453125 -0.96875 6.109375 -1.6171875 Q6.765625 -2.265625 6.765625 -3.265625 Q6.765625 -4.28125 6.0859375 -4.9453125 Q5.40625 -5.609375 4.390625 -5.609375 Q3.40625 -5.609375 2.75 -4.953125 Q2.09375 -4.296875 2.09375 -3.3125 Z"/></g></g><path d=" M362.2174479166667 289.0 L377.78255208333337 289.0 L377.78255208333337 312.0 L362.2174479166667 312.0 L362.2174479166667 289.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M390.2174479166667 289.0 L405.78255208333337 289.0 L405.78255208333337 312.0 L390.2174479166667 312.0 L390.2174479166667 289.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,392.8841247558594,308.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.875 -2.65625 L2.234375 -2.78125 Q2.40625 -1.828125 2.890625 -1.3984375 Q3.375 -0.96875 4.125 -0.96875 Q4.78125 -0.96875 5.265625 -1.265625 Q5.75 -1.5625 6.0625 -2.0546875 Q6.375 -2.546875 6.5859375 -3.390625 Q6.796875 -4.234375 6.796875 -5.109375 Q6.796875 -5.203125 6.796875 -5.390625 Q6.375 -4.71875 5.640625 -4.3046875 Q4.90625 -3.890625 4.0625 -3.890625 Q2.640625 -3.890625 1.65625 -4.921875 Q0.671875 -5.953125 0.671875 -7.640625 Q0.671875 -9.375 1.6953125 -10.4375 Q2.71875 -11.5 4.265625 -11.5 Q5.390625 -11.5 6.3125 -10.8984375 Q7.234375 -10.296875 7.71875 -9.1875 Q8.203125 -8.078125 8.203125 -5.96875 Q8.203125 -3.765625 7.7265625 -2.46875 Q7.25 -1.171875 6.3046875 -0.484375 Q5.359375 0.203125 4.09375 0.203125 Q2.75 0.203125 1.8984375 -0.546875 Q1.046875 -1.296875 0.875 -2.65625 Z M6.640625 -7.703125 Q6.640625 -8.921875 5.9921875 -9.6328125 Q5.34375 -10.34375 4.4375 -10.34375 Q3.5 -10.34375 2.8046875 -9.578125 Q2.109375 -8.8125 2.109375 -7.59375 Q2.109375 -6.5 2.7734375 -5.8125 Q3.4375 -5.125 4.40625 -5.125 Q5.375 -5.125 6.0078125 -5.8125 Q6.640625 -6.5 6.640625 -7.703125 Z"/></g></g><path d=" M390.2174479166667 289.0 L405.78255208333337 289.0 L405.78255208333337 312.0 L390.2174479166667 312.0 L390.2174479166667 289.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M413.7682291666667 289.0 L438.23177083333337 289.0 L438.23177083333337 312.0 L413.7682291666667 312.0 L413.7682291666667 289.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,416.4349060058594,308.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.96875 0.0 L4.5625 0.0 L4.5625 -8.96875 Q4.046875 -8.484375 3.2265625 -8.0 Q2.40625 -7.515625 1.75 -7.265625 L1.75 -8.625 Q2.921875 -9.1875 3.8046875 -9.9765625 Q4.6875 -10.765625 5.0625 -11.5 L5.96875 -11.5 L5.96875 0.0 Z"/><path d=" M9.5703125 -5.65625 Q9.5703125 -7.6875 9.984375 -8.921875 Q10.3984375 -10.15625 11.2265625 -10.828125 Q12.0546875 -11.5 13.3046875 -11.5 Q14.2265625 -11.5 14.921875 -11.1328125 Q15.6171875 -10.765625 16.0703125 -10.0625 Q16.5234375 -9.359375 16.78125 -8.359375 Q17.0390625 -7.359375 17.0390625 -5.65625 Q17.0390625 -3.640625 16.625 -2.3984375 Q16.2109375 -1.15625 15.3828125 -0.4765625 Q14.5546875 0.203125 13.3046875 0.203125 Q11.6484375 0.203125 10.6953125 -1.0 Q9.5703125 -2.421875 9.5703125 -5.65625 Z M11.0078125 -5.65625 Q11.0078125 -2.828125 11.671875 -1.8984375 Q12.3359375 -0.96875 13.3046875 -0.96875 Q14.2734375 -0.96875 14.9296875 -1.90625 Q15.5859375 -2.84375 15.5859375 -5.65625 Q15.5859375 -8.484375 14.9296875 -9.4140625 Q14.2734375 -10.34375 13.2890625 -10.34375 Q12.3203125 -10.34375 11.7421875 -9.515625 Q11.0078125 -8.46875 11.0078125 -5.65625 Z"/></g></g><path d=" M413.7682291666667 289.0 L438.23177083333337 289.0 L438.23177083333337 312.0 L413.7682291666667 312.0 L413.7682291666667 289.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M58.81966145833332 305.0 L173.24557495117188 305.0 L173.24557495117188 335.0 L58.81966145833332 335.0 L58.81966145833332 305.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,61.486328125,330.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.09375 0.0 L5.90625 -7.828125 L0.78125 -15.03125 L3.140625 -15.03125 L5.875 -11.171875 Q6.734375 -9.984375 7.078125 -9.328125 Q7.59375 -10.15625 8.28125 -11.046875 L11.296875 -15.03125 L13.46875 -15.03125 L8.1875 -7.953125 L13.875 0.0 L11.40625 0.0 L7.625 -5.359375 Q7.3125 -5.828125 6.96875 -6.375 Q6.46875 -5.546875 6.25 -5.234375 L2.484375 0.0 L0.09375 0.0 Z"/><path d=" M14.88714599609375 -4.515625 L14.88714599609375 -6.375 L20.55902099609375 -6.375 L20.55902099609375 -4.515625 L14.88714599609375 -4.515625 Z"/><path d=" M21.28125 0.0 L27.0625 -15.03125 L29.203125 -15.03125 L35.34375 0.0 L33.078125 0.0 L31.328125 -4.546875 L25.046875 -4.546875 L23.390625 0.0 L21.28125 0.0 Z M25.625 -6.171875 L30.71875 -6.171875 L29.140625 -10.34375 Q28.421875 -12.234375 28.078125 -13.453125 Q27.796875 -12.0 27.265625 -10.578125 L25.625 -6.171875 Z"/><path d=" M35.68402099609375 0.0 L39.65277099609375 -5.65625 L35.98089599609375 -10.890625 L38.29339599609375 -10.890625 L39.96527099609375 -8.34375 Q40.43402099609375 -7.609375 40.71527099609375 -7.109375 Q41.16839599609375 -7.796875 41.54339599609375 -8.3125 L43.38714599609375 -10.890625 L45.59027099609375 -10.890625 L41.82464599609375 -5.765625 L45.87152099609375 0.0 L43.60589599609375 0.0 L41.37152099609375 -3.390625 L40.77777099609375 -4.296875 L37.91839599609375 0.0 L35.68402099609375 0.0 Z"/><path d=" M47.57464599609375 -12.90625 L47.57464599609375 -15.03125 L49.41839599609375 -15.03125 L49.41839599609375 -12.90625 L47.57464599609375 -12.90625 Z M47.57464599609375 0.0 L47.57464599609375 -10.890625 L49.41839599609375 -10.890625 L49.41839599609375 0.0 L47.57464599609375 0.0 Z"/><path d=" M51.559600830078125 -3.25 L53.387725830078125 -3.53125 Q53.543975830078125 -2.4375 54.247100830078125 -1.8515625 Q54.950225830078125 -1.265625 56.215850830078125 -1.265625 Q57.481475830078125 -1.265625 58.098663330078125 -1.7890625 Q58.715850830078125 -2.3125 58.715850830078125 -3.0 Q58.715850830078125 -3.625 58.168975830078125 -3.984375 Q57.793975830078125 -4.234375 56.278350830078125 -4.609375 Q54.247100830078125 -5.125 53.465850830078125 -5.5 Q52.684600830078125 -5.875 52.278350830078125 -6.5390625 Q51.872100830078125 -7.203125 51.872100830078125 -8.0 Q51.872100830078125 -8.71875 52.208038330078125 -9.34375 Q52.543975830078125 -9.96875 53.106475830078125 -10.375 Q53.543975830078125 -10.6875 54.286163330078125 -10.9140625 Q55.028350830078125 -11.140625 55.887725830078125 -11.140625 Q57.168975830078125 -11.140625 58.137725830078125 -10.765625 Q59.106475830078125 -10.390625 59.567413330078125 -9.765625 Q60.028350830078125 -9.140625 60.200225830078125 -8.078125 L58.387725830078125 -7.828125 Q58.278350830078125 -8.671875 57.684600830078125 -9.1484375 Q57.090850830078125 -9.625 56.012725830078125 -9.625 Q54.747100830078125 -9.625 54.200225830078125 -9.203125 Q53.653350830078125 -8.78125 53.653350830078125 -8.21875 Q53.653350830078125 -7.859375 53.887725830078125 -7.5625 Q54.106475830078125 -7.265625 54.590850830078125 -7.078125 Q54.872100830078125 -6.96875 56.215850830078125 -6.609375 Q58.184600830078125 -6.078125 58.958038330078125 -5.75 Q59.731475830078125 -5.421875 60.168975830078125 -4.78125 Q60.606475830078125 -4.140625 60.606475830078125 -3.203125 Q60.606475830078125 -2.28125 60.067413330078125 -1.4609375 Q59.528350830078125 -0.640625 58.512725830078125 -0.1953125 Q57.497100830078125 0.25 56.215850830078125 0.25 Q54.090850830078125 0.25 52.981475830078125 -0.6328125 Q51.872100830078125 -1.515625 51.559600830078125 -3.25 Z"/><path d=""/><path d=" M72.93402099609375 0.0 L72.93402099609375 -13.265625 L67.99652099609375 -13.265625 L67.99652099609375 -15.03125 L79.90277099609375 -15.03125 L79.90277099609375 -13.265625 L74.93402099609375 -13.265625 L74.93402099609375 0.0 L72.93402099609375 0.0 Z"/><path d=" M81.90567016601562 -12.90625 L81.90567016601562 -15.03125 L83.74942016601562 -15.03125 L83.74942016601562 -12.90625 L81.90567016601562 -12.90625 Z M81.90567016601562 0.0 L81.90567016601562 -10.890625 L83.74942016601562 -10.890625 L83.74942016601562 0.0 L81.90567016601562 0.0 Z"/><path d=" M90.671875 -1.65625 L90.9375 -0.015625 Q90.15625 0.140625 89.53125 0.140625 Q88.53125 0.140625 87.9765625 -0.1796875 Q87.421875 -0.5 87.1953125 -1.015625 Q86.96875 -1.53125 86.96875 -3.1875 L86.96875 -9.453125 L85.625 -9.453125 L85.625 -10.890625 L86.96875 -10.890625 L86.96875 -13.59375 L88.8125 -14.6875 L88.8125 -10.890625 L90.671875 -10.890625 L90.671875 -9.453125 L88.8125 -9.453125 L88.8125 -3.09375 Q88.8125 -2.296875 88.90625 -2.0703125 Q89.0 -1.84375 89.21875 -1.7109375 Q89.4375 -1.578125 89.859375 -1.578125 Q90.15625 -1.578125 90.671875 -1.65625 Z"/><path d=" M92.51504516601562 0.0 L92.51504516601562 -15.03125 L94.35879516601562 -15.03125 L94.35879516601562 0.0 L92.51504516601562 0.0 Z"/><path d=" M104.75 -3.5 L106.65625 -3.265625 Q106.203125 -1.59375 104.984375 -0.671875 Q103.765625 0.25 101.859375 0.25 Q99.46875 0.25 98.0703125 -1.2265625 Q96.671875 -2.703125 96.671875 -5.359375 Q96.671875 -8.09375 98.0859375 -9.6171875 Q99.5 -11.140625 101.765625 -11.140625 Q103.953125 -11.140625 105.3359375 -9.6484375 Q106.71875 -8.15625 106.71875 -5.46875 Q106.71875 -5.296875 106.703125 -4.96875 L98.578125 -4.96875 Q98.6875 -3.171875 99.6015625 -2.21875 Q100.515625 -1.265625 101.875 -1.265625 Q102.890625 -1.265625 103.609375 -1.8046875 Q104.328125 -2.34375 104.75 -3.5 Z M98.6875 -6.484375 L104.765625 -6.484375 Q104.640625 -7.859375 104.0625 -8.546875 Q103.1875 -9.625 101.78125 -9.625 Q100.515625 -9.625 99.6484375 -8.7734375 Q98.78125 -7.921875 98.6875 -6.484375 Z"/></g></g><path d=" M58.81966145833332 305.0 L173.24557495117188 305.0 L173.24557495117188 335.0 L58.81966145833332 335.0 L58.81966145833332 305.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M25.259765625 264.5 L46.152994791666664 264.5 L46.152994791666664 287.5 L25.259765625 287.5 L25.259765625 264.5 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,27.92643165588379,283.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.515625 -3.4375 L0.515625 -4.859375 L4.828125 -4.859375 L4.828125 -3.4375 L0.515625 -3.4375 Z"/><path d=" M13.296875 -8.65625 L11.890625 -8.546875 Q11.703125 -9.375 11.359375 -9.75 Q10.796875 -10.34375 9.953125 -10.34375 Q9.28125 -10.34375 8.78125 -9.96875 Q8.109375 -9.484375 7.7265625 -8.5546875 Q7.34375 -7.625 7.328125 -5.90625 Q7.84375 -6.6875 8.578125 -7.0625 Q9.3125 -7.4375 10.109375 -7.4375 Q11.515625 -7.4375 12.5078125 -6.3984375 Q13.5 -5.359375 13.5 -3.71875 Q13.5 -2.640625 13.03125 -1.71875 Q12.5625 -0.796875 11.75 -0.296875 Q10.9375 0.203125 9.90625 0.203125 Q8.15625 0.203125 7.046875 -1.09375 Q5.9375 -2.390625 5.9375 -5.359375 Q5.9375 -8.6875 7.15625 -10.1875 Q8.234375 -11.5 10.046875 -11.5 Q11.390625 -11.5 12.2578125 -10.7421875 Q13.125 -9.984375 13.296875 -8.65625 Z M7.546875 -3.71875 Q7.546875 -2.984375 7.859375 -2.3203125 Q8.171875 -1.65625 8.7265625 -1.3125 Q9.28125 -0.96875 9.890625 -0.96875 Q10.78125 -0.96875 11.421875 -1.6875 Q12.0625 -2.40625 12.0625 -3.640625 Q12.0625 -4.828125 11.4296875 -5.5078125 Q10.796875 -6.1875 9.828125 -6.1875 Q8.875 -6.1875 8.2109375 -5.5078125 Q7.546875 -4.828125 7.546875 -3.71875 Z"/></g></g><path d=" M25.259765625 264.5 L46.152994791666664 264.5 L46.152994791666664 287.5 L25.259765625 287.5 L25.259765625 264.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M25.259765625 244.5 L46.152994791666664 244.5 L46.152994791666664 267.5 L25.259765625 267.5 L25.259765625 244.5 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,27.92643165588379,263.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.515625 -3.4375 L0.515625 -4.859375 L4.828125 -4.859375 L4.828125 -3.4375 L0.515625 -3.4375 Z"/><path d=" M10.5 0.0 L10.5 -2.75 L5.53125 -2.75 L5.53125 -4.03125 L10.765625 -11.453125 L11.90625 -11.453125 L11.90625 -4.03125 L13.453125 -4.03125 L13.453125 -2.75 L11.90625 -2.75 L11.90625 0.0 L10.5 0.0 Z M10.5 -4.03125 L10.5 -9.203125 L6.921875 -4.03125 L10.5 -4.03125 Z"/></g></g><path d=" M25.259765625 244.5 L46.152994791666664 244.5 L46.152994791666664 267.5 L25.259765625 267.5 L25.259765625 244.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M25.259765625 223.5 L46.152994791666664 223.5 L46.152994791666664 246.5 L25.259765625 246.5 L25.259765625 223.5 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,27.92643165588379,242.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.515625 -3.4375 L0.515625 -4.859375 L4.828125 -4.859375 L4.828125 -3.4375 L0.515625 -3.4375 Z"/><path d=" M13.390625 -1.359375 L13.390625 0.0 L5.8125 0.0 Q5.796875 -0.515625 5.984375 -0.984375 Q6.265625 -1.75 6.90625 -2.5 Q7.546875 -3.25 8.75 -4.234375 Q10.609375 -5.765625 11.265625 -6.6640625 Q11.921875 -7.5625 11.921875 -8.359375 Q11.921875 -9.1875 11.328125 -9.765625 Q10.734375 -10.34375 9.765625 -10.34375 Q8.75 -10.34375 8.140625 -9.734375 Q7.53125 -9.125 7.53125 -8.046875 L6.078125 -8.1875 Q6.234375 -9.8125 7.203125 -10.65625 Q8.171875 -11.5 9.796875 -11.5 Q11.453125 -11.5 12.4140625 -10.5859375 Q13.375 -9.671875 13.375 -8.328125 Q13.375 -7.640625 13.09375 -6.9765625 Q12.8125 -6.3125 12.15625 -5.578125 Q11.5 -4.84375 9.984375 -3.5625 Q8.71875 -2.5 8.359375 -2.1171875 Q8.0 -1.734375 7.765625 -1.359375 L13.390625 -1.359375 Z"/></g></g><path d=" M25.259765625 223.5 L46.152994791666664 223.5 L46.152994791666664 246.5 L25.259765625 246.5 L25.259765625 223.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 203.5 L46.152994791666664 203.5 L46.152994791666664 226.5 L30.587890625 226.5 L30.587890625 203.5 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,33.25455856323242,222.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.671875 -5.65625 Q0.671875 -7.6875 1.0859375 -8.921875 Q1.5 -10.15625 2.328125 -10.828125 Q3.15625 -11.5 4.40625 -11.5 Q5.328125 -11.5 6.0234375 -11.1328125 Q6.71875 -10.765625 7.171875 -10.0625 Q7.625 -9.359375 7.8828125 -8.359375 Q8.140625 -7.359375 8.140625 -5.65625 Q8.140625 -3.640625 7.7265625 -2.3984375 Q7.3125 -1.15625 6.484375 -0.4765625 Q5.65625 0.203125 4.40625 0.203125 Q2.75 0.203125 1.796875 -1.0 Q0.671875 -2.421875 0.671875 -5.65625 Z M2.109375 -5.65625 Q2.109375 -2.828125 2.7734375 -1.8984375 Q3.4375 -0.96875 4.40625 -0.96875 Q5.375 -0.96875 6.03125 -1.90625 Q6.6875 -2.84375 6.6875 -5.65625 Q6.6875 -8.484375 6.03125 -9.4140625 Q5.375 -10.34375 4.390625 -10.34375 Q3.421875 -10.34375 2.84375 -9.515625 Q2.109375 -8.46875 2.109375 -5.65625 Z"/></g></g><path d=" M30.587890625 203.5 L46.152994791666664 203.5 L46.152994791666664 226.5 L30.587890625 226.5 L30.587890625 203.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 183.5 L46.152994791666664 183.5 L46.152994791666664 206.5 L30.587890625 206.5 L30.587890625 183.5 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,33.25455856323242,202.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M8.0625 -1.359375 L8.0625 0.0 L0.484375 0.0 Q0.46875 -0.515625 0.65625 -0.984375 Q0.9375 -1.75 1.578125 -2.5 Q2.21875 -3.25 3.421875 -4.234375 Q5.28125 -5.765625 5.9375 -6.6640625 Q6.59375 -7.5625 6.59375 -8.359375 Q6.59375 -9.1875 6.0 -9.765625 Q5.40625 -10.34375 4.4375 -10.34375 Q3.421875 -10.34375 2.8125 -9.734375 Q2.203125 -9.125 2.203125 -8.046875 L0.75 -8.1875 Q0.90625 -9.8125 1.875 -10.65625 Q2.84375 -11.5 4.46875 -11.5 Q6.125 -11.5 7.0859375 -10.5859375 Q8.046875 -9.671875 8.046875 -8.328125 Q8.046875 -7.640625 7.765625 -6.9765625 Q7.484375 -6.3125 6.828125 -5.578125 Q6.171875 -4.84375 4.65625 -3.5625 Q3.390625 -2.5 3.03125 -2.1171875 Q2.671875 -1.734375 2.4375 -1.359375 L8.0625 -1.359375 Z"/></g></g><path d=" M30.587890625 183.5 L46.152994791666664 183.5 L46.152994791666664 206.5 L30.587890625 206.5 L30.587890625 183.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 163.5 L46.152994791666664 163.5 L46.152994791666664 186.5 L30.587890625 186.5 L30.587890625 163.5 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,33.25455856323242,182.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.171875 0.0 L5.171875 -2.75 L0.203125 -2.75 L0.203125 -4.03125 L5.4375 -11.453125 L6.578125 -11.453125 L6.578125 -4.03125 L8.125 -4.03125 L8.125 -2.75 L6.578125 -2.75 L6.578125 0.0 L5.171875 0.0 Z M5.171875 -4.03125 L5.171875 -9.203125 L1.59375 -4.03125 L5.171875 -4.03125 Z"/></g></g><path d=" M30.587890625 163.5 L46.152994791666664 163.5 L46.152994791666664 186.5 L30.587890625 186.5 L30.587890625 163.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 143.5 L46.152994791666664 143.5 L46.152994791666664 166.5 L30.587890625 166.5 L30.587890625 143.5 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,33.25455856323242,162.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M7.96875 -8.65625 L6.5625 -8.546875 Q6.375 -9.375 6.03125 -9.75 Q5.46875 -10.34375 4.625 -10.34375 Q3.953125 -10.34375 3.453125 -9.96875 Q2.78125 -9.484375 2.3984375 -8.5546875 Q2.015625 -7.625 2.0 -5.90625 Q2.515625 -6.6875 3.25 -7.0625 Q3.984375 -7.4375 4.78125 -7.4375 Q6.1875 -7.4375 7.1796875 -6.3984375 Q8.171875 -5.359375 8.171875 -3.71875 Q8.171875 -2.640625 7.703125 -1.71875 Q7.234375 -0.796875 6.421875 -0.296875 Q5.609375 0.203125 4.578125 0.203125 Q2.828125 0.203125 1.71875 -1.09375 Q0.609375 -2.390625 0.609375 -5.359375 Q0.609375 -8.6875 1.828125 -10.1875 Q2.90625 -11.5 4.71875 -11.5 Q6.0625 -11.5 6.9296875 -10.7421875 Q7.796875 -9.984375 7.96875 -8.65625 Z M2.21875 -3.71875 Q2.21875 -2.984375 2.53125 -2.3203125 Q2.84375 -1.65625 3.3984375 -1.3125 Q3.953125 -0.96875 4.5625 -0.96875 Q5.453125 -0.96875 6.09375 -1.6875 Q6.734375 -2.40625 6.734375 -3.640625 Q6.734375 -4.828125 6.1015625 -5.5078125 Q5.46875 -6.1875 4.5 -6.1875 Q3.546875 -6.1875 2.8828125 -5.5078125 Q2.21875 -4.828125 2.21875 -3.71875 Z"/></g></g><path d=" M30.587890625 143.5 L46.152994791666664 143.5 L46.152994791666664 166.5 L30.587890625 166.5 L30.587890625 143.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 122.5 L46.152994791666664 122.5 L46.152994791666664 145.5 L30.587890625 145.5 L30.587890625 122.5 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,33.25455856323242,141.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M2.828125 -6.21875 Q1.953125 -6.53125 1.53125 -7.125 Q1.109375 -7.71875 1.109375 -8.546875 Q1.109375 -9.796875 2.0078125 -10.6484375 Q2.90625 -11.5 4.40625 -11.5 Q5.90625 -11.5 6.8203125 -10.6328125 Q7.734375 -9.765625 7.734375 -8.515625 Q7.734375 -7.71875 7.3125 -7.125 Q6.890625 -6.53125 6.046875 -6.21875 Q7.09375 -5.875 7.6484375 -5.109375 Q8.203125 -4.34375 8.203125 -3.28125 Q8.203125 -1.8125 7.1640625 -0.8046875 Q6.125 0.203125 4.421875 0.203125 Q2.734375 0.203125 1.6953125 -0.8046875 Q0.65625 -1.8125 0.65625 -3.3125 Q0.65625 -4.4375 1.21875 -5.1875 Q1.78125 -5.9375 2.828125 -6.21875 Z M2.546875 -8.59375 Q2.546875 -7.78125 3.0703125 -7.265625 Q3.59375 -6.75 4.4375 -6.75 Q5.25 -6.75 5.765625 -7.265625 Q6.28125 -7.78125 6.28125 -8.515625 Q6.28125 -9.296875 5.75 -9.8203125 Q5.21875 -10.34375 4.421875 -10.34375 Q3.609375 -10.34375 3.078125 -9.828125 Q2.546875 -9.3125 2.546875 -8.59375 Z M2.09375 -3.3125 Q2.09375 -2.703125 2.3828125 -2.140625 Q2.671875 -1.578125 3.234375 -1.2734375 Q3.796875 -0.96875 4.4375 -0.96875 Q5.453125 -0.96875 6.109375 -1.6171875 Q6.765625 -2.265625 6.765625 -3.265625 Q6.765625 -4.28125 6.0859375 -4.9453125 Q5.40625 -5.609375 4.390625 -5.609375 Q3.40625 -5.609375 2.75 -4.953125 Q2.09375 -4.296875 2.09375 -3.3125 Z"/></g></g><path d=" M30.587890625 122.5 L46.152994791666664 122.5 L46.152994791666664 145.5 L30.587890625 145.5 L30.587890625 122.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.689453125 102.5 L46.152994791666664 102.5 L46.152994791666664 125.5 L21.689453125 125.5 L21.689453125 102.5 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,24.35611915588379,121.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.96875 0.0 L4.5625 0.0 L4.5625 -8.96875 Q4.046875 -8.484375 3.2265625 -8.0 Q2.40625 -7.515625 1.75 -7.265625 L1.75 -8.625 Q2.921875 -9.1875 3.8046875 -9.9765625 Q4.6875 -10.765625 5.0625 -11.5 L5.96875 -11.5 L5.96875 0.0 Z"/><path d=" M9.5703125 -5.65625 Q9.5703125 -7.6875 9.984375 -8.921875 Q10.3984375 -10.15625 11.2265625 -10.828125 Q12.0546875 -11.5 13.3046875 -11.5 Q14.2265625 -11.5 14.921875 -11.1328125 Q15.6171875 -10.765625 16.0703125 -10.0625 Q16.5234375 -9.359375 16.78125 -8.359375 Q17.0390625 -7.359375 17.0390625 -5.65625 Q17.0390625 -3.640625 16.625 -2.3984375 Q16.2109375 -1.15625 15.3828125 -0.4765625 Q14.5546875 0.203125 13.3046875 0.203125 Q11.6484375 0.203125 10.6953125 -1.0 Q9.5703125 -2.421875 9.5703125 -5.65625 Z M11.0078125 -5.65625 Q11.0078125 -2.828125 11.671875 -1.8984375 Q12.3359375 -0.96875 13.3046875 -0.96875 Q14.2734375 -0.96875 14.9296875 -1.90625 Q15.5859375 -2.84375 15.5859375 -5.65625 Q15.5859375 -8.484375 14.9296875 -9.4140625 Q14.2734375 -10.34375 13.2890625 -10.34375 Q12.3203125 -10.34375 11.7421875 -9.515625 Q11.0078125 -8.46875 11.0078125 -5.65625 Z"/></g></g><path d=" M21.689453125 102.5 L46.152994791666664 102.5 L46.152994791666664 125.5 L21.689453125 125.5 L21.689453125 102.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.689453125 82.5 L46.152994791666664 82.5 L46.152994791666664 105.5 L21.689453125 105.5 L21.689453125 82.5 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,24.35611915588379,101.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.96875 0.0 L4.5625 0.0 L4.5625 -8.96875 Q4.046875 -8.484375 3.2265625 -8.0 Q2.40625 -7.515625 1.75 -7.265625 L1.75 -8.625 Q2.921875 -9.1875 3.8046875 -9.9765625 Q4.6875 -10.765625 5.0625 -11.5 L5.96875 -11.5 L5.96875 0.0 Z"/><path d=" M16.9609375 -1.359375 L16.9609375 0.0 L9.3828125 0.0 Q9.3671875 -0.515625 9.5546875 -0.984375 Q9.8359375 -1.75 10.4765625 -2.5 Q11.1171875 -3.25 12.3203125 -4.234375 Q14.1796875 -5.765625 14.8359375 -6.6640625 Q15.4921875 -7.5625 15.4921875 -8.359375 Q15.4921875 -9.1875 14.8984375 -9.765625 Q14.3046875 -10.34375 13.3359375 -10.34375 Q12.3203125 -10.34375 11.7109375 -9.734375 Q11.1015625 -9.125 11.1015625 -8.046875 L9.6484375 -8.1875 Q9.8046875 -9.8125 10.7734375 -10.65625 Q11.7421875 -11.5 13.3671875 -11.5 Q15.0234375 -11.5 15.984375 -10.5859375 Q16.9453125 -9.671875 16.9453125 -8.328125 Q16.9453125 -7.640625 16.6640625 -6.9765625 Q16.3828125 -6.3125 15.7265625 -5.578125 Q15.0703125 -4.84375 13.5546875 -3.5625 Q12.2890625 -2.5 11.9296875 -2.1171875 Q11.5703125 -1.734375 11.3359375 -1.359375 L16.9609375 -1.359375 Z"/></g></g><path d=" M21.689453125 82.5 L46.152994791666664 82.5 L46.152994791666664 105.5 L21.689453125 105.5 L21.689453125 82.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.689453125 62.5 L46.152994791666664 62.5 L46.152994791666664 85.5 L21.689453125 85.5 L21.689453125 62.5 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,24.35611915588379,81.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.96875 0.0 L4.5625 0.0 L4.5625 -8.96875 Q4.046875 -8.484375 3.2265625 -8.0 Q2.40625 -7.515625 1.75 -7.265625 L1.75 -8.625 Q2.921875 -9.1875 3.8046875 -9.9765625 Q4.6875 -10.765625 5.0625 -11.5 L5.96875 -11.5 L5.96875 0.0 Z"/><path d=" M14.0703125 0.0 L14.0703125 -2.75 L9.1015625 -2.75 L9.1015625 -4.03125 L14.3359375 -11.453125 L15.4765625 -11.453125 L15.4765625 -4.03125 L17.0234375 -4.03125 L17.0234375 -2.75 L15.4765625 -2.75 L15.4765625 0.0 L14.0703125 0.0 Z M14.0703125 -4.03125 L14.0703125 -9.203125 L10.4921875 -4.03125 L14.0703125 -4.03125 Z"/></g></g><path d=" M21.689453125 62.5 L46.152994791666664 62.5 L46.152994791666664 85.5 L21.689453125 85.5 L21.689453125 62.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.689453125 42.5 L46.152994791666664 42.5 L46.152994791666664 65.5 L21.689453125 65.5 L21.689453125 42.5 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,24.35611915588379,61.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.96875 0.0 L4.5625 0.0 L4.5625 -8.96875 Q4.046875 -8.484375 3.2265625 -8.0 Q2.40625 -7.515625 1.75 -7.265625 L1.75 -8.625 Q2.921875 -9.1875 3.8046875 -9.9765625 Q4.6875 -10.765625 5.0625 -11.5 L5.96875 -11.5 L5.96875 0.0 Z"/><path d=" M16.8671875 -8.65625 L15.4609375 -8.546875 Q15.2734375 -9.375 14.9296875 -9.75 Q14.3671875 -10.34375 13.5234375 -10.34375 Q12.8515625 -10.34375 12.3515625 -9.96875 Q11.6796875 -9.484375 11.296875 -8.5546875 Q10.9140625 -7.625 10.8984375 -5.90625 Q11.4140625 -6.6875 12.1484375 -7.0625 Q12.8828125 -7.4375 13.6796875 -7.4375 Q15.0859375 -7.4375 16.078125 -6.3984375 Q17.0703125 -5.359375 17.0703125 -3.71875 Q17.0703125 -2.640625 16.6015625 -1.71875 Q16.1328125 -0.796875 15.3203125 -0.296875 Q14.5078125 0.203125 13.4765625 0.203125 Q11.7265625 0.203125 10.6171875 -1.09375 Q9.5078125 -2.390625 9.5078125 -5.359375 Q9.5078125 -8.6875 10.7265625 -10.1875 Q11.8046875 -11.5 13.6171875 -11.5 Q14.9609375 -11.5 15.828125 -10.7421875 Q16.6953125 -9.984375 16.8671875 -8.65625 Z M11.1171875 -3.71875 Q11.1171875 -2.984375 11.4296875 -2.3203125 Q11.7421875 -1.65625 12.296875 -1.3125 Q12.8515625 -0.96875 13.4609375 -0.96875 Q14.3515625 -0.96875 14.9921875 -1.6875 Q15.6328125 -2.40625 15.6328125 -3.640625 Q15.6328125 -4.828125 15.0 -5.5078125 Q14.3671875 -6.1875 13.3984375 -6.1875 Q12.4453125 -6.1875 11.78125 -5.5078125 Q11.1171875 -4.828125 11.1171875 -3.71875 Z"/></g></g><path d=" M21.689453125 42.5 L46.152994791666664 42.5 L46.152994791666664 65.5 L21.689453125 65.5 L21.689453125 42.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M37.00000000000001 138.42591349283856 L151.42591349283856 138.42591349283856 L151.42591349283856 168.42591349283856 L37.00000000000001 168.42591349283856 L37.00000000000001 138.42591349283856 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-131.42591349283856,205.42591349283856)" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(-0.0,-1.0,1.0,0.0,32.000005086263,165.75924555460614)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.859375 0.0 L5.859375 -6.375 L0.0625 -15.03125 L2.484375 -15.03125 L5.4375 -10.5 Q6.265625 -9.234375 6.96875 -7.953125 Q7.65625 -9.140625 8.609375 -10.609375 L11.53125 -15.03125 L13.84375 -15.03125 L7.84375 -6.375 L7.84375 0.0 L5.859375 0.0 Z"/><path d=" M14.88714599609375 -4.515625 L14.88714599609375 -6.375 L20.55902099609375 -6.375 L20.55902099609375 -4.515625 L14.88714599609375 -4.515625 Z"/><path d=" M21.28125 0.0 L27.0625 -15.03125 L29.203125 -15.03125 L35.34375 0.0 L33.078125 0.0 L31.328125 -4.546875 L25.046875 -4.546875 L23.390625 0.0 L21.28125 0.0 Z M25.625 -6.171875 L30.71875 -6.171875 L29.140625 -10.34375 Q28.421875 -12.234375 28.078125 -13.453125 Q27.796875 -12.0 27.265625 -10.578125 L25.625 -6.171875 Z"/><path d=" M35.68402099609375 0.0 L39.65277099609375 -5.65625 L35.98089599609375 -10.890625 L38.29339599609375 -10.890625 L39.96527099609375 -8.34375 Q40.43402099609375 -7.609375 40.71527099609375 -7.109375 Q41.16839599609375 -7.796875 41.54339599609375 -8.3125 L43.38714599609375 -10.890625 L45.59027099609375 -10.890625 L41.82464599609375 -5.765625 L45.87152099609375 0.0 L43.60589599609375 0.0 L41.37152099609375 -3.390625 L40.77777099609375 -4.296875 L37.91839599609375 0.0 L35.68402099609375 0.0 Z"/><path d=" M47.57464599609375 -12.90625 L47.57464599609375 -15.03125 L49.41839599609375 -15.03125 L49.41839599609375 -12.90625 L47.57464599609375 -12.90625 Z M47.57464599609375 0.0 L47.57464599609375 -10.890625 L49.41839599609375 -10.890625 L49.41839599609375 0.0 L47.57464599609375 0.0 Z"/><path d=" M51.559600830078125 -3.25 L53.387725830078125 -3.53125 Q53.543975830078125 -2.4375 54.247100830078125 -1.8515625 Q54.950225830078125 -1.265625 56.215850830078125 -1.265625 Q57.481475830078125 -1.265625 58.098663330078125 -1.7890625 Q58.715850830078125 -2.3125 58.715850830078125 -3.0 Q58.715850830078125 -3.625 58.168975830078125 -3.984375 Q57.793975830078125 -4.234375 56.278350830078125 -4.609375 Q54.247100830078125 -5.125 53.465850830078125 -5.5 Q52.684600830078125 -5.875 52.278350830078125 -6.5390625 Q51.872100830078125 -7.203125 51.872100830078125 -8.0 Q51.872100830078125 -8.71875 52.208038330078125 -9.34375 Q52.543975830078125 -9.96875 53.106475830078125 -10.375 Q53.543975830078125 -10.6875 54.286163330078125 -10.9140625 Q55.028350830078125 -11.140625 55.887725830078125 -11.140625 Q57.168975830078125 -11.140625 58.137725830078125 -10.765625 Q59.106475830078125 -10.390625 59.567413330078125 -9.765625 Q60.028350830078125 -9.140625 60.200225830078125 -8.078125 L58.387725830078125 -7.828125 Q58.278350830078125 -8.671875 57.684600830078125 -9.1484375 Q57.090850830078125 -9.625 56.012725830078125 -9.625 Q54.747100830078125 -9.625 54.200225830078125 -9.203125 Q53.653350830078125 -8.78125 53.653350830078125 -8.21875 Q53.653350830078125 -7.859375 53.887725830078125 -7.5625 Q54.106475830078125 -7.265625 54.590850830078125 -7.078125 Q54.872100830078125 -6.96875 56.215850830078125 -6.609375 Q58.184600830078125 -6.078125 58.958038330078125 -5.75 Q59.731475830078125 -5.421875 60.168975830078125 -4.78125 Q60.606475830078125 -4.140625 60.606475830078125 -3.203125 Q60.606475830078125 -2.28125 60.067413330078125 -1.4609375 Q59.528350830078125 -0.640625 58.512725830078125 -0.1953125 Q57.497100830078125 0.25 56.215850830078125 0.25 Q54.090850830078125 0.25 52.981475830078125 -0.6328125 Q51.872100830078125 -1.515625 51.559600830078125 -3.25 Z"/><path d=""/><path d=" M72.93402099609375 0.0 L72.93402099609375 -13.265625 L67.99652099609375 -13.265625 L67.99652099609375 -15.03125 L79.90277099609375 -15.03125 L79.90277099609375 -13.265625 L74.93402099609375 -13.265625 L74.93402099609375 0.0 L72.93402099609375 0.0 Z"/><path d=" M81.90567016601562 -12.90625 L81.90567016601562 -15.03125 L83.74942016601562 -15.03125 L83.74942016601562 -12.90625 L81.90567016601562 -12.90625 Z M81.90567016601562 0.0 L81.90567016601562 -10.890625 L83.74942016601562 -10.890625 L83.74942016601562 0.0 L81.90567016601562 0.0 Z"/><path d=" M90.671875 -1.65625 L90.9375 -0.015625 Q90.15625 0.140625 89.53125 0.140625 Q88.53125 0.140625 87.9765625 -0.1796875 Q87.421875 -0.5 87.1953125 -1.015625 Q86.96875 -1.53125 86.96875 -3.1875 L86.96875 -9.453125 L85.625 -9.453125 L85.625 -10.890625 L86.96875 -10.890625 L86.96875 -13.59375 L88.8125 -14.6875 L88.8125 -10.890625 L90.671875 -10.890625 L90.671875 -9.453125 L88.8125 -9.453125 L88.8125 -3.09375 Q88.8125 -2.296875 88.90625 -2.0703125 Q89.0 -1.84375 89.21875 -1.7109375 Q89.4375 -1.578125 89.859375 -1.578125 Q90.15625 -1.578125 90.671875 -1.65625 Z"/><path d=" M92.51504516601562 0.0 L92.51504516601562 -15.03125 L94.35879516601562 -15.03125 L94.35879516601562 0.0 L92.51504516601562 0.0 Z"/><path d=" M104.75 -3.5 L106.65625 -3.265625 Q106.203125 -1.59375 104.984375 -0.671875 Q103.765625 0.25 101.859375 0.25 Q99.46875 0.25 98.0703125 -1.2265625 Q96.671875 -2.703125 96.671875 -5.359375 Q96.671875 -8.09375 98.0859375 -9.6171875 Q99.5 -11.140625 101.765625 -11.140625 Q103.953125 -11.140625 105.3359375 -9.6484375 Q106.71875 -8.15625 106.71875 -5.46875 Q106.71875 -5.296875 106.703125 -4.96875 L98.578125 -4.96875 Q98.6875 -3.171875 99.6015625 -2.21875 Q100.515625 -1.265625 101.875 -1.265625 Q102.890625 -1.265625 103.609375 -1.8046875 Q104.328125 -2.34375 104.75 -3.5 Z M98.6875 -6.484375 L104.765625 -6.484375 Q104.640625 -7.859375 104.0625 -8.546875 Q103.1875 -9.625 101.78125 -9.625 Q100.515625 -9.625 99.6484375 -8.7734375 Q98.78125 -7.921875 98.6875 -6.484375 Z"/></g></g><path d=" M37.00000000000001 138.42591349283856 L151.42591349283856 138.42591349283856 L151.42591349283856 168.42591349283856 L37.00000000000001 168.42591349283856 L37.00000000000001 138.42591349283856 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-131.42591349283856,205.42591349283856)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M459.3971354166667 180.5 L459.3971354166667 190.5" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#0080ff;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M454.3971354166667 185.5 L464.3971354166667 185.5" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#0080ff;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M474.3971354166667 174.0 L539.7591145833334 174.0 L539.7591145833334 197.0 L474.3971354166667 197.0 L474.3971354166667 174.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,477.0638122558594,193.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.71875 -3.6875 L2.15625 -3.8125 Q2.25 -2.953125 2.625 -2.3984375 Q3.0 -1.84375 3.78125 -1.5078125 Q4.5625 -1.171875 5.53125 -1.171875 Q6.40625 -1.171875 7.0703125 -1.4296875 Q7.734375 -1.6875 8.0546875 -2.1328125 Q8.375 -2.578125 8.375 -3.109375 Q8.375 -3.65625 8.0625 -4.0546875 Q7.75 -4.453125 7.03125 -4.734375 Q6.578125 -4.90625 5.0 -5.2890625 Q3.421875 -5.671875 2.78125 -6.0 Q1.96875 -6.4375 1.5625 -7.0703125 Q1.15625 -7.703125 1.15625 -8.5 Q1.15625 -9.359375 1.6484375 -10.1171875 Q2.140625 -10.875 3.0859375 -11.265625 Q4.03125 -11.65625 5.1875 -11.65625 Q6.46875 -11.65625 7.4375 -11.2421875 Q8.40625 -10.828125 8.9296875 -10.03125 Q9.453125 -9.234375 9.5 -8.234375 L8.046875 -8.125 Q7.921875 -9.203125 7.25 -9.7578125 Q6.578125 -10.3125 5.25 -10.3125 Q3.875 -10.3125 3.25 -9.8125 Q2.625 -9.3125 2.625 -8.59375 Q2.625 -7.984375 3.0625 -7.578125 Q3.5 -7.1875 5.3515625 -6.765625 Q7.203125 -6.34375 7.890625 -6.03125 Q8.890625 -5.578125 9.3671875 -4.8671875 Q9.84375 -4.15625 9.84375 -3.234375 Q9.84375 -2.328125 9.3203125 -1.515625 Q8.796875 -0.703125 7.8125 -0.25 Q6.828125 0.203125 5.609375 0.203125 Q4.046875 0.203125 3.0 -0.2578125 Q1.953125 -0.71875 1.3515625 -1.625 Q0.75 -2.53125 0.71875 -3.6875 Z"/><path d=" M17.40625 -2.671875 L18.859375 -2.5 Q18.515625 -1.21875 17.5859375 -0.515625 Q16.65625 0.1875 15.21875 0.1875 Q13.390625 0.1875 12.328125 -0.9375 Q11.265625 -2.0625 11.265625 -4.078125 Q11.265625 -6.171875 12.34375 -7.328125 Q13.421875 -8.484375 15.140625 -8.484375 Q16.796875 -8.484375 17.8515625 -7.3515625 Q18.90625 -6.21875 18.90625 -4.171875 Q18.90625 -4.046875 18.90625 -3.796875 L12.71875 -3.796875 Q12.796875 -2.421875 13.4921875 -1.6953125 Q14.1875 -0.96875 15.21875 -0.96875 Q16.0 -0.96875 16.546875 -1.375 Q17.09375 -1.78125 17.40625 -2.671875 Z M12.796875 -4.953125 L17.421875 -4.953125 Q17.328125 -6.0 16.890625 -6.515625 Q16.21875 -7.328125 15.15625 -7.328125 Q14.1875 -7.328125 13.5234375 -6.6796875 Q12.859375 -6.03125 12.796875 -4.953125 Z"/><path d=" M20.6171875 0.0 L20.6171875 -8.296875 L21.8828125 -8.296875 L21.8828125 -7.046875 Q22.3671875 -7.921875 22.7734375 -8.203125 Q23.1796875 -8.484375 23.6796875 -8.484375 Q24.3828125 -8.484375 25.1171875 -8.03125 L24.6328125 -6.734375 Q24.1171875 -7.03125 23.6015625 -7.03125 Q23.1484375 -7.03125 22.78125 -6.7578125 Q22.4140625 -6.484375 22.2578125 -5.984375 Q22.0234375 -5.234375 22.0234375 -4.34375 L22.0234375 0.0 L20.6171875 0.0 Z"/><path d=" M25.9609375 -9.84375 L25.9609375 -11.453125 L27.3671875 -11.453125 L27.3671875 -9.84375 L25.9609375 -9.84375 Z M25.9609375 0.0 L25.9609375 -8.296875 L27.3671875 -8.296875 L27.3671875 0.0 L25.9609375 0.0 Z"/><path d=" M35.1875 -2.671875 L36.640625 -2.5 Q36.296875 -1.21875 35.3671875 -0.515625 Q34.4375 0.1875 33.0 0.1875 Q31.171875 0.1875 30.109375 -0.9375 Q29.046875 -2.0625 29.046875 -4.078125 Q29.046875 -6.171875 30.125 -7.328125 Q31.203125 -8.484375 32.921875 -8.484375 Q34.578125 -8.484375 35.6328125 -7.3515625 Q36.6875 -6.21875 36.6875 -4.171875 Q36.6875 -4.046875 36.6875 -3.796875 L30.5 -3.796875 Q30.578125 -2.421875 31.2734375 -1.6953125 Q31.96875 -0.96875 33.0 -0.96875 Q33.78125 -0.96875 34.328125 -1.375 Q34.875 -1.78125 35.1875 -2.671875 Z M30.578125 -4.953125 L35.203125 -4.953125 Q35.109375 -6.0 34.671875 -6.515625 Q34.0 -7.328125 32.9375 -7.328125 Q31.96875 -7.328125 31.3046875 -6.6796875 Q30.640625 -6.03125 30.578125 -4.953125 Z"/><path d=" M37.8515625 -2.484375 L39.2421875 -2.703125 Q39.3515625 -1.859375 39.890625 -1.4140625 Q40.4296875 -0.96875 41.3828125 -0.96875 Q42.3515625 -0.96875 42.8203125 -1.3671875 Q43.2890625 -1.765625 43.2890625 -2.296875 Q43.2890625 -2.765625 42.8828125 -3.046875 Q42.5859375 -3.234375 41.4453125 -3.515625 Q39.8984375 -3.90625 39.296875 -4.1953125 Q38.6953125 -4.484375 38.390625 -4.984375 Q38.0859375 -5.484375 38.0859375 -6.09375 Q38.0859375 -6.65625 38.3359375 -7.125 Q38.5859375 -7.59375 39.0234375 -7.90625 Q39.3515625 -8.15625 39.921875 -8.3203125 Q40.4921875 -8.484375 41.1328125 -8.484375 Q42.1171875 -8.484375 42.8515625 -8.203125 Q43.5859375 -7.921875 43.9375 -7.4453125 Q44.2890625 -6.96875 44.4296875 -6.15625 L43.0546875 -5.96875 Q42.9609375 -6.609375 42.5078125 -6.96875 Q42.0546875 -7.328125 41.2421875 -7.328125 Q40.2734375 -7.328125 39.859375 -7.0078125 Q39.4453125 -6.6875 39.4453125 -6.265625 Q39.4453125 -5.984375 39.6171875 -5.765625 Q39.7890625 -5.546875 40.1484375 -5.390625 Q40.3671875 -5.3125 41.3984375 -5.03125 Q42.8828125 -4.640625 43.4765625 -4.3828125 Q44.0703125 -4.125 44.40625 -3.640625 Q44.7421875 -3.15625 44.7421875 -2.4375 Q44.7421875 -1.734375 44.328125 -1.1171875 Q43.9140625 -0.5 43.140625 -0.15625 Q42.3671875 0.1875 41.3984375 0.1875 Q39.7734375 0.1875 38.9296875 -0.484375 Q38.0859375 -1.15625 37.8515625 -2.484375 Z"/><path d=""/><path d=" M55.765625 0.0 L54.359375 0.0 L54.359375 -8.96875 Q53.84375 -8.484375 53.0234375 -8.0 Q52.203125 -7.515625 51.546875 -7.265625 L51.546875 -8.625 Q52.71875 -9.1875 53.6015625 -9.9765625 Q54.484375 -10.765625 54.859375 -11.5 L55.765625 -11.5 L55.765625 0.0 Z"/></g></g><path d=" M474.3971354166667 174.0 L539.7591145833334 174.0 L539.7591145833334 197.0 L474.3971354166667 197.0 L474.3971354166667 174.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/></g><g style="fill-opacity:0.01;fill:#FFFFFF;"/></svg> \ No newline at end of file
+]]></script><style type="text/css"><![CDATA[.tooltip.text{ text-anchor:left;font-size:12pt;fill:black;}.tooltip{fill:rgb(244,245,235)}]]></style><path d=" M0.0 0.0 L533.0 0.0 L533.0 333.0 L0.0 333.0 L0.0 0.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M4.0 4.0 L268.5260416666667 4.0 L268.5260416666667 49.0 L4.0 49.0 L4.0 4.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="32" style="fill-opacity:1.0;fill:#000000;" x="6.6666665" y="42.0">Scatter Chart Title</text><path d=" M4.0 4.0 L268.5260416666667 4.0 L268.5260416666667 49.0 L4.0 49.0 L4.0 4.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M58.81966145833333 54.0 L427.6695963541667 54.0 L427.6695963541667 277.3333333333333 L58.81966145833333 277.3333333333333 L58.81966145833333 54.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M58.81966145833333 283.0 L426.6695963541667 283.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M58.0 278.0 L58.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M87.0 278.0 L87.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M115.0 278.0 L115.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M143.0 278.0 L143.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M172.0 278.0 L172.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M200.0 278.0 L200.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M228.0 278.0 L228.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M256.0 278.0 L256.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M285.0 278.0 L285.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M313.0 278.0 L313.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M341.0 278.0 L341.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M370.0 278.0 L370.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M398.0 278.0 L398.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M426.0 278.0 L426.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M58.81966145833332 305.0 L173.24557495117188 305.0 L173.24557495117188 335.0 L58.81966145833332 335.0 L58.81966145833332 305.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="21" style="fill-opacity:1.0;fill:#000000;" x="61.48633" y="330.0">X-Axis Title</text><path d=" M58.81966145833332 305.0 L173.24557495117188 305.0 L173.24557495117188 335.0 L58.81966145833332 335.0 L58.81966145833332 305.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M52.152994791666664 276.3333333333333 L52.152994791666664 54.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 276.0 L57.152994791666664 276.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 256.0 L57.152994791666664 256.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 235.0 L57.152994791666664 235.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 215.0 L57.152994791666664 215.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 195.0 L57.152994791666664 195.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 175.0 L57.152994791666664 175.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 155.0 L57.152994791666664 155.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 134.0 L57.152994791666664 134.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 114.0 L57.152994791666664 114.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 94.0 L57.152994791666664 94.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 74.0 L57.152994791666664 74.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 54.0 L57.152994791666664 54.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M37.00000000000001 138.42591349283856 L151.42591349283856 138.42591349283856 L151.42591349283856 168.42591349283856 L37.00000000000001 168.42591349283856 L37.00000000000001 138.42591349283856 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-131.42591349283856,205.42591349283856)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="21" style="fill-opacity:1.0;fill:#000000;" transform="matrix(-0.0,-1.0,1.0,0.0,-131.42591349283856,205.42591349283856)" x="39.666668" y="163.42592">Y-Axis Title</text><path d=" M37.00000000000001 138.42591349283856 L151.42591349283856 138.42591349283856 L151.42591349283856 168.42591349283856 L37.00000000000001 168.42591349283856 L37.00000000000001 138.42591349283856 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-131.42591349283856,205.42591349283856)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M228.5965576171875 59.10606384277344 L228.5965576171875 69.10606384277344" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#0080ff;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M223.5965576171875 64.10606384277344 L233.5965576171875 64.10606384277344" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#0080ff;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M398.3734436035156 251.1212158203125 L398.3734436035156 261.1212158203125" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#0080ff;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M393.3734436035156 256.1212158203125 L403.3734436035156 256.1212158203125" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#0080ff;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M87.11580657958984 89.42424011230469 L87.11580657958984 99.42424011230469" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#0080ff;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M82.11580657958984 94.42424011230469 L92.11580657958984 94.42424011230469" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#0080ff;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M209.69291178385416 31.106063842773438 L247.50020345052081 31.106063842773438 L247.50020345052081 54.10606384277344 L209.69291178385416 54.10606384277344 L209.69291178385416 31.106063842773438 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="212.35957" y="50.106064">15.0</text><path d=" M209.69291178385416 31.106063842773438 L247.50020345052081 31.106063842773438 L247.50020345052081 54.10606384277344 L209.69291178385416 54.10606384277344 L209.69291178385416 31.106063842773438 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M381.2549540201823 223.1212158203125 L415.491933186849 223.1212158203125 L415.491933186849 246.1212158203125 L381.2549540201823 246.1212158203125 L381.2549540201823 223.1212158203125 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="383.92163" y="242.12122">-4.0</text><path d=" M381.2549540201823 223.1212158203125 L415.491933186849 223.1212158203125 L415.491933186849 246.1212158203125 L381.2549540201823 246.1212158203125 L381.2549540201823 223.1212158203125 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M68.21216074625652 61.42424011230469 L106.01945241292319 61.42424011230469 L106.01945241292319 84.42424011230469 L68.21216074625652 84.42424011230469 L68.21216074625652 61.42424011230469 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="70.87883" y="80.42424">12.0</text><path d=" M68.21216074625652 61.42424011230469 L106.01945241292319 61.42424011230469 L106.01945241292319 84.42424011230469 L68.21216074625652 84.42424011230469 L68.21216074625652 61.42424011230469 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.55338541666667 289.0 L68.44661458333334 289.0 L68.44661458333334 312.0 L47.55338541666667 312.0 L47.55338541666667 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="50.22005" y="308.0">-3</text><path d=" M47.55338541666667 289.0 L68.44661458333334 289.0 L68.44661458333334 312.0 L47.55338541666667 312.0 L47.55338541666667 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M76.55338541666667 289.0 L97.44661458333334 289.0 L97.44661458333334 312.0 L76.55338541666667 312.0 L76.55338541666667 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="79.220055" y="308.0">-2</text><path d=" M76.55338541666667 289.0 L97.44661458333334 289.0 L97.44661458333334 312.0 L76.55338541666667 312.0 L76.55338541666667 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M104.55338541666667 289.0 L125.44661458333334 289.0 L125.44661458333334 312.0 L104.55338541666667 312.0 L104.55338541666667 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="107.220055" y="308.0">-1</text><path d=" M104.55338541666667 289.0 L125.44661458333334 289.0 L125.44661458333334 312.0 L104.55338541666667 312.0 L104.55338541666667 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M135.21744791666666 289.0 L150.78255208333331 289.0 L150.78255208333331 312.0 L135.21744791666666 312.0 L135.21744791666666 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="137.88411" y="308.0">0</text><path d=" M135.21744791666666 289.0 L150.78255208333331 289.0 L150.78255208333331 312.0 L135.21744791666666 312.0 L135.21744791666666 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M164.21744791666666 289.0 L179.78255208333331 289.0 L179.78255208333331 312.0 L164.21744791666666 312.0 L164.21744791666666 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="166.88411" y="308.0">1</text><path d=" M164.21744791666666 289.0 L179.78255208333331 289.0 L179.78255208333331 312.0 L164.21744791666666 312.0 L164.21744791666666 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M192.21744791666666 289.0 L207.78255208333331 289.0 L207.78255208333331 312.0 L192.21744791666666 312.0 L192.21744791666666 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="194.88411" y="308.0">2</text><path d=" M192.21744791666666 289.0 L207.78255208333331 289.0 L207.78255208333331 312.0 L192.21744791666666 312.0 L192.21744791666666 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M220.21744791666666 289.0 L235.78255208333331 289.0 L235.78255208333331 312.0 L220.21744791666666 312.0 L220.21744791666666 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="222.88411" y="308.0">3</text><path d=" M220.21744791666666 289.0 L235.78255208333331 289.0 L235.78255208333331 312.0 L220.21744791666666 312.0 L220.21744791666666 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M248.21744791666666 289.0 L263.7825520833333 289.0 L263.7825520833333 312.0 L248.21744791666666 312.0 L248.21744791666666 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="250.88411" y="308.0">4</text><path d=" M248.21744791666666 289.0 L263.7825520833333 289.0 L263.7825520833333 312.0 L248.21744791666666 312.0 L248.21744791666666 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M277.2174479166667 289.0 L292.78255208333337 289.0 L292.78255208333337 312.0 L277.2174479166667 312.0 L277.2174479166667 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="279.88412" y="308.0">5</text><path d=" M277.2174479166667 289.0 L292.78255208333337 289.0 L292.78255208333337 312.0 L277.2174479166667 312.0 L277.2174479166667 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M305.2174479166667 289.0 L320.78255208333337 289.0 L320.78255208333337 312.0 L305.2174479166667 312.0 L305.2174479166667 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="307.88412" y="308.0">6</text><path d=" M305.2174479166667 289.0 L320.78255208333337 289.0 L320.78255208333337 312.0 L305.2174479166667 312.0 L305.2174479166667 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M333.2174479166667 289.0 L348.78255208333337 289.0 L348.78255208333337 312.0 L333.2174479166667 312.0 L333.2174479166667 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="335.88412" y="308.0">7</text><path d=" M333.2174479166667 289.0 L348.78255208333337 289.0 L348.78255208333337 312.0 L333.2174479166667 312.0 L333.2174479166667 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M362.2174479166667 289.0 L377.78255208333337 289.0 L377.78255208333337 312.0 L362.2174479166667 312.0 L362.2174479166667 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="364.88412" y="308.0">8</text><path d=" M362.2174479166667 289.0 L377.78255208333337 289.0 L377.78255208333337 312.0 L362.2174479166667 312.0 L362.2174479166667 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M390.2174479166667 289.0 L405.78255208333337 289.0 L405.78255208333337 312.0 L390.2174479166667 312.0 L390.2174479166667 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="392.88412" y="308.0">9</text><path d=" M390.2174479166667 289.0 L405.78255208333337 289.0 L405.78255208333337 312.0 L390.2174479166667 312.0 L390.2174479166667 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M413.7682291666667 289.0 L438.23177083333337 289.0 L438.23177083333337 312.0 L413.7682291666667 312.0 L413.7682291666667 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="416.4349" y="308.0">10</text><path d=" M413.7682291666667 289.0 L438.23177083333337 289.0 L438.23177083333337 312.0 L413.7682291666667 312.0 L413.7682291666667 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M58.81966145833332 305.0 L173.24557495117188 305.0 L173.24557495117188 335.0 L58.81966145833332 335.0 L58.81966145833332 305.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="21" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="61.48633" y="330.0">X-Axis Title</text><path d=" M58.81966145833332 305.0 L173.24557495117188 305.0 L173.24557495117188 335.0 L58.81966145833332 335.0 L58.81966145833332 305.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M25.259765625 264.5 L46.152994791666664 264.5 L46.152994791666664 287.5 L25.259765625 287.5 L25.259765625 264.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="27.926432" y="283.5">-6</text><path d=" M25.259765625 264.5 L46.152994791666664 264.5 L46.152994791666664 287.5 L25.259765625 287.5 L25.259765625 264.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M25.259765625 244.5 L46.152994791666664 244.5 L46.152994791666664 267.5 L25.259765625 267.5 L25.259765625 244.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="27.926432" y="263.5">-4</text><path d=" M25.259765625 244.5 L46.152994791666664 244.5 L46.152994791666664 267.5 L25.259765625 267.5 L25.259765625 244.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M25.259765625 223.5 L46.152994791666664 223.5 L46.152994791666664 246.5 L25.259765625 246.5 L25.259765625 223.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="27.926432" y="242.5">-2</text><path d=" M25.259765625 223.5 L46.152994791666664 223.5 L46.152994791666664 246.5 L25.259765625 246.5 L25.259765625 223.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 203.5 L46.152994791666664 203.5 L46.152994791666664 226.5 L30.587890625 226.5 L30.587890625 203.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="33.25456" y="222.5">0</text><path d=" M30.587890625 203.5 L46.152994791666664 203.5 L46.152994791666664 226.5 L30.587890625 226.5 L30.587890625 203.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 183.5 L46.152994791666664 183.5 L46.152994791666664 206.5 L30.587890625 206.5 L30.587890625 183.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="33.25456" y="202.5">2</text><path d=" M30.587890625 183.5 L46.152994791666664 183.5 L46.152994791666664 206.5 L30.587890625 206.5 L30.587890625 183.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 163.5 L46.152994791666664 163.5 L46.152994791666664 186.5 L30.587890625 186.5 L30.587890625 163.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="33.25456" y="182.5">4</text><path d=" M30.587890625 163.5 L46.152994791666664 163.5 L46.152994791666664 186.5 L30.587890625 186.5 L30.587890625 163.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 143.5 L46.152994791666664 143.5 L46.152994791666664 166.5 L30.587890625 166.5 L30.587890625 143.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="33.25456" y="162.5">6</text><path d=" M30.587890625 143.5 L46.152994791666664 143.5 L46.152994791666664 166.5 L30.587890625 166.5 L30.587890625 143.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 122.5 L46.152994791666664 122.5 L46.152994791666664 145.5 L30.587890625 145.5 L30.587890625 122.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="33.25456" y="141.5">8</text><path d=" M30.587890625 122.5 L46.152994791666664 122.5 L46.152994791666664 145.5 L30.587890625 145.5 L30.587890625 122.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.689453125 102.5 L46.152994791666664 102.5 L46.152994791666664 125.5 L21.689453125 125.5 L21.689453125 102.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="24.35612" y="121.5">10</text><path d=" M21.689453125 102.5 L46.152994791666664 102.5 L46.152994791666664 125.5 L21.689453125 125.5 L21.689453125 102.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.689453125 82.5 L46.152994791666664 82.5 L46.152994791666664 105.5 L21.689453125 105.5 L21.689453125 82.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="24.35612" y="101.5">12</text><path d=" M21.689453125 82.5 L46.152994791666664 82.5 L46.152994791666664 105.5 L21.689453125 105.5 L21.689453125 82.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.689453125 62.5 L46.152994791666664 62.5 L46.152994791666664 85.5 L21.689453125 85.5 L21.689453125 62.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="24.35612" y="81.5">14</text><path d=" M21.689453125 62.5 L46.152994791666664 62.5 L46.152994791666664 85.5 L21.689453125 85.5 L21.689453125 62.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.689453125 42.5 L46.152994791666664 42.5 L46.152994791666664 65.5 L21.689453125 65.5 L21.689453125 42.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="24.35612" y="61.5">16</text><path d=" M21.689453125 42.5 L46.152994791666664 42.5 L46.152994791666664 65.5 L21.689453125 65.5 L21.689453125 42.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M37.00000000000001 138.42591349283856 L151.42591349283856 138.42591349283856 L151.42591349283856 168.42591349283856 L37.00000000000001 168.42591349283856 L37.00000000000001 138.42591349283856 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-131.42591349283856,205.42591349283856)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="21" style="fill-opacity:1.0;fill:#000000;" transform="matrix(-0.0,-1.0,1.0,0.0,-131.42591349283856,205.42591349283856)" x="39.666668" y="163.42592">Y-Axis Title</text><path d=" M37.00000000000001 138.42591349283856 L151.42591349283856 138.42591349283856 L151.42591349283856 168.42591349283856 L37.00000000000001 168.42591349283856 L37.00000000000001 138.42591349283856 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-131.42591349283856,205.42591349283856)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M459.3971354166667 180.5 L459.3971354166667 190.5" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#0080ff;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M454.3971354166667 185.5 L464.3971354166667 185.5" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#0080ff;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M474.3971354166667 174.0 L539.7591145833334 174.0 L539.7591145833334 197.0 L474.3971354166667 197.0 L474.3971354166667 174.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="477.0638" y="193.0">Series 1</text><path d=" M474.3971354166667 174.0 L539.7591145833334 174.0 L539.7591145833334 197.0 L474.3971354166667 197.0 L474.3971354166667 174.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/></g><g id="hotSpots" style="fill-opacity:0.01;fill:#FFFFFF;"/></svg> \ No newline at end of file
diff --git a/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/2dstock.svg b/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/2dstock.svg
index 85fb463..6048c5d 100644
--- a/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/2dstock.svg
+++ b/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/2dstock.svg
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="533.0" height="333.0"><g style="fill:none;stroke:none"><defs/><script><![CDATA[function BuildHelper(tag, attrList, text) {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="533.0" height="333.0"><g id="outerG" style="fill:none;stroke:none"><defs/><script><![CDATA[function BuildHelper(tag, attrList, text) {
this.tag = tag;
this.attrList = attrList;
this.text = text;
@@ -71,42 +71,82 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
}
}
- TM.show = function TooltiplManager_showTooltip(evt){
- var text = TM.getText(TM.getTitleElement(evt));
- x = evt.clientX;
- y = evt.clientY;
- if (typeof this.group == 'undefined'){
- this.height = 15;
- this.xPadding = 5;
- this.yPadding = -20;
- var mainSvg = evt.target.ownerDocument.documentElement;
- var off = mainSvg.currentTranslate;
- var scl = mainSvg.currentScale;
- this.group = new BuildHelper("g",
- {
- transform:"translate("+(((x+20))/scl)+","+(((y+20))/scl)+")"
- } );
- this.group.addToParent(mainSvg);
- this.rectangle = new BuildHelper("rect",
- {id:"test",
- x: 0,
- y: this.yPadding,
- height: this.height,
- classType: "tooltip"
- } );
- this.rectangle.addToParent(this.group.element);
- var textObj = new BuildHelper("text",
- {id:"tooltip",
- x: this.xPadding,
- y: (this.height/2+4+this.yPadding),
- classType: "tooltip text"
- },text);
- textObj.addToParent(this.group.element);
- var itemlength = textObj.element.getComputedTextLength();
- this.rectangle.element.setAttributeNS(null, "width", (itemlength+2*this.xPadding));
- }
- }
-
+ TM.show = function TooltiplManager_showTooltip(evt){
+ var text = TM.getText(TM.getTitleElement(evt));
+ x = evt.clientX;
+ y = evt.clientY;
+ update = true;
+ if (this.oldX != 'undefined'){
+ diffX = (x - this.oldX);
+ if (diffX < 0) diffX= diffX*(-1);
+ diffY = (y - this.oldY);
+ if (diffY < 0) diffY= diffY*(-1);
+ if ((diffY > 5) || (diffX > 5))
+ update = true;
+ }
+ if (update)
+ TM.remove();
+ if (typeof this.group == 'undefined'){
+ this.oldX = x;
+ this.oldY = y;
+ this.height = 15;
+ this.xPadding = 5;
+ this.yPadding = 20;
+ var mainSvg = evt.target.ownerDocument.documentElement;
+ var off = mainSvg.currentTranslate;
+ var scl = mainSvg.currentScale;
+ var adjustedX = (x-off.x)/scl;
+ var adjustedY = (y-off.y)/scl;
+ this.group = new BuildHelper("g",
+ {
+ opacity:0.8,
+ display: "inline",
+ transform:"translate("+(adjustedX + (10/scl))+","+(adjustedY + (10/scl))+")"
+ } );
+ this.group.addToParent(mainSvg);
+ this.rectangle = new BuildHelper("rect",
+ {id:"test",
+ x: 0,
+ y: 5,
+ transform:"scale("+(1/scl)+","+(1/scl)+")",
+ rx: 2,
+ ry: 2,
+ stroke: "black",
+ height: this.height,
+ classType: "tooltip"
+ } );
+ this.rectangle.addToParent(this.group.element);
+ var textObj = new BuildHelper("text",
+ {id:"tooltip",
+ x: this.xPadding,
+ y: (this.yPadding),
+ transform:"scale("+(1/scl)+","+(1/scl)+")",
+ classType: "tooltip text"
+ });
+ textObj.addToParent(this.group.element);
+ TM.setContent(textObj, text);
+ var outline = textObj.element.getBBox();
+ this.rectangle.element.setAttributeNS(null, "width", (outline.width+2*this.xPadding));
+ this.rectangle.element.setAttributeNS(null, "height", (outline.height+6));
+ }
+ }
+ TM.setContent = function TooltipManager_setContent(textElement, text){
+ var multiLine = text.split(/\\n/);
+ for (var x=0; x<multiLine.length; x++){
+ if (x == 0){
+ textObj = new BuildHelper("tspan",
+ {x: 5
+ },multiLine[x]);
+ }
+ else{
+ textObj = new BuildHelper("tspan",
+ {x: 5,
+ dy:17
+ },multiLine[x]);
+ }
+ textObj.addToParent(textElement.element);
+ }
+ }
TM.getTitleElement = function TM_getTitleElement(evt){
var elem = evt.currentTarget;
@@ -126,15 +166,18 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
return childs.item(x).nodeValue;
return "";
}
- function toggleVisibility(evt, id, compList){
+ function toggleLabelsVisibility(evt, id, compList, labelList){
var mainSvg = evt.target.ownerDocument;
for (i = 0; i < compList.length; i=i+1){
var comp = mainSvg.getElementById(id+'_'+compList[i]);
+ if ( comp == null ) continue;
var styleStr = comp.getAttribute("style");
- rVisibleExp=/visibility:visible/g;
- rHiddenExp=/visibility:hidden/g;
+ rVisibleExp=/visibility:[ ]*visible/g;
+ rInheritExp=/visibility:[ ]*inherit/g;
+ rHiddenExp=/visibility:[ ]*hidden/g;
results = styleStr.search(rVisibleExp);
- if (results == -1){
+ inResults = styleStr.search(rInheritExp);
+ if ((results == -1) && (inResults == -1)){
results = styleStr.search(rHiddenExp);
if (results == -1)
styleStr = styleStr + "visibility:hidden;";
@@ -142,10 +185,74 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
styleStr = styleStr.replace(rHiddenExp,"visibility:visible");
}
else{
+ if (inResults == -1){
styleStr = styleStr.replace(rVisibleExp,"visibility:hidden");
+ }else{
+ styleStr = styleStr.replace(rInheritExp,"visibility:hidden");
+ }
}
comp.setAttributeNS(null, "style", styleStr);
}
+ }
+ function toggleVisibility(evt, id, compList, labelList){
+ var mainSvg = evt.target.ownerDocument;
+ var isHidden = true;
+ for (i = 0; i < compList.length; i=i+1){
+ var comp = mainSvg.getElementById(id+'_'+compList[i]);
+ if ( comp == null ) continue;
+ var styleStr = comp.getAttribute("style");
+ rVisibleExp=/visibility:[ ]*visible/g;
+ rHiddenExp=/visibility:[ ]*hidden/g;
+ results = styleStr.search(rVisibleExp);
+ if (results == -1){
+ results = styleStr.search(rHiddenExp);
+ if (results == -1)
+ styleStr = styleStr + "visibility:hidden;";
+ else{
+ styleStr = styleStr.replace(rHiddenExp,"visibility:visible");
+ isHidden = false;
+ }
+ }
+ else{
+ styleStr = styleStr.replace(rVisibleExp,"visibility:hidden");
+ }
+ comp.setAttributeNS(null, "style", styleStr);
+ }
+ if (labelList != null){
+ for (i = 0; i < labelList.length; i=i+1){
+ var comp = mainSvg.getElementById(id+'_'+labelList[i]+'_g');
+ var styleStr = comp.getAttribute("style");
+ if (isHidden){
+ styleStr = styleStr + "visibility:hidden;";
+ toggleLabelVisibility(evt, id+'_'+labelList[i], 'inherit');
+ }else{
+ styleStr = styleStr.replace(rHiddenExp,"visibility:visible");
+ }
+ comp.setAttributeNS(null, "style", styleStr);
+ }
+ }
+ }
+ function toggleLabelVisibility(evt, id, property){
+ var mainSvg = evt.target.ownerDocument;
+ var comp = mainSvg.getElementById(id);
+ var styleStr = comp.getAttribute("style");
+ rVisibleExp=/visibility:[ ]*visible/g;
+ rInheritExp=/visibility:[ ]*inherit/g;
+ rHiddenExp=/visibility:[ ]*hidden/g;
+ results = styleStr.search(rVisibleExp);
+ inResults = styleStr.search(rInheritExp);
+ if ((results == -1) && (inResults == -1)){
+ results = styleStr.search(rHiddenExp);
+ if (results == -1)
+ styleStr = styleStr + "visibility:"+property+";";
+ }
+ else{
+ if (inResults == -1)
+ styleStr = styleStr.replace(rVisibleExp,"visibility:"+property);
+ else
+ styleStr = styleStr.replace(rInheritExp,"visibility:"+property);
+ }
+ comp.setAttributeNS(null, "style", styleStr);
}
function toHex(val)
{
@@ -162,51 +269,104 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
}
var oldCompId = null;
var oldCompList = null;
+ var fillToColor = new Array();
+ var strokeToColor = new Array();
function highlight(evt, id, compList){
- highlightElement(evt, oldCompId, oldCompList);
+ highlightElement(evt, oldCompId, oldCompList, false);
if (id != oldCompId){
- highlightElement(evt, id, compList);
+ highlightElement(evt, id, compList, true);
oldCompId = id;
oldCompList = compList;
}
else{
oldCompId = null;
oldCompList = null;
+ fillToColor = new Array();
+ strokeToColor = new Array();
}
}
- function highlightElement(evt, id, compList){
+ function highlightElement(evt, id, compList, highlight){
if ((id == null) || (compList == null)) return;
var mainSvg = evt.target.ownerDocument;
for (i = 0; i < compList.length; i=i+1){
var comp = mainSvg.getElementById(id+'_'+compList[i]);
+ if ( comp == null ) continue;
var styleStr = comp.getAttribute("style");
fillIndex = styleStr.search("fill:");
if (fillIndex != -1){
- styleStr = getNewStyle(styleStr, fillIndex, "fill:");
+ styleStr = getNewStyle(styleStr, fillIndex, "fill:", highlight, fillToColor, compList[i]);
}
strokeIndex = styleStr.search("stroke:");
if (strokeIndex != -1){
- styleStr = getNewStyle(styleStr, strokeIndex, "stroke:");
+ styleStr = getNewStyle(styleStr, strokeIndex, "stroke:", highlight, strokeToColor, compList[i]);
}
comp.setAttributeNS(null, "style", styleStr);
}
}
- function getNewStyle(style, index, styleAttr){
+ function getNewStyle(style, index, styleAttr, highlight, lookUpTable, id){
color = style.substring(index+styleAttr.length, style.length );
rgbIndex = color.search("rgb");
if (rgbIndex == -1){
hexColor = color.substring(1, 7);
- hc = getXorColor(hexColor);
+ hc = getHighlight(hexColor, highlight, lookUpTable, id);
return style.replace(styleAttr+"#"+hexColor,styleAttr+hc);
}
else{
bracketIndex = color.search("\\)");
color = color.substring(0, bracketIndex);
hexColor = getHexFromRGB(color);
- hc = getXorColor(hexColor);
+ hc = getHighlight(hexColor, highlight, lookUpTable, id);
return style.substring(0, index) + styleAttr+hc+ style.substring(index+bracketIndex+styleAttr.length+1, style.length);
}
}
+ function isIE(){
+ var agt=parent.navigator.userAgent.toLowerCase();
+ return (agt.indexOf("msie")!=-1);
+}
+ function resizeSVG(e){
+ if(isIE()){
+ var root=e.target.ownerDocument.documentElement;
+ var hotSpot = e.target.ownerDocument.getElementById('hotSpots');
+ var g = e.target.ownerDocument.getElementById('outerG');
+ var xScale = (innerWidth) / root.getAttribute('width');
+ var yScale = (innerHeight) / root.getAttribute('height');
+ g.setAttributeNS(null, 'transform', 'scale('+xScale+','+yScale+')');
+ hotSpot.setAttributeNS(null, 'transform', 'scale('+xScale+','+yScale+')');
+ }
+ }
+ function getHighlight(color, highlight, lookupTable, id){
+ if (!(highlight)){
+ color = lookupTable[id];
+ }
+ else{
+ lookupTable[id] = color;
+ }
+ r = color.substring(0, 2);
+ r = parseInt(r, 16);
+ g = color.substring(2, 4);
+ g = parseInt(g, 16);
+ b = color.substring(4, 6);
+ b = parseInt(b, 16);
+ var value = parseInt(r, 16);
+ if (highlight){
+ r = Math.ceil( (r + 255) / 2 );
+ g = Math.ceil( (g + 255) / 2 );
+ b = Math.ceil( (b + 255) / 2 );
+ }
+ rStr = r.toString(16);
+ gStr = g.toString(16);
+ bStr = b.toString(16);
+ while (rStr.length < 2){
+ rStr = "0"+rStr;
+ }
+ while (gStr.length < 2){
+ gStr = "0"+gStr;
+ }
+ while (bStr.length < 2){
+ bStr = "0"+bStr;
+ }
+return "#"+rStr+gStr+bStr;
+}
function getHexFromRGB(color){
findThem = /\d{1,3}/g;
listOfnum = color.match(findThem);
@@ -224,4 +384,4 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
}
return r+g+b;
}
-]]></script><style type="text/css"><![CDATA[.tooltip.text{ text-anchor:left;font-size:12pt;fill:black;}.tooltip{fill:rgb(244,245,235)}]]></style><path d=" M0.0 0.0 L533.0 0.0 L533.0 333.0 L0.0 333.0 L0.0 0.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M4.0 4.0 L149.36979166666666 4.0 L149.36979166666666 49.0 L4.0 49.0 L4.0 4.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,6.666666507720947,42.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M18.8125 -8.03125 L21.84375 -7.265625 Q20.890625 -3.53125 18.4140625 -1.5703125 Q15.9375 0.390625 12.359375 0.390625 Q8.65625 0.390625 6.3359375 -1.1171875 Q4.015625 -2.625 2.8046875 -5.484375 Q1.59375 -8.34375 1.59375 -11.625 Q1.59375 -15.203125 2.9609375 -17.8671875 Q4.328125 -20.53125 6.8515625 -21.9140625 Q9.375 -23.296875 12.40625 -23.296875 Q15.84375 -23.296875 18.1875 -21.546875 Q20.53125 -19.796875 21.453125 -16.625 L18.46875 -15.921875 Q17.671875 -18.421875 16.15625 -19.5625 Q14.640625 -20.703125 12.34375 -20.703125 Q9.703125 -20.703125 7.9296875 -19.4375 Q6.15625 -18.171875 5.4375 -16.0390625 Q4.71875 -13.90625 4.71875 -11.640625 Q4.71875 -8.71875 5.5703125 -6.5390625 Q6.421875 -4.359375 8.21875 -3.28125 Q10.015625 -2.203125 12.109375 -2.203125 Q14.65625 -2.203125 16.421875 -3.671875 Q18.1875 -5.140625 18.8125 -8.03125 Z"/><path d=" M25.21875 0.0 L25.21875 -22.90625 L28.03125 -22.90625 L28.03125 -14.6875 Q30.0 -16.96875 33.0 -16.96875 Q34.84375 -16.96875 36.203125 -16.2421875 Q37.5625 -15.515625 38.1484375 -14.234375 Q38.734375 -12.953125 38.734375 -10.515625 L38.734375 0.0 L35.921875 0.0 L35.921875 -10.515625 Q35.921875 -12.625 35.0078125 -13.5859375 Q34.09375 -14.546875 32.421875 -14.546875 Q31.171875 -14.546875 30.0703125 -13.8984375 Q28.96875 -13.25 28.5 -12.140625 Q28.03125 -11.03125 28.03125 -9.078125 L28.03125 0.0 L25.21875 0.0 Z"/><path d=" M53.84375 -2.046875 Q52.28125 -0.71875 50.8359375 -0.171875 Q49.390625 0.375 47.734375 0.375 Q45.0 0.375 43.53125 -0.9609375 Q42.0625 -2.296875 42.0625 -4.375 Q42.0625 -5.59375 42.6171875 -6.6015625 Q43.171875 -7.609375 44.0703125 -8.21875 Q44.96875 -8.828125 46.09375 -9.140625 Q46.921875 -9.359375 48.59375 -9.5625 Q52.0 -9.96875 53.609375 -10.53125 Q53.625 -11.109375 53.625 -11.265625 Q53.625 -12.984375 52.828125 -13.6875 Q51.75 -14.640625 49.625 -14.640625 Q47.640625 -14.640625 46.6953125 -13.9453125 Q45.75 -13.25 45.296875 -11.484375 L42.546875 -11.859375 Q42.921875 -13.625 43.78125 -14.7109375 Q44.640625 -15.796875 46.265625 -16.3828125 Q47.890625 -16.96875 50.03125 -16.96875 Q52.15625 -16.96875 53.484375 -16.46875 Q54.8125 -15.96875 55.4375 -15.2109375 Q56.0625 -14.453125 56.3125 -13.296875 Q56.453125 -12.578125 56.453125 -10.703125 L56.453125 -6.953125 Q56.453125 -3.03125 56.6328125 -1.9921875 Q56.8125 -0.953125 57.34375 0.0 L54.40625 0.0 Q53.96875 -0.875 53.84375 -2.046875 Z M53.609375 -8.328125 Q52.078125 -7.703125 49.015625 -7.265625 Q47.28125 -7.015625 46.5625 -6.703125 Q45.84375 -6.390625 45.453125 -5.7890625 Q45.0625 -5.1875 45.0625 -4.453125 Q45.0625 -3.328125 45.9140625 -2.578125 Q46.765625 -1.828125 48.40625 -1.828125 Q50.03125 -1.828125 51.296875 -2.5390625 Q52.5625 -3.25 53.15625 -4.484375 Q53.609375 -5.4375 53.609375 -7.296875 L53.609375 -8.328125 Z"/><path d=" M60.78125 0.0 L60.78125 -16.59375 L63.3125 -16.59375 L63.3125 -14.078125 Q64.28125 -15.84375 65.1015625 -16.40625 Q65.921875 -16.96875 66.90625 -16.96875 Q68.328125 -16.96875 69.796875 -16.0625 L68.828125 -13.453125 Q67.796875 -14.0625 66.765625 -14.0625 Q65.84375 -14.0625 65.109375 -13.5078125 Q64.375 -12.953125 64.0625 -11.96875 Q63.59375 -10.46875 63.59375 -8.6875 L63.59375 0.0 L60.78125 0.0 Z"/><path d=" M77.609375 -2.515625 L78.015625 -0.03125 Q76.828125 0.21875 75.890625 0.21875 Q74.359375 0.21875 73.515625 -0.265625 Q72.671875 -0.75 72.328125 -1.5390625 Q71.984375 -2.328125 71.984375 -4.859375 L71.984375 -14.40625 L69.921875 -14.40625 L69.921875 -16.59375 L71.984375 -16.59375 L71.984375 -20.703125 L74.78125 -22.390625 L74.78125 -16.59375 L77.609375 -16.59375 L77.609375 -14.40625 L74.78125 -14.40625 L74.78125 -4.703125 Q74.78125 -3.5 74.9296875 -3.15625 Q75.078125 -2.8125 75.4140625 -2.609375 Q75.75 -2.40625 76.375 -2.40625 Q76.84375 -2.40625 77.609375 -2.515625 Z"/><path d=" M86.546875 0.0 L86.546875 -20.203125 L79.0 -20.203125 L79.0 -22.90625 L97.15625 -22.90625 L97.15625 -20.203125 L89.578125 -20.203125 L89.578125 0.0 L86.546875 0.0 Z"/><path d=" M99.921875 -19.671875 L99.921875 -22.90625 L102.734375 -22.90625 L102.734375 -19.671875 L99.921875 -19.671875 Z M99.921875 0.0 L99.921875 -16.59375 L102.734375 -16.59375 L102.734375 0.0 L99.921875 0.0 Z"/><path d=" M113.15625 -2.515625 L113.5625 -0.03125 Q112.375 0.21875 111.4375 0.21875 Q109.90625 0.21875 109.0625 -0.265625 Q108.21875 -0.75 107.875 -1.5390625 Q107.53125 -2.328125 107.53125 -4.859375 L107.53125 -14.40625 L105.46875 -14.40625 L105.46875 -16.59375 L107.53125 -16.59375 L107.53125 -20.703125 L110.328125 -22.390625 L110.328125 -16.59375 L113.15625 -16.59375 L113.15625 -14.40625 L110.328125 -14.40625 L110.328125 -4.703125 Q110.328125 -3.5 110.4765625 -3.15625 Q110.625 -2.8125 110.9609375 -2.609375 Q111.296875 -2.40625 111.921875 -2.40625 Q112.390625 -2.40625 113.15625 -2.515625 Z"/><path d=" M115.84375 0.0 L115.84375 -22.90625 L118.65625 -22.90625 L118.65625 0.0 L115.84375 0.0 Z"/><path d=" M134.375 -5.34375 L137.28125 -4.984375 Q136.59375 -2.4375 134.734375 -1.03125 Q132.875 0.375 129.984375 0.375 Q126.34375 0.375 124.2109375 -1.8671875 Q122.078125 -4.109375 122.078125 -8.15625 Q122.078125 -12.34375 124.234375 -14.65625 Q126.390625 -16.96875 129.828125 -16.96875 Q133.15625 -16.96875 135.265625 -14.703125 Q137.375 -12.4375 137.375 -8.328125 Q137.375 -8.078125 137.359375 -7.578125 L124.984375 -7.578125 Q125.140625 -4.84375 126.53125 -3.390625 Q127.921875 -1.9375 130.0 -1.9375 Q131.546875 -1.9375 132.640625 -2.75 Q133.734375 -3.5625 134.375 -5.34375 Z M125.140625 -9.890625 L134.40625 -9.890625 Q134.21875 -11.984375 133.34375 -13.03125 Q132.0 -14.65625 129.859375 -14.65625 Q127.921875 -14.65625 126.6015625 -13.359375 Q125.28125 -12.0625 125.140625 -9.890625 Z"/></g></g><path d=" M4.0 4.0 L149.36979166666666 4.0 L149.36979166666666 49.0 L4.0 49.0 L4.0 4.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M63.37239583333333 54.0 L436.73046875 54.0 L436.73046875 277.3333333333333 L63.37239583333333 277.3333333333333 L63.37239583333333 54.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M63.37239583333333 283.0 L435.73046875 283.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M63.0 278.0 L63.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M249.0 278.0 L249.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M435.0 278.0 L435.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M63.37239583333332 305.0 L171.87701416015625 305.0 L171.87701416015625 335.0 L63.37239583333332 335.0 L63.37239583333332 305.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,66.0390625,330.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.09375 0.0 L5.90625 -7.828125 L0.78125 -15.03125 L3.140625 -15.03125 L5.875 -11.171875 Q6.734375 -9.984375 7.078125 -9.328125 Q7.59375 -10.15625 8.28125 -11.046875 L11.296875 -15.03125 L13.46875 -15.03125 L8.1875 -7.953125 L13.875 0.0 L11.40625 0.0 L7.625 -5.359375 Q7.3125 -5.828125 6.96875 -6.375 Q6.46875 -5.546875 6.25 -5.234375 L2.484375 0.0 L0.09375 0.0 Z"/><path d=" M14.88714599609375 -4.515625 L14.88714599609375 -6.375 L20.55902099609375 -6.375 L20.55902099609375 -4.515625 L14.88714599609375 -4.515625 Z"/><path d=" M21.28125 0.0 L27.0625 -15.03125 L29.203125 -15.03125 L35.34375 0.0 L33.078125 0.0 L31.328125 -4.546875 L25.046875 -4.546875 L23.390625 0.0 L21.28125 0.0 Z M25.625 -6.171875 L30.71875 -6.171875 L29.140625 -10.34375 Q28.421875 -12.234375 28.078125 -13.453125 Q27.796875 -12.0 27.265625 -10.578125 L25.625 -6.171875 Z"/><path d=" M35.68402099609375 0.0 L39.65277099609375 -5.65625 L35.98089599609375 -10.890625 L38.29339599609375 -10.890625 L39.96527099609375 -8.34375 Q40.43402099609375 -7.609375 40.71527099609375 -7.109375 Q41.16839599609375 -7.796875 41.54339599609375 -8.3125 L43.38714599609375 -10.890625 L45.59027099609375 -10.890625 L41.82464599609375 -5.765625 L45.87152099609375 0.0 L43.60589599609375 0.0 L41.37152099609375 -3.390625 L40.77777099609375 -4.296875 L37.91839599609375 0.0 L35.68402099609375 0.0 Z"/><path d=" M47.57464599609375 -12.90625 L47.57464599609375 -15.03125 L49.41839599609375 -15.03125 L49.41839599609375 -12.90625 L47.57464599609375 -12.90625 Z M47.57464599609375 0.0 L47.57464599609375 -10.890625 L49.41839599609375 -10.890625 L49.41839599609375 0.0 L47.57464599609375 0.0 Z"/><path d=" M51.559600830078125 -3.25 L53.387725830078125 -3.53125 Q53.543975830078125 -2.4375 54.247100830078125 -1.8515625 Q54.950225830078125 -1.265625 56.215850830078125 -1.265625 Q57.481475830078125 -1.265625 58.098663330078125 -1.7890625 Q58.715850830078125 -2.3125 58.715850830078125 -3.0 Q58.715850830078125 -3.625 58.168975830078125 -3.984375 Q57.793975830078125 -4.234375 56.278350830078125 -4.609375 Q54.247100830078125 -5.125 53.465850830078125 -5.5 Q52.684600830078125 -5.875 52.278350830078125 -6.5390625 Q51.872100830078125 -7.203125 51.872100830078125 -8.0 Q51.872100830078125 -8.71875 52.208038330078125 -9.34375 Q52.543975830078125 -9.96875 53.106475830078125 -10.375 Q53.543975830078125 -10.6875 54.286163330078125 -10.9140625 Q55.028350830078125 -11.140625 55.887725830078125 -11.140625 Q57.168975830078125 -11.140625 58.137725830078125 -10.765625 Q59.106475830078125 -10.390625 59.567413330078125 -9.765625 Q60.028350830078125 -9.140625 60.200225830078125 -8.078125 L58.387725830078125 -7.828125 Q58.278350830078125 -8.671875 57.684600830078125 -9.1484375 Q57.090850830078125 -9.625 56.012725830078125 -9.625 Q54.747100830078125 -9.625 54.200225830078125 -9.203125 Q53.653350830078125 -8.78125 53.653350830078125 -8.21875 Q53.653350830078125 -7.859375 53.887725830078125 -7.5625 Q54.106475830078125 -7.265625 54.590850830078125 -7.078125 Q54.872100830078125 -6.96875 56.215850830078125 -6.609375 Q58.184600830078125 -6.078125 58.958038330078125 -5.75 Q59.731475830078125 -5.421875 60.168975830078125 -4.78125 Q60.606475830078125 -4.140625 60.606475830078125 -3.203125 Q60.606475830078125 -2.28125 60.067413330078125 -1.4609375 Q59.528350830078125 -0.640625 58.512725830078125 -0.1953125 Q57.497100830078125 0.25 56.215850830078125 0.25 Q54.090850830078125 0.25 52.981475830078125 -0.6328125 Q51.872100830078125 -1.515625 51.559600830078125 -3.25 Z"/><path d=" M67.01272583007812 0.0 L67.01272583007812 -13.265625 L62.075225830078125 -13.265625 L62.075225830078125 -15.03125 L73.98147583007812 -15.03125 L73.98147583007812 -13.265625 L69.01272583007812 -13.265625 L69.01272583007812 0.0 L67.01272583007812 0.0 Z"/><path d=" M75.984375 -12.90625 L75.984375 -15.03125 L77.828125 -15.03125 L77.828125 -12.90625 L75.984375 -12.90625 Z M75.984375 0.0 L75.984375 -10.890625 L77.828125 -10.890625 L77.828125 0.0 L75.984375 0.0 Z"/><path d=" M84.75057983398438 -1.65625 L85.01620483398438 -0.015625 Q84.23495483398438 0.140625 83.60995483398438 0.140625 Q82.60995483398438 0.140625 82.05526733398438 -0.1796875 Q81.50057983398438 -0.5 81.27401733398438 -1.015625 Q81.04745483398438 -1.53125 81.04745483398438 -3.1875 L81.04745483398438 -9.453125 L79.70370483398438 -9.453125 L79.70370483398438 -10.890625 L81.04745483398438 -10.890625 L81.04745483398438 -13.59375 L82.89120483398438 -14.6875 L82.89120483398438 -10.890625 L84.75057983398438 -10.890625 L84.75057983398438 -9.453125 L82.89120483398438 -9.453125 L82.89120483398438 -3.09375 Q82.89120483398438 -2.296875 82.98495483398438 -2.0703125 Q83.07870483398438 -1.84375 83.29745483398438 -1.7109375 Q83.51620483398438 -1.578125 83.93807983398438 -1.578125 Q84.23495483398438 -1.578125 84.75057983398438 -1.65625 Z"/><path d=" M86.59375 0.0 L86.59375 -15.03125 L88.4375 -15.03125 L88.4375 0.0 L86.59375 0.0 Z"/><path d=" M98.82870483398438 -3.5 L100.73495483398438 -3.265625 Q100.28182983398438 -1.59375 99.06307983398438 -0.671875 Q97.84432983398438 0.25 95.93807983398438 0.25 Q93.54745483398438 0.25 92.14901733398438 -1.2265625 Q90.75057983398438 -2.703125 90.75057983398438 -5.359375 Q90.75057983398438 -8.09375 92.16464233398438 -9.6171875 Q93.57870483398438 -11.140625 95.84432983398438 -11.140625 Q98.03182983398438 -11.140625 99.41464233398438 -9.6484375 Q100.79745483398438 -8.15625 100.79745483398438 -5.46875 Q100.79745483398438 -5.296875 100.78182983398438 -4.96875 L92.65682983398438 -4.96875 Q92.76620483398438 -3.171875 93.68026733398438 -2.21875 Q94.59432983398438 -1.265625 95.95370483398438 -1.265625 Q96.96932983398438 -1.265625 97.68807983398438 -1.8046875 Q98.40682983398438 -2.34375 98.82870483398438 -3.5 Z M92.76620483398438 -6.484375 L98.84432983398438 -6.484375 Q98.71932983398438 -7.859375 98.14120483398438 -8.546875 Q97.26620483398438 -9.625 95.85995483398438 -9.625 Q94.59432983398438 -9.625 93.72714233398438 -8.7734375 Q92.85995483398438 -7.921875 92.76620483398438 -6.484375 Z"/></g></g><path d=" M63.37239583333332 305.0 L171.87701416015625 305.0 L171.87701416015625 335.0 L63.37239583333332 335.0 L63.37239583333332 305.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M56.705729166666664 276.3333333333333 L56.705729166666664 54.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M51.705729166666664 276.0 L61.705729166666664 276.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M51.705729166666664 256.0 L61.705729166666664 256.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M51.705729166666664 235.0 L61.705729166666664 235.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M51.705729166666664 215.0 L61.705729166666664 215.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M51.705729166666664 195.0 L61.705729166666664 195.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M51.705729166666664 175.0 L61.705729166666664 175.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M51.705729166666664 155.0 L61.705729166666664 155.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M51.705729166666664 134.0 L61.705729166666664 134.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M51.705729166666664 114.0 L61.705729166666664 114.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M51.705729166666664 94.0 L61.705729166666664 94.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M51.705729166666664 74.0 L61.705729166666664 74.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M51.705729166666664 54.0 L61.705729166666664 54.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M37.00000000000001 132.50461832682294 L145.50461832682294 132.50461832682294 L145.50461832682294 162.50461832682294 L37.00000000000001 162.50461832682294 L37.00000000000001 132.50461832682294 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-125.50461832682294,199.50461832682294)" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(-0.0,-1.0,1.0,0.0,32.000005086263,159.8379503885905)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.859375 0.0 L5.859375 -6.375 L0.0625 -15.03125 L2.484375 -15.03125 L5.4375 -10.5 Q6.265625 -9.234375 6.96875 -7.953125 Q7.65625 -9.140625 8.609375 -10.609375 L11.53125 -15.03125 L13.84375 -15.03125 L7.84375 -6.375 L7.84375 0.0 L5.859375 0.0 Z"/><path d=" M14.88714599609375 -4.515625 L14.88714599609375 -6.375 L20.55902099609375 -6.375 L20.55902099609375 -4.515625 L14.88714599609375 -4.515625 Z"/><path d=" M21.28125 0.0 L27.0625 -15.03125 L29.203125 -15.03125 L35.34375 0.0 L33.078125 0.0 L31.328125 -4.546875 L25.046875 -4.546875 L23.390625 0.0 L21.28125 0.0 Z M25.625 -6.171875 L30.71875 -6.171875 L29.140625 -10.34375 Q28.421875 -12.234375 28.078125 -13.453125 Q27.796875 -12.0 27.265625 -10.578125 L25.625 -6.171875 Z"/><path d=" M35.68402099609375 0.0 L39.65277099609375 -5.65625 L35.98089599609375 -10.890625 L38.29339599609375 -10.890625 L39.96527099609375 -8.34375 Q40.43402099609375 -7.609375 40.71527099609375 -7.109375 Q41.16839599609375 -7.796875 41.54339599609375 -8.3125 L43.38714599609375 -10.890625 L45.59027099609375 -10.890625 L41.82464599609375 -5.765625 L45.87152099609375 0.0 L43.60589599609375 0.0 L41.37152099609375 -3.390625 L40.77777099609375 -4.296875 L37.91839599609375 0.0 L35.68402099609375 0.0 Z"/><path d=" M47.57464599609375 -12.90625 L47.57464599609375 -15.03125 L49.41839599609375 -15.03125 L49.41839599609375 -12.90625 L47.57464599609375 -12.90625 Z M47.57464599609375 0.0 L47.57464599609375 -10.890625 L49.41839599609375 -10.890625 L49.41839599609375 0.0 L47.57464599609375 0.0 Z"/><path d=" M51.559600830078125 -3.25 L53.387725830078125 -3.53125 Q53.543975830078125 -2.4375 54.247100830078125 -1.8515625 Q54.950225830078125 -1.265625 56.215850830078125 -1.265625 Q57.481475830078125 -1.265625 58.098663330078125 -1.7890625 Q58.715850830078125 -2.3125 58.715850830078125 -3.0 Q58.715850830078125 -3.625 58.168975830078125 -3.984375 Q57.793975830078125 -4.234375 56.278350830078125 -4.609375 Q54.247100830078125 -5.125 53.465850830078125 -5.5 Q52.684600830078125 -5.875 52.278350830078125 -6.5390625 Q51.872100830078125 -7.203125 51.872100830078125 -8.0 Q51.872100830078125 -8.71875 52.208038330078125 -9.34375 Q52.543975830078125 -9.96875 53.106475830078125 -10.375 Q53.543975830078125 -10.6875 54.286163330078125 -10.9140625 Q55.028350830078125 -11.140625 55.887725830078125 -11.140625 Q57.168975830078125 -11.140625 58.137725830078125 -10.765625 Q59.106475830078125 -10.390625 59.567413330078125 -9.765625 Q60.028350830078125 -9.140625 60.200225830078125 -8.078125 L58.387725830078125 -7.828125 Q58.278350830078125 -8.671875 57.684600830078125 -9.1484375 Q57.090850830078125 -9.625 56.012725830078125 -9.625 Q54.747100830078125 -9.625 54.200225830078125 -9.203125 Q53.653350830078125 -8.78125 53.653350830078125 -8.21875 Q53.653350830078125 -7.859375 53.887725830078125 -7.5625 Q54.106475830078125 -7.265625 54.590850830078125 -7.078125 Q54.872100830078125 -6.96875 56.215850830078125 -6.609375 Q58.184600830078125 -6.078125 58.958038330078125 -5.75 Q59.731475830078125 -5.421875 60.168975830078125 -4.78125 Q60.606475830078125 -4.140625 60.606475830078125 -3.203125 Q60.606475830078125 -2.28125 60.067413330078125 -1.4609375 Q59.528350830078125 -0.640625 58.512725830078125 -0.1953125 Q57.497100830078125 0.25 56.215850830078125 0.25 Q54.090850830078125 0.25 52.981475830078125 -0.6328125 Q51.872100830078125 -1.515625 51.559600830078125 -3.25 Z"/><path d=" M67.01272583007812 0.0 L67.01272583007812 -13.265625 L62.075225830078125 -13.265625 L62.075225830078125 -15.03125 L73.98147583007812 -15.03125 L73.98147583007812 -13.265625 L69.01272583007812 -13.265625 L69.01272583007812 0.0 L67.01272583007812 0.0 Z"/><path d=" M75.984375 -12.90625 L75.984375 -15.03125 L77.828125 -15.03125 L77.828125 -12.90625 L75.984375 -12.90625 Z M75.984375 0.0 L75.984375 -10.890625 L77.828125 -10.890625 L77.828125 0.0 L75.984375 0.0 Z"/><path d=" M84.75057983398438 -1.65625 L85.01620483398438 -0.015625 Q84.23495483398438 0.140625 83.60995483398438 0.140625 Q82.60995483398438 0.140625 82.05526733398438 -0.1796875 Q81.50057983398438 -0.5 81.27401733398438 -1.015625 Q81.04745483398438 -1.53125 81.04745483398438 -3.1875 L81.04745483398438 -9.453125 L79.70370483398438 -9.453125 L79.70370483398438 -10.890625 L81.04745483398438 -10.890625 L81.04745483398438 -13.59375 L82.89120483398438 -14.6875 L82.89120483398438 -10.890625 L84.75057983398438 -10.890625 L84.75057983398438 -9.453125 L82.89120483398438 -9.453125 L82.89120483398438 -3.09375 Q82.89120483398438 -2.296875 82.98495483398438 -2.0703125 Q83.07870483398438 -1.84375 83.29745483398438 -1.7109375 Q83.51620483398438 -1.578125 83.93807983398438 -1.578125 Q84.23495483398438 -1.578125 84.75057983398438 -1.65625 Z"/><path d=" M86.59375 0.0 L86.59375 -15.03125 L88.4375 -15.03125 L88.4375 0.0 L86.59375 0.0 Z"/><path d=" M98.82870483398438 -3.5 L100.73495483398438 -3.265625 Q100.28182983398438 -1.59375 99.06307983398438 -0.671875 Q97.84432983398438 0.25 95.93807983398438 0.25 Q93.54745483398438 0.25 92.14901733398438 -1.2265625 Q90.75057983398438 -2.703125 90.75057983398438 -5.359375 Q90.75057983398438 -8.09375 92.16464233398438 -9.6171875 Q93.57870483398438 -11.140625 95.84432983398438 -11.140625 Q98.03182983398438 -11.140625 99.41464233398438 -9.6484375 Q100.79745483398438 -8.15625 100.79745483398438 -5.46875 Q100.79745483398438 -5.296875 100.78182983398438 -4.96875 L92.65682983398438 -4.96875 Q92.76620483398438 -3.171875 93.68026733398438 -2.21875 Q94.59432983398438 -1.265625 95.95370483398438 -1.265625 Q96.96932983398438 -1.265625 97.68807983398438 -1.8046875 Q98.40682983398438 -2.34375 98.82870483398438 -3.5 Z M92.76620483398438 -6.484375 L98.84432983398438 -6.484375 Q98.71932983398438 -7.859375 98.14120483398438 -8.546875 Q97.26620483398438 -9.625 95.85995483398438 -9.625 Q94.59432983398438 -9.625 93.72714233398438 -8.7734375 Q92.85995483398438 -7.921875 92.76620483398438 -6.484375 Z"/></g></g><path d=" M37.00000000000001 132.50461832682294 L145.50461832682294 132.50461832682294 L145.50461832682294 162.50461832682294 L37.00000000000001 162.50461832682294 L37.00000000000001 132.50461832682294 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-125.50461832682294,199.50461832682294)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M156.0 223.7818181818182 L156.0 138.89090909090922" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M156.0 94.4242424242426 L156.0 62.08484848484872" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M94.0 94.0 L94.0 138.0 L217.0 138.0 L217.0 94.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:0.0;fill:#ffffff;"/><path d=" M94.0 94.0 L94.0 138.0 L217.0 138.0 L217.0 94.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M342.0 151.01818181818192 L342.0 138.89090909090922" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M342.0 110.59393939393956 L342.0 106.5515151515153" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M280.0 138.0 L280.0 110.0 L403.0 110.0 L403.0 138.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M280.0 138.0 L280.0 110.0 L403.0 110.0 L403.0 138.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M111.83430989583334 289.0 L200.3447265625 289.0 L200.3447265625 312.0 L111.83430989583334 312.0 L111.83430989583334 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,114.5009765625,308.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.671875 -5.65625 Q0.671875 -7.6875 1.0859375 -8.921875 Q1.5 -10.15625 2.328125 -10.828125 Q3.15625 -11.5 4.40625 -11.5 Q5.328125 -11.5 6.0234375 -11.1328125 Q6.71875 -10.765625 7.171875 -10.0625 Q7.625 -9.359375 7.8828125 -8.359375 Q8.140625 -7.359375 8.140625 -5.65625 Q8.140625 -3.640625 7.7265625 -2.3984375 Q7.3125 -1.15625 6.484375 -0.4765625 Q5.65625 0.203125 4.40625 0.203125 Q2.75 0.203125 1.796875 -1.0 Q0.671875 -2.421875 0.671875 -5.65625 Z M2.109375 -5.65625 Q2.109375 -2.828125 2.7734375 -1.8984375 Q3.4375 -0.96875 4.40625 -0.96875 Q5.375 -0.96875 6.03125 -1.90625 Q6.6875 -2.84375 6.6875 -5.65625 Q6.6875 -8.484375 6.03125 -9.4140625 Q5.375 -10.34375 4.390625 -10.34375 Q3.421875 -10.34375 2.84375 -9.515625 Q2.109375 -8.46875 2.109375 -5.65625 Z"/><path d=" M14.8671875 0.0 L13.4609375 0.0 L13.4609375 -8.96875 Q12.9453125 -8.484375 12.125 -8.0 Q11.3046875 -7.515625 10.6484375 -7.265625 L10.6484375 -8.625 Q11.8203125 -9.1875 12.703125 -9.9765625 Q13.5859375 -10.765625 13.9609375 -11.5 L14.8671875 -11.5 L14.8671875 0.0 Z"/><path d=" M18.3125 -3.4375 L18.3125 -4.859375 L22.625 -4.859375 L22.625 -3.4375 L18.3125 -3.4375 Z"/><path d=" M31.1875 -1.359375 L31.1875 0.0 L23.609375 0.0 Q23.59375 -0.515625 23.78125 -0.984375 Q24.0625 -1.75 24.703125 -2.5 Q25.34375 -3.25 26.546875 -4.234375 Q28.40625 -5.765625 29.0625 -6.6640625 Q29.71875 -7.5625 29.71875 -8.359375 Q29.71875 -9.1875 29.125 -9.765625 Q28.53125 -10.34375 27.5625 -10.34375 Q26.546875 -10.34375 25.9375 -9.734375 Q25.328125 -9.125 25.328125 -8.046875 L23.875 -8.1875 Q24.03125 -9.8125 25.0 -10.65625 Q25.96875 -11.5 27.59375 -11.5 Q29.25 -11.5 30.2109375 -10.5859375 Q31.171875 -9.671875 31.171875 -8.328125 Q31.171875 -7.640625 30.890625 -6.9765625 Q30.609375 -6.3125 29.953125 -5.578125 Q29.296875 -4.84375 27.78125 -3.5625 Q26.515625 -2.5 26.15625 -2.1171875 Q25.796875 -1.734375 25.5625 -1.359375 L31.1875 -1.359375 Z"/><path d=" M32.6953125 -3.0 L34.1640625 -3.125 Q34.3359375 -2.046875 34.9296875 -1.5078125 Q35.5234375 -0.96875 36.3671875 -0.96875 Q37.3828125 -0.96875 38.0859375 -1.734375 Q38.7890625 -2.5 38.7890625 -3.765625 Q38.7890625 -4.96875 38.1171875 -5.6640625 Q37.4453125 -6.359375 36.3515625 -6.359375 Q35.6640625 -6.359375 35.1171875 -6.046875 Q34.5703125 -5.734375 34.2578125 -5.25 L32.9453125 -5.421875 L34.0546875 -11.296875 L39.7421875 -11.296875 L39.7421875 -9.953125 L35.1796875 -9.953125 L34.5546875 -6.875 Q35.5859375 -7.59375 36.7265625 -7.59375 Q38.2265625 -7.59375 39.2578125 -6.5546875 Q40.2890625 -5.515625 40.2890625 -3.890625 Q40.2890625 -2.328125 39.3828125 -1.203125 Q38.2734375 0.203125 36.3671875 0.203125 Q34.8046875 0.203125 33.8203125 -0.6796875 Q32.8359375 -1.5625 32.6953125 -3.0 Z"/><path d=" M41.4375 -3.4375 L41.4375 -4.859375 L45.75 -4.859375 L45.75 -3.4375 L41.4375 -3.4375 Z"/><path d=" M54.3125 -1.359375 L54.3125 0.0 L46.734375 0.0 Q46.71875 -0.515625 46.90625 -0.984375 Q47.1875 -1.75 47.828125 -2.5 Q48.46875 -3.25 49.671875 -4.234375 Q51.53125 -5.765625 52.1875 -6.6640625 Q52.84375 -7.5625 52.84375 -8.359375 Q52.84375 -9.1875 52.25 -9.765625 Q51.65625 -10.34375 50.6875 -10.34375 Q49.671875 -10.34375 49.0625 -9.734375 Q48.453125 -9.125 48.453125 -8.046875 L47.0 -8.1875 Q47.15625 -9.8125 48.125 -10.65625 Q49.09375 -11.5 50.71875 -11.5 Q52.375 -11.5 53.3359375 -10.5859375 Q54.296875 -9.671875 54.296875 -8.328125 Q54.296875 -7.640625 54.015625 -6.9765625 Q53.734375 -6.3125 53.078125 -5.578125 Q52.421875 -4.84375 50.90625 -3.5625 Q49.640625 -2.5 49.28125 -2.1171875 Q48.921875 -1.734375 48.6875 -1.359375 L54.3125 -1.359375 Z"/><path d=" M55.8203125 -5.65625 Q55.8203125 -7.6875 56.234375 -8.921875 Q56.6484375 -10.15625 57.4765625 -10.828125 Q58.3046875 -11.5 59.5546875 -11.5 Q60.4765625 -11.5 61.171875 -11.1328125 Q61.8671875 -10.765625 62.3203125 -10.0625 Q62.7734375 -9.359375 63.03125 -8.359375 Q63.2890625 -7.359375 63.2890625 -5.65625 Q63.2890625 -3.640625 62.875 -2.3984375 Q62.4609375 -1.15625 61.6328125 -0.4765625 Q60.8046875 0.203125 59.5546875 0.203125 Q57.8984375 0.203125 56.9453125 -1.0 Q55.8203125 -2.421875 55.8203125 -5.65625 Z M57.2578125 -5.65625 Q57.2578125 -2.828125 57.921875 -1.8984375 Q58.5859375 -0.96875 59.5546875 -0.96875 Q60.5234375 -0.96875 61.1796875 -1.90625 Q61.8359375 -2.84375 61.8359375 -5.65625 Q61.8359375 -8.484375 61.1796875 -9.4140625 Q60.5234375 -10.34375 59.5390625 -10.34375 Q58.5703125 -10.34375 57.9921875 -9.515625 Q57.2578125 -8.46875 57.2578125 -5.65625 Z"/><path d=" M64.71875 -5.65625 Q64.71875 -7.6875 65.1328125 -8.921875 Q65.546875 -10.15625 66.375 -10.828125 Q67.203125 -11.5 68.453125 -11.5 Q69.375 -11.5 70.0703125 -11.1328125 Q70.765625 -10.765625 71.21875 -10.0625 Q71.671875 -9.359375 71.9296875 -8.359375 Q72.1875 -7.359375 72.1875 -5.65625 Q72.1875 -3.640625 71.7734375 -2.3984375 Q71.359375 -1.15625 70.53125 -0.4765625 Q69.703125 0.203125 68.453125 0.203125 Q66.796875 0.203125 65.84375 -1.0 Q64.71875 -2.421875 64.71875 -5.65625 Z M66.15625 -5.65625 Q66.15625 -2.828125 66.8203125 -1.8984375 Q67.484375 -0.96875 68.453125 -0.96875 Q69.421875 -0.96875 70.078125 -1.90625 Q70.734375 -2.84375 70.734375 -5.65625 Q70.734375 -8.484375 70.078125 -9.4140625 Q69.421875 -10.34375 68.4375 -10.34375 Q67.46875 -10.34375 66.890625 -9.515625 Q66.15625 -8.46875 66.15625 -5.65625 Z"/><path d=" M73.6171875 -3.0 L75.0859375 -3.125 Q75.2578125 -2.046875 75.8515625 -1.5078125 Q76.4453125 -0.96875 77.2890625 -0.96875 Q78.3046875 -0.96875 79.0078125 -1.734375 Q79.7109375 -2.5 79.7109375 -3.765625 Q79.7109375 -4.96875 79.0390625 -5.6640625 Q78.3671875 -6.359375 77.2734375 -6.359375 Q76.5859375 -6.359375 76.0390625 -6.046875 Q75.4921875 -5.734375 75.1796875 -5.25 L73.8671875 -5.421875 L74.9765625 -11.296875 L80.6640625 -11.296875 L80.6640625 -9.953125 L76.1015625 -9.953125 L75.4765625 -6.875 Q76.5078125 -7.59375 77.6484375 -7.59375 Q79.1484375 -7.59375 80.1796875 -6.5546875 Q81.2109375 -5.515625 81.2109375 -3.890625 Q81.2109375 -2.328125 80.3046875 -1.203125 Q79.1953125 0.203125 77.2890625 0.203125 Q75.7265625 0.203125 74.7421875 -0.6796875 Q73.7578125 -1.5625 73.6171875 -3.0 Z"/></g></g><path d=" M111.83430989583334 289.0 L200.3447265625 289.0 L200.3447265625 312.0 L111.83430989583334 312.0 L111.83430989583334 289.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M297.83430989583337 289.0 L386.34472656250006 289.0 L386.34472656250006 312.0 L297.83430989583337 312.0 L297.83430989583337 289.0 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,300.5009765625,308.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.671875 -5.65625 Q0.671875 -7.6875 1.0859375 -8.921875 Q1.5 -10.15625 2.328125 -10.828125 Q3.15625 -11.5 4.40625 -11.5 Q5.328125 -11.5 6.0234375 -11.1328125 Q6.71875 -10.765625 7.171875 -10.0625 Q7.625 -9.359375 7.8828125 -8.359375 Q8.140625 -7.359375 8.140625 -5.65625 Q8.140625 -3.640625 7.7265625 -2.3984375 Q7.3125 -1.15625 6.484375 -0.4765625 Q5.65625 0.203125 4.40625 0.203125 Q2.75 0.203125 1.796875 -1.0 Q0.671875 -2.421875 0.671875 -5.65625 Z M2.109375 -5.65625 Q2.109375 -2.828125 2.7734375 -1.8984375 Q3.4375 -0.96875 4.40625 -0.96875 Q5.375 -0.96875 6.03125 -1.90625 Q6.6875 -2.84375 6.6875 -5.65625 Q6.6875 -8.484375 6.03125 -9.4140625 Q5.375 -10.34375 4.390625 -10.34375 Q3.421875 -10.34375 2.84375 -9.515625 Q2.109375 -8.46875 2.109375 -5.65625 Z"/><path d=" M14.8671875 0.0 L13.4609375 0.0 L13.4609375 -8.96875 Q12.9453125 -8.484375 12.125 -8.0 Q11.3046875 -7.515625 10.6484375 -7.265625 L10.6484375 -8.625 Q11.8203125 -9.1875 12.703125 -9.9765625 Q13.5859375 -10.765625 13.9609375 -11.5 L14.8671875 -11.5 L14.8671875 0.0 Z"/><path d=" M18.3125 -3.4375 L18.3125 -4.859375 L22.625 -4.859375 L22.625 -3.4375 L18.3125 -3.4375 Z"/><path d=" M31.1875 -1.359375 L31.1875 0.0 L23.609375 0.0 Q23.59375 -0.515625 23.78125 -0.984375 Q24.0625 -1.75 24.703125 -2.5 Q25.34375 -3.25 26.546875 -4.234375 Q28.40625 -5.765625 29.0625 -6.6640625 Q29.71875 -7.5625 29.71875 -8.359375 Q29.71875 -9.1875 29.125 -9.765625 Q28.53125 -10.34375 27.5625 -10.34375 Q26.546875 -10.34375 25.9375 -9.734375 Q25.328125 -9.125 25.328125 -8.046875 L23.875 -8.1875 Q24.03125 -9.8125 25.0 -10.65625 Q25.96875 -11.5 27.59375 -11.5 Q29.25 -11.5 30.2109375 -10.5859375 Q31.171875 -9.671875 31.171875 -8.328125 Q31.171875 -7.640625 30.890625 -6.9765625 Q30.609375 -6.3125 29.953125 -5.578125 Q29.296875 -4.84375 27.78125 -3.5625 Q26.515625 -2.5 26.15625 -2.1171875 Q25.796875 -1.734375 25.5625 -1.359375 L31.1875 -1.359375 Z"/><path d=" M39.9921875 -8.65625 L38.5859375 -8.546875 Q38.3984375 -9.375 38.0546875 -9.75 Q37.4921875 -10.34375 36.6484375 -10.34375 Q35.9765625 -10.34375 35.4765625 -9.96875 Q34.8046875 -9.484375 34.421875 -8.5546875 Q34.0390625 -7.625 34.0234375 -5.90625 Q34.5390625 -6.6875 35.2734375 -7.0625 Q36.0078125 -7.4375 36.8046875 -7.4375 Q38.2109375 -7.4375 39.203125 -6.3984375 Q40.1953125 -5.359375 40.1953125 -3.71875 Q40.1953125 -2.640625 39.7265625 -1.71875 Q39.2578125 -0.796875 38.4453125 -0.296875 Q37.6328125 0.203125 36.6015625 0.203125 Q34.8515625 0.203125 33.7421875 -1.09375 Q32.6328125 -2.390625 32.6328125 -5.359375 Q32.6328125 -8.6875 33.8515625 -10.1875 Q34.9296875 -11.5 36.7421875 -11.5 Q38.0859375 -11.5 38.953125 -10.7421875 Q39.8203125 -9.984375 39.9921875 -8.65625 Z M34.2421875 -3.71875 Q34.2421875 -2.984375 34.5546875 -2.3203125 Q34.8671875 -1.65625 35.421875 -1.3125 Q35.9765625 -0.96875 36.5859375 -0.96875 Q37.4765625 -0.96875 38.1171875 -1.6875 Q38.7578125 -2.40625 38.7578125 -3.640625 Q38.7578125 -4.828125 38.125 -5.5078125 Q37.4921875 -6.1875 36.5234375 -6.1875 Q35.5703125 -6.1875 34.90625 -5.5078125 Q34.2421875 -4.828125 34.2421875 -3.71875 Z"/><path d=" M41.4375 -3.4375 L41.4375 -4.859375 L45.75 -4.859375 L45.75 -3.4375 L41.4375 -3.4375 Z"/><path d=" M54.3125 -1.359375 L54.3125 0.0 L46.734375 0.0 Q46.71875 -0.515625 46.90625 -0.984375 Q47.1875 -1.75 47.828125 -2.5 Q48.46875 -3.25 49.671875 -4.234375 Q51.53125 -5.765625 52.1875 -6.6640625 Q52.84375 -7.5625 52.84375 -8.359375 Q52.84375 -9.1875 52.25 -9.765625 Q51.65625 -10.34375 50.6875 -10.34375 Q49.671875 -10.34375 49.0625 -9.734375 Q48.453125 -9.125 48.453125 -8.046875 L47.0 -8.1875 Q47.15625 -9.8125 48.125 -10.65625 Q49.09375 -11.5 50.71875 -11.5 Q52.375 -11.5 53.3359375 -10.5859375 Q54.296875 -9.671875 54.296875 -8.328125 Q54.296875 -7.640625 54.015625 -6.9765625 Q53.734375 -6.3125 53.078125 -5.578125 Q52.421875 -4.84375 50.90625 -3.5625 Q49.640625 -2.5 49.28125 -2.1171875 Q48.921875 -1.734375 48.6875 -1.359375 L54.3125 -1.359375 Z"/><path d=" M55.8203125 -5.65625 Q55.8203125 -7.6875 56.234375 -8.921875 Q56.6484375 -10.15625 57.4765625 -10.828125 Q58.3046875 -11.5 59.5546875 -11.5 Q60.4765625 -11.5 61.171875 -11.1328125 Q61.8671875 -10.765625 62.3203125 -10.0625 Q62.7734375 -9.359375 63.03125 -8.359375 Q63.2890625 -7.359375 63.2890625 -5.65625 Q63.2890625 -3.640625 62.875 -2.3984375 Q62.4609375 -1.15625 61.6328125 -0.4765625 Q60.8046875 0.203125 59.5546875 0.203125 Q57.8984375 0.203125 56.9453125 -1.0 Q55.8203125 -2.421875 55.8203125 -5.65625 Z M57.2578125 -5.65625 Q57.2578125 -2.828125 57.921875 -1.8984375 Q58.5859375 -0.96875 59.5546875 -0.96875 Q60.5234375 -0.96875 61.1796875 -1.90625 Q61.8359375 -2.84375 61.8359375 -5.65625 Q61.8359375 -8.484375 61.1796875 -9.4140625 Q60.5234375 -10.34375 59.5390625 -10.34375 Q58.5703125 -10.34375 57.9921875 -9.515625 Q57.2578125 -8.46875 57.2578125 -5.65625 Z"/><path d=" M64.71875 -5.65625 Q64.71875 -7.6875 65.1328125 -8.921875 Q65.546875 -10.15625 66.375 -10.828125 Q67.203125 -11.5 68.453125 -11.5 Q69.375 -11.5 70.0703125 -11.1328125 Q70.765625 -10.765625 71.21875 -10.0625 Q71.671875 -9.359375 71.9296875 -8.359375 Q72.1875 -7.359375 72.1875 -5.65625 Q72.1875 -3.640625 71.7734375 -2.3984375 Q71.359375 -1.15625 70.53125 -0.4765625 Q69.703125 0.203125 68.453125 0.203125 Q66.796875 0.203125 65.84375 -1.0 Q64.71875 -2.421875 64.71875 -5.65625 Z M66.15625 -5.65625 Q66.15625 -2.828125 66.8203125 -1.8984375 Q67.484375 -0.96875 68.453125 -0.96875 Q69.421875 -0.96875 70.078125 -1.90625 Q70.734375 -2.84375 70.734375 -5.65625 Q70.734375 -8.484375 70.078125 -9.4140625 Q69.421875 -10.34375 68.4375 -10.34375 Q67.46875 -10.34375 66.890625 -9.515625 Q66.15625 -8.46875 66.15625 -5.65625 Z"/><path d=" M73.6171875 -3.0 L75.0859375 -3.125 Q75.2578125 -2.046875 75.8515625 -1.5078125 Q76.4453125 -0.96875 77.2890625 -0.96875 Q78.3046875 -0.96875 79.0078125 -1.734375 Q79.7109375 -2.5 79.7109375 -3.765625 Q79.7109375 -4.96875 79.0390625 -5.6640625 Q78.3671875 -6.359375 77.2734375 -6.359375 Q76.5859375 -6.359375 76.0390625 -6.046875 Q75.4921875 -5.734375 75.1796875 -5.25 L73.8671875 -5.421875 L74.9765625 -11.296875 L80.6640625 -11.296875 L80.6640625 -9.953125 L76.1015625 -9.953125 L75.4765625 -6.875 Q76.5078125 -7.59375 77.6484375 -7.59375 Q79.1484375 -7.59375 80.1796875 -6.5546875 Q81.2109375 -5.515625 81.2109375 -3.890625 Q81.2109375 -2.328125 80.3046875 -1.203125 Q79.1953125 0.203125 77.2890625 0.203125 Q75.7265625 0.203125 74.7421875 -0.6796875 Q73.7578125 -1.5625 73.6171875 -3.0 Z"/></g></g><path d=" M297.83430989583337 289.0 L386.34472656250006 289.0 L386.34472656250006 312.0 L297.83430989583337 312.0 L297.83430989583337 289.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M63.37239583333332 305.0 L171.87701416015625 305.0 L171.87701416015625 335.0 L63.37239583333332 335.0 L63.37239583333332 305.0 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,66.0390625,330.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.09375 0.0 L5.90625 -7.828125 L0.78125 -15.03125 L3.140625 -15.03125 L5.875 -11.171875 Q6.734375 -9.984375 7.078125 -9.328125 Q7.59375 -10.15625 8.28125 -11.046875 L11.296875 -15.03125 L13.46875 -15.03125 L8.1875 -7.953125 L13.875 0.0 L11.40625 0.0 L7.625 -5.359375 Q7.3125 -5.828125 6.96875 -6.375 Q6.46875 -5.546875 6.25 -5.234375 L2.484375 0.0 L0.09375 0.0 Z"/><path d=" M14.88714599609375 -4.515625 L14.88714599609375 -6.375 L20.55902099609375 -6.375 L20.55902099609375 -4.515625 L14.88714599609375 -4.515625 Z"/><path d=" M21.28125 0.0 L27.0625 -15.03125 L29.203125 -15.03125 L35.34375 0.0 L33.078125 0.0 L31.328125 -4.546875 L25.046875 -4.546875 L23.390625 0.0 L21.28125 0.0 Z M25.625 -6.171875 L30.71875 -6.171875 L29.140625 -10.34375 Q28.421875 -12.234375 28.078125 -13.453125 Q27.796875 -12.0 27.265625 -10.578125 L25.625 -6.171875 Z"/><path d=" M35.68402099609375 0.0 L39.65277099609375 -5.65625 L35.98089599609375 -10.890625 L38.29339599609375 -10.890625 L39.96527099609375 -8.34375 Q40.43402099609375 -7.609375 40.71527099609375 -7.109375 Q41.16839599609375 -7.796875 41.54339599609375 -8.3125 L43.38714599609375 -10.890625 L45.59027099609375 -10.890625 L41.82464599609375 -5.765625 L45.87152099609375 0.0 L43.60589599609375 0.0 L41.37152099609375 -3.390625 L40.77777099609375 -4.296875 L37.91839599609375 0.0 L35.68402099609375 0.0 Z"/><path d=" M47.57464599609375 -12.90625 L47.57464599609375 -15.03125 L49.41839599609375 -15.03125 L49.41839599609375 -12.90625 L47.57464599609375 -12.90625 Z M47.57464599609375 0.0 L47.57464599609375 -10.890625 L49.41839599609375 -10.890625 L49.41839599609375 0.0 L47.57464599609375 0.0 Z"/><path d=" M51.559600830078125 -3.25 L53.387725830078125 -3.53125 Q53.543975830078125 -2.4375 54.247100830078125 -1.8515625 Q54.950225830078125 -1.265625 56.215850830078125 -1.265625 Q57.481475830078125 -1.265625 58.098663330078125 -1.7890625 Q58.715850830078125 -2.3125 58.715850830078125 -3.0 Q58.715850830078125 -3.625 58.168975830078125 -3.984375 Q57.793975830078125 -4.234375 56.278350830078125 -4.609375 Q54.247100830078125 -5.125 53.465850830078125 -5.5 Q52.684600830078125 -5.875 52.278350830078125 -6.5390625 Q51.872100830078125 -7.203125 51.872100830078125 -8.0 Q51.872100830078125 -8.71875 52.208038330078125 -9.34375 Q52.543975830078125 -9.96875 53.106475830078125 -10.375 Q53.543975830078125 -10.6875 54.286163330078125 -10.9140625 Q55.028350830078125 -11.140625 55.887725830078125 -11.140625 Q57.168975830078125 -11.140625 58.137725830078125 -10.765625 Q59.106475830078125 -10.390625 59.567413330078125 -9.765625 Q60.028350830078125 -9.140625 60.200225830078125 -8.078125 L58.387725830078125 -7.828125 Q58.278350830078125 -8.671875 57.684600830078125 -9.1484375 Q57.090850830078125 -9.625 56.012725830078125 -9.625 Q54.747100830078125 -9.625 54.200225830078125 -9.203125 Q53.653350830078125 -8.78125 53.653350830078125 -8.21875 Q53.653350830078125 -7.859375 53.887725830078125 -7.5625 Q54.106475830078125 -7.265625 54.590850830078125 -7.078125 Q54.872100830078125 -6.96875 56.215850830078125 -6.609375 Q58.184600830078125 -6.078125 58.958038330078125 -5.75 Q59.731475830078125 -5.421875 60.168975830078125 -4.78125 Q60.606475830078125 -4.140625 60.606475830078125 -3.203125 Q60.606475830078125 -2.28125 60.067413330078125 -1.4609375 Q59.528350830078125 -0.640625 58.512725830078125 -0.1953125 Q57.497100830078125 0.25 56.215850830078125 0.25 Q54.090850830078125 0.25 52.981475830078125 -0.6328125 Q51.872100830078125 -1.515625 51.559600830078125 -3.25 Z"/><path d=" M67.01272583007812 0.0 L67.01272583007812 -13.265625 L62.075225830078125 -13.265625 L62.075225830078125 -15.03125 L73.98147583007812 -15.03125 L73.98147583007812 -13.265625 L69.01272583007812 -13.265625 L69.01272583007812 0.0 L67.01272583007812 0.0 Z"/><path d=" M75.984375 -12.90625 L75.984375 -15.03125 L77.828125 -15.03125 L77.828125 -12.90625 L75.984375 -12.90625 Z M75.984375 0.0 L75.984375 -10.890625 L77.828125 -10.890625 L77.828125 0.0 L75.984375 0.0 Z"/><path d=" M84.75057983398438 -1.65625 L85.01620483398438 -0.015625 Q84.23495483398438 0.140625 83.60995483398438 0.140625 Q82.60995483398438 0.140625 82.05526733398438 -0.1796875 Q81.50057983398438 -0.5 81.27401733398438 -1.015625 Q81.04745483398438 -1.53125 81.04745483398438 -3.1875 L81.04745483398438 -9.453125 L79.70370483398438 -9.453125 L79.70370483398438 -10.890625 L81.04745483398438 -10.890625 L81.04745483398438 -13.59375 L82.89120483398438 -14.6875 L82.89120483398438 -10.890625 L84.75057983398438 -10.890625 L84.75057983398438 -9.453125 L82.89120483398438 -9.453125 L82.89120483398438 -3.09375 Q82.89120483398438 -2.296875 82.98495483398438 -2.0703125 Q83.07870483398438 -1.84375 83.29745483398438 -1.7109375 Q83.51620483398438 -1.578125 83.93807983398438 -1.578125 Q84.23495483398438 -1.578125 84.75057983398438 -1.65625 Z"/><path d=" M86.59375 0.0 L86.59375 -15.03125 L88.4375 -15.03125 L88.4375 0.0 L86.59375 0.0 Z"/><path d=" M98.82870483398438 -3.5 L100.73495483398438 -3.265625 Q100.28182983398438 -1.59375 99.06307983398438 -0.671875 Q97.84432983398438 0.25 95.93807983398438 0.25 Q93.54745483398438 0.25 92.14901733398438 -1.2265625 Q90.75057983398438 -2.703125 90.75057983398438 -5.359375 Q90.75057983398438 -8.09375 92.16464233398438 -9.6171875 Q93.57870483398438 -11.140625 95.84432983398438 -11.140625 Q98.03182983398438 -11.140625 99.41464233398438 -9.6484375 Q100.79745483398438 -8.15625 100.79745483398438 -5.46875 Q100.79745483398438 -5.296875 100.78182983398438 -4.96875 L92.65682983398438 -4.96875 Q92.76620483398438 -3.171875 93.68026733398438 -2.21875 Q94.59432983398438 -1.265625 95.95370483398438 -1.265625 Q96.96932983398438 -1.265625 97.68807983398438 -1.8046875 Q98.40682983398438 -2.34375 98.82870483398438 -3.5 Z M92.76620483398438 -6.484375 L98.84432983398438 -6.484375 Q98.71932983398438 -7.859375 98.14120483398438 -8.546875 Q97.26620483398438 -9.625 95.85995483398438 -9.625 Q94.59432983398438 -9.625 93.72714233398438 -8.7734375 Q92.85995483398438 -7.921875 92.76620483398438 -6.484375 Z"/></g></g><path d=" M63.37239583333332 305.0 L171.87701416015625 305.0 L171.87701416015625 335.0 L63.37239583333332 335.0 L63.37239583333332 305.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.796875 264.5 L50.705729166666664 264.5 L50.705729166666664 287.5 L21.796875 287.5 L21.796875 264.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,24.46354103088379,283.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.671875 -5.65625 Q0.671875 -7.6875 1.0859375 -8.921875 Q1.5 -10.15625 2.328125 -10.828125 Q3.15625 -11.5 4.40625 -11.5 Q5.328125 -11.5 6.0234375 -11.1328125 Q6.71875 -10.765625 7.171875 -10.0625 Q7.625 -9.359375 7.8828125 -8.359375 Q8.140625 -7.359375 8.140625 -5.65625 Q8.140625 -3.640625 7.7265625 -2.3984375 Q7.3125 -1.15625 6.484375 -0.4765625 Q5.65625 0.203125 4.40625 0.203125 Q2.75 0.203125 1.796875 -1.0 Q0.671875 -2.421875 0.671875 -5.65625 Z M2.109375 -5.65625 Q2.109375 -2.828125 2.7734375 -1.8984375 Q3.4375 -0.96875 4.40625 -0.96875 Q5.375 -0.96875 6.03125 -1.90625 Q6.6875 -2.84375 6.6875 -5.65625 Q6.6875 -8.484375 6.03125 -9.4140625 Q5.375 -10.34375 4.390625 -10.34375 Q3.421875 -10.34375 2.84375 -9.515625 Q2.109375 -8.46875 2.109375 -5.65625 Z"/><path d=" M10.3515625 0.0 L10.3515625 -1.609375 L11.9609375 -1.609375 L11.9609375 0.0 L10.3515625 0.0 Z"/><path d=" M14.015625 -5.65625 Q14.015625 -7.6875 14.4296875 -8.921875 Q14.84375 -10.15625 15.671875 -10.828125 Q16.5 -11.5 17.75 -11.5 Q18.671875 -11.5 19.3671875 -11.1328125 Q20.0625 -10.765625 20.515625 -10.0625 Q20.96875 -9.359375 21.2265625 -8.359375 Q21.484375 -7.359375 21.484375 -5.65625 Q21.484375 -3.640625 21.0703125 -2.3984375 Q20.65625 -1.15625 19.828125 -0.4765625 Q19.0 0.203125 17.75 0.203125 Q16.09375 0.203125 15.140625 -1.0 Q14.015625 -2.421875 14.015625 -5.65625 Z M15.453125 -5.65625 Q15.453125 -2.828125 16.1171875 -1.8984375 Q16.78125 -0.96875 17.75 -0.96875 Q18.71875 -0.96875 19.375 -1.90625 Q20.03125 -2.84375 20.03125 -5.65625 Q20.03125 -8.484375 19.375 -9.4140625 Q18.71875 -10.34375 17.734375 -10.34375 Q16.765625 -10.34375 16.1875 -9.515625 Q15.453125 -8.46875 15.453125 -5.65625 Z"/></g></g><path d=" M21.796875 264.5 L50.705729166666664 264.5 L50.705729166666664 287.5 L21.796875 287.5 L21.796875 264.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.796875 244.5 L50.705729166666664 244.5 L50.705729166666664 267.5 L21.796875 267.5 L21.796875 244.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,24.46354103088379,263.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.671875 -5.65625 Q0.671875 -7.6875 1.0859375 -8.921875 Q1.5 -10.15625 2.328125 -10.828125 Q3.15625 -11.5 4.40625 -11.5 Q5.328125 -11.5 6.0234375 -11.1328125 Q6.71875 -10.765625 7.171875 -10.0625 Q7.625 -9.359375 7.8828125 -8.359375 Q8.140625 -7.359375 8.140625 -5.65625 Q8.140625 -3.640625 7.7265625 -2.3984375 Q7.3125 -1.15625 6.484375 -0.4765625 Q5.65625 0.203125 4.40625 0.203125 Q2.75 0.203125 1.796875 -1.0 Q0.671875 -2.421875 0.671875 -5.65625 Z M2.109375 -5.65625 Q2.109375 -2.828125 2.7734375 -1.8984375 Q3.4375 -0.96875 4.40625 -0.96875 Q5.375 -0.96875 6.03125 -1.90625 Q6.6875 -2.84375 6.6875 -5.65625 Q6.6875 -8.484375 6.03125 -9.4140625 Q5.375 -10.34375 4.390625 -10.34375 Q3.421875 -10.34375 2.84375 -9.515625 Q2.109375 -8.46875 2.109375 -5.65625 Z"/><path d=" M10.3515625 0.0 L10.3515625 -1.609375 L11.9609375 -1.609375 L11.9609375 0.0 L10.3515625 0.0 Z"/><path d=" M14.015625 -3.0 L15.484375 -3.125 Q15.65625 -2.046875 16.25 -1.5078125 Q16.84375 -0.96875 17.6875 -0.96875 Q18.703125 -0.96875 19.40625 -1.734375 Q20.109375 -2.5 20.109375 -3.765625 Q20.109375 -4.96875 19.4375 -5.6640625 Q18.765625 -6.359375 17.671875 -6.359375 Q16.984375 -6.359375 16.4375 -6.046875 Q15.890625 -5.734375 15.578125 -5.25 L14.265625 -5.421875 L15.375 -11.296875 L21.0625 -11.296875 L21.0625 -9.953125 L16.5 -9.953125 L15.875 -6.875 Q16.90625 -7.59375 18.046875 -7.59375 Q19.546875 -7.59375 20.578125 -6.5546875 Q21.609375 -5.515625 21.609375 -3.890625 Q21.609375 -2.328125 20.703125 -1.203125 Q19.59375 0.203125 17.6875 0.203125 Q16.125 0.203125 15.140625 -0.6796875 Q14.15625 -1.5625 14.015625 -3.0 Z"/></g></g><path d=" M21.796875 244.5 L50.705729166666664 244.5 L50.705729166666664 267.5 L21.796875 267.5 L21.796875 244.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.796875 223.5 L50.705729166666664 223.5 L50.705729166666664 246.5 L21.796875 246.5 L21.796875 223.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,24.46354103088379,242.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.96875 0.0 L4.5625 0.0 L4.5625 -8.96875 Q4.046875 -8.484375 3.2265625 -8.0 Q2.40625 -7.515625 1.75 -7.265625 L1.75 -8.625 Q2.921875 -9.1875 3.8046875 -9.9765625 Q4.6875 -10.765625 5.0625 -11.5 L5.96875 -11.5 L5.96875 0.0 Z"/><path d=" M10.3515625 0.0 L10.3515625 -1.609375 L11.9609375 -1.609375 L11.9609375 0.0 L10.3515625 0.0 Z"/><path d=" M14.015625 -5.65625 Q14.015625 -7.6875 14.4296875 -8.921875 Q14.84375 -10.15625 15.671875 -10.828125 Q16.5 -11.5 17.75 -11.5 Q18.671875 -11.5 19.3671875 -11.1328125 Q20.0625 -10.765625 20.515625 -10.0625 Q20.96875 -9.359375 21.2265625 -8.359375 Q21.484375 -7.359375 21.484375 -5.65625 Q21.484375 -3.640625 21.0703125 -2.3984375 Q20.65625 -1.15625 19.828125 -0.4765625 Q19.0 0.203125 17.75 0.203125 Q16.09375 0.203125 15.140625 -1.0 Q14.015625 -2.421875 14.015625 -5.65625 Z M15.453125 -5.65625 Q15.453125 -2.828125 16.1171875 -1.8984375 Q16.78125 -0.96875 17.75 -0.96875 Q18.71875 -0.96875 19.375 -1.90625 Q20.03125 -2.84375 20.03125 -5.65625 Q20.03125 -8.484375 19.375 -9.4140625 Q18.71875 -10.34375 17.734375 -10.34375 Q16.765625 -10.34375 16.1875 -9.515625 Q15.453125 -8.46875 15.453125 -5.65625 Z"/></g></g><path d=" M21.796875 223.5 L50.705729166666664 223.5 L50.705729166666664 246.5 L21.796875 246.5 L21.796875 223.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.796875 203.5 L50.705729166666664 203.5 L50.705729166666664 226.5 L21.796875 226.5 L21.796875 203.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,24.46354103088379,222.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.96875 0.0 L4.5625 0.0 L4.5625 -8.96875 Q4.046875 -8.484375 3.2265625 -8.0 Q2.40625 -7.515625 1.75 -7.265625 L1.75 -8.625 Q2.921875 -9.1875 3.8046875 -9.9765625 Q4.6875 -10.765625 5.0625 -11.5 L5.96875 -11.5 L5.96875 0.0 Z"/><path d=" M10.3515625 0.0 L10.3515625 -1.609375 L11.9609375 -1.609375 L11.9609375 0.0 L10.3515625 0.0 Z"/><path d=" M14.015625 -3.0 L15.484375 -3.125 Q15.65625 -2.046875 16.25 -1.5078125 Q16.84375 -0.96875 17.6875 -0.96875 Q18.703125 -0.96875 19.40625 -1.734375 Q20.109375 -2.5 20.109375 -3.765625 Q20.109375 -4.96875 19.4375 -5.6640625 Q18.765625 -6.359375 17.671875 -6.359375 Q16.984375 -6.359375 16.4375 -6.046875 Q15.890625 -5.734375 15.578125 -5.25 L14.265625 -5.421875 L15.375 -11.296875 L21.0625 -11.296875 L21.0625 -9.953125 L16.5 -9.953125 L15.875 -6.875 Q16.90625 -7.59375 18.046875 -7.59375 Q19.546875 -7.59375 20.578125 -6.5546875 Q21.609375 -5.515625 21.609375 -3.890625 Q21.609375 -2.328125 20.703125 -1.203125 Q19.59375 0.203125 17.6875 0.203125 Q16.125 0.203125 15.140625 -0.6796875 Q14.15625 -1.5625 14.015625 -3.0 Z"/></g></g><path d=" M21.796875 203.5 L50.705729166666664 203.5 L50.705729166666664 226.5 L21.796875 226.5 L21.796875 203.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.796875 183.5 L50.705729166666664 183.5 L50.705729166666664 206.5 L21.796875 206.5 L21.796875 183.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,24.46354103088379,202.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M8.0625 -1.359375 L8.0625 0.0 L0.484375 0.0 Q0.46875 -0.515625 0.65625 -0.984375 Q0.9375 -1.75 1.578125 -2.5 Q2.21875 -3.25 3.421875 -4.234375 Q5.28125 -5.765625 5.9375 -6.6640625 Q6.59375 -7.5625 6.59375 -8.359375 Q6.59375 -9.1875 6.0 -9.765625 Q5.40625 -10.34375 4.4375 -10.34375 Q3.421875 -10.34375 2.8125 -9.734375 Q2.203125 -9.125 2.203125 -8.046875 L0.75 -8.1875 Q0.90625 -9.8125 1.875 -10.65625 Q2.84375 -11.5 4.46875 -11.5 Q6.125 -11.5 7.0859375 -10.5859375 Q8.046875 -9.671875 8.046875 -8.328125 Q8.046875 -7.640625 7.765625 -6.9765625 Q7.484375 -6.3125 6.828125 -5.578125 Q6.171875 -4.84375 4.65625 -3.5625 Q3.390625 -2.5 3.03125 -2.1171875 Q2.671875 -1.734375 2.4375 -1.359375 L8.0625 -1.359375 Z"/><path d=" M10.3515625 0.0 L10.3515625 -1.609375 L11.9609375 -1.609375 L11.9609375 0.0 L10.3515625 0.0 Z"/><path d=" M14.015625 -5.65625 Q14.015625 -7.6875 14.4296875 -8.921875 Q14.84375 -10.15625 15.671875 -10.828125 Q16.5 -11.5 17.75 -11.5 Q18.671875 -11.5 19.3671875 -11.1328125 Q20.0625 -10.765625 20.515625 -10.0625 Q20.96875 -9.359375 21.2265625 -8.359375 Q21.484375 -7.359375 21.484375 -5.65625 Q21.484375 -3.640625 21.0703125 -2.3984375 Q20.65625 -1.15625 19.828125 -0.4765625 Q19.0 0.203125 17.75 0.203125 Q16.09375 0.203125 15.140625 -1.0 Q14.015625 -2.421875 14.015625 -5.65625 Z M15.453125 -5.65625 Q15.453125 -2.828125 16.1171875 -1.8984375 Q16.78125 -0.96875 17.75 -0.96875 Q18.71875 -0.96875 19.375 -1.90625 Q20.03125 -2.84375 20.03125 -5.65625 Q20.03125 -8.484375 19.375 -9.4140625 Q18.71875 -10.34375 17.734375 -10.34375 Q16.765625 -10.34375 16.1875 -9.515625 Q15.453125 -8.46875 15.453125 -5.65625 Z"/></g></g><path d=" M21.796875 183.5 L50.705729166666664 183.5 L50.705729166666664 206.5 L21.796875 206.5 L21.796875 183.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.796875 163.5 L50.705729166666664 163.5 L50.705729166666664 186.5 L21.796875 186.5 L21.796875 163.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,24.46354103088379,182.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M8.0625 -1.359375 L8.0625 0.0 L0.484375 0.0 Q0.46875 -0.515625 0.65625 -0.984375 Q0.9375 -1.75 1.578125 -2.5 Q2.21875 -3.25 3.421875 -4.234375 Q5.28125 -5.765625 5.9375 -6.6640625 Q6.59375 -7.5625 6.59375 -8.359375 Q6.59375 -9.1875 6.0 -9.765625 Q5.40625 -10.34375 4.4375 -10.34375 Q3.421875 -10.34375 2.8125 -9.734375 Q2.203125 -9.125 2.203125 -8.046875 L0.75 -8.1875 Q0.90625 -9.8125 1.875 -10.65625 Q2.84375 -11.5 4.46875 -11.5 Q6.125 -11.5 7.0859375 -10.5859375 Q8.046875 -9.671875 8.046875 -8.328125 Q8.046875 -7.640625 7.765625 -6.9765625 Q7.484375 -6.3125 6.828125 -5.578125 Q6.171875 -4.84375 4.65625 -3.5625 Q3.390625 -2.5 3.03125 -2.1171875 Q2.671875 -1.734375 2.4375 -1.359375 L8.0625 -1.359375 Z"/><path d=" M10.3515625 0.0 L10.3515625 -1.609375 L11.9609375 -1.609375 L11.9609375 0.0 L10.3515625 0.0 Z"/><path d=" M14.015625 -3.0 L15.484375 -3.125 Q15.65625 -2.046875 16.25 -1.5078125 Q16.84375 -0.96875 17.6875 -0.96875 Q18.703125 -0.96875 19.40625 -1.734375 Q20.109375 -2.5 20.109375 -3.765625 Q20.109375 -4.96875 19.4375 -5.6640625 Q18.765625 -6.359375 17.671875 -6.359375 Q16.984375 -6.359375 16.4375 -6.046875 Q15.890625 -5.734375 15.578125 -5.25 L14.265625 -5.421875 L15.375 -11.296875 L21.0625 -11.296875 L21.0625 -9.953125 L16.5 -9.953125 L15.875 -6.875 Q16.90625 -7.59375 18.046875 -7.59375 Q19.546875 -7.59375 20.578125 -6.5546875 Q21.609375 -5.515625 21.609375 -3.890625 Q21.609375 -2.328125 20.703125 -1.203125 Q19.59375 0.203125 17.6875 0.203125 Q16.125 0.203125 15.140625 -0.6796875 Q14.15625 -1.5625 14.015625 -3.0 Z"/></g></g><path d=" M21.796875 163.5 L50.705729166666664 163.5 L50.705729166666664 186.5 L21.796875 186.5 L21.796875 163.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.796875 143.5 L50.705729166666664 143.5 L50.705729166666664 166.5 L21.796875 166.5 L21.796875 143.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,24.46354103088379,162.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.671875 -3.03125 L2.078125 -3.21875 Q2.328125 -2.015625 2.90625 -1.4921875 Q3.484375 -0.96875 4.328125 -0.96875 Q5.3125 -0.96875 6.0 -1.65625 Q6.6875 -2.34375 6.6875 -3.359375 Q6.6875 -4.328125 6.0546875 -4.953125 Q5.421875 -5.578125 4.4375 -5.578125 Q4.046875 -5.578125 3.453125 -5.421875 L3.609375 -6.65625 Q3.75 -6.640625 3.828125 -6.640625 Q4.734375 -6.640625 5.453125 -7.109375 Q6.171875 -7.578125 6.171875 -8.5625 Q6.171875 -9.328125 5.6484375 -9.8359375 Q5.125 -10.34375 4.296875 -10.34375 Q3.46875 -10.34375 2.921875 -9.828125 Q2.375 -9.3125 2.21875 -8.28125 L0.8125 -8.53125 Q1.078125 -9.953125 1.9921875 -10.7265625 Q2.90625 -11.5 4.265625 -11.5 Q5.203125 -11.5 5.9921875 -11.1015625 Q6.78125 -10.703125 7.1953125 -10.0078125 Q7.609375 -9.3125 7.609375 -8.53125 Q7.609375 -7.78125 7.2109375 -7.171875 Q6.8125 -6.5625 6.03125 -6.203125 Q7.046875 -5.96875 7.609375 -5.234375 Q8.171875 -4.5 8.171875 -3.390625 Q8.171875 -1.890625 7.078125 -0.84375 Q5.984375 0.203125 4.3125 0.203125 Q2.8125 0.203125 1.8125 -0.6953125 Q0.8125 -1.59375 0.671875 -3.03125 Z"/><path d=" M10.3515625 0.0 L10.3515625 -1.609375 L11.9609375 -1.609375 L11.9609375 0.0 L10.3515625 0.0 Z"/><path d=" M14.015625 -5.65625 Q14.015625 -7.6875 14.4296875 -8.921875 Q14.84375 -10.15625 15.671875 -10.828125 Q16.5 -11.5 17.75 -11.5 Q18.671875 -11.5 19.3671875 -11.1328125 Q20.0625 -10.765625 20.515625 -10.0625 Q20.96875 -9.359375 21.2265625 -8.359375 Q21.484375 -7.359375 21.484375 -5.65625 Q21.484375 -3.640625 21.0703125 -2.3984375 Q20.65625 -1.15625 19.828125 -0.4765625 Q19.0 0.203125 17.75 0.203125 Q16.09375 0.203125 15.140625 -1.0 Q14.015625 -2.421875 14.015625 -5.65625 Z M15.453125 -5.65625 Q15.453125 -2.828125 16.1171875 -1.8984375 Q16.78125 -0.96875 17.75 -0.96875 Q18.71875 -0.96875 19.375 -1.90625 Q20.03125 -2.84375 20.03125 -5.65625 Q20.03125 -8.484375 19.375 -9.4140625 Q18.71875 -10.34375 17.734375 -10.34375 Q16.765625 -10.34375 16.1875 -9.515625 Q15.453125 -8.46875 15.453125 -5.65625 Z"/></g></g><path d=" M21.796875 143.5 L50.705729166666664 143.5 L50.705729166666664 166.5 L21.796875 166.5 L21.796875 143.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.796875 122.5 L50.705729166666664 122.5 L50.705729166666664 145.5 L21.796875 145.5 L21.796875 122.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,24.46354103088379,141.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.671875 -3.03125 L2.078125 -3.21875 Q2.328125 -2.015625 2.90625 -1.4921875 Q3.484375 -0.96875 4.328125 -0.96875 Q5.3125 -0.96875 6.0 -1.65625 Q6.6875 -2.34375 6.6875 -3.359375 Q6.6875 -4.328125 6.0546875 -4.953125 Q5.421875 -5.578125 4.4375 -5.578125 Q4.046875 -5.578125 3.453125 -5.421875 L3.609375 -6.65625 Q3.75 -6.640625 3.828125 -6.640625 Q4.734375 -6.640625 5.453125 -7.109375 Q6.171875 -7.578125 6.171875 -8.5625 Q6.171875 -9.328125 5.6484375 -9.8359375 Q5.125 -10.34375 4.296875 -10.34375 Q3.46875 -10.34375 2.921875 -9.828125 Q2.375 -9.3125 2.21875 -8.28125 L0.8125 -8.53125 Q1.078125 -9.953125 1.9921875 -10.7265625 Q2.90625 -11.5 4.265625 -11.5 Q5.203125 -11.5 5.9921875 -11.1015625 Q6.78125 -10.703125 7.1953125 -10.0078125 Q7.609375 -9.3125 7.609375 -8.53125 Q7.609375 -7.78125 7.2109375 -7.171875 Q6.8125 -6.5625 6.03125 -6.203125 Q7.046875 -5.96875 7.609375 -5.234375 Q8.171875 -4.5 8.171875 -3.390625 Q8.171875 -1.890625 7.078125 -0.84375 Q5.984375 0.203125 4.3125 0.203125 Q2.8125 0.203125 1.8125 -0.6953125 Q0.8125 -1.59375 0.671875 -3.03125 Z"/><path d=" M10.3515625 0.0 L10.3515625 -1.609375 L11.9609375 -1.609375 L11.9609375 0.0 L10.3515625 0.0 Z"/><path d=" M14.015625 -3.0 L15.484375 -3.125 Q15.65625 -2.046875 16.25 -1.5078125 Q16.84375 -0.96875 17.6875 -0.96875 Q18.703125 -0.96875 19.40625 -1.734375 Q20.109375 -2.5 20.109375 -3.765625 Q20.109375 -4.96875 19.4375 -5.6640625 Q18.765625 -6.359375 17.671875 -6.359375 Q16.984375 -6.359375 16.4375 -6.046875 Q15.890625 -5.734375 15.578125 -5.25 L14.265625 -5.421875 L15.375 -11.296875 L21.0625 -11.296875 L21.0625 -9.953125 L16.5 -9.953125 L15.875 -6.875 Q16.90625 -7.59375 18.046875 -7.59375 Q19.546875 -7.59375 20.578125 -6.5546875 Q21.609375 -5.515625 21.609375 -3.890625 Q21.609375 -2.328125 20.703125 -1.203125 Q19.59375 0.203125 17.6875 0.203125 Q16.125 0.203125 15.140625 -0.6796875 Q14.15625 -1.5625 14.015625 -3.0 Z"/></g></g><path d=" M21.796875 122.5 L50.705729166666664 122.5 L50.705729166666664 145.5 L21.796875 145.5 L21.796875 122.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.796875 102.5 L50.705729166666664 102.5 L50.705729166666664 125.5 L21.796875 125.5 L21.796875 102.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,24.46354103088379,121.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.171875 0.0 L5.171875 -2.75 L0.203125 -2.75 L0.203125 -4.03125 L5.4375 -11.453125 L6.578125 -11.453125 L6.578125 -4.03125 L8.125 -4.03125 L8.125 -2.75 L6.578125 -2.75 L6.578125 0.0 L5.171875 0.0 Z M5.171875 -4.03125 L5.171875 -9.203125 L1.59375 -4.03125 L5.171875 -4.03125 Z"/><path d=" M10.3515625 0.0 L10.3515625 -1.609375 L11.9609375 -1.609375 L11.9609375 0.0 L10.3515625 0.0 Z"/><path d=" M14.015625 -5.65625 Q14.015625 -7.6875 14.4296875 -8.921875 Q14.84375 -10.15625 15.671875 -10.828125 Q16.5 -11.5 17.75 -11.5 Q18.671875 -11.5 19.3671875 -11.1328125 Q20.0625 -10.765625 20.515625 -10.0625 Q20.96875 -9.359375 21.2265625 -8.359375 Q21.484375 -7.359375 21.484375 -5.65625 Q21.484375 -3.640625 21.0703125 -2.3984375 Q20.65625 -1.15625 19.828125 -0.4765625 Q19.0 0.203125 17.75 0.203125 Q16.09375 0.203125 15.140625 -1.0 Q14.015625 -2.421875 14.015625 -5.65625 Z M15.453125 -5.65625 Q15.453125 -2.828125 16.1171875 -1.8984375 Q16.78125 -0.96875 17.75 -0.96875 Q18.71875 -0.96875 19.375 -1.90625 Q20.03125 -2.84375 20.03125 -5.65625 Q20.03125 -8.484375 19.375 -9.4140625 Q18.71875 -10.34375 17.734375 -10.34375 Q16.765625 -10.34375 16.1875 -9.515625 Q15.453125 -8.46875 15.453125 -5.65625 Z"/></g></g><path d=" M21.796875 102.5 L50.705729166666664 102.5 L50.705729166666664 125.5 L21.796875 125.5 L21.796875 102.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.796875 82.5 L50.705729166666664 82.5 L50.705729166666664 105.5 L21.796875 105.5 L21.796875 82.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,24.46354103088379,101.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.171875 0.0 L5.171875 -2.75 L0.203125 -2.75 L0.203125 -4.03125 L5.4375 -11.453125 L6.578125 -11.453125 L6.578125 -4.03125 L8.125 -4.03125 L8.125 -2.75 L6.578125 -2.75 L6.578125 0.0 L5.171875 0.0 Z M5.171875 -4.03125 L5.171875 -9.203125 L1.59375 -4.03125 L5.171875 -4.03125 Z"/><path d=" M10.3515625 0.0 L10.3515625 -1.609375 L11.9609375 -1.609375 L11.9609375 0.0 L10.3515625 0.0 Z"/><path d=" M14.015625 -3.0 L15.484375 -3.125 Q15.65625 -2.046875 16.25 -1.5078125 Q16.84375 -0.96875 17.6875 -0.96875 Q18.703125 -0.96875 19.40625 -1.734375 Q20.109375 -2.5 20.109375 -3.765625 Q20.109375 -4.96875 19.4375 -5.6640625 Q18.765625 -6.359375 17.671875 -6.359375 Q16.984375 -6.359375 16.4375 -6.046875 Q15.890625 -5.734375 15.578125 -5.25 L14.265625 -5.421875 L15.375 -11.296875 L21.0625 -11.296875 L21.0625 -9.953125 L16.5 -9.953125 L15.875 -6.875 Q16.90625 -7.59375 18.046875 -7.59375 Q19.546875 -7.59375 20.578125 -6.5546875 Q21.609375 -5.515625 21.609375 -3.890625 Q21.609375 -2.328125 20.703125 -1.203125 Q19.59375 0.203125 17.6875 0.203125 Q16.125 0.203125 15.140625 -0.6796875 Q14.15625 -1.5625 14.015625 -3.0 Z"/></g></g><path d=" M21.796875 82.5 L50.705729166666664 82.5 L50.705729166666664 105.5 L21.796875 105.5 L21.796875 82.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.796875 62.5 L50.705729166666664 62.5 L50.705729166666664 85.5 L21.796875 85.5 L21.796875 62.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,24.46354103088379,81.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.671875 -3.0 L2.140625 -3.125 Q2.3125 -2.046875 2.90625 -1.5078125 Q3.5 -0.96875 4.34375 -0.96875 Q5.359375 -0.96875 6.0625 -1.734375 Q6.765625 -2.5 6.765625 -3.765625 Q6.765625 -4.96875 6.09375 -5.6640625 Q5.421875 -6.359375 4.328125 -6.359375 Q3.640625 -6.359375 3.09375 -6.046875 Q2.546875 -5.734375 2.234375 -5.25 L0.921875 -5.421875 L2.03125 -11.296875 L7.71875 -11.296875 L7.71875 -9.953125 L3.15625 -9.953125 L2.53125 -6.875 Q3.5625 -7.59375 4.703125 -7.59375 Q6.203125 -7.59375 7.234375 -6.5546875 Q8.265625 -5.515625 8.265625 -3.890625 Q8.265625 -2.328125 7.359375 -1.203125 Q6.25 0.203125 4.34375 0.203125 Q2.78125 0.203125 1.796875 -0.6796875 Q0.8125 -1.5625 0.671875 -3.0 Z"/><path d=" M10.3515625 0.0 L10.3515625 -1.609375 L11.9609375 -1.609375 L11.9609375 0.0 L10.3515625 0.0 Z"/><path d=" M14.015625 -5.65625 Q14.015625 -7.6875 14.4296875 -8.921875 Q14.84375 -10.15625 15.671875 -10.828125 Q16.5 -11.5 17.75 -11.5 Q18.671875 -11.5 19.3671875 -11.1328125 Q20.0625 -10.765625 20.515625 -10.0625 Q20.96875 -9.359375 21.2265625 -8.359375 Q21.484375 -7.359375 21.484375 -5.65625 Q21.484375 -3.640625 21.0703125 -2.3984375 Q20.65625 -1.15625 19.828125 -0.4765625 Q19.0 0.203125 17.75 0.203125 Q16.09375 0.203125 15.140625 -1.0 Q14.015625 -2.421875 14.015625 -5.65625 Z M15.453125 -5.65625 Q15.453125 -2.828125 16.1171875 -1.8984375 Q16.78125 -0.96875 17.75 -0.96875 Q18.71875 -0.96875 19.375 -1.90625 Q20.03125 -2.84375 20.03125 -5.65625 Q20.03125 -8.484375 19.375 -9.4140625 Q18.71875 -10.34375 17.734375 -10.34375 Q16.765625 -10.34375 16.1875 -9.515625 Q15.453125 -8.46875 15.453125 -5.65625 Z"/></g></g><path d=" M21.796875 62.5 L50.705729166666664 62.5 L50.705729166666664 85.5 L21.796875 85.5 L21.796875 62.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.796875 42.5 L50.705729166666664 42.5 L50.705729166666664 65.5 L21.796875 65.5 L21.796875 42.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,24.46354103088379,61.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.671875 -3.0 L2.140625 -3.125 Q2.3125 -2.046875 2.90625 -1.5078125 Q3.5 -0.96875 4.34375 -0.96875 Q5.359375 -0.96875 6.0625 -1.734375 Q6.765625 -2.5 6.765625 -3.765625 Q6.765625 -4.96875 6.09375 -5.6640625 Q5.421875 -6.359375 4.328125 -6.359375 Q3.640625 -6.359375 3.09375 -6.046875 Q2.546875 -5.734375 2.234375 -5.25 L0.921875 -5.421875 L2.03125 -11.296875 L7.71875 -11.296875 L7.71875 -9.953125 L3.15625 -9.953125 L2.53125 -6.875 Q3.5625 -7.59375 4.703125 -7.59375 Q6.203125 -7.59375 7.234375 -6.5546875 Q8.265625 -5.515625 8.265625 -3.890625 Q8.265625 -2.328125 7.359375 -1.203125 Q6.25 0.203125 4.34375 0.203125 Q2.78125 0.203125 1.796875 -0.6796875 Q0.8125 -1.5625 0.671875 -3.0 Z"/><path d=" M10.3515625 0.0 L10.3515625 -1.609375 L11.9609375 -1.609375 L11.9609375 0.0 L10.3515625 0.0 Z"/><path d=" M14.015625 -3.0 L15.484375 -3.125 Q15.65625 -2.046875 16.25 -1.5078125 Q16.84375 -0.96875 17.6875 -0.96875 Q18.703125 -0.96875 19.40625 -1.734375 Q20.109375 -2.5 20.109375 -3.765625 Q20.109375 -4.96875 19.4375 -5.6640625 Q18.765625 -6.359375 17.671875 -6.359375 Q16.984375 -6.359375 16.4375 -6.046875 Q15.890625 -5.734375 15.578125 -5.25 L14.265625 -5.421875 L15.375 -11.296875 L21.0625 -11.296875 L21.0625 -9.953125 L16.5 -9.953125 L15.875 -6.875 Q16.90625 -7.59375 18.046875 -7.59375 Q19.546875 -7.59375 20.578125 -6.5546875 Q21.609375 -5.515625 21.609375 -3.890625 Q21.609375 -2.328125 20.703125 -1.203125 Q19.59375 0.203125 17.6875 0.203125 Q16.125 0.203125 15.140625 -0.6796875 Q14.15625 -1.5625 14.015625 -3.0 Z"/></g></g><path d=" M21.796875 42.5 L50.705729166666664 42.5 L50.705729166666664 65.5 L21.796875 65.5 L21.796875 42.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M37.00000000000001 132.50461832682294 L145.50461832682294 132.50461832682294 L145.50461832682294 162.50461832682294 L37.00000000000001 162.50461832682294 L37.00000000000001 132.50461832682294 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-125.50461832682294,199.50461832682294)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(-0.0,-1.0,1.0,0.0,32.000005086263,159.8379503885905)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.859375 0.0 L5.859375 -6.375 L0.0625 -15.03125 L2.484375 -15.03125 L5.4375 -10.5 Q6.265625 -9.234375 6.96875 -7.953125 Q7.65625 -9.140625 8.609375 -10.609375 L11.53125 -15.03125 L13.84375 -15.03125 L7.84375 -6.375 L7.84375 0.0 L5.859375 0.0 Z"/><path d=" M14.88714599609375 -4.515625 L14.88714599609375 -6.375 L20.55902099609375 -6.375 L20.55902099609375 -4.515625 L14.88714599609375 -4.515625 Z"/><path d=" M21.28125 0.0 L27.0625 -15.03125 L29.203125 -15.03125 L35.34375 0.0 L33.078125 0.0 L31.328125 -4.546875 L25.046875 -4.546875 L23.390625 0.0 L21.28125 0.0 Z M25.625 -6.171875 L30.71875 -6.171875 L29.140625 -10.34375 Q28.421875 -12.234375 28.078125 -13.453125 Q27.796875 -12.0 27.265625 -10.578125 L25.625 -6.171875 Z"/><path d=" M35.68402099609375 0.0 L39.65277099609375 -5.65625 L35.98089599609375 -10.890625 L38.29339599609375 -10.890625 L39.96527099609375 -8.34375 Q40.43402099609375 -7.609375 40.71527099609375 -7.109375 Q41.16839599609375 -7.796875 41.54339599609375 -8.3125 L43.38714599609375 -10.890625 L45.59027099609375 -10.890625 L41.82464599609375 -5.765625 L45.87152099609375 0.0 L43.60589599609375 0.0 L41.37152099609375 -3.390625 L40.77777099609375 -4.296875 L37.91839599609375 0.0 L35.68402099609375 0.0 Z"/><path d=" M47.57464599609375 -12.90625 L47.57464599609375 -15.03125 L49.41839599609375 -15.03125 L49.41839599609375 -12.90625 L47.57464599609375 -12.90625 Z M47.57464599609375 0.0 L47.57464599609375 -10.890625 L49.41839599609375 -10.890625 L49.41839599609375 0.0 L47.57464599609375 0.0 Z"/><path d=" M51.559600830078125 -3.25 L53.387725830078125 -3.53125 Q53.543975830078125 -2.4375 54.247100830078125 -1.8515625 Q54.950225830078125 -1.265625 56.215850830078125 -1.265625 Q57.481475830078125 -1.265625 58.098663330078125 -1.7890625 Q58.715850830078125 -2.3125 58.715850830078125 -3.0 Q58.715850830078125 -3.625 58.168975830078125 -3.984375 Q57.793975830078125 -4.234375 56.278350830078125 -4.609375 Q54.247100830078125 -5.125 53.465850830078125 -5.5 Q52.684600830078125 -5.875 52.278350830078125 -6.5390625 Q51.872100830078125 -7.203125 51.872100830078125 -8.0 Q51.872100830078125 -8.71875 52.208038330078125 -9.34375 Q52.543975830078125 -9.96875 53.106475830078125 -10.375 Q53.543975830078125 -10.6875 54.286163330078125 -10.9140625 Q55.028350830078125 -11.140625 55.887725830078125 -11.140625 Q57.168975830078125 -11.140625 58.137725830078125 -10.765625 Q59.106475830078125 -10.390625 59.567413330078125 -9.765625 Q60.028350830078125 -9.140625 60.200225830078125 -8.078125 L58.387725830078125 -7.828125 Q58.278350830078125 -8.671875 57.684600830078125 -9.1484375 Q57.090850830078125 -9.625 56.012725830078125 -9.625 Q54.747100830078125 -9.625 54.200225830078125 -9.203125 Q53.653350830078125 -8.78125 53.653350830078125 -8.21875 Q53.653350830078125 -7.859375 53.887725830078125 -7.5625 Q54.106475830078125 -7.265625 54.590850830078125 -7.078125 Q54.872100830078125 -6.96875 56.215850830078125 -6.609375 Q58.184600830078125 -6.078125 58.958038330078125 -5.75 Q59.731475830078125 -5.421875 60.168975830078125 -4.78125 Q60.606475830078125 -4.140625 60.606475830078125 -3.203125 Q60.606475830078125 -2.28125 60.067413330078125 -1.4609375 Q59.528350830078125 -0.640625 58.512725830078125 -0.1953125 Q57.497100830078125 0.25 56.215850830078125 0.25 Q54.090850830078125 0.25 52.981475830078125 -0.6328125 Q51.872100830078125 -1.515625 51.559600830078125 -3.25 Z"/><path d=" M67.01272583007812 0.0 L67.01272583007812 -13.265625 L62.075225830078125 -13.265625 L62.075225830078125 -15.03125 L73.98147583007812 -15.03125 L73.98147583007812 -13.265625 L69.01272583007812 -13.265625 L69.01272583007812 0.0 L67.01272583007812 0.0 Z"/><path d=" M75.984375 -12.90625 L75.984375 -15.03125 L77.828125 -15.03125 L77.828125 -12.90625 L75.984375 -12.90625 Z M75.984375 0.0 L75.984375 -10.890625 L77.828125 -10.890625 L77.828125 0.0 L75.984375 0.0 Z"/><path d=" M84.75057983398438 -1.65625 L85.01620483398438 -0.015625 Q84.23495483398438 0.140625 83.60995483398438 0.140625 Q82.60995483398438 0.140625 82.05526733398438 -0.1796875 Q81.50057983398438 -0.5 81.27401733398438 -1.015625 Q81.04745483398438 -1.53125 81.04745483398438 -3.1875 L81.04745483398438 -9.453125 L79.70370483398438 -9.453125 L79.70370483398438 -10.890625 L81.04745483398438 -10.890625 L81.04745483398438 -13.59375 L82.89120483398438 -14.6875 L82.89120483398438 -10.890625 L84.75057983398438 -10.890625 L84.75057983398438 -9.453125 L82.89120483398438 -9.453125 L82.89120483398438 -3.09375 Q82.89120483398438 -2.296875 82.98495483398438 -2.0703125 Q83.07870483398438 -1.84375 83.29745483398438 -1.7109375 Q83.51620483398438 -1.578125 83.93807983398438 -1.578125 Q84.23495483398438 -1.578125 84.75057983398438 -1.65625 Z"/><path d=" M86.59375 0.0 L86.59375 -15.03125 L88.4375 -15.03125 L88.4375 0.0 L86.59375 0.0 Z"/><path d=" M98.82870483398438 -3.5 L100.73495483398438 -3.265625 Q100.28182983398438 -1.59375 99.06307983398438 -0.671875 Q97.84432983398438 0.25 95.93807983398438 0.25 Q93.54745483398438 0.25 92.14901733398438 -1.2265625 Q90.75057983398438 -2.703125 90.75057983398438 -5.359375 Q90.75057983398438 -8.09375 92.16464233398438 -9.6171875 Q93.57870483398438 -11.140625 95.84432983398438 -11.140625 Q98.03182983398438 -11.140625 99.41464233398438 -9.6484375 Q100.79745483398438 -8.15625 100.79745483398438 -5.46875 Q100.79745483398438 -5.296875 100.78182983398438 -4.96875 L92.65682983398438 -4.96875 Q92.76620483398438 -3.171875 93.68026733398438 -2.21875 Q94.59432983398438 -1.265625 95.95370483398438 -1.265625 Q96.96932983398438 -1.265625 97.68807983398438 -1.8046875 Q98.40682983398438 -2.34375 98.82870483398438 -3.5 Z M92.76620483398438 -6.484375 L98.84432983398438 -6.484375 Q98.71932983398438 -7.859375 98.14120483398438 -8.546875 Q97.26620483398438 -9.625 95.85995483398438 -9.625 Q94.59432983398438 -9.625 93.72714233398438 -8.7734375 Q92.85995483398438 -7.921875 92.76620483398438 -6.484375 Z"/></g></g><path d=" M37.00000000000001 132.50461832682294 L145.50461832682294 132.50461832682294 L145.50461832682294 162.50461832682294 L37.00000000000001 162.50461832682294 L37.00000000000001 132.50461832682294 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-125.50461832682294,199.50461832682294)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M459.3971354166667 192.5 L459.3971354166667 178.5" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M448.3971354166667 182.0 L470.3971354166667 182.0 L470.3971354166667 189.0 L448.3971354166667 189.0 L448.3971354166667 182.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M448.3971354166667 182.0 L469.3971354166667 182.0 L469.3971354166667 188.0 L448.3971354166667 188.0 L448.3971354166667 182.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M474.3971354166667 174.0 L539.7591145833334 174.0 L539.7591145833334 197.0 L474.3971354166667 197.0 L474.3971354166667 174.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,477.0638122558594,193.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.71875 -3.6875 L2.15625 -3.8125 Q2.25 -2.953125 2.625 -2.3984375 Q3.0 -1.84375 3.78125 -1.5078125 Q4.5625 -1.171875 5.53125 -1.171875 Q6.40625 -1.171875 7.0703125 -1.4296875 Q7.734375 -1.6875 8.0546875 -2.1328125 Q8.375 -2.578125 8.375 -3.109375 Q8.375 -3.65625 8.0625 -4.0546875 Q7.75 -4.453125 7.03125 -4.734375 Q6.578125 -4.90625 5.0 -5.2890625 Q3.421875 -5.671875 2.78125 -6.0 Q1.96875 -6.4375 1.5625 -7.0703125 Q1.15625 -7.703125 1.15625 -8.5 Q1.15625 -9.359375 1.6484375 -10.1171875 Q2.140625 -10.875 3.0859375 -11.265625 Q4.03125 -11.65625 5.1875 -11.65625 Q6.46875 -11.65625 7.4375 -11.2421875 Q8.40625 -10.828125 8.9296875 -10.03125 Q9.453125 -9.234375 9.5 -8.234375 L8.046875 -8.125 Q7.921875 -9.203125 7.25 -9.7578125 Q6.578125 -10.3125 5.25 -10.3125 Q3.875 -10.3125 3.25 -9.8125 Q2.625 -9.3125 2.625 -8.59375 Q2.625 -7.984375 3.0625 -7.578125 Q3.5 -7.1875 5.3515625 -6.765625 Q7.203125 -6.34375 7.890625 -6.03125 Q8.890625 -5.578125 9.3671875 -4.8671875 Q9.84375 -4.15625 9.84375 -3.234375 Q9.84375 -2.328125 9.3203125 -1.515625 Q8.796875 -0.703125 7.8125 -0.25 Q6.828125 0.203125 5.609375 0.203125 Q4.046875 0.203125 3.0 -0.2578125 Q1.953125 -0.71875 1.3515625 -1.625 Q0.75 -2.53125 0.71875 -3.6875 Z"/><path d=" M17.40625 -2.671875 L18.859375 -2.5 Q18.515625 -1.21875 17.5859375 -0.515625 Q16.65625 0.1875 15.21875 0.1875 Q13.390625 0.1875 12.328125 -0.9375 Q11.265625 -2.0625 11.265625 -4.078125 Q11.265625 -6.171875 12.34375 -7.328125 Q13.421875 -8.484375 15.140625 -8.484375 Q16.796875 -8.484375 17.8515625 -7.3515625 Q18.90625 -6.21875 18.90625 -4.171875 Q18.90625 -4.046875 18.90625 -3.796875 L12.71875 -3.796875 Q12.796875 -2.421875 13.4921875 -1.6953125 Q14.1875 -0.96875 15.21875 -0.96875 Q16.0 -0.96875 16.546875 -1.375 Q17.09375 -1.78125 17.40625 -2.671875 Z M12.796875 -4.953125 L17.421875 -4.953125 Q17.328125 -6.0 16.890625 -6.515625 Q16.21875 -7.328125 15.15625 -7.328125 Q14.1875 -7.328125 13.5234375 -6.6796875 Q12.859375 -6.03125 12.796875 -4.953125 Z"/><path d=" M20.6171875 0.0 L20.6171875 -8.296875 L21.8828125 -8.296875 L21.8828125 -7.046875 Q22.3671875 -7.921875 22.7734375 -8.203125 Q23.1796875 -8.484375 23.6796875 -8.484375 Q24.3828125 -8.484375 25.1171875 -8.03125 L24.6328125 -6.734375 Q24.1171875 -7.03125 23.6015625 -7.03125 Q23.1484375 -7.03125 22.78125 -6.7578125 Q22.4140625 -6.484375 22.2578125 -5.984375 Q22.0234375 -5.234375 22.0234375 -4.34375 L22.0234375 0.0 L20.6171875 0.0 Z"/><path d=" M25.9609375 -9.84375 L25.9609375 -11.453125 L27.3671875 -11.453125 L27.3671875 -9.84375 L25.9609375 -9.84375 Z M25.9609375 0.0 L25.9609375 -8.296875 L27.3671875 -8.296875 L27.3671875 0.0 L25.9609375 0.0 Z"/><path d=" M35.1875 -2.671875 L36.640625 -2.5 Q36.296875 -1.21875 35.3671875 -0.515625 Q34.4375 0.1875 33.0 0.1875 Q31.171875 0.1875 30.109375 -0.9375 Q29.046875 -2.0625 29.046875 -4.078125 Q29.046875 -6.171875 30.125 -7.328125 Q31.203125 -8.484375 32.921875 -8.484375 Q34.578125 -8.484375 35.6328125 -7.3515625 Q36.6875 -6.21875 36.6875 -4.171875 Q36.6875 -4.046875 36.6875 -3.796875 L30.5 -3.796875 Q30.578125 -2.421875 31.2734375 -1.6953125 Q31.96875 -0.96875 33.0 -0.96875 Q33.78125 -0.96875 34.328125 -1.375 Q34.875 -1.78125 35.1875 -2.671875 Z M30.578125 -4.953125 L35.203125 -4.953125 Q35.109375 -6.0 34.671875 -6.515625 Q34.0 -7.328125 32.9375 -7.328125 Q31.96875 -7.328125 31.3046875 -6.6796875 Q30.640625 -6.03125 30.578125 -4.953125 Z"/><path d=" M37.8515625 -2.484375 L39.2421875 -2.703125 Q39.3515625 -1.859375 39.890625 -1.4140625 Q40.4296875 -0.96875 41.3828125 -0.96875 Q42.3515625 -0.96875 42.8203125 -1.3671875 Q43.2890625 -1.765625 43.2890625 -2.296875 Q43.2890625 -2.765625 42.8828125 -3.046875 Q42.5859375 -3.234375 41.4453125 -3.515625 Q39.8984375 -3.90625 39.296875 -4.1953125 Q38.6953125 -4.484375 38.390625 -4.984375 Q38.0859375 -5.484375 38.0859375 -6.09375 Q38.0859375 -6.65625 38.3359375 -7.125 Q38.5859375 -7.59375 39.0234375 -7.90625 Q39.3515625 -8.15625 39.921875 -8.3203125 Q40.4921875 -8.484375 41.1328125 -8.484375 Q42.1171875 -8.484375 42.8515625 -8.203125 Q43.5859375 -7.921875 43.9375 -7.4453125 Q44.2890625 -6.96875 44.4296875 -6.15625 L43.0546875 -5.96875 Q42.9609375 -6.609375 42.5078125 -6.96875 Q42.0546875 -7.328125 41.2421875 -7.328125 Q40.2734375 -7.328125 39.859375 -7.0078125 Q39.4453125 -6.6875 39.4453125 -6.265625 Q39.4453125 -5.984375 39.6171875 -5.765625 Q39.7890625 -5.546875 40.1484375 -5.390625 Q40.3671875 -5.3125 41.3984375 -5.03125 Q42.8828125 -4.640625 43.4765625 -4.3828125 Q44.0703125 -4.125 44.40625 -3.640625 Q44.7421875 -3.15625 44.7421875 -2.4375 Q44.7421875 -1.734375 44.328125 -1.1171875 Q43.9140625 -0.5 43.140625 -0.15625 Q42.3671875 0.1875 41.3984375 0.1875 Q39.7734375 0.1875 38.9296875 -0.484375 Q38.0859375 -1.15625 37.8515625 -2.484375 Z"/><path d=""/><path d=" M55.765625 0.0 L54.359375 0.0 L54.359375 -8.96875 Q53.84375 -8.484375 53.0234375 -8.0 Q52.203125 -7.515625 51.546875 -7.265625 L51.546875 -8.625 Q52.71875 -9.1875 53.6015625 -9.9765625 Q54.484375 -10.765625 54.859375 -11.5 L55.765625 -11.5 L55.765625 0.0 Z"/></g></g><path d=" M474.3971354166667 174.0 L539.7591145833334 174.0 L539.7591145833334 197.0 L474.3971354166667 197.0 L474.3971354166667 174.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/></g><g style="fill-opacity:0.01;fill:#FFFFFF;"/></svg> \ No newline at end of file
+]]></script><style type="text/css"><![CDATA[.tooltip.text{ text-anchor:left;font-size:12pt;fill:black;}.tooltip{fill:rgb(244,245,235)}]]></style><path d=" M0.0 0.0 L533.0 0.0 L533.0 333.0 L0.0 333.0 L0.0 0.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M4.0 4.0 L149.36979166666666 4.0 L149.36979166666666 49.0 L4.0 49.0 L4.0 4.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="32" style="fill-opacity:1.0;fill:#000000;" x="6.6666665" y="42.0">ChartTitle</text><path d=" M4.0 4.0 L149.36979166666666 4.0 L149.36979166666666 49.0 L4.0 49.0 L4.0 4.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M63.37239583333333 54.0 L436.73046875 54.0 L436.73046875 277.3333333333333 L63.37239583333333 277.3333333333333 L63.37239583333333 54.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M63.37239583333333 283.0 L435.73046875 283.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M63.0 278.0 L63.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M249.0 278.0 L249.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M435.0 278.0 L435.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M63.37239583333332 305.0 L171.87701416015625 305.0 L171.87701416015625 335.0 L63.37239583333332 335.0 L63.37239583333332 305.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="21" style="fill-opacity:1.0;fill:#000000;" x="66.03906" y="330.0">X-AxisTitle</text><path d=" M63.37239583333332 305.0 L171.87701416015625 305.0 L171.87701416015625 335.0 L63.37239583333332 335.0 L63.37239583333332 305.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M56.705729166666664 276.3333333333333 L56.705729166666664 54.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M51.705729166666664 276.0 L61.705729166666664 276.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M51.705729166666664 256.0 L61.705729166666664 256.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M51.705729166666664 235.0 L61.705729166666664 235.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M51.705729166666664 215.0 L61.705729166666664 215.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M51.705729166666664 195.0 L61.705729166666664 195.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M51.705729166666664 175.0 L61.705729166666664 175.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M51.705729166666664 155.0 L61.705729166666664 155.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M51.705729166666664 134.0 L61.705729166666664 134.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M51.705729166666664 114.0 L61.705729166666664 114.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M51.705729166666664 94.0 L61.705729166666664 94.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M51.705729166666664 74.0 L61.705729166666664 74.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M51.705729166666664 54.0 L61.705729166666664 54.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M37.00000000000001 132.50461832682294 L145.50461832682294 132.50461832682294 L145.50461832682294 162.50461832682294 L37.00000000000001 162.50461832682294 L37.00000000000001 132.50461832682294 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-125.50461832682294,199.50461832682294)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="21" style="fill-opacity:1.0;fill:#000000;" transform="matrix(-0.0,-1.0,1.0,0.0,-125.50461832682294,199.50461832682294)" x="39.666668" y="157.50462">Y-AxisTitle</text><path d=" M37.00000000000001 132.50461832682294 L145.50461832682294 132.50461832682294 L145.50461832682294 162.50461832682294 L37.00000000000001 162.50461832682294 L37.00000000000001 132.50461832682294 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-125.50461832682294,199.50461832682294)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M156.0 223.7818181818182 L156.0 138.89090909090922" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M156.0 94.4242424242426 L156.0 62.08484848484872" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M94.0 94.0 L94.0 138.0 L217.0 138.0 L217.0 94.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M342.0 151.01818181818192 L342.0 138.89090909090922" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M342.0 110.59393939393956 L342.0 106.5515151515153" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M280.0 138.0 L280.0 110.0 L403.0 110.0 L403.0 138.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M280.0 138.0 L280.0 110.0 L403.0 110.0 L403.0 138.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M111.83430989583334 289.0 L200.3447265625 289.0 L200.3447265625 312.0 L111.83430989583334 312.0 L111.83430989583334 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="114.50098" y="308.0">01-25-2005</text><path d=" M111.83430989583334 289.0 L200.3447265625 289.0 L200.3447265625 312.0 L111.83430989583334 312.0 L111.83430989583334 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M297.83430989583337 289.0 L386.34472656250006 289.0 L386.34472656250006 312.0 L297.83430989583337 312.0 L297.83430989583337 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="300.50098" y="308.0">01-26-2005</text><path d=" M297.83430989583337 289.0 L386.34472656250006 289.0 L386.34472656250006 312.0 L297.83430989583337 312.0 L297.83430989583337 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M63.37239583333332 305.0 L171.87701416015625 305.0 L171.87701416015625 335.0 L63.37239583333332 335.0 L63.37239583333332 305.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="21" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="66.03906" y="330.0">X-AxisTitle</text><path d=" M63.37239583333332 305.0 L171.87701416015625 305.0 L171.87701416015625 335.0 L63.37239583333332 335.0 L63.37239583333332 305.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.796875 264.5 L50.705729166666664 264.5 L50.705729166666664 287.5 L21.796875 287.5 L21.796875 264.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="24.463541" y="283.5">0.0</text><path d=" M21.796875 264.5 L50.705729166666664 264.5 L50.705729166666664 287.5 L21.796875 287.5 L21.796875 264.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.796875 244.5 L50.705729166666664 244.5 L50.705729166666664 267.5 L21.796875 267.5 L21.796875 244.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="24.463541" y="263.5">0.5</text><path d=" M21.796875 244.5 L50.705729166666664 244.5 L50.705729166666664 267.5 L21.796875 267.5 L21.796875 244.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.796875 223.5 L50.705729166666664 223.5 L50.705729166666664 246.5 L21.796875 246.5 L21.796875 223.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="24.463541" y="242.5">1.0</text><path d=" M21.796875 223.5 L50.705729166666664 223.5 L50.705729166666664 246.5 L21.796875 246.5 L21.796875 223.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.796875 203.5 L50.705729166666664 203.5 L50.705729166666664 226.5 L21.796875 226.5 L21.796875 203.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="24.463541" y="222.5">1.5</text><path d=" M21.796875 203.5 L50.705729166666664 203.5 L50.705729166666664 226.5 L21.796875 226.5 L21.796875 203.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.796875 183.5 L50.705729166666664 183.5 L50.705729166666664 206.5 L21.796875 206.5 L21.796875 183.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="24.463541" y="202.5">2.0</text><path d=" M21.796875 183.5 L50.705729166666664 183.5 L50.705729166666664 206.5 L21.796875 206.5 L21.796875 183.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.796875 163.5 L50.705729166666664 163.5 L50.705729166666664 186.5 L21.796875 186.5 L21.796875 163.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="24.463541" y="182.5">2.5</text><path d=" M21.796875 163.5 L50.705729166666664 163.5 L50.705729166666664 186.5 L21.796875 186.5 L21.796875 163.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.796875 143.5 L50.705729166666664 143.5 L50.705729166666664 166.5 L21.796875 166.5 L21.796875 143.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="24.463541" y="162.5">3.0</text><path d=" M21.796875 143.5 L50.705729166666664 143.5 L50.705729166666664 166.5 L21.796875 166.5 L21.796875 143.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.796875 122.5 L50.705729166666664 122.5 L50.705729166666664 145.5 L21.796875 145.5 L21.796875 122.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="24.463541" y="141.5">3.5</text><path d=" M21.796875 122.5 L50.705729166666664 122.5 L50.705729166666664 145.5 L21.796875 145.5 L21.796875 122.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.796875 102.5 L50.705729166666664 102.5 L50.705729166666664 125.5 L21.796875 125.5 L21.796875 102.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="24.463541" y="121.5">4.0</text><path d=" M21.796875 102.5 L50.705729166666664 102.5 L50.705729166666664 125.5 L21.796875 125.5 L21.796875 102.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.796875 82.5 L50.705729166666664 82.5 L50.705729166666664 105.5 L21.796875 105.5 L21.796875 82.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="24.463541" y="101.5">4.5</text><path d=" M21.796875 82.5 L50.705729166666664 82.5 L50.705729166666664 105.5 L21.796875 105.5 L21.796875 82.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.796875 62.5 L50.705729166666664 62.5 L50.705729166666664 85.5 L21.796875 85.5 L21.796875 62.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="24.463541" y="81.5">5.0</text><path d=" M21.796875 62.5 L50.705729166666664 62.5 L50.705729166666664 85.5 L21.796875 85.5 L21.796875 62.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.796875 42.5 L50.705729166666664 42.5 L50.705729166666664 65.5 L21.796875 65.5 L21.796875 42.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="24.463541" y="61.5">5.5</text><path d=" M21.796875 42.5 L50.705729166666664 42.5 L50.705729166666664 65.5 L21.796875 65.5 L21.796875 42.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M37.00000000000001 132.50461832682294 L145.50461832682294 132.50461832682294 L145.50461832682294 162.50461832682294 L37.00000000000001 162.50461832682294 L37.00000000000001 132.50461832682294 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-125.50461832682294,199.50461832682294)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="21" style="fill-opacity:1.0;fill:#000000;" transform="matrix(-0.0,-1.0,1.0,0.0,-125.50461832682294,199.50461832682294)" x="39.666668" y="157.50462">Y-AxisTitle</text><path d=" M37.00000000000001 132.50461832682294 L145.50461832682294 132.50461832682294 L145.50461832682294 162.50461832682294 L37.00000000000001 162.50461832682294 L37.00000000000001 132.50461832682294 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-125.50461832682294,199.50461832682294)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M459.3971354166667 192.5 L459.3971354166667 178.5" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M448.3971354166667 182.0 L470.3971354166667 182.0 L470.3971354166667 189.0 L448.3971354166667 189.0 L448.3971354166667 182.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M448.3971354166667 182.0 L469.3971354166667 182.0 L469.3971354166667 188.0 L448.3971354166667 188.0 L448.3971354166667 182.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M474.3971354166667 174.0 L539.7591145833334 174.0 L539.7591145833334 197.0 L474.3971354166667 197.0 L474.3971354166667 174.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="477.0638" y="193.0">Series 1</text><path d=" M474.3971354166667 174.0 L539.7591145833334 174.0 L539.7591145833334 197.0 L474.3971354166667 197.0 L474.3971354166667 174.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/></g><g id="hotSpots" style="fill-opacity:0.01;fill:#FFFFFF;"/></svg> \ No newline at end of file
diff --git a/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/2dvert.svg b/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/2dvert.svg
index 2497772..b628f06 100644
--- a/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/2dvert.svg
+++ b/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/2dvert.svg
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="533.0" height="333.0"><g style="fill:none;stroke:none"><defs/><script><![CDATA[function BuildHelper(tag, attrList, text) {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="533.0" height="333.0"><g id="outerG" style="fill:none;stroke:none"><defs/><script><![CDATA[function BuildHelper(tag, attrList, text) {
this.tag = tag;
this.attrList = attrList;
this.text = text;
@@ -71,42 +71,82 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
}
}
- TM.show = function TooltiplManager_showTooltip(evt){
- var text = TM.getText(TM.getTitleElement(evt));
- x = evt.clientX;
- y = evt.clientY;
- if (typeof this.group == 'undefined'){
- this.height = 15;
- this.xPadding = 5;
- this.yPadding = -20;
- var mainSvg = evt.target.ownerDocument.documentElement;
- var off = mainSvg.currentTranslate;
- var scl = mainSvg.currentScale;
- this.group = new BuildHelper("g",
- {
- transform:"translate("+(((x+20))/scl)+","+(((y+20))/scl)+")"
- } );
- this.group.addToParent(mainSvg);
- this.rectangle = new BuildHelper("rect",
- {id:"test",
- x: 0,
- y: this.yPadding,
- height: this.height,
- classType: "tooltip"
- } );
- this.rectangle.addToParent(this.group.element);
- var textObj = new BuildHelper("text",
- {id:"tooltip",
- x: this.xPadding,
- y: (this.height/2+4+this.yPadding),
- classType: "tooltip text"
- },text);
- textObj.addToParent(this.group.element);
- var itemlength = textObj.element.getComputedTextLength();
- this.rectangle.element.setAttributeNS(null, "width", (itemlength+2*this.xPadding));
- }
- }
-
+ TM.show = function TooltiplManager_showTooltip(evt){
+ var text = TM.getText(TM.getTitleElement(evt));
+ x = evt.clientX;
+ y = evt.clientY;
+ update = true;
+ if (this.oldX != 'undefined'){
+ diffX = (x - this.oldX);
+ if (diffX < 0) diffX= diffX*(-1);
+ diffY = (y - this.oldY);
+ if (diffY < 0) diffY= diffY*(-1);
+ if ((diffY > 5) || (diffX > 5))
+ update = true;
+ }
+ if (update)
+ TM.remove();
+ if (typeof this.group == 'undefined'){
+ this.oldX = x;
+ this.oldY = y;
+ this.height = 15;
+ this.xPadding = 5;
+ this.yPadding = 20;
+ var mainSvg = evt.target.ownerDocument.documentElement;
+ var off = mainSvg.currentTranslate;
+ var scl = mainSvg.currentScale;
+ var adjustedX = (x-off.x)/scl;
+ var adjustedY = (y-off.y)/scl;
+ this.group = new BuildHelper("g",
+ {
+ opacity:0.8,
+ display: "inline",
+ transform:"translate("+(adjustedX + (10/scl))+","+(adjustedY + (10/scl))+")"
+ } );
+ this.group.addToParent(mainSvg);
+ this.rectangle = new BuildHelper("rect",
+ {id:"test",
+ x: 0,
+ y: 5,
+ transform:"scale("+(1/scl)+","+(1/scl)+")",
+ rx: 2,
+ ry: 2,
+ stroke: "black",
+ height: this.height,
+ classType: "tooltip"
+ } );
+ this.rectangle.addToParent(this.group.element);
+ var textObj = new BuildHelper("text",
+ {id:"tooltip",
+ x: this.xPadding,
+ y: (this.yPadding),
+ transform:"scale("+(1/scl)+","+(1/scl)+")",
+ classType: "tooltip text"
+ });
+ textObj.addToParent(this.group.element);
+ TM.setContent(textObj, text);
+ var outline = textObj.element.getBBox();
+ this.rectangle.element.setAttributeNS(null, "width", (outline.width+2*this.xPadding));
+ this.rectangle.element.setAttributeNS(null, "height", (outline.height+6));
+ }
+ }
+ TM.setContent = function TooltipManager_setContent(textElement, text){
+ var multiLine = text.split(/\\n/);
+ for (var x=0; x<multiLine.length; x++){
+ if (x == 0){
+ textObj = new BuildHelper("tspan",
+ {x: 5
+ },multiLine[x]);
+ }
+ else{
+ textObj = new BuildHelper("tspan",
+ {x: 5,
+ dy:17
+ },multiLine[x]);
+ }
+ textObj.addToParent(textElement.element);
+ }
+ }
TM.getTitleElement = function TM_getTitleElement(evt){
var elem = evt.currentTarget;
@@ -126,15 +166,18 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
return childs.item(x).nodeValue;
return "";
}
- function toggleVisibility(evt, id, compList){
+ function toggleLabelsVisibility(evt, id, compList, labelList){
var mainSvg = evt.target.ownerDocument;
for (i = 0; i < compList.length; i=i+1){
var comp = mainSvg.getElementById(id+'_'+compList[i]);
+ if ( comp == null ) continue;
var styleStr = comp.getAttribute("style");
- rVisibleExp=/visibility:visible/g;
- rHiddenExp=/visibility:hidden/g;
+ rVisibleExp=/visibility:[ ]*visible/g;
+ rInheritExp=/visibility:[ ]*inherit/g;
+ rHiddenExp=/visibility:[ ]*hidden/g;
results = styleStr.search(rVisibleExp);
- if (results == -1){
+ inResults = styleStr.search(rInheritExp);
+ if ((results == -1) && (inResults == -1)){
results = styleStr.search(rHiddenExp);
if (results == -1)
styleStr = styleStr + "visibility:hidden;";
@@ -142,10 +185,74 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
styleStr = styleStr.replace(rHiddenExp,"visibility:visible");
}
else{
+ if (inResults == -1){
styleStr = styleStr.replace(rVisibleExp,"visibility:hidden");
+ }else{
+ styleStr = styleStr.replace(rInheritExp,"visibility:hidden");
+ }
}
comp.setAttributeNS(null, "style", styleStr);
}
+ }
+ function toggleVisibility(evt, id, compList, labelList){
+ var mainSvg = evt.target.ownerDocument;
+ var isHidden = true;
+ for (i = 0; i < compList.length; i=i+1){
+ var comp = mainSvg.getElementById(id+'_'+compList[i]);
+ if ( comp == null ) continue;
+ var styleStr = comp.getAttribute("style");
+ rVisibleExp=/visibility:[ ]*visible/g;
+ rHiddenExp=/visibility:[ ]*hidden/g;
+ results = styleStr.search(rVisibleExp);
+ if (results == -1){
+ results = styleStr.search(rHiddenExp);
+ if (results == -1)
+ styleStr = styleStr + "visibility:hidden;";
+ else{
+ styleStr = styleStr.replace(rHiddenExp,"visibility:visible");
+ isHidden = false;
+ }
+ }
+ else{
+ styleStr = styleStr.replace(rVisibleExp,"visibility:hidden");
+ }
+ comp.setAttributeNS(null, "style", styleStr);
+ }
+ if (labelList != null){
+ for (i = 0; i < labelList.length; i=i+1){
+ var comp = mainSvg.getElementById(id+'_'+labelList[i]+'_g');
+ var styleStr = comp.getAttribute("style");
+ if (isHidden){
+ styleStr = styleStr + "visibility:hidden;";
+ toggleLabelVisibility(evt, id+'_'+labelList[i], 'inherit');
+ }else{
+ styleStr = styleStr.replace(rHiddenExp,"visibility:visible");
+ }
+ comp.setAttributeNS(null, "style", styleStr);
+ }
+ }
+ }
+ function toggleLabelVisibility(evt, id, property){
+ var mainSvg = evt.target.ownerDocument;
+ var comp = mainSvg.getElementById(id);
+ var styleStr = comp.getAttribute("style");
+ rVisibleExp=/visibility:[ ]*visible/g;
+ rInheritExp=/visibility:[ ]*inherit/g;
+ rHiddenExp=/visibility:[ ]*hidden/g;
+ results = styleStr.search(rVisibleExp);
+ inResults = styleStr.search(rInheritExp);
+ if ((results == -1) && (inResults == -1)){
+ results = styleStr.search(rHiddenExp);
+ if (results == -1)
+ styleStr = styleStr + "visibility:"+property+";";
+ }
+ else{
+ if (inResults == -1)
+ styleStr = styleStr.replace(rVisibleExp,"visibility:"+property);
+ else
+ styleStr = styleStr.replace(rInheritExp,"visibility:"+property);
+ }
+ comp.setAttributeNS(null, "style", styleStr);
}
function toHex(val)
{
@@ -162,51 +269,104 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
}
var oldCompId = null;
var oldCompList = null;
+ var fillToColor = new Array();
+ var strokeToColor = new Array();
function highlight(evt, id, compList){
- highlightElement(evt, oldCompId, oldCompList);
+ highlightElement(evt, oldCompId, oldCompList, false);
if (id != oldCompId){
- highlightElement(evt, id, compList);
+ highlightElement(evt, id, compList, true);
oldCompId = id;
oldCompList = compList;
}
else{
oldCompId = null;
oldCompList = null;
+ fillToColor = new Array();
+ strokeToColor = new Array();
}
}
- function highlightElement(evt, id, compList){
+ function highlightElement(evt, id, compList, highlight){
if ((id == null) || (compList == null)) return;
var mainSvg = evt.target.ownerDocument;
for (i = 0; i < compList.length; i=i+1){
var comp = mainSvg.getElementById(id+'_'+compList[i]);
+ if ( comp == null ) continue;
var styleStr = comp.getAttribute("style");
fillIndex = styleStr.search("fill:");
if (fillIndex != -1){
- styleStr = getNewStyle(styleStr, fillIndex, "fill:");
+ styleStr = getNewStyle(styleStr, fillIndex, "fill:", highlight, fillToColor, compList[i]);
}
strokeIndex = styleStr.search("stroke:");
if (strokeIndex != -1){
- styleStr = getNewStyle(styleStr, strokeIndex, "stroke:");
+ styleStr = getNewStyle(styleStr, strokeIndex, "stroke:", highlight, strokeToColor, compList[i]);
}
comp.setAttributeNS(null, "style", styleStr);
}
}
- function getNewStyle(style, index, styleAttr){
+ function getNewStyle(style, index, styleAttr, highlight, lookUpTable, id){
color = style.substring(index+styleAttr.length, style.length );
rgbIndex = color.search("rgb");
if (rgbIndex == -1){
hexColor = color.substring(1, 7);
- hc = getXorColor(hexColor);
+ hc = getHighlight(hexColor, highlight, lookUpTable, id);
return style.replace(styleAttr+"#"+hexColor,styleAttr+hc);
}
else{
bracketIndex = color.search("\\)");
color = color.substring(0, bracketIndex);
hexColor = getHexFromRGB(color);
- hc = getXorColor(hexColor);
+ hc = getHighlight(hexColor, highlight, lookUpTable, id);
return style.substring(0, index) + styleAttr+hc+ style.substring(index+bracketIndex+styleAttr.length+1, style.length);
}
}
+ function isIE(){
+ var agt=parent.navigator.userAgent.toLowerCase();
+ return (agt.indexOf("msie")!=-1);
+}
+ function resizeSVG(e){
+ if(isIE()){
+ var root=e.target.ownerDocument.documentElement;
+ var hotSpot = e.target.ownerDocument.getElementById('hotSpots');
+ var g = e.target.ownerDocument.getElementById('outerG');
+ var xScale = (innerWidth) / root.getAttribute('width');
+ var yScale = (innerHeight) / root.getAttribute('height');
+ g.setAttributeNS(null, 'transform', 'scale('+xScale+','+yScale+')');
+ hotSpot.setAttributeNS(null, 'transform', 'scale('+xScale+','+yScale+')');
+ }
+ }
+ function getHighlight(color, highlight, lookupTable, id){
+ if (!(highlight)){
+ color = lookupTable[id];
+ }
+ else{
+ lookupTable[id] = color;
+ }
+ r = color.substring(0, 2);
+ r = parseInt(r, 16);
+ g = color.substring(2, 4);
+ g = parseInt(g, 16);
+ b = color.substring(4, 6);
+ b = parseInt(b, 16);
+ var value = parseInt(r, 16);
+ if (highlight){
+ r = Math.ceil( (r + 255) / 2 );
+ g = Math.ceil( (g + 255) / 2 );
+ b = Math.ceil( (b + 255) / 2 );
+ }
+ rStr = r.toString(16);
+ gStr = g.toString(16);
+ bStr = b.toString(16);
+ while (rStr.length < 2){
+ rStr = "0"+rStr;
+ }
+ while (gStr.length < 2){
+ gStr = "0"+gStr;
+ }
+ while (bStr.length < 2){
+ bStr = "0"+bStr;
+ }
+return "#"+rStr+gStr+bStr;
+}
function getHexFromRGB(color){
findThem = /\d{1,3}/g;
listOfnum = color.match(findThem);
@@ -224,4 +384,4 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
}
return r+g+b;
}
-]]></script><style type="text/css"><![CDATA[.tooltip.text{ text-anchor:left;font-size:12pt;fill:black;}.tooltip{fill:rgb(244,245,235)}]]></style><path d=" M0.0 0.0 L533.0 0.0 L533.0 333.0 L0.0 333.0 L0.0 0.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M4.0 4.0 L234.76041666666666 4.0 L234.76041666666666 49.0 L4.0 49.0 L4.0 4.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,6.666666507720947,42.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M2.34375 0.0 L2.34375 -22.90625 L10.9375 -22.90625 Q13.5625 -22.90625 15.1484375 -22.2109375 Q16.734375 -21.515625 17.6328125 -20.0703125 Q18.53125 -18.625 18.53125 -17.046875 Q18.53125 -15.578125 17.734375 -14.28125 Q16.9375 -12.984375 15.328125 -12.1875 Q17.40625 -11.578125 18.5234375 -10.109375 Q19.640625 -8.640625 19.640625 -6.640625 Q19.640625 -5.03125 18.9609375 -3.6484375 Q18.28125 -2.265625 17.28125 -1.515625 Q16.28125 -0.765625 14.7734375 -0.3828125 Q13.265625 0.0 11.078125 0.0 L2.34375 0.0 Z M5.375 -13.28125 L10.328125 -13.28125 Q12.34375 -13.28125 13.21875 -13.546875 Q14.375 -13.890625 14.9609375 -14.6875 Q15.546875 -15.484375 15.546875 -16.6875 Q15.546875 -17.828125 15.0 -18.6953125 Q14.453125 -19.5625 13.4375 -19.8828125 Q12.421875 -20.203125 9.953125 -20.203125 L5.375 -20.203125 L5.375 -13.28125 Z M5.375 -2.703125 L11.078125 -2.703125 Q12.546875 -2.703125 13.140625 -2.8125 Q14.1875 -3.0 14.890625 -3.4375 Q15.59375 -3.875 16.046875 -4.7109375 Q16.5 -5.546875 16.5 -6.640625 Q16.5 -7.921875 15.84375 -8.8671875 Q15.1875 -9.8125 14.0234375 -10.1953125 Q12.859375 -10.578125 10.671875 -10.578125 L5.375 -10.578125 L5.375 -2.703125 Z"/><path d=" M34.28125 -2.046875 Q32.71875 -0.71875 31.2734375 -0.171875 Q29.828125 0.375 28.171875 0.375 Q25.4375 0.375 23.96875 -0.9609375 Q22.5 -2.296875 22.5 -4.375 Q22.5 -5.59375 23.0546875 -6.6015625 Q23.609375 -7.609375 24.5078125 -8.21875 Q25.40625 -8.828125 26.53125 -9.140625 Q27.359375 -9.359375 29.03125 -9.5625 Q32.4375 -9.96875 34.046875 -10.53125 Q34.0625 -11.109375 34.0625 -11.265625 Q34.0625 -12.984375 33.265625 -13.6875 Q32.1875 -14.640625 30.0625 -14.640625 Q28.078125 -14.640625 27.1328125 -13.9453125 Q26.1875 -13.25 25.734375 -11.484375 L22.984375 -11.859375 Q23.359375 -13.625 24.21875 -14.7109375 Q25.078125 -15.796875 26.703125 -16.3828125 Q28.328125 -16.96875 30.46875 -16.96875 Q32.59375 -16.96875 33.921875 -16.46875 Q35.25 -15.96875 35.875 -15.2109375 Q36.5 -14.453125 36.75 -13.296875 Q36.890625 -12.578125 36.890625 -10.703125 L36.890625 -6.953125 Q36.890625 -3.03125 37.0703125 -1.9921875 Q37.25 -0.953125 37.78125 0.0 L34.84375 0.0 Q34.40625 -0.875 34.28125 -2.046875 Z M34.046875 -8.328125 Q32.515625 -7.703125 29.453125 -7.265625 Q27.71875 -7.015625 27.0 -6.703125 Q26.28125 -6.390625 25.890625 -5.7890625 Q25.5 -5.1875 25.5 -4.453125 Q25.5 -3.328125 26.3515625 -2.578125 Q27.203125 -1.828125 28.84375 -1.828125 Q30.46875 -1.828125 31.734375 -2.5390625 Q33.0 -3.25 33.59375 -4.484375 Q34.046875 -5.4375 34.046875 -7.296875 L34.046875 -8.328125 Z"/><path d=" M41.21875 0.0 L41.21875 -16.59375 L43.75 -16.59375 L43.75 -14.078125 Q44.71875 -15.84375 45.5390625 -16.40625 Q46.359375 -16.96875 47.34375 -16.96875 Q48.765625 -16.96875 50.234375 -16.0625 L49.265625 -13.453125 Q48.234375 -14.0625 47.203125 -14.0625 Q46.28125 -14.0625 45.546875 -13.5078125 Q44.8125 -12.953125 44.5 -11.96875 Q44.03125 -10.46875 44.03125 -8.6875 L44.03125 0.0 L41.21875 0.0 Z"/><path d=" M49.3125 6.359375 L49.3125 4.328125 L67.953125 4.328125 L67.953125 6.359375 L49.3125 6.359375 Z"/><path d=" M86.40625 -8.03125 L89.4375 -7.265625 Q88.484375 -3.53125 86.0078125 -1.5703125 Q83.53125 0.390625 79.953125 0.390625 Q76.25 0.390625 73.9296875 -1.1171875 Q71.609375 -2.625 70.3984375 -5.484375 Q69.1875 -8.34375 69.1875 -11.625 Q69.1875 -15.203125 70.5546875 -17.8671875 Q71.921875 -20.53125 74.4453125 -21.9140625 Q76.96875 -23.296875 80.0 -23.296875 Q83.4375 -23.296875 85.78125 -21.546875 Q88.125 -19.796875 89.046875 -16.625 L86.0625 -15.921875 Q85.265625 -18.421875 83.75 -19.5625 Q82.234375 -20.703125 79.9375 -20.703125 Q77.296875 -20.703125 75.5234375 -19.4375 Q73.75 -18.171875 73.03125 -16.0390625 Q72.3125 -13.90625 72.3125 -11.640625 Q72.3125 -8.71875 73.1640625 -6.5390625 Q74.015625 -4.359375 75.8125 -3.28125 Q77.609375 -2.203125 79.703125 -2.203125 Q82.25 -2.203125 84.015625 -3.671875 Q85.78125 -5.140625 86.40625 -8.03125 Z"/><path d=" M92.8125 0.0 L92.8125 -22.90625 L95.625 -22.90625 L95.625 -14.6875 Q97.59375 -16.96875 100.59375 -16.96875 Q102.4375 -16.96875 103.796875 -16.2421875 Q105.15625 -15.515625 105.7421875 -14.234375 Q106.328125 -12.953125 106.328125 -10.515625 L106.328125 0.0 L103.515625 0.0 L103.515625 -10.515625 Q103.515625 -12.625 102.6015625 -13.5859375 Q101.6875 -14.546875 100.015625 -14.546875 Q98.765625 -14.546875 97.6640625 -13.8984375 Q96.5625 -13.25 96.09375 -12.140625 Q95.625 -11.03125 95.625 -9.078125 L95.625 0.0 L92.8125 0.0 Z"/><path d=" M121.4375 -2.046875 Q119.875 -0.71875 118.4296875 -0.171875 Q116.984375 0.375 115.328125 0.375 Q112.59375 0.375 111.125 -0.9609375 Q109.65625 -2.296875 109.65625 -4.375 Q109.65625 -5.59375 110.2109375 -6.6015625 Q110.765625 -7.609375 111.6640625 -8.21875 Q112.5625 -8.828125 113.6875 -9.140625 Q114.515625 -9.359375 116.1875 -9.5625 Q119.59375 -9.96875 121.203125 -10.53125 Q121.21875 -11.109375 121.21875 -11.265625 Q121.21875 -12.984375 120.421875 -13.6875 Q119.34375 -14.640625 117.21875 -14.640625 Q115.234375 -14.640625 114.2890625 -13.9453125 Q113.34375 -13.25 112.890625 -11.484375 L110.140625 -11.859375 Q110.515625 -13.625 111.375 -14.7109375 Q112.234375 -15.796875 113.859375 -16.3828125 Q115.484375 -16.96875 117.625 -16.96875 Q119.75 -16.96875 121.078125 -16.46875 Q122.40625 -15.96875 123.03125 -15.2109375 Q123.65625 -14.453125 123.90625 -13.296875 Q124.046875 -12.578125 124.046875 -10.703125 L124.046875 -6.953125 Q124.046875 -3.03125 124.2265625 -1.9921875 Q124.40625 -0.953125 124.9375 0.0 L122.0 0.0 Q121.5625 -0.875 121.4375 -2.046875 Z M121.203125 -8.328125 Q119.671875 -7.703125 116.609375 -7.265625 Q114.875 -7.015625 114.15625 -6.703125 Q113.4375 -6.390625 113.046875 -5.7890625 Q112.65625 -5.1875 112.65625 -4.453125 Q112.65625 -3.328125 113.5078125 -2.578125 Q114.359375 -1.828125 116.0 -1.828125 Q117.625 -1.828125 118.890625 -2.5390625 Q120.15625 -3.25 120.75 -4.484375 Q121.203125 -5.4375 121.203125 -7.296875 L121.203125 -8.328125 Z"/><path d=" M128.375 0.0 L128.375 -16.59375 L130.90625 -16.59375 L130.90625 -14.078125 Q131.875 -15.84375 132.6953125 -16.40625 Q133.515625 -16.96875 134.5 -16.96875 Q135.921875 -16.96875 137.390625 -16.0625 L136.421875 -13.453125 Q135.390625 -14.0625 134.359375 -14.0625 Q133.4375 -14.0625 132.703125 -13.5078125 Q131.96875 -12.953125 131.65625 -11.96875 Q131.1875 -10.46875 131.1875 -8.6875 L131.1875 0.0 L128.375 0.0 Z"/><path d=" M145.203125 -2.515625 L145.609375 -0.03125 Q144.421875 0.21875 143.484375 0.21875 Q141.953125 0.21875 141.109375 -0.265625 Q140.265625 -0.75 139.921875 -1.5390625 Q139.578125 -2.328125 139.578125 -4.859375 L139.578125 -14.40625 L137.515625 -14.40625 L137.515625 -16.59375 L139.578125 -16.59375 L139.578125 -20.703125 L142.375 -22.390625 L142.375 -16.59375 L145.203125 -16.59375 L145.203125 -14.40625 L142.375 -14.40625 L142.375 -4.703125 Q142.375 -3.5 142.5234375 -3.15625 Q142.671875 -2.8125 143.0078125 -2.609375 Q143.34375 -2.40625 143.96875 -2.40625 Q144.4375 -2.40625 145.203125 -2.515625 Z"/><path d=" M145.359375 6.359375 L145.359375 4.328125 L164.0 4.328125 L164.0 6.359375 L145.359375 6.359375 Z"/><path d=" M171.9375 0.0 L171.9375 -20.203125 L164.390625 -20.203125 L164.390625 -22.90625 L182.546875 -22.90625 L182.546875 -20.203125 L174.96875 -20.203125 L174.96875 0.0 L171.9375 0.0 Z"/><path d=" M185.3125 -19.671875 L185.3125 -22.90625 L188.125 -22.90625 L188.125 -19.671875 L185.3125 -19.671875 Z M185.3125 0.0 L185.3125 -16.59375 L188.125 -16.59375 L188.125 0.0 L185.3125 0.0 Z"/><path d=" M198.546875 -2.515625 L198.953125 -0.03125 Q197.765625 0.21875 196.828125 0.21875 Q195.296875 0.21875 194.453125 -0.265625 Q193.609375 -0.75 193.265625 -1.5390625 Q192.921875 -2.328125 192.921875 -4.859375 L192.921875 -14.40625 L190.859375 -14.40625 L190.859375 -16.59375 L192.921875 -16.59375 L192.921875 -20.703125 L195.71875 -22.390625 L195.71875 -16.59375 L198.546875 -16.59375 L198.546875 -14.40625 L195.71875 -14.40625 L195.71875 -4.703125 Q195.71875 -3.5 195.8671875 -3.15625 Q196.015625 -2.8125 196.3515625 -2.609375 Q196.6875 -2.40625 197.3125 -2.40625 Q197.78125 -2.40625 198.546875 -2.515625 Z"/><path d=" M201.234375 0.0 L201.234375 -22.90625 L204.046875 -22.90625 L204.046875 0.0 L201.234375 0.0 Z"/><path d=" M219.765625 -5.34375 L222.671875 -4.984375 Q221.984375 -2.4375 220.125 -1.03125 Q218.265625 0.375 215.375 0.375 Q211.734375 0.375 209.6015625 -1.8671875 Q207.46875 -4.109375 207.46875 -8.15625 Q207.46875 -12.34375 209.625 -14.65625 Q211.78125 -16.96875 215.21875 -16.96875 Q218.546875 -16.96875 220.65625 -14.703125 Q222.765625 -12.4375 222.765625 -8.328125 Q222.765625 -8.078125 222.75 -7.578125 L210.375 -7.578125 Q210.53125 -4.84375 211.921875 -3.390625 Q213.3125 -1.9375 215.390625 -1.9375 Q216.9375 -1.9375 218.03125 -2.75 Q219.125 -3.5625 219.765625 -5.34375 Z M210.53125 -9.890625 L219.796875 -9.890625 Q219.609375 -11.984375 218.734375 -13.03125 Q217.390625 -14.65625 215.25 -14.65625 Q213.3125 -14.65625 211.9921875 -13.359375 Q210.671875 -12.0625 210.53125 -9.890625 Z"/></g></g><path d=" M4.0 4.0 L234.76041666666666 4.0 L234.76041666666666 49.0 L4.0 49.0 L4.0 4.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M58.81966145833333 54.0 L436.73046875 54.0 L436.73046875 277.3333333333333 L58.81966145833333 277.3333333333333 L58.81966145833333 54.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M58.81966145833333 283.0 L435.73046875 283.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M58.0 278.0 L58.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M184.0 278.0 L184.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M310.0 278.0 L310.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M435.0 278.0 L435.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M58.81966145833332 305.0 L179.17727661132812 305.0 L179.17727661132812 335.0 L58.81966145833332 335.0 L58.81966145833332 305.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,61.486328125,330.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.09375 0.0 L5.90625 -7.828125 L0.78125 -15.03125 L3.140625 -15.03125 L5.875 -11.171875 Q6.734375 -9.984375 7.078125 -9.328125 Q7.59375 -10.15625 8.28125 -11.046875 L11.296875 -15.03125 L13.46875 -15.03125 L8.1875 -7.953125 L13.875 0.0 L11.40625 0.0 L7.625 -5.359375 Q7.3125 -5.828125 6.96875 -6.375 Q6.46875 -5.546875 6.25 -5.234375 L2.484375 0.0 L0.09375 0.0 Z"/><path d=" M14.88714599609375 -4.515625 L14.88714599609375 -6.375 L20.55902099609375 -6.375 L20.55902099609375 -4.515625 L14.88714599609375 -4.515625 Z"/><path d=" M21.28125 0.0 L27.0625 -15.03125 L29.203125 -15.03125 L35.34375 0.0 L33.078125 0.0 L31.328125 -4.546875 L25.046875 -4.546875 L23.390625 0.0 L21.28125 0.0 Z M25.625 -6.171875 L30.71875 -6.171875 L29.140625 -10.34375 Q28.421875 -12.234375 28.078125 -13.453125 Q27.796875 -12.0 27.265625 -10.578125 L25.625 -6.171875 Z"/><path d=" M35.68402099609375 0.0 L39.65277099609375 -5.65625 L35.98089599609375 -10.890625 L38.29339599609375 -10.890625 L39.96527099609375 -8.34375 Q40.43402099609375 -7.609375 40.71527099609375 -7.109375 Q41.16839599609375 -7.796875 41.54339599609375 -8.3125 L43.38714599609375 -10.890625 L45.59027099609375 -10.890625 L41.82464599609375 -5.765625 L45.87152099609375 0.0 L43.60589599609375 0.0 L41.37152099609375 -3.390625 L40.77777099609375 -4.296875 L37.91839599609375 0.0 L35.68402099609375 0.0 Z"/><path d=" M47.57464599609375 -12.90625 L47.57464599609375 -15.03125 L49.41839599609375 -15.03125 L49.41839599609375 -12.90625 L47.57464599609375 -12.90625 Z M47.57464599609375 0.0 L47.57464599609375 -10.890625 L49.41839599609375 -10.890625 L49.41839599609375 0.0 L47.57464599609375 0.0 Z"/><path d=" M51.559600830078125 -3.25 L53.387725830078125 -3.53125 Q53.543975830078125 -2.4375 54.247100830078125 -1.8515625 Q54.950225830078125 -1.265625 56.215850830078125 -1.265625 Q57.481475830078125 -1.265625 58.098663330078125 -1.7890625 Q58.715850830078125 -2.3125 58.715850830078125 -3.0 Q58.715850830078125 -3.625 58.168975830078125 -3.984375 Q57.793975830078125 -4.234375 56.278350830078125 -4.609375 Q54.247100830078125 -5.125 53.465850830078125 -5.5 Q52.684600830078125 -5.875 52.278350830078125 -6.5390625 Q51.872100830078125 -7.203125 51.872100830078125 -8.0 Q51.872100830078125 -8.71875 52.208038330078125 -9.34375 Q52.543975830078125 -9.96875 53.106475830078125 -10.375 Q53.543975830078125 -10.6875 54.286163330078125 -10.9140625 Q55.028350830078125 -11.140625 55.887725830078125 -11.140625 Q57.168975830078125 -11.140625 58.137725830078125 -10.765625 Q59.106475830078125 -10.390625 59.567413330078125 -9.765625 Q60.028350830078125 -9.140625 60.200225830078125 -8.078125 L58.387725830078125 -7.828125 Q58.278350830078125 -8.671875 57.684600830078125 -9.1484375 Q57.090850830078125 -9.625 56.012725830078125 -9.625 Q54.747100830078125 -9.625 54.200225830078125 -9.203125 Q53.653350830078125 -8.78125 53.653350830078125 -8.21875 Q53.653350830078125 -7.859375 53.887725830078125 -7.5625 Q54.106475830078125 -7.265625 54.590850830078125 -7.078125 Q54.872100830078125 -6.96875 56.215850830078125 -6.609375 Q58.184600830078125 -6.078125 58.958038330078125 -5.75 Q59.731475830078125 -5.421875 60.168975830078125 -4.78125 Q60.606475830078125 -4.140625 60.606475830078125 -3.203125 Q60.606475830078125 -2.28125 60.067413330078125 -1.4609375 Q59.528350830078125 -0.640625 58.512725830078125 -0.1953125 Q57.497100830078125 0.25 56.215850830078125 0.25 Q54.090850830078125 0.25 52.981475830078125 -0.6328125 Q51.872100830078125 -1.515625 51.559600830078125 -3.25 Z"/><path d=" M61.262725830078125 4.171875 L61.262725830078125 2.84375 L73.49710083007812 2.84375 L73.49710083007812 4.171875 L61.262725830078125 4.171875 Z"/><path d=" M78.86572265625 0.0 L78.86572265625 -13.265625 L73.92822265625 -13.265625 L73.92822265625 -15.03125 L85.83447265625 -15.03125 L85.83447265625 -13.265625 L80.86572265625 -13.265625 L80.86572265625 0.0 L78.86572265625 0.0 Z"/><path d=" M87.83737182617188 -12.90625 L87.83737182617188 -15.03125 L89.68112182617188 -15.03125 L89.68112182617188 -12.90625 L87.83737182617188 -12.90625 Z M87.83737182617188 0.0 L87.83737182617188 -10.890625 L89.68112182617188 -10.890625 L89.68112182617188 0.0 L87.83737182617188 0.0 Z"/><path d=" M96.60357666015625 -1.65625 L96.86920166015625 -0.015625 Q96.08795166015625 0.140625 95.46295166015625 0.140625 Q94.46295166015625 0.140625 93.90826416015625 -0.1796875 Q93.35357666015625 -0.5 93.12701416015625 -1.015625 Q92.90045166015625 -1.53125 92.90045166015625 -3.1875 L92.90045166015625 -9.453125 L91.55670166015625 -9.453125 L91.55670166015625 -10.890625 L92.90045166015625 -10.890625 L92.90045166015625 -13.59375 L94.74420166015625 -14.6875 L94.74420166015625 -10.890625 L96.60357666015625 -10.890625 L96.60357666015625 -9.453125 L94.74420166015625 -9.453125 L94.74420166015625 -3.09375 Q94.74420166015625 -2.296875 94.83795166015625 -2.0703125 Q94.93170166015625 -1.84375 95.15045166015625 -1.7109375 Q95.36920166015625 -1.578125 95.79107666015625 -1.578125 Q96.08795166015625 -1.578125 96.60357666015625 -1.65625 Z"/><path d=" M98.44674682617188 0.0 L98.44674682617188 -15.03125 L100.29049682617188 -15.03125 L100.29049682617188 0.0 L98.44674682617188 0.0 Z"/><path d=" M110.68170166015625 -3.5 L112.58795166015625 -3.265625 Q112.13482666015625 -1.59375 110.91607666015625 -0.671875 Q109.69732666015625 0.25 107.79107666015625 0.25 Q105.40045166015625 0.25 104.00201416015625 -1.2265625 Q102.60357666015625 -2.703125 102.60357666015625 -5.359375 Q102.60357666015625 -8.09375 104.01763916015625 -9.6171875 Q105.43170166015625 -11.140625 107.69732666015625 -11.140625 Q109.88482666015625 -11.140625 111.26763916015625 -9.6484375 Q112.65045166015625 -8.15625 112.65045166015625 -5.46875 Q112.65045166015625 -5.296875 112.63482666015625 -4.96875 L104.50982666015625 -4.96875 Q104.61920166015625 -3.171875 105.53326416015625 -2.21875 Q106.44732666015625 -1.265625 107.80670166015625 -1.265625 Q108.82232666015625 -1.265625 109.54107666015625 -1.8046875 Q110.25982666015625 -2.34375 110.68170166015625 -3.5 Z M104.61920166015625 -6.484375 L110.69732666015625 -6.484375 Q110.57232666015625 -7.859375 109.99420166015625 -8.546875 Q109.11920166015625 -9.625 107.71295166015625 -9.625 Q106.44732666015625 -9.625 105.58013916015625 -8.7734375 Q104.71295166015625 -7.921875 104.61920166015625 -6.484375 Z"/></g></g><path d=" M58.81966145833332 305.0 L179.17727661132812 305.0 L179.17727661132812 335.0 L58.81966145833332 335.0 L58.81966145833332 305.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M52.152994791666664 276.3333333333333 L52.152994791666664 54.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 276.0 L57.152994791666664 276.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 259.0 L57.152994791666664 259.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 242.0 L57.152994791666664 242.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 225.0 L57.152994791666664 225.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 207.0 L57.152994791666664 207.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 190.0 L57.152994791666664 190.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 173.0 L57.152994791666664 173.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 156.0 L57.152994791666664 156.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 139.0 L57.152994791666664 139.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 122.0 L57.152994791666664 122.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 105.0 L57.152994791666664 105.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 88.0 L57.152994791666664 88.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 71.0 L57.152994791666664 71.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 54.0 L57.152994791666664 54.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M37.00000000000001 144.3576151529948 L157.3576151529948 144.3576151529948 L157.3576151529948 174.3576151529948 L37.00000000000001 174.3576151529948 L37.00000000000001 144.3576151529948 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-137.3576151529948,211.3576151529948)" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(-0.0,-1.0,1.0,0.0,32.000005086263,171.6909472147624)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.859375 0.0 L5.859375 -6.375 L0.0625 -15.03125 L2.484375 -15.03125 L5.4375 -10.5 Q6.265625 -9.234375 6.96875 -7.953125 Q7.65625 -9.140625 8.609375 -10.609375 L11.53125 -15.03125 L13.84375 -15.03125 L7.84375 -6.375 L7.84375 0.0 L5.859375 0.0 Z"/><path d=" M14.88714599609375 -4.515625 L14.88714599609375 -6.375 L20.55902099609375 -6.375 L20.55902099609375 -4.515625 L14.88714599609375 -4.515625 Z"/><path d=" M21.28125 0.0 L27.0625 -15.03125 L29.203125 -15.03125 L35.34375 0.0 L33.078125 0.0 L31.328125 -4.546875 L25.046875 -4.546875 L23.390625 0.0 L21.28125 0.0 Z M25.625 -6.171875 L30.71875 -6.171875 L29.140625 -10.34375 Q28.421875 -12.234375 28.078125 -13.453125 Q27.796875 -12.0 27.265625 -10.578125 L25.625 -6.171875 Z"/><path d=" M35.68402099609375 0.0 L39.65277099609375 -5.65625 L35.98089599609375 -10.890625 L38.29339599609375 -10.890625 L39.96527099609375 -8.34375 Q40.43402099609375 -7.609375 40.71527099609375 -7.109375 Q41.16839599609375 -7.796875 41.54339599609375 -8.3125 L43.38714599609375 -10.890625 L45.59027099609375 -10.890625 L41.82464599609375 -5.765625 L45.87152099609375 0.0 L43.60589599609375 0.0 L41.37152099609375 -3.390625 L40.77777099609375 -4.296875 L37.91839599609375 0.0 L35.68402099609375 0.0 Z"/><path d=" M47.57464599609375 -12.90625 L47.57464599609375 -15.03125 L49.41839599609375 -15.03125 L49.41839599609375 -12.90625 L47.57464599609375 -12.90625 Z M47.57464599609375 0.0 L47.57464599609375 -10.890625 L49.41839599609375 -10.890625 L49.41839599609375 0.0 L47.57464599609375 0.0 Z"/><path d=" M51.559600830078125 -3.25 L53.387725830078125 -3.53125 Q53.543975830078125 -2.4375 54.247100830078125 -1.8515625 Q54.950225830078125 -1.265625 56.215850830078125 -1.265625 Q57.481475830078125 -1.265625 58.098663330078125 -1.7890625 Q58.715850830078125 -2.3125 58.715850830078125 -3.0 Q58.715850830078125 -3.625 58.168975830078125 -3.984375 Q57.793975830078125 -4.234375 56.278350830078125 -4.609375 Q54.247100830078125 -5.125 53.465850830078125 -5.5 Q52.684600830078125 -5.875 52.278350830078125 -6.5390625 Q51.872100830078125 -7.203125 51.872100830078125 -8.0 Q51.872100830078125 -8.71875 52.208038330078125 -9.34375 Q52.543975830078125 -9.96875 53.106475830078125 -10.375 Q53.543975830078125 -10.6875 54.286163330078125 -10.9140625 Q55.028350830078125 -11.140625 55.887725830078125 -11.140625 Q57.168975830078125 -11.140625 58.137725830078125 -10.765625 Q59.106475830078125 -10.390625 59.567413330078125 -9.765625 Q60.028350830078125 -9.140625 60.200225830078125 -8.078125 L58.387725830078125 -7.828125 Q58.278350830078125 -8.671875 57.684600830078125 -9.1484375 Q57.090850830078125 -9.625 56.012725830078125 -9.625 Q54.747100830078125 -9.625 54.200225830078125 -9.203125 Q53.653350830078125 -8.78125 53.653350830078125 -8.21875 Q53.653350830078125 -7.859375 53.887725830078125 -7.5625 Q54.106475830078125 -7.265625 54.590850830078125 -7.078125 Q54.872100830078125 -6.96875 56.215850830078125 -6.609375 Q58.184600830078125 -6.078125 58.958038330078125 -5.75 Q59.731475830078125 -5.421875 60.168975830078125 -4.78125 Q60.606475830078125 -4.140625 60.606475830078125 -3.203125 Q60.606475830078125 -2.28125 60.067413330078125 -1.4609375 Q59.528350830078125 -0.640625 58.512725830078125 -0.1953125 Q57.497100830078125 0.25 56.215850830078125 0.25 Q54.090850830078125 0.25 52.981475830078125 -0.6328125 Q51.872100830078125 -1.515625 51.559600830078125 -3.25 Z"/><path d=" M61.262725830078125 4.171875 L61.262725830078125 2.84375 L73.49710083007812 2.84375 L73.49710083007812 4.171875 L61.262725830078125 4.171875 Z"/><path d=" M78.86572265625 0.0 L78.86572265625 -13.265625 L73.92822265625 -13.265625 L73.92822265625 -15.03125 L85.83447265625 -15.03125 L85.83447265625 -13.265625 L80.86572265625 -13.265625 L80.86572265625 0.0 L78.86572265625 0.0 Z"/><path d=" M87.83737182617188 -12.90625 L87.83737182617188 -15.03125 L89.68112182617188 -15.03125 L89.68112182617188 -12.90625 L87.83737182617188 -12.90625 Z M87.83737182617188 0.0 L87.83737182617188 -10.890625 L89.68112182617188 -10.890625 L89.68112182617188 0.0 L87.83737182617188 0.0 Z"/><path d=" M96.60357666015625 -1.65625 L96.86920166015625 -0.015625 Q96.08795166015625 0.140625 95.46295166015625 0.140625 Q94.46295166015625 0.140625 93.90826416015625 -0.1796875 Q93.35357666015625 -0.5 93.12701416015625 -1.015625 Q92.90045166015625 -1.53125 92.90045166015625 -3.1875 L92.90045166015625 -9.453125 L91.55670166015625 -9.453125 L91.55670166015625 -10.890625 L92.90045166015625 -10.890625 L92.90045166015625 -13.59375 L94.74420166015625 -14.6875 L94.74420166015625 -10.890625 L96.60357666015625 -10.890625 L96.60357666015625 -9.453125 L94.74420166015625 -9.453125 L94.74420166015625 -3.09375 Q94.74420166015625 -2.296875 94.83795166015625 -2.0703125 Q94.93170166015625 -1.84375 95.15045166015625 -1.7109375 Q95.36920166015625 -1.578125 95.79107666015625 -1.578125 Q96.08795166015625 -1.578125 96.60357666015625 -1.65625 Z"/><path d=" M98.44674682617188 0.0 L98.44674682617188 -15.03125 L100.29049682617188 -15.03125 L100.29049682617188 0.0 L98.44674682617188 0.0 Z"/><path d=" M110.68170166015625 -3.5 L112.58795166015625 -3.265625 Q112.13482666015625 -1.59375 110.91607666015625 -0.671875 Q109.69732666015625 0.25 107.79107666015625 0.25 Q105.40045166015625 0.25 104.00201416015625 -1.2265625 Q102.60357666015625 -2.703125 102.60357666015625 -5.359375 Q102.60357666015625 -8.09375 104.01763916015625 -9.6171875 Q105.43170166015625 -11.140625 107.69732666015625 -11.140625 Q109.88482666015625 -11.140625 111.26763916015625 -9.6484375 Q112.65045166015625 -8.15625 112.65045166015625 -5.46875 Q112.65045166015625 -5.296875 112.63482666015625 -4.96875 L104.50982666015625 -4.96875 Q104.61920166015625 -3.171875 105.53326416015625 -2.21875 Q106.44732666015625 -1.265625 107.80670166015625 -1.265625 Q108.82232666015625 -1.265625 109.54107666015625 -1.8046875 Q110.25982666015625 -2.34375 110.68170166015625 -3.5 Z M104.61920166015625 -6.484375 L110.69732666015625 -6.484375 Q110.57232666015625 -7.859375 109.99420166015625 -8.546875 Q109.11920166015625 -9.625 107.71295166015625 -9.625 Q106.44732666015625 -9.625 105.58013916015625 -8.7734375 Q104.71295166015625 -7.921875 104.61920166015625 -6.484375 Z"/></g></g><path d=" M37.00000000000001 144.3576151529948 L157.3576151529948 144.3576151529948 L157.3576151529948 174.3576151529948 L37.00000000000001 174.3576151529948 L37.00000000000001 144.3576151529948 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-137.3576151529948,211.3576151529948)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M89.0 190.0 L89.0 276.0 L151.0 276.0 L151.0 190.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M89.0 190.0 L89.0 276.0 L151.0 276.0 L151.0 190.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#0059b2;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M215.0 207.0 L215.0 276.0 L277.0 276.0 L277.0 207.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M215.0 207.0 L215.0 276.0 L277.0 276.0 L277.0 207.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#0059b2;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M341.0 71.0 L341.0 276.0 L403.0 276.0 L403.0 71.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M341.0 71.0 L341.0 276.0 L403.0 276.0 L403.0 71.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#0059b2;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M106.04557291666667 162.0 L134.95442708333334 162.0 L134.95442708333334 185.0 L106.04557291666667 185.0 L106.04557291666667 162.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,108.71224212646484,181.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.671875 -3.0 L2.140625 -3.125 Q2.3125 -2.046875 2.90625 -1.5078125 Q3.5 -0.96875 4.34375 -0.96875 Q5.359375 -0.96875 6.0625 -1.734375 Q6.765625 -2.5 6.765625 -3.765625 Q6.765625 -4.96875 6.09375 -5.6640625 Q5.421875 -6.359375 4.328125 -6.359375 Q3.640625 -6.359375 3.09375 -6.046875 Q2.546875 -5.734375 2.234375 -5.25 L0.921875 -5.421875 L2.03125 -11.296875 L7.71875 -11.296875 L7.71875 -9.953125 L3.15625 -9.953125 L2.53125 -6.875 Q3.5625 -7.59375 4.703125 -7.59375 Q6.203125 -7.59375 7.234375 -6.5546875 Q8.265625 -5.515625 8.265625 -3.890625 Q8.265625 -2.328125 7.359375 -1.203125 Q6.25 0.203125 4.34375 0.203125 Q2.78125 0.203125 1.796875 -0.6796875 Q0.8125 -1.5625 0.671875 -3.0 Z"/><path d=" M10.3515625 0.0 L10.3515625 -1.609375 L11.9609375 -1.609375 L11.9609375 0.0 L10.3515625 0.0 Z"/><path d=" M14.015625 -5.65625 Q14.015625 -7.6875 14.4296875 -8.921875 Q14.84375 -10.15625 15.671875 -10.828125 Q16.5 -11.5 17.75 -11.5 Q18.671875 -11.5 19.3671875 -11.1328125 Q20.0625 -10.765625 20.515625 -10.0625 Q20.96875 -9.359375 21.2265625 -8.359375 Q21.484375 -7.359375 21.484375 -5.65625 Q21.484375 -3.640625 21.0703125 -2.3984375 Q20.65625 -1.15625 19.828125 -0.4765625 Q19.0 0.203125 17.75 0.203125 Q16.09375 0.203125 15.140625 -1.0 Q14.015625 -2.421875 14.015625 -5.65625 Z M15.453125 -5.65625 Q15.453125 -2.828125 16.1171875 -1.8984375 Q16.78125 -0.96875 17.75 -0.96875 Q18.71875 -0.96875 19.375 -1.90625 Q20.03125 -2.84375 20.03125 -5.65625 Q20.03125 -8.484375 19.375 -9.4140625 Q18.71875 -10.34375 17.734375 -10.34375 Q16.765625 -10.34375 16.1875 -9.515625 Q15.453125 -8.46875 15.453125 -5.65625 Z"/></g></g><path d=" M106.04557291666667 162.0 L134.95442708333334 162.0 L134.95442708333334 185.0 L106.04557291666667 185.0 L106.04557291666667 162.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M232.04557291666666 179.0 L260.9544270833333 179.0 L260.9544270833333 202.0 L232.04557291666666 202.0 L232.04557291666666 179.0 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,234.7122344970703,198.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.171875 0.0 L5.171875 -2.75 L0.203125 -2.75 L0.203125 -4.03125 L5.4375 -11.453125 L6.578125 -11.453125 L6.578125 -4.03125 L8.125 -4.03125 L8.125 -2.75 L6.578125 -2.75 L6.578125 0.0 L5.171875 0.0 Z M5.171875 -4.03125 L5.171875 -9.203125 L1.59375 -4.03125 L5.171875 -4.03125 Z"/><path d=" M10.3515625 0.0 L10.3515625 -1.609375 L11.9609375 -1.609375 L11.9609375 0.0 L10.3515625 0.0 Z"/><path d=" M14.015625 -5.65625 Q14.015625 -7.6875 14.4296875 -8.921875 Q14.84375 -10.15625 15.671875 -10.828125 Q16.5 -11.5 17.75 -11.5 Q18.671875 -11.5 19.3671875 -11.1328125 Q20.0625 -10.765625 20.515625 -10.0625 Q20.96875 -9.359375 21.2265625 -8.359375 Q21.484375 -7.359375 21.484375 -5.65625 Q21.484375 -3.640625 21.0703125 -2.3984375 Q20.65625 -1.15625 19.828125 -0.4765625 Q19.0 0.203125 17.75 0.203125 Q16.09375 0.203125 15.140625 -1.0 Q14.015625 -2.421875 14.015625 -5.65625 Z M15.453125 -5.65625 Q15.453125 -2.828125 16.1171875 -1.8984375 Q16.78125 -0.96875 17.75 -0.96875 Q18.71875 -0.96875 19.375 -1.90625 Q20.03125 -2.84375 20.03125 -5.65625 Q20.03125 -8.484375 19.375 -9.4140625 Q18.71875 -10.34375 17.734375 -10.34375 Q16.765625 -10.34375 16.1875 -9.515625 Q15.453125 -8.46875 15.453125 -5.65625 Z"/></g></g><path d=" M232.04557291666666 179.0 L260.9544270833333 179.0 L260.9544270833333 202.0 L232.04557291666666 202.0 L232.04557291666666 179.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M353.5963541666667 43.0 L391.40364583333337 43.0 L391.40364583333337 66.0 L353.5963541666667 66.0 L353.5963541666667 43.0 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,356.2630310058594,62.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.96875 0.0 L4.5625 0.0 L4.5625 -8.96875 Q4.046875 -8.484375 3.2265625 -8.0 Q2.40625 -7.515625 1.75 -7.265625 L1.75 -8.625 Q2.921875 -9.1875 3.8046875 -9.9765625 Q4.6875 -10.765625 5.0625 -11.5 L5.96875 -11.5 L5.96875 0.0 Z"/><path d=" M16.9609375 -1.359375 L16.9609375 0.0 L9.3828125 0.0 Q9.3671875 -0.515625 9.5546875 -0.984375 Q9.8359375 -1.75 10.4765625 -2.5 Q11.1171875 -3.25 12.3203125 -4.234375 Q14.1796875 -5.765625 14.8359375 -6.6640625 Q15.4921875 -7.5625 15.4921875 -8.359375 Q15.4921875 -9.1875 14.8984375 -9.765625 Q14.3046875 -10.34375 13.3359375 -10.34375 Q12.3203125 -10.34375 11.7109375 -9.734375 Q11.1015625 -9.125 11.1015625 -8.046875 L9.6484375 -8.1875 Q9.8046875 -9.8125 10.7734375 -10.65625 Q11.7421875 -11.5 13.3671875 -11.5 Q15.0234375 -11.5 15.984375 -10.5859375 Q16.9453125 -9.671875 16.9453125 -8.328125 Q16.9453125 -7.640625 16.6640625 -6.9765625 Q16.3828125 -6.3125 15.7265625 -5.578125 Q15.0703125 -4.84375 13.5546875 -3.5625 Q12.2890625 -2.5 11.9296875 -2.1171875 Q11.5703125 -1.734375 11.3359375 -1.359375 L16.9609375 -1.359375 Z"/><path d=" M19.25 0.0 L19.25 -1.609375 L20.859375 -1.609375 L20.859375 0.0 L19.25 0.0 Z"/><path d=" M22.9140625 -5.65625 Q22.9140625 -7.6875 23.328125 -8.921875 Q23.7421875 -10.15625 24.5703125 -10.828125 Q25.3984375 -11.5 26.6484375 -11.5 Q27.5703125 -11.5 28.265625 -11.1328125 Q28.9609375 -10.765625 29.4140625 -10.0625 Q29.8671875 -9.359375 30.125 -8.359375 Q30.3828125 -7.359375 30.3828125 -5.65625 Q30.3828125 -3.640625 29.96875 -2.3984375 Q29.5546875 -1.15625 28.7265625 -0.4765625 Q27.8984375 0.203125 26.6484375 0.203125 Q24.9921875 0.203125 24.0390625 -1.0 Q22.9140625 -2.421875 22.9140625 -5.65625 Z M24.3515625 -5.65625 Q24.3515625 -2.828125 25.015625 -1.8984375 Q25.6796875 -0.96875 26.6484375 -0.96875 Q27.6171875 -0.96875 28.2734375 -1.90625 Q28.9296875 -2.84375 28.9296875 -5.65625 Q28.9296875 -8.484375 28.2734375 -9.4140625 Q27.6171875 -10.34375 26.6328125 -10.34375 Q25.6640625 -10.34375 25.0859375 -9.515625 Q24.3515625 -8.46875 24.3515625 -5.65625 Z"/></g></g><path d=" M353.5963541666667 43.0 L391.40364583333337 43.0 L391.40364583333337 66.0 L353.5963541666667 66.0 L353.5963541666667 43.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M112.14919704861113 289.0 L129.4877387152778 289.0 L129.4877387152778 312.0 L112.14919704861113 312.0 L112.14919704861113 289.0 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,114.81586456298828,308.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M-0.03125 0.0 L4.375 -11.453125 L6.015625 -11.453125 L10.703125 0.0 L8.96875 0.0 L7.640625 -3.46875 L2.84375 -3.46875 L1.59375 0.0 L-0.03125 0.0 Z M3.28125 -4.703125 L7.171875 -4.703125 L5.96875 -7.875 Q5.421875 -9.328125 5.15625 -10.25 Q4.9375 -9.15625 4.546875 -8.0625 L3.28125 -4.703125 Z"/></g></g><path d=" M112.14919704861113 289.0 L129.4877387152778 289.0 L129.4877387152778 312.0 L112.14919704861113 312.0 L112.14919704861113 289.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M238.14919704861111 289.0 L255.48773871527777 289.0 L255.48773871527777 312.0 L238.14919704861111 312.0 L238.14919704861111 289.0 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,240.81585693359375,308.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M1.171875 0.0 L1.171875 -11.453125 L5.46875 -11.453125 Q6.78125 -11.453125 7.578125 -11.109375 Q8.375 -10.765625 8.8203125 -10.0390625 Q9.265625 -9.3125 9.265625 -8.53125 Q9.265625 -7.796875 8.8671875 -7.1484375 Q8.46875 -6.5 7.671875 -6.09375 Q8.703125 -5.796875 9.265625 -5.0625 Q9.828125 -4.328125 9.828125 -3.328125 Q9.828125 -2.515625 9.484375 -1.828125 Q9.140625 -1.140625 8.640625 -0.765625 Q8.140625 -0.390625 7.390625 -0.1953125 Q6.640625 0.0 5.546875 0.0 L1.171875 0.0 Z M2.6875 -6.640625 L5.171875 -6.640625 Q6.171875 -6.640625 6.609375 -6.78125 Q7.1875 -6.953125 7.484375 -7.3515625 Q7.78125 -7.75 7.78125 -8.34375 Q7.78125 -8.921875 7.5078125 -9.3515625 Q7.234375 -9.78125 6.7265625 -9.9453125 Q6.21875 -10.109375 4.984375 -10.109375 L2.6875 -10.109375 L2.6875 -6.640625 Z M2.6875 -1.359375 L5.546875 -1.359375 Q6.28125 -1.359375 6.578125 -1.40625 Q7.09375 -1.5 7.4453125 -1.71875 Q7.796875 -1.9375 8.0234375 -2.359375 Q8.25 -2.78125 8.25 -3.328125 Q8.25 -3.96875 7.921875 -4.4375 Q7.59375 -4.90625 7.015625 -5.1015625 Q6.4375 -5.296875 5.34375 -5.296875 L2.6875 -5.296875 L2.6875 -1.359375 Z"/></g></g><path d=" M238.14919704861111 289.0 L255.48773871527777 289.0 L255.48773871527777 312.0 L238.14919704861111 312.0 L238.14919704861111 289.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M363.70779079861114 289.0 L381.9291449652778 289.0 L381.9291449652778 312.0 L363.70779079861114 312.0 L363.70779079861114 289.0 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,366.37445068359375,308.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M9.40625 -4.015625 L10.921875 -3.640625 Q10.453125 -1.765625 9.2109375 -0.78125 Q7.96875 0.203125 6.1875 0.203125 Q4.328125 0.203125 3.171875 -0.5546875 Q2.015625 -1.3125 1.40625 -2.7421875 Q0.796875 -4.171875 0.796875 -5.8125 Q0.796875 -7.609375 1.484375 -8.9375 Q2.171875 -10.265625 3.4296875 -10.9609375 Q4.6875 -11.65625 6.203125 -11.65625 Q7.921875 -11.65625 9.09375 -10.78125 Q10.265625 -9.90625 10.734375 -8.3125 L9.234375 -7.96875 Q8.84375 -9.21875 8.0859375 -9.7890625 Q7.328125 -10.359375 6.171875 -10.359375 Q4.859375 -10.359375 3.96875 -9.7265625 Q3.078125 -9.09375 2.71875 -8.0234375 Q2.359375 -6.953125 2.359375 -5.828125 Q2.359375 -4.359375 2.7890625 -3.2734375 Q3.21875 -2.1875 4.1171875 -1.6484375 Q5.015625 -1.109375 6.0625 -1.109375 Q7.328125 -1.109375 8.2109375 -1.84375 Q9.09375 -2.578125 9.40625 -4.015625 Z"/></g></g><path d=" M363.70779079861114 289.0 L381.9291449652778 289.0 L381.9291449652778 312.0 L363.70779079861114 312.0 L363.70779079861114 289.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M58.81966145833332 305.0 L179.17727661132812 305.0 L179.17727661132812 335.0 L58.81966145833332 335.0 L58.81966145833332 305.0 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,61.486328125,330.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.09375 0.0 L5.90625 -7.828125 L0.78125 -15.03125 L3.140625 -15.03125 L5.875 -11.171875 Q6.734375 -9.984375 7.078125 -9.328125 Q7.59375 -10.15625 8.28125 -11.046875 L11.296875 -15.03125 L13.46875 -15.03125 L8.1875 -7.953125 L13.875 0.0 L11.40625 0.0 L7.625 -5.359375 Q7.3125 -5.828125 6.96875 -6.375 Q6.46875 -5.546875 6.25 -5.234375 L2.484375 0.0 L0.09375 0.0 Z"/><path d=" M14.88714599609375 -4.515625 L14.88714599609375 -6.375 L20.55902099609375 -6.375 L20.55902099609375 -4.515625 L14.88714599609375 -4.515625 Z"/><path d=" M21.28125 0.0 L27.0625 -15.03125 L29.203125 -15.03125 L35.34375 0.0 L33.078125 0.0 L31.328125 -4.546875 L25.046875 -4.546875 L23.390625 0.0 L21.28125 0.0 Z M25.625 -6.171875 L30.71875 -6.171875 L29.140625 -10.34375 Q28.421875 -12.234375 28.078125 -13.453125 Q27.796875 -12.0 27.265625 -10.578125 L25.625 -6.171875 Z"/><path d=" M35.68402099609375 0.0 L39.65277099609375 -5.65625 L35.98089599609375 -10.890625 L38.29339599609375 -10.890625 L39.96527099609375 -8.34375 Q40.43402099609375 -7.609375 40.71527099609375 -7.109375 Q41.16839599609375 -7.796875 41.54339599609375 -8.3125 L43.38714599609375 -10.890625 L45.59027099609375 -10.890625 L41.82464599609375 -5.765625 L45.87152099609375 0.0 L43.60589599609375 0.0 L41.37152099609375 -3.390625 L40.77777099609375 -4.296875 L37.91839599609375 0.0 L35.68402099609375 0.0 Z"/><path d=" M47.57464599609375 -12.90625 L47.57464599609375 -15.03125 L49.41839599609375 -15.03125 L49.41839599609375 -12.90625 L47.57464599609375 -12.90625 Z M47.57464599609375 0.0 L47.57464599609375 -10.890625 L49.41839599609375 -10.890625 L49.41839599609375 0.0 L47.57464599609375 0.0 Z"/><path d=" M51.559600830078125 -3.25 L53.387725830078125 -3.53125 Q53.543975830078125 -2.4375 54.247100830078125 -1.8515625 Q54.950225830078125 -1.265625 56.215850830078125 -1.265625 Q57.481475830078125 -1.265625 58.098663330078125 -1.7890625 Q58.715850830078125 -2.3125 58.715850830078125 -3.0 Q58.715850830078125 -3.625 58.168975830078125 -3.984375 Q57.793975830078125 -4.234375 56.278350830078125 -4.609375 Q54.247100830078125 -5.125 53.465850830078125 -5.5 Q52.684600830078125 -5.875 52.278350830078125 -6.5390625 Q51.872100830078125 -7.203125 51.872100830078125 -8.0 Q51.872100830078125 -8.71875 52.208038330078125 -9.34375 Q52.543975830078125 -9.96875 53.106475830078125 -10.375 Q53.543975830078125 -10.6875 54.286163330078125 -10.9140625 Q55.028350830078125 -11.140625 55.887725830078125 -11.140625 Q57.168975830078125 -11.140625 58.137725830078125 -10.765625 Q59.106475830078125 -10.390625 59.567413330078125 -9.765625 Q60.028350830078125 -9.140625 60.200225830078125 -8.078125 L58.387725830078125 -7.828125 Q58.278350830078125 -8.671875 57.684600830078125 -9.1484375 Q57.090850830078125 -9.625 56.012725830078125 -9.625 Q54.747100830078125 -9.625 54.200225830078125 -9.203125 Q53.653350830078125 -8.78125 53.653350830078125 -8.21875 Q53.653350830078125 -7.859375 53.887725830078125 -7.5625 Q54.106475830078125 -7.265625 54.590850830078125 -7.078125 Q54.872100830078125 -6.96875 56.215850830078125 -6.609375 Q58.184600830078125 -6.078125 58.958038330078125 -5.75 Q59.731475830078125 -5.421875 60.168975830078125 -4.78125 Q60.606475830078125 -4.140625 60.606475830078125 -3.203125 Q60.606475830078125 -2.28125 60.067413330078125 -1.4609375 Q59.528350830078125 -0.640625 58.512725830078125 -0.1953125 Q57.497100830078125 0.25 56.215850830078125 0.25 Q54.090850830078125 0.25 52.981475830078125 -0.6328125 Q51.872100830078125 -1.515625 51.559600830078125 -3.25 Z"/><path d=" M61.262725830078125 4.171875 L61.262725830078125 2.84375 L73.49710083007812 2.84375 L73.49710083007812 4.171875 L61.262725830078125 4.171875 Z"/><path d=" M78.86572265625 0.0 L78.86572265625 -13.265625 L73.92822265625 -13.265625 L73.92822265625 -15.03125 L85.83447265625 -15.03125 L85.83447265625 -13.265625 L80.86572265625 -13.265625 L80.86572265625 0.0 L78.86572265625 0.0 Z"/><path d=" M87.83737182617188 -12.90625 L87.83737182617188 -15.03125 L89.68112182617188 -15.03125 L89.68112182617188 -12.90625 L87.83737182617188 -12.90625 Z M87.83737182617188 0.0 L87.83737182617188 -10.890625 L89.68112182617188 -10.890625 L89.68112182617188 0.0 L87.83737182617188 0.0 Z"/><path d=" M96.60357666015625 -1.65625 L96.86920166015625 -0.015625 Q96.08795166015625 0.140625 95.46295166015625 0.140625 Q94.46295166015625 0.140625 93.90826416015625 -0.1796875 Q93.35357666015625 -0.5 93.12701416015625 -1.015625 Q92.90045166015625 -1.53125 92.90045166015625 -3.1875 L92.90045166015625 -9.453125 L91.55670166015625 -9.453125 L91.55670166015625 -10.890625 L92.90045166015625 -10.890625 L92.90045166015625 -13.59375 L94.74420166015625 -14.6875 L94.74420166015625 -10.890625 L96.60357666015625 -10.890625 L96.60357666015625 -9.453125 L94.74420166015625 -9.453125 L94.74420166015625 -3.09375 Q94.74420166015625 -2.296875 94.83795166015625 -2.0703125 Q94.93170166015625 -1.84375 95.15045166015625 -1.7109375 Q95.36920166015625 -1.578125 95.79107666015625 -1.578125 Q96.08795166015625 -1.578125 96.60357666015625 -1.65625 Z"/><path d=" M98.44674682617188 0.0 L98.44674682617188 -15.03125 L100.29049682617188 -15.03125 L100.29049682617188 0.0 L98.44674682617188 0.0 Z"/><path d=" M110.68170166015625 -3.5 L112.58795166015625 -3.265625 Q112.13482666015625 -1.59375 110.91607666015625 -0.671875 Q109.69732666015625 0.25 107.79107666015625 0.25 Q105.40045166015625 0.25 104.00201416015625 -1.2265625 Q102.60357666015625 -2.703125 102.60357666015625 -5.359375 Q102.60357666015625 -8.09375 104.01763916015625 -9.6171875 Q105.43170166015625 -11.140625 107.69732666015625 -11.140625 Q109.88482666015625 -11.140625 111.26763916015625 -9.6484375 Q112.65045166015625 -8.15625 112.65045166015625 -5.46875 Q112.65045166015625 -5.296875 112.63482666015625 -4.96875 L104.50982666015625 -4.96875 Q104.61920166015625 -3.171875 105.53326416015625 -2.21875 Q106.44732666015625 -1.265625 107.80670166015625 -1.265625 Q108.82232666015625 -1.265625 109.54107666015625 -1.8046875 Q110.25982666015625 -2.34375 110.68170166015625 -3.5 Z M104.61920166015625 -6.484375 L110.69732666015625 -6.484375 Q110.57232666015625 -7.859375 109.99420166015625 -8.546875 Q109.11920166015625 -9.625 107.71295166015625 -9.625 Q106.44732666015625 -9.625 105.58013916015625 -8.7734375 Q104.71295166015625 -7.921875 104.61920166015625 -6.484375 Z"/></g></g><path d=" M58.81966145833332 305.0 L179.17727661132812 305.0 L179.17727661132812 335.0 L58.81966145833332 335.0 L58.81966145833332 305.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 264.5 L46.152994791666664 264.5 L46.152994791666664 287.5 L30.587890625 287.5 L30.587890625 264.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,33.25455856323242,283.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.671875 -5.65625 Q0.671875 -7.6875 1.0859375 -8.921875 Q1.5 -10.15625 2.328125 -10.828125 Q3.15625 -11.5 4.40625 -11.5 Q5.328125 -11.5 6.0234375 -11.1328125 Q6.71875 -10.765625 7.171875 -10.0625 Q7.625 -9.359375 7.8828125 -8.359375 Q8.140625 -7.359375 8.140625 -5.65625 Q8.140625 -3.640625 7.7265625 -2.3984375 Q7.3125 -1.15625 6.484375 -0.4765625 Q5.65625 0.203125 4.40625 0.203125 Q2.75 0.203125 1.796875 -1.0 Q0.671875 -2.421875 0.671875 -5.65625 Z M2.109375 -5.65625 Q2.109375 -2.828125 2.7734375 -1.8984375 Q3.4375 -0.96875 4.40625 -0.96875 Q5.375 -0.96875 6.03125 -1.90625 Q6.6875 -2.84375 6.6875 -5.65625 Q6.6875 -8.484375 6.03125 -9.4140625 Q5.375 -10.34375 4.390625 -10.34375 Q3.421875 -10.34375 2.84375 -9.515625 Q2.109375 -8.46875 2.109375 -5.65625 Z"/></g></g><path d=" M30.587890625 264.5 L46.152994791666664 264.5 L46.152994791666664 287.5 L30.587890625 287.5 L30.587890625 264.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 247.5 L46.152994791666664 247.5 L46.152994791666664 270.5 L30.587890625 270.5 L30.587890625 247.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,33.25455856323242,266.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.96875 0.0 L4.5625 0.0 L4.5625 -8.96875 Q4.046875 -8.484375 3.2265625 -8.0 Q2.40625 -7.515625 1.75 -7.265625 L1.75 -8.625 Q2.921875 -9.1875 3.8046875 -9.9765625 Q4.6875 -10.765625 5.0625 -11.5 L5.96875 -11.5 L5.96875 0.0 Z"/></g></g><path d=" M30.587890625 247.5 L46.152994791666664 247.5 L46.152994791666664 270.5 L30.587890625 270.5 L30.587890625 247.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 230.5 L46.152994791666664 230.5 L46.152994791666664 253.5 L30.587890625 253.5 L30.587890625 230.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,33.25455856323242,249.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M8.0625 -1.359375 L8.0625 0.0 L0.484375 0.0 Q0.46875 -0.515625 0.65625 -0.984375 Q0.9375 -1.75 1.578125 -2.5 Q2.21875 -3.25 3.421875 -4.234375 Q5.28125 -5.765625 5.9375 -6.6640625 Q6.59375 -7.5625 6.59375 -8.359375 Q6.59375 -9.1875 6.0 -9.765625 Q5.40625 -10.34375 4.4375 -10.34375 Q3.421875 -10.34375 2.8125 -9.734375 Q2.203125 -9.125 2.203125 -8.046875 L0.75 -8.1875 Q0.90625 -9.8125 1.875 -10.65625 Q2.84375 -11.5 4.46875 -11.5 Q6.125 -11.5 7.0859375 -10.5859375 Q8.046875 -9.671875 8.046875 -8.328125 Q8.046875 -7.640625 7.765625 -6.9765625 Q7.484375 -6.3125 6.828125 -5.578125 Q6.171875 -4.84375 4.65625 -3.5625 Q3.390625 -2.5 3.03125 -2.1171875 Q2.671875 -1.734375 2.4375 -1.359375 L8.0625 -1.359375 Z"/></g></g><path d=" M30.587890625 230.5 L46.152994791666664 230.5 L46.152994791666664 253.5 L30.587890625 253.5 L30.587890625 230.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 213.5 L46.152994791666664 213.5 L46.152994791666664 236.5 L30.587890625 236.5 L30.587890625 213.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,33.25455856323242,232.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.671875 -3.03125 L2.078125 -3.21875 Q2.328125 -2.015625 2.90625 -1.4921875 Q3.484375 -0.96875 4.328125 -0.96875 Q5.3125 -0.96875 6.0 -1.65625 Q6.6875 -2.34375 6.6875 -3.359375 Q6.6875 -4.328125 6.0546875 -4.953125 Q5.421875 -5.578125 4.4375 -5.578125 Q4.046875 -5.578125 3.453125 -5.421875 L3.609375 -6.65625 Q3.75 -6.640625 3.828125 -6.640625 Q4.734375 -6.640625 5.453125 -7.109375 Q6.171875 -7.578125 6.171875 -8.5625 Q6.171875 -9.328125 5.6484375 -9.8359375 Q5.125 -10.34375 4.296875 -10.34375 Q3.46875 -10.34375 2.921875 -9.828125 Q2.375 -9.3125 2.21875 -8.28125 L0.8125 -8.53125 Q1.078125 -9.953125 1.9921875 -10.7265625 Q2.90625 -11.5 4.265625 -11.5 Q5.203125 -11.5 5.9921875 -11.1015625 Q6.78125 -10.703125 7.1953125 -10.0078125 Q7.609375 -9.3125 7.609375 -8.53125 Q7.609375 -7.78125 7.2109375 -7.171875 Q6.8125 -6.5625 6.03125 -6.203125 Q7.046875 -5.96875 7.609375 -5.234375 Q8.171875 -4.5 8.171875 -3.390625 Q8.171875 -1.890625 7.078125 -0.84375 Q5.984375 0.203125 4.3125 0.203125 Q2.8125 0.203125 1.8125 -0.6953125 Q0.8125 -1.59375 0.671875 -3.03125 Z"/></g></g><path d=" M30.587890625 213.5 L46.152994791666664 213.5 L46.152994791666664 236.5 L30.587890625 236.5 L30.587890625 213.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 195.5 L46.152994791666664 195.5 L46.152994791666664 218.5 L30.587890625 218.5 L30.587890625 195.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,33.25455856323242,214.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.171875 0.0 L5.171875 -2.75 L0.203125 -2.75 L0.203125 -4.03125 L5.4375 -11.453125 L6.578125 -11.453125 L6.578125 -4.03125 L8.125 -4.03125 L8.125 -2.75 L6.578125 -2.75 L6.578125 0.0 L5.171875 0.0 Z M5.171875 -4.03125 L5.171875 -9.203125 L1.59375 -4.03125 L5.171875 -4.03125 Z"/></g></g><path d=" M30.587890625 195.5 L46.152994791666664 195.5 L46.152994791666664 218.5 L30.587890625 218.5 L30.587890625 195.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 178.5 L46.152994791666664 178.5 L46.152994791666664 201.5 L30.587890625 201.5 L30.587890625 178.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,33.25455856323242,197.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.671875 -3.0 L2.140625 -3.125 Q2.3125 -2.046875 2.90625 -1.5078125 Q3.5 -0.96875 4.34375 -0.96875 Q5.359375 -0.96875 6.0625 -1.734375 Q6.765625 -2.5 6.765625 -3.765625 Q6.765625 -4.96875 6.09375 -5.6640625 Q5.421875 -6.359375 4.328125 -6.359375 Q3.640625 -6.359375 3.09375 -6.046875 Q2.546875 -5.734375 2.234375 -5.25 L0.921875 -5.421875 L2.03125 -11.296875 L7.71875 -11.296875 L7.71875 -9.953125 L3.15625 -9.953125 L2.53125 -6.875 Q3.5625 -7.59375 4.703125 -7.59375 Q6.203125 -7.59375 7.234375 -6.5546875 Q8.265625 -5.515625 8.265625 -3.890625 Q8.265625 -2.328125 7.359375 -1.203125 Q6.25 0.203125 4.34375 0.203125 Q2.78125 0.203125 1.796875 -0.6796875 Q0.8125 -1.5625 0.671875 -3.0 Z"/></g></g><path d=" M30.587890625 178.5 L46.152994791666664 178.5 L46.152994791666664 201.5 L30.587890625 201.5 L30.587890625 178.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 161.5 L46.152994791666664 161.5 L46.152994791666664 184.5 L30.587890625 184.5 L30.587890625 161.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,33.25455856323242,180.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M7.96875 -8.65625 L6.5625 -8.546875 Q6.375 -9.375 6.03125 -9.75 Q5.46875 -10.34375 4.625 -10.34375 Q3.953125 -10.34375 3.453125 -9.96875 Q2.78125 -9.484375 2.3984375 -8.5546875 Q2.015625 -7.625 2.0 -5.90625 Q2.515625 -6.6875 3.25 -7.0625 Q3.984375 -7.4375 4.78125 -7.4375 Q6.1875 -7.4375 7.1796875 -6.3984375 Q8.171875 -5.359375 8.171875 -3.71875 Q8.171875 -2.640625 7.703125 -1.71875 Q7.234375 -0.796875 6.421875 -0.296875 Q5.609375 0.203125 4.578125 0.203125 Q2.828125 0.203125 1.71875 -1.09375 Q0.609375 -2.390625 0.609375 -5.359375 Q0.609375 -8.6875 1.828125 -10.1875 Q2.90625 -11.5 4.71875 -11.5 Q6.0625 -11.5 6.9296875 -10.7421875 Q7.796875 -9.984375 7.96875 -8.65625 Z M2.21875 -3.71875 Q2.21875 -2.984375 2.53125 -2.3203125 Q2.84375 -1.65625 3.3984375 -1.3125 Q3.953125 -0.96875 4.5625 -0.96875 Q5.453125 -0.96875 6.09375 -1.6875 Q6.734375 -2.40625 6.734375 -3.640625 Q6.734375 -4.828125 6.1015625 -5.5078125 Q5.46875 -6.1875 4.5 -6.1875 Q3.546875 -6.1875 2.8828125 -5.5078125 Q2.21875 -4.828125 2.21875 -3.71875 Z"/></g></g><path d=" M30.587890625 161.5 L46.152994791666664 161.5 L46.152994791666664 184.5 L30.587890625 184.5 L30.587890625 161.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 144.5 L46.152994791666664 144.5 L46.152994791666664 167.5 L30.587890625 167.5 L30.587890625 144.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,33.25455856323242,163.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.765625 -9.953125 L0.765625 -11.3125 L8.171875 -11.3125 L8.171875 -10.21875 Q7.078125 -9.046875 6.0078125 -7.1171875 Q4.9375 -5.1875 4.34375 -3.15625 Q3.921875 -1.71875 3.8125 0.0 L2.359375 0.0 Q2.390625 -1.359375 2.8984375 -3.2734375 Q3.40625 -5.1875 4.3515625 -6.9609375 Q5.296875 -8.734375 6.375 -9.953125 L0.765625 -9.953125 Z"/></g></g><path d=" M30.587890625 144.5 L46.152994791666664 144.5 L46.152994791666664 167.5 L30.587890625 167.5 L30.587890625 144.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 127.5 L46.152994791666664 127.5 L46.152994791666664 150.5 L30.587890625 150.5 L30.587890625 127.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,33.25455856323242,146.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M2.828125 -6.21875 Q1.953125 -6.53125 1.53125 -7.125 Q1.109375 -7.71875 1.109375 -8.546875 Q1.109375 -9.796875 2.0078125 -10.6484375 Q2.90625 -11.5 4.40625 -11.5 Q5.90625 -11.5 6.8203125 -10.6328125 Q7.734375 -9.765625 7.734375 -8.515625 Q7.734375 -7.71875 7.3125 -7.125 Q6.890625 -6.53125 6.046875 -6.21875 Q7.09375 -5.875 7.6484375 -5.109375 Q8.203125 -4.34375 8.203125 -3.28125 Q8.203125 -1.8125 7.1640625 -0.8046875 Q6.125 0.203125 4.421875 0.203125 Q2.734375 0.203125 1.6953125 -0.8046875 Q0.65625 -1.8125 0.65625 -3.3125 Q0.65625 -4.4375 1.21875 -5.1875 Q1.78125 -5.9375 2.828125 -6.21875 Z M2.546875 -8.59375 Q2.546875 -7.78125 3.0703125 -7.265625 Q3.59375 -6.75 4.4375 -6.75 Q5.25 -6.75 5.765625 -7.265625 Q6.28125 -7.78125 6.28125 -8.515625 Q6.28125 -9.296875 5.75 -9.8203125 Q5.21875 -10.34375 4.421875 -10.34375 Q3.609375 -10.34375 3.078125 -9.828125 Q2.546875 -9.3125 2.546875 -8.59375 Z M2.09375 -3.3125 Q2.09375 -2.703125 2.3828125 -2.140625 Q2.671875 -1.578125 3.234375 -1.2734375 Q3.796875 -0.96875 4.4375 -0.96875 Q5.453125 -0.96875 6.109375 -1.6171875 Q6.765625 -2.265625 6.765625 -3.265625 Q6.765625 -4.28125 6.0859375 -4.9453125 Q5.40625 -5.609375 4.390625 -5.609375 Q3.40625 -5.609375 2.75 -4.953125 Q2.09375 -4.296875 2.09375 -3.3125 Z"/></g></g><path d=" M30.587890625 127.5 L46.152994791666664 127.5 L46.152994791666664 150.5 L30.587890625 150.5 L30.587890625 127.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 110.5 L46.152994791666664 110.5 L46.152994791666664 133.5 L30.587890625 133.5 L30.587890625 110.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,33.25455856323242,129.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.875 -2.65625 L2.234375 -2.78125 Q2.40625 -1.828125 2.890625 -1.3984375 Q3.375 -0.96875 4.125 -0.96875 Q4.78125 -0.96875 5.265625 -1.265625 Q5.75 -1.5625 6.0625 -2.0546875 Q6.375 -2.546875 6.5859375 -3.390625 Q6.796875 -4.234375 6.796875 -5.109375 Q6.796875 -5.203125 6.796875 -5.390625 Q6.375 -4.71875 5.640625 -4.3046875 Q4.90625 -3.890625 4.0625 -3.890625 Q2.640625 -3.890625 1.65625 -4.921875 Q0.671875 -5.953125 0.671875 -7.640625 Q0.671875 -9.375 1.6953125 -10.4375 Q2.71875 -11.5 4.265625 -11.5 Q5.390625 -11.5 6.3125 -10.8984375 Q7.234375 -10.296875 7.71875 -9.1875 Q8.203125 -8.078125 8.203125 -5.96875 Q8.203125 -3.765625 7.7265625 -2.46875 Q7.25 -1.171875 6.3046875 -0.484375 Q5.359375 0.203125 4.09375 0.203125 Q2.75 0.203125 1.8984375 -0.546875 Q1.046875 -1.296875 0.875 -2.65625 Z M6.640625 -7.703125 Q6.640625 -8.921875 5.9921875 -9.6328125 Q5.34375 -10.34375 4.4375 -10.34375 Q3.5 -10.34375 2.8046875 -9.578125 Q2.109375 -8.8125 2.109375 -7.59375 Q2.109375 -6.5 2.7734375 -5.8125 Q3.4375 -5.125 4.40625 -5.125 Q5.375 -5.125 6.0078125 -5.8125 Q6.640625 -6.5 6.640625 -7.703125 Z"/></g></g><path d=" M30.587890625 110.5 L46.152994791666664 110.5 L46.152994791666664 133.5 L30.587890625 133.5 L30.587890625 110.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.689453125 93.5 L46.152994791666664 93.5 L46.152994791666664 116.5 L21.689453125 116.5 L21.689453125 93.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,24.35611915588379,112.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.96875 0.0 L4.5625 0.0 L4.5625 -8.96875 Q4.046875 -8.484375 3.2265625 -8.0 Q2.40625 -7.515625 1.75 -7.265625 L1.75 -8.625 Q2.921875 -9.1875 3.8046875 -9.9765625 Q4.6875 -10.765625 5.0625 -11.5 L5.96875 -11.5 L5.96875 0.0 Z"/><path d=" M9.5703125 -5.65625 Q9.5703125 -7.6875 9.984375 -8.921875 Q10.3984375 -10.15625 11.2265625 -10.828125 Q12.0546875 -11.5 13.3046875 -11.5 Q14.2265625 -11.5 14.921875 -11.1328125 Q15.6171875 -10.765625 16.0703125 -10.0625 Q16.5234375 -9.359375 16.78125 -8.359375 Q17.0390625 -7.359375 17.0390625 -5.65625 Q17.0390625 -3.640625 16.625 -2.3984375 Q16.2109375 -1.15625 15.3828125 -0.4765625 Q14.5546875 0.203125 13.3046875 0.203125 Q11.6484375 0.203125 10.6953125 -1.0 Q9.5703125 -2.421875 9.5703125 -5.65625 Z M11.0078125 -5.65625 Q11.0078125 -2.828125 11.671875 -1.8984375 Q12.3359375 -0.96875 13.3046875 -0.96875 Q14.2734375 -0.96875 14.9296875 -1.90625 Q15.5859375 -2.84375 15.5859375 -5.65625 Q15.5859375 -8.484375 14.9296875 -9.4140625 Q14.2734375 -10.34375 13.2890625 -10.34375 Q12.3203125 -10.34375 11.7421875 -9.515625 Q11.0078125 -8.46875 11.0078125 -5.65625 Z"/></g></g><path d=" M21.689453125 93.5 L46.152994791666664 93.5 L46.152994791666664 116.5 L21.689453125 116.5 L21.689453125 93.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.689453125 76.5 L46.152994791666664 76.5 L46.152994791666664 99.5 L21.689453125 99.5 L21.689453125 76.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,24.35611915588379,95.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.96875 0.0 L4.5625 0.0 L4.5625 -8.96875 Q4.046875 -8.484375 3.2265625 -8.0 Q2.40625 -7.515625 1.75 -7.265625 L1.75 -8.625 Q2.921875 -9.1875 3.8046875 -9.9765625 Q4.6875 -10.765625 5.0625 -11.5 L5.96875 -11.5 L5.96875 0.0 Z"/><path d=" M14.8671875 0.0 L13.4609375 0.0 L13.4609375 -8.96875 Q12.9453125 -8.484375 12.125 -8.0 Q11.3046875 -7.515625 10.6484375 -7.265625 L10.6484375 -8.625 Q11.8203125 -9.1875 12.703125 -9.9765625 Q13.5859375 -10.765625 13.9609375 -11.5 L14.8671875 -11.5 L14.8671875 0.0 Z"/></g></g><path d=" M21.689453125 76.5 L46.152994791666664 76.5 L46.152994791666664 99.5 L21.689453125 99.5 L21.689453125 76.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.689453125 59.5 L46.152994791666664 59.5 L46.152994791666664 82.5 L21.689453125 82.5 L21.689453125 59.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,24.35611915588379,78.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.96875 0.0 L4.5625 0.0 L4.5625 -8.96875 Q4.046875 -8.484375 3.2265625 -8.0 Q2.40625 -7.515625 1.75 -7.265625 L1.75 -8.625 Q2.921875 -9.1875 3.8046875 -9.9765625 Q4.6875 -10.765625 5.0625 -11.5 L5.96875 -11.5 L5.96875 0.0 Z"/><path d=" M16.9609375 -1.359375 L16.9609375 0.0 L9.3828125 0.0 Q9.3671875 -0.515625 9.5546875 -0.984375 Q9.8359375 -1.75 10.4765625 -2.5 Q11.1171875 -3.25 12.3203125 -4.234375 Q14.1796875 -5.765625 14.8359375 -6.6640625 Q15.4921875 -7.5625 15.4921875 -8.359375 Q15.4921875 -9.1875 14.8984375 -9.765625 Q14.3046875 -10.34375 13.3359375 -10.34375 Q12.3203125 -10.34375 11.7109375 -9.734375 Q11.1015625 -9.125 11.1015625 -8.046875 L9.6484375 -8.1875 Q9.8046875 -9.8125 10.7734375 -10.65625 Q11.7421875 -11.5 13.3671875 -11.5 Q15.0234375 -11.5 15.984375 -10.5859375 Q16.9453125 -9.671875 16.9453125 -8.328125 Q16.9453125 -7.640625 16.6640625 -6.9765625 Q16.3828125 -6.3125 15.7265625 -5.578125 Q15.0703125 -4.84375 13.5546875 -3.5625 Q12.2890625 -2.5 11.9296875 -2.1171875 Q11.5703125 -1.734375 11.3359375 -1.359375 L16.9609375 -1.359375 Z"/></g></g><path d=" M21.689453125 59.5 L46.152994791666664 59.5 L46.152994791666664 82.5 L21.689453125 82.5 L21.689453125 59.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.689453125 42.5 L46.152994791666664 42.5 L46.152994791666664 65.5 L21.689453125 65.5 L21.689453125 42.5 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,24.35611915588379,61.5)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.96875 0.0 L4.5625 0.0 L4.5625 -8.96875 Q4.046875 -8.484375 3.2265625 -8.0 Q2.40625 -7.515625 1.75 -7.265625 L1.75 -8.625 Q2.921875 -9.1875 3.8046875 -9.9765625 Q4.6875 -10.765625 5.0625 -11.5 L5.96875 -11.5 L5.96875 0.0 Z"/><path d=" M9.5703125 -3.03125 L10.9765625 -3.21875 Q11.2265625 -2.015625 11.8046875 -1.4921875 Q12.3828125 -0.96875 13.2265625 -0.96875 Q14.2109375 -0.96875 14.8984375 -1.65625 Q15.5859375 -2.34375 15.5859375 -3.359375 Q15.5859375 -4.328125 14.953125 -4.953125 Q14.3203125 -5.578125 13.3359375 -5.578125 Q12.9453125 -5.578125 12.3515625 -5.421875 L12.5078125 -6.65625 Q12.6484375 -6.640625 12.7265625 -6.640625 Q13.6328125 -6.640625 14.3515625 -7.109375 Q15.0703125 -7.578125 15.0703125 -8.5625 Q15.0703125 -9.328125 14.546875 -9.8359375 Q14.0234375 -10.34375 13.1953125 -10.34375 Q12.3671875 -10.34375 11.8203125 -9.828125 Q11.2734375 -9.3125 11.1171875 -8.28125 L9.7109375 -8.53125 Q9.9765625 -9.953125 10.890625 -10.7265625 Q11.8046875 -11.5 13.1640625 -11.5 Q14.1015625 -11.5 14.890625 -11.1015625 Q15.6796875 -10.703125 16.09375 -10.0078125 Q16.5078125 -9.3125 16.5078125 -8.53125 Q16.5078125 -7.78125 16.109375 -7.171875 Q15.7109375 -6.5625 14.9296875 -6.203125 Q15.9453125 -5.96875 16.5078125 -5.234375 Q17.0703125 -4.5 17.0703125 -3.390625 Q17.0703125 -1.890625 15.9765625 -0.84375 Q14.8828125 0.203125 13.2109375 0.203125 Q11.7109375 0.203125 10.7109375 -0.6953125 Q9.7109375 -1.59375 9.5703125 -3.03125 Z"/></g></g><path d=" M21.689453125 42.5 L46.152994791666664 42.5 L46.152994791666664 65.5 L21.689453125 65.5 L21.689453125 42.5 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M37.00000000000001 144.3576151529948 L157.3576151529948 144.3576151529948 L157.3576151529948 174.3576151529948 L37.00000000000001 174.3576151529948 L37.00000000000001 144.3576151529948 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-137.3576151529948,211.3576151529948)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(-0.0,-1.0,1.0,0.0,32.000005086263,171.6909472147624)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.859375 0.0 L5.859375 -6.375 L0.0625 -15.03125 L2.484375 -15.03125 L5.4375 -10.5 Q6.265625 -9.234375 6.96875 -7.953125 Q7.65625 -9.140625 8.609375 -10.609375 L11.53125 -15.03125 L13.84375 -15.03125 L7.84375 -6.375 L7.84375 0.0 L5.859375 0.0 Z"/><path d=" M14.88714599609375 -4.515625 L14.88714599609375 -6.375 L20.55902099609375 -6.375 L20.55902099609375 -4.515625 L14.88714599609375 -4.515625 Z"/><path d=" M21.28125 0.0 L27.0625 -15.03125 L29.203125 -15.03125 L35.34375 0.0 L33.078125 0.0 L31.328125 -4.546875 L25.046875 -4.546875 L23.390625 0.0 L21.28125 0.0 Z M25.625 -6.171875 L30.71875 -6.171875 L29.140625 -10.34375 Q28.421875 -12.234375 28.078125 -13.453125 Q27.796875 -12.0 27.265625 -10.578125 L25.625 -6.171875 Z"/><path d=" M35.68402099609375 0.0 L39.65277099609375 -5.65625 L35.98089599609375 -10.890625 L38.29339599609375 -10.890625 L39.96527099609375 -8.34375 Q40.43402099609375 -7.609375 40.71527099609375 -7.109375 Q41.16839599609375 -7.796875 41.54339599609375 -8.3125 L43.38714599609375 -10.890625 L45.59027099609375 -10.890625 L41.82464599609375 -5.765625 L45.87152099609375 0.0 L43.60589599609375 0.0 L41.37152099609375 -3.390625 L40.77777099609375 -4.296875 L37.91839599609375 0.0 L35.68402099609375 0.0 Z"/><path d=" M47.57464599609375 -12.90625 L47.57464599609375 -15.03125 L49.41839599609375 -15.03125 L49.41839599609375 -12.90625 L47.57464599609375 -12.90625 Z M47.57464599609375 0.0 L47.57464599609375 -10.890625 L49.41839599609375 -10.890625 L49.41839599609375 0.0 L47.57464599609375 0.0 Z"/><path d=" M51.559600830078125 -3.25 L53.387725830078125 -3.53125 Q53.543975830078125 -2.4375 54.247100830078125 -1.8515625 Q54.950225830078125 -1.265625 56.215850830078125 -1.265625 Q57.481475830078125 -1.265625 58.098663330078125 -1.7890625 Q58.715850830078125 -2.3125 58.715850830078125 -3.0 Q58.715850830078125 -3.625 58.168975830078125 -3.984375 Q57.793975830078125 -4.234375 56.278350830078125 -4.609375 Q54.247100830078125 -5.125 53.465850830078125 -5.5 Q52.684600830078125 -5.875 52.278350830078125 -6.5390625 Q51.872100830078125 -7.203125 51.872100830078125 -8.0 Q51.872100830078125 -8.71875 52.208038330078125 -9.34375 Q52.543975830078125 -9.96875 53.106475830078125 -10.375 Q53.543975830078125 -10.6875 54.286163330078125 -10.9140625 Q55.028350830078125 -11.140625 55.887725830078125 -11.140625 Q57.168975830078125 -11.140625 58.137725830078125 -10.765625 Q59.106475830078125 -10.390625 59.567413330078125 -9.765625 Q60.028350830078125 -9.140625 60.200225830078125 -8.078125 L58.387725830078125 -7.828125 Q58.278350830078125 -8.671875 57.684600830078125 -9.1484375 Q57.090850830078125 -9.625 56.012725830078125 -9.625 Q54.747100830078125 -9.625 54.200225830078125 -9.203125 Q53.653350830078125 -8.78125 53.653350830078125 -8.21875 Q53.653350830078125 -7.859375 53.887725830078125 -7.5625 Q54.106475830078125 -7.265625 54.590850830078125 -7.078125 Q54.872100830078125 -6.96875 56.215850830078125 -6.609375 Q58.184600830078125 -6.078125 58.958038330078125 -5.75 Q59.731475830078125 -5.421875 60.168975830078125 -4.78125 Q60.606475830078125 -4.140625 60.606475830078125 -3.203125 Q60.606475830078125 -2.28125 60.067413330078125 -1.4609375 Q59.528350830078125 -0.640625 58.512725830078125 -0.1953125 Q57.497100830078125 0.25 56.215850830078125 0.25 Q54.090850830078125 0.25 52.981475830078125 -0.6328125 Q51.872100830078125 -1.515625 51.559600830078125 -3.25 Z"/><path d=" M61.262725830078125 4.171875 L61.262725830078125 2.84375 L73.49710083007812 2.84375 L73.49710083007812 4.171875 L61.262725830078125 4.171875 Z"/><path d=" M78.86572265625 0.0 L78.86572265625 -13.265625 L73.92822265625 -13.265625 L73.92822265625 -15.03125 L85.83447265625 -15.03125 L85.83447265625 -13.265625 L80.86572265625 -13.265625 L80.86572265625 0.0 L78.86572265625 0.0 Z"/><path d=" M87.83737182617188 -12.90625 L87.83737182617188 -15.03125 L89.68112182617188 -15.03125 L89.68112182617188 -12.90625 L87.83737182617188 -12.90625 Z M87.83737182617188 0.0 L87.83737182617188 -10.890625 L89.68112182617188 -10.890625 L89.68112182617188 0.0 L87.83737182617188 0.0 Z"/><path d=" M96.60357666015625 -1.65625 L96.86920166015625 -0.015625 Q96.08795166015625 0.140625 95.46295166015625 0.140625 Q94.46295166015625 0.140625 93.90826416015625 -0.1796875 Q93.35357666015625 -0.5 93.12701416015625 -1.015625 Q92.90045166015625 -1.53125 92.90045166015625 -3.1875 L92.90045166015625 -9.453125 L91.55670166015625 -9.453125 L91.55670166015625 -10.890625 L92.90045166015625 -10.890625 L92.90045166015625 -13.59375 L94.74420166015625 -14.6875 L94.74420166015625 -10.890625 L96.60357666015625 -10.890625 L96.60357666015625 -9.453125 L94.74420166015625 -9.453125 L94.74420166015625 -3.09375 Q94.74420166015625 -2.296875 94.83795166015625 -2.0703125 Q94.93170166015625 -1.84375 95.15045166015625 -1.7109375 Q95.36920166015625 -1.578125 95.79107666015625 -1.578125 Q96.08795166015625 -1.578125 96.60357666015625 -1.65625 Z"/><path d=" M98.44674682617188 0.0 L98.44674682617188 -15.03125 L100.29049682617188 -15.03125 L100.29049682617188 0.0 L98.44674682617188 0.0 Z"/><path d=" M110.68170166015625 -3.5 L112.58795166015625 -3.265625 Q112.13482666015625 -1.59375 110.91607666015625 -0.671875 Q109.69732666015625 0.25 107.79107666015625 0.25 Q105.40045166015625 0.25 104.00201416015625 -1.2265625 Q102.60357666015625 -2.703125 102.60357666015625 -5.359375 Q102.60357666015625 -8.09375 104.01763916015625 -9.6171875 Q105.43170166015625 -11.140625 107.69732666015625 -11.140625 Q109.88482666015625 -11.140625 111.26763916015625 -9.6484375 Q112.65045166015625 -8.15625 112.65045166015625 -5.46875 Q112.65045166015625 -5.296875 112.63482666015625 -4.96875 L104.50982666015625 -4.96875 Q104.61920166015625 -3.171875 105.53326416015625 -2.21875 Q106.44732666015625 -1.265625 107.80670166015625 -1.265625 Q108.82232666015625 -1.265625 109.54107666015625 -1.8046875 Q110.25982666015625 -2.34375 110.68170166015625 -3.5 Z M104.61920166015625 -6.484375 L110.69732666015625 -6.484375 Q110.57232666015625 -7.859375 109.99420166015625 -8.546875 Q109.11920166015625 -9.625 107.71295166015625 -9.625 Q106.44732666015625 -9.625 105.58013916015625 -8.7734375 Q104.71295166015625 -7.921875 104.61920166015625 -6.484375 Z"/></g></g><path d=" M37.00000000000001 144.3576151529948 L157.3576151529948 144.3576151529948 L157.3576151529948 174.3576151529948 L37.00000000000001 174.3576151529948 L37.00000000000001 144.3576151529948 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-137.3576151529948,211.3576151529948)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M447.0 178.0 L447.0 192.0 L471.0 192.0 L471.0 178.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M447.0 178.0 L447.0 192.0 L471.0 192.0 L471.0 178.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#0059b2;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M474.3971354166667 174.0 L539.7591145833334 174.0 L539.7591145833334 197.0 L474.3971354166667 197.0 L474.3971354166667 174.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,477.0638122558594,193.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.71875 -3.6875 L2.15625 -3.8125 Q2.25 -2.953125 2.625 -2.3984375 Q3.0 -1.84375 3.78125 -1.5078125 Q4.5625 -1.171875 5.53125 -1.171875 Q6.40625 -1.171875 7.0703125 -1.4296875 Q7.734375 -1.6875 8.0546875 -2.1328125 Q8.375 -2.578125 8.375 -3.109375 Q8.375 -3.65625 8.0625 -4.0546875 Q7.75 -4.453125 7.03125 -4.734375 Q6.578125 -4.90625 5.0 -5.2890625 Q3.421875 -5.671875 2.78125 -6.0 Q1.96875 -6.4375 1.5625 -7.0703125 Q1.15625 -7.703125 1.15625 -8.5 Q1.15625 -9.359375 1.6484375 -10.1171875 Q2.140625 -10.875 3.0859375 -11.265625 Q4.03125 -11.65625 5.1875 -11.65625 Q6.46875 -11.65625 7.4375 -11.2421875 Q8.40625 -10.828125 8.9296875 -10.03125 Q9.453125 -9.234375 9.5 -8.234375 L8.046875 -8.125 Q7.921875 -9.203125 7.25 -9.7578125 Q6.578125 -10.3125 5.25 -10.3125 Q3.875 -10.3125 3.25 -9.8125 Q2.625 -9.3125 2.625 -8.59375 Q2.625 -7.984375 3.0625 -7.578125 Q3.5 -7.1875 5.3515625 -6.765625 Q7.203125 -6.34375 7.890625 -6.03125 Q8.890625 -5.578125 9.3671875 -4.8671875 Q9.84375 -4.15625 9.84375 -3.234375 Q9.84375 -2.328125 9.3203125 -1.515625 Q8.796875 -0.703125 7.8125 -0.25 Q6.828125 0.203125 5.609375 0.203125 Q4.046875 0.203125 3.0 -0.2578125 Q1.953125 -0.71875 1.3515625 -1.625 Q0.75 -2.53125 0.71875 -3.6875 Z"/><path d=" M17.40625 -2.671875 L18.859375 -2.5 Q18.515625 -1.21875 17.5859375 -0.515625 Q16.65625 0.1875 15.21875 0.1875 Q13.390625 0.1875 12.328125 -0.9375 Q11.265625 -2.0625 11.265625 -4.078125 Q11.265625 -6.171875 12.34375 -7.328125 Q13.421875 -8.484375 15.140625 -8.484375 Q16.796875 -8.484375 17.8515625 -7.3515625 Q18.90625 -6.21875 18.90625 -4.171875 Q18.90625 -4.046875 18.90625 -3.796875 L12.71875 -3.796875 Q12.796875 -2.421875 13.4921875 -1.6953125 Q14.1875 -0.96875 15.21875 -0.96875 Q16.0 -0.96875 16.546875 -1.375 Q17.09375 -1.78125 17.40625 -2.671875 Z M12.796875 -4.953125 L17.421875 -4.953125 Q17.328125 -6.0 16.890625 -6.515625 Q16.21875 -7.328125 15.15625 -7.328125 Q14.1875 -7.328125 13.5234375 -6.6796875 Q12.859375 -6.03125 12.796875 -4.953125 Z"/><path d=" M20.6171875 0.0 L20.6171875 -8.296875 L21.8828125 -8.296875 L21.8828125 -7.046875 Q22.3671875 -7.921875 22.7734375 -8.203125 Q23.1796875 -8.484375 23.6796875 -8.484375 Q24.3828125 -8.484375 25.1171875 -8.03125 L24.6328125 -6.734375 Q24.1171875 -7.03125 23.6015625 -7.03125 Q23.1484375 -7.03125 22.78125 -6.7578125 Q22.4140625 -6.484375 22.2578125 -5.984375 Q22.0234375 -5.234375 22.0234375 -4.34375 L22.0234375 0.0 L20.6171875 0.0 Z"/><path d=" M25.9609375 -9.84375 L25.9609375 -11.453125 L27.3671875 -11.453125 L27.3671875 -9.84375 L25.9609375 -9.84375 Z M25.9609375 0.0 L25.9609375 -8.296875 L27.3671875 -8.296875 L27.3671875 0.0 L25.9609375 0.0 Z"/><path d=" M35.1875 -2.671875 L36.640625 -2.5 Q36.296875 -1.21875 35.3671875 -0.515625 Q34.4375 0.1875 33.0 0.1875 Q31.171875 0.1875 30.109375 -0.9375 Q29.046875 -2.0625 29.046875 -4.078125 Q29.046875 -6.171875 30.125 -7.328125 Q31.203125 -8.484375 32.921875 -8.484375 Q34.578125 -8.484375 35.6328125 -7.3515625 Q36.6875 -6.21875 36.6875 -4.171875 Q36.6875 -4.046875 36.6875 -3.796875 L30.5 -3.796875 Q30.578125 -2.421875 31.2734375 -1.6953125 Q31.96875 -0.96875 33.0 -0.96875 Q33.78125 -0.96875 34.328125 -1.375 Q34.875 -1.78125 35.1875 -2.671875 Z M30.578125 -4.953125 L35.203125 -4.953125 Q35.109375 -6.0 34.671875 -6.515625 Q34.0 -7.328125 32.9375 -7.328125 Q31.96875 -7.328125 31.3046875 -6.6796875 Q30.640625 -6.03125 30.578125 -4.953125 Z"/><path d=" M37.8515625 -2.484375 L39.2421875 -2.703125 Q39.3515625 -1.859375 39.890625 -1.4140625 Q40.4296875 -0.96875 41.3828125 -0.96875 Q42.3515625 -0.96875 42.8203125 -1.3671875 Q43.2890625 -1.765625 43.2890625 -2.296875 Q43.2890625 -2.765625 42.8828125 -3.046875 Q42.5859375 -3.234375 41.4453125 -3.515625 Q39.8984375 -3.90625 39.296875 -4.1953125 Q38.6953125 -4.484375 38.390625 -4.984375 Q38.0859375 -5.484375 38.0859375 -6.09375 Q38.0859375 -6.65625 38.3359375 -7.125 Q38.5859375 -7.59375 39.0234375 -7.90625 Q39.3515625 -8.15625 39.921875 -8.3203125 Q40.4921875 -8.484375 41.1328125 -8.484375 Q42.1171875 -8.484375 42.8515625 -8.203125 Q43.5859375 -7.921875 43.9375 -7.4453125 Q44.2890625 -6.96875 44.4296875 -6.15625 L43.0546875 -5.96875 Q42.9609375 -6.609375 42.5078125 -6.96875 Q42.0546875 -7.328125 41.2421875 -7.328125 Q40.2734375 -7.328125 39.859375 -7.0078125 Q39.4453125 -6.6875 39.4453125 -6.265625 Q39.4453125 -5.984375 39.6171875 -5.765625 Q39.7890625 -5.546875 40.1484375 -5.390625 Q40.3671875 -5.3125 41.3984375 -5.03125 Q42.8828125 -4.640625 43.4765625 -4.3828125 Q44.0703125 -4.125 44.40625 -3.640625 Q44.7421875 -3.15625 44.7421875 -2.4375 Q44.7421875 -1.734375 44.328125 -1.1171875 Q43.9140625 -0.5 43.140625 -0.15625 Q42.3671875 0.1875 41.3984375 0.1875 Q39.7734375 0.1875 38.9296875 -0.484375 Q38.0859375 -1.15625 37.8515625 -2.484375 Z"/><path d=""/><path d=" M55.765625 0.0 L54.359375 0.0 L54.359375 -8.96875 Q53.84375 -8.484375 53.0234375 -8.0 Q52.203125 -7.515625 51.546875 -7.265625 L51.546875 -8.625 Q52.71875 -9.1875 53.6015625 -9.9765625 Q54.484375 -10.765625 54.859375 -11.5 L55.765625 -11.5 L55.765625 0.0 Z"/></g></g><path d=" M474.3971354166667 174.0 L539.7591145833334 174.0 L539.7591145833334 197.0 L474.3971354166667 197.0 L474.3971354166667 174.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/></g><g style="fill-opacity:0.01;fill:#FFFFFF;"/></svg> \ No newline at end of file
+]]></script><style type="text/css"><![CDATA[.tooltip.text{ text-anchor:left;font-size:12pt;fill:black;}.tooltip{fill:rgb(244,245,235)}]]></style><path d=" M0.0 0.0 L533.0 0.0 L533.0 333.0 L0.0 333.0 L0.0 0.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M4.0 4.0 L234.76041666666666 4.0 L234.76041666666666 49.0 L4.0 49.0 L4.0 4.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="32" style="fill-opacity:1.0;fill:#000000;" x="6.6666665" y="42.0">Bar_Chart_Title</text><path d=" M4.0 4.0 L234.76041666666666 4.0 L234.76041666666666 49.0 L4.0 49.0 L4.0 4.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M58.81966145833333 54.0 L436.73046875 54.0 L436.73046875 277.3333333333333 L58.81966145833333 277.3333333333333 L58.81966145833333 54.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M58.81966145833333 283.0 L435.73046875 283.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M58.0 278.0 L58.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M184.0 278.0 L184.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M310.0 278.0 L310.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M435.0 278.0 L435.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M58.81966145833332 305.0 L179.17727661132812 305.0 L179.17727661132812 335.0 L58.81966145833332 335.0 L58.81966145833332 305.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="21" style="fill-opacity:1.0;fill:#000000;" x="61.48633" y="330.0">X-Axis_Title</text><path d=" M58.81966145833332 305.0 L179.17727661132812 305.0 L179.17727661132812 335.0 L58.81966145833332 335.0 L58.81966145833332 305.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M52.152994791666664 276.3333333333333 L52.152994791666664 54.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 276.0 L57.152994791666664 276.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 259.0 L57.152994791666664 259.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 242.0 L57.152994791666664 242.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 225.0 L57.152994791666664 225.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 207.0 L57.152994791666664 207.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 190.0 L57.152994791666664 190.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 173.0 L57.152994791666664 173.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 156.0 L57.152994791666664 156.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 139.0 L57.152994791666664 139.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 122.0 L57.152994791666664 122.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 105.0 L57.152994791666664 105.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 88.0 L57.152994791666664 88.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 71.0 L57.152994791666664 71.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 54.0 L57.152994791666664 54.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M37.00000000000001 144.3576151529948 L157.3576151529948 144.3576151529948 L157.3576151529948 174.3576151529948 L37.00000000000001 174.3576151529948 L37.00000000000001 144.3576151529948 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-137.3576151529948,211.3576151529948)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="21" style="fill-opacity:1.0;fill:#000000;" transform="matrix(-0.0,-1.0,1.0,0.0,-137.3576151529948,211.3576151529948)" x="39.666668" y="169.35762">Y-Axis_Title</text><path d=" M37.00000000000001 144.3576151529948 L157.3576151529948 144.3576151529948 L157.3576151529948 174.3576151529948 L37.00000000000001 174.3576151529948 L37.00000000000001 144.3576151529948 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-137.3576151529948,211.3576151529948)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M89.0 190.0 L89.0 276.0 L151.0 276.0 L151.0 190.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M89.0 190.0 L89.0 276.0 L151.0 276.0 L151.0 190.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#0059b2;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M215.0 207.0 L215.0 276.0 L277.0 276.0 L277.0 207.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M215.0 207.0 L215.0 276.0 L277.0 276.0 L277.0 207.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#0059b2;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M341.0 71.0 L341.0 276.0 L403.0 276.0 L403.0 71.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M341.0 71.0 L341.0 276.0 L403.0 276.0 L403.0 71.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#0059b2;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M106.04557291666667 162.0 L134.95442708333334 162.0 L134.95442708333334 185.0 L106.04557291666667 185.0 L106.04557291666667 162.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="108.71224" y="181.0">5.0</text><path d=" M106.04557291666667 162.0 L134.95442708333334 162.0 L134.95442708333334 185.0 L106.04557291666667 185.0 L106.04557291666667 162.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M232.04557291666666 179.0 L260.9544270833333 179.0 L260.9544270833333 202.0 L232.04557291666666 202.0 L232.04557291666666 179.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="234.71223" y="198.0">4.0</text><path d=" M232.04557291666666 179.0 L260.9544270833333 179.0 L260.9544270833333 202.0 L232.04557291666666 202.0 L232.04557291666666 179.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M353.5963541666667 43.0 L391.40364583333337 43.0 L391.40364583333337 66.0 L353.5963541666667 66.0 L353.5963541666667 43.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="356.26303" y="62.0">12.0</text><path d=" M353.5963541666667 43.0 L391.40364583333337 43.0 L391.40364583333337 66.0 L353.5963541666667 66.0 L353.5963541666667 43.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M112.14919704861113 289.0 L129.4877387152778 289.0 L129.4877387152778 312.0 L112.14919704861113 312.0 L112.14919704861113 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="114.815865" y="308.0">A</text><path d=" M112.14919704861113 289.0 L129.4877387152778 289.0 L129.4877387152778 312.0 L112.14919704861113 312.0 L112.14919704861113 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M238.14919704861111 289.0 L255.48773871527777 289.0 L255.48773871527777 312.0 L238.14919704861111 312.0 L238.14919704861111 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="240.81586" y="308.0">B</text><path d=" M238.14919704861111 289.0 L255.48773871527777 289.0 L255.48773871527777 312.0 L238.14919704861111 312.0 L238.14919704861111 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M363.70779079861114 289.0 L381.9291449652778 289.0 L381.9291449652778 312.0 L363.70779079861114 312.0 L363.70779079861114 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="366.37445" y="308.0">C</text><path d=" M363.70779079861114 289.0 L381.9291449652778 289.0 L381.9291449652778 312.0 L363.70779079861114 312.0 L363.70779079861114 289.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M58.81966145833332 305.0 L179.17727661132812 305.0 L179.17727661132812 335.0 L58.81966145833332 335.0 L58.81966145833332 305.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="21" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="61.48633" y="330.0">X-Axis_Title</text><path d=" M58.81966145833332 305.0 L179.17727661132812 305.0 L179.17727661132812 335.0 L58.81966145833332 335.0 L58.81966145833332 305.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 264.5 L46.152994791666664 264.5 L46.152994791666664 287.5 L30.587890625 287.5 L30.587890625 264.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="33.25456" y="283.5">0</text><path d=" M30.587890625 264.5 L46.152994791666664 264.5 L46.152994791666664 287.5 L30.587890625 287.5 L30.587890625 264.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 247.5 L46.152994791666664 247.5 L46.152994791666664 270.5 L30.587890625 270.5 L30.587890625 247.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="33.25456" y="266.5">1</text><path d=" M30.587890625 247.5 L46.152994791666664 247.5 L46.152994791666664 270.5 L30.587890625 270.5 L30.587890625 247.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 230.5 L46.152994791666664 230.5 L46.152994791666664 253.5 L30.587890625 253.5 L30.587890625 230.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="33.25456" y="249.5">2</text><path d=" M30.587890625 230.5 L46.152994791666664 230.5 L46.152994791666664 253.5 L30.587890625 253.5 L30.587890625 230.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 213.5 L46.152994791666664 213.5 L46.152994791666664 236.5 L30.587890625 236.5 L30.587890625 213.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="33.25456" y="232.5">3</text><path d=" M30.587890625 213.5 L46.152994791666664 213.5 L46.152994791666664 236.5 L30.587890625 236.5 L30.587890625 213.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 195.5 L46.152994791666664 195.5 L46.152994791666664 218.5 L30.587890625 218.5 L30.587890625 195.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="33.25456" y="214.5">4</text><path d=" M30.587890625 195.5 L46.152994791666664 195.5 L46.152994791666664 218.5 L30.587890625 218.5 L30.587890625 195.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 178.5 L46.152994791666664 178.5 L46.152994791666664 201.5 L30.587890625 201.5 L30.587890625 178.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="33.25456" y="197.5">5</text><path d=" M30.587890625 178.5 L46.152994791666664 178.5 L46.152994791666664 201.5 L30.587890625 201.5 L30.587890625 178.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 161.5 L46.152994791666664 161.5 L46.152994791666664 184.5 L30.587890625 184.5 L30.587890625 161.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="33.25456" y="180.5">6</text><path d=" M30.587890625 161.5 L46.152994791666664 161.5 L46.152994791666664 184.5 L30.587890625 184.5 L30.587890625 161.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 144.5 L46.152994791666664 144.5 L46.152994791666664 167.5 L30.587890625 167.5 L30.587890625 144.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="33.25456" y="163.5">7</text><path d=" M30.587890625 144.5 L46.152994791666664 144.5 L46.152994791666664 167.5 L30.587890625 167.5 L30.587890625 144.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 127.5 L46.152994791666664 127.5 L46.152994791666664 150.5 L30.587890625 150.5 L30.587890625 127.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="33.25456" y="146.5">8</text><path d=" M30.587890625 127.5 L46.152994791666664 127.5 L46.152994791666664 150.5 L30.587890625 150.5 L30.587890625 127.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 110.5 L46.152994791666664 110.5 L46.152994791666664 133.5 L30.587890625 133.5 L30.587890625 110.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="33.25456" y="129.5">9</text><path d=" M30.587890625 110.5 L46.152994791666664 110.5 L46.152994791666664 133.5 L30.587890625 133.5 L30.587890625 110.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.689453125 93.5 L46.152994791666664 93.5 L46.152994791666664 116.5 L21.689453125 116.5 L21.689453125 93.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="24.35612" y="112.5">10</text><path d=" M21.689453125 93.5 L46.152994791666664 93.5 L46.152994791666664 116.5 L21.689453125 116.5 L21.689453125 93.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.689453125 76.5 L46.152994791666664 76.5 L46.152994791666664 99.5 L21.689453125 99.5 L21.689453125 76.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="24.35612" y="95.5">11</text><path d=" M21.689453125 76.5 L46.152994791666664 76.5 L46.152994791666664 99.5 L21.689453125 99.5 L21.689453125 76.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.689453125 59.5 L46.152994791666664 59.5 L46.152994791666664 82.5 L21.689453125 82.5 L21.689453125 59.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="24.35612" y="78.5">12</text><path d=" M21.689453125 59.5 L46.152994791666664 59.5 L46.152994791666664 82.5 L21.689453125 82.5 L21.689453125 59.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.689453125 42.5 L46.152994791666664 42.5 L46.152994791666664 65.5 L21.689453125 65.5 L21.689453125 42.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="24.35612" y="61.5">13</text><path d=" M21.689453125 42.5 L46.152994791666664 42.5 L46.152994791666664 65.5 L21.689453125 65.5 L21.689453125 42.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M37.00000000000001 144.3576151529948 L157.3576151529948 144.3576151529948 L157.3576151529948 174.3576151529948 L37.00000000000001 174.3576151529948 L37.00000000000001 144.3576151529948 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-137.3576151529948,211.3576151529948)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="21" style="fill-opacity:1.0;fill:#000000;" transform="matrix(-0.0,-1.0,1.0,0.0,-137.3576151529948,211.3576151529948)" x="39.666668" y="169.35762">Y-Axis_Title</text><path d=" M37.00000000000001 144.3576151529948 L157.3576151529948 144.3576151529948 L157.3576151529948 174.3576151529948 L37.00000000000001 174.3576151529948 L37.00000000000001 144.3576151529948 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-137.3576151529948,211.3576151529948)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M447.0 178.0 L447.0 192.0 L471.0 192.0 L471.0 178.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M447.0 178.0 L447.0 192.0 L471.0 192.0 L471.0 178.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#0059b2;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M474.3971354166667 174.0 L539.7591145833334 174.0 L539.7591145833334 197.0 L474.3971354166667 197.0 L474.3971354166667 174.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="477.0638" y="193.0">Series 1</text><path d=" M474.3971354166667 174.0 L539.7591145833334 174.0 L539.7591145833334 197.0 L474.3971354166667 197.0 L474.3971354166667 174.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/></g><g id="hotSpots" style="fill-opacity:0.01;fill:#FFFFFF;"/></svg> \ No newline at end of file
diff --git a/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/2dvert2.svg b/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/2dvert2.svg
index f9451a2..21b66e1 100644
--- a/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/2dvert2.svg
+++ b/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/2dvert2.svg
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="533.0" height="333.0"><g style="fill:none;stroke:none"><defs/><script><![CDATA[function BuildHelper(tag, attrList, text) {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="533.0" height="333.0"><g id="outerG" style="fill:none;stroke:none"><defs/><script><![CDATA[function BuildHelper(tag, attrList, text) {
this.tag = tag;
this.attrList = attrList;
this.text = text;
@@ -71,42 +71,82 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
}
}
- TM.show = function TooltiplManager_showTooltip(evt){
- var text = TM.getText(TM.getTitleElement(evt));
- x = evt.clientX;
- y = evt.clientY;
- if (typeof this.group == 'undefined'){
- this.height = 15;
- this.xPadding = 5;
- this.yPadding = -20;
- var mainSvg = evt.target.ownerDocument.documentElement;
- var off = mainSvg.currentTranslate;
- var scl = mainSvg.currentScale;
- this.group = new BuildHelper("g",
- {
- transform:"translate("+(((x+20))/scl)+","+(((y+20))/scl)+")"
- } );
- this.group.addToParent(mainSvg);
- this.rectangle = new BuildHelper("rect",
- {id:"test",
- x: 0,
- y: this.yPadding,
- height: this.height,
- classType: "tooltip"
- } );
- this.rectangle.addToParent(this.group.element);
- var textObj = new BuildHelper("text",
- {id:"tooltip",
- x: this.xPadding,
- y: (this.height/2+4+this.yPadding),
- classType: "tooltip text"
- },text);
- textObj.addToParent(this.group.element);
- var itemlength = textObj.element.getComputedTextLength();
- this.rectangle.element.setAttributeNS(null, "width", (itemlength+2*this.xPadding));
- }
- }
-
+ TM.show = function TooltiplManager_showTooltip(evt){
+ var text = TM.getText(TM.getTitleElement(evt));
+ x = evt.clientX;
+ y = evt.clientY;
+ update = true;
+ if (this.oldX != 'undefined'){
+ diffX = (x - this.oldX);
+ if (diffX < 0) diffX= diffX*(-1);
+ diffY = (y - this.oldY);
+ if (diffY < 0) diffY= diffY*(-1);
+ if ((diffY > 5) || (diffX > 5))
+ update = true;
+ }
+ if (update)
+ TM.remove();
+ if (typeof this.group == 'undefined'){
+ this.oldX = x;
+ this.oldY = y;
+ this.height = 15;
+ this.xPadding = 5;
+ this.yPadding = 20;
+ var mainSvg = evt.target.ownerDocument.documentElement;
+ var off = mainSvg.currentTranslate;
+ var scl = mainSvg.currentScale;
+ var adjustedX = (x-off.x)/scl;
+ var adjustedY = (y-off.y)/scl;
+ this.group = new BuildHelper("g",
+ {
+ opacity:0.8,
+ display: "inline",
+ transform:"translate("+(adjustedX + (10/scl))+","+(adjustedY + (10/scl))+")"
+ } );
+ this.group.addToParent(mainSvg);
+ this.rectangle = new BuildHelper("rect",
+ {id:"test",
+ x: 0,
+ y: 5,
+ transform:"scale("+(1/scl)+","+(1/scl)+")",
+ rx: 2,
+ ry: 2,
+ stroke: "black",
+ height: this.height,
+ classType: "tooltip"
+ } );
+ this.rectangle.addToParent(this.group.element);
+ var textObj = new BuildHelper("text",
+ {id:"tooltip",
+ x: this.xPadding,
+ y: (this.yPadding),
+ transform:"scale("+(1/scl)+","+(1/scl)+")",
+ classType: "tooltip text"
+ });
+ textObj.addToParent(this.group.element);
+ TM.setContent(textObj, text);
+ var outline = textObj.element.getBBox();
+ this.rectangle.element.setAttributeNS(null, "width", (outline.width+2*this.xPadding));
+ this.rectangle.element.setAttributeNS(null, "height", (outline.height+6));
+ }
+ }
+ TM.setContent = function TooltipManager_setContent(textElement, text){
+ var multiLine = text.split(/\\n/);
+ for (var x=0; x<multiLine.length; x++){
+ if (x == 0){
+ textObj = new BuildHelper("tspan",
+ {x: 5
+ },multiLine[x]);
+ }
+ else{
+ textObj = new BuildHelper("tspan",
+ {x: 5,
+ dy:17
+ },multiLine[x]);
+ }
+ textObj.addToParent(textElement.element);
+ }
+ }
TM.getTitleElement = function TM_getTitleElement(evt){
var elem = evt.currentTarget;
@@ -126,15 +166,18 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
return childs.item(x).nodeValue;
return "";
}
- function toggleVisibility(evt, id, compList){
+ function toggleLabelsVisibility(evt, id, compList, labelList){
var mainSvg = evt.target.ownerDocument;
for (i = 0; i < compList.length; i=i+1){
var comp = mainSvg.getElementById(id+'_'+compList[i]);
+ if ( comp == null ) continue;
var styleStr = comp.getAttribute("style");
- rVisibleExp=/visibility:visible/g;
- rHiddenExp=/visibility:hidden/g;
+ rVisibleExp=/visibility:[ ]*visible/g;
+ rInheritExp=/visibility:[ ]*inherit/g;
+ rHiddenExp=/visibility:[ ]*hidden/g;
results = styleStr.search(rVisibleExp);
- if (results == -1){
+ inResults = styleStr.search(rInheritExp);
+ if ((results == -1) && (inResults == -1)){
results = styleStr.search(rHiddenExp);
if (results == -1)
styleStr = styleStr + "visibility:hidden;";
@@ -142,10 +185,74 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
styleStr = styleStr.replace(rHiddenExp,"visibility:visible");
}
else{
+ if (inResults == -1){
styleStr = styleStr.replace(rVisibleExp,"visibility:hidden");
+ }else{
+ styleStr = styleStr.replace(rInheritExp,"visibility:hidden");
+ }
}
comp.setAttributeNS(null, "style", styleStr);
}
+ }
+ function toggleVisibility(evt, id, compList, labelList){
+ var mainSvg = evt.target.ownerDocument;
+ var isHidden = true;
+ for (i = 0; i < compList.length; i=i+1){
+ var comp = mainSvg.getElementById(id+'_'+compList[i]);
+ if ( comp == null ) continue;
+ var styleStr = comp.getAttribute("style");
+ rVisibleExp=/visibility:[ ]*visible/g;
+ rHiddenExp=/visibility:[ ]*hidden/g;
+ results = styleStr.search(rVisibleExp);
+ if (results == -1){
+ results = styleStr.search(rHiddenExp);
+ if (results == -1)
+ styleStr = styleStr + "visibility:hidden;";
+ else{
+ styleStr = styleStr.replace(rHiddenExp,"visibility:visible");
+ isHidden = false;
+ }
+ }
+ else{
+ styleStr = styleStr.replace(rVisibleExp,"visibility:hidden");
+ }
+ comp.setAttributeNS(null, "style", styleStr);
+ }
+ if (labelList != null){
+ for (i = 0; i < labelList.length; i=i+1){
+ var comp = mainSvg.getElementById(id+'_'+labelList[i]+'_g');
+ var styleStr = comp.getAttribute("style");
+ if (isHidden){
+ styleStr = styleStr + "visibility:hidden;";
+ toggleLabelVisibility(evt, id+'_'+labelList[i], 'inherit');
+ }else{
+ styleStr = styleStr.replace(rHiddenExp,"visibility:visible");
+ }
+ comp.setAttributeNS(null, "style", styleStr);
+ }
+ }
+ }
+ function toggleLabelVisibility(evt, id, property){
+ var mainSvg = evt.target.ownerDocument;
+ var comp = mainSvg.getElementById(id);
+ var styleStr = comp.getAttribute("style");
+ rVisibleExp=/visibility:[ ]*visible/g;
+ rInheritExp=/visibility:[ ]*inherit/g;
+ rHiddenExp=/visibility:[ ]*hidden/g;
+ results = styleStr.search(rVisibleExp);
+ inResults = styleStr.search(rInheritExp);
+ if ((results == -1) && (inResults == -1)){
+ results = styleStr.search(rHiddenExp);
+ if (results == -1)
+ styleStr = styleStr + "visibility:"+property+";";
+ }
+ else{
+ if (inResults == -1)
+ styleStr = styleStr.replace(rVisibleExp,"visibility:"+property);
+ else
+ styleStr = styleStr.replace(rInheritExp,"visibility:"+property);
+ }
+ comp.setAttributeNS(null, "style", styleStr);
}
function toHex(val)
{
@@ -162,51 +269,104 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
}
var oldCompId = null;
var oldCompList = null;
+ var fillToColor = new Array();
+ var strokeToColor = new Array();
function highlight(evt, id, compList){
- highlightElement(evt, oldCompId, oldCompList);
+ highlightElement(evt, oldCompId, oldCompList, false);
if (id != oldCompId){
- highlightElement(evt, id, compList);
+ highlightElement(evt, id, compList, true);
oldCompId = id;
oldCompList = compList;
}
else{
oldCompId = null;
oldCompList = null;
+ fillToColor = new Array();
+ strokeToColor = new Array();
}
}
- function highlightElement(evt, id, compList){
+ function highlightElement(evt, id, compList, highlight){
if ((id == null) || (compList == null)) return;
var mainSvg = evt.target.ownerDocument;
for (i = 0; i < compList.length; i=i+1){
var comp = mainSvg.getElementById(id+'_'+compList[i]);
+ if ( comp == null ) continue;
var styleStr = comp.getAttribute("style");
fillIndex = styleStr.search("fill:");
if (fillIndex != -1){
- styleStr = getNewStyle(styleStr, fillIndex, "fill:");
+ styleStr = getNewStyle(styleStr, fillIndex, "fill:", highlight, fillToColor, compList[i]);
}
strokeIndex = styleStr.search("stroke:");
if (strokeIndex != -1){
- styleStr = getNewStyle(styleStr, strokeIndex, "stroke:");
+ styleStr = getNewStyle(styleStr, strokeIndex, "stroke:", highlight, strokeToColor, compList[i]);
}
comp.setAttributeNS(null, "style", styleStr);
}
}
- function getNewStyle(style, index, styleAttr){
+ function getNewStyle(style, index, styleAttr, highlight, lookUpTable, id){
color = style.substring(index+styleAttr.length, style.length );
rgbIndex = color.search("rgb");
if (rgbIndex == -1){
hexColor = color.substring(1, 7);
- hc = getXorColor(hexColor);
+ hc = getHighlight(hexColor, highlight, lookUpTable, id);
return style.replace(styleAttr+"#"+hexColor,styleAttr+hc);
}
else{
bracketIndex = color.search("\\)");
color = color.substring(0, bracketIndex);
hexColor = getHexFromRGB(color);
- hc = getXorColor(hexColor);
+ hc = getHighlight(hexColor, highlight, lookUpTable, id);
return style.substring(0, index) + styleAttr+hc+ style.substring(index+bracketIndex+styleAttr.length+1, style.length);
}
}
+ function isIE(){
+ var agt=parent.navigator.userAgent.toLowerCase();
+ return (agt.indexOf("msie")!=-1);
+}
+ function resizeSVG(e){
+ if(isIE()){
+ var root=e.target.ownerDocument.documentElement;
+ var hotSpot = e.target.ownerDocument.getElementById('hotSpots');
+ var g = e.target.ownerDocument.getElementById('outerG');
+ var xScale = (innerWidth) / root.getAttribute('width');
+ var yScale = (innerHeight) / root.getAttribute('height');
+ g.setAttributeNS(null, 'transform', 'scale('+xScale+','+yScale+')');
+ hotSpot.setAttributeNS(null, 'transform', 'scale('+xScale+','+yScale+')');
+ }
+ }
+ function getHighlight(color, highlight, lookupTable, id){
+ if (!(highlight)){
+ color = lookupTable[id];
+ }
+ else{
+ lookupTable[id] = color;
+ }
+ r = color.substring(0, 2);
+ r = parseInt(r, 16);
+ g = color.substring(2, 4);
+ g = parseInt(g, 16);
+ b = color.substring(4, 6);
+ b = parseInt(b, 16);
+ var value = parseInt(r, 16);
+ if (highlight){
+ r = Math.ceil( (r + 255) / 2 );
+ g = Math.ceil( (g + 255) / 2 );
+ b = Math.ceil( (b + 255) / 2 );
+ }
+ rStr = r.toString(16);
+ gStr = g.toString(16);
+ bStr = b.toString(16);
+ while (rStr.length < 2){
+ rStr = "0"+rStr;
+ }
+ while (gStr.length < 2){
+ gStr = "0"+gStr;
+ }
+ while (bStr.length < 2){
+ bStr = "0"+bStr;
+ }
+return "#"+rStr+gStr+bStr;
+}
function getHexFromRGB(color){
findThem = /\d{1,3}/g;
listOfnum = color.match(findThem);
@@ -224,4 +384,4 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
}
return r+g+b;
}
-]]></script><style type="text/css"><![CDATA[.tooltip.text{ text-anchor:left;font-size:12pt;fill:black;}.tooltip{fill:rgb(244,245,235)}]]></style><path d=" M0.0 0.0 L533.0 0.0 L533.0 333.0 L0.0 333.0 L0.0 0.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M4.0 4.0 L216.94791666666666 4.0 L216.94791666666666 49.0 L4.0 49.0 L4.0 4.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,6.666666507720947,42.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M2.34375 0.0 L2.34375 -22.90625 L10.9375 -22.90625 Q13.5625 -22.90625 15.1484375 -22.2109375 Q16.734375 -21.515625 17.6328125 -20.0703125 Q18.53125 -18.625 18.53125 -17.046875 Q18.53125 -15.578125 17.734375 -14.28125 Q16.9375 -12.984375 15.328125 -12.1875 Q17.40625 -11.578125 18.5234375 -10.109375 Q19.640625 -8.640625 19.640625 -6.640625 Q19.640625 -5.03125 18.9609375 -3.6484375 Q18.28125 -2.265625 17.28125 -1.515625 Q16.28125 -0.765625 14.7734375 -0.3828125 Q13.265625 0.0 11.078125 0.0 L2.34375 0.0 Z M5.375 -13.28125 L10.328125 -13.28125 Q12.34375 -13.28125 13.21875 -13.546875 Q14.375 -13.890625 14.9609375 -14.6875 Q15.546875 -15.484375 15.546875 -16.6875 Q15.546875 -17.828125 15.0 -18.6953125 Q14.453125 -19.5625 13.4375 -19.8828125 Q12.421875 -20.203125 9.953125 -20.203125 L5.375 -20.203125 L5.375 -13.28125 Z M5.375 -2.703125 L11.078125 -2.703125 Q12.546875 -2.703125 13.140625 -2.8125 Q14.1875 -3.0 14.890625 -3.4375 Q15.59375 -3.875 16.046875 -4.7109375 Q16.5 -5.546875 16.5 -6.640625 Q16.5 -7.921875 15.84375 -8.8671875 Q15.1875 -9.8125 14.0234375 -10.1953125 Q12.859375 -10.578125 10.671875 -10.578125 L5.375 -10.578125 L5.375 -2.703125 Z"/><path d=" M34.28125 -2.046875 Q32.71875 -0.71875 31.2734375 -0.171875 Q29.828125 0.375 28.171875 0.375 Q25.4375 0.375 23.96875 -0.9609375 Q22.5 -2.296875 22.5 -4.375 Q22.5 -5.59375 23.0546875 -6.6015625 Q23.609375 -7.609375 24.5078125 -8.21875 Q25.40625 -8.828125 26.53125 -9.140625 Q27.359375 -9.359375 29.03125 -9.5625 Q32.4375 -9.96875 34.046875 -10.53125 Q34.0625 -11.109375 34.0625 -11.265625 Q34.0625 -12.984375 33.265625 -13.6875 Q32.1875 -14.640625 30.0625 -14.640625 Q28.078125 -14.640625 27.1328125 -13.9453125 Q26.1875 -13.25 25.734375 -11.484375 L22.984375 -11.859375 Q23.359375 -13.625 24.21875 -14.7109375 Q25.078125 -15.796875 26.703125 -16.3828125 Q28.328125 -16.96875 30.46875 -16.96875 Q32.59375 -16.96875 33.921875 -16.46875 Q35.25 -15.96875 35.875 -15.2109375 Q36.5 -14.453125 36.75 -13.296875 Q36.890625 -12.578125 36.890625 -10.703125 L36.890625 -6.953125 Q36.890625 -3.03125 37.0703125 -1.9921875 Q37.25 -0.953125 37.78125 0.0 L34.84375 0.0 Q34.40625 -0.875 34.28125 -2.046875 Z M34.046875 -8.328125 Q32.515625 -7.703125 29.453125 -7.265625 Q27.71875 -7.015625 27.0 -6.703125 Q26.28125 -6.390625 25.890625 -5.7890625 Q25.5 -5.1875 25.5 -4.453125 Q25.5 -3.328125 26.3515625 -2.578125 Q27.203125 -1.828125 28.84375 -1.828125 Q30.46875 -1.828125 31.734375 -2.5390625 Q33.0 -3.25 33.59375 -4.484375 Q34.046875 -5.4375 34.046875 -7.296875 L34.046875 -8.328125 Z"/><path d=" M41.21875 0.0 L41.21875 -16.59375 L43.75 -16.59375 L43.75 -14.078125 Q44.71875 -15.84375 45.5390625 -16.40625 Q46.359375 -16.96875 47.34375 -16.96875 Q48.765625 -16.96875 50.234375 -16.0625 L49.265625 -13.453125 Q48.234375 -14.0625 47.203125 -14.0625 Q46.28125 -14.0625 45.546875 -13.5078125 Q44.8125 -12.953125 44.5 -11.96875 Q44.03125 -10.46875 44.03125 -8.6875 L44.03125 0.0 L41.21875 0.0 Z"/><path d=""/><path d=" M77.5 -8.03125 L80.53125 -7.265625 Q79.578125 -3.53125 77.1015625 -1.5703125 Q74.625 0.390625 71.046875 0.390625 Q67.34375 0.390625 65.0234375 -1.1171875 Q62.703125 -2.625 61.4921875 -5.484375 Q60.28125 -8.34375 60.28125 -11.625 Q60.28125 -15.203125 61.6484375 -17.8671875 Q63.015625 -20.53125 65.5390625 -21.9140625 Q68.0625 -23.296875 71.09375 -23.296875 Q74.53125 -23.296875 76.875 -21.546875 Q79.21875 -19.796875 80.140625 -16.625 L77.15625 -15.921875 Q76.359375 -18.421875 74.84375 -19.5625 Q73.328125 -20.703125 71.03125 -20.703125 Q68.390625 -20.703125 66.6171875 -19.4375 Q64.84375 -18.171875 64.125 -16.0390625 Q63.40625 -13.90625 63.40625 -11.640625 Q63.40625 -8.71875 64.2578125 -6.5390625 Q65.109375 -4.359375 66.90625 -3.28125 Q68.703125 -2.203125 70.796875 -2.203125 Q73.34375 -2.203125 75.109375 -3.671875 Q76.875 -5.140625 77.5 -8.03125 Z"/><path d=" M83.90625 0.0 L83.90625 -22.90625 L86.71875 -22.90625 L86.71875 -14.6875 Q88.6875 -16.96875 91.6875 -16.96875 Q93.53125 -16.96875 94.890625 -16.2421875 Q96.25 -15.515625 96.8359375 -14.234375 Q97.421875 -12.953125 97.421875 -10.515625 L97.421875 0.0 L94.609375 0.0 L94.609375 -10.515625 Q94.609375 -12.625 93.6953125 -13.5859375 Q92.78125 -14.546875 91.109375 -14.546875 Q89.859375 -14.546875 88.7578125 -13.8984375 Q87.65625 -13.25 87.1875 -12.140625 Q86.71875 -11.03125 86.71875 -9.078125 L86.71875 0.0 L83.90625 0.0 Z"/><path d=" M112.53125 -2.046875 Q110.96875 -0.71875 109.5234375 -0.171875 Q108.078125 0.375 106.421875 0.375 Q103.6875 0.375 102.21875 -0.9609375 Q100.75 -2.296875 100.75 -4.375 Q100.75 -5.59375 101.3046875 -6.6015625 Q101.859375 -7.609375 102.7578125 -8.21875 Q103.65625 -8.828125 104.78125 -9.140625 Q105.609375 -9.359375 107.28125 -9.5625 Q110.6875 -9.96875 112.296875 -10.53125 Q112.3125 -11.109375 112.3125 -11.265625 Q112.3125 -12.984375 111.515625 -13.6875 Q110.4375 -14.640625 108.3125 -14.640625 Q106.328125 -14.640625 105.3828125 -13.9453125 Q104.4375 -13.25 103.984375 -11.484375 L101.234375 -11.859375 Q101.609375 -13.625 102.46875 -14.7109375 Q103.328125 -15.796875 104.953125 -16.3828125 Q106.578125 -16.96875 108.71875 -16.96875 Q110.84375 -16.96875 112.171875 -16.46875 Q113.5 -15.96875 114.125 -15.2109375 Q114.75 -14.453125 115.0 -13.296875 Q115.140625 -12.578125 115.140625 -10.703125 L115.140625 -6.953125 Q115.140625 -3.03125 115.3203125 -1.9921875 Q115.5 -0.953125 116.03125 0.0 L113.09375 0.0 Q112.65625 -0.875 112.53125 -2.046875 Z M112.296875 -8.328125 Q110.765625 -7.703125 107.703125 -7.265625 Q105.96875 -7.015625 105.25 -6.703125 Q104.53125 -6.390625 104.140625 -5.7890625 Q103.75 -5.1875 103.75 -4.453125 Q103.75 -3.328125 104.6015625 -2.578125 Q105.453125 -1.828125 107.09375 -1.828125 Q108.71875 -1.828125 109.984375 -2.5390625 Q111.25 -3.25 111.84375 -4.484375 Q112.296875 -5.4375 112.296875 -7.296875 L112.296875 -8.328125 Z"/><path d=" M119.46875 0.0 L119.46875 -16.59375 L122.0 -16.59375 L122.0 -14.078125 Q122.96875 -15.84375 123.7890625 -16.40625 Q124.609375 -16.96875 125.59375 -16.96875 Q127.015625 -16.96875 128.484375 -16.0625 L127.515625 -13.453125 Q126.484375 -14.0625 125.453125 -14.0625 Q124.53125 -14.0625 123.796875 -13.5078125 Q123.0625 -12.953125 122.75 -11.96875 Q122.28125 -10.46875 122.28125 -8.6875 L122.28125 0.0 L119.46875 0.0 Z"/><path d=" M136.296875 -2.515625 L136.703125 -0.03125 Q135.515625 0.21875 134.578125 0.21875 Q133.046875 0.21875 132.203125 -0.265625 Q131.359375 -0.75 131.015625 -1.5390625 Q130.671875 -2.328125 130.671875 -4.859375 L130.671875 -14.40625 L128.609375 -14.40625 L128.609375 -16.59375 L130.671875 -16.59375 L130.671875 -20.703125 L133.46875 -22.390625 L133.46875 -16.59375 L136.296875 -16.59375 L136.296875 -14.40625 L133.46875 -14.40625 L133.46875 -4.703125 Q133.46875 -3.5 133.6171875 -3.15625 Q133.765625 -2.8125 134.1015625 -2.609375 Q134.4375 -2.40625 135.0625 -2.40625 Q135.53125 -2.40625 136.296875 -2.515625 Z"/><path d=""/><path d=" M154.125 0.0 L154.125 -20.203125 L146.578125 -20.203125 L146.578125 -22.90625 L164.734375 -22.90625 L164.734375 -20.203125 L157.15625 -20.203125 L157.15625 0.0 L154.125 0.0 Z"/><path d=" M167.5 -19.671875 L167.5 -22.90625 L170.3125 -22.90625 L170.3125 -19.671875 L167.5 -19.671875 Z M167.5 0.0 L167.5 -16.59375 L170.3125 -16.59375 L170.3125 0.0 L167.5 0.0 Z"/><path d=" M180.734375 -2.515625 L181.140625 -0.03125 Q179.953125 0.21875 179.015625 0.21875 Q177.484375 0.21875 176.640625 -0.265625 Q175.796875 -0.75 175.453125 -1.5390625 Q175.109375 -2.328125 175.109375 -4.859375 L175.109375 -14.40625 L173.046875 -14.40625 L173.046875 -16.59375 L175.109375 -16.59375 L175.109375 -20.703125 L177.90625 -22.390625 L177.90625 -16.59375 L180.734375 -16.59375 L180.734375 -14.40625 L177.90625 -14.40625 L177.90625 -4.703125 Q177.90625 -3.5 178.0546875 -3.15625 Q178.203125 -2.8125 178.5390625 -2.609375 Q178.875 -2.40625 179.5 -2.40625 Q179.96875 -2.40625 180.734375 -2.515625 Z"/><path d=" M183.421875 0.0 L183.421875 -22.90625 L186.234375 -22.90625 L186.234375 0.0 L183.421875 0.0 Z"/><path d=" M201.953125 -5.34375 L204.859375 -4.984375 Q204.171875 -2.4375 202.3125 -1.03125 Q200.453125 0.375 197.5625 0.375 Q193.921875 0.375 191.7890625 -1.8671875 Q189.65625 -4.109375 189.65625 -8.15625 Q189.65625 -12.34375 191.8125 -14.65625 Q193.96875 -16.96875 197.40625 -16.96875 Q200.734375 -16.96875 202.84375 -14.703125 Q204.953125 -12.4375 204.953125 -8.328125 Q204.953125 -8.078125 204.9375 -7.578125 L192.5625 -7.578125 Q192.71875 -4.84375 194.109375 -3.390625 Q195.5 -1.9375 197.578125 -1.9375 Q199.125 -1.9375 200.21875 -2.75 Q201.3125 -3.5625 201.953125 -5.34375 Z M192.71875 -9.890625 L201.984375 -9.890625 Q201.796875 -11.984375 200.921875 -13.03125 Q199.578125 -14.65625 197.4375 -14.65625 Q195.5 -14.65625 194.1796875 -13.359375 Q192.859375 -12.0625 192.71875 -9.890625 Z"/></g></g><path d=" M4.0 4.0 L216.94791666666666 4.0 L216.94791666666666 49.0 L4.0 49.0 L4.0 4.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M58.81966145833333 54.0 L436.73046875 54.0 L436.73046875 271.64600296559524 L58.81966145833333 271.64600296559524 L58.81966145833333 54.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M58.81966145833333 277.31266963226193 L435.73046875 277.31266963226193" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M58.0 272.31266963226193 L58.0 282.31266963226193" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M184.0 272.31266963226193 L184.0 282.31266963226193" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M310.0 272.31266963226193 L310.0 282.31266963226193" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M435.0 272.31266963226193 L435.0 282.31266963226193" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M58.81966145833332 305.0 L173.24557495117188 305.0 L173.24557495117188 335.0 L58.81966145833332 335.0 L58.81966145833332 305.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,61.486328125,330.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.09375 0.0 L5.90625 -7.828125 L0.78125 -15.03125 L3.140625 -15.03125 L5.875 -11.171875 Q6.734375 -9.984375 7.078125 -9.328125 Q7.59375 -10.15625 8.28125 -11.046875 L11.296875 -15.03125 L13.46875 -15.03125 L8.1875 -7.953125 L13.875 0.0 L11.40625 0.0 L7.625 -5.359375 Q7.3125 -5.828125 6.96875 -6.375 Q6.46875 -5.546875 6.25 -5.234375 L2.484375 0.0 L0.09375 0.0 Z"/><path d=" M14.88714599609375 -4.515625 L14.88714599609375 -6.375 L20.55902099609375 -6.375 L20.55902099609375 -4.515625 L14.88714599609375 -4.515625 Z"/><path d=" M21.28125 0.0 L27.0625 -15.03125 L29.203125 -15.03125 L35.34375 0.0 L33.078125 0.0 L31.328125 -4.546875 L25.046875 -4.546875 L23.390625 0.0 L21.28125 0.0 Z M25.625 -6.171875 L30.71875 -6.171875 L29.140625 -10.34375 Q28.421875 -12.234375 28.078125 -13.453125 Q27.796875 -12.0 27.265625 -10.578125 L25.625 -6.171875 Z"/><path d=" M35.68402099609375 0.0 L39.65277099609375 -5.65625 L35.98089599609375 -10.890625 L38.29339599609375 -10.890625 L39.96527099609375 -8.34375 Q40.43402099609375 -7.609375 40.71527099609375 -7.109375 Q41.16839599609375 -7.796875 41.54339599609375 -8.3125 L43.38714599609375 -10.890625 L45.59027099609375 -10.890625 L41.82464599609375 -5.765625 L45.87152099609375 0.0 L43.60589599609375 0.0 L41.37152099609375 -3.390625 L40.77777099609375 -4.296875 L37.91839599609375 0.0 L35.68402099609375 0.0 Z"/><path d=" M47.57464599609375 -12.90625 L47.57464599609375 -15.03125 L49.41839599609375 -15.03125 L49.41839599609375 -12.90625 L47.57464599609375 -12.90625 Z M47.57464599609375 0.0 L47.57464599609375 -10.890625 L49.41839599609375 -10.890625 L49.41839599609375 0.0 L47.57464599609375 0.0 Z"/><path d=" M51.559600830078125 -3.25 L53.387725830078125 -3.53125 Q53.543975830078125 -2.4375 54.247100830078125 -1.8515625 Q54.950225830078125 -1.265625 56.215850830078125 -1.265625 Q57.481475830078125 -1.265625 58.098663330078125 -1.7890625 Q58.715850830078125 -2.3125 58.715850830078125 -3.0 Q58.715850830078125 -3.625 58.168975830078125 -3.984375 Q57.793975830078125 -4.234375 56.278350830078125 -4.609375 Q54.247100830078125 -5.125 53.465850830078125 -5.5 Q52.684600830078125 -5.875 52.278350830078125 -6.5390625 Q51.872100830078125 -7.203125 51.872100830078125 -8.0 Q51.872100830078125 -8.71875 52.208038330078125 -9.34375 Q52.543975830078125 -9.96875 53.106475830078125 -10.375 Q53.543975830078125 -10.6875 54.286163330078125 -10.9140625 Q55.028350830078125 -11.140625 55.887725830078125 -11.140625 Q57.168975830078125 -11.140625 58.137725830078125 -10.765625 Q59.106475830078125 -10.390625 59.567413330078125 -9.765625 Q60.028350830078125 -9.140625 60.200225830078125 -8.078125 L58.387725830078125 -7.828125 Q58.278350830078125 -8.671875 57.684600830078125 -9.1484375 Q57.090850830078125 -9.625 56.012725830078125 -9.625 Q54.747100830078125 -9.625 54.200225830078125 -9.203125 Q53.653350830078125 -8.78125 53.653350830078125 -8.21875 Q53.653350830078125 -7.859375 53.887725830078125 -7.5625 Q54.106475830078125 -7.265625 54.590850830078125 -7.078125 Q54.872100830078125 -6.96875 56.215850830078125 -6.609375 Q58.184600830078125 -6.078125 58.958038330078125 -5.75 Q59.731475830078125 -5.421875 60.168975830078125 -4.78125 Q60.606475830078125 -4.140625 60.606475830078125 -3.203125 Q60.606475830078125 -2.28125 60.067413330078125 -1.4609375 Q59.528350830078125 -0.640625 58.512725830078125 -0.1953125 Q57.497100830078125 0.25 56.215850830078125 0.25 Q54.090850830078125 0.25 52.981475830078125 -0.6328125 Q51.872100830078125 -1.515625 51.559600830078125 -3.25 Z"/><path d=""/><path d=" M72.93402099609375 0.0 L72.93402099609375 -13.265625 L67.99652099609375 -13.265625 L67.99652099609375 -15.03125 L79.90277099609375 -15.03125 L79.90277099609375 -13.265625 L74.93402099609375 -13.265625 L74.93402099609375 0.0 L72.93402099609375 0.0 Z"/><path d=" M81.90567016601562 -12.90625 L81.90567016601562 -15.03125 L83.74942016601562 -15.03125 L83.74942016601562 -12.90625 L81.90567016601562 -12.90625 Z M81.90567016601562 0.0 L81.90567016601562 -10.890625 L83.74942016601562 -10.890625 L83.74942016601562 0.0 L81.90567016601562 0.0 Z"/><path d=" M90.671875 -1.65625 L90.9375 -0.015625 Q90.15625 0.140625 89.53125 0.140625 Q88.53125 0.140625 87.9765625 -0.1796875 Q87.421875 -0.5 87.1953125 -1.015625 Q86.96875 -1.53125 86.96875 -3.1875 L86.96875 -9.453125 L85.625 -9.453125 L85.625 -10.890625 L86.96875 -10.890625 L86.96875 -13.59375 L88.8125 -14.6875 L88.8125 -10.890625 L90.671875 -10.890625 L90.671875 -9.453125 L88.8125 -9.453125 L88.8125 -3.09375 Q88.8125 -2.296875 88.90625 -2.0703125 Q89.0 -1.84375 89.21875 -1.7109375 Q89.4375 -1.578125 89.859375 -1.578125 Q90.15625 -1.578125 90.671875 -1.65625 Z"/><path d=" M92.51504516601562 0.0 L92.51504516601562 -15.03125 L94.35879516601562 -15.03125 L94.35879516601562 0.0 L92.51504516601562 0.0 Z"/><path d=" M104.75 -3.5 L106.65625 -3.265625 Q106.203125 -1.59375 104.984375 -0.671875 Q103.765625 0.25 101.859375 0.25 Q99.46875 0.25 98.0703125 -1.2265625 Q96.671875 -2.703125 96.671875 -5.359375 Q96.671875 -8.09375 98.0859375 -9.6171875 Q99.5 -11.140625 101.765625 -11.140625 Q103.953125 -11.140625 105.3359375 -9.6484375 Q106.71875 -8.15625 106.71875 -5.46875 Q106.71875 -5.296875 106.703125 -4.96875 L98.578125 -4.96875 Q98.6875 -3.171875 99.6015625 -2.21875 Q100.515625 -1.265625 101.875 -1.265625 Q102.890625 -1.265625 103.609375 -1.8046875 Q104.328125 -2.34375 104.75 -3.5 Z M98.6875 -6.484375 L104.765625 -6.484375 Q104.640625 -7.859375 104.0625 -8.546875 Q103.1875 -9.625 101.78125 -9.625 Q100.515625 -9.625 99.6484375 -8.7734375 Q98.78125 -7.921875 98.6875 -6.484375 Z"/></g></g><path d=" M58.81966145833332 305.0 L173.24557495117188 305.0 L173.24557495117188 335.0 L58.81966145833332 335.0 L58.81966145833332 305.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M52.152994791666664 270.64600296559524 L52.152994791666664 54.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 270.0 L57.152994791666664 270.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 239.0 L57.152994791666664 239.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 208.0 L57.152994791666664 208.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 177.0 L57.152994791666664 177.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 146.0 L57.152994791666664 146.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 115.0 L57.152994791666664 115.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 84.0 L57.152994791666664 84.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 54.0 L57.152994791666664 54.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M37.00000000000001 138.42591349283856 L151.42591349283856 138.42591349283856 L151.42591349283856 168.42591349283856 L37.00000000000001 168.42591349283856 L37.00000000000001 138.42591349283856 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-131.42591349283856,205.42591349283856)" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(-0.0,-1.0,1.0,0.0,32.000005086263,165.75924555460614)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.859375 0.0 L5.859375 -6.375 L0.0625 -15.03125 L2.484375 -15.03125 L5.4375 -10.5 Q6.265625 -9.234375 6.96875 -7.953125 Q7.65625 -9.140625 8.609375 -10.609375 L11.53125 -15.03125 L13.84375 -15.03125 L7.84375 -6.375 L7.84375 0.0 L5.859375 0.0 Z"/><path d=" M14.88714599609375 -4.515625 L14.88714599609375 -6.375 L20.55902099609375 -6.375 L20.55902099609375 -4.515625 L14.88714599609375 -4.515625 Z"/><path d=" M21.28125 0.0 L27.0625 -15.03125 L29.203125 -15.03125 L35.34375 0.0 L33.078125 0.0 L31.328125 -4.546875 L25.046875 -4.546875 L23.390625 0.0 L21.28125 0.0 Z M25.625 -6.171875 L30.71875 -6.171875 L29.140625 -10.34375 Q28.421875 -12.234375 28.078125 -13.453125 Q27.796875 -12.0 27.265625 -10.578125 L25.625 -6.171875 Z"/><path d=" M35.68402099609375 0.0 L39.65277099609375 -5.65625 L35.98089599609375 -10.890625 L38.29339599609375 -10.890625 L39.96527099609375 -8.34375 Q40.43402099609375 -7.609375 40.71527099609375 -7.109375 Q41.16839599609375 -7.796875 41.54339599609375 -8.3125 L43.38714599609375 -10.890625 L45.59027099609375 -10.890625 L41.82464599609375 -5.765625 L45.87152099609375 0.0 L43.60589599609375 0.0 L41.37152099609375 -3.390625 L40.77777099609375 -4.296875 L37.91839599609375 0.0 L35.68402099609375 0.0 Z"/><path d=" M47.57464599609375 -12.90625 L47.57464599609375 -15.03125 L49.41839599609375 -15.03125 L49.41839599609375 -12.90625 L47.57464599609375 -12.90625 Z M47.57464599609375 0.0 L47.57464599609375 -10.890625 L49.41839599609375 -10.890625 L49.41839599609375 0.0 L47.57464599609375 0.0 Z"/><path d=" M51.559600830078125 -3.25 L53.387725830078125 -3.53125 Q53.543975830078125 -2.4375 54.247100830078125 -1.8515625 Q54.950225830078125 -1.265625 56.215850830078125 -1.265625 Q57.481475830078125 -1.265625 58.098663330078125 -1.7890625 Q58.715850830078125 -2.3125 58.715850830078125 -3.0 Q58.715850830078125 -3.625 58.168975830078125 -3.984375 Q57.793975830078125 -4.234375 56.278350830078125 -4.609375 Q54.247100830078125 -5.125 53.465850830078125 -5.5 Q52.684600830078125 -5.875 52.278350830078125 -6.5390625 Q51.872100830078125 -7.203125 51.872100830078125 -8.0 Q51.872100830078125 -8.71875 52.208038330078125 -9.34375 Q52.543975830078125 -9.96875 53.106475830078125 -10.375 Q53.543975830078125 -10.6875 54.286163330078125 -10.9140625 Q55.028350830078125 -11.140625 55.887725830078125 -11.140625 Q57.168975830078125 -11.140625 58.137725830078125 -10.765625 Q59.106475830078125 -10.390625 59.567413330078125 -9.765625 Q60.028350830078125 -9.140625 60.200225830078125 -8.078125 L58.387725830078125 -7.828125 Q58.278350830078125 -8.671875 57.684600830078125 -9.1484375 Q57.090850830078125 -9.625 56.012725830078125 -9.625 Q54.747100830078125 -9.625 54.200225830078125 -9.203125 Q53.653350830078125 -8.78125 53.653350830078125 -8.21875 Q53.653350830078125 -7.859375 53.887725830078125 -7.5625 Q54.106475830078125 -7.265625 54.590850830078125 -7.078125 Q54.872100830078125 -6.96875 56.215850830078125 -6.609375 Q58.184600830078125 -6.078125 58.958038330078125 -5.75 Q59.731475830078125 -5.421875 60.168975830078125 -4.78125 Q60.606475830078125 -4.140625 60.606475830078125 -3.203125 Q60.606475830078125 -2.28125 60.067413330078125 -1.4609375 Q59.528350830078125 -0.640625 58.512725830078125 -0.1953125 Q57.497100830078125 0.25 56.215850830078125 0.25 Q54.090850830078125 0.25 52.981475830078125 -0.6328125 Q51.872100830078125 -1.515625 51.559600830078125 -3.25 Z"/><path d=""/><path d=" M72.93402099609375 0.0 L72.93402099609375 -13.265625 L67.99652099609375 -13.265625 L67.99652099609375 -15.03125 L79.90277099609375 -15.03125 L79.90277099609375 -13.265625 L74.93402099609375 -13.265625 L74.93402099609375 0.0 L72.93402099609375 0.0 Z"/><path d=" M81.90567016601562 -12.90625 L81.90567016601562 -15.03125 L83.74942016601562 -15.03125 L83.74942016601562 -12.90625 L81.90567016601562 -12.90625 Z M81.90567016601562 0.0 L81.90567016601562 -10.890625 L83.74942016601562 -10.890625 L83.74942016601562 0.0 L81.90567016601562 0.0 Z"/><path d=" M90.671875 -1.65625 L90.9375 -0.015625 Q90.15625 0.140625 89.53125 0.140625 Q88.53125 0.140625 87.9765625 -0.1796875 Q87.421875 -0.5 87.1953125 -1.015625 Q86.96875 -1.53125 86.96875 -3.1875 L86.96875 -9.453125 L85.625 -9.453125 L85.625 -10.890625 L86.96875 -10.890625 L86.96875 -13.59375 L88.8125 -14.6875 L88.8125 -10.890625 L90.671875 -10.890625 L90.671875 -9.453125 L88.8125 -9.453125 L88.8125 -3.09375 Q88.8125 -2.296875 88.90625 -2.0703125 Q89.0 -1.84375 89.21875 -1.7109375 Q89.4375 -1.578125 89.859375 -1.578125 Q90.15625 -1.578125 90.671875 -1.65625 Z"/><path d=" M92.51504516601562 0.0 L92.51504516601562 -15.03125 L94.35879516601562 -15.03125 L94.35879516601562 0.0 L92.51504516601562 0.0 Z"/><path d=" M104.75 -3.5 L106.65625 -3.265625 Q106.203125 -1.59375 104.984375 -0.671875 Q103.765625 0.25 101.859375 0.25 Q99.46875 0.25 98.0703125 -1.2265625 Q96.671875 -2.703125 96.671875 -5.359375 Q96.671875 -8.09375 98.0859375 -9.6171875 Q99.5 -11.140625 101.765625 -11.140625 Q103.953125 -11.140625 105.3359375 -9.6484375 Q106.71875 -8.15625 106.71875 -5.46875 Q106.71875 -5.296875 106.703125 -4.96875 L98.578125 -4.96875 Q98.6875 -3.171875 99.6015625 -2.21875 Q100.515625 -1.265625 101.875 -1.265625 Q102.890625 -1.265625 103.609375 -1.8046875 Q104.328125 -2.34375 104.75 -3.5 Z M98.6875 -6.484375 L104.765625 -6.484375 Q104.640625 -7.859375 104.0625 -8.546875 Q103.1875 -9.625 101.78125 -9.625 Q100.515625 -9.625 99.6484375 -8.7734375 Q98.78125 -7.921875 98.6875 -6.484375 Z"/></g></g><path d=" M37.00000000000001 138.42591349283856 L151.42591349283856 138.42591349283856 L151.42591349283856 168.42591349283856 L37.00000000000001 168.42591349283856 L37.00000000000001 138.42591349283856 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-131.42591349283856,205.42591349283856)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M89.0 193.0 L89.0 270.0 L151.0 270.0 L151.0 193.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M89.0 193.0 L89.0 270.0 L151.0 270.0 L151.0 193.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#0059b2;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M215.0 208.0 L215.0 270.0 L277.0 270.0 L277.0 208.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M215.0 208.0 L215.0 270.0 L277.0 270.0 L277.0 208.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#0059b2;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M341.0 84.0 L341.0 270.0 L403.0 270.0 L403.0 84.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M341.0 84.0 L341.0 270.0 L403.0 270.0 L403.0 84.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#0059b2;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M106.04557291666667 165.0 L134.95442708333334 165.0 L134.95442708333334 188.0 L106.04557291666667 188.0 L106.04557291666667 165.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,108.71224212646484,184.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.671875 -3.0 L2.140625 -3.125 Q2.3125 -2.046875 2.90625 -1.5078125 Q3.5 -0.96875 4.34375 -0.96875 Q5.359375 -0.96875 6.0625 -1.734375 Q6.765625 -2.5 6.765625 -3.765625 Q6.765625 -4.96875 6.09375 -5.6640625 Q5.421875 -6.359375 4.328125 -6.359375 Q3.640625 -6.359375 3.09375 -6.046875 Q2.546875 -5.734375 2.234375 -5.25 L0.921875 -5.421875 L2.03125 -11.296875 L7.71875 -11.296875 L7.71875 -9.953125 L3.15625 -9.953125 L2.53125 -6.875 Q3.5625 -7.59375 4.703125 -7.59375 Q6.203125 -7.59375 7.234375 -6.5546875 Q8.265625 -5.515625 8.265625 -3.890625 Q8.265625 -2.328125 7.359375 -1.203125 Q6.25 0.203125 4.34375 0.203125 Q2.78125 0.203125 1.796875 -0.6796875 Q0.8125 -1.5625 0.671875 -3.0 Z"/><path d=" M10.3515625 0.0 L10.3515625 -1.609375 L11.9609375 -1.609375 L11.9609375 0.0 L10.3515625 0.0 Z"/><path d=" M14.015625 -5.65625 Q14.015625 -7.6875 14.4296875 -8.921875 Q14.84375 -10.15625 15.671875 -10.828125 Q16.5 -11.5 17.75 -11.5 Q18.671875 -11.5 19.3671875 -11.1328125 Q20.0625 -10.765625 20.515625 -10.0625 Q20.96875 -9.359375 21.2265625 -8.359375 Q21.484375 -7.359375 21.484375 -5.65625 Q21.484375 -3.640625 21.0703125 -2.3984375 Q20.65625 -1.15625 19.828125 -0.4765625 Q19.0 0.203125 17.75 0.203125 Q16.09375 0.203125 15.140625 -1.0 Q14.015625 -2.421875 14.015625 -5.65625 Z M15.453125 -5.65625 Q15.453125 -2.828125 16.1171875 -1.8984375 Q16.78125 -0.96875 17.75 -0.96875 Q18.71875 -0.96875 19.375 -1.90625 Q20.03125 -2.84375 20.03125 -5.65625 Q20.03125 -8.484375 19.375 -9.4140625 Q18.71875 -10.34375 17.734375 -10.34375 Q16.765625 -10.34375 16.1875 -9.515625 Q15.453125 -8.46875 15.453125 -5.65625 Z"/></g></g><path d=" M106.04557291666667 165.0 L134.95442708333334 165.0 L134.95442708333334 188.0 L106.04557291666667 188.0 L106.04557291666667 165.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M232.04557291666666 180.0 L260.9544270833333 180.0 L260.9544270833333 203.0 L232.04557291666666 203.0 L232.04557291666666 180.0 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,234.7122344970703,199.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.171875 0.0 L5.171875 -2.75 L0.203125 -2.75 L0.203125 -4.03125 L5.4375 -11.453125 L6.578125 -11.453125 L6.578125 -4.03125 L8.125 -4.03125 L8.125 -2.75 L6.578125 -2.75 L6.578125 0.0 L5.171875 0.0 Z M5.171875 -4.03125 L5.171875 -9.203125 L1.59375 -4.03125 L5.171875 -4.03125 Z"/><path d=" M10.3515625 0.0 L10.3515625 -1.609375 L11.9609375 -1.609375 L11.9609375 0.0 L10.3515625 0.0 Z"/><path d=" M14.015625 -5.65625 Q14.015625 -7.6875 14.4296875 -8.921875 Q14.84375 -10.15625 15.671875 -10.828125 Q16.5 -11.5 17.75 -11.5 Q18.671875 -11.5 19.3671875 -11.1328125 Q20.0625 -10.765625 20.515625 -10.0625 Q20.96875 -9.359375 21.2265625 -8.359375 Q21.484375 -7.359375 21.484375 -5.65625 Q21.484375 -3.640625 21.0703125 -2.3984375 Q20.65625 -1.15625 19.828125 -0.4765625 Q19.0 0.203125 17.75 0.203125 Q16.09375 0.203125 15.140625 -1.0 Q14.015625 -2.421875 14.015625 -5.65625 Z M15.453125 -5.65625 Q15.453125 -2.828125 16.1171875 -1.8984375 Q16.78125 -0.96875 17.75 -0.96875 Q18.71875 -0.96875 19.375 -1.90625 Q20.03125 -2.84375 20.03125 -5.65625 Q20.03125 -8.484375 19.375 -9.4140625 Q18.71875 -10.34375 17.734375 -10.34375 Q16.765625 -10.34375 16.1875 -9.515625 Q15.453125 -8.46875 15.453125 -5.65625 Z"/></g></g><path d=" M232.04557291666666 180.0 L260.9544270833333 180.0 L260.9544270833333 203.0 L232.04557291666666 203.0 L232.04557291666666 180.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M353.5963541666667 56.0 L391.40364583333337 56.0 L391.40364583333337 79.0 L353.5963541666667 79.0 L353.5963541666667 56.0 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,356.2630310058594,75.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.96875 0.0 L4.5625 0.0 L4.5625 -8.96875 Q4.046875 -8.484375 3.2265625 -8.0 Q2.40625 -7.515625 1.75 -7.265625 L1.75 -8.625 Q2.921875 -9.1875 3.8046875 -9.9765625 Q4.6875 -10.765625 5.0625 -11.5 L5.96875 -11.5 L5.96875 0.0 Z"/><path d=" M16.9609375 -1.359375 L16.9609375 0.0 L9.3828125 0.0 Q9.3671875 -0.515625 9.5546875 -0.984375 Q9.8359375 -1.75 10.4765625 -2.5 Q11.1171875 -3.25 12.3203125 -4.234375 Q14.1796875 -5.765625 14.8359375 -6.6640625 Q15.4921875 -7.5625 15.4921875 -8.359375 Q15.4921875 -9.1875 14.8984375 -9.765625 Q14.3046875 -10.34375 13.3359375 -10.34375 Q12.3203125 -10.34375 11.7109375 -9.734375 Q11.1015625 -9.125 11.1015625 -8.046875 L9.6484375 -8.1875 Q9.8046875 -9.8125 10.7734375 -10.65625 Q11.7421875 -11.5 13.3671875 -11.5 Q15.0234375 -11.5 15.984375 -10.5859375 Q16.9453125 -9.671875 16.9453125 -8.328125 Q16.9453125 -7.640625 16.6640625 -6.9765625 Q16.3828125 -6.3125 15.7265625 -5.578125 Q15.0703125 -4.84375 13.5546875 -3.5625 Q12.2890625 -2.5 11.9296875 -2.1171875 Q11.5703125 -1.734375 11.3359375 -1.359375 L16.9609375 -1.359375 Z"/><path d=" M19.25 0.0 L19.25 -1.609375 L20.859375 -1.609375 L20.859375 0.0 L19.25 0.0 Z"/><path d=" M22.9140625 -5.65625 Q22.9140625 -7.6875 23.328125 -8.921875 Q23.7421875 -10.15625 24.5703125 -10.828125 Q25.3984375 -11.5 26.6484375 -11.5 Q27.5703125 -11.5 28.265625 -11.1328125 Q28.9609375 -10.765625 29.4140625 -10.0625 Q29.8671875 -9.359375 30.125 -8.359375 Q30.3828125 -7.359375 30.3828125 -5.65625 Q30.3828125 -3.640625 29.96875 -2.3984375 Q29.5546875 -1.15625 28.7265625 -0.4765625 Q27.8984375 0.203125 26.6484375 0.203125 Q24.9921875 0.203125 24.0390625 -1.0 Q22.9140625 -2.421875 22.9140625 -5.65625 Z M24.3515625 -5.65625 Q24.3515625 -2.828125 25.015625 -1.8984375 Q25.6796875 -0.96875 26.6484375 -0.96875 Q27.6171875 -0.96875 28.2734375 -1.90625 Q28.9296875 -2.84375 28.9296875 -5.65625 Q28.9296875 -8.484375 28.2734375 -9.4140625 Q27.6171875 -10.34375 26.6328125 -10.34375 Q25.6640625 -10.34375 25.0859375 -9.515625 Q24.3515625 -8.46875 24.3515625 -5.65625 Z"/></g></g><path d=" M353.5963541666667 56.0 L391.40364583333337 56.0 L391.40364583333337 79.0 L353.5963541666667 79.0 L353.5963541666667 56.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M124.66921720712652 288.76211525348225 L142.0077588737932 288.76211525348225 L142.0077588737932 311.76211525348225 L124.66921720712652 311.76211525348225 L124.66921720712652 288.76211525348225 Z" transform="matrix(0.6946583704589974,-0.7193398003386511,0.7193398003386511,0.6946583704589974,-186.19619580397023,184.87348211479843)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(0.6946583704589974,-0.7193398003386511,0.7193398003386511,0.6946583704589974,124.08567638162697,306.60816363306674)" style="fill-opacity:1.0;fill:#000000;"><path d=" M-0.03125 0.0 L4.375 -11.453125 L6.015625 -11.453125 L10.703125 0.0 L8.96875 0.0 L7.640625 -3.46875 L2.84375 -3.46875 L1.59375 0.0 L-0.03125 0.0 Z M3.28125 -4.703125 L7.171875 -4.703125 L5.96875 -7.875 Q5.421875 -9.328125 5.15625 -10.25 Q4.9375 -9.15625 4.546875 -8.0625 L3.28125 -4.703125 Z"/></g></g><path d=" M124.66921720712652 288.76211525348225 L142.0077588737932 288.76211525348225 L142.0077588737932 311.76211525348225 L124.66921720712652 311.76211525348225 L124.66921720712652 288.76211525348225 Z" transform="matrix(0.6946583704589974,-0.7193398003386511,0.7193398003386511,0.6946583704589974,-186.19619580397023,184.87348211479843)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M250.13194237372463 288.76211525348225 L267.4704840403913 288.76211525348225 L267.4704840403913 311.76211525348225 L250.13194237372463 311.76211525348225 L250.13194237372463 288.76211525348225 Z" transform="matrix(0.6946583704589974,-0.7193398003386511,0.7193398003386511,0.6946583704589974,-147.88720285494622,275.1238137860822)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(0.6946583704589974,-0.7193398003386511,0.7193398003386511,0.6946583704589974,250.27019335224298,305.86072633976073)" style="fill-opacity:1.0;fill:#000000;"><path d=" M1.171875 0.0 L1.171875 -11.453125 L5.46875 -11.453125 Q6.78125 -11.453125 7.578125 -11.109375 Q8.375 -10.765625 8.8203125 -10.0390625 Q9.265625 -9.3125 9.265625 -8.53125 Q9.265625 -7.796875 8.8671875 -7.1484375 Q8.46875 -6.5 7.671875 -6.09375 Q8.703125 -5.796875 9.265625 -5.0625 Q9.828125 -4.328125 9.828125 -3.328125 Q9.828125 -2.515625 9.484375 -1.828125 Q9.140625 -1.140625 8.640625 -0.765625 Q8.140625 -0.390625 7.390625 -0.1953125 Q6.640625 0.0 5.546875 0.0 L1.171875 0.0 Z M2.6875 -6.640625 L5.171875 -6.640625 Q6.171875 -6.640625 6.609375 -6.78125 Q7.1875 -6.953125 7.484375 -7.3515625 Q7.78125 -7.75 7.78125 -8.34375 Q7.78125 -8.921875 7.5078125 -9.3515625 Q7.234375 -9.78125 6.7265625 -9.9453125 Q6.21875 -10.109375 4.984375 -10.109375 L2.6875 -10.109375 L2.6875 -6.640625 Z M2.6875 -1.359375 L5.546875 -1.359375 Q6.28125 -1.359375 6.578125 -1.40625 Q7.09375 -1.5 7.4453125 -1.71875 Q7.796875 -1.9375 8.0234375 -2.359375 Q8.25 -2.78125 8.25 -3.328125 Q8.25 -3.96875 7.921875 -4.4375 Q7.59375 -4.90625 7.015625 -5.1015625 Q6.4375 -5.296875 5.34375 -5.296875 L2.6875 -5.296875 L2.6875 -1.359375 Z"/></g></g><path d=" M250.13194237372463 288.76211525348225 L267.4704840403913 288.76211525348225 L267.4704840403913 311.76211525348225 L250.13194237372463 311.76211525348225 L250.13194237372463 288.76211525348225 Z" transform="matrix(0.6946583704589974,-0.7193398003386511,0.7193398003386511,0.6946583704589974,-147.88720285494622,275.1238137860822)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M375.9040075959178 289.3971574209687 L394.1253617625845 289.3971574209687 L394.1253617625845 312.3971574209687 L375.9040075959178 312.3971574209687 L375.9040075959178 289.3971574209687 Z" transform="matrix(0.6946583704589974,-0.7193398003386511,0.7193398003386511,0.6946583704589974,-109.94056661523086,365.790570881442)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(0.6946583704589974,-0.7193398003386511,0.7193398003386511,0.6946583704589974,375.8387433206917,306.7065120092858)" style="fill-opacity:1.0;fill:#000000;"><path d=" M9.40625 -4.015625 L10.921875 -3.640625 Q10.453125 -1.765625 9.2109375 -0.78125 Q7.96875 0.203125 6.1875 0.203125 Q4.328125 0.203125 3.171875 -0.5546875 Q2.015625 -1.3125 1.40625 -2.7421875 Q0.796875 -4.171875 0.796875 -5.8125 Q0.796875 -7.609375 1.484375 -8.9375 Q2.171875 -10.265625 3.4296875 -10.9609375 Q4.6875 -11.65625 6.203125 -11.65625 Q7.921875 -11.65625 9.09375 -10.78125 Q10.265625 -9.90625 10.734375 -8.3125 L9.234375 -7.96875 Q8.84375 -9.21875 8.0859375 -9.7890625 Q7.328125 -10.359375 6.171875 -10.359375 Q4.859375 -10.359375 3.96875 -9.7265625 Q3.078125 -9.09375 2.71875 -8.0234375 Q2.359375 -6.953125 2.359375 -5.828125 Q2.359375 -4.359375 2.7890625 -3.2734375 Q3.21875 -2.1875 4.1171875 -1.6484375 Q5.015625 -1.109375 6.0625 -1.109375 Q7.328125 -1.109375 8.2109375 -1.84375 Q9.09375 -2.578125 9.40625 -4.015625 Z"/></g></g><path d=" M375.9040075959178 289.3971574209687 L394.1253617625845 289.3971574209687 L394.1253617625845 312.3971574209687 L375.9040075959178 312.3971574209687 L375.9040075959178 289.3971574209687 Z" transform="matrix(0.6946583704589974,-0.7193398003386511,0.7193398003386511,0.6946583704589974,-109.94056661523086,365.790570881442)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M58.81966145833332 305.0 L173.24557495117188 305.0 L173.24557495117188 335.0 L58.81966145833332 335.0 L58.81966145833332 305.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,61.48632812499994,330.00000000000006)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.09375 0.0 L5.90625 -7.828125 L0.78125 -15.03125 L3.140625 -15.03125 L5.875 -11.171875 Q6.734375 -9.984375 7.078125 -9.328125 Q7.59375 -10.15625 8.28125 -11.046875 L11.296875 -15.03125 L13.46875 -15.03125 L8.1875 -7.953125 L13.875 0.0 L11.40625 0.0 L7.625 -5.359375 Q7.3125 -5.828125 6.96875 -6.375 Q6.46875 -5.546875 6.25 -5.234375 L2.484375 0.0 L0.09375 0.0 Z"/><path d=" M14.88714599609375 -4.515625 L14.88714599609375 -6.375 L20.55902099609375 -6.375 L20.55902099609375 -4.515625 L14.88714599609375 -4.515625 Z"/><path d=" M21.28125 0.0 L27.0625 -15.03125 L29.203125 -15.03125 L35.34375 0.0 L33.078125 0.0 L31.328125 -4.546875 L25.046875 -4.546875 L23.390625 0.0 L21.28125 0.0 Z M25.625 -6.171875 L30.71875 -6.171875 L29.140625 -10.34375 Q28.421875 -12.234375 28.078125 -13.453125 Q27.796875 -12.0 27.265625 -10.578125 L25.625 -6.171875 Z"/><path d=" M35.68402099609375 0.0 L39.65277099609375 -5.65625 L35.98089599609375 -10.890625 L38.29339599609375 -10.890625 L39.96527099609375 -8.34375 Q40.43402099609375 -7.609375 40.71527099609375 -7.109375 Q41.16839599609375 -7.796875 41.54339599609375 -8.3125 L43.38714599609375 -10.890625 L45.59027099609375 -10.890625 L41.82464599609375 -5.765625 L45.87152099609375 0.0 L43.60589599609375 0.0 L41.37152099609375 -3.390625 L40.77777099609375 -4.296875 L37.91839599609375 0.0 L35.68402099609375 0.0 Z"/><path d=" M47.57464599609375 -12.90625 L47.57464599609375 -15.03125 L49.41839599609375 -15.03125 L49.41839599609375 -12.90625 L47.57464599609375 -12.90625 Z M47.57464599609375 0.0 L47.57464599609375 -10.890625 L49.41839599609375 -10.890625 L49.41839599609375 0.0 L47.57464599609375 0.0 Z"/><path d=" M51.559600830078125 -3.25 L53.387725830078125 -3.53125 Q53.543975830078125 -2.4375 54.247100830078125 -1.8515625 Q54.950225830078125 -1.265625 56.215850830078125 -1.265625 Q57.481475830078125 -1.265625 58.098663330078125 -1.7890625 Q58.715850830078125 -2.3125 58.715850830078125 -3.0 Q58.715850830078125 -3.625 58.168975830078125 -3.984375 Q57.793975830078125 -4.234375 56.278350830078125 -4.609375 Q54.247100830078125 -5.125 53.465850830078125 -5.5 Q52.684600830078125 -5.875 52.278350830078125 -6.5390625 Q51.872100830078125 -7.203125 51.872100830078125 -8.0 Q51.872100830078125 -8.71875 52.208038330078125 -9.34375 Q52.543975830078125 -9.96875 53.106475830078125 -10.375 Q53.543975830078125 -10.6875 54.286163330078125 -10.9140625 Q55.028350830078125 -11.140625 55.887725830078125 -11.140625 Q57.168975830078125 -11.140625 58.137725830078125 -10.765625 Q59.106475830078125 -10.390625 59.567413330078125 -9.765625 Q60.028350830078125 -9.140625 60.200225830078125 -8.078125 L58.387725830078125 -7.828125 Q58.278350830078125 -8.671875 57.684600830078125 -9.1484375 Q57.090850830078125 -9.625 56.012725830078125 -9.625 Q54.747100830078125 -9.625 54.200225830078125 -9.203125 Q53.653350830078125 -8.78125 53.653350830078125 -8.21875 Q53.653350830078125 -7.859375 53.887725830078125 -7.5625 Q54.106475830078125 -7.265625 54.590850830078125 -7.078125 Q54.872100830078125 -6.96875 56.215850830078125 -6.609375 Q58.184600830078125 -6.078125 58.958038330078125 -5.75 Q59.731475830078125 -5.421875 60.168975830078125 -4.78125 Q60.606475830078125 -4.140625 60.606475830078125 -3.203125 Q60.606475830078125 -2.28125 60.067413330078125 -1.4609375 Q59.528350830078125 -0.640625 58.512725830078125 -0.1953125 Q57.497100830078125 0.25 56.215850830078125 0.25 Q54.090850830078125 0.25 52.981475830078125 -0.6328125 Q51.872100830078125 -1.515625 51.559600830078125 -3.25 Z"/><path d=""/><path d=" M72.93402099609375 0.0 L72.93402099609375 -13.265625 L67.99652099609375 -13.265625 L67.99652099609375 -15.03125 L79.90277099609375 -15.03125 L79.90277099609375 -13.265625 L74.93402099609375 -13.265625 L74.93402099609375 0.0 L72.93402099609375 0.0 Z"/><path d=" M81.90567016601562 -12.90625 L81.90567016601562 -15.03125 L83.74942016601562 -15.03125 L83.74942016601562 -12.90625 L81.90567016601562 -12.90625 Z M81.90567016601562 0.0 L81.90567016601562 -10.890625 L83.74942016601562 -10.890625 L83.74942016601562 0.0 L81.90567016601562 0.0 Z"/><path d=" M90.671875 -1.65625 L90.9375 -0.015625 Q90.15625 0.140625 89.53125 0.140625 Q88.53125 0.140625 87.9765625 -0.1796875 Q87.421875 -0.5 87.1953125 -1.015625 Q86.96875 -1.53125 86.96875 -3.1875 L86.96875 -9.453125 L85.625 -9.453125 L85.625 -10.890625 L86.96875 -10.890625 L86.96875 -13.59375 L88.8125 -14.6875 L88.8125 -10.890625 L90.671875 -10.890625 L90.671875 -9.453125 L88.8125 -9.453125 L88.8125 -3.09375 Q88.8125 -2.296875 88.90625 -2.0703125 Q89.0 -1.84375 89.21875 -1.7109375 Q89.4375 -1.578125 89.859375 -1.578125 Q90.15625 -1.578125 90.671875 -1.65625 Z"/><path d=" M92.51504516601562 0.0 L92.51504516601562 -15.03125 L94.35879516601562 -15.03125 L94.35879516601562 0.0 L92.51504516601562 0.0 Z"/><path d=" M104.75 -3.5 L106.65625 -3.265625 Q106.203125 -1.59375 104.984375 -0.671875 Q103.765625 0.25 101.859375 0.25 Q99.46875 0.25 98.0703125 -1.2265625 Q96.671875 -2.703125 96.671875 -5.359375 Q96.671875 -8.09375 98.0859375 -9.6171875 Q99.5 -11.140625 101.765625 -11.140625 Q103.953125 -11.140625 105.3359375 -9.6484375 Q106.71875 -8.15625 106.71875 -5.46875 Q106.71875 -5.296875 106.703125 -4.96875 L98.578125 -4.96875 Q98.6875 -3.171875 99.6015625 -2.21875 Q100.515625 -1.265625 101.875 -1.265625 Q102.890625 -1.265625 103.609375 -1.8046875 Q104.328125 -2.34375 104.75 -3.5 Z M98.6875 -6.484375 L104.765625 -6.484375 Q104.640625 -7.859375 104.0625 -8.546875 Q103.1875 -9.625 101.78125 -9.625 Q100.515625 -9.625 99.6484375 -8.7734375 Q98.78125 -7.921875 98.6875 -6.484375 Z"/></g></g><path d=" M58.81966145833332 305.0 L173.24557495117188 305.0 L173.24557495117188 335.0 L58.81966145833332 335.0 L58.81966145833332 305.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 258.5 L46.152994791666664 258.5 L46.152994791666664 281.5 L30.587890625 281.5 L30.587890625 258.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,33.254558563232365,277.50000000000006)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.671875 -5.65625 Q0.671875 -7.6875 1.0859375 -8.921875 Q1.5 -10.15625 2.328125 -10.828125 Q3.15625 -11.5 4.40625 -11.5 Q5.328125 -11.5 6.0234375 -11.1328125 Q6.71875 -10.765625 7.171875 -10.0625 Q7.625 -9.359375 7.8828125 -8.359375 Q8.140625 -7.359375 8.140625 -5.65625 Q8.140625 -3.640625 7.7265625 -2.3984375 Q7.3125 -1.15625 6.484375 -0.4765625 Q5.65625 0.203125 4.40625 0.203125 Q2.75 0.203125 1.796875 -1.0 Q0.671875 -2.421875 0.671875 -5.65625 Z M2.109375 -5.65625 Q2.109375 -2.828125 2.7734375 -1.8984375 Q3.4375 -0.96875 4.40625 -0.96875 Q5.375 -0.96875 6.03125 -1.90625 Q6.6875 -2.84375 6.6875 -5.65625 Q6.6875 -8.484375 6.03125 -9.4140625 Q5.375 -10.34375 4.390625 -10.34375 Q3.421875 -10.34375 2.84375 -9.515625 Q2.109375 -8.46875 2.109375 -5.65625 Z"/></g></g><path d=" M30.587890625 258.5 L46.152994791666664 258.5 L46.152994791666664 281.5 L30.587890625 281.5 L30.587890625 258.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 227.5 L46.152994791666664 227.5 L46.152994791666664 250.5 L30.587890625 250.5 L30.587890625 227.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,33.254558563232365,246.50000000000006)" style="fill-opacity:1.0;fill:#000000;"><path d=" M8.0625 -1.359375 L8.0625 0.0 L0.484375 0.0 Q0.46875 -0.515625 0.65625 -0.984375 Q0.9375 -1.75 1.578125 -2.5 Q2.21875 -3.25 3.421875 -4.234375 Q5.28125 -5.765625 5.9375 -6.6640625 Q6.59375 -7.5625 6.59375 -8.359375 Q6.59375 -9.1875 6.0 -9.765625 Q5.40625 -10.34375 4.4375 -10.34375 Q3.421875 -10.34375 2.8125 -9.734375 Q2.203125 -9.125 2.203125 -8.046875 L0.75 -8.1875 Q0.90625 -9.8125 1.875 -10.65625 Q2.84375 -11.5 4.46875 -11.5 Q6.125 -11.5 7.0859375 -10.5859375 Q8.046875 -9.671875 8.046875 -8.328125 Q8.046875 -7.640625 7.765625 -6.9765625 Q7.484375 -6.3125 6.828125 -5.578125 Q6.171875 -4.84375 4.65625 -3.5625 Q3.390625 -2.5 3.03125 -2.1171875 Q2.671875 -1.734375 2.4375 -1.359375 L8.0625 -1.359375 Z"/></g></g><path d=" M30.587890625 227.5 L46.152994791666664 227.5 L46.152994791666664 250.5 L30.587890625 250.5 L30.587890625 227.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 196.5 L46.152994791666664 196.5 L46.152994791666664 219.5 L30.587890625 219.5 L30.587890625 196.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,33.254558563232365,215.50000000000006)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.171875 0.0 L5.171875 -2.75 L0.203125 -2.75 L0.203125 -4.03125 L5.4375 -11.453125 L6.578125 -11.453125 L6.578125 -4.03125 L8.125 -4.03125 L8.125 -2.75 L6.578125 -2.75 L6.578125 0.0 L5.171875 0.0 Z M5.171875 -4.03125 L5.171875 -9.203125 L1.59375 -4.03125 L5.171875 -4.03125 Z"/></g></g><path d=" M30.587890625 196.5 L46.152994791666664 196.5 L46.152994791666664 219.5 L30.587890625 219.5 L30.587890625 196.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 165.5 L46.152994791666664 165.5 L46.152994791666664 188.5 L30.587890625 188.5 L30.587890625 165.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,33.254558563232365,184.50000000000006)" style="fill-opacity:1.0;fill:#000000;"><path d=" M7.96875 -8.65625 L6.5625 -8.546875 Q6.375 -9.375 6.03125 -9.75 Q5.46875 -10.34375 4.625 -10.34375 Q3.953125 -10.34375 3.453125 -9.96875 Q2.78125 -9.484375 2.3984375 -8.5546875 Q2.015625 -7.625 2.0 -5.90625 Q2.515625 -6.6875 3.25 -7.0625 Q3.984375 -7.4375 4.78125 -7.4375 Q6.1875 -7.4375 7.1796875 -6.3984375 Q8.171875 -5.359375 8.171875 -3.71875 Q8.171875 -2.640625 7.703125 -1.71875 Q7.234375 -0.796875 6.421875 -0.296875 Q5.609375 0.203125 4.578125 0.203125 Q2.828125 0.203125 1.71875 -1.09375 Q0.609375 -2.390625 0.609375 -5.359375 Q0.609375 -8.6875 1.828125 -10.1875 Q2.90625 -11.5 4.71875 -11.5 Q6.0625 -11.5 6.9296875 -10.7421875 Q7.796875 -9.984375 7.96875 -8.65625 Z M2.21875 -3.71875 Q2.21875 -2.984375 2.53125 -2.3203125 Q2.84375 -1.65625 3.3984375 -1.3125 Q3.953125 -0.96875 4.5625 -0.96875 Q5.453125 -0.96875 6.09375 -1.6875 Q6.734375 -2.40625 6.734375 -3.640625 Q6.734375 -4.828125 6.1015625 -5.5078125 Q5.46875 -6.1875 4.5 -6.1875 Q3.546875 -6.1875 2.8828125 -5.5078125 Q2.21875 -4.828125 2.21875 -3.71875 Z"/></g></g><path d=" M30.587890625 165.5 L46.152994791666664 165.5 L46.152994791666664 188.5 L30.587890625 188.5 L30.587890625 165.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 134.5 L46.152994791666664 134.5 L46.152994791666664 157.5 L30.587890625 157.5 L30.587890625 134.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,33.254558563232365,153.50000000000006)" style="fill-opacity:1.0;fill:#000000;"><path d=" M2.828125 -6.21875 Q1.953125 -6.53125 1.53125 -7.125 Q1.109375 -7.71875 1.109375 -8.546875 Q1.109375 -9.796875 2.0078125 -10.6484375 Q2.90625 -11.5 4.40625 -11.5 Q5.90625 -11.5 6.8203125 -10.6328125 Q7.734375 -9.765625 7.734375 -8.515625 Q7.734375 -7.71875 7.3125 -7.125 Q6.890625 -6.53125 6.046875 -6.21875 Q7.09375 -5.875 7.6484375 -5.109375 Q8.203125 -4.34375 8.203125 -3.28125 Q8.203125 -1.8125 7.1640625 -0.8046875 Q6.125 0.203125 4.421875 0.203125 Q2.734375 0.203125 1.6953125 -0.8046875 Q0.65625 -1.8125 0.65625 -3.3125 Q0.65625 -4.4375 1.21875 -5.1875 Q1.78125 -5.9375 2.828125 -6.21875 Z M2.546875 -8.59375 Q2.546875 -7.78125 3.0703125 -7.265625 Q3.59375 -6.75 4.4375 -6.75 Q5.25 -6.75 5.765625 -7.265625 Q6.28125 -7.78125 6.28125 -8.515625 Q6.28125 -9.296875 5.75 -9.8203125 Q5.21875 -10.34375 4.421875 -10.34375 Q3.609375 -10.34375 3.078125 -9.828125 Q2.546875 -9.3125 2.546875 -8.59375 Z M2.09375 -3.3125 Q2.09375 -2.703125 2.3828125 -2.140625 Q2.671875 -1.578125 3.234375 -1.2734375 Q3.796875 -0.96875 4.4375 -0.96875 Q5.453125 -0.96875 6.109375 -1.6171875 Q6.765625 -2.265625 6.765625 -3.265625 Q6.765625 -4.28125 6.0859375 -4.9453125 Q5.40625 -5.609375 4.390625 -5.609375 Q3.40625 -5.609375 2.75 -4.953125 Q2.09375 -4.296875 2.09375 -3.3125 Z"/></g></g><path d=" M30.587890625 134.5 L46.152994791666664 134.5 L46.152994791666664 157.5 L30.587890625 157.5 L30.587890625 134.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.689453125 103.5 L46.152994791666664 103.5 L46.152994791666664 126.5 L21.689453125 126.5 L21.689453125 103.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,24.356119155883732,122.50000000000006)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.96875 0.0 L4.5625 0.0 L4.5625 -8.96875 Q4.046875 -8.484375 3.2265625 -8.0 Q2.40625 -7.515625 1.75 -7.265625 L1.75 -8.625 Q2.921875 -9.1875 3.8046875 -9.9765625 Q4.6875 -10.765625 5.0625 -11.5 L5.96875 -11.5 L5.96875 0.0 Z"/><path d=" M9.5703125 -5.65625 Q9.5703125 -7.6875 9.984375 -8.921875 Q10.3984375 -10.15625 11.2265625 -10.828125 Q12.0546875 -11.5 13.3046875 -11.5 Q14.2265625 -11.5 14.921875 -11.1328125 Q15.6171875 -10.765625 16.0703125 -10.0625 Q16.5234375 -9.359375 16.78125 -8.359375 Q17.0390625 -7.359375 17.0390625 -5.65625 Q17.0390625 -3.640625 16.625 -2.3984375 Q16.2109375 -1.15625 15.3828125 -0.4765625 Q14.5546875 0.203125 13.3046875 0.203125 Q11.6484375 0.203125 10.6953125 -1.0 Q9.5703125 -2.421875 9.5703125 -5.65625 Z M11.0078125 -5.65625 Q11.0078125 -2.828125 11.671875 -1.8984375 Q12.3359375 -0.96875 13.3046875 -0.96875 Q14.2734375 -0.96875 14.9296875 -1.90625 Q15.5859375 -2.84375 15.5859375 -5.65625 Q15.5859375 -8.484375 14.9296875 -9.4140625 Q14.2734375 -10.34375 13.2890625 -10.34375 Q12.3203125 -10.34375 11.7421875 -9.515625 Q11.0078125 -8.46875 11.0078125 -5.65625 Z"/></g></g><path d=" M21.689453125 103.5 L46.152994791666664 103.5 L46.152994791666664 126.5 L21.689453125 126.5 L21.689453125 103.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.689453125 72.5 L46.152994791666664 72.5 L46.152994791666664 95.5 L21.689453125 95.5 L21.689453125 72.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,24.356119155883732,91.50000000000006)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.96875 0.0 L4.5625 0.0 L4.5625 -8.96875 Q4.046875 -8.484375 3.2265625 -8.0 Q2.40625 -7.515625 1.75 -7.265625 L1.75 -8.625 Q2.921875 -9.1875 3.8046875 -9.9765625 Q4.6875 -10.765625 5.0625 -11.5 L5.96875 -11.5 L5.96875 0.0 Z"/><path d=" M16.9609375 -1.359375 L16.9609375 0.0 L9.3828125 0.0 Q9.3671875 -0.515625 9.5546875 -0.984375 Q9.8359375 -1.75 10.4765625 -2.5 Q11.1171875 -3.25 12.3203125 -4.234375 Q14.1796875 -5.765625 14.8359375 -6.6640625 Q15.4921875 -7.5625 15.4921875 -8.359375 Q15.4921875 -9.1875 14.8984375 -9.765625 Q14.3046875 -10.34375 13.3359375 -10.34375 Q12.3203125 -10.34375 11.7109375 -9.734375 Q11.1015625 -9.125 11.1015625 -8.046875 L9.6484375 -8.1875 Q9.8046875 -9.8125 10.7734375 -10.65625 Q11.7421875 -11.5 13.3671875 -11.5 Q15.0234375 -11.5 15.984375 -10.5859375 Q16.9453125 -9.671875 16.9453125 -8.328125 Q16.9453125 -7.640625 16.6640625 -6.9765625 Q16.3828125 -6.3125 15.7265625 -5.578125 Q15.0703125 -4.84375 13.5546875 -3.5625 Q12.2890625 -2.5 11.9296875 -2.1171875 Q11.5703125 -1.734375 11.3359375 -1.359375 L16.9609375 -1.359375 Z"/></g></g><path d=" M21.689453125 72.5 L46.152994791666664 72.5 L46.152994791666664 95.5 L21.689453125 95.5 L21.689453125 72.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.689453125 42.5 L46.152994791666664 42.5 L46.152994791666664 65.5 L21.689453125 65.5 L21.689453125 42.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,24.356119155883732,61.50000000000006)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.96875 0.0 L4.5625 0.0 L4.5625 -8.96875 Q4.046875 -8.484375 3.2265625 -8.0 Q2.40625 -7.515625 1.75 -7.265625 L1.75 -8.625 Q2.921875 -9.1875 3.8046875 -9.9765625 Q4.6875 -10.765625 5.0625 -11.5 L5.96875 -11.5 L5.96875 0.0 Z"/><path d=" M14.0703125 0.0 L14.0703125 -2.75 L9.1015625 -2.75 L9.1015625 -4.03125 L14.3359375 -11.453125 L15.4765625 -11.453125 L15.4765625 -4.03125 L17.0234375 -4.03125 L17.0234375 -2.75 L15.4765625 -2.75 L15.4765625 0.0 L14.0703125 0.0 Z M14.0703125 -4.03125 L14.0703125 -9.203125 L10.4921875 -4.03125 L14.0703125 -4.03125 Z"/></g></g><path d=" M21.689453125 42.5 L46.152994791666664 42.5 L46.152994791666664 65.5 L21.689453125 65.5 L21.689453125 42.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M37.00000000000001 138.42591349283856 L151.42591349283856 138.42591349283856 L151.42591349283856 168.42591349283856 L37.00000000000001 168.42591349283856 L37.00000000000001 138.42591349283856 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-131.42591349283862,205.42591349283862)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(-0.0,-1.0,1.0,0.0,32.000005086262945,165.7592455546062)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.859375 0.0 L5.859375 -6.375 L0.0625 -15.03125 L2.484375 -15.03125 L5.4375 -10.5 Q6.265625 -9.234375 6.96875 -7.953125 Q7.65625 -9.140625 8.609375 -10.609375 L11.53125 -15.03125 L13.84375 -15.03125 L7.84375 -6.375 L7.84375 0.0 L5.859375 0.0 Z"/><path d=" M14.88714599609375 -4.515625 L14.88714599609375 -6.375 L20.55902099609375 -6.375 L20.55902099609375 -4.515625 L14.88714599609375 -4.515625 Z"/><path d=" M21.28125 0.0 L27.0625 -15.03125 L29.203125 -15.03125 L35.34375 0.0 L33.078125 0.0 L31.328125 -4.546875 L25.046875 -4.546875 L23.390625 0.0 L21.28125 0.0 Z M25.625 -6.171875 L30.71875 -6.171875 L29.140625 -10.34375 Q28.421875 -12.234375 28.078125 -13.453125 Q27.796875 -12.0 27.265625 -10.578125 L25.625 -6.171875 Z"/><path d=" M35.68402099609375 0.0 L39.65277099609375 -5.65625 L35.98089599609375 -10.890625 L38.29339599609375 -10.890625 L39.96527099609375 -8.34375 Q40.43402099609375 -7.609375 40.71527099609375 -7.109375 Q41.16839599609375 -7.796875 41.54339599609375 -8.3125 L43.38714599609375 -10.890625 L45.59027099609375 -10.890625 L41.82464599609375 -5.765625 L45.87152099609375 0.0 L43.60589599609375 0.0 L41.37152099609375 -3.390625 L40.77777099609375 -4.296875 L37.91839599609375 0.0 L35.68402099609375 0.0 Z"/><path d=" M47.57464599609375 -12.90625 L47.57464599609375 -15.03125 L49.41839599609375 -15.03125 L49.41839599609375 -12.90625 L47.57464599609375 -12.90625 Z M47.57464599609375 0.0 L47.57464599609375 -10.890625 L49.41839599609375 -10.890625 L49.41839599609375 0.0 L47.57464599609375 0.0 Z"/><path d=" M51.559600830078125 -3.25 L53.387725830078125 -3.53125 Q53.543975830078125 -2.4375 54.247100830078125 -1.8515625 Q54.950225830078125 -1.265625 56.215850830078125 -1.265625 Q57.481475830078125 -1.265625 58.098663330078125 -1.7890625 Q58.715850830078125 -2.3125 58.715850830078125 -3.0 Q58.715850830078125 -3.625 58.168975830078125 -3.984375 Q57.793975830078125 -4.234375 56.278350830078125 -4.609375 Q54.247100830078125 -5.125 53.465850830078125 -5.5 Q52.684600830078125 -5.875 52.278350830078125 -6.5390625 Q51.872100830078125 -7.203125 51.872100830078125 -8.0 Q51.872100830078125 -8.71875 52.208038330078125 -9.34375 Q52.543975830078125 -9.96875 53.106475830078125 -10.375 Q53.543975830078125 -10.6875 54.286163330078125 -10.9140625 Q55.028350830078125 -11.140625 55.887725830078125 -11.140625 Q57.168975830078125 -11.140625 58.137725830078125 -10.765625 Q59.106475830078125 -10.390625 59.567413330078125 -9.765625 Q60.028350830078125 -9.140625 60.200225830078125 -8.078125 L58.387725830078125 -7.828125 Q58.278350830078125 -8.671875 57.684600830078125 -9.1484375 Q57.090850830078125 -9.625 56.012725830078125 -9.625 Q54.747100830078125 -9.625 54.200225830078125 -9.203125 Q53.653350830078125 -8.78125 53.653350830078125 -8.21875 Q53.653350830078125 -7.859375 53.887725830078125 -7.5625 Q54.106475830078125 -7.265625 54.590850830078125 -7.078125 Q54.872100830078125 -6.96875 56.215850830078125 -6.609375 Q58.184600830078125 -6.078125 58.958038330078125 -5.75 Q59.731475830078125 -5.421875 60.168975830078125 -4.78125 Q60.606475830078125 -4.140625 60.606475830078125 -3.203125 Q60.606475830078125 -2.28125 60.067413330078125 -1.4609375 Q59.528350830078125 -0.640625 58.512725830078125 -0.1953125 Q57.497100830078125 0.25 56.215850830078125 0.25 Q54.090850830078125 0.25 52.981475830078125 -0.6328125 Q51.872100830078125 -1.515625 51.559600830078125 -3.25 Z"/><path d=""/><path d=" M72.93402099609375 0.0 L72.93402099609375 -13.265625 L67.99652099609375 -13.265625 L67.99652099609375 -15.03125 L79.90277099609375 -15.03125 L79.90277099609375 -13.265625 L74.93402099609375 -13.265625 L74.93402099609375 0.0 L72.93402099609375 0.0 Z"/><path d=" M81.90567016601562 -12.90625 L81.90567016601562 -15.03125 L83.74942016601562 -15.03125 L83.74942016601562 -12.90625 L81.90567016601562 -12.90625 Z M81.90567016601562 0.0 L81.90567016601562 -10.890625 L83.74942016601562 -10.890625 L83.74942016601562 0.0 L81.90567016601562 0.0 Z"/><path d=" M90.671875 -1.65625 L90.9375 -0.015625 Q90.15625 0.140625 89.53125 0.140625 Q88.53125 0.140625 87.9765625 -0.1796875 Q87.421875 -0.5 87.1953125 -1.015625 Q86.96875 -1.53125 86.96875 -3.1875 L86.96875 -9.453125 L85.625 -9.453125 L85.625 -10.890625 L86.96875 -10.890625 L86.96875 -13.59375 L88.8125 -14.6875 L88.8125 -10.890625 L90.671875 -10.890625 L90.671875 -9.453125 L88.8125 -9.453125 L88.8125 -3.09375 Q88.8125 -2.296875 88.90625 -2.0703125 Q89.0 -1.84375 89.21875 -1.7109375 Q89.4375 -1.578125 89.859375 -1.578125 Q90.15625 -1.578125 90.671875 -1.65625 Z"/><path d=" M92.51504516601562 0.0 L92.51504516601562 -15.03125 L94.35879516601562 -15.03125 L94.35879516601562 0.0 L92.51504516601562 0.0 Z"/><path d=" M104.75 -3.5 L106.65625 -3.265625 Q106.203125 -1.59375 104.984375 -0.671875 Q103.765625 0.25 101.859375 0.25 Q99.46875 0.25 98.0703125 -1.2265625 Q96.671875 -2.703125 96.671875 -5.359375 Q96.671875 -8.09375 98.0859375 -9.6171875 Q99.5 -11.140625 101.765625 -11.140625 Q103.953125 -11.140625 105.3359375 -9.6484375 Q106.71875 -8.15625 106.71875 -5.46875 Q106.71875 -5.296875 106.703125 -4.96875 L98.578125 -4.96875 Q98.6875 -3.171875 99.6015625 -2.21875 Q100.515625 -1.265625 101.875 -1.265625 Q102.890625 -1.265625 103.609375 -1.8046875 Q104.328125 -2.34375 104.75 -3.5 Z M98.6875 -6.484375 L104.765625 -6.484375 Q104.640625 -7.859375 104.0625 -8.546875 Q103.1875 -9.625 101.78125 -9.625 Q100.515625 -9.625 99.6484375 -8.7734375 Q98.78125 -7.921875 98.6875 -6.484375 Z"/></g></g><path d=" M37.00000000000001 138.42591349283856 L151.42591349283856 138.42591349283856 L151.42591349283856 168.42591349283856 L37.00000000000001 168.42591349283856 L37.00000000000001 138.42591349283856 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-131.42591349283862,205.42591349283862)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M447.0 178.0 L447.0 192.0 L471.0 192.0 L471.0 178.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-6.394884621840902E-14,5.6843418860808015E-14)" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M447.0 178.0 L447.0 192.0 L471.0 192.0 L471.0 178.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-6.394884621840902E-14,5.6843418860808015E-14)" style="stroke:#0059b2;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M474.3971354166667 174.0 L539.7591145833334 174.0 L539.7591145833334 197.0 L474.3971354166667 197.0 L474.3971354166667 174.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-6.394884621840902E-14,5.6843418860808015E-14)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,477.0638122558593,193.00000000000006)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.71875 -3.6875 L2.15625 -3.8125 Q2.25 -2.953125 2.625 -2.3984375 Q3.0 -1.84375 3.78125 -1.5078125 Q4.5625 -1.171875 5.53125 -1.171875 Q6.40625 -1.171875 7.0703125 -1.4296875 Q7.734375 -1.6875 8.0546875 -2.1328125 Q8.375 -2.578125 8.375 -3.109375 Q8.375 -3.65625 8.0625 -4.0546875 Q7.75 -4.453125 7.03125 -4.734375 Q6.578125 -4.90625 5.0 -5.2890625 Q3.421875 -5.671875 2.78125 -6.0 Q1.96875 -6.4375 1.5625 -7.0703125 Q1.15625 -7.703125 1.15625 -8.5 Q1.15625 -9.359375 1.6484375 -10.1171875 Q2.140625 -10.875 3.0859375 -11.265625 Q4.03125 -11.65625 5.1875 -11.65625 Q6.46875 -11.65625 7.4375 -11.2421875 Q8.40625 -10.828125 8.9296875 -10.03125 Q9.453125 -9.234375 9.5 -8.234375 L8.046875 -8.125 Q7.921875 -9.203125 7.25 -9.7578125 Q6.578125 -10.3125 5.25 -10.3125 Q3.875 -10.3125 3.25 -9.8125 Q2.625 -9.3125 2.625 -8.59375 Q2.625 -7.984375 3.0625 -7.578125 Q3.5 -7.1875 5.3515625 -6.765625 Q7.203125 -6.34375 7.890625 -6.03125 Q8.890625 -5.578125 9.3671875 -4.8671875 Q9.84375 -4.15625 9.84375 -3.234375 Q9.84375 -2.328125 9.3203125 -1.515625 Q8.796875 -0.703125 7.8125 -0.25 Q6.828125 0.203125 5.609375 0.203125 Q4.046875 0.203125 3.0 -0.2578125 Q1.953125 -0.71875 1.3515625 -1.625 Q0.75 -2.53125 0.71875 -3.6875 Z"/><path d=" M17.40625 -2.671875 L18.859375 -2.5 Q18.515625 -1.21875 17.5859375 -0.515625 Q16.65625 0.1875 15.21875 0.1875 Q13.390625 0.1875 12.328125 -0.9375 Q11.265625 -2.0625 11.265625 -4.078125 Q11.265625 -6.171875 12.34375 -7.328125 Q13.421875 -8.484375 15.140625 -8.484375 Q16.796875 -8.484375 17.8515625 -7.3515625 Q18.90625 -6.21875 18.90625 -4.171875 Q18.90625 -4.046875 18.90625 -3.796875 L12.71875 -3.796875 Q12.796875 -2.421875 13.4921875 -1.6953125 Q14.1875 -0.96875 15.21875 -0.96875 Q16.0 -0.96875 16.546875 -1.375 Q17.09375 -1.78125 17.40625 -2.671875 Z M12.796875 -4.953125 L17.421875 -4.953125 Q17.328125 -6.0 16.890625 -6.515625 Q16.21875 -7.328125 15.15625 -7.328125 Q14.1875 -7.328125 13.5234375 -6.6796875 Q12.859375 -6.03125 12.796875 -4.953125 Z"/><path d=" M20.6171875 0.0 L20.6171875 -8.296875 L21.8828125 -8.296875 L21.8828125 -7.046875 Q22.3671875 -7.921875 22.7734375 -8.203125 Q23.1796875 -8.484375 23.6796875 -8.484375 Q24.3828125 -8.484375 25.1171875 -8.03125 L24.6328125 -6.734375 Q24.1171875 -7.03125 23.6015625 -7.03125 Q23.1484375 -7.03125 22.78125 -6.7578125 Q22.4140625 -6.484375 22.2578125 -5.984375 Q22.0234375 -5.234375 22.0234375 -4.34375 L22.0234375 0.0 L20.6171875 0.0 Z"/><path d=" M25.9609375 -9.84375 L25.9609375 -11.453125 L27.3671875 -11.453125 L27.3671875 -9.84375 L25.9609375 -9.84375 Z M25.9609375 0.0 L25.9609375 -8.296875 L27.3671875 -8.296875 L27.3671875 0.0 L25.9609375 0.0 Z"/><path d=" M35.1875 -2.671875 L36.640625 -2.5 Q36.296875 -1.21875 35.3671875 -0.515625 Q34.4375 0.1875 33.0 0.1875 Q31.171875 0.1875 30.109375 -0.9375 Q29.046875 -2.0625 29.046875 -4.078125 Q29.046875 -6.171875 30.125 -7.328125 Q31.203125 -8.484375 32.921875 -8.484375 Q34.578125 -8.484375 35.6328125 -7.3515625 Q36.6875 -6.21875 36.6875 -4.171875 Q36.6875 -4.046875 36.6875 -3.796875 L30.5 -3.796875 Q30.578125 -2.421875 31.2734375 -1.6953125 Q31.96875 -0.96875 33.0 -0.96875 Q33.78125 -0.96875 34.328125 -1.375 Q34.875 -1.78125 35.1875 -2.671875 Z M30.578125 -4.953125 L35.203125 -4.953125 Q35.109375 -6.0 34.671875 -6.515625 Q34.0 -7.328125 32.9375 -7.328125 Q31.96875 -7.328125 31.3046875 -6.6796875 Q30.640625 -6.03125 30.578125 -4.953125 Z"/><path d=" M37.8515625 -2.484375 L39.2421875 -2.703125 Q39.3515625 -1.859375 39.890625 -1.4140625 Q40.4296875 -0.96875 41.3828125 -0.96875 Q42.3515625 -0.96875 42.8203125 -1.3671875 Q43.2890625 -1.765625 43.2890625 -2.296875 Q43.2890625 -2.765625 42.8828125 -3.046875 Q42.5859375 -3.234375 41.4453125 -3.515625 Q39.8984375 -3.90625 39.296875 -4.1953125 Q38.6953125 -4.484375 38.390625 -4.984375 Q38.0859375 -5.484375 38.0859375 -6.09375 Q38.0859375 -6.65625 38.3359375 -7.125 Q38.5859375 -7.59375 39.0234375 -7.90625 Q39.3515625 -8.15625 39.921875 -8.3203125 Q40.4921875 -8.484375 41.1328125 -8.484375 Q42.1171875 -8.484375 42.8515625 -8.203125 Q43.5859375 -7.921875 43.9375 -7.4453125 Q44.2890625 -6.96875 44.4296875 -6.15625 L43.0546875 -5.96875 Q42.9609375 -6.609375 42.5078125 -6.96875 Q42.0546875 -7.328125 41.2421875 -7.328125 Q40.2734375 -7.328125 39.859375 -7.0078125 Q39.4453125 -6.6875 39.4453125 -6.265625 Q39.4453125 -5.984375 39.6171875 -5.765625 Q39.7890625 -5.546875 40.1484375 -5.390625 Q40.3671875 -5.3125 41.3984375 -5.03125 Q42.8828125 -4.640625 43.4765625 -4.3828125 Q44.0703125 -4.125 44.40625 -3.640625 Q44.7421875 -3.15625 44.7421875 -2.4375 Q44.7421875 -1.734375 44.328125 -1.1171875 Q43.9140625 -0.5 43.140625 -0.15625 Q42.3671875 0.1875 41.3984375 0.1875 Q39.7734375 0.1875 38.9296875 -0.484375 Q38.0859375 -1.15625 37.8515625 -2.484375 Z"/><path d=""/><path d=" M55.765625 0.0 L54.359375 0.0 L54.359375 -8.96875 Q53.84375 -8.484375 53.0234375 -8.0 Q52.203125 -7.515625 51.546875 -7.265625 L51.546875 -8.625 Q52.71875 -9.1875 53.6015625 -9.9765625 Q54.484375 -10.765625 54.859375 -11.5 L55.765625 -11.5 L55.765625 0.0 Z"/></g></g><path d=" M474.3971354166667 174.0 L539.7591145833334 174.0 L539.7591145833334 197.0 L474.3971354166667 197.0 L474.3971354166667 174.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/></g><g style="fill-opacity:0.01;fill:#FFFFFF;"/></svg> \ No newline at end of file
+]]></script><style type="text/css"><![CDATA[.tooltip.text{ text-anchor:left;font-size:12pt;fill:black;}.tooltip{fill:rgb(244,245,235)}]]></style><path d=" M0.0 0.0 L533.0 0.0 L533.0 333.0 L0.0 333.0 L0.0 0.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M4.0 4.0 L216.94791666666666 4.0 L216.94791666666666 49.0 L4.0 49.0 L4.0 4.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="32" style="fill-opacity:1.0;fill:#000000;" x="6.6666665" y="42.0">Bar Chart Title</text><path d=" M4.0 4.0 L216.94791666666666 4.0 L216.94791666666666 49.0 L4.0 49.0 L4.0 4.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M58.81966145833333 54.0 L436.73046875 54.0 L436.73046875 271.64600296559524 L58.81966145833333 271.64600296559524 L58.81966145833333 54.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M58.81966145833333 277.31266963226193 L435.73046875 277.31266963226193" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M58.0 272.31266963226193 L58.0 282.31266963226193" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M184.0 272.31266963226193 L184.0 282.31266963226193" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M310.0 272.31266963226193 L310.0 282.31266963226193" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M435.0 272.31266963226193 L435.0 282.31266963226193" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M58.81966145833332 305.0 L173.24557495117188 305.0 L173.24557495117188 335.0 L58.81966145833332 335.0 L58.81966145833332 305.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="21" style="fill-opacity:1.0;fill:#000000;" x="61.48633" y="330.0">X-Axis Title</text><path d=" M58.81966145833332 305.0 L173.24557495117188 305.0 L173.24557495117188 335.0 L58.81966145833332 335.0 L58.81966145833332 305.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M52.152994791666664 270.64600296559524 L52.152994791666664 54.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 270.0 L57.152994791666664 270.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 239.0 L57.152994791666664 239.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 208.0 L57.152994791666664 208.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 177.0 L57.152994791666664 177.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 146.0 L57.152994791666664 146.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 115.0 L57.152994791666664 115.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 84.0 L57.152994791666664 84.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M47.152994791666664 54.0 L57.152994791666664 54.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M37.00000000000001 138.42591349283856 L151.42591349283856 138.42591349283856 L151.42591349283856 168.42591349283856 L37.00000000000001 168.42591349283856 L37.00000000000001 138.42591349283856 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-131.42591349283856,205.42591349283856)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="21" style="fill-opacity:1.0;fill:#000000;" transform="matrix(-0.0,-1.0,1.0,0.0,-131.42591349283856,205.42591349283856)" x="39.666668" y="163.42592">Y-Axis Title</text><path d=" M37.00000000000001 138.42591349283856 L151.42591349283856 138.42591349283856 L151.42591349283856 168.42591349283856 L37.00000000000001 168.42591349283856 L37.00000000000001 138.42591349283856 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-131.42591349283856,205.42591349283856)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M89.0 193.0 L89.0 270.0 L151.0 270.0 L151.0 193.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M89.0 193.0 L89.0 270.0 L151.0 270.0 L151.0 193.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#0059b2;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M215.0 208.0 L215.0 270.0 L277.0 270.0 L277.0 208.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M215.0 208.0 L215.0 270.0 L277.0 270.0 L277.0 208.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#0059b2;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M341.0 84.0 L341.0 270.0 L403.0 270.0 L403.0 84.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M341.0 84.0 L341.0 270.0 L403.0 270.0 L403.0 84.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#0059b2;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M106.04557291666667 165.0 L134.95442708333334 165.0 L134.95442708333334 188.0 L106.04557291666667 188.0 L106.04557291666667 165.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="108.71224" y="184.0">5.0</text><path d=" M106.04557291666667 165.0 L134.95442708333334 165.0 L134.95442708333334 188.0 L106.04557291666667 188.0 L106.04557291666667 165.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M232.04557291666666 180.0 L260.9544270833333 180.0 L260.9544270833333 203.0 L232.04557291666666 203.0 L232.04557291666666 180.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="234.71223" y="199.0">4.0</text><path d=" M232.04557291666666 180.0 L260.9544270833333 180.0 L260.9544270833333 203.0 L232.04557291666666 203.0 L232.04557291666666 180.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M353.5963541666667 56.0 L391.40364583333337 56.0 L391.40364583333337 79.0 L353.5963541666667 79.0 L353.5963541666667 56.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" x="356.26303" y="75.0">12.0</text><path d=" M353.5963541666667 56.0 L391.40364583333337 56.0 L391.40364583333337 79.0 L353.5963541666667 79.0 L353.5963541666667 56.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M124.66921720712652 288.76211525348225 L142.0077588737932 288.76211525348225 L142.0077588737932 311.76211525348225 L124.66921720712652 311.76211525348225 L124.66921720712652 288.76211525348225 Z" transform="matrix(0.6946583704589974,-0.7193398003386511,0.7193398003386511,0.6946583704589974,-186.19619580397023,184.87348211479843)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(0.6946583704589974,-0.7193398003386511,0.7193398003386511,0.6946583704589974,-186.19619580397023,184.87348211479843)" x="127.9713" y="307.76212">A</text><path d=" M124.66921720712652 288.76211525348225 L142.0077588737932 288.76211525348225 L142.0077588737932 311.76211525348225 L124.66921720712652 311.76211525348225 L124.66921720712652 288.76211525348225 Z" transform="matrix(0.6946583704589974,-0.7193398003386511,0.7193398003386511,0.6946583704589974,-186.19619580397023,184.87348211479843)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M250.13194237372463 288.76211525348225 L267.4704840403913 288.76211525348225 L267.4704840403913 311.76211525348225 L250.13194237372463 311.76211525348225 L250.13194237372463 288.76211525348225 Z" transform="matrix(0.6946583704589974,-0.7193398003386511,0.7193398003386511,0.6946583704589974,-147.88720285494622,275.1238137860822)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(0.6946583704589974,-0.7193398003386511,0.7193398003386511,0.6946583704589974,-147.88720285494622,275.1238137860822)" x="254.47308" y="307.76212">B</text><path d=" M250.13194237372463 288.76211525348225 L267.4704840403913 288.76211525348225 L267.4704840403913 311.76211525348225 L250.13194237372463 311.76211525348225 L250.13194237372463 288.76211525348225 Z" transform="matrix(0.6946583704589974,-0.7193398003386511,0.7193398003386511,0.6946583704589974,-147.88720285494622,275.1238137860822)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M375.9040075959178 289.3971574209687 L394.1253617625845 289.3971574209687 L394.1253617625845 312.3971574209687 L375.9040075959178 312.3971574209687 L375.9040075959178 289.3971574209687 Z" transform="matrix(0.6946583704589974,-0.7193398003386511,0.7193398003386511,0.6946583704589974,-109.94056661523086,365.790570881442)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(0.6946583704589974,-0.7193398003386511,0.7193398003386511,0.6946583704589974,-109.94056661523086,365.790570881442)" x="379.95218" y="308.39716">C</text><path d=" M375.9040075959178 289.3971574209687 L394.1253617625845 289.3971574209687 L394.1253617625845 312.3971574209687 L375.9040075959178 312.3971574209687 L375.9040075959178 289.3971574209687 Z" transform="matrix(0.6946583704589974,-0.7193398003386511,0.7193398003386511,0.6946583704589974,-109.94056661523086,365.790570881442)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M58.81966145833332 305.0 L173.24557495117188 305.0 L173.24557495117188 335.0 L58.81966145833332 335.0 L58.81966145833332 305.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="21" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" x="61.48633" y="330.0">X-Axis Title</text><path d=" M58.81966145833332 305.0 L173.24557495117188 305.0 L173.24557495117188 335.0 L58.81966145833332 335.0 L58.81966145833332 305.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 258.5 L46.152994791666664 258.5 L46.152994791666664 281.5 L30.587890625 281.5 L30.587890625 258.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" x="33.25456" y="277.5">0</text><path d=" M30.587890625 258.5 L46.152994791666664 258.5 L46.152994791666664 281.5 L30.587890625 281.5 L30.587890625 258.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 227.5 L46.152994791666664 227.5 L46.152994791666664 250.5 L30.587890625 250.5 L30.587890625 227.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" x="33.25456" y="246.5">2</text><path d=" M30.587890625 227.5 L46.152994791666664 227.5 L46.152994791666664 250.5 L30.587890625 250.5 L30.587890625 227.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 196.5 L46.152994791666664 196.5 L46.152994791666664 219.5 L30.587890625 219.5 L30.587890625 196.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" x="33.25456" y="215.5">4</text><path d=" M30.587890625 196.5 L46.152994791666664 196.5 L46.152994791666664 219.5 L30.587890625 219.5 L30.587890625 196.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 165.5 L46.152994791666664 165.5 L46.152994791666664 188.5 L30.587890625 188.5 L30.587890625 165.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" x="33.25456" y="184.5">6</text><path d=" M30.587890625 165.5 L46.152994791666664 165.5 L46.152994791666664 188.5 L30.587890625 188.5 L30.587890625 165.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M30.587890625 134.5 L46.152994791666664 134.5 L46.152994791666664 157.5 L30.587890625 157.5 L30.587890625 134.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" x="33.25456" y="153.5">8</text><path d=" M30.587890625 134.5 L46.152994791666664 134.5 L46.152994791666664 157.5 L30.587890625 157.5 L30.587890625 134.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.689453125 103.5 L46.152994791666664 103.5 L46.152994791666664 126.5 L21.689453125 126.5 L21.689453125 103.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" x="24.35612" y="122.5">10</text><path d=" M21.689453125 103.5 L46.152994791666664 103.5 L46.152994791666664 126.5 L21.689453125 126.5 L21.689453125 103.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.689453125 72.5 L46.152994791666664 72.5 L46.152994791666664 95.5 L21.689453125 95.5 L21.689453125 72.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" x="24.35612" y="91.5">12</text><path d=" M21.689453125 72.5 L46.152994791666664 72.5 L46.152994791666664 95.5 L21.689453125 95.5 L21.689453125 72.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.689453125 42.5 L46.152994791666664 42.5 L46.152994791666664 65.5 L21.689453125 65.5 L21.689453125 42.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" x="24.35612" y="61.5">14</text><path d=" M21.689453125 42.5 L46.152994791666664 42.5 L46.152994791666664 65.5 L21.689453125 65.5 L21.689453125 42.5 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M37.00000000000001 138.42591349283856 L151.42591349283856 138.42591349283856 L151.42591349283856 168.42591349283856 L37.00000000000001 168.42591349283856 L37.00000000000001 138.42591349283856 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-131.42591349283862,205.42591349283862)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="21" style="fill-opacity:1.0;fill:#000000;" transform="matrix(-0.0,-1.0,1.0,0.0,-131.42591349283862,205.42591349283862)" x="39.666668" y="163.42592">Y-Axis Title</text><path d=" M37.00000000000001 138.42591349283856 L151.42591349283856 138.42591349283856 L151.42591349283856 168.42591349283856 L37.00000000000001 168.42591349283856 L37.00000000000001 138.42591349283856 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-131.42591349283862,205.42591349283862)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M447.0 178.0 L447.0 192.0 L471.0 192.0 L471.0 178.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-6.394884621840902E-14,5.6843418860808015E-14)" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M447.0 178.0 L447.0 192.0 L471.0 192.0 L471.0 178.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-6.394884621840902E-14,5.6843418860808015E-14)" style="stroke:#0059b2;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M474.3971354166667 174.0 L539.7591145833334 174.0 L539.7591145833334 197.0 L474.3971354166667 197.0 L474.3971354166667 174.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-6.394884621840902E-14,5.6843418860808015E-14)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-6.394884621840902E-14,5.6843418860808015E-14)" x="477.0638" y="193.0">Series 1</text><path d=" M474.3971354166667 174.0 L539.7591145833334 174.0 L539.7591145833334 197.0 L474.3971354166667 197.0 L474.3971354166667 174.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-6.394884621840902E-14,5.6843418860808015E-14)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/></g><g id="hotSpots" style="fill-opacity:0.01;fill:#FFFFFF;"/></svg> \ No newline at end of file
diff --git a/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/3dline.svg b/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/3dline.svg
index 0204960..47d4b86 100644
--- a/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/3dline.svg
+++ b/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/3dline.svg
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="533.0" height="333.0"><g style="fill:none;stroke:none"><defs/><script><![CDATA[function BuildHelper(tag, attrList, text) {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="533.0" height="333.0"><g id="outerG" style="fill:none;stroke:none"><defs/><script><![CDATA[function BuildHelper(tag, attrList, text) {
this.tag = tag;
this.attrList = attrList;
this.text = text;
@@ -71,42 +71,82 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
}
}
- TM.show = function TooltiplManager_showTooltip(evt){
- var text = TM.getText(TM.getTitleElement(evt));
- x = evt.clientX;
- y = evt.clientY;
- if (typeof this.group == 'undefined'){
- this.height = 15;
- this.xPadding = 5;
- this.yPadding = -20;
- var mainSvg = evt.target.ownerDocument.documentElement;
- var off = mainSvg.currentTranslate;
- var scl = mainSvg.currentScale;
- this.group = new BuildHelper("g",
- {
- transform:"translate("+(((x+20))/scl)+","+(((y+20))/scl)+")"
- } );
- this.group.addToParent(mainSvg);
- this.rectangle = new BuildHelper("rect",
- {id:"test",
- x: 0,
- y: this.yPadding,
- height: this.height,
- classType: "tooltip"
- } );
- this.rectangle.addToParent(this.group.element);
- var textObj = new BuildHelper("text",
- {id:"tooltip",
- x: this.xPadding,
- y: (this.height/2+4+this.yPadding),
- classType: "tooltip text"
- },text);
- textObj.addToParent(this.group.element);
- var itemlength = textObj.element.getComputedTextLength();
- this.rectangle.element.setAttributeNS(null, "width", (itemlength+2*this.xPadding));
- }
- }
-
+ TM.show = function TooltiplManager_showTooltip(evt){
+ var text = TM.getText(TM.getTitleElement(evt));
+ x = evt.clientX;
+ y = evt.clientY;
+ update = true;
+ if (this.oldX != 'undefined'){
+ diffX = (x - this.oldX);
+ if (diffX < 0) diffX= diffX*(-1);
+ diffY = (y - this.oldY);
+ if (diffY < 0) diffY= diffY*(-1);
+ if ((diffY > 5) || (diffX > 5))
+ update = true;
+ }
+ if (update)
+ TM.remove();
+ if (typeof this.group == 'undefined'){
+ this.oldX = x;
+ this.oldY = y;
+ this.height = 15;
+ this.xPadding = 5;
+ this.yPadding = 20;
+ var mainSvg = evt.target.ownerDocument.documentElement;
+ var off = mainSvg.currentTranslate;
+ var scl = mainSvg.currentScale;
+ var adjustedX = (x-off.x)/scl;
+ var adjustedY = (y-off.y)/scl;
+ this.group = new BuildHelper("g",
+ {
+ opacity:0.8,
+ display: "inline",
+ transform:"translate("+(adjustedX + (10/scl))+","+(adjustedY + (10/scl))+")"
+ } );
+ this.group.addToParent(mainSvg);
+ this.rectangle = new BuildHelper("rect",
+ {id:"test",
+ x: 0,
+ y: 5,
+ transform:"scale("+(1/scl)+","+(1/scl)+")",
+ rx: 2,
+ ry: 2,
+ stroke: "black",
+ height: this.height,
+ classType: "tooltip"
+ } );
+ this.rectangle.addToParent(this.group.element);
+ var textObj = new BuildHelper("text",
+ {id:"tooltip",
+ x: this.xPadding,
+ y: (this.yPadding),
+ transform:"scale("+(1/scl)+","+(1/scl)+")",
+ classType: "tooltip text"
+ });
+ textObj.addToParent(this.group.element);
+ TM.setContent(textObj, text);
+ var outline = textObj.element.getBBox();
+ this.rectangle.element.setAttributeNS(null, "width", (outline.width+2*this.xPadding));
+ this.rectangle.element.setAttributeNS(null, "height", (outline.height+6));
+ }
+ }
+ TM.setContent = function TooltipManager_setContent(textElement, text){
+ var multiLine = text.split(/\\n/);
+ for (var x=0; x<multiLine.length; x++){
+ if (x == 0){
+ textObj = new BuildHelper("tspan",
+ {x: 5
+ },multiLine[x]);
+ }
+ else{
+ textObj = new BuildHelper("tspan",
+ {x: 5,
+ dy:17
+ },multiLine[x]);
+ }
+ textObj.addToParent(textElement.element);
+ }
+ }
TM.getTitleElement = function TM_getTitleElement(evt){
var elem = evt.currentTarget;
@@ -126,15 +166,18 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
return childs.item(x).nodeValue;
return "";
}
- function toggleVisibility(evt, id, compList){
+ function toggleLabelsVisibility(evt, id, compList, labelList){
var mainSvg = evt.target.ownerDocument;
for (i = 0; i < compList.length; i=i+1){
var comp = mainSvg.getElementById(id+'_'+compList[i]);
+ if ( comp == null ) continue;
var styleStr = comp.getAttribute("style");
- rVisibleExp=/visibility:visible/g;
- rHiddenExp=/visibility:hidden/g;
+ rVisibleExp=/visibility:[ ]*visible/g;
+ rInheritExp=/visibility:[ ]*inherit/g;
+ rHiddenExp=/visibility:[ ]*hidden/g;
results = styleStr.search(rVisibleExp);
- if (results == -1){
+ inResults = styleStr.search(rInheritExp);
+ if ((results == -1) && (inResults == -1)){
results = styleStr.search(rHiddenExp);
if (results == -1)
styleStr = styleStr + "visibility:hidden;";
@@ -142,10 +185,74 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
styleStr = styleStr.replace(rHiddenExp,"visibility:visible");
}
else{
+ if (inResults == -1){
styleStr = styleStr.replace(rVisibleExp,"visibility:hidden");
+ }else{
+ styleStr = styleStr.replace(rInheritExp,"visibility:hidden");
+ }
}
comp.setAttributeNS(null, "style", styleStr);
}
+ }
+ function toggleVisibility(evt, id, compList, labelList){
+ var mainSvg = evt.target.ownerDocument;
+ var isHidden = true;
+ for (i = 0; i < compList.length; i=i+1){
+ var comp = mainSvg.getElementById(id+'_'+compList[i]);
+ if ( comp == null ) continue;
+ var styleStr = comp.getAttribute("style");
+ rVisibleExp=/visibility:[ ]*visible/g;
+ rHiddenExp=/visibility:[ ]*hidden/g;
+ results = styleStr.search(rVisibleExp);
+ if (results == -1){
+ results = styleStr.search(rHiddenExp);
+ if (results == -1)
+ styleStr = styleStr + "visibility:hidden;";
+ else{
+ styleStr = styleStr.replace(rHiddenExp,"visibility:visible");
+ isHidden = false;
+ }
+ }
+ else{
+ styleStr = styleStr.replace(rVisibleExp,"visibility:hidden");
+ }
+ comp.setAttributeNS(null, "style", styleStr);
+ }
+ if (labelList != null){
+ for (i = 0; i < labelList.length; i=i+1){
+ var comp = mainSvg.getElementById(id+'_'+labelList[i]+'_g');
+ var styleStr = comp.getAttribute("style");
+ if (isHidden){
+ styleStr = styleStr + "visibility:hidden;";
+ toggleLabelVisibility(evt, id+'_'+labelList[i], 'inherit');
+ }else{
+ styleStr = styleStr.replace(rHiddenExp,"visibility:visible");
+ }
+ comp.setAttributeNS(null, "style", styleStr);
+ }
+ }
+ }
+ function toggleLabelVisibility(evt, id, property){
+ var mainSvg = evt.target.ownerDocument;
+ var comp = mainSvg.getElementById(id);
+ var styleStr = comp.getAttribute("style");
+ rVisibleExp=/visibility:[ ]*visible/g;
+ rInheritExp=/visibility:[ ]*inherit/g;
+ rHiddenExp=/visibility:[ ]*hidden/g;
+ results = styleStr.search(rVisibleExp);
+ inResults = styleStr.search(rInheritExp);
+ if ((results == -1) && (inResults == -1)){
+ results = styleStr.search(rHiddenExp);
+ if (results == -1)
+ styleStr = styleStr + "visibility:"+property+";";
+ }
+ else{
+ if (inResults == -1)
+ styleStr = styleStr.replace(rVisibleExp,"visibility:"+property);
+ else
+ styleStr = styleStr.replace(rInheritExp,"visibility:"+property);
+ }
+ comp.setAttributeNS(null, "style", styleStr);
}
function toHex(val)
{
@@ -162,51 +269,104 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
}
var oldCompId = null;
var oldCompList = null;
+ var fillToColor = new Array();
+ var strokeToColor = new Array();
function highlight(evt, id, compList){
- highlightElement(evt, oldCompId, oldCompList);
+ highlightElement(evt, oldCompId, oldCompList, false);
if (id != oldCompId){
- highlightElement(evt, id, compList);
+ highlightElement(evt, id, compList, true);
oldCompId = id;
oldCompList = compList;
}
else{
oldCompId = null;
oldCompList = null;
+ fillToColor = new Array();
+ strokeToColor = new Array();
}
}
- function highlightElement(evt, id, compList){
+ function highlightElement(evt, id, compList, highlight){
if ((id == null) || (compList == null)) return;
var mainSvg = evt.target.ownerDocument;
for (i = 0; i < compList.length; i=i+1){
var comp = mainSvg.getElementById(id+'_'+compList[i]);
+ if ( comp == null ) continue;
var styleStr = comp.getAttribute("style");
fillIndex = styleStr.search("fill:");
if (fillIndex != -1){
- styleStr = getNewStyle(styleStr, fillIndex, "fill:");
+ styleStr = getNewStyle(styleStr, fillIndex, "fill:", highlight, fillToColor, compList[i]);
}
strokeIndex = styleStr.search("stroke:");
if (strokeIndex != -1){
- styleStr = getNewStyle(styleStr, strokeIndex, "stroke:");
+ styleStr = getNewStyle(styleStr, strokeIndex, "stroke:", highlight, strokeToColor, compList[i]);
}
comp.setAttributeNS(null, "style", styleStr);
}
}
- function getNewStyle(style, index, styleAttr){
+ function getNewStyle(style, index, styleAttr, highlight, lookUpTable, id){
color = style.substring(index+styleAttr.length, style.length );
rgbIndex = color.search("rgb");
if (rgbIndex == -1){
hexColor = color.substring(1, 7);
- hc = getXorColor(hexColor);
+ hc = getHighlight(hexColor, highlight, lookUpTable, id);
return style.replace(styleAttr+"#"+hexColor,styleAttr+hc);
}
else{
bracketIndex = color.search("\\)");
color = color.substring(0, bracketIndex);
hexColor = getHexFromRGB(color);
- hc = getXorColor(hexColor);
+ hc = getHighlight(hexColor, highlight, lookUpTable, id);
return style.substring(0, index) + styleAttr+hc+ style.substring(index+bracketIndex+styleAttr.length+1, style.length);
}
}
+ function isIE(){
+ var agt=parent.navigator.userAgent.toLowerCase();
+ return (agt.indexOf("msie")!=-1);
+}
+ function resizeSVG(e){
+ if(isIE()){
+ var root=e.target.ownerDocument.documentElement;
+ var hotSpot = e.target.ownerDocument.getElementById('hotSpots');
+ var g = e.target.ownerDocument.getElementById('outerG');
+ var xScale = (innerWidth) / root.getAttribute('width');
+ var yScale = (innerHeight) / root.getAttribute('height');
+ g.setAttributeNS(null, 'transform', 'scale('+xScale+','+yScale+')');
+ hotSpot.setAttributeNS(null, 'transform', 'scale('+xScale+','+yScale+')');
+ }
+ }
+ function getHighlight(color, highlight, lookupTable, id){
+ if (!(highlight)){
+ color = lookupTable[id];
+ }
+ else{
+ lookupTable[id] = color;
+ }
+ r = color.substring(0, 2);
+ r = parseInt(r, 16);
+ g = color.substring(2, 4);
+ g = parseInt(g, 16);
+ b = color.substring(4, 6);
+ b = parseInt(b, 16);
+ var value = parseInt(r, 16);
+ if (highlight){
+ r = Math.ceil( (r + 255) / 2 );
+ g = Math.ceil( (g + 255) / 2 );
+ b = Math.ceil( (b + 255) / 2 );
+ }
+ rStr = r.toString(16);
+ gStr = g.toString(16);
+ bStr = b.toString(16);
+ while (rStr.length < 2){
+ rStr = "0"+rStr;
+ }
+ while (gStr.length < 2){
+ gStr = "0"+gStr;
+ }
+ while (bStr.length < 2){
+ bStr = "0"+bStr;
+ }
+return "#"+rStr+gStr+bStr;
+}
function getHexFromRGB(color){
findThem = /\d{1,3}/g;
listOfnum = color.match(findThem);
@@ -224,4 +384,4 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
}
return r+g+b;
}
-]]></script><style type="text/css"><![CDATA[.tooltip.text{ text-anchor:left;font-size:12pt;fill:black;}.tooltip{fill:rgb(244,245,235)}]]></style><path d=" M0.0 0.0 L533.0 0.0 L533.0 333.0 L0.0 333.0 L0.0 0.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M4.0 4.0 L227.65104166666666 4.0 L227.65104166666666 49.0 L4.0 49.0 L4.0 4.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,6.666666507720947,42.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M2.34375 0.0 L2.34375 -22.90625 L5.375 -22.90625 L5.375 -2.703125 L16.65625 -2.703125 L16.65625 0.0 L2.34375 0.0 Z"/><path d=" M19.921875 -19.671875 L19.921875 -22.90625 L22.734375 -22.90625 L22.734375 -19.671875 L19.921875 -19.671875 Z M19.921875 0.0 L19.921875 -16.59375 L22.734375 -16.59375 L22.734375 0.0 L19.921875 0.0 Z"/><path d=" M27.015625 0.0 L27.015625 -16.59375 L29.546875 -16.59375 L29.546875 -14.234375 Q31.375 -16.96875 34.828125 -16.96875 Q36.328125 -16.96875 37.5859375 -16.4296875 Q38.84375 -15.890625 39.46875 -15.015625 Q40.09375 -14.140625 40.34375 -12.9375 Q40.5 -12.15625 40.5 -10.203125 L40.5 0.0 L37.6875 0.0 L37.6875 -10.09375 Q37.6875 -11.8125 37.359375 -12.6640625 Q37.03125 -13.515625 36.1953125 -14.0234375 Q35.359375 -14.53125 34.234375 -14.53125 Q32.4375 -14.53125 31.1328125 -13.390625 Q29.828125 -12.25 29.828125 -9.0625 L29.828125 0.0 L27.015625 0.0 Z"/><path d=" M56.171875 -5.34375 L59.078125 -4.984375 Q58.390625 -2.4375 56.53125 -1.03125 Q54.671875 0.375 51.78125 0.375 Q48.140625 0.375 46.0078125 -1.8671875 Q43.875 -4.109375 43.875 -8.15625 Q43.875 -12.34375 46.03125 -14.65625 Q48.1875 -16.96875 51.625 -16.96875 Q54.953125 -16.96875 57.0625 -14.703125 Q59.171875 -12.4375 59.171875 -8.328125 Q59.171875 -8.078125 59.15625 -7.578125 L46.78125 -7.578125 Q46.9375 -4.84375 48.328125 -3.390625 Q49.71875 -1.9375 51.796875 -1.9375 Q53.34375 -1.9375 54.4375 -2.75 Q55.53125 -3.5625 56.171875 -5.34375 Z M46.9375 -9.890625 L56.203125 -9.890625 Q56.015625 -11.984375 55.140625 -13.03125 Q53.796875 -14.65625 51.65625 -14.65625 Q49.71875 -14.65625 48.3984375 -13.359375 Q47.078125 -12.0625 46.9375 -9.890625 Z"/><path d=""/><path d=" M88.203125 -8.03125 L91.234375 -7.265625 Q90.28125 -3.53125 87.8046875 -1.5703125 Q85.328125 0.390625 81.75 0.390625 Q78.046875 0.390625 75.7265625 -1.1171875 Q73.40625 -2.625 72.1953125 -5.484375 Q70.984375 -8.34375 70.984375 -11.625 Q70.984375 -15.203125 72.3515625 -17.8671875 Q73.71875 -20.53125 76.2421875 -21.9140625 Q78.765625 -23.296875 81.796875 -23.296875 Q85.234375 -23.296875 87.578125 -21.546875 Q89.921875 -19.796875 90.84375 -16.625 L87.859375 -15.921875 Q87.0625 -18.421875 85.546875 -19.5625 Q84.03125 -20.703125 81.734375 -20.703125 Q79.09375 -20.703125 77.3203125 -19.4375 Q75.546875 -18.171875 74.828125 -16.0390625 Q74.109375 -13.90625 74.109375 -11.640625 Q74.109375 -8.71875 74.9609375 -6.5390625 Q75.8125 -4.359375 77.609375 -3.28125 Q79.40625 -2.203125 81.5 -2.203125 Q84.046875 -2.203125 85.8125 -3.671875 Q87.578125 -5.140625 88.203125 -8.03125 Z"/><path d=" M94.609375 0.0 L94.609375 -22.90625 L97.421875 -22.90625 L97.421875 -14.6875 Q99.390625 -16.96875 102.390625 -16.96875 Q104.234375 -16.96875 105.59375 -16.2421875 Q106.953125 -15.515625 107.5390625 -14.234375 Q108.125 -12.953125 108.125 -10.515625 L108.125 0.0 L105.3125 0.0 L105.3125 -10.515625 Q105.3125 -12.625 104.3984375 -13.5859375 Q103.484375 -14.546875 101.8125 -14.546875 Q100.5625 -14.546875 99.4609375 -13.8984375 Q98.359375 -13.25 97.890625 -12.140625 Q97.421875 -11.03125 97.421875 -9.078125 L97.421875 0.0 L94.609375 0.0 Z"/><path d=" M123.234375 -2.046875 Q121.671875 -0.71875 120.2265625 -0.171875 Q118.78125 0.375 117.125 0.375 Q114.390625 0.375 112.921875 -0.9609375 Q111.453125 -2.296875 111.453125 -4.375 Q111.453125 -5.59375 112.0078125 -6.6015625 Q112.5625 -7.609375 113.4609375 -8.21875 Q114.359375 -8.828125 115.484375 -9.140625 Q116.3125 -9.359375 117.984375 -9.5625 Q121.390625 -9.96875 123.0 -10.53125 Q123.015625 -11.109375 123.015625 -11.265625 Q123.015625 -12.984375 122.21875 -13.6875 Q121.140625 -14.640625 119.015625 -14.640625 Q117.03125 -14.640625 116.0859375 -13.9453125 Q115.140625 -13.25 114.6875 -11.484375 L111.9375 -11.859375 Q112.3125 -13.625 113.171875 -14.7109375 Q114.03125 -15.796875 115.65625 -16.3828125 Q117.28125 -16.96875 119.421875 -16.96875 Q121.546875 -16.96875 122.875 -16.46875 Q124.203125 -15.96875 124.828125 -15.2109375 Q125.453125 -14.453125 125.703125 -13.296875 Q125.84375 -12.578125 125.84375 -10.703125 L125.84375 -6.953125 Q125.84375 -3.03125 126.0234375 -1.9921875 Q126.203125 -0.953125 126.734375 0.0 L123.796875 0.0 Q123.359375 -0.875 123.234375 -2.046875 Z M123.0 -8.328125 Q121.46875 -7.703125 118.40625 -7.265625 Q116.671875 -7.015625 115.953125 -6.703125 Q115.234375 -6.390625 114.84375 -5.7890625 Q114.453125 -5.1875 114.453125 -4.453125 Q114.453125 -3.328125 115.3046875 -2.578125 Q116.15625 -1.828125 117.796875 -1.828125 Q119.421875 -1.828125 120.6875 -2.5390625 Q121.953125 -3.25 122.546875 -4.484375 Q123.0 -5.4375 123.0 -7.296875 L123.0 -8.328125 Z"/><path d=" M130.171875 0.0 L130.171875 -16.59375 L132.703125 -16.59375 L132.703125 -14.078125 Q133.671875 -15.84375 134.4921875 -16.40625 Q135.3125 -16.96875 136.296875 -16.96875 Q137.71875 -16.96875 139.1875 -16.0625 L138.21875 -13.453125 Q137.1875 -14.0625 136.15625 -14.0625 Q135.234375 -14.0625 134.5 -13.5078125 Q133.765625 -12.953125 133.453125 -11.96875 Q132.984375 -10.46875 132.984375 -8.6875 L132.984375 0.0 L130.171875 0.0 Z"/><path d=" M147.0 -2.515625 L147.40625 -0.03125 Q146.21875 0.21875 145.28125 0.21875 Q143.75 0.21875 142.90625 -0.265625 Q142.0625 -0.75 141.71875 -1.5390625 Q141.375 -2.328125 141.375 -4.859375 L141.375 -14.40625 L139.3125 -14.40625 L139.3125 -16.59375 L141.375 -16.59375 L141.375 -20.703125 L144.171875 -22.390625 L144.171875 -16.59375 L147.0 -16.59375 L147.0 -14.40625 L144.171875 -14.40625 L144.171875 -4.703125 Q144.171875 -3.5 144.3203125 -3.15625 Q144.46875 -2.8125 144.8046875 -2.609375 Q145.140625 -2.40625 145.765625 -2.40625 Q146.234375 -2.40625 147.0 -2.515625 Z"/><path d=""/><path d=" M164.828125 0.0 L164.828125 -20.203125 L157.28125 -20.203125 L157.28125 -22.90625 L175.4375 -22.90625 L175.4375 -20.203125 L167.859375 -20.203125 L167.859375 0.0 L164.828125 0.0 Z"/><path d=" M178.203125 -19.671875 L178.203125 -22.90625 L181.015625 -22.90625 L181.015625 -19.671875 L178.203125 -19.671875 Z M178.203125 0.0 L178.203125 -16.59375 L181.015625 -16.59375 L181.015625 0.0 L178.203125 0.0 Z"/><path d=" M191.4375 -2.515625 L191.84375 -0.03125 Q190.65625 0.21875 189.71875 0.21875 Q188.1875 0.21875 187.34375 -0.265625 Q186.5 -0.75 186.15625 -1.5390625 Q185.8125 -2.328125 185.8125 -4.859375 L185.8125 -14.40625 L183.75 -14.40625 L183.75 -16.59375 L185.8125 -16.59375 L185.8125 -20.703125 L188.609375 -22.390625 L188.609375 -16.59375 L191.4375 -16.59375 L191.4375 -14.40625 L188.609375 -14.40625 L188.609375 -4.703125 Q188.609375 -3.5 188.7578125 -3.15625 Q188.90625 -2.8125 189.2421875 -2.609375 Q189.578125 -2.40625 190.203125 -2.40625 Q190.671875 -2.40625 191.4375 -2.515625 Z"/><path d=" M194.125 0.0 L194.125 -22.90625 L196.9375 -22.90625 L196.9375 0.0 L194.125 0.0 Z"/><path d=" M212.65625 -5.34375 L215.5625 -4.984375 Q214.875 -2.4375 213.015625 -1.03125 Q211.15625 0.375 208.265625 0.375 Q204.625 0.375 202.4921875 -1.8671875 Q200.359375 -4.109375 200.359375 -8.15625 Q200.359375 -12.34375 202.515625 -14.65625 Q204.671875 -16.96875 208.109375 -16.96875 Q211.4375 -16.96875 213.546875 -14.703125 Q215.65625 -12.4375 215.65625 -8.328125 Q215.65625 -8.078125 215.640625 -7.578125 L203.265625 -7.578125 Q203.421875 -4.84375 204.8125 -3.390625 Q206.203125 -1.9375 208.28125 -1.9375 Q209.828125 -1.9375 210.921875 -2.75 Q212.015625 -3.5625 212.65625 -5.34375 Z M203.421875 -9.890625 L212.6875 -9.890625 Q212.5 -11.984375 211.625 -13.03125 Q210.28125 -14.65625 208.140625 -14.65625 Q206.203125 -14.65625 204.8828125 -13.359375 Q203.5625 -12.0625 203.421875 -9.890625 Z"/></g></g><path d=" M4.0 4.0 L227.65104166666666 4.0 L227.65104166666666 49.0 L4.0 49.0 L4.0 4.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M70.0 46.0 L428.73046875 46.0 L428.73046875 250.27083333333331 L70.0 250.27083333333331 L70.0 46.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M56.0 263.0 L56.0 59.0 L70.0 46.0 L70.0 250.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M56.0 263.0 L56.0 59.0 L70.0 46.0 L70.0 250.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M56.0 59.0 L56.0 263.0 L70.0 250.0 L70.0 46.0 Z" style="fill-opacity:1.0;fill:#b2b2b2;"/><path d=" M56.0 59.0 L56.0 263.0 L70.0 250.0 L70.0 46.0 Z" style="fill-opacity:1.0;fill:#b2b2b2;"/><path d=" M56.0 263.0 L56.0 59.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M56.0 263.0 L415.0 263.0 L428.0 250.0 L70.0 250.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M56.0 263.0 L415.0 263.0 L428.0 250.0 L70.0 250.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M415.0 263.0 L56.0 263.0 L70.0 250.0 L428.0 250.0 Z" style="fill-opacity:1.0;fill:#b2b2b2;"/><path d=" M415.0 263.0 L56.0 263.0 L70.0 250.0 L428.0 250.0 Z" style="fill-opacity:1.0;fill:#b2b2b2;"/><path d=" M56.0 263.0 L415.0 263.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M50.0 262.60416666666663 L50.0 59.33333333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M45.0 262.0 L55.0 262.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M45.0 194.0 L55.0 194.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M45.0 127.0 L55.0 127.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M45.0 59.0 L55.0 59.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M7.0 29.33333333333333 L121.42591349283855 29.33333333333333 L121.42591349283855 59.33333333333333 L7.0 59.33333333333333 L7.0 29.33333333333333 Z" transform="matrix(0.0,1.0,-1.0,-0.0,66.33333333333333,52.33333333333333)" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(0.0,1.0,-1.0,-0.0,12.00000127156575,62.000000317891434)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.09375 0.0 L5.90625 -7.828125 L0.78125 -15.03125 L3.140625 -15.03125 L5.875 -11.171875 Q6.734375 -9.984375 7.078125 -9.328125 Q7.59375 -10.15625 8.28125 -11.046875 L11.296875 -15.03125 L13.46875 -15.03125 L8.1875 -7.953125 L13.875 0.0 L11.40625 0.0 L7.625 -5.359375 Q7.3125 -5.828125 6.96875 -6.375 Q6.46875 -5.546875 6.25 -5.234375 L2.484375 0.0 L0.09375 0.0 Z"/><path d=" M14.88714599609375 -4.515625 L14.88714599609375 -6.375 L20.55902099609375 -6.375 L20.55902099609375 -4.515625 L14.88714599609375 -4.515625 Z"/><path d=" M21.28125 0.0 L27.0625 -15.03125 L29.203125 -15.03125 L35.34375 0.0 L33.078125 0.0 L31.328125 -4.546875 L25.046875 -4.546875 L23.390625 0.0 L21.28125 0.0 Z M25.625 -6.171875 L30.71875 -6.171875 L29.140625 -10.34375 Q28.421875 -12.234375 28.078125 -13.453125 Q27.796875 -12.0 27.265625 -10.578125 L25.625 -6.171875 Z"/><path d=" M35.68402099609375 0.0 L39.65277099609375 -5.65625 L35.98089599609375 -10.890625 L38.29339599609375 -10.890625 L39.96527099609375 -8.34375 Q40.43402099609375 -7.609375 40.71527099609375 -7.109375 Q41.16839599609375 -7.796875 41.54339599609375 -8.3125 L43.38714599609375 -10.890625 L45.59027099609375 -10.890625 L41.82464599609375 -5.765625 L45.87152099609375 0.0 L43.60589599609375 0.0 L41.37152099609375 -3.390625 L40.77777099609375 -4.296875 L37.91839599609375 0.0 L35.68402099609375 0.0 Z"/><path d=" M47.57464599609375 -12.90625 L47.57464599609375 -15.03125 L49.41839599609375 -15.03125 L49.41839599609375 -12.90625 L47.57464599609375 -12.90625 Z M47.57464599609375 0.0 L47.57464599609375 -10.890625 L49.41839599609375 -10.890625 L49.41839599609375 0.0 L47.57464599609375 0.0 Z"/><path d=" M51.559600830078125 -3.25 L53.387725830078125 -3.53125 Q53.543975830078125 -2.4375 54.247100830078125 -1.8515625 Q54.950225830078125 -1.265625 56.215850830078125 -1.265625 Q57.481475830078125 -1.265625 58.098663330078125 -1.7890625 Q58.715850830078125 -2.3125 58.715850830078125 -3.0 Q58.715850830078125 -3.625 58.168975830078125 -3.984375 Q57.793975830078125 -4.234375 56.278350830078125 -4.609375 Q54.247100830078125 -5.125 53.465850830078125 -5.5 Q52.684600830078125 -5.875 52.278350830078125 -6.5390625 Q51.872100830078125 -7.203125 51.872100830078125 -8.0 Q51.872100830078125 -8.71875 52.208038330078125 -9.34375 Q52.543975830078125 -9.96875 53.106475830078125 -10.375 Q53.543975830078125 -10.6875 54.286163330078125 -10.9140625 Q55.028350830078125 -11.140625 55.887725830078125 -11.140625 Q57.168975830078125 -11.140625 58.137725830078125 -10.765625 Q59.106475830078125 -10.390625 59.567413330078125 -9.765625 Q60.028350830078125 -9.140625 60.200225830078125 -8.078125 L58.387725830078125 -7.828125 Q58.278350830078125 -8.671875 57.684600830078125 -9.1484375 Q57.090850830078125 -9.625 56.012725830078125 -9.625 Q54.747100830078125 -9.625 54.200225830078125 -9.203125 Q53.653350830078125 -8.78125 53.653350830078125 -8.21875 Q53.653350830078125 -7.859375 53.887725830078125 -7.5625 Q54.106475830078125 -7.265625 54.590850830078125 -7.078125 Q54.872100830078125 -6.96875 56.215850830078125 -6.609375 Q58.184600830078125 -6.078125 58.958038330078125 -5.75 Q59.731475830078125 -5.421875 60.168975830078125 -4.78125 Q60.606475830078125 -4.140625 60.606475830078125 -3.203125 Q60.606475830078125 -2.28125 60.067413330078125 -1.4609375 Q59.528350830078125 -0.640625 58.512725830078125 -0.1953125 Q57.497100830078125 0.25 56.215850830078125 0.25 Q54.090850830078125 0.25 52.981475830078125 -0.6328125 Q51.872100830078125 -1.515625 51.559600830078125 -3.25 Z"/><path d=""/><path d=" M72.93402099609375 0.0 L72.93402099609375 -13.265625 L67.99652099609375 -13.265625 L67.99652099609375 -15.03125 L79.90277099609375 -15.03125 L79.90277099609375 -13.265625 L74.93402099609375 -13.265625 L74.93402099609375 0.0 L72.93402099609375 0.0 Z"/><path d=" M81.90567016601562 -12.90625 L81.90567016601562 -15.03125 L83.74942016601562 -15.03125 L83.74942016601562 -12.90625 L81.90567016601562 -12.90625 Z M81.90567016601562 0.0 L81.90567016601562 -10.890625 L83.74942016601562 -10.890625 L83.74942016601562 0.0 L81.90567016601562 0.0 Z"/><path d=" M90.671875 -1.65625 L90.9375 -0.015625 Q90.15625 0.140625 89.53125 0.140625 Q88.53125 0.140625 87.9765625 -0.1796875 Q87.421875 -0.5 87.1953125 -1.015625 Q86.96875 -1.53125 86.96875 -3.1875 L86.96875 -9.453125 L85.625 -9.453125 L85.625 -10.890625 L86.96875 -10.890625 L86.96875 -13.59375 L88.8125 -14.6875 L88.8125 -10.890625 L90.671875 -10.890625 L90.671875 -9.453125 L88.8125 -9.453125 L88.8125 -3.09375 Q88.8125 -2.296875 88.90625 -2.0703125 Q89.0 -1.84375 89.21875 -1.7109375 Q89.4375 -1.578125 89.859375 -1.578125 Q90.15625 -1.578125 90.671875 -1.65625 Z"/><path d=" M92.51504516601562 0.0 L92.51504516601562 -15.03125 L94.35879516601562 -15.03125 L94.35879516601562 0.0 L92.51504516601562 0.0 Z"/><path d=" M104.75 -3.5 L106.65625 -3.265625 Q106.203125 -1.59375 104.984375 -0.671875 Q103.765625 0.25 101.859375 0.25 Q99.46875 0.25 98.0703125 -1.2265625 Q96.671875 -2.703125 96.671875 -5.359375 Q96.671875 -8.09375 98.0859375 -9.6171875 Q99.5 -11.140625 101.765625 -11.140625 Q103.953125 -11.140625 105.3359375 -9.6484375 Q106.71875 -8.15625 106.71875 -5.46875 Q106.71875 -5.296875 106.703125 -4.96875 L98.578125 -4.96875 Q98.6875 -3.171875 99.6015625 -2.21875 Q100.515625 -1.265625 101.875 -1.265625 Q102.890625 -1.265625 103.609375 -1.8046875 Q104.328125 -2.34375 104.75 -3.5 Z M98.6875 -6.484375 L104.765625 -6.484375 Q104.640625 -7.859375 104.0625 -8.546875 Q103.1875 -9.625 101.78125 -9.625 Q100.515625 -9.625 99.6484375 -8.7734375 Q98.78125 -7.921875 98.6875 -6.484375 Z"/></g></g><path d=" M7.0 29.33333333333333 L121.42591349283855 29.33333333333333 L121.42591349283855 59.33333333333333 L7.0 59.33333333333333 L7.0 29.33333333333333 Z" transform="matrix(0.0,1.0,-1.0,-0.0,66.33333333333333,52.33333333333333)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M56.666666666666664 269.2708333333333 L414.3971354166667 269.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M56.0 264.2708333333333 L56.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M74.0 264.2708333333333 L74.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M92.0 264.2708333333333 L92.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M110.0 264.2708333333333 L110.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M128.0 264.2708333333333 L128.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M146.0 264.2708333333333 L146.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M163.0 264.2708333333333 L163.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M181.0 264.2708333333333 L181.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M199.0 264.2708333333333 L199.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M217.0 264.2708333333333 L217.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M235.0 264.2708333333333 L235.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M253.0 264.2708333333333 L253.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M271.0 264.2708333333333 L271.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M289.0 264.2708333333333 L289.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M307.0 264.2708333333333 L307.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M324.0 264.2708333333333 L324.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M342.0 264.2708333333333 L342.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M360.0 264.2708333333333 L360.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M378.0 264.2708333333333 L378.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M396.0 264.2708333333333 L396.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M414.0 264.2708333333333 L414.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M56.666666666666664 305.0 L171.09258015950522 305.0 L171.09258015950522 335.0 L56.666666666666664 335.0 L56.666666666666664 305.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,59.33333206176758,330.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.859375 0.0 L5.859375 -6.375 L0.0625 -15.03125 L2.484375 -15.03125 L5.4375 -10.5 Q6.265625 -9.234375 6.96875 -7.953125 Q7.65625 -9.140625 8.609375 -10.609375 L11.53125 -15.03125 L13.84375 -15.03125 L7.84375 -6.375 L7.84375 0.0 L5.859375 0.0 Z"/><path d=" M14.88714599609375 -4.515625 L14.88714599609375 -6.375 L20.55902099609375 -6.375 L20.55902099609375 -4.515625 L14.88714599609375 -4.515625 Z"/><path d=" M21.28125 0.0 L27.0625 -15.03125 L29.203125 -15.03125 L35.34375 0.0 L33.078125 0.0 L31.328125 -4.546875 L25.046875 -4.546875 L23.390625 0.0 L21.28125 0.0 Z M25.625 -6.171875 L30.71875 -6.171875 L29.140625 -10.34375 Q28.421875 -12.234375 28.078125 -13.453125 Q27.796875 -12.0 27.265625 -10.578125 L25.625 -6.171875 Z"/><path d=" M35.68402099609375 0.0 L39.65277099609375 -5.65625 L35.98089599609375 -10.890625 L38.29339599609375 -10.890625 L39.96527099609375 -8.34375 Q40.43402099609375 -7.609375 40.71527099609375 -7.109375 Q41.16839599609375 -7.796875 41.54339599609375 -8.3125 L43.38714599609375 -10.890625 L45.59027099609375 -10.890625 L41.82464599609375 -5.765625 L45.87152099609375 0.0 L43.60589599609375 0.0 L41.37152099609375 -3.390625 L40.77777099609375 -4.296875 L37.91839599609375 0.0 L35.68402099609375 0.0 Z"/><path d=" M47.57464599609375 -12.90625 L47.57464599609375 -15.03125 L49.41839599609375 -15.03125 L49.41839599609375 -12.90625 L47.57464599609375 -12.90625 Z M47.57464599609375 0.0 L47.57464599609375 -10.890625 L49.41839599609375 -10.890625 L49.41839599609375 0.0 L47.57464599609375 0.0 Z"/><path d=" M51.559600830078125 -3.25 L53.387725830078125 -3.53125 Q53.543975830078125 -2.4375 54.247100830078125 -1.8515625 Q54.950225830078125 -1.265625 56.215850830078125 -1.265625 Q57.481475830078125 -1.265625 58.098663330078125 -1.7890625 Q58.715850830078125 -2.3125 58.715850830078125 -3.0 Q58.715850830078125 -3.625 58.168975830078125 -3.984375 Q57.793975830078125 -4.234375 56.278350830078125 -4.609375 Q54.247100830078125 -5.125 53.465850830078125 -5.5 Q52.684600830078125 -5.875 52.278350830078125 -6.5390625 Q51.872100830078125 -7.203125 51.872100830078125 -8.0 Q51.872100830078125 -8.71875 52.208038330078125 -9.34375 Q52.543975830078125 -9.96875 53.106475830078125 -10.375 Q53.543975830078125 -10.6875 54.286163330078125 -10.9140625 Q55.028350830078125 -11.140625 55.887725830078125 -11.140625 Q57.168975830078125 -11.140625 58.137725830078125 -10.765625 Q59.106475830078125 -10.390625 59.567413330078125 -9.765625 Q60.028350830078125 -9.140625 60.200225830078125 -8.078125 L58.387725830078125 -7.828125 Q58.278350830078125 -8.671875 57.684600830078125 -9.1484375 Q57.090850830078125 -9.625 56.012725830078125 -9.625 Q54.747100830078125 -9.625 54.200225830078125 -9.203125 Q53.653350830078125 -8.78125 53.653350830078125 -8.21875 Q53.653350830078125 -7.859375 53.887725830078125 -7.5625 Q54.106475830078125 -7.265625 54.590850830078125 -7.078125 Q54.872100830078125 -6.96875 56.215850830078125 -6.609375 Q58.184600830078125 -6.078125 58.958038330078125 -5.75 Q59.731475830078125 -5.421875 60.168975830078125 -4.78125 Q60.606475830078125 -4.140625 60.606475830078125 -3.203125 Q60.606475830078125 -2.28125 60.067413330078125 -1.4609375 Q59.528350830078125 -0.640625 58.512725830078125 -0.1953125 Q57.497100830078125 0.25 56.215850830078125 0.25 Q54.090850830078125 0.25 52.981475830078125 -0.6328125 Q51.872100830078125 -1.515625 51.559600830078125 -3.25 Z"/><path d=""/><path d=" M72.93402099609375 0.0 L72.93402099609375 -13.265625 L67.99652099609375 -13.265625 L67.99652099609375 -15.03125 L79.90277099609375 -15.03125 L79.90277099609375 -13.265625 L74.93402099609375 -13.265625 L74.93402099609375 0.0 L72.93402099609375 0.0 Z"/><path d=" M81.90567016601562 -12.90625 L81.90567016601562 -15.03125 L83.74942016601562 -15.03125 L83.74942016601562 -12.90625 L81.90567016601562 -12.90625 Z M81.90567016601562 0.0 L81.90567016601562 -10.890625 L83.74942016601562 -10.890625 L83.74942016601562 0.0 L81.90567016601562 0.0 Z"/><path d=" M90.671875 -1.65625 L90.9375 -0.015625 Q90.15625 0.140625 89.53125 0.140625 Q88.53125 0.140625 87.9765625 -0.1796875 Q87.421875 -0.5 87.1953125 -1.015625 Q86.96875 -1.53125 86.96875 -3.1875 L86.96875 -9.453125 L85.625 -9.453125 L85.625 -10.890625 L86.96875 -10.890625 L86.96875 -13.59375 L88.8125 -14.6875 L88.8125 -10.890625 L90.671875 -10.890625 L90.671875 -9.453125 L88.8125 -9.453125 L88.8125 -3.09375 Q88.8125 -2.296875 88.90625 -2.0703125 Q89.0 -1.84375 89.21875 -1.7109375 Q89.4375 -1.578125 89.859375 -1.578125 Q90.15625 -1.578125 90.671875 -1.65625 Z"/><path d=" M92.51504516601562 0.0 L92.51504516601562 -15.03125 L94.35879516601562 -15.03125 L94.35879516601562 0.0 L92.51504516601562 0.0 Z"/><path d=" M104.75 -3.5 L106.65625 -3.265625 Q106.203125 -1.59375 104.984375 -0.671875 Q103.765625 0.25 101.859375 0.25 Q99.46875 0.25 98.0703125 -1.2265625 Q96.671875 -2.703125 96.671875 -5.359375 Q96.671875 -8.09375 98.0859375 -9.6171875 Q99.5 -11.140625 101.765625 -11.140625 Q103.953125 -11.140625 105.3359375 -9.6484375 Q106.71875 -8.15625 106.71875 -5.46875 Q106.71875 -5.296875 106.703125 -4.96875 L98.578125 -4.96875 Q98.6875 -3.171875 99.6015625 -2.21875 Q100.515625 -1.265625 101.875 -1.265625 Q102.890625 -1.265625 103.609375 -1.8046875 Q104.328125 -2.34375 104.75 -3.5 Z M98.6875 -6.484375 L104.765625 -6.484375 Q104.640625 -7.859375 104.0625 -8.546875 Q103.1875 -9.625 101.78125 -9.625 Q100.515625 -9.625 99.6484375 -8.7734375 Q98.78125 -7.921875 98.6875 -6.484375 Z"/></g></g><path d=" M56.666666666666664 305.0 L171.09258015950522 305.0 L171.09258015950522 335.0 L56.666666666666664 335.0 L56.666666666666664 305.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M414.0 229.0 L56.0 161.0 L70.0 147.0 L427.0 215.0 Z" style="fill-opacity:1.0;fill:#030303;"/><path d=" M56.0 161.0 L414.0 93.0 L427.0 79.0 L70.0 147.0 Z" style="fill-opacity:1.0;fill:#030303;"/><path d=" M414.0 229.0 L56.66666793823242 161.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M56.66666793823242 161.0 L414.0 93.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M409.0 234.0 L419.0 234.0 L419.0 224.0 L409.0 224.0 Z" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M409.0 234.0 L419.0 234.0 L419.0 224.0 L409.0 224.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M51.0 166.0 L61.0 166.0 L61.0 156.0 L51.0 156.0 Z" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M51.0 166.0 L61.0 166.0 L61.0 156.0 L51.0 156.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M409.0 98.0 L419.0 98.0 L419.0 88.0 L409.0 88.0 Z" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M409.0 98.0 L419.0 98.0 L419.0 88.0 L409.0 88.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M424.0 192.54557291666666 L452.9088541666667 192.54557291666666 L452.9088541666667 215.54557291666666 L424.0 215.54557291666666 L424.0 192.54557291666666 Z" transform="matrix(0.0,1.0,-1.0,-0.0,639.5455729166666,-208.45442708333334)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(0.0,1.0,-1.0,-0.0,427.99999491373694,218.21222941080728)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.671875 -3.0 L2.140625 -3.125 Q2.3125 -2.046875 2.90625 -1.5078125 Q3.5 -0.96875 4.34375 -0.96875 Q5.359375 -0.96875 6.0625 -1.734375 Q6.765625 -2.5 6.765625 -3.765625 Q6.765625 -4.96875 6.09375 -5.6640625 Q5.421875 -6.359375 4.328125 -6.359375 Q3.640625 -6.359375 3.09375 -6.046875 Q2.546875 -5.734375 2.234375 -5.25 L0.921875 -5.421875 L2.03125 -11.296875 L7.71875 -11.296875 L7.71875 -9.953125 L3.15625 -9.953125 L2.53125 -6.875 Q3.5625 -7.59375 4.703125 -7.59375 Q6.203125 -7.59375 7.234375 -6.5546875 Q8.265625 -5.515625 8.265625 -3.890625 Q8.265625 -2.328125 7.359375 -1.203125 Q6.25 0.203125 4.34375 0.203125 Q2.78125 0.203125 1.796875 -0.6796875 Q0.8125 -1.5625 0.671875 -3.0 Z"/><path d=" M10.3515625 0.0 L10.3515625 -1.609375 L11.9609375 -1.609375 L11.9609375 0.0 L10.3515625 0.0 Z"/><path d=" M14.015625 -5.65625 Q14.015625 -7.6875 14.4296875 -8.921875 Q14.84375 -10.15625 15.671875 -10.828125 Q16.5 -11.5 17.75 -11.5 Q18.671875 -11.5 19.3671875 -11.1328125 Q20.0625 -10.765625 20.515625 -10.0625 Q20.96875 -9.359375 21.2265625 -8.359375 Q21.484375 -7.359375 21.484375 -5.65625 Q21.484375 -3.640625 21.0703125 -2.3984375 Q20.65625 -1.15625 19.828125 -0.4765625 Q19.0 0.203125 17.75 0.203125 Q16.09375 0.203125 15.140625 -1.0 Q14.015625 -2.421875 14.015625 -5.65625 Z M15.453125 -5.65625 Q15.453125 -2.828125 16.1171875 -1.8984375 Q16.78125 -0.96875 17.75 -0.96875 Q18.71875 -0.96875 19.375 -1.90625 Q20.03125 -2.84375 20.03125 -5.65625 Q20.03125 -8.484375 19.375 -9.4140625 Q18.71875 -10.34375 17.734375 -10.34375 Q16.765625 -10.34375 16.1875 -9.515625 Q15.453125 -8.46875 15.453125 -5.65625 Z"/></g></g><path d=" M424.0 192.54557291666666 L452.9088541666667 192.54557291666666 L452.9088541666667 215.54557291666666 L424.0 215.54557291666666 L424.0 192.54557291666666 Z" transform="matrix(0.0,1.0,-1.0,-0.0,639.5455729166666,-208.45442708333334)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M66.66666793823242 121.88151041666666 L100.90364710489908 121.88151041666666 L100.90364710489908 144.88151041666666 L66.66666793823242 144.88151041666666 L66.66666793823242 121.88151041666666 Z" transform="matrix(0.0,1.0,-1.0,-0.0,211.54817835489908,78.21484247843424)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(0.0,1.0,-1.0,-0.0,70.66666285196939,147.54817835489908)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.515625 -3.4375 L0.515625 -4.859375 L4.828125 -4.859375 L4.828125 -3.4375 L0.515625 -3.4375 Z"/><path d=" M10.5 0.0 L10.5 -2.75 L5.53125 -2.75 L5.53125 -4.03125 L10.765625 -11.453125 L11.90625 -11.453125 L11.90625 -4.03125 L13.453125 -4.03125 L13.453125 -2.75 L11.90625 -2.75 L11.90625 0.0 L10.5 0.0 Z M10.5 -4.03125 L10.5 -9.203125 L6.921875 -4.03125 L10.5 -4.03125 Z"/><path d=" M15.6796875 0.0 L15.6796875 -1.609375 L17.2890625 -1.609375 L17.2890625 0.0 L15.6796875 0.0 Z"/><path d=" M19.34375 -5.65625 Q19.34375 -7.6875 19.7578125 -8.921875 Q20.171875 -10.15625 21.0 -10.828125 Q21.828125 -11.5 23.078125 -11.5 Q24.0 -11.5 24.6953125 -11.1328125 Q25.390625 -10.765625 25.84375 -10.0625 Q26.296875 -9.359375 26.5546875 -8.359375 Q26.8125 -7.359375 26.8125 -5.65625 Q26.8125 -3.640625 26.3984375 -2.3984375 Q25.984375 -1.15625 25.15625 -0.4765625 Q24.328125 0.203125 23.078125 0.203125 Q21.421875 0.203125 20.46875 -1.0 Q19.34375 -2.421875 19.34375 -5.65625 Z M20.78125 -5.65625 Q20.78125 -2.828125 21.4453125 -1.8984375 Q22.109375 -0.96875 23.078125 -0.96875 Q24.046875 -0.96875 24.703125 -1.90625 Q25.359375 -2.84375 25.359375 -5.65625 Q25.359375 -8.484375 24.703125 -9.4140625 Q24.046875 -10.34375 23.0625 -10.34375 Q22.09375 -10.34375 21.515625 -9.515625 Q20.78125 -8.46875 20.78125 -5.65625 Z"/></g></g><path d=" M66.66666793823242 121.88151041666666 L100.90364710489908 121.88151041666666 L100.90364710489908 144.88151041666666 L66.66666793823242 144.88151041666666 L66.66666793823242 121.88151041666666 Z" transform="matrix(0.0,1.0,-1.0,-0.0,211.54817835489908,78.21484247843424)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M424.0 52.09635416666667 L461.8072916666667 52.09635416666667 L461.8072916666667 75.09635416666667 L424.0 75.09635416666667 L424.0 52.09635416666667 Z" transform="matrix(0.0,1.0,-1.0,-0.0,499.0963541666667,-348.9036458333333)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(0.0,1.0,-1.0,-0.0,428.00000254313153,77.76301066080731)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.96875 0.0 L4.5625 0.0 L4.5625 -8.96875 Q4.046875 -8.484375 3.2265625 -8.0 Q2.40625 -7.515625 1.75 -7.265625 L1.75 -8.625 Q2.921875 -9.1875 3.8046875 -9.9765625 Q4.6875 -10.765625 5.0625 -11.5 L5.96875 -11.5 L5.96875 0.0 Z"/><path d=" M16.9609375 -1.359375 L16.9609375 0.0 L9.3828125 0.0 Q9.3671875 -0.515625 9.5546875 -0.984375 Q9.8359375 -1.75 10.4765625 -2.5 Q11.1171875 -3.25 12.3203125 -4.234375 Q14.1796875 -5.765625 14.8359375 -6.6640625 Q15.4921875 -7.5625 15.4921875 -8.359375 Q15.4921875 -9.1875 14.8984375 -9.765625 Q14.3046875 -10.34375 13.3359375 -10.34375 Q12.3203125 -10.34375 11.7109375 -9.734375 Q11.1015625 -9.125 11.1015625 -8.046875 L9.6484375 -8.1875 Q9.8046875 -9.8125 10.7734375 -10.65625 Q11.7421875 -11.5 13.3671875 -11.5 Q15.0234375 -11.5 15.984375 -10.5859375 Q16.9453125 -9.671875 16.9453125 -8.328125 Q16.9453125 -7.640625 16.6640625 -6.9765625 Q16.3828125 -6.3125 15.7265625 -5.578125 Q15.0703125 -4.84375 13.5546875 -3.5625 Q12.2890625 -2.5 11.9296875 -2.1171875 Q11.5703125 -1.734375 11.3359375 -1.359375 L16.9609375 -1.359375 Z"/><path d=" M19.25 0.0 L19.25 -1.609375 L20.859375 -1.609375 L20.859375 0.0 L19.25 0.0 Z"/><path d=" M22.9140625 -5.65625 Q22.9140625 -7.6875 23.328125 -8.921875 Q23.7421875 -10.15625 24.5703125 -10.828125 Q25.3984375 -11.5 26.6484375 -11.5 Q27.5703125 -11.5 28.265625 -11.1328125 Q28.9609375 -10.765625 29.4140625 -10.0625 Q29.8671875 -9.359375 30.125 -8.359375 Q30.3828125 -7.359375 30.3828125 -5.65625 Q30.3828125 -3.640625 29.96875 -2.3984375 Q29.5546875 -1.15625 28.7265625 -0.4765625 Q27.8984375 0.203125 26.6484375 0.203125 Q24.9921875 0.203125 24.0390625 -1.0 Q22.9140625 -2.421875 22.9140625 -5.65625 Z M24.3515625 -5.65625 Q24.3515625 -2.828125 25.015625 -1.8984375 Q25.6796875 -0.96875 26.6484375 -0.96875 Q27.6171875 -0.96875 28.2734375 -1.90625 Q28.9296875 -2.84375 28.9296875 -5.65625 Q28.9296875 -8.484375 28.2734375 -9.4140625 Q27.6171875 -10.34375 26.6328125 -10.34375 Q25.6640625 -10.34375 25.0859375 -9.515625 Q24.3515625 -8.46875 24.3515625 -5.65625 Z"/></g></g><path d=" M424.0 52.09635416666667 L461.8072916666667 52.09635416666667 L461.8072916666667 75.09635416666667 L424.0 75.09635416666667 L424.0 52.09635416666667 Z" transform="matrix(0.0,1.0,-1.0,-0.0,499.0963541666667,-348.9036458333333)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.0 196.45225694444443 L38.338541666666664 196.45225694444443 L38.338541666666664 219.45225694444443 L21.0 219.45225694444443 L21.0 196.45225694444443 Z" transform="matrix(0.0,1.0,-1.0,-0.0,240.45225694444443,198.45225694444446)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(0.0,1.0,-1.0,-0.0,25.00000169542099,222.11892297532825)" style="fill-opacity:1.0;fill:#000000;"><path d=" M-0.03125 0.0 L4.375 -11.453125 L6.015625 -11.453125 L10.703125 0.0 L8.96875 0.0 L7.640625 -3.46875 L2.84375 -3.46875 L1.59375 0.0 L-0.03125 0.0 Z M3.28125 -4.703125 L7.171875 -4.703125 L5.96875 -7.875 Q5.421875 -9.328125 5.15625 -10.25 Q4.9375 -9.15625 4.546875 -8.0625 L3.28125 -4.703125 Z"/></g></g><path d=" M21.0 196.45225694444443 L38.338541666666664 196.45225694444443 L38.338541666666664 219.45225694444443 L21.0 219.45225694444443 L21.0 196.45225694444443 Z" transform="matrix(0.0,1.0,-1.0,-0.0,240.45225694444443,198.45225694444446)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.0 128.45225694444443 L38.338541666666664 128.45225694444443 L38.338541666666664 151.45225694444443 L21.0 151.45225694444443 L21.0 128.45225694444443 Z" transform="matrix(0.0,1.0,-1.0,-0.0,172.45225694444443,130.45225694444446)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(0.0,1.0,-1.0,-0.0,25.00000169542099,154.11892297532825)" style="fill-opacity:1.0;fill:#000000;"><path d=" M1.171875 0.0 L1.171875 -11.453125 L5.46875 -11.453125 Q6.78125 -11.453125 7.578125 -11.109375 Q8.375 -10.765625 8.8203125 -10.0390625 Q9.265625 -9.3125 9.265625 -8.53125 Q9.265625 -7.796875 8.8671875 -7.1484375 Q8.46875 -6.5 7.671875 -6.09375 Q8.703125 -5.796875 9.265625 -5.0625 Q9.828125 -4.328125 9.828125 -3.328125 Q9.828125 -2.515625 9.484375 -1.828125 Q9.140625 -1.140625 8.640625 -0.765625 Q8.140625 -0.390625 7.390625 -0.1953125 Q6.640625 0.0 5.546875 0.0 L1.171875 0.0 Z M2.6875 -6.640625 L5.171875 -6.640625 Q6.171875 -6.640625 6.609375 -6.78125 Q7.1875 -6.953125 7.484375 -7.3515625 Q7.78125 -7.75 7.78125 -8.34375 Q7.78125 -8.921875 7.5078125 -9.3515625 Q7.234375 -9.78125 6.7265625 -9.9453125 Q6.21875 -10.109375 4.984375 -10.109375 L2.6875 -10.109375 L2.6875 -6.640625 Z M2.6875 -1.359375 L5.546875 -1.359375 Q6.28125 -1.359375 6.578125 -1.40625 Q7.09375 -1.5 7.4453125 -1.71875 Q7.796875 -1.9375 8.0234375 -2.359375 Q8.25 -2.78125 8.25 -3.328125 Q8.25 -3.96875 7.921875 -4.4375 Q7.59375 -4.90625 7.015625 -5.1015625 Q6.4375 -5.296875 5.34375 -5.296875 L2.6875 -5.296875 L2.6875 -1.359375 Z"/></g></g><path d=" M21.0 128.45225694444443 L38.338541666666664 128.45225694444443 L38.338541666666664 151.45225694444443 L21.0 151.45225694444443 L21.0 128.45225694444443 Z" transform="matrix(0.0,1.0,-1.0,-0.0,172.45225694444443,130.45225694444446)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.0 61.01085069444444 L39.221354166666664 61.01085069444444 L39.221354166666664 84.01085069444444 L21.0 84.01085069444444 L21.0 61.01085069444444 Z" transform="matrix(0.0,1.0,-1.0,-0.0,105.01085069444444,63.01085069444447)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(0.0,1.0,-1.0,-0.0,25.000001695421005,86.67751672532826)" style="fill-opacity:1.0;fill:#000000;"><path d=" M9.40625 -4.015625 L10.921875 -3.640625 Q10.453125 -1.765625 9.2109375 -0.78125 Q7.96875 0.203125 6.1875 0.203125 Q4.328125 0.203125 3.171875 -0.5546875 Q2.015625 -1.3125 1.40625 -2.7421875 Q0.796875 -4.171875 0.796875 -5.8125 Q0.796875 -7.609375 1.484375 -8.9375 Q2.171875 -10.265625 3.4296875 -10.9609375 Q4.6875 -11.65625 6.203125 -11.65625 Q7.921875 -11.65625 9.09375 -10.78125 Q10.265625 -9.90625 10.734375 -8.3125 L9.234375 -7.96875 Q8.84375 -9.21875 8.0859375 -9.7890625 Q7.328125 -10.359375 6.171875 -10.359375 Q4.859375 -10.359375 3.96875 -9.7265625 Q3.078125 -9.09375 2.71875 -8.0234375 Q2.359375 -6.953125 2.359375 -5.828125 Q2.359375 -4.359375 2.7890625 -3.2734375 Q3.21875 -2.1875 4.1171875 -1.6484375 Q5.015625 -1.109375 6.0625 -1.109375 Q7.328125 -1.109375 8.2109375 -1.84375 Q9.09375 -2.578125 9.40625 -4.015625 Z"/></g></g><path d=" M21.0 61.01085069444444 L39.221354166666664 61.01085069444444 L39.221354166666664 84.01085069444444 L21.0 84.01085069444444 L21.0 61.01085069444444 Z" transform="matrix(0.0,1.0,-1.0,-0.0,105.01085069444444,63.01085069444447)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M45.0 59.0 L55.0 59.0" transform="matrix(1.0,0.0,0.0,1.0,0.0,2.8421709430404007E-14)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M7.0 29.33333333333333 L121.42591349283855 29.33333333333333 L121.42591349283855 59.33333333333333 L7.0 59.33333333333333 L7.0 29.33333333333333 Z" transform="matrix(0.0,1.0,-1.0,-0.0,66.33333333333333,52.33333333333336)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(0.0,1.0,-1.0,-0.0,12.00000127156575,62.00000031789146)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.09375 0.0 L5.90625 -7.828125 L0.78125 -15.03125 L3.140625 -15.03125 L5.875 -11.171875 Q6.734375 -9.984375 7.078125 -9.328125 Q7.59375 -10.15625 8.28125 -11.046875 L11.296875 -15.03125 L13.46875 -15.03125 L8.1875 -7.953125 L13.875 0.0 L11.40625 0.0 L7.625 -5.359375 Q7.3125 -5.828125 6.96875 -6.375 Q6.46875 -5.546875 6.25 -5.234375 L2.484375 0.0 L0.09375 0.0 Z"/><path d=" M14.88714599609375 -4.515625 L14.88714599609375 -6.375 L20.55902099609375 -6.375 L20.55902099609375 -4.515625 L14.88714599609375 -4.515625 Z"/><path d=" M21.28125 0.0 L27.0625 -15.03125 L29.203125 -15.03125 L35.34375 0.0 L33.078125 0.0 L31.328125 -4.546875 L25.046875 -4.546875 L23.390625 0.0 L21.28125 0.0 Z M25.625 -6.171875 L30.71875 -6.171875 L29.140625 -10.34375 Q28.421875 -12.234375 28.078125 -13.453125 Q27.796875 -12.0 27.265625 -10.578125 L25.625 -6.171875 Z"/><path d=" M35.68402099609375 0.0 L39.65277099609375 -5.65625 L35.98089599609375 -10.890625 L38.29339599609375 -10.890625 L39.96527099609375 -8.34375 Q40.43402099609375 -7.609375 40.71527099609375 -7.109375 Q41.16839599609375 -7.796875 41.54339599609375 -8.3125 L43.38714599609375 -10.890625 L45.59027099609375 -10.890625 L41.82464599609375 -5.765625 L45.87152099609375 0.0 L43.60589599609375 0.0 L41.37152099609375 -3.390625 L40.77777099609375 -4.296875 L37.91839599609375 0.0 L35.68402099609375 0.0 Z"/><path d=" M47.57464599609375 -12.90625 L47.57464599609375 -15.03125 L49.41839599609375 -15.03125 L49.41839599609375 -12.90625 L47.57464599609375 -12.90625 Z M47.57464599609375 0.0 L47.57464599609375 -10.890625 L49.41839599609375 -10.890625 L49.41839599609375 0.0 L47.57464599609375 0.0 Z"/><path d=" M51.559600830078125 -3.25 L53.387725830078125 -3.53125 Q53.543975830078125 -2.4375 54.247100830078125 -1.8515625 Q54.950225830078125 -1.265625 56.215850830078125 -1.265625 Q57.481475830078125 -1.265625 58.098663330078125 -1.7890625 Q58.715850830078125 -2.3125 58.715850830078125 -3.0 Q58.715850830078125 -3.625 58.168975830078125 -3.984375 Q57.793975830078125 -4.234375 56.278350830078125 -4.609375 Q54.247100830078125 -5.125 53.465850830078125 -5.5 Q52.684600830078125 -5.875 52.278350830078125 -6.5390625 Q51.872100830078125 -7.203125 51.872100830078125 -8.0 Q51.872100830078125 -8.71875 52.208038330078125 -9.34375 Q52.543975830078125 -9.96875 53.106475830078125 -10.375 Q53.543975830078125 -10.6875 54.286163330078125 -10.9140625 Q55.028350830078125 -11.140625 55.887725830078125 -11.140625 Q57.168975830078125 -11.140625 58.137725830078125 -10.765625 Q59.106475830078125 -10.390625 59.567413330078125 -9.765625 Q60.028350830078125 -9.140625 60.200225830078125 -8.078125 L58.387725830078125 -7.828125 Q58.278350830078125 -8.671875 57.684600830078125 -9.1484375 Q57.090850830078125 -9.625 56.012725830078125 -9.625 Q54.747100830078125 -9.625 54.200225830078125 -9.203125 Q53.653350830078125 -8.78125 53.653350830078125 -8.21875 Q53.653350830078125 -7.859375 53.887725830078125 -7.5625 Q54.106475830078125 -7.265625 54.590850830078125 -7.078125 Q54.872100830078125 -6.96875 56.215850830078125 -6.609375 Q58.184600830078125 -6.078125 58.958038330078125 -5.75 Q59.731475830078125 -5.421875 60.168975830078125 -4.78125 Q60.606475830078125 -4.140625 60.606475830078125 -3.203125 Q60.606475830078125 -2.28125 60.067413330078125 -1.4609375 Q59.528350830078125 -0.640625 58.512725830078125 -0.1953125 Q57.497100830078125 0.25 56.215850830078125 0.25 Q54.090850830078125 0.25 52.981475830078125 -0.6328125 Q51.872100830078125 -1.515625 51.559600830078125 -3.25 Z"/><path d=""/><path d=" M72.93402099609375 0.0 L72.93402099609375 -13.265625 L67.99652099609375 -13.265625 L67.99652099609375 -15.03125 L79.90277099609375 -15.03125 L79.90277099609375 -13.265625 L74.93402099609375 -13.265625 L74.93402099609375 0.0 L72.93402099609375 0.0 Z"/><path d=" M81.90567016601562 -12.90625 L81.90567016601562 -15.03125 L83.74942016601562 -15.03125 L83.74942016601562 -12.90625 L81.90567016601562 -12.90625 Z M81.90567016601562 0.0 L81.90567016601562 -10.890625 L83.74942016601562 -10.890625 L83.74942016601562 0.0 L81.90567016601562 0.0 Z"/><path d=" M90.671875 -1.65625 L90.9375 -0.015625 Q90.15625 0.140625 89.53125 0.140625 Q88.53125 0.140625 87.9765625 -0.1796875 Q87.421875 -0.5 87.1953125 -1.015625 Q86.96875 -1.53125 86.96875 -3.1875 L86.96875 -9.453125 L85.625 -9.453125 L85.625 -10.890625 L86.96875 -10.890625 L86.96875 -13.59375 L88.8125 -14.6875 L88.8125 -10.890625 L90.671875 -10.890625 L90.671875 -9.453125 L88.8125 -9.453125 L88.8125 -3.09375 Q88.8125 -2.296875 88.90625 -2.0703125 Q89.0 -1.84375 89.21875 -1.7109375 Q89.4375 -1.578125 89.859375 -1.578125 Q90.15625 -1.578125 90.671875 -1.65625 Z"/><path d=" M92.51504516601562 0.0 L92.51504516601562 -15.03125 L94.35879516601562 -15.03125 L94.35879516601562 0.0 L92.51504516601562 0.0 Z"/><path d=" M104.75 -3.5 L106.65625 -3.265625 Q106.203125 -1.59375 104.984375 -0.671875 Q103.765625 0.25 101.859375 0.25 Q99.46875 0.25 98.0703125 -1.2265625 Q96.671875 -2.703125 96.671875 -5.359375 Q96.671875 -8.09375 98.0859375 -9.6171875 Q99.5 -11.140625 101.765625 -11.140625 Q103.953125 -11.140625 105.3359375 -9.6484375 Q106.71875 -8.15625 106.71875 -5.46875 Q106.71875 -5.296875 106.703125 -4.96875 L98.578125 -4.96875 Q98.6875 -3.171875 99.6015625 -2.21875 Q100.515625 -1.265625 101.875 -1.265625 Q102.890625 -1.265625 103.609375 -1.8046875 Q104.328125 -2.34375 104.75 -3.5 Z M98.6875 -6.484375 L104.765625 -6.484375 Q104.640625 -7.859375 104.0625 -8.546875 Q103.1875 -9.625 101.78125 -9.625 Q100.515625 -9.625 99.6484375 -8.7734375 Q98.78125 -7.921875 98.6875 -6.484375 Z"/></g></g><path d=" M7.0 29.33333333333333 L121.42591349283855 29.33333333333333 L121.42591349283855 59.33333333333333 L7.0 59.33333333333333 L7.0 29.33333333333333 Z" transform="matrix(0.0,1.0,-1.0,-0.0,66.33333333333333,52.33333333333336)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M44.5 252.27083333333331 L83.19010416666666 252.27083333333331 L83.19010416666666 275.2708333333333 L44.5 275.2708333333333 L44.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,319.7708333333333,230.77083333333337)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(0.0,1.0,-1.0,-0.0,48.49998982747394,277.9375012715658)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.515625 -3.4375 L0.515625 -4.859375 L4.828125 -4.859375 L4.828125 -3.4375 L0.515625 -3.4375 Z"/><path d=" M11.296875 0.0 L9.890625 0.0 L9.890625 -8.96875 Q9.375 -8.484375 8.5546875 -8.0 Q7.734375 -7.515625 7.078125 -7.265625 L7.078125 -8.625 Q8.25 -9.1875 9.1328125 -9.9765625 Q10.015625 -10.765625 10.390625 -11.5 L11.296875 -11.5 L11.296875 0.0 Z"/><path d=" M14.8984375 -5.65625 Q14.8984375 -7.6875 15.3125 -8.921875 Q15.7265625 -10.15625 16.5546875 -10.828125 Q17.3828125 -11.5 18.6328125 -11.5 Q19.5546875 -11.5 20.25 -11.1328125 Q20.9453125 -10.765625 21.3984375 -10.0625 Q21.8515625 -9.359375 22.109375 -8.359375 Q22.3671875 -7.359375 22.3671875 -5.65625 Q22.3671875 -3.640625 21.953125 -2.3984375 Q21.5390625 -1.15625 20.7109375 -0.4765625 Q19.8828125 0.203125 18.6328125 0.203125 Q16.9765625 0.203125 16.0234375 -1.0 Q14.8984375 -2.421875 14.8984375 -5.65625 Z M16.3359375 -5.65625 Q16.3359375 -2.828125 17.0 -1.8984375 Q17.6640625 -0.96875 18.6328125 -0.96875 Q19.6015625 -0.96875 20.2578125 -1.90625 Q20.9140625 -2.84375 20.9140625 -5.65625 Q20.9140625 -8.484375 20.2578125 -9.4140625 Q19.6015625 -10.34375 18.6171875 -10.34375 Q17.6484375 -10.34375 17.0703125 -9.515625 Q16.3359375 -8.46875 16.3359375 -5.65625 Z"/><path d=" M23.796875 -5.65625 Q23.796875 -7.6875 24.2109375 -8.921875 Q24.625 -10.15625 25.453125 -10.828125 Q26.28125 -11.5 27.53125 -11.5 Q28.453125 -11.5 29.1484375 -11.1328125 Q29.84375 -10.765625 30.296875 -10.0625 Q30.75 -9.359375 31.0078125 -8.359375 Q31.265625 -7.359375 31.265625 -5.65625 Q31.265625 -3.640625 30.8515625 -2.3984375 Q30.4375 -1.15625 29.609375 -0.4765625 Q28.78125 0.203125 27.53125 0.203125 Q25.875 0.203125 24.921875 -1.0 Q23.796875 -2.421875 23.796875 -5.65625 Z M25.234375 -5.65625 Q25.234375 -2.828125 25.8984375 -1.8984375 Q26.5625 -0.96875 27.53125 -0.96875 Q28.5 -0.96875 29.15625 -1.90625 Q29.8125 -2.84375 29.8125 -5.65625 Q29.8125 -8.484375 29.15625 -9.4140625 Q28.5 -10.34375 27.515625 -10.34375 Q26.546875 -10.34375 25.96875 -9.515625 Q25.234375 -8.46875 25.234375 -5.65625 Z"/></g></g><path d=" M44.5 252.27083333333331 L83.19010416666666 252.27083333333331 L83.19010416666666 275.2708333333333 L44.5 275.2708333333333 L44.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,319.7708333333333,230.77083333333337)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M62.5 252.27083333333331 L92.29166666666666 252.27083333333331 L92.29166666666666 275.2708333333333 L62.5 275.2708333333333 L62.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,337.7708333333333,212.77083333333337)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(0.0,1.0,-1.0,-0.0,66.49998982747394,277.9374974568685)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.515625 -3.4375 L0.515625 -4.859375 L4.828125 -4.859375 L4.828125 -3.4375 L0.515625 -3.4375 Z"/><path d=" M6.203125 -2.65625 L7.5625 -2.78125 Q7.734375 -1.828125 8.21875 -1.3984375 Q8.703125 -0.96875 9.453125 -0.96875 Q10.109375 -0.96875 10.59375 -1.265625 Q11.078125 -1.5625 11.390625 -2.0546875 Q11.703125 -2.546875 11.9140625 -3.390625 Q12.125 -4.234375 12.125 -5.109375 Q12.125 -5.203125 12.125 -5.390625 Q11.703125 -4.71875 10.96875 -4.3046875 Q10.234375 -3.890625 9.390625 -3.890625 Q7.96875 -3.890625 6.984375 -4.921875 Q6.0 -5.953125 6.0 -7.640625 Q6.0 -9.375 7.0234375 -10.4375 Q8.046875 -11.5 9.59375 -11.5 Q10.71875 -11.5 11.640625 -10.8984375 Q12.5625 -10.296875 13.046875 -9.1875 Q13.53125 -8.078125 13.53125 -5.96875 Q13.53125 -3.765625 13.0546875 -2.46875 Q12.578125 -1.171875 11.6328125 -0.484375 Q10.6875 0.203125 9.421875 0.203125 Q8.078125 0.203125 7.2265625 -0.546875 Q6.375 -1.296875 6.203125 -2.65625 Z M11.96875 -7.703125 Q11.96875 -8.921875 11.3203125 -9.6328125 Q10.671875 -10.34375 9.765625 -10.34375 Q8.828125 -10.34375 8.1328125 -9.578125 Q7.4375 -8.8125 7.4375 -7.59375 Q7.4375 -6.5 8.1015625 -5.8125 Q8.765625 -5.125 9.734375 -5.125 Q10.703125 -5.125 11.3359375 -5.8125 Q11.96875 -6.5 11.96875 -7.703125 Z"/><path d=" M14.8984375 -5.65625 Q14.8984375 -7.6875 15.3125 -8.921875 Q15.7265625 -10.15625 16.5546875 -10.828125 Q17.3828125 -11.5 18.6328125 -11.5 Q19.5546875 -11.5 20.25 -11.1328125 Q20.9453125 -10.765625 21.3984375 -10.0625 Q21.8515625 -9.359375 22.109375 -8.359375 Q22.3671875 -7.359375 22.3671875 -5.65625 Q22.3671875 -3.640625 21.953125 -2.3984375 Q21.5390625 -1.15625 20.7109375 -0.4765625 Q19.8828125 0.203125 18.6328125 0.203125 Q16.9765625 0.203125 16.0234375 -1.0 Q14.8984375 -2.421875 14.8984375 -5.65625 Z M16.3359375 -5.65625 Q16.3359375 -2.828125 17.0 -1.8984375 Q17.6640625 -0.96875 18.6328125 -0.96875 Q19.6015625 -0.96875 20.2578125 -1.90625 Q20.9140625 -2.84375 20.9140625 -5.65625 Q20.9140625 -8.484375 20.2578125 -9.4140625 Q19.6015625 -10.34375 18.6171875 -10.34375 Q17.6484375 -10.34375 17.0703125 -9.515625 Q16.3359375 -8.46875 16.3359375 -5.65625 Z"/></g></g><path d=" M62.5 252.27083333333331 L92.29166666666666 252.27083333333331 L92.29166666666666 275.2708333333333 L62.5 275.2708333333333 L62.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,337.7708333333333,212.77083333333337)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M80.5 252.27083333333331 L110.29166666666666 252.27083333333331 L110.29166666666666 275.2708333333333 L80.5 275.2708333333333 L80.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,355.7708333333333,194.77083333333337)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(0.0,1.0,-1.0,-0.0,84.49998982747394,277.9374974568685)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.515625 -3.4375 L0.515625 -4.859375 L4.828125 -4.859375 L4.828125 -3.4375 L0.515625 -3.4375 Z"/><path d=" M8.15625 -6.21875 Q7.28125 -6.53125 6.859375 -7.125 Q6.4375 -7.71875 6.4375 -8.546875 Q6.4375 -9.796875 7.3359375 -10.6484375 Q8.234375 -11.5 9.734375 -11.5 Q11.234375 -11.5 12.1484375 -10.6328125 Q13.0625 -9.765625 13.0625 -8.515625 Q13.0625 -7.71875 12.640625 -7.125 Q12.21875 -6.53125 11.375 -6.21875 Q12.421875 -5.875 12.9765625 -5.109375 Q13.53125 -4.34375 13.53125 -3.28125 Q13.53125 -1.8125 12.4921875 -0.8046875 Q11.453125 0.203125 9.75 0.203125 Q8.0625 0.203125 7.0234375 -0.8046875 Q5.984375 -1.8125 5.984375 -3.3125 Q5.984375 -4.4375 6.546875 -5.1875 Q7.109375 -5.9375 8.15625 -6.21875 Z M7.875 -8.59375 Q7.875 -7.78125 8.3984375 -7.265625 Q8.921875 -6.75 9.765625 -6.75 Q10.578125 -6.75 11.09375 -7.265625 Q11.609375 -7.78125 11.609375 -8.515625 Q11.609375 -9.296875 11.078125 -9.8203125 Q10.546875 -10.34375 9.75 -10.34375 Q8.9375 -10.34375 8.40625 -9.828125 Q7.875 -9.3125 7.875 -8.59375 Z M7.421875 -3.3125 Q7.421875 -2.703125 7.7109375 -2.140625 Q8.0 -1.578125 8.5625 -1.2734375 Q9.125 -0.96875 9.765625 -0.96875 Q10.78125 -0.96875 11.4375 -1.6171875 Q12.09375 -2.265625 12.09375 -3.265625 Q12.09375 -4.28125 11.4140625 -4.9453125 Q10.734375 -5.609375 9.71875 -5.609375 Q8.734375 -5.609375 8.078125 -4.953125 Q7.421875 -4.296875 7.421875 -3.3125 Z"/><path d=" M14.8984375 -5.65625 Q14.8984375 -7.6875 15.3125 -8.921875 Q15.7265625 -10.15625 16.5546875 -10.828125 Q17.3828125 -11.5 18.6328125 -11.5 Q19.5546875 -11.5 20.25 -11.1328125 Q20.9453125 -10.765625 21.3984375 -10.0625 Q21.8515625 -9.359375 22.109375 -8.359375 Q22.3671875 -7.359375 22.3671875 -5.65625 Q22.3671875 -3.640625 21.953125 -2.3984375 Q21.5390625 -1.15625 20.7109375 -0.4765625 Q19.8828125 0.203125 18.6328125 0.203125 Q16.9765625 0.203125 16.0234375 -1.0 Q14.8984375 -2.421875 14.8984375 -5.65625 Z M16.3359375 -5.65625 Q16.3359375 -2.828125 17.0 -1.8984375 Q17.6640625 -0.96875 18.6328125 -0.96875 Q19.6015625 -0.96875 20.2578125 -1.90625 Q20.9140625 -2.84375 20.9140625 -5.65625 Q20.9140625 -8.484375 20.2578125 -9.4140625 Q19.6015625 -10.34375 18.6171875 -10.34375 Q17.6484375 -10.34375 17.0703125 -9.515625 Q16.3359375 -8.46875 16.3359375 -5.65625 Z"/></g></g><path d=" M80.5 252.27083333333331 L110.29166666666666 252.27083333333331 L110.29166666666666 275.2708333333333 L80.5 275.2708333333333 L80.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,355.7708333333333,194.77083333333337)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M98.5 252.27083333333331 L128.29166666666666 252.27083333333331 L128.29166666666666 275.2708333333333 L98.5 275.2708333333333 L98.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,373.7708333333333,176.77083333333337)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(0.0,1.0,-1.0,-0.0,102.49998982747394,277.9374974568685)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.515625 -3.4375 L0.515625 -4.859375 L4.828125 -4.859375 L4.828125 -3.4375 L0.515625 -3.4375 Z"/><path d=" M6.09375 -9.953125 L6.09375 -11.3125 L13.5 -11.3125 L13.5 -10.21875 Q12.40625 -9.046875 11.3359375 -7.1171875 Q10.265625 -5.1875 9.671875 -3.15625 Q9.25 -1.71875 9.140625 0.0 L7.6875 0.0 Q7.71875 -1.359375 8.2265625 -3.2734375 Q8.734375 -5.1875 9.6796875 -6.9609375 Q10.625 -8.734375 11.703125 -9.953125 L6.09375 -9.953125 Z"/><path d=" M14.8984375 -5.65625 Q14.8984375 -7.6875 15.3125 -8.921875 Q15.7265625 -10.15625 16.5546875 -10.828125 Q17.3828125 -11.5 18.6328125 -11.5 Q19.5546875 -11.5 20.25 -11.1328125 Q20.9453125 -10.765625 21.3984375 -10.0625 Q21.8515625 -9.359375 22.109375 -8.359375 Q22.3671875 -7.359375 22.3671875 -5.65625 Q22.3671875 -3.640625 21.953125 -2.3984375 Q21.5390625 -1.15625 20.7109375 -0.4765625 Q19.8828125 0.203125 18.6328125 0.203125 Q16.9765625 0.203125 16.0234375 -1.0 Q14.8984375 -2.421875 14.8984375 -5.65625 Z M16.3359375 -5.65625 Q16.3359375 -2.828125 17.0 -1.8984375 Q17.6640625 -0.96875 18.6328125 -0.96875 Q19.6015625 -0.96875 20.2578125 -1.90625 Q20.9140625 -2.84375 20.9140625 -5.65625 Q20.9140625 -8.484375 20.2578125 -9.4140625 Q19.6015625 -10.34375 18.6171875 -10.34375 Q17.6484375 -10.34375 17.0703125 -9.515625 Q16.3359375 -8.46875 16.3359375 -5.65625 Z"/></g></g><path d=" M98.5 252.27083333333331 L128.29166666666666 252.27083333333331 L128.29166666666666 275.2708333333333 L98.5 275.2708333333333 L98.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,373.7708333333333,176.77083333333337)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M116.5 252.27083333333331 L146.29166666666666 252.27083333333331 L146.29166666666666 275.2708333333333 L116.5 275.2708333333333 L116.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,391.7708333333333,158.77083333333337)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(0.0,1.0,-1.0,-0.0,120.49998982747394,277.9374974568685)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.515625 -3.4375 L0.515625 -4.859375 L4.828125 -4.859375 L4.828125 -3.4375 L0.515625 -3.4375 Z"/><path d=" M13.296875 -8.65625 L11.890625 -8.546875 Q11.703125 -9.375 11.359375 -9.75 Q10.796875 -10.34375 9.953125 -10.34375 Q9.28125 -10.34375 8.78125 -9.96875 Q8.109375 -9.484375 7.7265625 -8.5546875 Q7.34375 -7.625 7.328125 -5.90625 Q7.84375 -6.6875 8.578125 -7.0625 Q9.3125 -7.4375 10.109375 -7.4375 Q11.515625 -7.4375 12.5078125 -6.3984375 Q13.5 -5.359375 13.5 -3.71875 Q13.5 -2.640625 13.03125 -1.71875 Q12.5625 -0.796875 11.75 -0.296875 Q10.9375 0.203125 9.90625 0.203125 Q8.15625 0.203125 7.046875 -1.09375 Q5.9375 -2.390625 5.9375 -5.359375 Q5.9375 -8.6875 7.15625 -10.1875 Q8.234375 -11.5 10.046875 -11.5 Q11.390625 -11.5 12.2578125 -10.7421875 Q13.125 -9.984375 13.296875 -8.65625 Z M7.546875 -3.71875 Q7.546875 -2.984375 7.859375 -2.3203125 Q8.171875 -1.65625 8.7265625 -1.3125 Q9.28125 -0.96875 9.890625 -0.96875 Q10.78125 -0.96875 11.421875 -1.6875 Q12.0625 -2.40625 12.0625 -3.640625 Q12.0625 -4.828125 11.4296875 -5.5078125 Q10.796875 -6.1875 9.828125 -6.1875 Q8.875 -6.1875 8.2109375 -5.5078125 Q7.546875 -4.828125 7.546875 -3.71875 Z"/><path d=" M14.8984375 -5.65625 Q14.8984375 -7.6875 15.3125 -8.921875 Q15.7265625 -10.15625 16.5546875 -10.828125 Q17.3828125 -11.5 18.6328125 -11.5 Q19.5546875 -11.5 20.25 -11.1328125 Q20.9453125 -10.765625 21.3984375 -10.0625 Q21.8515625 -9.359375 22.109375 -8.359375 Q22.3671875 -7.359375 22.3671875 -5.65625 Q22.3671875 -3.640625 21.953125 -2.3984375 Q21.5390625 -1.15625 20.7109375 -0.4765625 Q19.8828125 0.203125 18.6328125 0.203125 Q16.9765625 0.203125 16.0234375 -1.0 Q14.8984375 -2.421875 14.8984375 -5.65625 Z M16.3359375 -5.65625 Q16.3359375 -2.828125 17.0 -1.8984375 Q17.6640625 -0.96875 18.6328125 -0.96875 Q19.6015625 -0.96875 20.2578125 -1.90625 Q20.9140625 -2.84375 20.9140625 -5.65625 Q20.9140625 -8.484375 20.2578125 -9.4140625 Q19.6015625 -10.34375 18.6171875 -10.34375 Q17.6484375 -10.34375 17.0703125 -9.515625 Q16.3359375 -8.46875 16.3359375 -5.65625 Z"/></g></g><path d=" M116.5 252.27083333333331 L146.29166666666666 252.27083333333331 L146.29166666666666 275.2708333333333 L116.5 275.2708333333333 L116.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,391.7708333333333,158.77083333333337)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M134.5 252.27083333333331 L164.29166666666666 252.27083333333331 L164.29166666666666 275.2708333333333 L134.5 275.2708333333333 L134.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,409.7708333333333,140.77083333333337)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(0.0,1.0,-1.0,-0.0,138.49998982747394,277.93750508626306)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.515625 -3.4375 L0.515625 -4.859375 L4.828125 -4.859375 L4.828125 -3.4375 L0.515625 -3.4375 Z"/><path d=" M6.0 -3.0 L7.46875 -3.125 Q7.640625 -2.046875 8.234375 -1.5078125 Q8.828125 -0.96875 9.671875 -0.96875 Q10.6875 -0.96875 11.390625 -1.734375 Q12.09375 -2.5 12.09375 -3.765625 Q12.09375 -4.96875 11.421875 -5.6640625 Q10.75 -6.359375 9.65625 -6.359375 Q8.96875 -6.359375 8.421875 -6.046875 Q7.875 -5.734375 7.5625 -5.25 L6.25 -5.421875 L7.359375 -11.296875 L13.046875 -11.296875 L13.046875 -9.953125 L8.484375 -9.953125 L7.859375 -6.875 Q8.890625 -7.59375 10.03125 -7.59375 Q11.53125 -7.59375 12.5625 -6.5546875 Q13.59375 -5.515625 13.59375 -3.890625 Q13.59375 -2.328125 12.6875 -1.203125 Q11.578125 0.203125 9.671875 0.203125 Q8.109375 0.203125 7.125 -0.6796875 Q6.140625 -1.5625 6.0 -3.0 Z"/><path d=" M14.8984375 -5.65625 Q14.8984375 -7.6875 15.3125 -8.921875 Q15.7265625 -10.15625 16.5546875 -10.828125 Q17.3828125 -11.5 18.6328125 -11.5 Q19.5546875 -11.5 20.25 -11.1328125 Q20.9453125 -10.765625 21.3984375 -10.0625 Q21.8515625 -9.359375 22.109375 -8.359375 Q22.3671875 -7.359375 22.3671875 -5.65625 Q22.3671875 -3.640625 21.953125 -2.3984375 Q21.5390625 -1.15625 20.7109375 -0.4765625 Q19.8828125 0.203125 18.6328125 0.203125 Q16.9765625 0.203125 16.0234375 -1.0 Q14.8984375 -2.421875 14.8984375 -5.65625 Z M16.3359375 -5.65625 Q16.3359375 -2.828125 17.0 -1.8984375 Q17.6640625 -0.96875 18.6328125 -0.96875 Q19.6015625 -0.96875 20.2578125 -1.90625 Q20.9140625 -2.84375 20.9140625 -5.65625 Q20.9140625 -8.484375 20.2578125 -9.4140625 Q19.6015625 -10.34375 18.6171875 -10.34375 Q17.6484375 -10.34375 17.0703125 -9.515625 Q16.3359375 -8.46875 16.3359375 -5.65625 Z"/></g></g><path d=" M134.5 252.27083333333331 L164.29166666666666 252.27083333333331 L164.29166666666666 275.2708333333333 L134.5 275.2708333333333 L134.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,409.7708333333333,140.77083333333337)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M151.5 252.27083333333331 L181.29166666666666 252.27083333333331 L181.29166666666666 275.2708333333333 L151.5 275.2708333333333 L151.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,426.7708333333333,123.77083333333337)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(0.0,1.0,-1.0,-0.0,155.49998982747394,277.93750508626306)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.515625 -3.4375 L0.515625 -4.859375 L4.828125 -4.859375 L4.828125 -3.4375 L0.515625 -3.4375 Z"/><path d=" M10.5 0.0 L10.5 -2.75 L5.53125 -2.75 L5.53125 -4.03125 L10.765625 -11.453125 L11.90625 -11.453125 L11.90625 -4.03125 L13.453125 -4.03125 L13.453125 -2.75 L11.90625 -2.75 L11.90625 0.0 L10.5 0.0 Z M10.5 -4.03125 L10.5 -9.203125 L6.921875 -4.03125 L10.5 -4.03125 Z"/><path d=" M14.8984375 -5.65625 Q14.8984375 -7.6875 15.3125 -8.921875 Q15.7265625 -10.15625 16.5546875 -10.828125 Q17.3828125 -11.5 18.6328125 -11.5 Q19.5546875 -11.5 20.25 -11.1328125 Q20.9453125 -10.765625 21.3984375 -10.0625 Q21.8515625 -9.359375 22.109375 -8.359375 Q22.3671875 -7.359375 22.3671875 -5.65625 Q22.3671875 -3.640625 21.953125 -2.3984375 Q21.5390625 -1.15625 20.7109375 -0.4765625 Q19.8828125 0.203125 18.6328125 0.203125 Q16.9765625 0.203125 16.0234375 -1.0 Q14.8984375 -2.421875 14.8984375 -5.65625 Z M16.3359375 -5.65625 Q16.3359375 -2.828125 17.0 -1.8984375 Q17.6640625 -0.96875 18.6328125 -0.96875 Q19.6015625 -0.96875 20.2578125 -1.90625 Q20.9140625 -2.84375 20.9140625 -5.65625 Q20.9140625 -8.484375 20.2578125 -9.4140625 Q19.6015625 -10.34375 18.6171875 -10.34375 Q17.6484375 -10.34375 17.0703125 -9.515625 Q16.3359375 -8.46875 16.3359375 -5.65625 Z"/></g></g><path d=" M151.5 252.27083333333331 L181.29166666666666 252.27083333333331 L181.29166666666666 275.2708333333333 L151.5 275.2708333333333 L151.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,426.7708333333333,123.77083333333337)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M169.5 252.27083333333331 L199.29166666666666 252.27083333333331 L199.29166666666666 275.2708333333333 L169.5 275.2708333333333 L169.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,444.7708333333333,105.77083333333337)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(0.0,1.0,-1.0,-0.0,173.49998982747394,277.93750508626306)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.515625 -3.4375 L0.515625 -4.859375 L4.828125 -4.859375 L4.828125 -3.4375 L0.515625 -3.4375 Z"/><path d=" M6.0 -3.03125 L7.40625 -3.21875 Q7.65625 -2.015625 8.234375 -1.4921875 Q8.8125 -0.96875 9.65625 -0.96875 Q10.640625 -0.96875 11.328125 -1.65625 Q12.015625 -2.34375 12.015625 -3.359375 Q12.015625 -4.328125 11.3828125 -4.953125 Q10.75 -5.578125 9.765625 -5.578125 Q9.375 -5.578125 8.78125 -5.421875 L8.9375 -6.65625 Q9.078125 -6.640625 9.15625 -6.640625 Q10.0625 -6.640625 10.78125 -7.109375 Q11.5 -7.578125 11.5 -8.5625 Q11.5 -9.328125 10.9765625 -9.8359375 Q10.453125 -10.34375 9.625 -10.34375 Q8.796875 -10.34375 8.25 -9.828125 Q7.703125 -9.3125 7.546875 -8.28125 L6.140625 -8.53125 Q6.40625 -9.953125 7.3203125 -10.7265625 Q8.234375 -11.5 9.59375 -11.5 Q10.53125 -11.5 11.3203125 -11.1015625 Q12.109375 -10.703125 12.5234375 -10.0078125 Q12.9375 -9.3125 12.9375 -8.53125 Q12.9375 -7.78125 12.5390625 -7.171875 Q12.140625 -6.5625 11.359375 -6.203125 Q12.375 -5.96875 12.9375 -5.234375 Q13.5 -4.5 13.5 -3.390625 Q13.5 -1.890625 12.40625 -0.84375 Q11.3125 0.203125 9.640625 0.203125 Q8.140625 0.203125 7.140625 -0.6953125 Q6.140625 -1.59375 6.0 -3.03125 Z"/><path d=" M14.8984375 -5.65625 Q14.8984375 -7.6875 15.3125 -8.921875 Q15.7265625 -10.15625 16.5546875 -10.828125 Q17.3828125 -11.5 18.6328125 -11.5 Q19.5546875 -11.5 20.25 -11.1328125 Q20.9453125 -10.765625 21.3984375 -10.0625 Q21.8515625 -9.359375 22.109375 -8.359375 Q22.3671875 -7.359375 22.3671875 -5.65625 Q22.3671875 -3.640625 21.953125 -2.3984375 Q21.5390625 -1.15625 20.7109375 -0.4765625 Q19.8828125 0.203125 18.6328125 0.203125 Q16.9765625 0.203125 16.0234375 -1.0 Q14.8984375 -2.421875 14.8984375 -5.65625 Z M16.3359375 -5.65625 Q16.3359375 -2.828125 17.0 -1.8984375 Q17.6640625 -0.96875 18.6328125 -0.96875 Q19.6015625 -0.96875 20.2578125 -1.90625 Q20.9140625 -2.84375 20.9140625 -5.65625 Q20.9140625 -8.484375 20.2578125 -9.4140625 Q19.6015625 -10.34375 18.6171875 -10.34375 Q17.6484375 -10.34375 17.0703125 -9.515625 Q16.3359375 -8.46875 16.3359375 -5.65625 Z"/></g></g><path d=" M169.5 252.27083333333331 L199.29166666666666 252.27083333333331 L199.29166666666666 275.2708333333333 L169.5 275.2708333333333 L169.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,444.7708333333333,105.77083333333337)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M187.5 252.27083333333331 L217.29166666666666 252.27083333333331 L217.29166666666666 275.2708333333333 L187.5 275.2708333333333 L187.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,462.7708333333333,87.77083333333337)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(0.0,1.0,-1.0,-0.0,191.49998982747394,277.93750508626306)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.515625 -3.4375 L0.515625 -4.859375 L4.828125 -4.859375 L4.828125 -3.4375 L0.515625 -3.4375 Z"/><path d=" M13.390625 -1.359375 L13.390625 0.0 L5.8125 0.0 Q5.796875 -0.515625 5.984375 -0.984375 Q6.265625 -1.75 6.90625 -2.5 Q7.546875 -3.25 8.75 -4.234375 Q10.609375 -5.765625 11.265625 -6.6640625 Q11.921875 -7.5625 11.921875 -8.359375 Q11.921875 -9.1875 11.328125 -9.765625 Q10.734375 -10.34375 9.765625 -10.34375 Q8.75 -10.34375 8.140625 -9.734375 Q7.53125 -9.125 7.53125 -8.046875 L6.078125 -8.1875 Q6.234375 -9.8125 7.203125 -10.65625 Q8.171875 -11.5 9.796875 -11.5 Q11.453125 -11.5 12.4140625 -10.5859375 Q13.375 -9.671875 13.375 -8.328125 Q13.375 -7.640625 13.09375 -6.9765625 Q12.8125 -6.3125 12.15625 -5.578125 Q11.5 -4.84375 9.984375 -3.5625 Q8.71875 -2.5 8.359375 -2.1171875 Q8.0 -1.734375 7.765625 -1.359375 L13.390625 -1.359375 Z"/><path d=" M14.8984375 -5.65625 Q14.8984375 -7.6875 15.3125 -8.921875 Q15.7265625 -10.15625 16.5546875 -10.828125 Q17.3828125 -11.5 18.6328125 -11.5 Q19.5546875 -11.5 20.25 -11.1328125 Q20.9453125 -10.765625 21.3984375 -10.0625 Q21.8515625 -9.359375 22.109375 -8.359375 Q22.3671875 -7.359375 22.3671875 -5.65625 Q22.3671875 -3.640625 21.953125 -2.3984375 Q21.5390625 -1.15625 20.7109375 -0.4765625 Q19.8828125 0.203125 18.6328125 0.203125 Q16.9765625 0.203125 16.0234375 -1.0 Q14.8984375 -2.421875 14.8984375 -5.65625 Z M16.3359375 -5.65625 Q16.3359375 -2.828125 17.0 -1.8984375 Q17.6640625 -0.96875 18.6328125 -0.96875 Q19.6015625 -0.96875 20.2578125 -1.90625 Q20.9140625 -2.84375 20.9140625 -5.65625 Q20.9140625 -8.484375 20.2578125 -9.4140625 Q19.6015625 -10.34375 18.6171875 -10.34375 Q17.6484375 -10.34375 17.0703125 -9.515625 Q16.3359375 -8.46875 16.3359375 -5.65625 Z"/></g></g><path d=" M187.5 252.27083333333331 L217.29166666666666 252.27083333333331 L217.29166666666666 275.2708333333333 L187.5 275.2708333333333 L187.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,462.7708333333333,87.77083333333337)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M205.5 252.27083333333331 L235.29166666666666 252.27083333333331 L235.29166666666666 275.2708333333333 L205.5 275.2708333333333 L205.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,480.7708333333333,69.77083333333337)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(0.0,1.0,-1.0,-0.0,209.49998982747394,277.93750508626306)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.515625 -3.4375 L0.515625 -4.859375 L4.828125 -4.859375 L4.828125 -3.4375 L0.515625 -3.4375 Z"/><path d=" M11.296875 0.0 L9.890625 0.0 L9.890625 -8.96875 Q9.375 -8.484375 8.5546875 -8.0 Q7.734375 -7.515625 7.078125 -7.265625 L7.078125 -8.625 Q8.25 -9.1875 9.1328125 -9.9765625 Q10.015625 -10.765625 10.390625 -11.5 L11.296875 -11.5 L11.296875 0.0 Z"/><path d=" M14.8984375 -5.65625 Q14.8984375 -7.6875 15.3125 -8.921875 Q15.7265625 -10.15625 16.5546875 -10.828125 Q17.3828125 -11.5 18.6328125 -11.5 Q19.5546875 -11.5 20.25 -11.1328125 Q20.9453125 -10.765625 21.3984375 -10.0625 Q21.8515625 -9.359375 22.109375 -8.359375 Q22.3671875 -7.359375 22.3671875 -5.65625 Q22.3671875 -3.640625 21.953125 -2.3984375 Q21.5390625 -1.15625 20.7109375 -0.4765625 Q19.8828125 0.203125 18.6328125 0.203125 Q16.9765625 0.203125 16.0234375 -1.0 Q14.8984375 -2.421875 14.8984375 -5.65625 Z M16.3359375 -5.65625 Q16.3359375 -2.828125 17.0 -1.8984375 Q17.6640625 -0.96875 18.6328125 -0.96875 Q19.6015625 -0.96875 20.2578125 -1.90625 Q20.9140625 -2.84375 20.9140625 -5.65625 Q20.9140625 -8.484375 20.2578125 -9.4140625 Q19.6015625 -10.34375 18.6171875 -10.34375 Q17.6484375 -10.34375 17.0703125 -9.515625 Q16.3359375 -8.46875 16.3359375 -5.65625 Z"/></g></g><path d=" M205.5 252.27083333333331 L235.29166666666666 252.27083333333331 L235.29166666666666 275.2708333333333 L205.5 275.2708333333333 L205.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,480.7708333333333,69.77083333333337)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M223.5 252.27083333333331 L239.06510416666666 252.27083333333331 L239.06510416666666 275.2708333333333 L223.5 275.2708333333333 L223.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,498.7708333333333,51.77083333333337)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(0.0,1.0,-1.0,-0.0,227.49998982747394,277.93750508626306)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.671875 -5.65625 Q0.671875 -7.6875 1.0859375 -8.921875 Q1.5 -10.15625 2.328125 -10.828125 Q3.15625 -11.5 4.40625 -11.5 Q5.328125 -11.5 6.0234375 -11.1328125 Q6.71875 -10.765625 7.171875 -10.0625 Q7.625 -9.359375 7.8828125 -8.359375 Q8.140625 -7.359375 8.140625 -5.65625 Q8.140625 -3.640625 7.7265625 -2.3984375 Q7.3125 -1.15625 6.484375 -0.4765625 Q5.65625 0.203125 4.40625 0.203125 Q2.75 0.203125 1.796875 -1.0 Q0.671875 -2.421875 0.671875 -5.65625 Z M2.109375 -5.65625 Q2.109375 -2.828125 2.7734375 -1.8984375 Q3.4375 -0.96875 4.40625 -0.96875 Q5.375 -0.96875 6.03125 -1.90625 Q6.6875 -2.84375 6.6875 -5.65625 Q6.6875 -8.484375 6.03125 -9.4140625 Q5.375 -10.34375 4.390625 -10.34375 Q3.421875 -10.34375 2.84375 -9.515625 Q2.109375 -8.46875 2.109375 -5.65625 Z"/></g></g><path d=" M223.5 252.27083333333331 L239.06510416666666 252.27083333333331 L239.06510416666666 275.2708333333333 L223.5 275.2708333333333 L223.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,498.7708333333333,51.77083333333337)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M241.5 252.27083333333331 L265.9635416666667 252.27083333333331 L265.9635416666667 275.2708333333333 L241.5 275.2708333333333 L241.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,516.7708333333333,33.77083333333337)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(0.0,1.0,-1.0,-0.0,245.49998982747388,277.93750508626306)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.96875 0.0 L4.5625 0.0 L4.5625 -8.96875 Q4.046875 -8.484375 3.2265625 -8.0 Q2.40625 -7.515625 1.75 -7.265625 L1.75 -8.625 Q2.921875 -9.1875 3.8046875 -9.9765625 Q4.6875 -10.765625 5.0625 -11.5 L5.96875 -11.5 L5.96875 0.0 Z"/><path d=" M9.5703125 -5.65625 Q9.5703125 -7.6875 9.984375 -8.921875 Q10.3984375 -10.15625 11.2265625 -10.828125 Q12.0546875 -11.5 13.3046875 -11.5 Q14.2265625 -11.5 14.921875 -11.1328125 Q15.6171875 -10.765625 16.0703125 -10.0625 Q16.5234375 -9.359375 16.78125 -8.359375 Q17.0390625 -7.359375 17.0390625 -5.65625 Q17.0390625 -3.640625 16.625 -2.3984375 Q16.2109375 -1.15625 15.3828125 -0.4765625 Q14.5546875 0.203125 13.3046875 0.203125 Q11.6484375 0.203125 10.6953125 -1.0 Q9.5703125 -2.421875 9.5703125 -5.65625 Z M11.0078125 -5.65625 Q11.0078125 -2.828125 11.671875 -1.8984375 Q12.3359375 -0.96875 13.3046875 -0.96875 Q14.2734375 -0.96875 14.9296875 -1.90625 Q15.5859375 -2.84375 15.5859375 -5.65625 Q15.5859375 -8.484375 14.9296875 -9.4140625 Q14.2734375 -10.34375 13.2890625 -10.34375 Q12.3203125 -10.34375 11.7421875 -9.515625 Q11.0078125 -8.46875 11.0078125 -5.65625 Z"/></g></g><path d=" M241.5 252.27083333333331 L265.9635416666667 252.27083333333331 L265.9635416666667 275.2708333333333 L241.5 275.2708333333333 L241.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,516.7708333333333,33.77083333333337)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M259.5 252.27083333333331 L283.9635416666667 252.27083333333331 L283.9635416666667 275.2708333333333 L259.5 275.2708333333333 L259.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,534.7708333333333,15.770833333333371)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(0.0,1.0,-1.0,-0.0,263.4999898274739,277.937489827474)" style="fill-opacity:1.0;fill:#000000;"><path d=" M8.0625 -1.359375 L8.0625 0.0 L0.484375 0.0 Q0.46875 -0.515625 0.65625 -0.984375 Q0.9375 -1.75 1.578125 -2.5 Q2.21875 -3.25 3.421875 -4.234375 Q5.28125 -5.765625 5.9375 -6.6640625 Q6.59375 -7.5625 6.59375 -8.359375 Q6.59375 -9.1875 6.0 -9.765625 Q5.40625 -10.34375 4.4375 -10.34375 Q3.421875 -10.34375 2.8125 -9.734375 Q2.203125 -9.125 2.203125 -8.046875 L0.75 -8.1875 Q0.90625 -9.8125 1.875 -10.65625 Q2.84375 -11.5 4.46875 -11.5 Q6.125 -11.5 7.0859375 -10.5859375 Q8.046875 -9.671875 8.046875 -8.328125 Q8.046875 -7.640625 7.765625 -6.9765625 Q7.484375 -6.3125 6.828125 -5.578125 Q6.171875 -4.84375 4.65625 -3.5625 Q3.390625 -2.5 3.03125 -2.1171875 Q2.671875 -1.734375 2.4375 -1.359375 L8.0625 -1.359375 Z"/><path d=" M9.5703125 -5.65625 Q9.5703125 -7.6875 9.984375 -8.921875 Q10.3984375 -10.15625 11.2265625 -10.828125 Q12.0546875 -11.5 13.3046875 -11.5 Q14.2265625 -11.5 14.921875 -11.1328125 Q15.6171875 -10.765625 16.0703125 -10.0625 Q16.5234375 -9.359375 16.78125 -8.359375 Q17.0390625 -7.359375 17.0390625 -5.65625 Q17.0390625 -3.640625 16.625 -2.3984375 Q16.2109375 -1.15625 15.3828125 -0.4765625 Q14.5546875 0.203125 13.3046875 0.203125 Q11.6484375 0.203125 10.6953125 -1.0 Q9.5703125 -2.421875 9.5703125 -5.65625 Z M11.0078125 -5.65625 Q11.0078125 -2.828125 11.671875 -1.8984375 Q12.3359375 -0.96875 13.3046875 -0.96875 Q14.2734375 -0.96875 14.9296875 -1.90625 Q15.5859375 -2.84375 15.5859375 -5.65625 Q15.5859375 -8.484375 14.9296875 -9.4140625 Q14.2734375 -10.34375 13.2890625 -10.34375 Q12.3203125 -10.34375 11.7421875 -9.515625 Q11.0078125 -8.46875 11.0078125 -5.65625 Z"/></g></g><path d=" M259.5 252.27083333333331 L283.9635416666667 252.27083333333331 L283.9635416666667 275.2708333333333 L259.5 275.2708333333333 L259.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,534.7708333333333,15.770833333333371)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M277.5 252.27083333333331 L301.9635416666667 252.27083333333331 L301.9635416666667 275.2708333333333 L277.5 275.2708333333333 L277.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,552.7708333333333,-2.2291666666666288)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(0.0,1.0,-1.0,-0.0,281.4999898274739,277.937489827474)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.671875 -3.03125 L2.078125 -3.21875 Q2.328125 -2.015625 2.90625 -1.4921875 Q3.484375 -0.96875 4.328125 -0.96875 Q5.3125 -0.96875 6.0 -1.65625 Q6.6875 -2.34375 6.6875 -3.359375 Q6.6875 -4.328125 6.0546875 -4.953125 Q5.421875 -5.578125 4.4375 -5.578125 Q4.046875 -5.578125 3.453125 -5.421875 L3.609375 -6.65625 Q3.75 -6.640625 3.828125 -6.640625 Q4.734375 -6.640625 5.453125 -7.109375 Q6.171875 -7.578125 6.171875 -8.5625 Q6.171875 -9.328125 5.6484375 -9.8359375 Q5.125 -10.34375 4.296875 -10.34375 Q3.46875 -10.34375 2.921875 -9.828125 Q2.375 -9.3125 2.21875 -8.28125 L0.8125 -8.53125 Q1.078125 -9.953125 1.9921875 -10.7265625 Q2.90625 -11.5 4.265625 -11.5 Q5.203125 -11.5 5.9921875 -11.1015625 Q6.78125 -10.703125 7.1953125 -10.0078125 Q7.609375 -9.3125 7.609375 -8.53125 Q7.609375 -7.78125 7.2109375 -7.171875 Q6.8125 -6.5625 6.03125 -6.203125 Q7.046875 -5.96875 7.609375 -5.234375 Q8.171875 -4.5 8.171875 -3.390625 Q8.171875 -1.890625 7.078125 -0.84375 Q5.984375 0.203125 4.3125 0.203125 Q2.8125 0.203125 1.8125 -0.6953125 Q0.8125 -1.59375 0.671875 -3.03125 Z"/><path d=" M9.5703125 -5.65625 Q9.5703125 -7.6875 9.984375 -8.921875 Q10.3984375 -10.15625 11.2265625 -10.828125 Q12.0546875 -11.5 13.3046875 -11.5 Q14.2265625 -11.5 14.921875 -11.1328125 Q15.6171875 -10.765625 16.0703125 -10.0625 Q16.5234375 -9.359375 16.78125 -8.359375 Q17.0390625 -7.359375 17.0390625 -5.65625 Q17.0390625 -3.640625 16.625 -2.3984375 Q16.2109375 -1.15625 15.3828125 -0.4765625 Q14.5546875 0.203125 13.3046875 0.203125 Q11.6484375 0.203125 10.6953125 -1.0 Q9.5703125 -2.421875 9.5703125 -5.65625 Z M11.0078125 -5.65625 Q11.0078125 -2.828125 11.671875 -1.8984375 Q12.3359375 -0.96875 13.3046875 -0.96875 Q14.2734375 -0.96875 14.9296875 -1.90625 Q15.5859375 -2.84375 15.5859375 -5.65625 Q15.5859375 -8.484375 14.9296875 -9.4140625 Q14.2734375 -10.34375 13.2890625 -10.34375 Q12.3203125 -10.34375 11.7421875 -9.515625 Q11.0078125 -8.46875 11.0078125 -5.65625 Z"/></g></g><path d=" M277.5 252.27083333333331 L301.9635416666667 252.27083333333331 L301.9635416666667 275.2708333333333 L277.5 275.2708333333333 L277.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,552.7708333333333,-2.2291666666666288)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M295.5 252.27083333333331 L319.9635416666667 252.27083333333331 L319.9635416666667 275.2708333333333 L295.5 275.2708333333333 L295.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,570.7708333333333,-20.22916666666663)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(0.0,1.0,-1.0,-0.0,299.4999898274739,277.937489827474)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.171875 0.0 L5.171875 -2.75 L0.203125 -2.75 L0.203125 -4.03125 L5.4375 -11.453125 L6.578125 -11.453125 L6.578125 -4.03125 L8.125 -4.03125 L8.125 -2.75 L6.578125 -2.75 L6.578125 0.0 L5.171875 0.0 Z M5.171875 -4.03125 L5.171875 -9.203125 L1.59375 -4.03125 L5.171875 -4.03125 Z"/><path d=" M9.5703125 -5.65625 Q9.5703125 -7.6875 9.984375 -8.921875 Q10.3984375 -10.15625 11.2265625 -10.828125 Q12.0546875 -11.5 13.3046875 -11.5 Q14.2265625 -11.5 14.921875 -11.1328125 Q15.6171875 -10.765625 16.0703125 -10.0625 Q16.5234375 -9.359375 16.78125 -8.359375 Q17.0390625 -7.359375 17.0390625 -5.65625 Q17.0390625 -3.640625 16.625 -2.3984375 Q16.2109375 -1.15625 15.3828125 -0.4765625 Q14.5546875 0.203125 13.3046875 0.203125 Q11.6484375 0.203125 10.6953125 -1.0 Q9.5703125 -2.421875 9.5703125 -5.65625 Z M11.0078125 -5.65625 Q11.0078125 -2.828125 11.671875 -1.8984375 Q12.3359375 -0.96875 13.3046875 -0.96875 Q14.2734375 -0.96875 14.9296875 -1.90625 Q15.5859375 -2.84375 15.5859375 -5.65625 Q15.5859375 -8.484375 14.9296875 -9.4140625 Q14.2734375 -10.34375 13.2890625 -10.34375 Q12.3203125 -10.34375 11.7421875 -9.515625 Q11.0078125 -8.46875 11.0078125 -5.65625 Z"/></g></g><path d=" M295.5 252.27083333333331 L319.9635416666667 252.27083333333331 L319.9635416666667 275.2708333333333 L295.5 275.2708333333333 L295.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,570.7708333333333,-20.22916666666663)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M312.5 252.27083333333331 L336.9635416666667 252.27083333333331 L336.9635416666667 275.2708333333333 L312.5 275.2708333333333 L312.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,587.7708333333333,-37.22916666666663)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(0.0,1.0,-1.0,-0.0,316.4999898274739,277.937489827474)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.671875 -3.0 L2.140625 -3.125 Q2.3125 -2.046875 2.90625 -1.5078125 Q3.5 -0.96875 4.34375 -0.96875 Q5.359375 -0.96875 6.0625 -1.734375 Q6.765625 -2.5 6.765625 -3.765625 Q6.765625 -4.96875 6.09375 -5.6640625 Q5.421875 -6.359375 4.328125 -6.359375 Q3.640625 -6.359375 3.09375 -6.046875 Q2.546875 -5.734375 2.234375 -5.25 L0.921875 -5.421875 L2.03125 -11.296875 L7.71875 -11.296875 L7.71875 -9.953125 L3.15625 -9.953125 L2.53125 -6.875 Q3.5625 -7.59375 4.703125 -7.59375 Q6.203125 -7.59375 7.234375 -6.5546875 Q8.265625 -5.515625 8.265625 -3.890625 Q8.265625 -2.328125 7.359375 -1.203125 Q6.25 0.203125 4.34375 0.203125 Q2.78125 0.203125 1.796875 -0.6796875 Q0.8125 -1.5625 0.671875 -3.0 Z"/><path d=" M9.5703125 -5.65625 Q9.5703125 -7.6875 9.984375 -8.921875 Q10.3984375 -10.15625 11.2265625 -10.828125 Q12.0546875 -11.5 13.3046875 -11.5 Q14.2265625 -11.5 14.921875 -11.1328125 Q15.6171875 -10.765625 16.0703125 -10.0625 Q16.5234375 -9.359375 16.78125 -8.359375 Q17.0390625 -7.359375 17.0390625 -5.65625 Q17.0390625 -3.640625 16.625 -2.3984375 Q16.2109375 -1.15625 15.3828125 -0.4765625 Q14.5546875 0.203125 13.3046875 0.203125 Q11.6484375 0.203125 10.6953125 -1.0 Q9.5703125 -2.421875 9.5703125 -5.65625 Z M11.0078125 -5.65625 Q11.0078125 -2.828125 11.671875 -1.8984375 Q12.3359375 -0.96875 13.3046875 -0.96875 Q14.2734375 -0.96875 14.9296875 -1.90625 Q15.5859375 -2.84375 15.5859375 -5.65625 Q15.5859375 -8.484375 14.9296875 -9.4140625 Q14.2734375 -10.34375 13.2890625 -10.34375 Q12.3203125 -10.34375 11.7421875 -9.515625 Q11.0078125 -8.46875 11.0078125 -5.65625 Z"/></g></g><path d=" M312.5 252.27083333333331 L336.9635416666667 252.27083333333331 L336.9635416666667 275.2708333333333 L312.5 275.2708333333333 L312.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,587.7708333333333,-37.22916666666663)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M330.5 252.27083333333331 L354.9635416666667 252.27083333333331 L354.9635416666667 275.2708333333333 L330.5 275.2708333333333 L330.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,605.7708333333333,-55.22916666666663)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(0.0,1.0,-1.0,-0.0,334.4999898274739,277.937489827474)" style="fill-opacity:1.0;fill:#000000;"><path d=" M7.96875 -8.65625 L6.5625 -8.546875 Q6.375 -9.375 6.03125 -9.75 Q5.46875 -10.34375 4.625 -10.34375 Q3.953125 -10.34375 3.453125 -9.96875 Q2.78125 -9.484375 2.3984375 -8.5546875 Q2.015625 -7.625 2.0 -5.90625 Q2.515625 -6.6875 3.25 -7.0625 Q3.984375 -7.4375 4.78125 -7.4375 Q6.1875 -7.4375 7.1796875 -6.3984375 Q8.171875 -5.359375 8.171875 -3.71875 Q8.171875 -2.640625 7.703125 -1.71875 Q7.234375 -0.796875 6.421875 -0.296875 Q5.609375 0.203125 4.578125 0.203125 Q2.828125 0.203125 1.71875 -1.09375 Q0.609375 -2.390625 0.609375 -5.359375 Q0.609375 -8.6875 1.828125 -10.1875 Q2.90625 -11.5 4.71875 -11.5 Q6.0625 -11.5 6.9296875 -10.7421875 Q7.796875 -9.984375 7.96875 -8.65625 Z M2.21875 -3.71875 Q2.21875 -2.984375 2.53125 -2.3203125 Q2.84375 -1.65625 3.3984375 -1.3125 Q3.953125 -0.96875 4.5625 -0.96875 Q5.453125 -0.96875 6.09375 -1.6875 Q6.734375 -2.40625 6.734375 -3.640625 Q6.734375 -4.828125 6.1015625 -5.5078125 Q5.46875 -6.1875 4.5 -6.1875 Q3.546875 -6.1875 2.8828125 -5.5078125 Q2.21875 -4.828125 2.21875 -3.71875 Z"/><path d=" M9.5703125 -5.65625 Q9.5703125 -7.6875 9.984375 -8.921875 Q10.3984375 -10.15625 11.2265625 -10.828125 Q12.0546875 -11.5 13.3046875 -11.5 Q14.2265625 -11.5 14.921875 -11.1328125 Q15.6171875 -10.765625 16.0703125 -10.0625 Q16.5234375 -9.359375 16.78125 -8.359375 Q17.0390625 -7.359375 17.0390625 -5.65625 Q17.0390625 -3.640625 16.625 -2.3984375 Q16.2109375 -1.15625 15.3828125 -0.4765625 Q14.5546875 0.203125 13.3046875 0.203125 Q11.6484375 0.203125 10.6953125 -1.0 Q9.5703125 -2.421875 9.5703125 -5.65625 Z M11.0078125 -5.65625 Q11.0078125 -2.828125 11.671875 -1.8984375 Q12.3359375 -0.96875 13.3046875 -0.96875 Q14.2734375 -0.96875 14.9296875 -1.90625 Q15.5859375 -2.84375 15.5859375 -5.65625 Q15.5859375 -8.484375 14.9296875 -9.4140625 Q14.2734375 -10.34375 13.2890625 -10.34375 Q12.3203125 -10.34375 11.7421875 -9.515625 Q11.0078125 -8.46875 11.0078125 -5.65625 Z"/></g></g><path d=" M330.5 252.27083333333331 L354.9635416666667 252.27083333333331 L354.9635416666667 275.2708333333333 L330.5 275.2708333333333 L330.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,605.7708333333333,-55.22916666666663)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M348.5 252.27083333333331 L372.9635416666667 252.27083333333331 L372.9635416666667 275.2708333333333 L348.5 275.2708333333333 L348.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,623.7708333333333,-73.22916666666663)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(0.0,1.0,-1.0,-0.0,352.4999898274739,277.937489827474)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.765625 -9.953125 L0.765625 -11.3125 L8.171875 -11.3125 L8.171875 -10.21875 Q7.078125 -9.046875 6.0078125 -7.1171875 Q4.9375 -5.1875 4.34375 -3.15625 Q3.921875 -1.71875 3.8125 0.0 L2.359375 0.0 Q2.390625 -1.359375 2.8984375 -3.2734375 Q3.40625 -5.1875 4.3515625 -6.9609375 Q5.296875 -8.734375 6.375 -9.953125 L0.765625 -9.953125 Z"/><path d=" M9.5703125 -5.65625 Q9.5703125 -7.6875 9.984375 -8.921875 Q10.3984375 -10.15625 11.2265625 -10.828125 Q12.0546875 -11.5 13.3046875 -11.5 Q14.2265625 -11.5 14.921875 -11.1328125 Q15.6171875 -10.765625 16.0703125 -10.0625 Q16.5234375 -9.359375 16.78125 -8.359375 Q17.0390625 -7.359375 17.0390625 -5.65625 Q17.0390625 -3.640625 16.625 -2.3984375 Q16.2109375 -1.15625 15.3828125 -0.4765625 Q14.5546875 0.203125 13.3046875 0.203125 Q11.6484375 0.203125 10.6953125 -1.0 Q9.5703125 -2.421875 9.5703125 -5.65625 Z M11.0078125 -5.65625 Q11.0078125 -2.828125 11.671875 -1.8984375 Q12.3359375 -0.96875 13.3046875 -0.96875 Q14.2734375 -0.96875 14.9296875 -1.90625 Q15.5859375 -2.84375 15.5859375 -5.65625 Q15.5859375 -8.484375 14.9296875 -9.4140625 Q14.2734375 -10.34375 13.2890625 -10.34375 Q12.3203125 -10.34375 11.7421875 -9.515625 Q11.0078125 -8.46875 11.0078125 -5.65625 Z"/></g></g><path d=" M348.5 252.27083333333331 L372.9635416666667 252.27083333333331 L372.9635416666667 275.2708333333333 L348.5 275.2708333333333 L348.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,623.7708333333333,-73.22916666666663)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M366.5 252.27083333333331 L390.9635416666667 252.27083333333331 L390.9635416666667 275.2708333333333 L366.5 275.2708333333333 L366.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,641.7708333333333,-91.22916666666663)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(0.0,1.0,-1.0,-0.0,370.4999898274739,277.937489827474)" style="fill-opacity:1.0;fill:#000000;"><path d=" M2.828125 -6.21875 Q1.953125 -6.53125 1.53125 -7.125 Q1.109375 -7.71875 1.109375 -8.546875 Q1.109375 -9.796875 2.0078125 -10.6484375 Q2.90625 -11.5 4.40625 -11.5 Q5.90625 -11.5 6.8203125 -10.6328125 Q7.734375 -9.765625 7.734375 -8.515625 Q7.734375 -7.71875 7.3125 -7.125 Q6.890625 -6.53125 6.046875 -6.21875 Q7.09375 -5.875 7.6484375 -5.109375 Q8.203125 -4.34375 8.203125 -3.28125 Q8.203125 -1.8125 7.1640625 -0.8046875 Q6.125 0.203125 4.421875 0.203125 Q2.734375 0.203125 1.6953125 -0.8046875 Q0.65625 -1.8125 0.65625 -3.3125 Q0.65625 -4.4375 1.21875 -5.1875 Q1.78125 -5.9375 2.828125 -6.21875 Z M2.546875 -8.59375 Q2.546875 -7.78125 3.0703125 -7.265625 Q3.59375 -6.75 4.4375 -6.75 Q5.25 -6.75 5.765625 -7.265625 Q6.28125 -7.78125 6.28125 -8.515625 Q6.28125 -9.296875 5.75 -9.8203125 Q5.21875 -10.34375 4.421875 -10.34375 Q3.609375 -10.34375 3.078125 -9.828125 Q2.546875 -9.3125 2.546875 -8.59375 Z M2.09375 -3.3125 Q2.09375 -2.703125 2.3828125 -2.140625 Q2.671875 -1.578125 3.234375 -1.2734375 Q3.796875 -0.96875 4.4375 -0.96875 Q5.453125 -0.96875 6.109375 -1.6171875 Q6.765625 -2.265625 6.765625 -3.265625 Q6.765625 -4.28125 6.0859375 -4.9453125 Q5.40625 -5.609375 4.390625 -5.609375 Q3.40625 -5.609375 2.75 -4.953125 Q2.09375 -4.296875 2.09375 -3.3125 Z"/><path d=" M9.5703125 -5.65625 Q9.5703125 -7.6875 9.984375 -8.921875 Q10.3984375 -10.15625 11.2265625 -10.828125 Q12.0546875 -11.5 13.3046875 -11.5 Q14.2265625 -11.5 14.921875 -11.1328125 Q15.6171875 -10.765625 16.0703125 -10.0625 Q16.5234375 -9.359375 16.78125 -8.359375 Q17.0390625 -7.359375 17.0390625 -5.65625 Q17.0390625 -3.640625 16.625 -2.3984375 Q16.2109375 -1.15625 15.3828125 -0.4765625 Q14.5546875 0.203125 13.3046875 0.203125 Q11.6484375 0.203125 10.6953125 -1.0 Q9.5703125 -2.421875 9.5703125 -5.65625 Z M11.0078125 -5.65625 Q11.0078125 -2.828125 11.671875 -1.8984375 Q12.3359375 -0.96875 13.3046875 -0.96875 Q14.2734375 -0.96875 14.9296875 -1.90625 Q15.5859375 -2.84375 15.5859375 -5.65625 Q15.5859375 -8.484375 14.9296875 -9.4140625 Q14.2734375 -10.34375 13.2890625 -10.34375 Q12.3203125 -10.34375 11.7421875 -9.515625 Q11.0078125 -8.46875 11.0078125 -5.65625 Z"/></g></g><path d=" M366.5 252.27083333333331 L390.9635416666667 252.27083333333331 L390.9635416666667 275.2708333333333 L366.5 275.2708333333333 L366.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,641.7708333333333,-91.22916666666663)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M384.5 252.27083333333331 L408.9635416666667 252.27083333333331 L408.9635416666667 275.2708333333333 L384.5 275.2708333333333 L384.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,659.7708333333333,-109.22916666666663)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(0.0,1.0,-1.0,-0.0,388.4999898274739,277.937489827474)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.875 -2.65625 L2.234375 -2.78125 Q2.40625 -1.828125 2.890625 -1.3984375 Q3.375 -0.96875 4.125 -0.96875 Q4.78125 -0.96875 5.265625 -1.265625 Q5.75 -1.5625 6.0625 -2.0546875 Q6.375 -2.546875 6.5859375 -3.390625 Q6.796875 -4.234375 6.796875 -5.109375 Q6.796875 -5.203125 6.796875 -5.390625 Q6.375 -4.71875 5.640625 -4.3046875 Q4.90625 -3.890625 4.0625 -3.890625 Q2.640625 -3.890625 1.65625 -4.921875 Q0.671875 -5.953125 0.671875 -7.640625 Q0.671875 -9.375 1.6953125 -10.4375 Q2.71875 -11.5 4.265625 -11.5 Q5.390625 -11.5 6.3125 -10.8984375 Q7.234375 -10.296875 7.71875 -9.1875 Q8.203125 -8.078125 8.203125 -5.96875 Q8.203125 -3.765625 7.7265625 -2.46875 Q7.25 -1.171875 6.3046875 -0.484375 Q5.359375 0.203125 4.09375 0.203125 Q2.75 0.203125 1.8984375 -0.546875 Q1.046875 -1.296875 0.875 -2.65625 Z M6.640625 -7.703125 Q6.640625 -8.921875 5.9921875 -9.6328125 Q5.34375 -10.34375 4.4375 -10.34375 Q3.5 -10.34375 2.8046875 -9.578125 Q2.109375 -8.8125 2.109375 -7.59375 Q2.109375 -6.5 2.7734375 -5.8125 Q3.4375 -5.125 4.40625 -5.125 Q5.375 -5.125 6.0078125 -5.8125 Q6.640625 -6.5 6.640625 -7.703125 Z"/><path d=" M9.5703125 -5.65625 Q9.5703125 -7.6875 9.984375 -8.921875 Q10.3984375 -10.15625 11.2265625 -10.828125 Q12.0546875 -11.5 13.3046875 -11.5 Q14.2265625 -11.5 14.921875 -11.1328125 Q15.6171875 -10.765625 16.0703125 -10.0625 Q16.5234375 -9.359375 16.78125 -8.359375 Q17.0390625 -7.359375 17.0390625 -5.65625 Q17.0390625 -3.640625 16.625 -2.3984375 Q16.2109375 -1.15625 15.3828125 -0.4765625 Q14.5546875 0.203125 13.3046875 0.203125 Q11.6484375 0.203125 10.6953125 -1.0 Q9.5703125 -2.421875 9.5703125 -5.65625 Z M11.0078125 -5.65625 Q11.0078125 -2.828125 11.671875 -1.8984375 Q12.3359375 -0.96875 13.3046875 -0.96875 Q14.2734375 -0.96875 14.9296875 -1.90625 Q15.5859375 -2.84375 15.5859375 -5.65625 Q15.5859375 -8.484375 14.9296875 -9.4140625 Q14.2734375 -10.34375 13.2890625 -10.34375 Q12.3203125 -10.34375 11.7421875 -9.515625 Q11.0078125 -8.46875 11.0078125 -5.65625 Z"/></g></g><path d=" M384.5 252.27083333333331 L408.9635416666667 252.27083333333331 L408.9635416666667 275.2708333333333 L384.5 275.2708333333333 L384.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,659.7708333333333,-109.22916666666663)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M402.5 252.27083333333331 L435.8619791666667 252.27083333333331 L435.8619791666667 275.2708333333333 L402.5 275.2708333333333 L402.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,677.7708333333333,-127.22916666666663)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(0.0,1.0,-1.0,-0.0,406.4999898274739,277.937489827474)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.96875 0.0 L4.5625 0.0 L4.5625 -8.96875 Q4.046875 -8.484375 3.2265625 -8.0 Q2.40625 -7.515625 1.75 -7.265625 L1.75 -8.625 Q2.921875 -9.1875 3.8046875 -9.9765625 Q4.6875 -10.765625 5.0625 -11.5 L5.96875 -11.5 L5.96875 0.0 Z"/><path d=" M9.5703125 -5.65625 Q9.5703125 -7.6875 9.984375 -8.921875 Q10.3984375 -10.15625 11.2265625 -10.828125 Q12.0546875 -11.5 13.3046875 -11.5 Q14.2265625 -11.5 14.921875 -11.1328125 Q15.6171875 -10.765625 16.0703125 -10.0625 Q16.5234375 -9.359375 16.78125 -8.359375 Q17.0390625 -7.359375 17.0390625 -5.65625 Q17.0390625 -3.640625 16.625 -2.3984375 Q16.2109375 -1.15625 15.3828125 -0.4765625 Q14.5546875 0.203125 13.3046875 0.203125 Q11.6484375 0.203125 10.6953125 -1.0 Q9.5703125 -2.421875 9.5703125 -5.65625 Z M11.0078125 -5.65625 Q11.0078125 -2.828125 11.671875 -1.8984375 Q12.3359375 -0.96875 13.3046875 -0.96875 Q14.2734375 -0.96875 14.9296875 -1.90625 Q15.5859375 -2.84375 15.5859375 -5.65625 Q15.5859375 -8.484375 14.9296875 -9.4140625 Q14.2734375 -10.34375 13.2890625 -10.34375 Q12.3203125 -10.34375 11.7421875 -9.515625 Q11.0078125 -8.46875 11.0078125 -5.65625 Z"/><path d=" M18.46875 -5.65625 Q18.46875 -7.6875 18.8828125 -8.921875 Q19.296875 -10.15625 20.125 -10.828125 Q20.953125 -11.5 22.203125 -11.5 Q23.125 -11.5 23.8203125 -11.1328125 Q24.515625 -10.765625 24.96875 -10.0625 Q25.421875 -9.359375 25.6796875 -8.359375 Q25.9375 -7.359375 25.9375 -5.65625 Q25.9375 -3.640625 25.5234375 -2.3984375 Q25.109375 -1.15625 24.28125 -0.4765625 Q23.453125 0.203125 22.203125 0.203125 Q20.546875 0.203125 19.59375 -1.0 Q18.46875 -2.421875 18.46875 -5.65625 Z M19.90625 -5.65625 Q19.90625 -2.828125 20.5703125 -1.8984375 Q21.234375 -0.96875 22.203125 -0.96875 Q23.171875 -0.96875 23.828125 -1.90625 Q24.484375 -2.84375 24.484375 -5.65625 Q24.484375 -8.484375 23.828125 -9.4140625 Q23.171875 -10.34375 22.1875 -10.34375 Q21.21875 -10.34375 20.640625 -9.515625 Q19.90625 -8.46875 19.90625 -5.65625 Z"/></g></g><path d=" M402.5 252.27083333333331 L435.8619791666667 252.27083333333331 L435.8619791666667 275.2708333333333 L402.5 275.2708333333333 L402.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,677.7708333333333,-127.22916666666663)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M56.666666666666664 305.0 L171.09258015950522 305.0 L171.09258015950522 335.0 L56.666666666666664 335.0 L56.666666666666664 305.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,59.33333206176752,330.00000000000006)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.859375 0.0 L5.859375 -6.375 L0.0625 -15.03125 L2.484375 -15.03125 L5.4375 -10.5 Q6.265625 -9.234375 6.96875 -7.953125 Q7.65625 -9.140625 8.609375 -10.609375 L11.53125 -15.03125 L13.84375 -15.03125 L7.84375 -6.375 L7.84375 0.0 L5.859375 0.0 Z"/><path d=" M14.88714599609375 -4.515625 L14.88714599609375 -6.375 L20.55902099609375 -6.375 L20.55902099609375 -4.515625 L14.88714599609375 -4.515625 Z"/><path d=" M21.28125 0.0 L27.0625 -15.03125 L29.203125 -15.03125 L35.34375 0.0 L33.078125 0.0 L31.328125 -4.546875 L25.046875 -4.546875 L23.390625 0.0 L21.28125 0.0 Z M25.625 -6.171875 L30.71875 -6.171875 L29.140625 -10.34375 Q28.421875 -12.234375 28.078125 -13.453125 Q27.796875 -12.0 27.265625 -10.578125 L25.625 -6.171875 Z"/><path d=" M35.68402099609375 0.0 L39.65277099609375 -5.65625 L35.98089599609375 -10.890625 L38.29339599609375 -10.890625 L39.96527099609375 -8.34375 Q40.43402099609375 -7.609375 40.71527099609375 -7.109375 Q41.16839599609375 -7.796875 41.54339599609375 -8.3125 L43.38714599609375 -10.890625 L45.59027099609375 -10.890625 L41.82464599609375 -5.765625 L45.87152099609375 0.0 L43.60589599609375 0.0 L41.37152099609375 -3.390625 L40.77777099609375 -4.296875 L37.91839599609375 0.0 L35.68402099609375 0.0 Z"/><path d=" M47.57464599609375 -12.90625 L47.57464599609375 -15.03125 L49.41839599609375 -15.03125 L49.41839599609375 -12.90625 L47.57464599609375 -12.90625 Z M47.57464599609375 0.0 L47.57464599609375 -10.890625 L49.41839599609375 -10.890625 L49.41839599609375 0.0 L47.57464599609375 0.0 Z"/><path d=" M51.559600830078125 -3.25 L53.387725830078125 -3.53125 Q53.543975830078125 -2.4375 54.247100830078125 -1.8515625 Q54.950225830078125 -1.265625 56.215850830078125 -1.265625 Q57.481475830078125 -1.265625 58.098663330078125 -1.7890625 Q58.715850830078125 -2.3125 58.715850830078125 -3.0 Q58.715850830078125 -3.625 58.168975830078125 -3.984375 Q57.793975830078125 -4.234375 56.278350830078125 -4.609375 Q54.247100830078125 -5.125 53.465850830078125 -5.5 Q52.684600830078125 -5.875 52.278350830078125 -6.5390625 Q51.872100830078125 -7.203125 51.872100830078125 -8.0 Q51.872100830078125 -8.71875 52.208038330078125 -9.34375 Q52.543975830078125 -9.96875 53.106475830078125 -10.375 Q53.543975830078125 -10.6875 54.286163330078125 -10.9140625 Q55.028350830078125 -11.140625 55.887725830078125 -11.140625 Q57.168975830078125 -11.140625 58.137725830078125 -10.765625 Q59.106475830078125 -10.390625 59.567413330078125 -9.765625 Q60.028350830078125 -9.140625 60.200225830078125 -8.078125 L58.387725830078125 -7.828125 Q58.278350830078125 -8.671875 57.684600830078125 -9.1484375 Q57.090850830078125 -9.625 56.012725830078125 -9.625 Q54.747100830078125 -9.625 54.200225830078125 -9.203125 Q53.653350830078125 -8.78125 53.653350830078125 -8.21875 Q53.653350830078125 -7.859375 53.887725830078125 -7.5625 Q54.106475830078125 -7.265625 54.590850830078125 -7.078125 Q54.872100830078125 -6.96875 56.215850830078125 -6.609375 Q58.184600830078125 -6.078125 58.958038330078125 -5.75 Q59.731475830078125 -5.421875 60.168975830078125 -4.78125 Q60.606475830078125 -4.140625 60.606475830078125 -3.203125 Q60.606475830078125 -2.28125 60.067413330078125 -1.4609375 Q59.528350830078125 -0.640625 58.512725830078125 -0.1953125 Q57.497100830078125 0.25 56.215850830078125 0.25 Q54.090850830078125 0.25 52.981475830078125 -0.6328125 Q51.872100830078125 -1.515625 51.559600830078125 -3.25 Z"/><path d=""/><path d=" M72.93402099609375 0.0 L72.93402099609375 -13.265625 L67.99652099609375 -13.265625 L67.99652099609375 -15.03125 L79.90277099609375 -15.03125 L79.90277099609375 -13.265625 L74.93402099609375 -13.265625 L74.93402099609375 0.0 L72.93402099609375 0.0 Z"/><path d=" M81.90567016601562 -12.90625 L81.90567016601562 -15.03125 L83.74942016601562 -15.03125 L83.74942016601562 -12.90625 L81.90567016601562 -12.90625 Z M81.90567016601562 0.0 L81.90567016601562 -10.890625 L83.74942016601562 -10.890625 L83.74942016601562 0.0 L81.90567016601562 0.0 Z"/><path d=" M90.671875 -1.65625 L90.9375 -0.015625 Q90.15625 0.140625 89.53125 0.140625 Q88.53125 0.140625 87.9765625 -0.1796875 Q87.421875 -0.5 87.1953125 -1.015625 Q86.96875 -1.53125 86.96875 -3.1875 L86.96875 -9.453125 L85.625 -9.453125 L85.625 -10.890625 L86.96875 -10.890625 L86.96875 -13.59375 L88.8125 -14.6875 L88.8125 -10.890625 L90.671875 -10.890625 L90.671875 -9.453125 L88.8125 -9.453125 L88.8125 -3.09375 Q88.8125 -2.296875 88.90625 -2.0703125 Q89.0 -1.84375 89.21875 -1.7109375 Q89.4375 -1.578125 89.859375 -1.578125 Q90.15625 -1.578125 90.671875 -1.65625 Z"/><path d=" M92.51504516601562 0.0 L92.51504516601562 -15.03125 L94.35879516601562 -15.03125 L94.35879516601562 0.0 L92.51504516601562 0.0 Z"/><path d=" M104.75 -3.5 L106.65625 -3.265625 Q106.203125 -1.59375 104.984375 -0.671875 Q103.765625 0.25 101.859375 0.25 Q99.46875 0.25 98.0703125 -1.2265625 Q96.671875 -2.703125 96.671875 -5.359375 Q96.671875 -8.09375 98.0859375 -9.6171875 Q99.5 -11.140625 101.765625 -11.140625 Q103.953125 -11.140625 105.3359375 -9.6484375 Q106.71875 -8.15625 106.71875 -5.46875 Q106.71875 -5.296875 106.703125 -4.96875 L98.578125 -4.96875 Q98.6875 -3.171875 99.6015625 -2.21875 Q100.515625 -1.265625 101.875 -1.265625 Q102.890625 -1.265625 103.609375 -1.8046875 Q104.328125 -2.34375 104.75 -3.5 Z M98.6875 -6.484375 L104.765625 -6.484375 Q104.640625 -7.859375 104.0625 -8.546875 Q103.1875 -9.625 101.78125 -9.625 Q100.515625 -9.625 99.6484375 -8.7734375 Q98.78125 -7.921875 98.6875 -6.484375 Z"/></g></g><path d=" M56.666666666666664 305.0 L171.09258015950522 305.0 L171.09258015950522 335.0 L56.666666666666664 335.0 L56.666666666666664 305.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M448.3971354166667 185.5 L470.3971354166667 185.5" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M454.0 190.0 L464.0 190.0 L464.0 180.0 L454.0 180.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M454.0 190.0 L464.0 190.0 L464.0 180.0 L454.0 180.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M474.3971354166667 174.0 L539.7591145833334 174.0 L539.7591145833334 197.0 L474.3971354166667 197.0 L474.3971354166667 174.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,477.0638122558593,193.00000000000006)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.71875 -3.6875 L2.15625 -3.8125 Q2.25 -2.953125 2.625 -2.3984375 Q3.0 -1.84375 3.78125 -1.5078125 Q4.5625 -1.171875 5.53125 -1.171875 Q6.40625 -1.171875 7.0703125 -1.4296875 Q7.734375 -1.6875 8.0546875 -2.1328125 Q8.375 -2.578125 8.375 -3.109375 Q8.375 -3.65625 8.0625 -4.0546875 Q7.75 -4.453125 7.03125 -4.734375 Q6.578125 -4.90625 5.0 -5.2890625 Q3.421875 -5.671875 2.78125 -6.0 Q1.96875 -6.4375 1.5625 -7.0703125 Q1.15625 -7.703125 1.15625 -8.5 Q1.15625 -9.359375 1.6484375 -10.1171875 Q2.140625 -10.875 3.0859375 -11.265625 Q4.03125 -11.65625 5.1875 -11.65625 Q6.46875 -11.65625 7.4375 -11.2421875 Q8.40625 -10.828125 8.9296875 -10.03125 Q9.453125 -9.234375 9.5 -8.234375 L8.046875 -8.125 Q7.921875 -9.203125 7.25 -9.7578125 Q6.578125 -10.3125 5.25 -10.3125 Q3.875 -10.3125 3.25 -9.8125 Q2.625 -9.3125 2.625 -8.59375 Q2.625 -7.984375 3.0625 -7.578125 Q3.5 -7.1875 5.3515625 -6.765625 Q7.203125 -6.34375 7.890625 -6.03125 Q8.890625 -5.578125 9.3671875 -4.8671875 Q9.84375 -4.15625 9.84375 -3.234375 Q9.84375 -2.328125 9.3203125 -1.515625 Q8.796875 -0.703125 7.8125 -0.25 Q6.828125 0.203125 5.609375 0.203125 Q4.046875 0.203125 3.0 -0.2578125 Q1.953125 -0.71875 1.3515625 -1.625 Q0.75 -2.53125 0.71875 -3.6875 Z"/><path d=" M17.40625 -2.671875 L18.859375 -2.5 Q18.515625 -1.21875 17.5859375 -0.515625 Q16.65625 0.1875 15.21875 0.1875 Q13.390625 0.1875 12.328125 -0.9375 Q11.265625 -2.0625 11.265625 -4.078125 Q11.265625 -6.171875 12.34375 -7.328125 Q13.421875 -8.484375 15.140625 -8.484375 Q16.796875 -8.484375 17.8515625 -7.3515625 Q18.90625 -6.21875 18.90625 -4.171875 Q18.90625 -4.046875 18.90625 -3.796875 L12.71875 -3.796875 Q12.796875 -2.421875 13.4921875 -1.6953125 Q14.1875 -0.96875 15.21875 -0.96875 Q16.0 -0.96875 16.546875 -1.375 Q17.09375 -1.78125 17.40625 -2.671875 Z M12.796875 -4.953125 L17.421875 -4.953125 Q17.328125 -6.0 16.890625 -6.515625 Q16.21875 -7.328125 15.15625 -7.328125 Q14.1875 -7.328125 13.5234375 -6.6796875 Q12.859375 -6.03125 12.796875 -4.953125 Z"/><path d=" M20.6171875 0.0 L20.6171875 -8.296875 L21.8828125 -8.296875 L21.8828125 -7.046875 Q22.3671875 -7.921875 22.7734375 -8.203125 Q23.1796875 -8.484375 23.6796875 -8.484375 Q24.3828125 -8.484375 25.1171875 -8.03125 L24.6328125 -6.734375 Q24.1171875 -7.03125 23.6015625 -7.03125 Q23.1484375 -7.03125 22.78125 -6.7578125 Q22.4140625 -6.484375 22.2578125 -5.984375 Q22.0234375 -5.234375 22.0234375 -4.34375 L22.0234375 0.0 L20.6171875 0.0 Z"/><path d=" M25.9609375 -9.84375 L25.9609375 -11.453125 L27.3671875 -11.453125 L27.3671875 -9.84375 L25.9609375 -9.84375 Z M25.9609375 0.0 L25.9609375 -8.296875 L27.3671875 -8.296875 L27.3671875 0.0 L25.9609375 0.0 Z"/><path d=" M35.1875 -2.671875 L36.640625 -2.5 Q36.296875 -1.21875 35.3671875 -0.515625 Q34.4375 0.1875 33.0 0.1875 Q31.171875 0.1875 30.109375 -0.9375 Q29.046875 -2.0625 29.046875 -4.078125 Q29.046875 -6.171875 30.125 -7.328125 Q31.203125 -8.484375 32.921875 -8.484375 Q34.578125 -8.484375 35.6328125 -7.3515625 Q36.6875 -6.21875 36.6875 -4.171875 Q36.6875 -4.046875 36.6875 -3.796875 L30.5 -3.796875 Q30.578125 -2.421875 31.2734375 -1.6953125 Q31.96875 -0.96875 33.0 -0.96875 Q33.78125 -0.96875 34.328125 -1.375 Q34.875 -1.78125 35.1875 -2.671875 Z M30.578125 -4.953125 L35.203125 -4.953125 Q35.109375 -6.0 34.671875 -6.515625 Q34.0 -7.328125 32.9375 -7.328125 Q31.96875 -7.328125 31.3046875 -6.6796875 Q30.640625 -6.03125 30.578125 -4.953125 Z"/><path d=" M37.8515625 -2.484375 L39.2421875 -2.703125 Q39.3515625 -1.859375 39.890625 -1.4140625 Q40.4296875 -0.96875 41.3828125 -0.96875 Q42.3515625 -0.96875 42.8203125 -1.3671875 Q43.2890625 -1.765625 43.2890625 -2.296875 Q43.2890625 -2.765625 42.8828125 -3.046875 Q42.5859375 -3.234375 41.4453125 -3.515625 Q39.8984375 -3.90625 39.296875 -4.1953125 Q38.6953125 -4.484375 38.390625 -4.984375 Q38.0859375 -5.484375 38.0859375 -6.09375 Q38.0859375 -6.65625 38.3359375 -7.125 Q38.5859375 -7.59375 39.0234375 -7.90625 Q39.3515625 -8.15625 39.921875 -8.3203125 Q40.4921875 -8.484375 41.1328125 -8.484375 Q42.1171875 -8.484375 42.8515625 -8.203125 Q43.5859375 -7.921875 43.9375 -7.4453125 Q44.2890625 -6.96875 44.4296875 -6.15625 L43.0546875 -5.96875 Q42.9609375 -6.609375 42.5078125 -6.96875 Q42.0546875 -7.328125 41.2421875 -7.328125 Q40.2734375 -7.328125 39.859375 -7.0078125 Q39.4453125 -6.6875 39.4453125 -6.265625 Q39.4453125 -5.984375 39.6171875 -5.765625 Q39.7890625 -5.546875 40.1484375 -5.390625 Q40.3671875 -5.3125 41.3984375 -5.03125 Q42.8828125 -4.640625 43.4765625 -4.3828125 Q44.0703125 -4.125 44.40625 -3.640625 Q44.7421875 -3.15625 44.7421875 -2.4375 Q44.7421875 -1.734375 44.328125 -1.1171875 Q43.9140625 -0.5 43.140625 -0.15625 Q42.3671875 0.1875 41.3984375 0.1875 Q39.7734375 0.1875 38.9296875 -0.484375 Q38.0859375 -1.15625 37.8515625 -2.484375 Z"/><path d=""/><path d=" M55.765625 0.0 L54.359375 0.0 L54.359375 -8.96875 Q53.84375 -8.484375 53.0234375 -8.0 Q52.203125 -7.515625 51.546875 -7.265625 L51.546875 -8.625 Q52.71875 -9.1875 53.6015625 -9.9765625 Q54.484375 -10.765625 54.859375 -11.5 L55.765625 -11.5 L55.765625 0.0 Z"/></g></g><path d=" M474.3971354166667 174.0 L539.7591145833334 174.0 L539.7591145833334 197.0 L474.3971354166667 197.0 L474.3971354166667 174.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/></g><g style="fill-opacity:0.01;fill:#FFFFFF;"/></svg> \ No newline at end of file
+]]></script><style type="text/css"><![CDATA[.tooltip.text{ text-anchor:left;font-size:12pt;fill:black;}.tooltip{fill:rgb(244,245,235)}]]></style><path d=" M0.0 0.0 L533.0 0.0 L533.0 333.0 L0.0 333.0 L0.0 0.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M4.0 4.0 L227.65104166666666 4.0 L227.65104166666666 49.0 L4.0 49.0 L4.0 4.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="32" style="fill-opacity:1.0;fill:#000000;" x="6.6666665" y="42.0">Line Chart Title</text><path d=" M4.0 4.0 L227.65104166666666 4.0 L227.65104166666666 49.0 L4.0 49.0 L4.0 4.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M70.0 46.0 L428.73046875 46.0 L428.73046875 250.27083333333331 L70.0 250.27083333333331 L70.0 46.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M56.0 263.0 L56.0 59.0 L70.0 46.0 L70.0 250.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M56.0 263.0 L56.0 59.0 L70.0 46.0 L70.0 250.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M56.0 59.0 L56.0 263.0 L70.0 250.0 L70.0 46.0 Z" style="fill-opacity:1.0;fill:#b2b2b2;"/><path d=" M56.0 59.0 L56.0 263.0 L70.0 250.0 L70.0 46.0 Z" style="fill-opacity:1.0;fill:#b2b2b2;"/><path d=" M56.0 263.0 L56.0 59.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M56.0 263.0 L415.0 263.0 L428.0 250.0 L70.0 250.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M56.0 263.0 L415.0 263.0 L428.0 250.0 L70.0 250.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M415.0 263.0 L56.0 263.0 L70.0 250.0 L428.0 250.0 Z" style="fill-opacity:1.0;fill:#b2b2b2;"/><path d=" M415.0 263.0 L56.0 263.0 L70.0 250.0 L428.0 250.0 Z" style="fill-opacity:1.0;fill:#b2b2b2;"/><path d=" M56.0 263.0 L415.0 263.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M50.0 262.60416666666663 L50.0 59.33333333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M45.0 262.0 L55.0 262.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M45.0 194.0 L55.0 194.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M45.0 127.0 L55.0 127.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M45.0 59.0 L55.0 59.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M7.0 29.33333333333333 L121.42591349283855 29.33333333333333 L121.42591349283855 59.33333333333333 L7.0 59.33333333333333 L7.0 29.33333333333333 Z" transform="matrix(0.0,1.0,-1.0,-0.0,66.33333333333333,52.33333333333333)" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="21" style="fill-opacity:1.0;fill:#000000;" transform="matrix(0.0,1.0,-1.0,-0.0,66.33333333333333,52.33333333333333)" x="9.666667" y="54.333332">X-Axis Title</text><path d=" M7.0 29.33333333333333 L121.42591349283855 29.33333333333333 L121.42591349283855 59.33333333333333 L7.0 59.33333333333333 L7.0 29.33333333333333 Z" transform="matrix(0.0,1.0,-1.0,-0.0,66.33333333333333,52.33333333333333)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M56.666666666666664 269.2708333333333 L414.3971354166667 269.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M56.0 264.2708333333333 L56.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M74.0 264.2708333333333 L74.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M92.0 264.2708333333333 L92.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M110.0 264.2708333333333 L110.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M128.0 264.2708333333333 L128.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M146.0 264.2708333333333 L146.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M163.0 264.2708333333333 L163.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M181.0 264.2708333333333 L181.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M199.0 264.2708333333333 L199.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M217.0 264.2708333333333 L217.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M235.0 264.2708333333333 L235.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M253.0 264.2708333333333 L253.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M271.0 264.2708333333333 L271.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M289.0 264.2708333333333 L289.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M307.0 264.2708333333333 L307.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M324.0 264.2708333333333 L324.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M342.0 264.2708333333333 L342.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M360.0 264.2708333333333 L360.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M378.0 264.2708333333333 L378.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M396.0 264.2708333333333 L396.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M414.0 264.2708333333333 L414.0 274.2708333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M56.666666666666664 305.0 L171.09258015950522 305.0 L171.09258015950522 335.0 L56.666666666666664 335.0 L56.666666666666664 305.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="21" style="fill-opacity:1.0;fill:#000000;" x="59.333332" y="330.0">Y-Axis Title</text><path d=" M56.666666666666664 305.0 L171.09258015950522 305.0 L171.09258015950522 335.0 L56.666666666666664 335.0 L56.666666666666664 305.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M414.0 229.0 L56.0 161.0 L70.0 147.0 L427.0 215.0 Z" style="fill-opacity:1.0;fill:#030303;"/><path d=" M56.0 161.0 L414.0 93.0 L427.0 79.0 L70.0 147.0 Z" style="fill-opacity:1.0;fill:#030303;"/><path d=" M414.0 229.0 L56.66666793823242 161.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M56.66666793823242 161.0 L414.0 93.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M409.0 234.0 L419.0 234.0 L419.0 224.0 L409.0 224.0 Z" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M409.0 234.0 L419.0 234.0 L419.0 224.0 L409.0 224.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M51.0 166.0 L61.0 166.0 L61.0 156.0 L51.0 156.0 Z" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M51.0 166.0 L61.0 166.0 L61.0 156.0 L51.0 156.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M409.0 98.0 L419.0 98.0 L419.0 88.0 L409.0 88.0 Z" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M409.0 98.0 L419.0 98.0 L419.0 88.0 L409.0 88.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M424.0 192.54557291666666 L452.9088541666667 192.54557291666666 L452.9088541666667 215.54557291666666 L424.0 215.54557291666666 L424.0 192.54557291666666 Z" transform="matrix(0.0,1.0,-1.0,-0.0,639.5455729166666,-208.45442708333334)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(0.0,1.0,-1.0,-0.0,639.5455729166666,-208.45442708333334)" x="426.66666" y="211.54558">5.0</text><path d=" M424.0 192.54557291666666 L452.9088541666667 192.54557291666666 L452.9088541666667 215.54557291666666 L424.0 215.54557291666666 L424.0 192.54557291666666 Z" transform="matrix(0.0,1.0,-1.0,-0.0,639.5455729166666,-208.45442708333334)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M66.66666793823242 121.88151041666666 L100.90364710489908 121.88151041666666 L100.90364710489908 144.88151041666666 L66.66666793823242 144.88151041666666 L66.66666793823242 121.88151041666666 Z" transform="matrix(0.0,1.0,-1.0,-0.0,211.54817835489908,78.21484247843424)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(0.0,1.0,-1.0,-0.0,211.54817835489908,78.21484247843424)" x="69.333336" y="140.88152">-4.0</text><path d=" M66.66666793823242 121.88151041666666 L100.90364710489908 121.88151041666666 L100.90364710489908 144.88151041666666 L66.66666793823242 144.88151041666666 L66.66666793823242 121.88151041666666 Z" transform="matrix(0.0,1.0,-1.0,-0.0,211.54817835489908,78.21484247843424)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M424.0 52.09635416666667 L461.8072916666667 52.09635416666667 L461.8072916666667 75.09635416666667 L424.0 75.09635416666667 L424.0 52.09635416666667 Z" transform="matrix(0.0,1.0,-1.0,-0.0,499.0963541666667,-348.9036458333333)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(0.0,1.0,-1.0,-0.0,499.0963541666667,-348.9036458333333)" x="426.66666" y="71.09635">12.0</text><path d=" M424.0 52.09635416666667 L461.8072916666667 52.09635416666667 L461.8072916666667 75.09635416666667 L424.0 75.09635416666667 L424.0 52.09635416666667 Z" transform="matrix(0.0,1.0,-1.0,-0.0,499.0963541666667,-348.9036458333333)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.0 196.45225694444443 L38.338541666666664 196.45225694444443 L38.338541666666664 219.45225694444443 L21.0 219.45225694444443 L21.0 196.45225694444443 Z" transform="matrix(0.0,1.0,-1.0,-0.0,240.45225694444443,198.45225694444446)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(0.0,1.0,-1.0,-0.0,240.45225694444443,198.45225694444446)" x="23.666666" y="215.45226">A</text><path d=" M21.0 196.45225694444443 L38.338541666666664 196.45225694444443 L38.338541666666664 219.45225694444443 L21.0 219.45225694444443 L21.0 196.45225694444443 Z" transform="matrix(0.0,1.0,-1.0,-0.0,240.45225694444443,198.45225694444446)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.0 128.45225694444443 L38.338541666666664 128.45225694444443 L38.338541666666664 151.45225694444443 L21.0 151.45225694444443 L21.0 128.45225694444443 Z" transform="matrix(0.0,1.0,-1.0,-0.0,172.45225694444443,130.45225694444446)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(0.0,1.0,-1.0,-0.0,172.45225694444443,130.45225694444446)" x="23.666666" y="147.45226">B</text><path d=" M21.0 128.45225694444443 L38.338541666666664 128.45225694444443 L38.338541666666664 151.45225694444443 L21.0 151.45225694444443 L21.0 128.45225694444443 Z" transform="matrix(0.0,1.0,-1.0,-0.0,172.45225694444443,130.45225694444446)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M21.0 61.01085069444444 L39.221354166666664 61.01085069444444 L39.221354166666664 84.01085069444444 L21.0 84.01085069444444 L21.0 61.01085069444444 Z" transform="matrix(0.0,1.0,-1.0,-0.0,105.01085069444444,63.01085069444447)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(0.0,1.0,-1.0,-0.0,105.01085069444444,63.01085069444447)" x="23.666666" y="80.01085">C</text><path d=" M21.0 61.01085069444444 L39.221354166666664 61.01085069444444 L39.221354166666664 84.01085069444444 L21.0 84.01085069444444 L21.0 61.01085069444444 Z" transform="matrix(0.0,1.0,-1.0,-0.0,105.01085069444444,63.01085069444447)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M45.0 59.0 L55.0 59.0" transform="matrix(1.0,0.0,0.0,1.0,0.0,2.8421709430404007E-14)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M7.0 29.33333333333333 L121.42591349283855 29.33333333333333 L121.42591349283855 59.33333333333333 L7.0 59.33333333333333 L7.0 29.33333333333333 Z" transform="matrix(0.0,1.0,-1.0,-0.0,66.33333333333333,52.33333333333336)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="21" style="fill-opacity:1.0;fill:#000000;" transform="matrix(0.0,1.0,-1.0,-0.0,66.33333333333333,52.33333333333336)" x="9.666667" y="54.333332">X-Axis Title</text><path d=" M7.0 29.33333333333333 L121.42591349283855 29.33333333333333 L121.42591349283855 59.33333333333333 L7.0 59.33333333333333 L7.0 29.33333333333333 Z" transform="matrix(0.0,1.0,-1.0,-0.0,66.33333333333333,52.33333333333336)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M44.5 252.27083333333331 L83.19010416666666 252.27083333333331 L83.19010416666666 275.2708333333333 L44.5 275.2708333333333 L44.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,319.7708333333333,230.77083333333337)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(0.0,1.0,-1.0,-0.0,319.7708333333333,230.77083333333337)" x="47.166668" y="271.27084">-100</text><path d=" M44.5 252.27083333333331 L83.19010416666666 252.27083333333331 L83.19010416666666 275.2708333333333 L44.5 275.2708333333333 L44.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,319.7708333333333,230.77083333333337)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M62.5 252.27083333333331 L92.29166666666666 252.27083333333331 L92.29166666666666 275.2708333333333 L62.5 275.2708333333333 L62.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,337.7708333333333,212.77083333333337)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(0.0,1.0,-1.0,-0.0,337.7708333333333,212.77083333333337)" x="65.166664" y="271.27084">-90</text><path d=" M62.5 252.27083333333331 L92.29166666666666 252.27083333333331 L92.29166666666666 275.2708333333333 L62.5 275.2708333333333 L62.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,337.7708333333333,212.77083333333337)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M80.5 252.27083333333331 L110.29166666666666 252.27083333333331 L110.29166666666666 275.2708333333333 L80.5 275.2708333333333 L80.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,355.7708333333333,194.77083333333337)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(0.0,1.0,-1.0,-0.0,355.7708333333333,194.77083333333337)" x="83.166664" y="271.27084">-80</text><path d=" M80.5 252.27083333333331 L110.29166666666666 252.27083333333331 L110.29166666666666 275.2708333333333 L80.5 275.2708333333333 L80.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,355.7708333333333,194.77083333333337)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M98.5 252.27083333333331 L128.29166666666666 252.27083333333331 L128.29166666666666 275.2708333333333 L98.5 275.2708333333333 L98.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,373.7708333333333,176.77083333333337)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(0.0,1.0,-1.0,-0.0,373.7708333333333,176.77083333333337)" x="101.166664" y="271.27084">-70</text><path d=" M98.5 252.27083333333331 L128.29166666666666 252.27083333333331 L128.29166666666666 275.2708333333333 L98.5 275.2708333333333 L98.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,373.7708333333333,176.77083333333337)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M116.5 252.27083333333331 L146.29166666666666 252.27083333333331 L146.29166666666666 275.2708333333333 L116.5 275.2708333333333 L116.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,391.7708333333333,158.77083333333337)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(0.0,1.0,-1.0,-0.0,391.7708333333333,158.77083333333337)" x="119.166664" y="271.27084">-60</text><path d=" M116.5 252.27083333333331 L146.29166666666666 252.27083333333331 L146.29166666666666 275.2708333333333 L116.5 275.2708333333333 L116.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,391.7708333333333,158.77083333333337)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M134.5 252.27083333333331 L164.29166666666666 252.27083333333331 L164.29166666666666 275.2708333333333 L134.5 275.2708333333333 L134.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,409.7708333333333,140.77083333333337)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(0.0,1.0,-1.0,-0.0,409.7708333333333,140.77083333333337)" x="137.16667" y="271.27084">-50</text><path d=" M134.5 252.27083333333331 L164.29166666666666 252.27083333333331 L164.29166666666666 275.2708333333333 L134.5 275.2708333333333 L134.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,409.7708333333333,140.77083333333337)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M151.5 252.27083333333331 L181.29166666666666 252.27083333333331 L181.29166666666666 275.2708333333333 L151.5 275.2708333333333 L151.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,426.7708333333333,123.77083333333337)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(0.0,1.0,-1.0,-0.0,426.7708333333333,123.77083333333337)" x="154.16667" y="271.27084">-40</text><path d=" M151.5 252.27083333333331 L181.29166666666666 252.27083333333331 L181.29166666666666 275.2708333333333 L151.5 275.2708333333333 L151.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,426.7708333333333,123.77083333333337)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M169.5 252.27083333333331 L199.29166666666666 252.27083333333331 L199.29166666666666 275.2708333333333 L169.5 275.2708333333333 L169.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,444.7708333333333,105.77083333333337)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(0.0,1.0,-1.0,-0.0,444.7708333333333,105.77083333333337)" x="172.16667" y="271.27084">-30</text><path d=" M169.5 252.27083333333331 L199.29166666666666 252.27083333333331 L199.29166666666666 275.2708333333333 L169.5 275.2708333333333 L169.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,444.7708333333333,105.77083333333337)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M187.5 252.27083333333331 L217.29166666666666 252.27083333333331 L217.29166666666666 275.2708333333333 L187.5 275.2708333333333 L187.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,462.7708333333333,87.77083333333337)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(0.0,1.0,-1.0,-0.0,462.7708333333333,87.77083333333337)" x="190.16667" y="271.27084">-20</text><path d=" M187.5 252.27083333333331 L217.29166666666666 252.27083333333331 L217.29166666666666 275.2708333333333 L187.5 275.2708333333333 L187.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,462.7708333333333,87.77083333333337)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M205.5 252.27083333333331 L235.29166666666666 252.27083333333331 L235.29166666666666 275.2708333333333 L205.5 275.2708333333333 L205.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,480.7708333333333,69.77083333333337)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(0.0,1.0,-1.0,-0.0,480.7708333333333,69.77083333333337)" x="208.16667" y="271.27084">-10</text><path d=" M205.5 252.27083333333331 L235.29166666666666 252.27083333333331 L235.29166666666666 275.2708333333333 L205.5 275.2708333333333 L205.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,480.7708333333333,69.77083333333337)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M223.5 252.27083333333331 L239.06510416666666 252.27083333333331 L239.06510416666666 275.2708333333333 L223.5 275.2708333333333 L223.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,498.7708333333333,51.77083333333337)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(0.0,1.0,-1.0,-0.0,498.7708333333333,51.77083333333337)" x="226.16667" y="271.27084">0</text><path d=" M223.5 252.27083333333331 L239.06510416666666 252.27083333333331 L239.06510416666666 275.2708333333333 L223.5 275.2708333333333 L223.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,498.7708333333333,51.77083333333337)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M241.5 252.27083333333331 L265.9635416666667 252.27083333333331 L265.9635416666667 275.2708333333333 L241.5 275.2708333333333 L241.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,516.7708333333333,33.77083333333337)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(0.0,1.0,-1.0,-0.0,516.7708333333333,33.77083333333337)" x="244.16667" y="271.27084">10</text><path d=" M241.5 252.27083333333331 L265.9635416666667 252.27083333333331 L265.9635416666667 275.2708333333333 L241.5 275.2708333333333 L241.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,516.7708333333333,33.77083333333337)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M259.5 252.27083333333331 L283.9635416666667 252.27083333333331 L283.9635416666667 275.2708333333333 L259.5 275.2708333333333 L259.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,534.7708333333333,15.770833333333371)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(0.0,1.0,-1.0,-0.0,534.7708333333333,15.770833333333371)" x="262.16666" y="271.27084">20</text><path d=" M259.5 252.27083333333331 L283.9635416666667 252.27083333333331 L283.9635416666667 275.2708333333333 L259.5 275.2708333333333 L259.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,534.7708333333333,15.770833333333371)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M277.5 252.27083333333331 L301.9635416666667 252.27083333333331 L301.9635416666667 275.2708333333333 L277.5 275.2708333333333 L277.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,552.7708333333333,-2.2291666666666288)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(0.0,1.0,-1.0,-0.0,552.7708333333333,-2.2291666666666288)" x="280.16666" y="271.27084">30</text><path d=" M277.5 252.27083333333331 L301.9635416666667 252.27083333333331 L301.9635416666667 275.2708333333333 L277.5 275.2708333333333 L277.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,552.7708333333333,-2.2291666666666288)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M295.5 252.27083333333331 L319.9635416666667 252.27083333333331 L319.9635416666667 275.2708333333333 L295.5 275.2708333333333 L295.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,570.7708333333333,-20.22916666666663)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(0.0,1.0,-1.0,-0.0,570.7708333333333,-20.22916666666663)" x="298.16666" y="271.27084">40</text><path d=" M295.5 252.27083333333331 L319.9635416666667 252.27083333333331 L319.9635416666667 275.2708333333333 L295.5 275.2708333333333 L295.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,570.7708333333333,-20.22916666666663)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M312.5 252.27083333333331 L336.9635416666667 252.27083333333331 L336.9635416666667 275.2708333333333 L312.5 275.2708333333333 L312.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,587.7708333333333,-37.22916666666663)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(0.0,1.0,-1.0,-0.0,587.7708333333333,-37.22916666666663)" x="315.16666" y="271.27084">50</text><path d=" M312.5 252.27083333333331 L336.9635416666667 252.27083333333331 L336.9635416666667 275.2708333333333 L312.5 275.2708333333333 L312.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,587.7708333333333,-37.22916666666663)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M330.5 252.27083333333331 L354.9635416666667 252.27083333333331 L354.9635416666667 275.2708333333333 L330.5 275.2708333333333 L330.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,605.7708333333333,-55.22916666666663)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(0.0,1.0,-1.0,-0.0,605.7708333333333,-55.22916666666663)" x="333.16666" y="271.27084">60</text><path d=" M330.5 252.27083333333331 L354.9635416666667 252.27083333333331 L354.9635416666667 275.2708333333333 L330.5 275.2708333333333 L330.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,605.7708333333333,-55.22916666666663)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M348.5 252.27083333333331 L372.9635416666667 252.27083333333331 L372.9635416666667 275.2708333333333 L348.5 275.2708333333333 L348.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,623.7708333333333,-73.22916666666663)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(0.0,1.0,-1.0,-0.0,623.7708333333333,-73.22916666666663)" x="351.16666" y="271.27084">70</text><path d=" M348.5 252.27083333333331 L372.9635416666667 252.27083333333331 L372.9635416666667 275.2708333333333 L348.5 275.2708333333333 L348.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,623.7708333333333,-73.22916666666663)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M366.5 252.27083333333331 L390.9635416666667 252.27083333333331 L390.9635416666667 275.2708333333333 L366.5 275.2708333333333 L366.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,641.7708333333333,-91.22916666666663)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(0.0,1.0,-1.0,-0.0,641.7708333333333,-91.22916666666663)" x="369.16666" y="271.27084">80</text><path d=" M366.5 252.27083333333331 L390.9635416666667 252.27083333333331 L390.9635416666667 275.2708333333333 L366.5 275.2708333333333 L366.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,641.7708333333333,-91.22916666666663)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M384.5 252.27083333333331 L408.9635416666667 252.27083333333331 L408.9635416666667 275.2708333333333 L384.5 275.2708333333333 L384.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,659.7708333333333,-109.22916666666663)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(0.0,1.0,-1.0,-0.0,659.7708333333333,-109.22916666666663)" x="387.16666" y="271.27084">90</text><path d=" M384.5 252.27083333333331 L408.9635416666667 252.27083333333331 L408.9635416666667 275.2708333333333 L384.5 275.2708333333333 L384.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,659.7708333333333,-109.22916666666663)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M402.5 252.27083333333331 L435.8619791666667 252.27083333333331 L435.8619791666667 275.2708333333333 L402.5 275.2708333333333 L402.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,677.7708333333333,-127.22916666666663)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(0.0,1.0,-1.0,-0.0,677.7708333333333,-127.22916666666663)" x="405.16666" y="271.27084">100</text><path d=" M402.5 252.27083333333331 L435.8619791666667 252.27083333333331 L435.8619791666667 275.2708333333333 L402.5 275.2708333333333 L402.5 252.27083333333331 Z" transform="matrix(0.0,1.0,-1.0,-0.0,677.7708333333333,-127.22916666666663)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M56.666666666666664 305.0 L171.09258015950522 305.0 L171.09258015950522 335.0 L56.666666666666664 335.0 L56.666666666666664 305.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="21" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" x="59.333332" y="330.0">Y-Axis Title</text><path d=" M56.666666666666664 305.0 L171.09258015950522 305.0 L171.09258015950522 335.0 L56.666666666666664 335.0 L56.666666666666664 305.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M448.3971354166667 185.5 L470.3971354166667 185.5" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M454.0 190.0 L464.0 190.0 L464.0 180.0 L454.0 180.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M454.0 190.0 L464.0 190.0 L464.0 180.0 L454.0 180.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M474.3971354166667 174.0 L539.7591145833334 174.0 L539.7591145833334 197.0 L474.3971354166667 197.0 L474.3971354166667 174.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="fill-opacity:1.0;fill:#0080ff;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" x="477.0638" y="193.0">Series 1</text><path d=" M474.3971354166667 174.0 L539.7591145833334 174.0 L539.7591145833334 197.0 L474.3971354166667 197.0 L474.3971354166667 174.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-5.6843418860808015E-14,5.6843418860808015E-14)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/></g><g id="hotSpots" style="fill-opacity:0.01;fill:#FFFFFF;"/></svg> \ No newline at end of file
diff --git a/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/3dpie.svg b/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/3dpie.svg
index df7b608..3ad3d44 100644
--- a/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/3dpie.svg
+++ b/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/3dpie.svg
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="533.0" height="333.0"><g style="fill:none;stroke:none"><defs/><script><![CDATA[function BuildHelper(tag, attrList, text) {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="533.0" height="333.0"><g id="outerG" style="fill:none;stroke:none"><defs/><script><![CDATA[function BuildHelper(tag, attrList, text) {
this.tag = tag;
this.attrList = attrList;
this.text = text;
@@ -71,42 +71,82 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
}
}
- TM.show = function TooltiplManager_showTooltip(evt){
- var text = TM.getText(TM.getTitleElement(evt));
- x = evt.clientX;
- y = evt.clientY;
- if (typeof this.group == 'undefined'){
- this.height = 15;
- this.xPadding = 5;
- this.yPadding = -20;
- var mainSvg = evt.target.ownerDocument.documentElement;
- var off = mainSvg.currentTranslate;
- var scl = mainSvg.currentScale;
- this.group = new BuildHelper("g",
- {
- transform:"translate("+(((x+20))/scl)+","+(((y+20))/scl)+")"
- } );
- this.group.addToParent(mainSvg);
- this.rectangle = new BuildHelper("rect",
- {id:"test",
- x: 0,
- y: this.yPadding,
- height: this.height,
- classType: "tooltip"
- } );
- this.rectangle.addToParent(this.group.element);
- var textObj = new BuildHelper("text",
- {id:"tooltip",
- x: this.xPadding,
- y: (this.height/2+4+this.yPadding),
- classType: "tooltip text"
- },text);
- textObj.addToParent(this.group.element);
- var itemlength = textObj.element.getComputedTextLength();
- this.rectangle.element.setAttributeNS(null, "width", (itemlength+2*this.xPadding));
- }
- }
-
+ TM.show = function TooltiplManager_showTooltip(evt){
+ var text = TM.getText(TM.getTitleElement(evt));
+ x = evt.clientX;
+ y = evt.clientY;
+ update = true;
+ if (this.oldX != 'undefined'){
+ diffX = (x - this.oldX);
+ if (diffX < 0) diffX= diffX*(-1);
+ diffY = (y - this.oldY);
+ if (diffY < 0) diffY= diffY*(-1);
+ if ((diffY > 5) || (diffX > 5))
+ update = true;
+ }
+ if (update)
+ TM.remove();
+ if (typeof this.group == 'undefined'){
+ this.oldX = x;
+ this.oldY = y;
+ this.height = 15;
+ this.xPadding = 5;
+ this.yPadding = 20;
+ var mainSvg = evt.target.ownerDocument.documentElement;
+ var off = mainSvg.currentTranslate;
+ var scl = mainSvg.currentScale;
+ var adjustedX = (x-off.x)/scl;
+ var adjustedY = (y-off.y)/scl;
+ this.group = new BuildHelper("g",
+ {
+ opacity:0.8,
+ display: "inline",
+ transform:"translate("+(adjustedX + (10/scl))+","+(adjustedY + (10/scl))+")"
+ } );
+ this.group.addToParent(mainSvg);
+ this.rectangle = new BuildHelper("rect",
+ {id:"test",
+ x: 0,
+ y: 5,
+ transform:"scale("+(1/scl)+","+(1/scl)+")",
+ rx: 2,
+ ry: 2,
+ stroke: "black",
+ height: this.height,
+ classType: "tooltip"
+ } );
+ this.rectangle.addToParent(this.group.element);
+ var textObj = new BuildHelper("text",
+ {id:"tooltip",
+ x: this.xPadding,
+ y: (this.yPadding),
+ transform:"scale("+(1/scl)+","+(1/scl)+")",
+ classType: "tooltip text"
+ });
+ textObj.addToParent(this.group.element);
+ TM.setContent(textObj, text);
+ var outline = textObj.element.getBBox();
+ this.rectangle.element.setAttributeNS(null, "width", (outline.width+2*this.xPadding));
+ this.rectangle.element.setAttributeNS(null, "height", (outline.height+6));
+ }
+ }
+ TM.setContent = function TooltipManager_setContent(textElement, text){
+ var multiLine = text.split(/\\n/);
+ for (var x=0; x<multiLine.length; x++){
+ if (x == 0){
+ textObj = new BuildHelper("tspan",
+ {x: 5
+ },multiLine[x]);
+ }
+ else{
+ textObj = new BuildHelper("tspan",
+ {x: 5,
+ dy:17
+ },multiLine[x]);
+ }
+ textObj.addToParent(textElement.element);
+ }
+ }
TM.getTitleElement = function TM_getTitleElement(evt){
var elem = evt.currentTarget;
@@ -126,15 +166,18 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
return childs.item(x).nodeValue;
return "";
}
- function toggleVisibility(evt, id, compList){
+ function toggleLabelsVisibility(evt, id, compList, labelList){
var mainSvg = evt.target.ownerDocument;
for (i = 0; i < compList.length; i=i+1){
var comp = mainSvg.getElementById(id+'_'+compList[i]);
+ if ( comp == null ) continue;
var styleStr = comp.getAttribute("style");
- rVisibleExp=/visibility:visible/g;
- rHiddenExp=/visibility:hidden/g;
+ rVisibleExp=/visibility:[ ]*visible/g;
+ rInheritExp=/visibility:[ ]*inherit/g;
+ rHiddenExp=/visibility:[ ]*hidden/g;
results = styleStr.search(rVisibleExp);
- if (results == -1){
+ inResults = styleStr.search(rInheritExp);
+ if ((results == -1) && (inResults == -1)){
results = styleStr.search(rHiddenExp);
if (results == -1)
styleStr = styleStr + "visibility:hidden;";
@@ -142,10 +185,74 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
styleStr = styleStr.replace(rHiddenExp,"visibility:visible");
}
else{
+ if (inResults == -1){
styleStr = styleStr.replace(rVisibleExp,"visibility:hidden");
+ }else{
+ styleStr = styleStr.replace(rInheritExp,"visibility:hidden");
+ }
}
comp.setAttributeNS(null, "style", styleStr);
}
+ }
+ function toggleVisibility(evt, id, compList, labelList){
+ var mainSvg = evt.target.ownerDocument;
+ var isHidden = true;
+ for (i = 0; i < compList.length; i=i+1){
+ var comp = mainSvg.getElementById(id+'_'+compList[i]);
+ if ( comp == null ) continue;
+ var styleStr = comp.getAttribute("style");
+ rVisibleExp=/visibility:[ ]*visible/g;
+ rHiddenExp=/visibility:[ ]*hidden/g;
+ results = styleStr.search(rVisibleExp);
+ if (results == -1){
+ results = styleStr.search(rHiddenExp);
+ if (results == -1)
+ styleStr = styleStr + "visibility:hidden;";
+ else{
+ styleStr = styleStr.replace(rHiddenExp,"visibility:visible");
+ isHidden = false;
+ }
+ }
+ else{
+ styleStr = styleStr.replace(rVisibleExp,"visibility:hidden");
+ }
+ comp.setAttributeNS(null, "style", styleStr);
+ }
+ if (labelList != null){
+ for (i = 0; i < labelList.length; i=i+1){
+ var comp = mainSvg.getElementById(id+'_'+labelList[i]+'_g');
+ var styleStr = comp.getAttribute("style");
+ if (isHidden){
+ styleStr = styleStr + "visibility:hidden;";
+ toggleLabelVisibility(evt, id+'_'+labelList[i], 'inherit');
+ }else{
+ styleStr = styleStr.replace(rHiddenExp,"visibility:visible");
+ }
+ comp.setAttributeNS(null, "style", styleStr);
+ }
+ }
+ }
+ function toggleLabelVisibility(evt, id, property){
+ var mainSvg = evt.target.ownerDocument;
+ var comp = mainSvg.getElementById(id);
+ var styleStr = comp.getAttribute("style");
+ rVisibleExp=/visibility:[ ]*visible/g;
+ rInheritExp=/visibility:[ ]*inherit/g;
+ rHiddenExp=/visibility:[ ]*hidden/g;
+ results = styleStr.search(rVisibleExp);
+ inResults = styleStr.search(rInheritExp);
+ if ((results == -1) && (inResults == -1)){
+ results = styleStr.search(rHiddenExp);
+ if (results == -1)
+ styleStr = styleStr + "visibility:"+property+";";
+ }
+ else{
+ if (inResults == -1)
+ styleStr = styleStr.replace(rVisibleExp,"visibility:"+property);
+ else
+ styleStr = styleStr.replace(rInheritExp,"visibility:"+property);
+ }
+ comp.setAttributeNS(null, "style", styleStr);
}
function toHex(val)
{
@@ -162,51 +269,104 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
}
var oldCompId = null;
var oldCompList = null;
+ var fillToColor = new Array();
+ var strokeToColor = new Array();
function highlight(evt, id, compList){
- highlightElement(evt, oldCompId, oldCompList);
+ highlightElement(evt, oldCompId, oldCompList, false);
if (id != oldCompId){
- highlightElement(evt, id, compList);
+ highlightElement(evt, id, compList, true);
oldCompId = id;
oldCompList = compList;
}
else{
oldCompId = null;
oldCompList = null;
+ fillToColor = new Array();
+ strokeToColor = new Array();
}
}
- function highlightElement(evt, id, compList){
+ function highlightElement(evt, id, compList, highlight){
if ((id == null) || (compList == null)) return;
var mainSvg = evt.target.ownerDocument;
for (i = 0; i < compList.length; i=i+1){
var comp = mainSvg.getElementById(id+'_'+compList[i]);
+ if ( comp == null ) continue;
var styleStr = comp.getAttribute("style");
fillIndex = styleStr.search("fill:");
if (fillIndex != -1){
- styleStr = getNewStyle(styleStr, fillIndex, "fill:");
+ styleStr = getNewStyle(styleStr, fillIndex, "fill:", highlight, fillToColor, compList[i]);
}
strokeIndex = styleStr.search("stroke:");
if (strokeIndex != -1){
- styleStr = getNewStyle(styleStr, strokeIndex, "stroke:");
+ styleStr = getNewStyle(styleStr, strokeIndex, "stroke:", highlight, strokeToColor, compList[i]);
}
comp.setAttributeNS(null, "style", styleStr);
}
}
- function getNewStyle(style, index, styleAttr){
+ function getNewStyle(style, index, styleAttr, highlight, lookUpTable, id){
color = style.substring(index+styleAttr.length, style.length );
rgbIndex = color.search("rgb");
if (rgbIndex == -1){
hexColor = color.substring(1, 7);
- hc = getXorColor(hexColor);
+ hc = getHighlight(hexColor, highlight, lookUpTable, id);
return style.replace(styleAttr+"#"+hexColor,styleAttr+hc);
}
else{
bracketIndex = color.search("\\)");
color = color.substring(0, bracketIndex);
hexColor = getHexFromRGB(color);
- hc = getXorColor(hexColor);
+ hc = getHighlight(hexColor, highlight, lookUpTable, id);
return style.substring(0, index) + styleAttr+hc+ style.substring(index+bracketIndex+styleAttr.length+1, style.length);
}
}
+ function isIE(){
+ var agt=parent.navigator.userAgent.toLowerCase();
+ return (agt.indexOf("msie")!=-1);
+}
+ function resizeSVG(e){
+ if(isIE()){
+ var root=e.target.ownerDocument.documentElement;
+ var hotSpot = e.target.ownerDocument.getElementById('hotSpots');
+ var g = e.target.ownerDocument.getElementById('outerG');
+ var xScale = (innerWidth) / root.getAttribute('width');
+ var yScale = (innerHeight) / root.getAttribute('height');
+ g.setAttributeNS(null, 'transform', 'scale('+xScale+','+yScale+')');
+ hotSpot.setAttributeNS(null, 'transform', 'scale('+xScale+','+yScale+')');
+ }
+ }
+ function getHighlight(color, highlight, lookupTable, id){
+ if (!(highlight)){
+ color = lookupTable[id];
+ }
+ else{
+ lookupTable[id] = color;
+ }
+ r = color.substring(0, 2);
+ r = parseInt(r, 16);
+ g = color.substring(2, 4);
+ g = parseInt(g, 16);
+ b = color.substring(4, 6);
+ b = parseInt(b, 16);
+ var value = parseInt(r, 16);
+ if (highlight){
+ r = Math.ceil( (r + 255) / 2 );
+ g = Math.ceil( (g + 255) / 2 );
+ b = Math.ceil( (b + 255) / 2 );
+ }
+ rStr = r.toString(16);
+ gStr = g.toString(16);
+ bStr = b.toString(16);
+ while (rStr.length < 2){
+ rStr = "0"+rStr;
+ }
+ while (gStr.length < 2){
+ gStr = "0"+gStr;
+ }
+ while (bStr.length < 2){
+ bStr = "0"+bStr;
+ }
+return "#"+rStr+gStr+bStr;
+}
function getHexFromRGB(color){
findThem = /\d{1,3}/g;
listOfnum = color.match(findThem);
@@ -224,4 +384,4 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
}
return r+g+b;
}
-]]></script><style type="text/css"><![CDATA[.tooltip.text{ text-anchor:left;font-size:12pt;fill:black;}.tooltip{fill:rgb(244,245,235)}]]></style><path d=" M0.0 0.0 L533.0 0.0 L533.0 333.0 L0.0 333.0 L0.0 0.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M4.0 4.0 L213.40104166666666 4.0 L213.40104166666666 49.0 L4.0 49.0 L4.0 4.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,6.666666507720947,42.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M2.46875 0.0 L2.46875 -22.90625 L11.109375 -22.90625 Q13.390625 -22.90625 14.59375 -22.6875 Q16.28125 -22.40625 17.421875 -21.6171875 Q18.5625 -20.828125 19.2578125 -19.40625 Q19.953125 -17.984375 19.953125 -16.28125 Q19.953125 -13.359375 18.09375 -11.3359375 Q16.234375 -9.3125 11.375 -9.3125 L5.5 -9.3125 L5.5 0.0 L2.46875 0.0 Z M5.5 -12.015625 L11.421875 -12.015625 Q14.359375 -12.015625 15.59375 -13.109375 Q16.828125 -14.203125 16.828125 -16.1875 Q16.828125 -17.625 16.1015625 -18.6484375 Q15.375 -19.671875 14.1875 -20.0 Q13.421875 -20.203125 11.359375 -20.203125 L5.5 -20.203125 L5.5 -12.015625 Z"/><path d=" M23.46875 -19.671875 L23.46875 -22.90625 L26.28125 -22.90625 L26.28125 -19.671875 L23.46875 -19.671875 Z M23.46875 0.0 L23.46875 -16.59375 L26.28125 -16.59375 L26.28125 0.0 L23.46875 0.0 Z"/><path d=" M41.921875 -5.34375 L44.828125 -4.984375 Q44.140625 -2.4375 42.28125 -1.03125 Q40.421875 0.375 37.53125 0.375 Q33.890625 0.375 31.7578125 -1.8671875 Q29.625 -4.109375 29.625 -8.15625 Q29.625 -12.34375 31.78125 -14.65625 Q33.9375 -16.96875 37.375 -16.96875 Q40.703125 -16.96875 42.8125 -14.703125 Q44.921875 -12.4375 44.921875 -8.328125 Q44.921875 -8.078125 44.90625 -7.578125 L32.53125 -7.578125 Q32.6875 -4.84375 34.078125 -3.390625 Q35.46875 -1.9375 37.546875 -1.9375 Q39.09375 -1.9375 40.1875 -2.75 Q41.28125 -3.5625 41.921875 -5.34375 Z M32.6875 -9.890625 L41.953125 -9.890625 Q41.765625 -11.984375 40.890625 -13.03125 Q39.546875 -14.65625 37.40625 -14.65625 Q35.46875 -14.65625 34.1484375 -13.359375 Q32.828125 -12.0625 32.6875 -9.890625 Z"/><path d=""/><path d=" M73.953125 -8.03125 L76.984375 -7.265625 Q76.03125 -3.53125 73.5546875 -1.5703125 Q71.078125 0.390625 67.5 0.390625 Q63.796875 0.390625 61.4765625 -1.1171875 Q59.15625 -2.625 57.9453125 -5.484375 Q56.734375 -8.34375 56.734375 -11.625 Q56.734375 -15.203125 58.1015625 -17.8671875 Q59.46875 -20.53125 61.9921875 -21.9140625 Q64.515625 -23.296875 67.546875 -23.296875 Q70.984375 -23.296875 73.328125 -21.546875 Q75.671875 -19.796875 76.59375 -16.625 L73.609375 -15.921875 Q72.8125 -18.421875 71.296875 -19.5625 Q69.78125 -20.703125 67.484375 -20.703125 Q64.84375 -20.703125 63.0703125 -19.4375 Q61.296875 -18.171875 60.578125 -16.0390625 Q59.859375 -13.90625 59.859375 -11.640625 Q59.859375 -8.71875 60.7109375 -6.5390625 Q61.5625 -4.359375 63.359375 -3.28125 Q65.15625 -2.203125 67.25 -2.203125 Q69.796875 -2.203125 71.5625 -3.671875 Q73.328125 -5.140625 73.953125 -8.03125 Z"/><path d=" M80.359375 0.0 L80.359375 -22.90625 L83.171875 -22.90625 L83.171875 -14.6875 Q85.140625 -16.96875 88.140625 -16.96875 Q89.984375 -16.96875 91.34375 -16.2421875 Q92.703125 -15.515625 93.2890625 -14.234375 Q93.875 -12.953125 93.875 -10.515625 L93.875 0.0 L91.0625 0.0 L91.0625 -10.515625 Q91.0625 -12.625 90.1484375 -13.5859375 Q89.234375 -14.546875 87.5625 -14.546875 Q86.3125 -14.546875 85.2109375 -13.8984375 Q84.109375 -13.25 83.640625 -12.140625 Q83.171875 -11.03125 83.171875 -9.078125 L83.171875 0.0 L80.359375 0.0 Z"/><path d=" M108.984375 -2.046875 Q107.421875 -0.71875 105.9765625 -0.171875 Q104.53125 0.375 102.875 0.375 Q100.140625 0.375 98.671875 -0.9609375 Q97.203125 -2.296875 97.203125 -4.375 Q97.203125 -5.59375 97.7578125 -6.6015625 Q98.3125 -7.609375 99.2109375 -8.21875 Q100.109375 -8.828125 101.234375 -9.140625 Q102.0625 -9.359375 103.734375 -9.5625 Q107.140625 -9.96875 108.75 -10.53125 Q108.765625 -11.109375 108.765625 -11.265625 Q108.765625 -12.984375 107.96875 -13.6875 Q106.890625 -14.640625 104.765625 -14.640625 Q102.78125 -14.640625 101.8359375 -13.9453125 Q100.890625 -13.25 100.4375 -11.484375 L97.6875 -11.859375 Q98.0625 -13.625 98.921875 -14.7109375 Q99.78125 -15.796875 101.40625 -16.3828125 Q103.03125 -16.96875 105.171875 -16.96875 Q107.296875 -16.96875 108.625 -16.46875 Q109.953125 -15.96875 110.578125 -15.2109375 Q111.203125 -14.453125 111.453125 -13.296875 Q111.59375 -12.578125 111.59375 -10.703125 L111.59375 -6.953125 Q111.59375 -3.03125 111.7734375 -1.9921875 Q111.953125 -0.953125 112.484375 0.0 L109.546875 0.0 Q109.109375 -0.875 108.984375 -2.046875 Z M108.75 -8.328125 Q107.21875 -7.703125 104.15625 -7.265625 Q102.421875 -7.015625 101.703125 -6.703125 Q100.984375 -6.390625 100.59375 -5.7890625 Q100.203125 -5.1875 100.203125 -4.453125 Q100.203125 -3.328125 101.0546875 -2.578125 Q101.90625 -1.828125 103.546875 -1.828125 Q105.171875 -1.828125 106.4375 -2.5390625 Q107.703125 -3.25 108.296875 -4.484375 Q108.75 -5.4375 108.75 -7.296875 L108.75 -8.328125 Z"/><path d=" M115.921875 0.0 L115.921875 -16.59375 L118.453125 -16.59375 L118.453125 -14.078125 Q119.421875 -15.84375 120.2421875 -16.40625 Q121.0625 -16.96875 122.046875 -16.96875 Q123.46875 -16.96875 124.9375 -16.0625 L123.96875 -13.453125 Q122.9375 -14.0625 121.90625 -14.0625 Q120.984375 -14.0625 120.25 -13.5078125 Q119.515625 -12.953125 119.203125 -11.96875 Q118.734375 -10.46875 118.734375 -8.6875 L118.734375 0.0 L115.921875 0.0 Z"/><path d=" M132.75 -2.515625 L133.15625 -0.03125 Q131.96875 0.21875 131.03125 0.21875 Q129.5 0.21875 128.65625 -0.265625 Q127.8125 -0.75 127.46875 -1.5390625 Q127.125 -2.328125 127.125 -4.859375 L127.125 -14.40625 L125.0625 -14.40625 L125.0625 -16.59375 L127.125 -16.59375 L127.125 -20.703125 L129.921875 -22.390625 L129.921875 -16.59375 L132.75 -16.59375 L132.75 -14.40625 L129.921875 -14.40625 L129.921875 -4.703125 Q129.921875 -3.5 130.0703125 -3.15625 Q130.21875 -2.8125 130.5546875 -2.609375 Q130.890625 -2.40625 131.515625 -2.40625 Q131.984375 -2.40625 132.75 -2.515625 Z"/><path d=""/><path d=" M150.578125 0.0 L150.578125 -20.203125 L143.03125 -20.203125 L143.03125 -22.90625 L161.1875 -22.90625 L161.1875 -20.203125 L153.609375 -20.203125 L153.609375 0.0 L150.578125 0.0 Z"/><path d=" M163.953125 -19.671875 L163.953125 -22.90625 L166.765625 -22.90625 L166.765625 -19.671875 L163.953125 -19.671875 Z M163.953125 0.0 L163.953125 -16.59375 L166.765625 -16.59375 L166.765625 0.0 L163.953125 0.0 Z"/><path d=" M177.1875 -2.515625 L177.59375 -0.03125 Q176.40625 0.21875 175.46875 0.21875 Q173.9375 0.21875 173.09375 -0.265625 Q172.25 -0.75 171.90625 -1.5390625 Q171.5625 -2.328125 171.5625 -4.859375 L171.5625 -14.40625 L169.5 -14.40625 L169.5 -16.59375 L171.5625 -16.59375 L171.5625 -20.703125 L174.359375 -22.390625 L174.359375 -16.59375 L177.1875 -16.59375 L177.1875 -14.40625 L174.359375 -14.40625 L174.359375 -4.703125 Q174.359375 -3.5 174.5078125 -3.15625 Q174.65625 -2.8125 174.9921875 -2.609375 Q175.328125 -2.40625 175.953125 -2.40625 Q176.421875 -2.40625 177.1875 -2.515625 Z"/><path d=" M179.875 0.0 L179.875 -22.90625 L182.6875 -22.90625 L182.6875 0.0 L179.875 0.0 Z"/><path d=" M198.40625 -5.34375 L201.3125 -4.984375 Q200.625 -2.4375 198.765625 -1.03125 Q196.90625 0.375 194.015625 0.375 Q190.375 0.375 188.2421875 -1.8671875 Q186.109375 -4.109375 186.109375 -8.15625 Q186.109375 -12.34375 188.265625 -14.65625 Q190.421875 -16.96875 193.859375 -16.96875 Q197.1875 -16.96875 199.296875 -14.703125 Q201.40625 -12.4375 201.40625 -8.328125 Q201.40625 -8.078125 201.390625 -7.578125 L189.015625 -7.578125 Q189.171875 -4.84375 190.5625 -3.390625 Q191.953125 -1.9375 194.03125 -1.9375 Q195.578125 -1.9375 196.671875 -2.75 Q197.765625 -3.5625 198.40625 -5.34375 Z M189.171875 -9.890625 L198.4375 -9.890625 Q198.25 -11.984375 197.375 -13.03125 Q196.03125 -14.65625 193.890625 -14.65625 Q191.953125 -14.65625 190.6328125 -13.359375 Q189.3125 -12.0625 189.171875 -9.890625 Z"/></g></g><path d=" M4.0 4.0 L213.40104166666666 4.0 L213.40104166666666 49.0 L4.0 49.0 L4.0 4.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M4.0 42.0 L472.96875 42.0 L472.96875 329.0 L4.0 329.0 L4.0 42.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M440.7005208333333 169.5 C440.7005208333333 116.87174495589541 367.2695962389061 72.97309280156996 271.5637328465947 68.38623814368783 L255.4150390625 169.5 Z" style="fill-opacity:0.4980392156862745;fill:#7f7f7f;"/><path d=" M248.5637328465947 64.38623814368783 C173.32120493796572 60.78012115800429 101.61434214546247 82.55407730289129 67.32446596730261 119.41996427643599 L232.4150390625 165.5 Z" style="fill-opacity:0.4980392156862745;fill:#7f7f7f;"/><path d=" M72.32446596730261 155.419964276436 C37.49875101864828 192.8619446556978 48.39193037247509 238.18823776457612 99.72109204841917 269.4167565454241 C151.05025372436324 300.6452753262721 232.20024945319776 311.317793183069 303.8154172452267 296.258413289466 C375.4305850372556 281.19903339586295 422.70052083333326 243.5221169686365 422.7005208333333 201.50000000000003 L237.4150390625 201.5 Z" style="fill-opacity:0.4980392156862745;fill:#7f7f7f;"/><path d=" M232.0 165.0 L248.0 64.0 L248.0 49.0 L232.0 150.0 Z" style="stroke:#585858;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M255.0 169.0 L255.0 154.0 L271.0 53.0 L271.0 68.0 Z" style="stroke:#585858;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M232.0 165.0 L232.0 150.0 L67.0 104.0 L67.0 119.0 Z" style="stroke:#585858;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M237.0 201.0 L72.0 155.0 L72.0 140.0 L237.0 186.0 Z" style="stroke:#585858;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M255.0 169.0 L440.0 169.0 L440.0 154.0 L255.0 154.0 Z" style="stroke:#585858;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M237.0 201.0 L237.0 186.0 L422.0 186.0 L422.0 201.0 Z" style="stroke:#585858;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M440.7005208333333 154.5 C440.7005208333333 101.87174495589541 367.2695962389061 57.97309280156996 271.5637328465947 53.386238143687834 L255.4150390625 154.5 Z" style="fill-opacity:0.4980392156862745;fill:#7f7f7f;"/><path d=" M440.7005208333333 154.5 C440.7005208333333 101.87174495589541 367.2695962389061 57.97309280156996 271.5637328465947 53.386238143687834 L255.4150390625 154.5 Z" style="stroke:#585858;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M248.5637328465947 49.386238143687834 C173.32120493796572 45.78012115800429 101.61434214546247 67.55407730289129 67.32446596730261 104.41996427643599 L232.4150390625 150.5 Z" style="fill-opacity:0.4980392156862745;fill:#7f7f7f;"/><path d=" M248.5637328465947 49.386238143687834 C173.32120493796572 45.78012115800429 101.61434214546247 67.55407730289129 67.32446596730261 104.41996427643599 L232.4150390625 150.5 Z" style="stroke:#585858;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M72.32446596730261 140.419964276436 C37.49875101864828 177.8619446556978 48.39193037247509 223.18823776457612 99.72109204841917 254.4167565454241 C151.05025372436324 285.6452753262721 232.20024945319776 296.317793183069 303.8154172452267 281.258413289466 C375.4305850372556 266.19903339586295 422.70052083333326 228.5221169686365 422.7005208333333 186.50000000000003 L237.4150390625 186.5 Z" style="fill-opacity:0.4980392156862745;fill:#7f7f7f;"/><path d=" M72.32446596730261 140.419964276436 C37.49875101864828 177.8619446556978 48.39193037247509 223.18823776457612 99.72109204841917 254.4167565454241 C151.05025372436324 285.6452753262721 232.20024945319776 296.317793183069 303.8154172452267 281.258413289466 C375.4305850372556 266.19903339586295 422.70052083333326 228.5221169686365 422.7005208333333 186.50000000000003 L237.4150390625 186.5 Z" style="stroke:#585858;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M8.0 304.0 L92.8506571451823 304.0 L92.8506571451823 334.0 L8.0 334.0 L8.0 304.0 Z" style="fill-opacity:0.4980392156862745;fill:#7f7f7f;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,10.666666984558105,329.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.9375 -4.828125 L2.8125 -5.0 Q2.953125 -3.859375 3.4375 -3.140625 Q3.921875 -2.421875 4.953125 -1.9765625 Q5.984375 -1.53125 7.265625 -1.53125 Q8.390625 -1.53125 9.265625 -1.8671875 Q10.140625 -2.203125 10.5703125 -2.796875 Q11.0 -3.390625 11.0 -4.078125 Q11.0 -4.78125 10.5859375 -5.3125 Q10.171875 -5.84375 9.234375 -6.203125 Q8.625 -6.4375 6.5546875 -6.9375 Q4.484375 -7.4375 3.65625 -7.875 Q2.578125 -8.4375 2.046875 -9.2734375 Q1.515625 -10.109375 1.515625 -11.140625 Q1.515625 -12.28125 2.1640625 -13.2734375 Q2.8125 -14.265625 4.0546875 -14.7734375 Q5.296875 -15.28125 6.8125 -15.28125 Q8.484375 -15.28125 9.7578125 -14.75 Q11.03125 -14.21875 11.71875 -13.171875 Q12.40625 -12.125 12.453125 -10.796875 L10.546875 -10.65625 Q10.390625 -12.078125 9.5078125 -12.8046875 Q8.625 -13.53125 6.890625 -13.53125 Q5.09375 -13.53125 4.265625 -12.875 Q3.4375 -12.21875 3.4375 -11.28125 Q3.4375 -10.46875 4.015625 -9.953125 Q4.59375 -9.421875 7.015625 -8.875 Q9.4375 -8.328125 10.34375 -7.921875 Q11.65625 -7.3125 12.28125 -6.3828125 Q12.90625 -5.453125 12.90625 -4.25 Q12.90625 -3.046875 12.21875 -1.984375 Q11.53125 -0.921875 10.25 -0.3359375 Q8.96875 0.25 7.359375 0.25 Q5.3125 0.25 3.9296875 -0.34375 Q2.546875 -0.9375 1.765625 -2.1328125 Q0.984375 -3.328125 0.9375 -4.828125 Z"/><path d=" M23.05902099609375 -3.5 L24.96527099609375 -3.265625 Q24.51214599609375 -1.59375 23.29339599609375 -0.671875 Q22.07464599609375 0.25 20.16839599609375 0.25 Q17.77777099609375 0.25 16.37933349609375 -1.2265625 Q14.98089599609375 -2.703125 14.98089599609375 -5.359375 Q14.98089599609375 -8.09375 16.39495849609375 -9.6171875 Q17.80902099609375 -11.140625 20.07464599609375 -11.140625 Q22.26214599609375 -11.140625 23.64495849609375 -9.6484375 Q25.02777099609375 -8.15625 25.02777099609375 -5.46875 Q25.02777099609375 -5.296875 25.01214599609375 -4.96875 L16.88714599609375 -4.96875 Q16.99652099609375 -3.171875 17.91058349609375 -2.21875 Q18.82464599609375 -1.265625 20.18402099609375 -1.265625 Q21.19964599609375 -1.265625 21.91839599609375 -1.8046875 Q22.63714599609375 -2.34375 23.05902099609375 -3.5 Z M16.99652099609375 -6.484375 L23.07464599609375 -6.484375 Q22.94964599609375 -7.859375 22.37152099609375 -8.546875 Q21.49652099609375 -9.625 20.09027099609375 -9.625 Q18.82464599609375 -9.625 17.95745849609375 -8.7734375 Q17.09027099609375 -7.921875 16.99652099609375 -6.484375 Z"/><path d=" M27.427642822265625 0.0 L27.427642822265625 -10.890625 L29.099517822265625 -10.890625 L29.099517822265625 -9.234375 Q29.724517822265625 -10.390625 30.263580322265625 -10.765625 Q30.802642822265625 -11.140625 31.458892822265625 -11.140625 Q32.380767822265625 -11.140625 33.349517822265625 -10.546875 L32.708892822265625 -8.828125 Q32.037017822265625 -9.234375 31.365142822265625 -9.234375 Q30.755767822265625 -9.234375 30.271392822265625 -8.8671875 Q29.787017822265625 -8.5 29.583892822265625 -7.859375 Q29.271392822265625 -6.875 29.271392822265625 -5.703125 L29.271392822265625 0.0 L27.427642822265625 0.0 Z"/><path d=" M34.556121826171875 -12.90625 L34.556121826171875 -15.03125 L36.399871826171875 -15.03125 L36.399871826171875 -12.90625 L34.556121826171875 -12.90625 Z M34.556121826171875 0.0 L34.556121826171875 -10.890625 L36.399871826171875 -10.890625 L36.399871826171875 0.0 L34.556121826171875 0.0 Z"/><path d=" M46.74420166015625 -3.5 L48.65045166015625 -3.265625 Q48.19732666015625 -1.59375 46.97857666015625 -0.671875 Q45.75982666015625 0.25 43.85357666015625 0.25 Q41.46295166015625 0.25 40.06451416015625 -1.2265625 Q38.66607666015625 -2.703125 38.66607666015625 -5.359375 Q38.66607666015625 -8.09375 40.08013916015625 -9.6171875 Q41.49420166015625 -11.140625 43.75982666015625 -11.140625 Q45.94732666015625 -11.140625 47.33013916015625 -9.6484375 Q48.71295166015625 -8.15625 48.71295166015625 -5.46875 Q48.71295166015625 -5.296875 48.69732666015625 -4.96875 L40.57232666015625 -4.96875 Q40.68170166015625 -3.171875 41.59576416015625 -2.21875 Q42.50982666015625 -1.265625 43.86920166015625 -1.265625 Q44.88482666015625 -1.265625 45.60357666015625 -1.8046875 Q46.32232666015625 -2.34375 46.74420166015625 -3.5 Z M40.68170166015625 -6.484375 L46.75982666015625 -6.484375 Q46.63482666015625 -7.859375 46.05670166015625 -8.546875 Q45.18170166015625 -9.625 43.77545166015625 -9.625 Q42.50982666015625 -9.625 41.64263916015625 -8.7734375 Q40.77545166015625 -7.921875 40.68170166015625 -6.484375 Z"/><path d=" M50.394073486328125 -3.25 L52.222198486328125 -3.53125 Q52.378448486328125 -2.4375 53.081573486328125 -1.8515625 Q53.784698486328125 -1.265625 55.050323486328125 -1.265625 Q56.315948486328125 -1.265625 56.933135986328125 -1.7890625 Q57.550323486328125 -2.3125 57.550323486328125 -3.0 Q57.550323486328125 -3.625 57.003448486328125 -3.984375 Q56.628448486328125 -4.234375 55.112823486328125 -4.609375 Q53.081573486328125 -5.125 52.300323486328125 -5.5 Q51.519073486328125 -5.875 51.112823486328125 -6.5390625 Q50.706573486328125 -7.203125 50.706573486328125 -8.0 Q50.706573486328125 -8.71875 51.042510986328125 -9.34375 Q51.378448486328125 -9.96875 51.940948486328125 -10.375 Q52.378448486328125 -10.6875 53.120635986328125 -10.9140625 Q53.862823486328125 -11.140625 54.722198486328125 -11.140625 Q56.003448486328125 -11.140625 56.972198486328125 -10.765625 Q57.940948486328125 -10.390625 58.401885986328125 -9.765625 Q58.862823486328125 -9.140625 59.034698486328125 -8.078125 L57.222198486328125 -7.828125 Q57.112823486328125 -8.671875 56.519073486328125 -9.1484375 Q55.925323486328125 -9.625 54.847198486328125 -9.625 Q53.581573486328125 -9.625 53.034698486328125 -9.203125 Q52.487823486328125 -8.78125 52.487823486328125 -8.21875 Q52.487823486328125 -7.859375 52.722198486328125 -7.5625 Q52.940948486328125 -7.265625 53.425323486328125 -7.078125 Q53.706573486328125 -6.96875 55.050323486328125 -6.609375 Q57.019073486328125 -6.078125 57.792510986328125 -5.75 Q58.565948486328125 -5.421875 59.003448486328125 -4.78125 Q59.440948486328125 -4.140625 59.440948486328125 -3.203125 Q59.440948486328125 -2.28125 58.901885986328125 -1.4609375 Q58.362823486328125 -0.640625 57.347198486328125 -0.1953125 Q56.331573486328125 0.25 55.050323486328125 0.25 Q52.925323486328125 0.25 51.815948486328125 -0.6328125 Q50.706573486328125 -1.515625 50.394073486328125 -3.25 Z"/><path d=""/><path d=" M74.15911865234375 0.0 L72.31536865234375 0.0 L72.31536865234375 -11.765625 Q71.64349365234375 -11.125 70.55755615234375 -10.4921875 Q69.47161865234375 -9.859375 68.61224365234375 -9.53125 L68.61224365234375 -11.328125 Q70.15911865234375 -12.046875 71.32318115234375 -13.0859375 Q72.48724365234375 -14.125 72.97161865234375 -15.09375 L74.15911865234375 -15.09375 L74.15911865234375 0.0 Z"/></g></g><path d=" M8.0 304.0 L92.8506571451823 304.0 L92.8506571451823 334.0 L8.0 334.0 L8.0 304.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M392.7673723482833 85.41578977469729 L400.1401457163845 81.71488426296368" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M400.1401457163845 81.71488426296368 L446.7005208333333 81.71488426296368" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M141.89066260309596 61.2337055825634 L137.0425664006326 56.44250988680744" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M137.0425664006326 56.44250988680744 L36.129557291666686 56.44250988680744" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M193.49209507617303 285.6429453283177 L191.157641437614 290.969619926732" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M191.157641437614 290.969619926732 L36.129557291666686 290.969619926732" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M485.0 171.0 L499.0 171.0 L502.0 168.0 L488.0 168.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M485.0 171.0 L499.0 171.0 L502.0 168.0 L488.0 168.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M485.0 171.0 L499.0 171.0 L502.0 168.0 L488.0 168.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M485.0 157.0 L485.0 171.0 L488.0 168.0 L488.0 154.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M485.0 157.0 L485.0 171.0 L488.0 168.0 L488.0 154.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M485.0 157.0 L485.0 171.0 L488.0 168.0 L488.0 154.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M499.0 171.0 L499.0 157.0 L502.0 154.0 L502.0 168.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M499.0 171.0 L499.0 157.0 L502.0 154.0 L502.0 168.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M499.0 171.0 L499.0 157.0 L502.0 154.0 L502.0 168.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M499.0 157.0 L485.0 157.0 L488.0 154.0 L502.0 154.0 Z" style="fill-opacity:1.0;fill:#b5b5b5;"/><path d=" M499.0 157.0 L485.0 157.0 L488.0 154.0 L502.0 154.0 Z" style="fill-opacity:1.0;fill:#b5b5b5;"/><path d=" M499.0 157.0 L485.0 157.0 L488.0 154.0 L502.0 154.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M485.0 157.0 L485.0 171.0 L499.0 171.0 L499.0 157.0 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><path d=" M485.0 157.0 L485.0 171.0 L499.0 171.0 L499.0 157.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M507.6354166666667 152.66666666666666 L524.9739583333334 152.66666666666666 L524.9739583333334 175.66666666666666 L507.6354166666667 175.66666666666666 L507.6354166666667 152.66666666666666 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,510.3020935058594,171.6666717529297)" style="fill-opacity:1.0;fill:#000000;"><path d=" M-0.03125 0.0 L4.375 -11.453125 L6.015625 -11.453125 L10.703125 0.0 L8.96875 0.0 L7.640625 -3.46875 L2.84375 -3.46875 L1.59375 0.0 L-0.03125 0.0 Z M3.28125 -4.703125 L7.171875 -4.703125 L5.96875 -7.875 Q5.421875 -9.328125 5.15625 -10.25 Q4.9375 -9.15625 4.546875 -8.0625 L3.28125 -4.703125 Z"/></g></g><path d=" M507.6354166666667 152.66666666666666 L524.9739583333334 152.66666666666666 L524.9739583333334 175.66666666666666 L507.6354166666667 175.66666666666666 L507.6354166666667 152.66666666666666 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M485.0 192.0 L499.0 192.0 L502.0 189.0 L488.0 189.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M485.0 192.0 L499.0 192.0 L502.0 189.0 L488.0 189.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M485.0 192.0 L499.0 192.0 L502.0 189.0 L488.0 189.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M485.0 178.0 L485.0 192.0 L488.0 189.0 L488.0 175.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M485.0 178.0 L485.0 192.0 L488.0 189.0 L488.0 175.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M485.0 178.0 L485.0 192.0 L488.0 189.0 L488.0 175.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M499.0 192.0 L499.0 178.0 L502.0 175.0 L502.0 189.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M499.0 192.0 L499.0 178.0 L502.0 175.0 L502.0 189.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M499.0 192.0 L499.0 178.0 L502.0 175.0 L502.0 189.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M499.0 178.0 L485.0 178.0 L488.0 175.0 L502.0 175.0 Z" style="fill-opacity:1.0;fill:#b5b5b5;"/><path d=" M499.0 178.0 L485.0 178.0 L488.0 175.0 L502.0 175.0 Z" style="fill-opacity:1.0;fill:#b5b5b5;"/><path d=" M499.0 178.0 L485.0 178.0 L488.0 175.0 L502.0 175.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M485.0 178.0 L485.0 192.0 L499.0 192.0 L499.0 178.0 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><path d=" M485.0 178.0 L485.0 192.0 L499.0 192.0 L499.0 178.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M507.6354166666667 173.99999999999997 L524.9739583333334 173.99999999999997 L524.9739583333334 196.99999999999997 L507.6354166666667 196.99999999999997 L507.6354166666667 173.99999999999997 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,510.3020935058594,193.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M1.171875 0.0 L1.171875 -11.453125 L5.46875 -11.453125 Q6.78125 -11.453125 7.578125 -11.109375 Q8.375 -10.765625 8.8203125 -10.0390625 Q9.265625 -9.3125 9.265625 -8.53125 Q9.265625 -7.796875 8.8671875 -7.1484375 Q8.46875 -6.5 7.671875 -6.09375 Q8.703125 -5.796875 9.265625 -5.0625 Q9.828125 -4.328125 9.828125 -3.328125 Q9.828125 -2.515625 9.484375 -1.828125 Q9.140625 -1.140625 8.640625 -0.765625 Q8.140625 -0.390625 7.390625 -0.1953125 Q6.640625 0.0 5.546875 0.0 L1.171875 0.0 Z M2.6875 -6.640625 L5.171875 -6.640625 Q6.171875 -6.640625 6.609375 -6.78125 Q7.1875 -6.953125 7.484375 -7.3515625 Q7.78125 -7.75 7.78125 -8.34375 Q7.78125 -8.921875 7.5078125 -9.3515625 Q7.234375 -9.78125 6.7265625 -9.9453125 Q6.21875 -10.109375 4.984375 -10.109375 L2.6875 -10.109375 L2.6875 -6.640625 Z M2.6875 -1.359375 L5.546875 -1.359375 Q6.28125 -1.359375 6.578125 -1.40625 Q7.09375 -1.5 7.4453125 -1.71875 Q7.796875 -1.9375 8.0234375 -2.359375 Q8.25 -2.78125 8.25 -3.328125 Q8.25 -3.96875 7.921875 -4.4375 Q7.59375 -4.90625 7.015625 -5.1015625 Q6.4375 -5.296875 5.34375 -5.296875 L2.6875 -5.296875 L2.6875 -1.359375 Z"/></g></g><path d=" M507.6354166666667 173.99999999999997 L524.9739583333334 173.99999999999997 L524.9739583333334 196.99999999999997 L507.6354166666667 196.99999999999997 L507.6354166666667 173.99999999999997 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M485.0 213.0 L499.0 213.0 L502.0 210.0 L488.0 210.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M485.0 213.0 L499.0 213.0 L502.0 210.0 L488.0 210.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M485.0 213.0 L499.0 213.0 L502.0 210.0 L488.0 210.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M485.0 199.0 L485.0 213.0 L488.0 210.0 L488.0 196.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M485.0 199.0 L485.0 213.0 L488.0 210.0 L488.0 196.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M485.0 199.0 L485.0 213.0 L488.0 210.0 L488.0 196.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M499.0 213.0 L499.0 199.0 L502.0 196.0 L502.0 210.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M499.0 213.0 L499.0 199.0 L502.0 196.0 L502.0 210.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M499.0 213.0 L499.0 199.0 L502.0 196.0 L502.0 210.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M499.0 199.0 L485.0 199.0 L488.0 196.0 L502.0 196.0 Z" style="fill-opacity:1.0;fill:#b5b5b5;"/><path d=" M499.0 199.0 L485.0 199.0 L488.0 196.0 L502.0 196.0 Z" style="fill-opacity:1.0;fill:#b5b5b5;"/><path d=" M499.0 199.0 L485.0 199.0 L488.0 196.0 L502.0 196.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M485.0 199.0 L485.0 213.0 L499.0 213.0 L499.0 199.0 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><path d=" M485.0 199.0 L485.0 213.0 L499.0 213.0 L499.0 199.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M507.6354166666667 195.3333333333333 L525.8567708333334 195.3333333333333 L525.8567708333334 218.3333333333333 L507.6354166666667 218.3333333333333 L507.6354166666667 195.3333333333333 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,510.3020935058594,214.3333282470703)" style="fill-opacity:1.0;fill:#000000;"><path d=" M9.40625 -4.015625 L10.921875 -3.640625 Q10.453125 -1.765625 9.2109375 -0.78125 Q7.96875 0.203125 6.1875 0.203125 Q4.328125 0.203125 3.171875 -0.5546875 Q2.015625 -1.3125 1.40625 -2.7421875 Q0.796875 -4.171875 0.796875 -5.8125 Q0.796875 -7.609375 1.484375 -8.9375 Q2.171875 -10.265625 3.4296875 -10.9609375 Q4.6875 -11.65625 6.203125 -11.65625 Q7.921875 -11.65625 9.09375 -10.78125 Q10.265625 -9.90625 10.734375 -8.3125 L9.234375 -7.96875 Q8.84375 -9.21875 8.0859375 -9.7890625 Q7.328125 -10.359375 6.171875 -10.359375 Q4.859375 -10.359375 3.96875 -9.7265625 Q3.078125 -9.09375 2.71875 -8.0234375 Q2.359375 -6.953125 2.359375 -5.828125 Q2.359375 -4.359375 2.7890625 -3.2734375 Q3.21875 -2.1875 4.1171875 -1.6484375 Q5.015625 -1.109375 6.0625 -1.109375 Q7.328125 -1.109375 8.2109375 -1.84375 Q9.09375 -2.578125 9.40625 -4.015625 Z"/></g></g><path d=" M507.6354166666667 195.3333333333333 L525.8567708333334 195.3333333333333 L525.8567708333334 218.3333333333333 L507.6354166666667 218.3333333333333 L507.6354166666667 195.3333333333333 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M446.7005208333333 71.21488426296368 L475.609375 71.21488426296368 L475.609375 94.21488426296368 L446.7005208333333 94.21488426296368 L446.7005208333333 71.21488426296368 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,449.3671875,90.21488189697266)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.671875 -3.0 L2.140625 -3.125 Q2.3125 -2.046875 2.90625 -1.5078125 Q3.5 -0.96875 4.34375 -0.96875 Q5.359375 -0.96875 6.0625 -1.734375 Q6.765625 -2.5 6.765625 -3.765625 Q6.765625 -4.96875 6.09375 -5.6640625 Q5.421875 -6.359375 4.328125 -6.359375 Q3.640625 -6.359375 3.09375 -6.046875 Q2.546875 -5.734375 2.234375 -5.25 L0.921875 -5.421875 L2.03125 -11.296875 L7.71875 -11.296875 L7.71875 -9.953125 L3.15625 -9.953125 L2.53125 -6.875 Q3.5625 -7.59375 4.703125 -7.59375 Q6.203125 -7.59375 7.234375 -6.5546875 Q8.265625 -5.515625 8.265625 -3.890625 Q8.265625 -2.328125 7.359375 -1.203125 Q6.25 0.203125 4.34375 0.203125 Q2.78125 0.203125 1.796875 -0.6796875 Q0.8125 -1.5625 0.671875 -3.0 Z"/><path d=" M10.3515625 0.0 L10.3515625 -1.609375 L11.9609375 -1.609375 L11.9609375 0.0 L10.3515625 0.0 Z"/><path d=" M14.015625 -5.65625 Q14.015625 -7.6875 14.4296875 -8.921875 Q14.84375 -10.15625 15.671875 -10.828125 Q16.5 -11.5 17.75 -11.5 Q18.671875 -11.5 19.3671875 -11.1328125 Q20.0625 -10.765625 20.515625 -10.0625 Q20.96875 -9.359375 21.2265625 -8.359375 Q21.484375 -7.359375 21.484375 -5.65625 Q21.484375 -3.640625 21.0703125 -2.3984375 Q20.65625 -1.15625 19.828125 -0.4765625 Q19.0 0.203125 17.75 0.203125 Q16.09375 0.203125 15.140625 -1.0 Q14.015625 -2.421875 14.015625 -5.65625 Z M15.453125 -5.65625 Q15.453125 -2.828125 16.1171875 -1.8984375 Q16.78125 -0.96875 17.75 -0.96875 Q18.71875 -0.96875 19.375 -1.90625 Q20.03125 -2.84375 20.03125 -5.65625 Q20.03125 -8.484375 19.375 -9.4140625 Q18.71875 -10.34375 17.734375 -10.34375 Q16.765625 -10.34375 16.1875 -9.515625 Q15.453125 -8.46875 15.453125 -5.65625 Z"/></g></g><path d=" M446.7005208333333 71.21488426296368 L475.609375 71.21488426296368 L475.609375 94.21488426296368 L446.7005208333333 94.21488426296368 L446.7005208333333 71.21488426296368 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M7.220703125000021 44.94250988680744 L36.129557291666686 44.94250988680744 L36.129557291666686 67.94250988680744 L7.220703125000021 67.94250988680744 L7.220703125000021 44.94250988680744 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,9.887370109558105,63.942508697509766)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.171875 0.0 L5.171875 -2.75 L0.203125 -2.75 L0.203125 -4.03125 L5.4375 -11.453125 L6.578125 -11.453125 L6.578125 -4.03125 L8.125 -4.03125 L8.125 -2.75 L6.578125 -2.75 L6.578125 0.0 L5.171875 0.0 Z M5.171875 -4.03125 L5.171875 -9.203125 L1.59375 -4.03125 L5.171875 -4.03125 Z"/><path d=" M10.3515625 0.0 L10.3515625 -1.609375 L11.9609375 -1.609375 L11.9609375 0.0 L10.3515625 0.0 Z"/><path d=" M14.015625 -5.65625 Q14.015625 -7.6875 14.4296875 -8.921875 Q14.84375 -10.15625 15.671875 -10.828125 Q16.5 -11.5 17.75 -11.5 Q18.671875 -11.5 19.3671875 -11.1328125 Q20.0625 -10.765625 20.515625 -10.0625 Q20.96875 -9.359375 21.2265625 -8.359375 Q21.484375 -7.359375 21.484375 -5.65625 Q21.484375 -3.640625 21.0703125 -2.3984375 Q20.65625 -1.15625 19.828125 -0.4765625 Q19.0 0.203125 17.75 0.203125 Q16.09375 0.203125 15.140625 -1.0 Q14.015625 -2.421875 14.015625 -5.65625 Z M15.453125 -5.65625 Q15.453125 -2.828125 16.1171875 -1.8984375 Q16.78125 -0.96875 17.75 -0.96875 Q18.71875 -0.96875 19.375 -1.90625 Q20.03125 -2.84375 20.03125 -5.65625 Q20.03125 -8.484375 19.375 -9.4140625 Q18.71875 -10.34375 17.734375 -10.34375 Q16.765625 -10.34375 16.1875 -9.515625 Q15.453125 -8.46875 15.453125 -5.65625 Z"/></g></g><path d=" M7.220703125000021 44.94250988680744 L36.129557291666686 44.94250988680744 L36.129557291666686 67.94250988680744 L7.220703125000021 67.94250988680744 L7.220703125000021 44.94250988680744 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M-1.6777343749999787 279.469619926732 L36.129557291666686 279.469619926732 L36.129557291666686 302.469619926732 L-1.6777343749999787 302.469619926732 L-1.6777343749999787 279.469619926732 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,0.9889323115348816,298.4696350097656)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.96875 0.0 L4.5625 0.0 L4.5625 -8.96875 Q4.046875 -8.484375 3.2265625 -8.0 Q2.40625 -7.515625 1.75 -7.265625 L1.75 -8.625 Q2.921875 -9.1875 3.8046875 -9.9765625 Q4.6875 -10.765625 5.0625 -11.5 L5.96875 -11.5 L5.96875 0.0 Z"/><path d=" M16.9609375 -1.359375 L16.9609375 0.0 L9.3828125 0.0 Q9.3671875 -0.515625 9.5546875 -0.984375 Q9.8359375 -1.75 10.4765625 -2.5 Q11.1171875 -3.25 12.3203125 -4.234375 Q14.1796875 -5.765625 14.8359375 -6.6640625 Q15.4921875 -7.5625 15.4921875 -8.359375 Q15.4921875 -9.1875 14.8984375 -9.765625 Q14.3046875 -10.34375 13.3359375 -10.34375 Q12.3203125 -10.34375 11.7109375 -9.734375 Q11.1015625 -9.125 11.1015625 -8.046875 L9.6484375 -8.1875 Q9.8046875 -9.8125 10.7734375 -10.65625 Q11.7421875 -11.5 13.3671875 -11.5 Q15.0234375 -11.5 15.984375 -10.5859375 Q16.9453125 -9.671875 16.9453125 -8.328125 Q16.9453125 -7.640625 16.6640625 -6.9765625 Q16.3828125 -6.3125 15.7265625 -5.578125 Q15.0703125 -4.84375 13.5546875 -3.5625 Q12.2890625 -2.5 11.9296875 -2.1171875 Q11.5703125 -1.734375 11.3359375 -1.359375 L16.9609375 -1.359375 Z"/><path d=" M19.25 0.0 L19.25 -1.609375 L20.859375 -1.609375 L20.859375 0.0 L19.25 0.0 Z"/><path d=" M22.9140625 -5.65625 Q22.9140625 -7.6875 23.328125 -8.921875 Q23.7421875 -10.15625 24.5703125 -10.828125 Q25.3984375 -11.5 26.6484375 -11.5 Q27.5703125 -11.5 28.265625 -11.1328125 Q28.9609375 -10.765625 29.4140625 -10.0625 Q29.8671875 -9.359375 30.125 -8.359375 Q30.3828125 -7.359375 30.3828125 -5.65625 Q30.3828125 -3.640625 29.96875 -2.3984375 Q29.5546875 -1.15625 28.7265625 -0.4765625 Q27.8984375 0.203125 26.6484375 0.203125 Q24.9921875 0.203125 24.0390625 -1.0 Q22.9140625 -2.421875 22.9140625 -5.65625 Z M24.3515625 -5.65625 Q24.3515625 -2.828125 25.015625 -1.8984375 Q25.6796875 -0.96875 26.6484375 -0.96875 Q27.6171875 -0.96875 28.2734375 -1.90625 Q28.9296875 -2.84375 28.9296875 -5.65625 Q28.9296875 -8.484375 28.2734375 -9.4140625 Q27.6171875 -10.34375 26.6328125 -10.34375 Q25.6640625 -10.34375 25.0859375 -9.515625 Q24.3515625 -8.46875 24.3515625 -5.65625 Z"/></g></g><path d=" M-1.6777343749999787 279.469619926732 L36.129557291666686 279.469619926732 L36.129557291666686 302.469619926732 L-1.6777343749999787 302.469619926732 L-1.6777343749999787 279.469619926732 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/></g><g style="fill-opacity:0.01;fill:#FFFFFF;"/></svg> \ No newline at end of file
+]]></script><style type="text/css"><![CDATA[.tooltip.text{ text-anchor:left;font-size:12pt;fill:black;}.tooltip{fill:rgb(244,245,235)}]]></style><path d=" M0.0 0.0 L533.0 0.0 L533.0 333.0 L0.0 333.0 L0.0 0.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M4.0 4.0 L213.40104166666666 4.0 L213.40104166666666 49.0 L4.0 49.0 L4.0 4.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><text font-family="SansSerif" font-size="32" style="fill-opacity:1.0;fill:#000000;" x="6.6666665" y="42.0">Pie Chart Title</text><path d=" M4.0 4.0 L213.40104166666666 4.0 L213.40104166666666 49.0 L4.0 49.0 L4.0 4.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M4.0 42.0 L472.96875 42.0 L472.96875 329.0 L4.0 329.0 L4.0 42.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M440.7005208333333 169.5 C440.7005208333333 116.87174495589541 367.2695962389061 72.97309280156996 271.5637328465947 68.38623814368783 L255.4150390625 169.5 Z" style="fill-opacity:0.4980392156862745;fill:#7f7f7f;"/><path d=" M248.5637328465947 64.38623814368783 C173.32120493796572 60.78012115800429 101.61434214546247 82.55407730289129 67.32446596730261 119.41996427643599 L232.4150390625 165.5 Z" style="fill-opacity:0.4980392156862745;fill:#7f7f7f;"/><path d=" M72.32446596730261 155.419964276436 C37.49875101864828 192.8619446556978 48.39193037247509 238.18823776457612 99.72109204841917 269.4167565454241 C151.05025372436324 300.6452753262721 232.20024945319776 311.317793183069 303.8154172452267 296.258413289466 C375.4305850372556 281.19903339586295 422.70052083333326 243.5221169686365 422.7005208333333 201.50000000000003 L237.4150390625 201.5 Z" style="fill-opacity:0.4980392156862745;fill:#7f7f7f;"/><path d=" M232.0 165.0 L248.0 64.0 L248.0 49.0 L232.0 150.0 Z" style="stroke:#585858;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M255.0 169.0 L255.0 154.0 L271.0 53.0 L271.0 68.0 Z" style="stroke:#585858;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M232.0 165.0 L232.0 150.0 L67.0 104.0 L67.0 119.0 Z" style="stroke:#585858;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M237.0 201.0 L72.0 155.0 L72.0 140.0 L237.0 186.0 Z" style="stroke:#585858;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M255.0 169.0 L440.0 169.0 L440.0 154.0 L255.0 154.0 Z" style="stroke:#585858;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M237.0 201.0 L237.0 186.0 L422.0 186.0 L422.0 201.0 Z" style="stroke:#585858;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M440.7005208333333 154.5 C440.7005208333333 101.87174495589541 367.2695962389061 57.97309280156996 271.5637328465947 53.386238143687834 L255.4150390625 154.5 Z" style="fill-opacity:0.4980392156862745;fill:#7f7f7f;"/><path d=" M440.7005208333333 154.5 C440.7005208333333 101.87174495589541 367.2695962389061 57.97309280156996 271.5637328465947 53.386238143687834 L255.4150390625 154.5 Z" style="stroke:#585858;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M248.5637328465947 49.386238143687834 C173.32120493796572 45.78012115800429 101.61434214546247 67.55407730289129 67.32446596730261 104.41996427643599 L232.4150390625 150.5 Z" style="fill-opacity:0.4980392156862745;fill:#7f7f7f;"/><path d=" M248.5637328465947 49.386238143687834 C173.32120493796572 45.78012115800429 101.61434214546247 67.55407730289129 67.32446596730261 104.41996427643599 L232.4150390625 150.5 Z" style="stroke:#585858;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M72.32446596730261 140.419964276436 C37.49875101864828 177.8619446556978 48.39193037247509 223.18823776457612 99.72109204841917 254.4167565454241 C151.05025372436324 285.6452753262721 232.20024945319776 296.317793183069 303.8154172452267 281.258413289466 C375.4305850372556 266.19903339586295 422.70052083333326 228.5221169686365 422.7005208333333 186.50000000000003 L237.4150390625 186.5 Z" style="fill-opacity:0.4980392156862745;fill:#7f7f7f;"/><path d=" M72.32446596730261 140.419964276436 C37.49875101864828 177.8619446556978 48.39193037247509 223.18823776457612 99.72109204841917 254.4167565454241 C151.05025372436324 285.6452753262721 232.20024945319776 296.317793183069 303.8154172452267 281.258413289466 C375.4305850372556 266.19903339586295 422.70052083333326 228.5221169686365 422.7005208333333 186.50000000000003 L237.4150390625 186.5 Z" style="stroke:#585858;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M8.0 304.0 L92.8506571451823 304.0 L92.8506571451823 334.0 L8.0 334.0 L8.0 304.0 Z" style="fill-opacity:0.4980392156862745;fill:#7f7f7f;"/><text font-family="SansSerif" font-size="21" style="fill-opacity:1.0;fill:#000000;" x="10.666667" y="329.0">Series 1</text><path d=" M8.0 304.0 L92.8506571451823 304.0 L92.8506571451823 334.0 L8.0 334.0 L8.0 304.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M392.7673723482833 85.41578977469729 L400.1401457163845 81.71488426296368" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M400.1401457163845 81.71488426296368 L446.7005208333333 81.71488426296368" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M141.89066260309596 61.2337055825634 L137.0425664006326 56.44250988680744" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M137.0425664006326 56.44250988680744 L36.129557291666686 56.44250988680744" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M193.49209507617303 285.6429453283177 L191.157641437614 290.969619926732" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M191.157641437614 290.969619926732 L36.129557291666686 290.969619926732" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M485.0 171.0 L499.0 171.0 L502.0 168.0 L488.0 168.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M485.0 171.0 L499.0 171.0 L502.0 168.0 L488.0 168.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M485.0 171.0 L499.0 171.0 L502.0 168.0 L488.0 168.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M485.0 157.0 L485.0 171.0 L488.0 168.0 L488.0 154.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M485.0 157.0 L485.0 171.0 L488.0 168.0 L488.0 154.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M485.0 157.0 L485.0 171.0 L488.0 168.0 L488.0 154.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M499.0 171.0 L499.0 157.0 L502.0 154.0 L502.0 168.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M499.0 171.0 L499.0 157.0 L502.0 154.0 L502.0 168.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M499.0 171.0 L499.0 157.0 L502.0 154.0 L502.0 168.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M499.0 157.0 L485.0 157.0 L488.0 154.0 L502.0 154.0 Z" style="fill-opacity:1.0;fill:#b5b5b5;"/><path d=" M499.0 157.0 L485.0 157.0 L488.0 154.0 L502.0 154.0 Z" style="fill-opacity:1.0;fill:#b5b5b5;"/><path d=" M499.0 157.0 L485.0 157.0 L488.0 154.0 L502.0 154.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M485.0 157.0 L485.0 171.0 L499.0 171.0 L499.0 157.0 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><path d=" M485.0 157.0 L485.0 171.0 L499.0 171.0 L499.0 157.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M507.6354166666667 152.66666666666666 L524.9739583333334 152.66666666666666 L524.9739583333334 175.66666666666666 L507.6354166666667 175.66666666666666 L507.6354166666667 152.66666666666666 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" x="510.3021" y="171.66667">A</text><path d=" M507.6354166666667 152.66666666666666 L524.9739583333334 152.66666666666666 L524.9739583333334 175.66666666666666 L507.6354166666667 175.66666666666666 L507.6354166666667 152.66666666666666 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M485.0 192.0 L499.0 192.0 L502.0 189.0 L488.0 189.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M485.0 192.0 L499.0 192.0 L502.0 189.0 L488.0 189.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M485.0 192.0 L499.0 192.0 L502.0 189.0 L488.0 189.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M485.0 178.0 L485.0 192.0 L488.0 189.0 L488.0 175.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M485.0 178.0 L485.0 192.0 L488.0 189.0 L488.0 175.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M485.0 178.0 L485.0 192.0 L488.0 189.0 L488.0 175.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M499.0 192.0 L499.0 178.0 L502.0 175.0 L502.0 189.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M499.0 192.0 L499.0 178.0 L502.0 175.0 L502.0 189.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M499.0 192.0 L499.0 178.0 L502.0 175.0 L502.0 189.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M499.0 178.0 L485.0 178.0 L488.0 175.0 L502.0 175.0 Z" style="fill-opacity:1.0;fill:#b5b5b5;"/><path d=" M499.0 178.0 L485.0 178.0 L488.0 175.0 L502.0 175.0 Z" style="fill-opacity:1.0;fill:#b5b5b5;"/><path d=" M499.0 178.0 L485.0 178.0 L488.0 175.0 L502.0 175.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M485.0 178.0 L485.0 192.0 L499.0 192.0 L499.0 178.0 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><path d=" M485.0 178.0 L485.0 192.0 L499.0 192.0 L499.0 178.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M507.6354166666667 173.99999999999997 L524.9739583333334 173.99999999999997 L524.9739583333334 196.99999999999997 L507.6354166666667 196.99999999999997 L507.6354166666667 173.99999999999997 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" x="510.3021" y="193.0">B</text><path d=" M507.6354166666667 173.99999999999997 L524.9739583333334 173.99999999999997 L524.9739583333334 196.99999999999997 L507.6354166666667 196.99999999999997 L507.6354166666667 173.99999999999997 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M485.0 213.0 L499.0 213.0 L502.0 210.0 L488.0 210.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M485.0 213.0 L499.0 213.0 L502.0 210.0 L488.0 210.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M485.0 213.0 L499.0 213.0 L502.0 210.0 L488.0 210.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M485.0 199.0 L485.0 213.0 L488.0 210.0 L488.0 196.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M485.0 199.0 L485.0 213.0 L488.0 210.0 L488.0 196.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M485.0 199.0 L485.0 213.0 L488.0 210.0 L488.0 196.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M499.0 213.0 L499.0 199.0 L502.0 196.0 L502.0 210.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M499.0 213.0 L499.0 199.0 L502.0 196.0 L502.0 210.0 Z" style="fill-opacity:1.0;fill:#585858;"/><path d=" M499.0 213.0 L499.0 199.0 L502.0 196.0 L502.0 210.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M499.0 199.0 L485.0 199.0 L488.0 196.0 L502.0 196.0 Z" style="fill-opacity:1.0;fill:#b5b5b5;"/><path d=" M499.0 199.0 L485.0 199.0 L488.0 196.0 L502.0 196.0 Z" style="fill-opacity:1.0;fill:#b5b5b5;"/><path d=" M499.0 199.0 L485.0 199.0 L488.0 196.0 L502.0 196.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M485.0 199.0 L485.0 213.0 L499.0 213.0 L499.0 199.0 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><path d=" M485.0 199.0 L485.0 213.0 L499.0 213.0 L499.0 199.0 Z" style="stroke:#7f7f7f;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M507.6354166666667 195.3333333333333 L525.8567708333334 195.3333333333333 L525.8567708333334 218.3333333333333 L507.6354166666667 218.3333333333333 L507.6354166666667 195.3333333333333 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" x="510.3021" y="214.33333">C</text><path d=" M507.6354166666667 195.3333333333333 L525.8567708333334 195.3333333333333 L525.8567708333334 218.3333333333333 L507.6354166666667 218.3333333333333 L507.6354166666667 195.3333333333333 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M446.7005208333333 71.21488426296368 L475.609375 71.21488426296368 L475.609375 94.21488426296368 L446.7005208333333 94.21488426296368 L446.7005208333333 71.21488426296368 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" x="449.3672" y="90.21488">5.0</text><path d=" M446.7005208333333 71.21488426296368 L475.609375 71.21488426296368 L475.609375 94.21488426296368 L446.7005208333333 94.21488426296368 L446.7005208333333 71.21488426296368 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M7.220703125000021 44.94250988680744 L36.129557291666686 44.94250988680744 L36.129557291666686 67.94250988680744 L7.220703125000021 67.94250988680744 L7.220703125000021 44.94250988680744 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" x="9.88737" y="63.94251">4.0</text><path d=" M7.220703125000021 44.94250988680744 L36.129557291666686 44.94250988680744 L36.129557291666686 67.94250988680744 L7.220703125000021 67.94250988680744 L7.220703125000021 44.94250988680744 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M-1.6777343749999787 279.469619926732 L36.129557291666686 279.469619926732 L36.129557291666686 302.469619926732 L-1.6777343749999787 302.469619926732 L-1.6777343749999787 279.469619926732 Z" style="fill-opacity:1.0;fill:#7f7f7f;"/><text font-family="SansSerif" font-size="16" style="fill-opacity:1.0;fill:#000000;" x="0.9889323" y="298.46964">12.0</text><path d=" M-1.6777343749999787 279.469619926732 L36.129557291666686 279.469619926732 L36.129557291666686 302.469619926732 L-1.6777343749999787 302.469619926732 L-1.6777343749999787 279.469619926732 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/></g><g id="hotSpots" style="fill-opacity:0.01;fill:#FFFFFF;"/></svg> \ No newline at end of file
diff --git a/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/3dvert.svg b/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/3dvert.svg
index 9de07a0..71cb07b 100644
--- a/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/3dvert.svg
+++ b/chart/org.eclipse.birt.chart.tests/src/org/eclipse/birt/chart/tests/device/golden/chart/3dvert.svg
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="533.0" height="333.0"><g style="fill:none;stroke:none"><defs/><script><![CDATA[function BuildHelper(tag, attrList, text) {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="533.0" height="333.0"><g id="outerG" style="fill:none;stroke:none"><defs/><script><![CDATA[function BuildHelper(tag, attrList, text) {
this.tag = tag;
this.attrList = attrList;
this.text = text;
@@ -71,42 +71,82 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
}
}
- TM.show = function TooltiplManager_showTooltip(evt){
- var text = TM.getText(TM.getTitleElement(evt));
- x = evt.clientX;
- y = evt.clientY;
- if (typeof this.group == 'undefined'){
- this.height = 15;
- this.xPadding = 5;
- this.yPadding = -20;
- var mainSvg = evt.target.ownerDocument.documentElement;
- var off = mainSvg.currentTranslate;
- var scl = mainSvg.currentScale;
- this.group = new BuildHelper("g",
- {
- transform:"translate("+(((x+20))/scl)+","+(((y+20))/scl)+")"
- } );
- this.group.addToParent(mainSvg);
- this.rectangle = new BuildHelper("rect",
- {id:"test",
- x: 0,
- y: this.yPadding,
- height: this.height,
- classType: "tooltip"
- } );
- this.rectangle.addToParent(this.group.element);
- var textObj = new BuildHelper("text",
- {id:"tooltip",
- x: this.xPadding,
- y: (this.height/2+4+this.yPadding),
- classType: "tooltip text"
- },text);
- textObj.addToParent(this.group.element);
- var itemlength = textObj.element.getComputedTextLength();
- this.rectangle.element.setAttributeNS(null, "width", (itemlength+2*this.xPadding));
- }
- }
-
+ TM.show = function TooltiplManager_showTooltip(evt){
+ var text = TM.getText(TM.getTitleElement(evt));
+ x = evt.clientX;
+ y = evt.clientY;
+ update = true;
+ if (this.oldX != 'undefined'){
+ diffX = (x - this.oldX);
+ if (diffX < 0) diffX= diffX*(-1);
+ diffY = (y - this.oldY);
+ if (diffY < 0) diffY= diffY*(-1);
+ if ((diffY > 5) || (diffX > 5))
+ update = true;
+ }
+ if (update)
+ TM.remove();
+ if (typeof this.group == 'undefined'){
+ this.oldX = x;
+ this.oldY = y;
+ this.height = 15;
+ this.xPadding = 5;
+ this.yPadding = 20;
+ var mainSvg = evt.target.ownerDocument.documentElement;
+ var off = mainSvg.currentTranslate;
+ var scl = mainSvg.currentScale;
+ var adjustedX = (x-off.x)/scl;
+ var adjustedY = (y-off.y)/scl;
+ this.group = new BuildHelper("g",
+ {
+ opacity:0.8,
+ display: "inline",
+ transform:"translate("+(adjustedX + (10/scl))+","+(adjustedY + (10/scl))+")"
+ } );
+ this.group.addToParent(mainSvg);
+ this.rectangle = new BuildHelper("rect",
+ {id:"test",
+ x: 0,
+ y: 5,
+ transform:"scale("+(1/scl)+","+(1/scl)+")",
+ rx: 2,
+ ry: 2,
+ stroke: "black",
+ height: this.height,
+ classType: "tooltip"
+ } );
+ this.rectangle.addToParent(this.group.element);
+ var textObj = new BuildHelper("text",
+ {id:"tooltip",
+ x: this.xPadding,
+ y: (this.yPadding),
+ transform:"scale("+(1/scl)+","+(1/scl)+")",
+ classType: "tooltip text"
+ });
+ textObj.addToParent(this.group.element);
+ TM.setContent(textObj, text);
+ var outline = textObj.element.getBBox();
+ this.rectangle.element.setAttributeNS(null, "width", (outline.width+2*this.xPadding));
+ this.rectangle.element.setAttributeNS(null, "height", (outline.height+6));
+ }
+ }
+ TM.setContent = function TooltipManager_setContent(textElement, text){
+ var multiLine = text.split(/\\n/);
+ for (var x=0; x<multiLine.length; x++){
+ if (x == 0){
+ textObj = new BuildHelper("tspan",
+ {x: 5
+ },multiLine[x]);
+ }
+ else{
+ textObj = new BuildHelper("tspan",
+ {x: 5,
+ dy:17
+ },multiLine[x]);
+ }
+ textObj.addToParent(textElement.element);
+ }
+ }
TM.getTitleElement = function TM_getTitleElement(evt){
var elem = evt.currentTarget;
@@ -126,15 +166,18 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
return childs.item(x).nodeValue;
return "";
}
- function toggleVisibility(evt, id, compList){
+ function toggleLabelsVisibility(evt, id, compList, labelList){
var mainSvg = evt.target.ownerDocument;
for (i = 0; i < compList.length; i=i+1){
var comp = mainSvg.getElementById(id+'_'+compList[i]);
+ if ( comp == null ) continue;
var styleStr = comp.getAttribute("style");
- rVisibleExp=/visibility:visible/g;
- rHiddenExp=/visibility:hidden/g;
+ rVisibleExp=/visibility:[ ]*visible/g;
+ rInheritExp=/visibility:[ ]*inherit/g;
+ rHiddenExp=/visibility:[ ]*hidden/g;
results = styleStr.search(rVisibleExp);
- if (results == -1){
+ inResults = styleStr.search(rInheritExp);
+ if ((results == -1) && (inResults == -1)){
results = styleStr.search(rHiddenExp);
if (results == -1)
styleStr = styleStr + "visibility:hidden;";
@@ -142,10 +185,74 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
styleStr = styleStr.replace(rHiddenExp,"visibility:visible");
}
else{
+ if (inResults == -1){
styleStr = styleStr.replace(rVisibleExp,"visibility:hidden");
+ }else{
+ styleStr = styleStr.replace(rInheritExp,"visibility:hidden");
+ }
}
comp.setAttributeNS(null, "style", styleStr);
}
+ }
+ function toggleVisibility(evt, id, compList, labelList){
+ var mainSvg = evt.target.ownerDocument;
+ var isHidden = true;
+ for (i = 0; i < compList.length; i=i+1){
+ var comp = mainSvg.getElementById(id+'_'+compList[i]);
+ if ( comp == null ) continue;
+ var styleStr = comp.getAttribute("style");
+ rVisibleExp=/visibility:[ ]*visible/g;
+ rHiddenExp=/visibility:[ ]*hidden/g;
+ results = styleStr.search(rVisibleExp);
+ if (results == -1){
+ results = styleStr.search(rHiddenExp);
+ if (results == -1)
+ styleStr = styleStr + "visibility:hidden;";
+ else{
+ styleStr = styleStr.replace(rHiddenExp,"visibility:visible");
+ isHidden = false;
+ }
+ }
+ else{
+ styleStr = styleStr.replace(rVisibleExp,"visibility:hidden");
+ }
+ comp.setAttributeNS(null, "style", styleStr);
+ }
+ if (labelList != null){
+ for (i = 0; i < labelList.length; i=i+1){
+ var comp = mainSvg.getElementById(id+'_'+labelList[i]+'_g');
+ var styleStr = comp.getAttribute("style");
+ if (isHidden){
+ styleStr = styleStr + "visibility:hidden;";
+ toggleLabelVisibility(evt, id+'_'+labelList[i], 'inherit');
+ }else{
+ styleStr = styleStr.replace(rHiddenExp,"visibility:visible");
+ }
+ comp.setAttributeNS(null, "style", styleStr);
+ }
+ }
+ }
+ function toggleLabelVisibility(evt, id, property){
+ var mainSvg = evt.target.ownerDocument;
+ var comp = mainSvg.getElementById(id);
+ var styleStr = comp.getAttribute("style");
+ rVisibleExp=/visibility:[ ]*visible/g;
+ rInheritExp=/visibility:[ ]*inherit/g;
+ rHiddenExp=/visibility:[ ]*hidden/g;
+ results = styleStr.search(rVisibleExp);
+ inResults = styleStr.search(rInheritExp);
+ if ((results == -1) && (inResults == -1)){
+ results = styleStr.search(rHiddenExp);
+ if (results == -1)
+ styleStr = styleStr + "visibility:"+property+";";
+ }
+ else{
+ if (inResults == -1)
+ styleStr = styleStr.replace(rVisibleExp,"visibility:"+property);
+ else
+ styleStr = styleStr.replace(rInheritExp,"visibility:"+property);
+ }
+ comp.setAttributeNS(null, "style", styleStr);
}
function toHex(val)
{
@@ -162,51 +269,104 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
}
var oldCompId = null;
var oldCompList = null;
+ var fillToColor = new Array();
+ var strokeToColor = new Array();
function highlight(evt, id, compList){
- highlightElement(evt, oldCompId, oldCompList);
+ highlightElement(evt, oldCompId, oldCompList, false);
if (id != oldCompId){
- highlightElement(evt, id, compList);
+ highlightElement(evt, id, compList, true);
oldCompId = id;
oldCompList = compList;
}
else{
oldCompId = null;
oldCompList = null;
+ fillToColor = new Array();
+ strokeToColor = new Array();
}
}
- function highlightElement(evt, id, compList){
+ function highlightElement(evt, id, compList, highlight){
if ((id == null) || (compList == null)) return;
var mainSvg = evt.target.ownerDocument;
for (i = 0; i < compList.length; i=i+1){
var comp = mainSvg.getElementById(id+'_'+compList[i]);
+ if ( comp == null ) continue;
var styleStr = comp.getAttribute("style");
fillIndex = styleStr.search("fill:");
if (fillIndex != -1){
- styleStr = getNewStyle(styleStr, fillIndex, "fill:");
+ styleStr = getNewStyle(styleStr, fillIndex, "fill:", highlight, fillToColor, compList[i]);
}
strokeIndex = styleStr.search("stroke:");
if (strokeIndex != -1){
- styleStr = getNewStyle(styleStr, strokeIndex, "stroke:");
+ styleStr = getNewStyle(styleStr, strokeIndex, "stroke:", highlight, strokeToColor, compList[i]);
}
comp.setAttributeNS(null, "style", styleStr);
}
}
- function getNewStyle(style, index, styleAttr){
+ function getNewStyle(style, index, styleAttr, highlight, lookUpTable, id){
color = style.substring(index+styleAttr.length, style.length );
rgbIndex = color.search("rgb");
if (rgbIndex == -1){
hexColor = color.substring(1, 7);
- hc = getXorColor(hexColor);
+ hc = getHighlight(hexColor, highlight, lookUpTable, id);
return style.replace(styleAttr+"#"+hexColor,styleAttr+hc);
}
else{
bracketIndex = color.search("\\)");
color = color.substring(0, bracketIndex);
hexColor = getHexFromRGB(color);
- hc = getXorColor(hexColor);
+ hc = getHighlight(hexColor, highlight, lookUpTable, id);
return style.substring(0, index) + styleAttr+hc+ style.substring(index+bracketIndex+styleAttr.length+1, style.length);
}
}
+ function isIE(){
+ var agt=parent.navigator.userAgent.toLowerCase();
+ return (agt.indexOf("msie")!=-1);
+}
+ function resizeSVG(e){
+ if(isIE()){
+ var root=e.target.ownerDocument.documentElement;
+ var hotSpot = e.target.ownerDocument.getElementById('hotSpots');
+ var g = e.target.ownerDocument.getElementById('outerG');
+ var xScale = (innerWidth) / root.getAttribute('width');
+ var yScale = (innerHeight) / root.getAttribute('height');
+ g.setAttributeNS(null, 'transform', 'scale('+xScale+','+yScale+')');
+ hotSpot.setAttributeNS(null, 'transform', 'scale('+xScale+','+yScale+')');
+ }
+ }
+ function getHighlight(color, highlight, lookupTable, id){
+ if (!(highlight)){
+ color = lookupTable[id];
+ }
+ else{
+ lookupTable[id] = color;
+ }
+ r = color.substring(0, 2);
+ r = parseInt(r, 16);
+ g = color.substring(2, 4);
+ g = parseInt(g, 16);
+ b = color.substring(4, 6);
+ b = parseInt(b, 16);
+ var value = parseInt(r, 16);
+ if (highlight){
+ r = Math.ceil( (r + 255) / 2 );
+ g = Math.ceil( (g + 255) / 2 );
+ b = Math.ceil( (b + 255) / 2 );
+ }
+ rStr = r.toString(16);
+ gStr = g.toString(16);
+ bStr = b.toString(16);
+ while (rStr.length < 2){
+ rStr = "0"+rStr;
+ }
+ while (gStr.length < 2){
+ gStr = "0"+gStr;
+ }
+ while (bStr.length < 2){
+ bStr = "0"+bStr;
+ }
+return "#"+rStr+gStr+bStr;
+}
function getHexFromRGB(color){
findThem = /\d{1,3}/g;
listOfnum = color.match(findThem);
@@ -224,4 +384,4 @@ TM.setParent = function TooltipManager_setParent(parent, mainSvg){
}
return r+g+b;
}
-]]></script><style type="text/css"><![CDATA[.tooltip.text{ text-anchor:left;font-size:12pt;fill:black;}.tooltip{fill:rgb(244,245,235)}]]></style><path d=" M0.0 0.0 L533.0 0.0 L533.0 333.0 L0.0 333.0 L0.0 0.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M4.0 4.0 L216.94791666666666 4.0 L216.94791666666666 49.0 L4.0 49.0 L4.0 4.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,6.666666507720947,42.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M2.34375 0.0 L2.34375 -22.90625 L10.9375 -22.90625 Q13.5625 -22.90625 15.1484375 -22.2109375 Q16.734375 -21.515625 17.6328125 -20.0703125 Q18.53125 -18.625 18.53125 -17.046875 Q18.53125 -15.578125 17.734375 -14.28125 Q16.9375 -12.984375 15.328125 -12.1875 Q17.40625 -11.578125 18.5234375 -10.109375 Q19.640625 -8.640625 19.640625 -6.640625 Q19.640625 -5.03125 18.9609375 -3.6484375 Q18.28125 -2.265625 17.28125 -1.515625 Q16.28125 -0.765625 14.7734375 -0.3828125 Q13.265625 0.0 11.078125 0.0 L2.34375 0.0 Z M5.375 -13.28125 L10.328125 -13.28125 Q12.34375 -13.28125 13.21875 -13.546875 Q14.375 -13.890625 14.9609375 -14.6875 Q15.546875 -15.484375 15.546875 -16.6875 Q15.546875 -17.828125 15.0 -18.6953125 Q14.453125 -19.5625 13.4375 -19.8828125 Q12.421875 -20.203125 9.953125 -20.203125 L5.375 -20.203125 L5.375 -13.28125 Z M5.375 -2.703125 L11.078125 -2.703125 Q12.546875 -2.703125 13.140625 -2.8125 Q14.1875 -3.0 14.890625 -3.4375 Q15.59375 -3.875 16.046875 -4.7109375 Q16.5 -5.546875 16.5 -6.640625 Q16.5 -7.921875 15.84375 -8.8671875 Q15.1875 -9.8125 14.0234375 -10.1953125 Q12.859375 -10.578125 10.671875 -10.578125 L5.375 -10.578125 L5.375 -2.703125 Z"/><path d=" M34.28125 -2.046875 Q32.71875 -0.71875 31.2734375 -0.171875 Q29.828125 0.375 28.171875 0.375 Q25.4375 0.375 23.96875 -0.9609375 Q22.5 -2.296875 22.5 -4.375 Q22.5 -5.59375 23.0546875 -6.6015625 Q23.609375 -7.609375 24.5078125 -8.21875 Q25.40625 -8.828125 26.53125 -9.140625 Q27.359375 -9.359375 29.03125 -9.5625 Q32.4375 -9.96875 34.046875 -10.53125 Q34.0625 -11.109375 34.0625 -11.265625 Q34.0625 -12.984375 33.265625 -13.6875 Q32.1875 -14.640625 30.0625 -14.640625 Q28.078125 -14.640625 27.1328125 -13.9453125 Q26.1875 -13.25 25.734375 -11.484375 L22.984375 -11.859375 Q23.359375 -13.625 24.21875 -14.7109375 Q25.078125 -15.796875 26.703125 -16.3828125 Q28.328125 -16.96875 30.46875 -16.96875 Q32.59375 -16.96875 33.921875 -16.46875 Q35.25 -15.96875 35.875 -15.2109375 Q36.5 -14.453125 36.75 -13.296875 Q36.890625 -12.578125 36.890625 -10.703125 L36.890625 -6.953125 Q36.890625 -3.03125 37.0703125 -1.9921875 Q37.25 -0.953125 37.78125 0.0 L34.84375 0.0 Q34.40625 -0.875 34.28125 -2.046875 Z M34.046875 -8.328125 Q32.515625 -7.703125 29.453125 -7.265625 Q27.71875 -7.015625 27.0 -6.703125 Q26.28125 -6.390625 25.890625 -5.7890625 Q25.5 -5.1875 25.5 -4.453125 Q25.5 -3.328125 26.3515625 -2.578125 Q27.203125 -1.828125 28.84375 -1.828125 Q30.46875 -1.828125 31.734375 -2.5390625 Q33.0 -3.25 33.59375 -4.484375 Q34.046875 -5.4375 34.046875 -7.296875 L34.046875 -8.328125 Z"/><path d=" M41.21875 0.0 L41.21875 -16.59375 L43.75 -16.59375 L43.75 -14.078125 Q44.71875 -15.84375 45.5390625 -16.40625 Q46.359375 -16.96875 47.34375 -16.96875 Q48.765625 -16.96875 50.234375 -16.0625 L49.265625 -13.453125 Q48.234375 -14.0625 47.203125 -14.0625 Q46.28125 -14.0625 45.546875 -13.5078125 Q44.8125 -12.953125 44.5 -11.96875 Q44.03125 -10.46875 44.03125 -8.6875 L44.03125 0.0 L41.21875 0.0 Z"/><path d=""/><path d=" M77.5 -8.03125 L80.53125 -7.265625 Q79.578125 -3.53125 77.1015625 -1.5703125 Q74.625 0.390625 71.046875 0.390625 Q67.34375 0.390625 65.0234375 -1.1171875 Q62.703125 -2.625 61.4921875 -5.484375 Q60.28125 -8.34375 60.28125 -11.625 Q60.28125 -15.203125 61.6484375 -17.8671875 Q63.015625 -20.53125 65.5390625 -21.9140625 Q68.0625 -23.296875 71.09375 -23.296875 Q74.53125 -23.296875 76.875 -21.546875 Q79.21875 -19.796875 80.140625 -16.625 L77.15625 -15.921875 Q76.359375 -18.421875 74.84375 -19.5625 Q73.328125 -20.703125 71.03125 -20.703125 Q68.390625 -20.703125 66.6171875 -19.4375 Q64.84375 -18.171875 64.125 -16.0390625 Q63.40625 -13.90625 63.40625 -11.640625 Q63.40625 -8.71875 64.2578125 -6.5390625 Q65.109375 -4.359375 66.90625 -3.28125 Q68.703125 -2.203125 70.796875 -2.203125 Q73.34375 -2.203125 75.109375 -3.671875 Q76.875 -5.140625 77.5 -8.03125 Z"/><path d=" M83.90625 0.0 L83.90625 -22.90625 L86.71875 -22.90625 L86.71875 -14.6875 Q88.6875 -16.96875 91.6875 -16.96875 Q93.53125 -16.96875 94.890625 -16.2421875 Q96.25 -15.515625 96.8359375 -14.234375 Q97.421875 -12.953125 97.421875 -10.515625 L97.421875 0.0 L94.609375 0.0 L94.609375 -10.515625 Q94.609375 -12.625 93.6953125 -13.5859375 Q92.78125 -14.546875 91.109375 -14.546875 Q89.859375 -14.546875 88.7578125 -13.8984375 Q87.65625 -13.25 87.1875 -12.140625 Q86.71875 -11.03125 86.71875 -9.078125 L86.71875 0.0 L83.90625 0.0 Z"/><path d=" M112.53125 -2.046875 Q110.96875 -0.71875 109.5234375 -0.171875 Q108.078125 0.375 106.421875 0.375 Q103.6875 0.375 102.21875 -0.9609375 Q100.75 -2.296875 100.75 -4.375 Q100.75 -5.59375 101.3046875 -6.6015625 Q101.859375 -7.609375 102.7578125 -8.21875 Q103.65625 -8.828125 104.78125 -9.140625 Q105.609375 -9.359375 107.28125 -9.5625 Q110.6875 -9.96875 112.296875 -10.53125 Q112.3125 -11.109375 112.3125 -11.265625 Q112.3125 -12.984375 111.515625 -13.6875 Q110.4375 -14.640625 108.3125 -14.640625 Q106.328125 -14.640625 105.3828125 -13.9453125 Q104.4375 -13.25 103.984375 -11.484375 L101.234375 -11.859375 Q101.609375 -13.625 102.46875 -14.7109375 Q103.328125 -15.796875 104.953125 -16.3828125 Q106.578125 -16.96875 108.71875 -16.96875 Q110.84375 -16.96875 112.171875 -16.46875 Q113.5 -15.96875 114.125 -15.2109375 Q114.75 -14.453125 115.0 -13.296875 Q115.140625 -12.578125 115.140625 -10.703125 L115.140625 -6.953125 Q115.140625 -3.03125 115.3203125 -1.9921875 Q115.5 -0.953125 116.03125 0.0 L113.09375 0.0 Q112.65625 -0.875 112.53125 -2.046875 Z M112.296875 -8.328125 Q110.765625 -7.703125 107.703125 -7.265625 Q105.96875 -7.015625 105.25 -6.703125 Q104.53125 -6.390625 104.140625 -5.7890625 Q103.75 -5.1875 103.75 -4.453125 Q103.75 -3.328125 104.6015625 -2.578125 Q105.453125 -1.828125 107.09375 -1.828125 Q108.71875 -1.828125 109.984375 -2.5390625 Q111.25 -3.25 111.84375 -4.484375 Q112.296875 -5.4375 112.296875 -7.296875 L112.296875 -8.328125 Z"/><path d=" M119.46875 0.0 L119.46875 -16.59375 L122.0 -16.59375 L122.0 -14.078125 Q122.96875 -15.84375 123.7890625 -16.40625 Q124.609375 -16.96875 125.59375 -16.96875 Q127.015625 -16.96875 128.484375 -16.0625 L127.515625 -13.453125 Q126.484375 -14.0625 125.453125 -14.0625 Q124.53125 -14.0625 123.796875 -13.5078125 Q123.0625 -12.953125 122.75 -11.96875 Q122.28125 -10.46875 122.28125 -8.6875 L122.28125 0.0 L119.46875 0.0 Z"/><path d=" M136.296875 -2.515625 L136.703125 -0.03125 Q135.515625 0.21875 134.578125 0.21875 Q133.046875 0.21875 132.203125 -0.265625 Q131.359375 -0.75 131.015625 -1.5390625 Q130.671875 -2.328125 130.671875 -4.859375 L130.671875 -14.40625 L128.609375 -14.40625 L128.609375 -16.59375 L130.671875 -16.59375 L130.671875 -20.703125 L133.46875 -22.390625 L133.46875 -16.59375 L136.296875 -16.59375 L136.296875 -14.40625 L133.46875 -14.40625 L133.46875 -4.703125 Q133.46875 -3.5 133.6171875 -3.15625 Q133.765625 -2.8125 134.1015625 -2.609375 Q134.4375 -2.40625 135.0625 -2.40625 Q135.53125 -2.40625 136.296875 -2.515625 Z"/><path d=""/><path d=" M154.125 0.0 L154.125 -20.203125 L146.578125 -20.203125 L146.578125 -22.90625 L164.734375 -22.90625 L164.734375 -20.203125 L157.15625 -20.203125 L157.15625 0.0 L154.125 0.0 Z"/><path d=" M167.5 -19.671875 L167.5 -22.90625 L170.3125 -22.90625 L170.3125 -19.671875 L167.5 -19.671875 Z M167.5 0.0 L167.5 -16.59375 L170.3125 -16.59375 L170.3125 0.0 L167.5 0.0 Z"/><path d=" M180.734375 -2.515625 L181.140625 -0.03125 Q179.953125 0.21875 179.015625 0.21875 Q177.484375 0.21875 176.640625 -0.265625 Q175.796875 -0.75 175.453125 -1.5390625 Q175.109375 -2.328125 175.109375 -4.859375 L175.109375 -14.40625 L173.046875 -14.40625 L173.046875 -16.59375 L175.109375 -16.59375 L175.109375 -20.703125 L177.90625 -22.390625 L177.90625 -16.59375 L180.734375 -16.59375 L180.734375 -14.40625 L177.90625 -14.40625 L177.90625 -4.703125 Q177.90625 -3.5 178.0546875 -3.15625 Q178.203125 -2.8125 178.5390625 -2.609375 Q178.875 -2.40625 179.5 -2.40625 Q179.96875 -2.40625 180.734375 -2.515625 Z"/><path d=" M183.421875 0.0 L183.421875 -22.90625 L186.234375 -22.90625 L186.234375 0.0 L183.421875 0.0 Z"/><path d=" M201.953125 -5.34375 L204.859375 -4.984375 Q204.171875 -2.4375 202.3125 -1.03125 Q200.453125 0.375 197.5625 0.375 Q193.921875 0.375 191.7890625 -1.8671875 Q189.65625 -4.109375 189.65625 -8.15625 Q189.65625 -12.34375 191.8125 -14.65625 Q193.96875 -16.96875 197.40625 -16.96875 Q200.734375 -16.96875 202.84375 -14.703125 Q204.953125 -12.4375 204.953125 -8.328125 Q204.953125 -8.078125 204.9375 -7.578125 L192.5625 -7.578125 Q192.71875 -4.84375 194.109375 -3.390625 Q195.5 -1.9375 197.578125 -1.9375 Q199.125 -1.9375 200.21875 -2.75 Q201.3125 -3.5625 201.953125 -5.34375 Z M192.71875 -9.890625 L201.984375 -9.890625 Q201.796875 -11.984375 200.921875 -13.03125 Q199.578125 -14.65625 197.4375 -14.65625 Q195.5 -14.65625 194.1796875 -13.359375 Q192.859375 -12.0625 192.71875 -9.890625 Z"/></g></g><path d=" M4.0 4.0 L216.94791666666666 4.0 L216.94791666666666 49.0 L4.0 49.0 L4.0 4.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M78.79557291666666 54.0 L436.73046875 54.0 L436.73046875 264.0 L78.79557291666666 264.0 L78.79557291666666 54.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M65.0 277.0 L65.0 67.0 L78.0 54.0 L78.0 264.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M65.0 277.0 L65.0 67.0 L78.0 54.0 L78.0 264.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M65.0 67.0 L65.0 277.0 L78.0 264.0 L78.0 54.0 Z" style="fill-opacity:1.0;fill:#b2b2b2;"/><path d=" M65.0 67.0 L65.0 277.0 L78.0 264.0 L78.0 54.0 Z" style="fill-opacity:1.0;fill:#b2b2b2;"/><path d=" M65.0 277.0 L65.0 67.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M65.0 277.0 L423.0 277.0 L436.0 264.0 L78.0 264.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M65.0 277.0 L423.0 277.0 L436.0 264.0 L78.0 264.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M423.0 277.0 L65.0 277.0 L78.0 264.0 L436.0 264.0 Z" style="fill-opacity:1.0;fill:#b2b2b2;"/><path d=" M423.0 277.0 L65.0 277.0 L78.0 264.0 L436.0 264.0 Z" style="fill-opacity:1.0;fill:#b2b2b2;"/><path d=" M65.0 277.0 L423.0 277.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><path d=" M65.46223958333333 283.0 L422.3971354166667 283.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M65.0 278.0 L65.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M184.0 278.0 L184.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M303.0 278.0 L303.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M422.0 278.0 L422.0 288.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M65.46223958333331 305.0 L179.88815307617188 305.0 L179.88815307617188 335.0 L65.46223958333331 335.0 L65.46223958333331 305.0 Z" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,68.12890625,330.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.09375 0.0 L5.90625 -7.828125 L0.78125 -15.03125 L3.140625 -15.03125 L5.875 -11.171875 Q6.734375 -9.984375 7.078125 -9.328125 Q7.59375 -10.15625 8.28125 -11.046875 L11.296875 -15.03125 L13.46875 -15.03125 L8.1875 -7.953125 L13.875 0.0 L11.40625 0.0 L7.625 -5.359375 Q7.3125 -5.828125 6.96875 -6.375 Q6.46875 -5.546875 6.25 -5.234375 L2.484375 0.0 L0.09375 0.0 Z"/><path d=" M14.88714599609375 -4.515625 L14.88714599609375 -6.375 L20.55902099609375 -6.375 L20.55902099609375 -4.515625 L14.88714599609375 -4.515625 Z"/><path d=" M21.28125 0.0 L27.0625 -15.03125 L29.203125 -15.03125 L35.34375 0.0 L33.078125 0.0 L31.328125 -4.546875 L25.046875 -4.546875 L23.390625 0.0 L21.28125 0.0 Z M25.625 -6.171875 L30.71875 -6.171875 L29.140625 -10.34375 Q28.421875 -12.234375 28.078125 -13.453125 Q27.796875 -12.0 27.265625 -10.578125 L25.625 -6.171875 Z"/><path d=" M35.68402099609375 0.0 L39.65277099609375 -5.65625 L35.98089599609375 -10.890625 L38.29339599609375 -10.890625 L39.96527099609375 -8.34375 Q40.43402099609375 -7.609375 40.71527099609375 -7.109375 Q41.16839599609375 -7.796875 41.54339599609375 -8.3125 L43.38714599609375 -10.890625 L45.59027099609375 -10.890625 L41.82464599609375 -5.765625 L45.87152099609375 0.0 L43.60589599609375 0.0 L41.37152099609375 -3.390625 L40.77777099609375 -4.296875 L37.91839599609375 0.0 L35.68402099609375 0.0 Z"/><path d=" M47.57464599609375 -12.90625 L47.57464599609375 -15.03125 L49.41839599609375 -15.03125 L49.41839599609375 -12.90625 L47.57464599609375 -12.90625 Z M47.57464599609375 0.0 L47.57464599609375 -10.890625 L49.41839599609375 -10.890625 L49.41839599609375 0.0 L47.57464599609375 0.0 Z"/><path d=" M51.559600830078125 -3.25 L53.387725830078125 -3.53125 Q53.543975830078125 -2.4375 54.247100830078125 -1.8515625 Q54.950225830078125 -1.265625 56.215850830078125 -1.265625 Q57.481475830078125 -1.265625 58.098663330078125 -1.7890625 Q58.715850830078125 -2.3125 58.715850830078125 -3.0 Q58.715850830078125 -3.625 58.168975830078125 -3.984375 Q57.793975830078125 -4.234375 56.278350830078125 -4.609375 Q54.247100830078125 -5.125 53.465850830078125 -5.5 Q52.684600830078125 -5.875 52.278350830078125 -6.5390625 Q51.872100830078125 -7.203125 51.872100830078125 -8.0 Q51.872100830078125 -8.71875 52.208038330078125 -9.34375 Q52.543975830078125 -9.96875 53.106475830078125 -10.375 Q53.543975830078125 -10.6875 54.286163330078125 -10.9140625 Q55.028350830078125 -11.140625 55.887725830078125 -11.140625 Q57.168975830078125 -11.140625 58.137725830078125 -10.765625 Q59.106475830078125 -10.390625 59.567413330078125 -9.765625 Q60.028350830078125 -9.140625 60.200225830078125 -8.078125 L58.387725830078125 -7.828125 Q58.278350830078125 -8.671875 57.684600830078125 -9.1484375 Q57.090850830078125 -9.625 56.012725830078125 -9.625 Q54.747100830078125 -9.625 54.200225830078125 -9.203125 Q53.653350830078125 -8.78125 53.653350830078125 -8.21875 Q53.653350830078125 -7.859375 53.887725830078125 -7.5625 Q54.106475830078125 -7.265625 54.590850830078125 -7.078125 Q54.872100830078125 -6.96875 56.215850830078125 -6.609375 Q58.184600830078125 -6.078125 58.958038330078125 -5.75 Q59.731475830078125 -5.421875 60.168975830078125 -4.78125 Q60.606475830078125 -4.140625 60.606475830078125 -3.203125 Q60.606475830078125 -2.28125 60.067413330078125 -1.4609375 Q59.528350830078125 -0.640625 58.512725830078125 -0.1953125 Q57.497100830078125 0.25 56.215850830078125 0.25 Q54.090850830078125 0.25 52.981475830078125 -0.6328125 Q51.872100830078125 -1.515625 51.559600830078125 -3.25 Z"/><path d=""/><path d=" M72.93402099609375 0.0 L72.93402099609375 -13.265625 L67.99652099609375 -13.265625 L67.99652099609375 -15.03125 L79.90277099609375 -15.03125 L79.90277099609375 -13.265625 L74.93402099609375 -13.265625 L74.93402099609375 0.0 L72.93402099609375 0.0 Z"/><path d=" M81.90567016601562 -12.90625 L81.90567016601562 -15.03125 L83.74942016601562 -15.03125 L83.74942016601562 -12.90625 L81.90567016601562 -12.90625 Z M81.90567016601562 0.0 L81.90567016601562 -10.890625 L83.74942016601562 -10.890625 L83.74942016601562 0.0 L81.90567016601562 0.0 Z"/><path d=" M90.671875 -1.65625 L90.9375 -0.015625 Q90.15625 0.140625 89.53125 0.140625 Q88.53125 0.140625 87.9765625 -0.1796875 Q87.421875 -0.5 87.1953125 -1.015625 Q86.96875 -1.53125 86.96875 -3.1875 L86.96875 -9.453125 L85.625 -9.453125 L85.625 -10.890625 L86.96875 -10.890625 L86.96875 -13.59375 L88.8125 -14.6875 L88.8125 -10.890625 L90.671875 -10.890625 L90.671875 -9.453125 L88.8125 -9.453125 L88.8125 -3.09375 Q88.8125 -2.296875 88.90625 -2.0703125 Q89.0 -1.84375 89.21875 -1.7109375 Q89.4375 -1.578125 89.859375 -1.578125 Q90.15625 -1.578125 90.671875 -1.65625 Z"/><path d=" M92.51504516601562 0.0 L92.51504516601562 -15.03125 L94.35879516601562 -15.03125 L94.35879516601562 0.0 L92.51504516601562 0.0 Z"/><path d=" M104.75 -3.5 L106.65625 -3.265625 Q106.203125 -1.59375 104.984375 -0.671875 Q103.765625 0.25 101.859375 0.25 Q99.46875 0.25 98.0703125 -1.2265625 Q96.671875 -2.703125 96.671875 -5.359375 Q96.671875 -8.09375 98.0859375 -9.6171875 Q99.5 -11.140625 101.765625 -11.140625 Q103.953125 -11.140625 105.3359375 -9.6484375 Q106.71875 -8.15625 106.71875 -5.46875 Q106.71875 -5.296875 106.703125 -4.96875 L98.578125 -4.96875 Q98.6875 -3.171875 99.6015625 -2.21875 Q100.515625 -1.265625 101.875 -1.265625 Q102.890625 -1.265625 103.609375 -1.8046875 Q104.328125 -2.34375 104.75 -3.5 Z M98.6875 -6.484375 L104.765625 -6.484375 Q104.640625 -7.859375 104.0625 -8.546875 Q103.1875 -9.625 101.78125 -9.625 Q100.515625 -9.625 99.6484375 -8.7734375 Q98.78125 -7.921875 98.6875 -6.484375 Z"/></g></g><path d=" M65.46223958333331 305.0 L179.88815307617188 305.0 L179.88815307617188 335.0 L65.46223958333331 335.0 L65.46223958333331 305.0 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M58.795572916666664 276.3333333333333 L58.795572916666664 67.33333333333333" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M53.795572916666664 276.0 L63.795572916666664 276.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M53.795572916666664 255.0 L63.795572916666664 255.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M53.795572916666664 234.0 L63.795572916666664 234.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M53.795572916666664 213.0 L63.795572916666664 213.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M53.795572916666664 192.0 L63.795572916666664 192.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M53.795572916666664 171.0 L63.795572916666664 171.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M53.795572916666664 150.0 L63.795572916666664 150.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M53.795572916666664 130.0 L63.795572916666664 130.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M53.795572916666664 109.0 L63.795572916666664 109.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M53.795572916666664 88.0 L63.795572916666664 88.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M53.795572916666664 67.0 L63.795572916666664 67.0" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M37.00000000000001 151.75924682617188 L151.42591349283856 151.75924682617188 L151.42591349283856 181.75924682617188 L37.00000000000001 181.75924682617188 L37.00000000000001 151.75924682617188 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-144.75924682617188,218.75924682617188)" style="fill-opacity:1.0;fill:#ffffff;"/><g><g transform="matrix(-0.0,-1.0,1.0,0.0,32.0,179.09257888793945)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.859375 0.0 L5.859375 -6.375 L0.0625 -15.03125 L2.484375 -15.03125 L5.4375 -10.5 Q6.265625 -9.234375 6.96875 -7.953125 Q7.65625 -9.140625 8.609375 -10.609375 L11.53125 -15.03125 L13.84375 -15.03125 L7.84375 -6.375 L7.84375 0.0 L5.859375 0.0 Z"/><path d=" M14.88714599609375 -4.515625 L14.88714599609375 -6.375 L20.55902099609375 -6.375 L20.55902099609375 -4.515625 L14.88714599609375 -4.515625 Z"/><path d=" M21.28125 0.0 L27.0625 -15.03125 L29.203125 -15.03125 L35.34375 0.0 L33.078125 0.0 L31.328125 -4.546875 L25.046875 -4.546875 L23.390625 0.0 L21.28125 0.0 Z M25.625 -6.171875 L30.71875 -6.171875 L29.140625 -10.34375 Q28.421875 -12.234375 28.078125 -13.453125 Q27.796875 -12.0 27.265625 -10.578125 L25.625 -6.171875 Z"/><path d=" M35.68402099609375 0.0 L39.65277099609375 -5.65625 L35.98089599609375 -10.890625 L38.29339599609375 -10.890625 L39.96527099609375 -8.34375 Q40.43402099609375 -7.609375 40.71527099609375 -7.109375 Q41.16839599609375 -7.796875 41.54339599609375 -8.3125 L43.38714599609375 -10.890625 L45.59027099609375 -10.890625 L41.82464599609375 -5.765625 L45.87152099609375 0.0 L43.60589599609375 0.0 L41.37152099609375 -3.390625 L40.77777099609375 -4.296875 L37.91839599609375 0.0 L35.68402099609375 0.0 Z"/><path d=" M47.57464599609375 -12.90625 L47.57464599609375 -15.03125 L49.41839599609375 -15.03125 L49.41839599609375 -12.90625 L47.57464599609375 -12.90625 Z M47.57464599609375 0.0 L47.57464599609375 -10.890625 L49.41839599609375 -10.890625 L49.41839599609375 0.0 L47.57464599609375 0.0 Z"/><path d=" M51.559600830078125 -3.25 L53.387725830078125 -3.53125 Q53.543975830078125 -2.4375 54.247100830078125 -1.8515625 Q54.950225830078125 -1.265625 56.215850830078125 -1.265625 Q57.481475830078125 -1.265625 58.098663330078125 -1.7890625 Q58.715850830078125 -2.3125 58.715850830078125 -3.0 Q58.715850830078125 -3.625 58.168975830078125 -3.984375 Q57.793975830078125 -4.234375 56.278350830078125 -4.609375 Q54.247100830078125 -5.125 53.465850830078125 -5.5 Q52.684600830078125 -5.875 52.278350830078125 -6.5390625 Q51.872100830078125 -7.203125 51.872100830078125 -8.0 Q51.872100830078125 -8.71875 52.208038330078125 -9.34375 Q52.543975830078125 -9.96875 53.106475830078125 -10.375 Q53.543975830078125 -10.6875 54.286163330078125 -10.9140625 Q55.028350830078125 -11.140625 55.887725830078125 -11.140625 Q57.168975830078125 -11.140625 58.137725830078125 -10.765625 Q59.106475830078125 -10.390625 59.567413330078125 -9.765625 Q60.028350830078125 -9.140625 60.200225830078125 -8.078125 L58.387725830078125 -7.828125 Q58.278350830078125 -8.671875 57.684600830078125 -9.1484375 Q57.090850830078125 -9.625 56.012725830078125 -9.625 Q54.747100830078125 -9.625 54.200225830078125 -9.203125 Q53.653350830078125 -8.78125 53.653350830078125 -8.21875 Q53.653350830078125 -7.859375 53.887725830078125 -7.5625 Q54.106475830078125 -7.265625 54.590850830078125 -7.078125 Q54.872100830078125 -6.96875 56.215850830078125 -6.609375 Q58.184600830078125 -6.078125 58.958038330078125 -5.75 Q59.731475830078125 -5.421875 60.168975830078125 -4.78125 Q60.606475830078125 -4.140625 60.606475830078125 -3.203125 Q60.606475830078125 -2.28125 60.067413330078125 -1.4609375 Q59.528350830078125 -0.640625 58.512725830078125 -0.1953125 Q57.497100830078125 0.25 56.215850830078125 0.25 Q54.090850830078125 0.25 52.981475830078125 -0.6328125 Q51.872100830078125 -1.515625 51.559600830078125 -3.25 Z"/><path d=""/><path d=" M72.93402099609375 0.0 L72.93402099609375 -13.265625 L67.99652099609375 -13.265625 L67.99652099609375 -15.03125 L79.90277099609375 -15.03125 L79.90277099609375 -13.265625 L74.93402099609375 -13.265625 L74.93402099609375 0.0 L72.93402099609375 0.0 Z"/><path d=" M81.90567016601562 -12.90625 L81.90567016601562 -15.03125 L83.74942016601562 -15.03125 L83.74942016601562 -12.90625 L81.90567016601562 -12.90625 Z M81.90567016601562 0.0 L81.90567016601562 -10.890625 L83.74942016601562 -10.890625 L83.74942016601562 0.0 L81.90567016601562 0.0 Z"/><path d=" M90.671875 -1.65625 L90.9375 -0.015625 Q90.15625 0.140625 89.53125 0.140625 Q88.53125 0.140625 87.9765625 -0.1796875 Q87.421875 -0.5 87.1953125 -1.015625 Q86.96875 -1.53125 86.96875 -3.1875 L86.96875 -9.453125 L85.625 -9.453125 L85.625 -10.890625 L86.96875 -10.890625 L86.96875 -13.59375 L88.8125 -14.6875 L88.8125 -10.890625 L90.671875 -10.890625 L90.671875 -9.453125 L88.8125 -9.453125 L88.8125 -3.09375 Q88.8125 -2.296875 88.90625 -2.0703125 Q89.0 -1.84375 89.21875 -1.7109375 Q89.4375 -1.578125 89.859375 -1.578125 Q90.15625 -1.578125 90.671875 -1.65625 Z"/><path d=" M92.51504516601562 0.0 L92.51504516601562 -15.03125 L94.35879516601562 -15.03125 L94.35879516601562 0.0 L92.51504516601562 0.0 Z"/><path d=" M104.75 -3.5 L106.65625 -3.265625 Q106.203125 -1.59375 104.984375 -0.671875 Q103.765625 0.25 101.859375 0.25 Q99.46875 0.25 98.0703125 -1.2265625 Q96.671875 -2.703125 96.671875 -5.359375 Q96.671875 -8.09375 98.0859375 -9.6171875 Q99.5 -11.140625 101.765625 -11.140625 Q103.953125 -11.140625 105.3359375 -9.6484375 Q106.71875 -8.15625 106.71875 -5.46875 Q106.71875 -5.296875 106.703125 -4.96875 L98.578125 -4.96875 Q98.6875 -3.171875 99.6015625 -2.21875 Q100.515625 -1.265625 101.875 -1.265625 Q102.890625 -1.265625 103.609375 -1.8046875 Q104.328125 -2.34375 104.75 -3.5 Z M98.6875 -6.484375 L104.765625 -6.484375 Q104.640625 -7.859375 104.0625 -8.546875 Q103.1875 -9.625 101.78125 -9.625 Q100.515625 -9.625 99.6484375 -8.7734375 Q98.78125 -7.921875 98.6875 -6.484375 Z"/></g></g><path d=" M37.00000000000001 151.75924682617188 L151.42591349283856 151.75924682617188 L151.42591349283856 181.75924682617188 L37.00000000000001 181.75924682617188 L37.00000000000001 151.75924682617188 Z" transform="matrix(-0.0,-1.0,1.0,0.0,-144.75924682617188,218.75924682617188)" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M94.0 275.0 L153.0 275.0 L166.0 262.0 L108.0 262.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0059b2;"/><path d=" M94.0 275.0 L153.0 275.0 L166.0 262.0 L108.0 262.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#003e7c;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M94.0 275.0 L153.0 275.0 L166.0 262.0 L108.0 262.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0059b2;"/><path d=" M94.0 275.0 L153.0 275.0 L166.0 262.0 L108.0 262.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#003e7c;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M94.0 67.0 L94.0 275.0 L108.0 262.0 L108.0 54.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0059b2;"/><path d=" M94.0 67.0 L94.0 275.0 L108.0 262.0 L108.0 54.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#003e7c;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M94.0 67.0 L94.0 275.0 L108.0 262.0 L108.0 54.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0059b2;"/><path d=" M94.0 67.0 L94.0 275.0 L108.0 262.0 L108.0 54.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#003e7c;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M153.0 275.0 L153.0 67.0 L166.0 54.0 L166.0 262.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0059b2;"/><path d=" M153.0 275.0 L153.0 67.0 L166.0 54.0 L166.0 262.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#003e7c;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M153.0 275.0 L153.0 67.0 L166.0 54.0 L166.0 262.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0059b2;"/><path d=" M153.0 275.0 L153.0 67.0 L166.0 54.0 L166.0 262.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#003e7c;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M153.0 67.0 L94.0 67.0 L108.0 54.0 L166.0 54.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#00b6ff;"/><path d=" M153.0 67.0 L94.0 67.0 L108.0 54.0 L166.0 54.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#007fb2;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M153.0 67.0 L94.0 67.0 L108.0 54.0 L166.0 54.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#00b6ff;"/><path d=" M153.0 67.0 L94.0 67.0 L108.0 54.0 L166.0 54.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#007fb2;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M94.0 67.0 L94.0 275.0 L153.0 275.0 L153.0 67.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M94.0 67.0 L94.0 275.0 L153.0 275.0 L153.0 67.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#0059b2;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M213.0 275.0 L272.0 275.0 L285.0 262.0 L227.0 262.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0059b2;"/><path d=" M213.0 275.0 L272.0 275.0 L285.0 262.0 L227.0 262.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#003e7c;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M213.0 275.0 L272.0 275.0 L285.0 262.0 L227.0 262.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0059b2;"/><path d=" M213.0 275.0 L272.0 275.0 L285.0 262.0 L227.0 262.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#003e7c;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M213.0 67.0 L213.0 275.0 L227.0 262.0 L227.0 54.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0059b2;"/><path d=" M213.0 67.0 L213.0 275.0 L227.0 262.0 L227.0 54.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#003e7c;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M213.0 67.0 L213.0 275.0 L227.0 262.0 L227.0 54.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0059b2;"/><path d=" M213.0 67.0 L213.0 275.0 L227.0 262.0 L227.0 54.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#003e7c;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M272.0 275.0 L272.0 67.0 L285.0 54.0 L285.0 262.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0059b2;"/><path d=" M272.0 275.0 L272.0 67.0 L285.0 54.0 L285.0 262.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#003e7c;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M272.0 275.0 L272.0 67.0 L285.0 54.0 L285.0 262.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0059b2;"/><path d=" M272.0 275.0 L272.0 67.0 L285.0 54.0 L285.0 262.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#003e7c;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M272.0 67.0 L213.0 67.0 L227.0 54.0 L285.0 54.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#00b6ff;"/><path d=" M272.0 67.0 L213.0 67.0 L227.0 54.0 L285.0 54.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#007fb2;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M272.0 67.0 L213.0 67.0 L227.0 54.0 L285.0 54.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#00b6ff;"/><path d=" M272.0 67.0 L213.0 67.0 L227.0 54.0 L285.0 54.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#007fb2;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M213.0 67.0 L213.0 275.0 L272.0 275.0 L272.0 67.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M213.0 67.0 L213.0 275.0 L272.0 275.0 L272.0 67.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#0059b2;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M332.0 275.0 L391.0 275.0 L404.0 262.0 L346.0 262.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0059b2;"/><path d=" M332.0 275.0 L391.0 275.0 L404.0 262.0 L346.0 262.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#003e7c;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M332.0 275.0 L391.0 275.0 L404.0 262.0 L346.0 262.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0059b2;"/><path d=" M332.0 275.0 L391.0 275.0 L404.0 262.0 L346.0 262.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#003e7c;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M332.0 67.0 L332.0 275.0 L346.0 262.0 L346.0 54.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0059b2;"/><path d=" M332.0 67.0 L332.0 275.0 L346.0 262.0 L346.0 54.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#003e7c;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M332.0 67.0 L332.0 275.0 L346.0 262.0 L346.0 54.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0059b2;"/><path d=" M332.0 67.0 L332.0 275.0 L346.0 262.0 L346.0 54.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#003e7c;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M391.0 275.0 L391.0 67.0 L404.0 54.0 L404.0 262.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0059b2;"/><path d=" M391.0 275.0 L391.0 67.0 L404.0 54.0 L404.0 262.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#003e7c;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M391.0 275.0 L391.0 67.0 L404.0 54.0 L404.0 262.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0059b2;"/><path d=" M391.0 275.0 L391.0 67.0 L404.0 54.0 L404.0 262.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#003e7c;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M391.0 67.0 L332.0 67.0 L346.0 54.0 L404.0 54.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#00b6ff;"/><path d=" M391.0 67.0 L332.0 67.0 L346.0 54.0 L404.0 54.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#007fb2;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M391.0 67.0 L332.0 67.0 L346.0 54.0 L404.0 54.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#00b6ff;"/><path d=" M391.0 67.0 L332.0 67.0 L346.0 54.0 L404.0 54.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#007fb2;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M332.0 67.0 L332.0 275.0 L391.0 275.0 L391.0 67.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><path d=" M332.0 67.0 L332.0 275.0 L391.0 275.0 L391.0 67.0 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="stroke:#0059b2;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M109.54557291666667 39.33333333333333 L138.45442708333334 39.33333333333333 L138.45442708333334 62.33333333333333 L109.54557291666667 62.33333333333333 L109.54557291666667 39.33333333333333 Z" transform="matrix(1.0,0.0,0.0,1.0,-7.105427357601002E-15,0.0)" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,112.21224212646484,58.33333206176758)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.671875 -3.0 L2.140625 -3.125 Q2.3125 -2.046875 2.90625 -1.5078125 Q3.5 -0.96875 4.34375 -0.96875 Q5.359375 -0.96875 6.0625 -1.734375 Q6.765625 -2.5 6.765625 -3.765625 Q6.765625 -4.96875 6.09375 -5.6640625 Q5.421875 -6.359375 4.328125 -6.359375 Q3.640625 -6.359375 3.09375 -6.046875 Q2.546875 -5.734375 2.234375 -5.25 L0.921875 -5.421875 L2.03125 -11.296875 L7.71875 -11.296875 L7.71875 -9.953125 L3.15625 -9.953125 L2.53125 -6.875 Q3.5625 -7.59375 4.703125 -7.59375 Q6.203125 -7.59375 7.234375 -6.5546875 Q8.265625 -5.515625 8.265625 -3.890625 Q8.265625 -2.328125 7.359375 -1.203125 Q6.25 0.203125 4.34375 0.203125 Q2.78125 0.203125 1.796875 -0.6796875 Q0.8125 -1.5625 0.671875 -3.0 Z"/><path d=" M10.3515625 0.0 L10.3515625 -1.609375 L11.9609375 -1.609375 L11.9609375 0.0 L10.3515625 0.0 Z"/><path d=" M14.015625 -5.65625 Q14.015625 -7.6875 14.4296875 -8.921875 Q14.84375 -10.15625 15.671875 -10.828125 Q16.5 -11.5 17.75 -11.5 Q18.671875 -11.5 19.3671875 -11.1328125 Q20.0625 -10.765625 20.515625 -10.0625 Q20.96875 -9.359375 21.2265625 -8.359375 Q21.484375 -7.359375 21.484375 -5.65625 Q21.484375 -3.640625 21.0703125 -2.3984375 Q20.65625 -1.15625 19.828125 -0.4765625 Q19.0 0.203125 17.75 0.203125 Q16.09375 0.203125 15.140625 -1.0 Q14.015625 -2.421875 14.015625 -5.65625 Z M15.453125 -5.65625 Q15.453125 -2.828125 16.1171875 -1.8984375 Q16.78125 -0.96875 17.75 -0.96875 Q18.71875 -0.96875 19.375 -1.90625 Q20.03125 -2.84375 20.03125 -5.65625 Q20.03125 -8.484375 19.375 -9.4140625 Q18.71875 -10.34375 17.734375 -10.34375 Q16.765625 -10.34375 16.1875 -9.515625 Q15.453125 -8.46875 15.453125 -5.65625 Z"/></g></g><path d=" M109.54557291666667 39.33333333333333 L138.45442708333334 39.33333333333333 L138.45442708333334 62.33333333333333 L109.54557291666667 62.33333333333333 L109.54557291666667 39.33333333333333 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M228.54557291666666 39.33333333333333 L257.4544270833333 39.33333333333333 L257.4544270833333 62.33333333333333 L228.54557291666666 62.33333333333333 L228.54557291666666 39.33333333333333 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,231.2122344970703,58.33333206176758)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.171875 0.0 L5.171875 -2.75 L0.203125 -2.75 L0.203125 -4.03125 L5.4375 -11.453125 L6.578125 -11.453125 L6.578125 -4.03125 L8.125 -4.03125 L8.125 -2.75 L6.578125 -2.75 L6.578125 0.0 L5.171875 0.0 Z M5.171875 -4.03125 L5.171875 -9.203125 L1.59375 -4.03125 L5.171875 -4.03125 Z"/><path d=" M10.3515625 0.0 L10.3515625 -1.609375 L11.9609375 -1.609375 L11.9609375 0.0 L10.3515625 0.0 Z"/><path d=" M14.015625 -5.65625 Q14.015625 -7.6875 14.4296875 -8.921875 Q14.84375 -10.15625 15.671875 -10.828125 Q16.5 -11.5 17.75 -11.5 Q18.671875 -11.5 19.3671875 -11.1328125 Q20.0625 -10.765625 20.515625 -10.0625 Q20.96875 -9.359375 21.2265625 -8.359375 Q21.484375 -7.359375 21.484375 -5.65625 Q21.484375 -3.640625 21.0703125 -2.3984375 Q20.65625 -1.15625 19.828125 -0.4765625 Q19.0 0.203125 17.75 0.203125 Q16.09375 0.203125 15.140625 -1.0 Q14.015625 -2.421875 14.015625 -5.65625 Z M15.453125 -5.65625 Q15.453125 -2.828125 16.1171875 -1.8984375 Q16.78125 -0.96875 17.75 -0.96875 Q18.71875 -0.96875 19.375 -1.90625 Q20.03125 -2.84375 20.03125 -5.65625 Q20.03125 -8.484375 19.375 -9.4140625 Q18.71875 -10.34375 17.734375 -10.34375 Q16.765625 -10.34375 16.1875 -9.515625 Q15.453125 -8.46875 15.453125 -5.65625 Z"/></g></g><path d=" M228.54557291666666 39.33333333333333 L257.4544270833333 39.33333333333333 L257.4544270833333 62.33333333333333 L228.54557291666666 62.33333333333333 L228.54557291666666 39.33333333333333 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M343.0963541666667 39.33333333333333 L380.90364583333337 39.33333333333333 L380.90364583333337 62.33333333333333 L343.0963541666667 62.33333333333333 L343.0963541666667 39.33333333333333 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,345.7630310058594,58.33333206176758)" style="fill-opacity:1.0;fill:#000000;"><path d=" M5.96875 0.0 L4.5625 0.0 L4.5625 -8.96875 Q4.046875 -8.484375 3.2265625 -8.0 Q2.40625 -7.515625 1.75 -7.265625 L1.75 -8.625 Q2.921875 -9.1875 3.8046875 -9.9765625 Q4.6875 -10.765625 5.0625 -11.5 L5.96875 -11.5 L5.96875 0.0 Z"/><path d=" M16.9609375 -1.359375 L16.9609375 0.0 L9.3828125 0.0 Q9.3671875 -0.515625 9.5546875 -0.984375 Q9.8359375 -1.75 10.4765625 -2.5 Q11.1171875 -3.25 12.3203125 -4.234375 Q14.1796875 -5.765625 14.8359375 -6.6640625 Q15.4921875 -7.5625 15.4921875 -8.359375 Q15.4921875 -9.1875 14.8984375 -9.765625 Q14.3046875 -10.34375 13.3359375 -10.34375 Q12.3203125 -10.34375 11.7109375 -9.734375 Q11.1015625 -9.125 11.1015625 -8.046875 L9.6484375 -8.1875 Q9.8046875 -9.8125 10.7734375 -10.65625 Q11.7421875 -11.5 13.3671875 -11.5 Q15.0234375 -11.5 15.984375 -10.5859375 Q16.9453125 -9.671875 16.9453125 -8.328125 Q16.9453125 -7.640625 16.6640625 -6.9765625 Q16.3828125 -6.3125 15.7265625 -5.578125 Q15.0703125 -4.84375 13.5546875 -3.5625 Q12.2890625 -2.5 11.9296875 -2.1171875 Q11.5703125 -1.734375 11.3359375 -1.359375 L16.9609375 -1.359375 Z"/><path d=" M19.25 0.0 L19.25 -1.609375 L20.859375 -1.609375 L20.859375 0.0 L19.25 0.0 Z"/><path d=" M22.9140625 -5.65625 Q22.9140625 -7.6875 23.328125 -8.921875 Q23.7421875 -10.15625 24.5703125 -10.828125 Q25.3984375 -11.5 26.6484375 -11.5 Q27.5703125 -11.5 28.265625 -11.1328125 Q28.9609375 -10.765625 29.4140625 -10.0625 Q29.8671875 -9.359375 30.125 -8.359375 Q30.3828125 -7.359375 30.3828125 -5.65625 Q30.3828125 -3.640625 29.96875 -2.3984375 Q29.5546875 -1.15625 28.7265625 -0.4765625 Q27.8984375 0.203125 26.6484375 0.203125 Q24.9921875 0.203125 24.0390625 -1.0 Q22.9140625 -2.421875 22.9140625 -5.65625 Z M24.3515625 -5.65625 Q24.3515625 -2.828125 25.015625 -1.8984375 Q25.6796875 -0.96875 26.6484375 -0.96875 Q27.6171875 -0.96875 28.2734375 -1.90625 Q28.9296875 -2.84375 28.9296875 -5.65625 Q28.9296875 -8.484375 28.2734375 -9.4140625 Q27.6171875 -10.34375 26.6328125 -10.34375 Q25.6640625 -10.34375 25.0859375 -9.515625 Q24.3515625 -8.46875 24.3515625 -5.65625 Z"/></g></g><path d=" M343.0963541666667 39.33333333333333 L380.90364583333337 39.33333333333333 L380.90364583333337 62.33333333333333 L343.0963541666667 62.33333333333333 L343.0963541666667 39.33333333333333 Z" style="stroke:#000000;stroke-width:1.0;stroke-miterlimit:10.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M115.81987847222224 289.0 L133.1584201388889 289.0 L133.1584201388889 312.0 L115.81987847222224 312.0 L115.81987847222224 289.0 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,118.48654174804688,308.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M-0.03125 0.0 L4.375 -11.453125 L6.015625 -11.453125 L10.703125 0.0 L8.96875 0.0 L7.640625 -3.46875 L2.84375 -3.46875 L1.59375 0.0 L-0.03125 0.0 Z M3.28125 -4.703125 L7.171875 -4.703125 L5.96875 -7.875 Q5.421875 -9.328125 5.15625 -10.25 Q4.9375 -9.15625 4.546875 -8.0625 L3.28125 -4.703125 Z"/></g></g><path d=" M115.81987847222224 289.0 L133.1584201388889 289.0 L133.1584201388889 312.0 L115.81987847222224 312.0 L115.81987847222224 289.0 Z" style="stroke:#000000;stroke-width:4.0;stroke-dasharray: 6.0 4.0;stroke-miterlimit:0.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M234.81987847222223 289.0 L252.15842013888889 289.0 L252.15842013888889 312.0 L234.81987847222223 312.0 L234.81987847222223 289.0 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,237.48654174804688,308.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M1.171875 0.0 L1.171875 -11.453125 L5.46875 -11.453125 Q6.78125 -11.453125 7.578125 -11.109375 Q8.375 -10.765625 8.8203125 -10.0390625 Q9.265625 -9.3125 9.265625 -8.53125 Q9.265625 -7.796875 8.8671875 -7.1484375 Q8.46875 -6.5 7.671875 -6.09375 Q8.703125 -5.796875 9.265625 -5.0625 Q9.828125 -4.328125 9.828125 -3.328125 Q9.828125 -2.515625 9.484375 -1.828125 Q9.140625 -1.140625 8.640625 -0.765625 Q8.140625 -0.390625 7.390625 -0.1953125 Q6.640625 0.0 5.546875 0.0 L1.171875 0.0 Z M2.6875 -6.640625 L5.171875 -6.640625 Q6.171875 -6.640625 6.609375 -6.78125 Q7.1875 -6.953125 7.484375 -7.3515625 Q7.78125 -7.75 7.78125 -8.34375 Q7.78125 -8.921875 7.5078125 -9.3515625 Q7.234375 -9.78125 6.7265625 -9.9453125 Q6.21875 -10.109375 4.984375 -10.109375 L2.6875 -10.109375 L2.6875 -6.640625 Z M2.6875 -1.359375 L5.546875 -1.359375 Q6.28125 -1.359375 6.578125 -1.40625 Q7.09375 -1.5 7.4453125 -1.71875 Q7.796875 -1.9375 8.0234375 -2.359375 Q8.25 -2.78125 8.25 -3.328125 Q8.25 -3.96875 7.921875 -4.4375 Q7.59375 -4.90625 7.015625 -5.1015625 Q6.4375 -5.296875 5.34375 -5.296875 L2.6875 -5.296875 L2.6875 -1.359375 Z"/></g></g><path d=" M234.81987847222223 289.0 L252.15842013888889 289.0 L252.15842013888889 312.0 L234.81987847222223 312.0 L234.81987847222223 289.0 Z" style="stroke:#000000;stroke-width:4.0;stroke-dasharray: 6.0 4.0;stroke-miterlimit:0.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M353.37847222222223 289.0 L371.5998263888889 289.0 L371.5998263888889 312.0 L353.37847222222223 312.0 L353.37847222222223 289.0 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,356.0451354980469,308.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M9.40625 -4.015625 L10.921875 -3.640625 Q10.453125 -1.765625 9.2109375 -0.78125 Q7.96875 0.203125 6.1875 0.203125 Q4.328125 0.203125 3.171875 -0.5546875 Q2.015625 -1.3125 1.40625 -2.7421875 Q0.796875 -4.171875 0.796875 -5.8125 Q0.796875 -7.609375 1.484375 -8.9375 Q2.171875 -10.265625 3.4296875 -10.9609375 Q4.6875 -11.65625 6.203125 -11.65625 Q7.921875 -11.65625 9.09375 -10.78125 Q10.265625 -9.90625 10.734375 -8.3125 L9.234375 -7.96875 Q8.84375 -9.21875 8.0859375 -9.7890625 Q7.328125 -10.359375 6.171875 -10.359375 Q4.859375 -10.359375 3.96875 -9.7265625 Q3.078125 -9.09375 2.71875 -8.0234375 Q2.359375 -6.953125 2.359375 -5.828125 Q2.359375 -4.359375 2.7890625 -3.2734375 Q3.21875 -2.1875 4.1171875 -1.6484375 Q5.015625 -1.109375 6.0625 -1.109375 Q7.328125 -1.109375 8.2109375 -1.84375 Q9.09375 -2.578125 9.40625 -4.015625 Z"/></g></g><path d=" M353.37847222222223 289.0 L371.5998263888889 289.0 L371.5998263888889 312.0 L353.37847222222223 312.0 L353.37847222222223 289.0 Z" style="stroke:#000000;stroke-width:4.0;stroke-dasharray: 6.0 4.0;stroke-miterlimit:0.0;stroke-linejoin:round;stroke-linecap:round;"/><path d=" M65.46223958333331 305.0 L179.88815307617188 305.0 L179.88815307617188 335.0 L65.46223958333331 335.0 L65.46223958333331 305.0 Z" style="fill-opacity:1.0;fill:#0080ff;"/><g><g transform="matrix(1.0,0.0,0.0,1.0,68.12890625,330.0)" style="fill-opacity:1.0;fill:#000000;"><path d=" M0.09375 0.0 L5.90625 -7.828125 L0.78125 -15.03125 L3.140625 -15.03125 L5.875 -11.171875 Q6.734375 -9.984375 7.078125 -9.328125 Q7.59375 -10.15625 8.28125 -11.046875 L11.296875 -15.03125 L13.46875 -15.03125 L8.1875 -7.953125 L13.875 0.0 L11.40625 0.0 L7.625 -5.359375 Q7.3125 -5.828125 6.96875 -6.375 Q6.46875 -5.546875 6.25 -5.234375 L2.484375 0.0 L0.09375 0.0 Z"/><path d=" M14.88714599609375 -4.515625 L14.88714599609375 -6.375 L20.55902099609375 -6.375 L20.55902099609375 -4.515625 L14.88714599609375 -4.515625 Z"/><path d=" M21.28125 0.0 L27.0625 -15.03125 L29.203125 -15.03125 L35.34375 0.0 L33.078125 0.0 L31.328125 -4.546875 L25.046875 -4.546875 L23.390625 0.0 L21.28125 0.0 Z M25.625 -6.171875 L30.71875 -6.171875 L29.140625 -10.34375 Q28.421875 -12.234375 28.078125 -13.453125 Q27.796875 -12.0 27.265625 -10.578125 L25.625 -6.171875 Z"/><path d=" M35.68402099609375 0.0 L39.65277099609375 -5.65625 L35.98089599609375 -10.890625 L38.29339599609375 -10.890625 L39.96527099609375 -8.34375 Q40.43402099609375 -7.609375 40.71527099609375 -7.109375 Q41.16839599609375 -7.796875 41.54339599609375 -8.3125 L43.38714599609375 -10.890625 L45.59027099609375 -10.890625 L41.82464599609375 -5.765625 L45.87152099609375 0.0 L43.60589599609375 0.0 L41.37152099609375 -3.390625 L40.77777099609375 -4.296875 L37.91839599609375 0.0 L35.68402099609375 0.0 Z"/><path d=" M47.57464599609375 -12.90625 L47.57464599609375 -15.03125 L49.41839599609375 -15.03125 L49.41839599609375 -12.90625 L47.57464599609375 -12.90625 Z M47.57464599609375 0.0 L47.57464599609375 -10.890625 L49.41839599609375 -10.890625 L49.41839599609375 0.0 L47.57464599609375 0.0 Z"/><path d=" M51.559600830078125 -3.25 L53.387725830078125 -3.53125 Q53.543975830078125 -2.4375 54.247100830078125 -1.8515625 Q54.950225830078125 -1.265625 56.215850830078125 -1.265625 Q57.481475830078125 -1.265625 58.098663330078125 -1.7890625 Q58.715850830078125 -2.3125 58.715850830078125 -3.0 Q58.715850830078125 -3.625 58.168975830078125 -3.984375 Q57.793975830078125 -4.234375 56.278350830078125 -4.609375 Q54.247100830078125 -5.125 53.465850830078125 -5.5 Q52.684600830078125 -5.875 52.278350830078125 -6.5390625 Q51.872100830078125 -7.203125 51.872100830078125 -8.0 Q51.872100830078125 -8.71875 52.208038330078125 -9.34375 Q52.543975830078125 -9.96875 53.106475830078125 -10.375 Q53.543975830078125 -10.6875 54.286163330078125 -10.9140625 Q55.028350830078125 -11.140625 55.887725830078125 -11.140625 Q57.168975830078125 -11.140625 58.137725830078125 -10.765625 Q59.106475830078125 -10.390625 59.567413330078125 -9.765625 Q60.028350830078125 -9.140625 60.200225830078125 -8.078125 L58.387725830078125 -7.828125 Q58.278350830078125 -8.671875 57.684600830078125 -9.1484375 Q57.090850830078125 -9.625 56.012725830078125 -9.625 Q54.747100830078125 -9.625 54.200225830078125 -9.203125 Q53.653350830078125 -8.78125 53.653350830078125 -8.21875 Q53.653350830078125 -7.859375 53.887725830078125 -7.5625 Q54.106475830078125 -7.265625 54.590850830078125 -7.078125 Q54.872100830078125 -6.96875 56.215850830078125 -6.609375 Q58.184600830078125 -6.078125 58.958038330078125 -5.75 Q59.731475830078125 -5.421875 60.168975830078125 -4.78125 Q60.606475830078125 -4.140625 60.606475830078125 -3.203125 Q60.606475830078125 -2.28125 60.067413330078125 -1.4609375 Q59.528350830078125 -0.640625 58.512725830078125 -0.1953125 Q57.497100830078125 0.25 56.215850830078125 0.25 Q54.090850830078125 0.25 52.981475830078125 -0.6328125 Q51.872100830078125 -1.515625 51.559600830078125 -3.25 Z"/><path d=""/><path d=" M72.93402099609375 0.0 L72.93402099609375 -13.265625 L67.99652099609375 -13.265625 L67.99652099609375 -15.03125 L79.90277099609375 -15.03125 L79.90277099609375 -13.265625 L74.93402099609375 -13.265625 L74.93402099609375 0.0 L72.93402099609375 0.0 Z"/><path d=" M81.90567016601562 -12.90625 L81.90567016601562 -15.03125 L83.74942016601562 -15.03125 L83.74942016601562 -12.90625 L81.90567016601562 -12.90625 Z M81.90567016601562 0.0 L81.90567016601562 -10.890625 L83.74942016601562 -10.890625 L83.74942016601562 0.0 L81.90567016601562 0.0 Z"/><path d=" M90.671875 -1.65625 L90.9375 -0.015625 Q90.15625 0.140625 89.53125 0.140625 Q88.53125 0.140625 87.9765625 -0.1796875 Q87.421875 -0.5 87.1953125 -1.015625 Q86.96875 -1.53125 86.96875 -3.1875 L86.96875 -9.453125 L85.625 -9.453125 L85.625 -10.890625 L86.96875 -10.890625 L86.96875 -13.59375 L88.8125 -14.6875 L88.8125 -10.890625 L90.671875 -10.890625 L90.671875 -9.453125 L88.8125 -9.453125 L88.8125 -3.09375 Q88.8125 -2.296875 88.90625 -2.0703125 Q89.0 -1.84375 89.21875 -1.7109375 Q89.4375 -1.578125 89.859375 -1.578125 Q90.15625 -1.578125 90.671875 -1.65625 Z"/><path d=" M92.51504516601562 0.0 L92.51504516601562 -15.03125 L94.35879516601562 -15.03125 L94.35879516601562 0.0 L92.51504516601562 0.0 Z"/><path d=" M104.75 -3.5 L106.65625 -3.265625 Q106.203125 -1.59375 104.984375 -0.671875 Q103.765625 0.25 101.859375 0.25 Q99.46875 0.25 98.0703125 -1.2265625 Q96.671875 -2.703125 96.671875 -5.359375 Q96.671875 -8.09375 98.0859375 -9.6171875 Q99.5 -11.140625 101.765625 -11.140625 Q103.953125 -11.140625 105.3359375 -9.6484375 Q106.71875 -8.15