summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKore Nordmann <github@kore-nordmann.de>2006-10-04 09:19:16 +0000
committerKore Nordmann <github@kore-nordmann.de>2006-10-04 09:19:16 +0000
commit7ddedf8362ad88957a4d3e080544b045313ddc61 (patch)
tree2eb6de80933000b779470ac9ace0fd37d240818a
parenta178a61f580b356022b0a4c17aa7d415c3d2444b (diff)
downloadzetacomponents-graph-7ddedf8362ad88957a4d3e080544b045313ddc61.zip
zetacomponents-graph-7ddedf8362ad88957a4d3e080544b045313ddc61.tar.gz
- Fixed minor ticks in exact and centered axis label renderer
-rw-r--r--docs/img/tutorial_example_06.svg.pngbin25733 -> 25064 bytes
-rw-r--r--src/interfaces/axis_label_renderer.php1
-rw-r--r--src/renderer/axis_label_centered.php13
-rw-r--r--src/renderer/axis_label_exact.php25
-rw-r--r--tests/axis_centered_renderer_test.php28
-rw-r--r--tests/axis_exact_renderer_test.php28
-rw-r--r--tests/data/compare/ezcGraphDataSetAverageTest_testRenderCompleteLineChart.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer2dTest_testRenderFilledLineBarChart.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer2dTest_testRenderFilledLineChart.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer2dTest_testRenderFilledLineChartWithAxisIntersection.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChart.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithAxisLabels.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithAxisLabelsReversedAxis.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithDifferentAxisSpace.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithHighlightedData.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChart.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartNonFilledAxis.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartNonFilledGrid.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartWithAxisIntersection.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartWithoutDataBorder.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer3dTest_testRender3dLineChart.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer3dTest_testRender3dLineChartBigMaxFontSize.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer3dTest_testRender3dLineChartSmallMaxFontSize.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer3dTest_testRenderBarChart.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer3dTest_testRenderBarChartSymbols.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithAxisLabels.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithAxisLabelsReversedAxis.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithDifferentAxisSpace.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithHighlightedData.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer3dTest_testRenderNegativeBarChartSymbols.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer3dTest_testRenderPimpedBarChart.svg2
-rw-r--r--tests/image_map_test.php4
32 files changed, 62 insertions, 87 deletions
diff --git a/docs/img/tutorial_example_06.svg.png b/docs/img/tutorial_example_06.svg.png
index be2c5ef..16b8346 100644
--- a/docs/img/tutorial_example_06.svg.png
+++ b/docs/img/tutorial_example_06.svg.png
Binary files differ
diff --git a/src/interfaces/axis_label_renderer.php b/src/interfaces/axis_label_renderer.php
index acfc6e2..65913a8 100644
--- a/src/interfaces/axis_label_renderer.php
+++ b/src/interfaces/axis_label_renderer.php
@@ -298,6 +298,7 @@ abstract class ezcGraphAxisLabelRenderer extends ezcBaseOptions
}
// Finally draw grid line
+// var_dump( $cuttingPoints, $color );
$renderer->drawGridLine(
$cuttingPoints[0],
$cuttingPoints[1],
diff --git a/src/renderer/axis_label_centered.php b/src/renderer/axis_label_centered.php
index c80efed..0116857 100644
--- a/src/renderer/axis_label_centered.php
+++ b/src/renderer/axis_label_centered.php
@@ -80,6 +80,7 @@ class ezcGraphAxisCenteredLabelRenderer extends ezcGraphAxisLabelRenderer
// receive rendering parameters from axis
$this->majorStepCount = $axis->getMajorStepCount();
$this->minorStepCount = $axis->getMinorStepCount();
+ $minorStepsPerMajorStepCount = $this->minorStepCount / $this->majorStepCount - 1;
// Determine normalized axis direction
$direction = new ezcGraphCoordinate(
@@ -191,14 +192,16 @@ class ezcGraphAxisCenteredLabelRenderer extends ezcGraphAxisLabelRenderer
}
// second iteration for minor steps, if wanted
- if ( $this->minorStepCount )
+ $minorStepNmbr = 0;
+ if ( $this->minorStepCount &&
+ ( $step < $this->majorStepCount ) )
{
$minorGridPosition = new ezcGraphCoordinate(
$start->x + $minorStep->x,
$start->y + $minorStep->y
);
- while ( $minorGridPosition->x < ( $start->x + $majorStep->x ) )
+ while ( $minorStepNmbr++ < $minorStepsPerMajorStepCount )
{
// minor grid
if ( $axis->minorGrid )
@@ -206,11 +209,11 @@ class ezcGraphAxisCenteredLabelRenderer extends ezcGraphAxisLabelRenderer
$this->drawGrid( $renderer, $gridBoundings, $minorGridPosition, $majorStep, $axis->minorGrid );
}
- $minorGridPosition->x += $minorStep->x;
- $minorGridPosition->y += $minorStep->y;
-
// minor step
$this->drawStep( $renderer, $minorGridPosition, $direction, $axis->position, $this->minorStepSize, $axis->border );
+
+ $minorGridPosition->x += $minorStep->x;
+ $minorGridPosition->y += $minorStep->y;
}
}
diff --git a/src/renderer/axis_label_exact.php b/src/renderer/axis_label_exact.php
index dea15df..b4b676f 100644
--- a/src/renderer/axis_label_exact.php
+++ b/src/renderer/axis_label_exact.php
@@ -81,6 +81,7 @@ class ezcGraphAxisExactLabelRenderer extends ezcGraphAxisLabelRenderer
// receive rendering parameters from axis
$this->majorStepCount = $axis->getMajorStepCount();
$this->minorStepCount = $axis->getMinorStepCount();
+ $minorStepsPerMajorStepCount = $this->minorStepCount / $this->majorStepCount - 1;
// Determine normalized axis direction
$direction = new ezcGraphCoordinate(
@@ -112,10 +113,10 @@ class ezcGraphAxisExactLabelRenderer extends ezcGraphAxisLabelRenderer
else
{
$gridBoundings = new ezcGraphBoundings(
- $boundings->x0 + ( $boundings->x1 - $boundings->x0 ) * $axis->axisSpace,
- $boundings->y0 + ( $boundings->y1 - $boundings->y0 ) * $axis->axisSpace,
- $boundings->x1 - ( $boundings->x1 - $boundings->x0 ) * $axis->axisSpace,
- $boundings->y1 - ( $boundings->y1 - $boundings->y0 ) * $axis->axisSpace
+ $boundings->x0 + $boundings->width * $axis->axisSpace,
+ $boundings->y0 + $boundings->height * $axis->axisSpace,
+ $boundings->x1 - $boundings->width * $axis->axisSpace,
+ $boundings->y1 - $boundings->height * $axis->axisSpace
);
}
@@ -135,7 +136,7 @@ class ezcGraphAxisExactLabelRenderer extends ezcGraphAxisLabelRenderer
{
$labelWidth = $majorStep->x;
}
- $labelHeight = ( $boundings->y1 - $boundings->y0 ) * $axis->axisSpace;
+ $labelHeight = $boundings->height * $axis->axisSpace;
break;
case ezcGraph::BOTTOM:
$yPaddingDirection = -1;
@@ -148,7 +149,7 @@ class ezcGraphAxisExactLabelRenderer extends ezcGraphAxisLabelRenderer
{
$labelHeight = $majorStep->y;
}
- $labelWidth = ( $boundings->x1 - $boundings->x0 ) * $axis->axisSpace;
+ $labelWidth = $boundings->width * $axis->axisSpace;
break;
}
@@ -231,14 +232,16 @@ class ezcGraphAxisExactLabelRenderer extends ezcGraphAxisLabelRenderer
}
// second iteration for minor steps, if wanted
- if ( $this->minorStepCount )
+ $minorStepNmbr = 0;
+ if ( $this->minorStepCount &&
+ ( $step < $this->majorStepCount ) )
{
$minorGridPosition = new ezcGraphCoordinate(
$start->x + $minorStep->x,
$start->y + $minorStep->y
);
- while ( $minorGridPosition->x < ( $start->x + $majorStep->x ) )
+ while ( $minorStepNmbr++ < $minorStepsPerMajorStepCount )
{
// minor grid
if ( $axis->minorGrid )
@@ -246,11 +249,11 @@ class ezcGraphAxisExactLabelRenderer extends ezcGraphAxisLabelRenderer
$this->drawGrid( $renderer, $gridBoundings, $minorGridPosition, $majorStep, $axis->minorGrid );
}
- $minorGridPosition->x += $minorStep->x;
- $minorGridPosition->y += $minorStep->y;
-
// minor step
$this->drawStep( $renderer, $minorGridPosition, $direction, $axis->position, $this->minorStepSize, $axis->border );
+
+ $minorGridPosition->x += $minorStep->x;
+ $minorGridPosition->y += $minorStep->y;
}
}
diff --git a/tests/axis_centered_renderer_test.php b/tests/axis_centered_renderer_test.php
index a06389d..f15564b 100644
--- a/tests/axis_centered_renderer_test.php
+++ b/tests/axis_centered_renderer_test.php
@@ -360,17 +360,9 @@ class ezcGraphAxisCenteredRendererTest extends ezcTestCase
->expects( $this->at( 0 ) )
->method( 'drawGridLine' )
->with(
- $this->equalTo( new ezcGraphCoordinate( 140., 60. ), 1. ),
- $this->equalTo( new ezcGraphCoordinate( 460., 60. ), 1. ),
- $this->equalTo( ezcGraphColor::fromHex( '#888A85' ) )
- );
- $mockedRenderer
- ->expects( $this->at( 3 ) )
- ->method( 'drawGridLine' )
- ->with(
- $this->equalTo( new ezcGraphCoordinate( 140., 180. ), 1. ),
- $this->equalTo( new ezcGraphCoordinate( 460., 180. ), 1. ),
- $this->equalTo( ezcGraphColor::fromHex( '#888A85' ) )
+ $this->equalTo( new ezcGraphCoordinate( 140., 30. ), 1. ),
+ $this->equalTo( new ezcGraphCoordinate( 460., 30. ), 1. ),
+ $this->equalTo( ezcGraphColor::fromHex( '#888A8588' ) )
);
$chart->renderer = $mockedRenderer;
@@ -395,17 +387,9 @@ class ezcGraphAxisCenteredRendererTest extends ezcTestCase
->expects( $this->at( 0 ) )
->method( 'drawGridLine' )
->with(
- $this->equalTo( new ezcGraphCoordinate( 140., 140. ), 1. ),
- $this->equalTo( new ezcGraphCoordinate( 460., 140. ), 1. ),
- $this->equalTo( ezcGraphColor::fromHex( '#888A85' ) )
- );
- $mockedRenderer
- ->expects( $this->at( 3 ) )
- ->method( 'drawGridLine' )
- ->with(
- $this->equalTo( new ezcGraphCoordinate( 140., 20. ), 1. ),
- $this->equalTo( new ezcGraphCoordinate( 460., 20. ), 1. ),
- $this->equalTo( ezcGraphColor::fromHex( '#888A85' ) )
+ $this->equalTo( new ezcGraphCoordinate( 140., 170. ), 1. ),
+ $this->equalTo( new ezcGraphCoordinate( 460., 170. ), 1. ),
+ $this->equalTo( ezcGraphColor::fromHex( '#888A8588' ) )
);
$chart->renderer = $mockedRenderer;
diff --git a/tests/axis_exact_renderer_test.php b/tests/axis_exact_renderer_test.php
index 52bc179..9fbd256 100644
--- a/tests/axis_exact_renderer_test.php
+++ b/tests/axis_exact_renderer_test.php
@@ -448,17 +448,9 @@ class ezcGraphAxisExactRendererTest extends ezcTestCase
->expects( $this->at( 0 ) )
->method( 'drawGridLine' )
->with(
- $this->equalTo( new ezcGraphCoordinate( 140., 60. ), 1. ),
- $this->equalTo( new ezcGraphCoordinate( 460., 60. ), 1. ),
- $this->equalTo( ezcGraphColor::fromHex( '#888A85' ) )
- );
- $mockedRenderer
- ->expects( $this->at( 3 ) )
- ->method( 'drawGridLine' )
- ->with(
- $this->equalTo( new ezcGraphCoordinate( 140., 180. ), 1. ),
- $this->equalTo( new ezcGraphCoordinate( 460., 180. ), 1. ),
- $this->equalTo( ezcGraphColor::fromHex( '#888A85' ) )
+ $this->equalTo( new ezcGraphCoordinate( 140., 30. ), 1. ),
+ $this->equalTo( new ezcGraphCoordinate( 460., 30. ), 1. ),
+ $this->equalTo( ezcGraphColor::fromHex( '#888A8588' ) )
);
$chart->renderer = $mockedRenderer;
@@ -483,17 +475,9 @@ class ezcGraphAxisExactRendererTest extends ezcTestCase
->expects( $this->at( 0 ) )
->method( 'drawGridLine' )
->with(
- $this->equalTo( new ezcGraphCoordinate( 140., 140. ), 1. ),
- $this->equalTo( new ezcGraphCoordinate( 460., 140. ), 1. ),
- $this->equalTo( ezcGraphColor::fromHex( '#888A85' ) )
- );
- $mockedRenderer
- ->expects( $this->at( 3 ) )
- ->method( 'drawGridLine' )
- ->with(
- $this->equalTo( new ezcGraphCoordinate( 140., 20. ), 1. ),
- $this->equalTo( new ezcGraphCoordinate( 460., 20. ), 1. ),
- $this->equalTo( ezcGraphColor::fromHex( '#888A85' ) )
+ $this->equalTo( new ezcGraphCoordinate( 140., 170. ), 1. ),
+ $this->equalTo( new ezcGraphCoordinate( 460., 170. ), 1. ),
+ $this->equalTo( ezcGraphColor::fromHex( '#888A8588' ) )
);
$chart->renderer = $mockedRenderer;
diff --git a/tests/data/compare/ezcGraphDataSetAverageTest_testRenderCompleteLineChart.svg b/tests/data/compare/ezcGraphDataSetAverageTest_testRenderCompleteLineChart.svg
index 22f7082..0f020f9 100644
--- a/tests/data/compare/ezcGraphDataSetAverageTest_testRenderCompleteLineChart.svg
+++ b/tests/data/compare/ezcGraphDataSetAverageTest_testRenderCompleteLineChart.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 100.0000,0.0000 L 100.0000,200.0000 L 0.0000,200.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><ellipse cx="9" cy="9" rx="7" ry="7" style="fill: #3465a4; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_3"/><path d=" M 2.0000,34.0000 L 2.0000,20.0000 L 16.0000,20.0000 L 16.0000,34.0000 L 2.0000,34.0000 z " style="fill: #4e9a06; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_5"/><path d=" M 2.0000,52.0000 L 2.0000,38.0000 L 16.0000,38.0000 L 16.0000,52.0000 L 2.0000,52.0000 z " style="fill: #cc0000; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 2.0000,70.0000 L 2.0000,56.0000 L 16.0000,56.0000 L 16.0000,70.0000 L 2.0000,70.0000 z " style="fill: #edd400; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 2.0000,88.0000 L 2.0000,74.0000 L 16.0000,74.0000 L 16.0000,88.0000 L 2.0000,88.0000 z " style="fill: #75505b; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 100.0000,116.0000 L 500.0000,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 492.0000,120.0000 L 500.0000,116.0000 L 492.0000,112.0000 L 492.0000,120.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_16"/><path d=" M 162.4000,20.0000 L 162.4000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 182.6667,115.0000 L 182.6667,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 181.6000,20.0000 L 181.6000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 204.0000,115.0000 L 204.0000,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 204.0000,20.0000 L 204.0000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 225.3333,115.0000 L 225.3333,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 226.4000,20.0000 L 226.4000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 246.6667,115.0000 L 246.6667,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 245.6000,20.0000 L 245.6000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 246.6667,113.0000 L 246.6667,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 268.0000,20.0000 L 268.0000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 289.3333,115.0000 L 289.3333,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 290.4000,20.0000 L 290.4000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 310.6667,115.0000 L 310.6667,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 309.6000,20.0000 L 309.6000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 332.0000,115.0000 L 332.0000,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 332.0000,20.0000 L 332.0000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 353.3333,115.0000 L 353.3333,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 354.4000,20.0000 L 354.4000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 374.6667,115.0000 L 374.6667,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 354.4000,20.0000 L 354.4000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 353.3333,113.0000 L 353.3333,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 373.6000,20.0000 L 373.6000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 396.0000,115.0000 L 396.0000,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 396.0000,20.0000 L 396.0000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 417.3333,115.0000 L 417.3333,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 418.4000,20.0000 L 418.4000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 438.6667,115.0000 L 438.6667,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 437.6000,20.0000 L 437.6000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 460.0000,115.0000 L 460.0000,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 460.0000,20.0000 L 460.0000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 481.3333,115.0000 L 481.3333,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 460.0000,20.0000 L 460.0000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 460.0000,113.0000 L 460.0000,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 502.6667,115.0000 L 502.6667,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 524.0000,115.0000 L 524.0000,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 545.3333,115.0000 L 545.3333,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 566.6667,115.0000 L 566.6667,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 140.0000,180.0000 L 460.0000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 140.0000,180.0000 L 143.0000,180.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 140.0000,148.0000 L 460.0000,148.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 140.0000,148.0000 L 143.0000,148.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 140.0000,84.0000 L 460.0000,84.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 140.0000,84.0000 L 143.0000,84.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 140.0000,52.0000 L 460.0000,52.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 140.0000,52.0000 L 143.0000,52.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 140.0000,20.0000 L 460.0000,20.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 140.0000,20.0000 L 143.0000,20.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 182.6667,103.2000 L 182.6667,103.2000" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 182.6667,103.2000 L 246.6667,145.4400" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 246.6667,145.4400 L 272.2667,98.0800" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 272.2667,98.0800 L 310.6667,52.0000" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 310.6667,52.0000 L 366.1333,100.6400" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><path d=" M 366.1333,100.6400 L 438.6667,32.8000" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_80"/><path d=" M 182.6667,88.6933 L 182.6667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_81"/><path d=" M 182.6667,88.6933 L 185.2267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_82"/><path d=" M 185.2267,88.6933 L 187.7867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_83"/><path d=" M 187.7867,88.6933 L 190.3467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_84"/><path d=" M 190.3467,88.6933 L 192.9067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_85"/><path d=" M 192.9067,88.6933 L 195.4667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_86"/><path d=" M 195.4667,88.6933 L 198.0267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_87"/><path d=" M 198.0267,88.6933 L 200.5867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_88"/><path d=" M 200.5867,88.6933 L 203.1467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_89"/><path d=" M 203.1467,88.6933 L 205.7067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_90"/><path d=" M 205.7067,88.6933 L 208.2667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_91"/><path d=" M 208.2667,88.6933 L 210.8267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_92"/><path d=" M 210.8267,88.6933 L 213.3867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_93"/><path d=" M 213.3867,88.6933 L 215.9467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_94"/><path d=" M 215.9467,88.6933 L 218.5067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_95"/><path d=" M 218.5067,88.6933 L 221.0667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_96"/><path d=" M 221.0667,88.6933 L 223.6267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_97"/><path d=" M 223.6267,88.6933 L 226.1867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_98"/><path d=" M 226.1867,88.6933 L 228.7467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_99"/><path d=" M 228.7467,88.6933 L 231.3067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_100"/><path d=" M 231.3067,88.6933 L 233.8667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_101"/><path d=" M 233.8667,88.6933 L 236.4267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_102"/><path d=" M 236.4267,88.6933 L 238.9867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_103"/><path d=" M 238.9867,88.6933 L 241.5467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_104"/><path d=" M 241.5467,88.6933 L 244.1067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_105"/><path d=" M 244.1067,88.6933 L 246.6667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_106"/><path d=" M 246.6667,88.6933 L 249.2267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_107"/><path d=" M 249.2267,88.6933 L 251.7867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_108"/><path d=" M 251.7867,88.6933 L 254.3467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_109"/><path d=" M 254.3467,88.6933 L 256.9067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_110"/><path d=" M 256.9067,88.6933 L 259.4667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_111"/><path d=" M 259.4667,88.6933 L 262.0267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_112"/><path d=" M 262.0267,88.6933 L 264.5867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_113"/><path d=" M 264.5867,88.6933 L 267.1467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_114"/><path d=" M 267.1467,88.6933 L 269.7067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_115"/><path d=" M 269.7067,88.6933 L 272.2667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_116"/><path d=" M 272.2667,88.6933 L 274.8267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_117"/><path d=" M 274.8267,88.6933 L 277.3867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_118"/><path d=" M 277.3867,88.6933 L 279.9467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_119"/><path d=" M 279.9467,88.6933 L 282.5067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_120"/><path d=" M 282.5067,88.6933 L 285.0667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_121"/><path d=" M 285.0667,88.6933 L 287.6267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_122"/><path d=" M 287.6267,88.6933 L 290.1867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_123"/><path d=" M 290.1867,88.6933 L 292.7467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_124"/><path d=" M 292.7467,88.6933 L 295.3067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_125"/><path d=" M 295.3067,88.6933 L 297.8667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_126"/><path d=" M 297.8667,88.6933 L 300.4267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_127"/><path d=" M 300.4267,88.6933 L 302.9867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_128"/><path d=" M 302.9867,88.6933 L 305.5467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_129"/><path d=" M 305.5467,88.6933 L 308.1067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_130"/><path d=" M 308.1067,88.6933 L 310.6667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_131"/><path d=" M 310.6667,88.6933 L 313.2267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_132"/><path d=" M 313.2267,88.6933 L 315.7867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_133"/><path d=" M 315.7867,88.6933 L 318.3467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_134"/><path d=" M 318.3467,88.6933 L 320.9067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_135"/><path d=" M 320.9067,88.6933 L 323.4667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_136"/><path d=" M 323.4667,88.6933 L 326.0267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_137"/><path d=" M 326.0267,88.6933 L 328.5867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_138"/><path d=" M 328.5867,88.6933 L 331.1467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_139"/><path d=" M 331.1467,88.6933 L 333.7067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_140"/><path d=" M 333.7067,88.6933 L 336.2667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_141"/><path d=" M 336.2667,88.6933 L 338.8267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_142"/><path d=" M 338.8267,88.6933 L 341.3867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_143"/><path d=" M 341.3867,88.6933 L 343.9467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_144"/><path d=" M 343.9467,88.6933 L 346.5067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_145"/><path d=" M 346.5067,88.6933 L 349.0667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_146"/><path d=" M 349.0667,88.6933 L 351.6267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_147"/><path d=" M 351.6267,88.6933 L 354.1867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_148"/><path d=" M 354.1867,88.6933 L 356.7467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_149"/><path d=" M 356.7467,88.6933 L 359.3067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_150"/><path d=" M 359.3067,88.6933 L 361.8667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_151"/><path d=" M 361.8667,88.6933 L 364.4267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_152"/><path d=" M 364.4267,88.6933 L 366.9867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_153"/><path d=" M 366.9867,88.6933 L 369.5467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_154"/><path d=" M 369.5467,88.6933 L 372.1067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_155"/><path d=" M 372.1067,88.6933 L 374.6667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_156"/><path d=" M 374.6667,88.6933 L 377.2267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_157"/><path d=" M 377.2267,88.6933 L 379.7867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_158"/><path d=" M 379.7867,88.6933 L 382.3467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_159"/><path d=" M 382.3467,88.6933 L 384.9067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_160"/><path d=" M 384.9067,88.6933 L 387.4667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_161"/><path d=" M 387.4667,88.6933 L 390.0267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_162"/><path d=" M 390.0267,88.6933 L 392.5867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_163"/><path d=" M 392.5867,88.6933 L 395.1467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_164"/><path d=" M 395.1467,88.6933 L 397.7067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_165"/><path d=" M 397.7067,88.6933 L 400.2667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_166"/><path d=" M 400.2667,88.6933 L 402.8267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_167"/><path d=" M 402.8267,88.6933 L 405.3867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_168"/><path d=" M 405.3867,88.6933 L 407.9467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_169"/><path d=" M 407.9467,88.6933 L 410.5067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_170"/><path d=" M 410.5067,88.6933 L 413.0667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_171"/><path d=" M 413.0667,88.6933 L 415.6267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_172"/><path d=" M 415.6267,88.6933 L 418.1867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_173"/><path d=" M 418.1867,88.6933 L 420.7467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_174"/><path d=" M 420.7467,88.6933 L 423.3067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_175"/><path d=" M 423.3067,88.6933 L 425.8667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_176"/><path d=" M 425.8667,88.6933 L 428.4267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_177"/><path d=" M 428.4267,88.6933 L 430.9867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_178"/><path d=" M 430.9867,88.6933 L 433.5467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_179"/><path d=" M 433.5467,88.6933 L 436.1067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_180"/><path d=" M 436.1067,88.6933 L 438.6667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_181"/><path d=" M 182.6667,124.8239 L 182.6667,124.8239" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_182"/><path d=" M 182.6667,124.8239 L 185.2267,124.0543" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_183"/><path d=" M 185.2267,124.0543 L 187.7867,123.2847" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_184"/><path d=" M 187.7867,123.2847 L 190.3467,122.5150" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_185"/><path d=" M 190.3467,122.5150 L 192.9067,121.7454" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_186"/><path d=" M 192.9067,121.7454 L 195.4667,120.9757" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_187"/><path d=" M 195.4667,120.9757 L 198.0267,120.2061" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_188"/><path d=" M 198.0267,120.2061 L 200.5867,119.4364" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_189"/><path d=" M 200.5867,119.4364 L 203.1467,118.6668" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_190"/><path d=" M 203.1467,118.6668 L 205.7067,117.8971" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_191"/><path d=" M 205.7067,117.8971 L 208.2667,117.1275" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_192"/><path d=" M 208.2667,117.1275 L 210.8267,116.3578" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_193"/><path d=" M 210.8267,116.3578 L 213.3867,115.5882" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_194"/><path d=" M 213.3867,115.5882 L 215.9467,114.8185" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_195"/><path d=" M 215.9467,114.8185 L 218.5067,114.0489" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_196"/><path d=" M 218.5067,114.0489 L 221.0667,113.2793" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_197"/><path d=" M 221.0667,113.2793 L 223.6267,112.5096" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_198"/><path d=" M 223.6267,112.5096 L 226.1867,111.7400" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_199"/><path d=" M 226.1867,111.7400 L 228.7467,110.9703" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_200"/><path d=" M 228.7467,110.9703 L 231.3067,110.2007" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_201"/><path d=" M 231.3067,110.2007 L 233.8667,109.4310" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_202"/><path d=" M 233.8667,109.4310 L 236.4267,108.6614" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_203"/><path d=" M 236.4267,108.6614 L 238.9867,107.8917" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_204"/><path d=" M 238.9867,107.8917 L 241.5467,107.1221" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_205"/><path d=" M 241.5467,107.1221 L 244.1067,106.3524" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_206"/><path d=" M 244.1067,106.3524 L 246.6667,105.5828" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_207"/><path d=" M 246.6667,105.5828 L 249.2267,104.8131" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_208"/><path d=" M 249.2267,104.8131 L 251.7867,104.0435" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_209"/><path d=" M 251.7867,104.0435 L 254.3467,103.2739" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_210"/><path d=" M 254.3467,103.2739 L 256.9067,102.5042" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_211"/><path d=" M 256.9067,102.5042 L 259.4667,101.7346" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_212"/><path d=" M 259.4667,101.7346 L 262.0267,100.9649" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_213"/><path d=" M 262.0267,100.9649 L 264.5867,100.1953" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_214"/><path d=" M 264.5867,100.1953 L 267.1467,99.4256" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_215"/><path d=" M 267.1467,99.4256 L 269.7067,98.6560" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_216"/><path d=" M 269.7067,98.6560 L 272.2667,97.8863" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_217"/><path d=" M 272.2667,97.8863 L 274.8267,97.1167" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_218"/><path d=" M 274.8267,97.1167 L 277.3867,96.3470" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_219"/><path d=" M 277.3867,96.3470 L 279.9467,95.5774" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_220"/><path d=" M 279.9467,95.5774 L 282.5067,94.8077" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_221"/><path d=" M 282.5067,94.8077 L 285.0667,94.0381" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_222"/><path d=" M 285.0667,94.0381 L 287.6267,93.2685" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_223"/><path d=" M 287.6267,93.2685 L 290.1867,92.4988" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_224"/><path d=" M 290.1867,92.4988 L 292.7467,91.7292" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_225"/><path d=" M 292.7467,91.7292 L 295.3067,90.9595" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_226"/><path d=" M 295.3067,90.9595 L 297.8667,90.1899" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_227"/><path d=" M 297.8667,90.1899 L 300.4267,89.4202" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_228"/><path d=" M 300.4267,89.4202 L 302.9867,88.6506" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_229"/><path d=" M 302.9867,88.6506 L 305.5467,87.8809" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_230"/><path d=" M 305.5467,87.8809 L 308.1067,87.1113" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_231"/><path d=" M 308.1067,87.1113 L 310.6667,86.3416" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_232"/><path d=" M 310.6667,86.3416 L 313.2267,85.5720" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_233"/><path d=" M 313.2267,85.5720 L 315.7867,84.8023" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_234"/><path d=" M 315.7867,84.8023 L 318.3467,84.0327" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_235"/><path d=" M 318.3467,84.0327 L 320.9067,83.2631" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_236"/><path d=" M 320.9067,83.2631 L 323.4667,82.4934" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_237"/><path d=" M 323.4667,82.4934 L 326.0267,81.7238" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_238"/><path d=" M 326.0267,81.7238 L 328.5867,80.9541" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_239"/><path d=" M 328.5867,80.9541 L 331.1467,80.1845" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_240"/><path d=" M 331.1467,80.1845 L 333.7067,79.4148" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_241"/><path d=" M 333.7067,79.4148 L 336.2667,78.6452" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_242"/><path d=" M 336.2667,78.6452 L 338.8267,77.8755" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_243"/><path d=" M 338.8267,77.8755 L 341.3867,77.1059" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_244"/><path d=" M 341.3867,77.1059 L 343.9467,76.3362" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_245"/><path d=" M 343.9467,76.3362 L 346.5067,75.5666" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_246"/><path d=" M 346.5067,75.5666 L 349.0667,74.7969" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_247"/><path d=" M 349.0667,74.7969 L 351.6267,74.0273" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_248"/><path d=" M 351.6267,74.0273 L 354.1867,73.2577" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_249"/><path d=" M 354.1867,73.2577 L 356.7467,72.4880" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_250"/><path d=" M 356.7467,72.4880 L 359.3067,71.7184" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_251"/><path d=" M 359.3067,71.7184 L 361.8667,70.9487" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_252"/><path d=" M 361.8667,70.9487 L 364.4267,70.1791" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_253"/><path d=" M 364.4267,70.1791 L 366.9867,69.4094" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_254"/><path d=" M 366.9867,69.4094 L 369.5467,68.6398" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_255"/><path d=" M 369.5467,68.6398 L 372.1067,67.8701" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_256"/><path d=" M 372.1067,67.8701 L 374.6667,67.1005" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_257"/><path d=" M 374.6667,67.1005 L 377.2267,66.3308" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_258"/><path d=" M 377.2267,66.3308 L 379.7867,65.5612" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_259"/><path d=" M 379.7867,65.5612 L 382.3467,64.7915" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_260"/><path d=" M 382.3467,64.7915 L 384.9067,64.0219" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_261"/><path d=" M 384.9067,64.0219 L 387.4667,63.2522" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_262"/><path d=" M 387.4667,63.2522 L 390.0267,62.4826" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_263"/><path d=" M 390.0267,62.4826 L 392.5867,61.7130" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_264"/><path d=" M 392.5867,61.7130 L 395.1467,60.9433" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_265"/><path d=" M 395.1467,60.9433 L 397.7067,60.1737" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_266"/><path d=" M 397.7067,60.1737 L 400.2667,59.4040" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_267"/><path d=" M 400.2667,59.4040 L 402.8267,58.6344" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_268"/><path d=" M 402.8267,58.6344 L 405.3867,57.8647" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_269"/><path d=" M 405.3867,57.8647 L 407.9467,57.0951" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_270"/><path d=" M 407.9467,57.0951 L 410.5067,56.3254" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_271"/><path d=" M 410.5067,56.3254 L 413.0667,55.5558" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_272"/><path d=" M 413.0667,55.5558 L 415.6267,54.7861" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_273"/><path d=" M 415.6267,54.7861 L 418.1867,54.0165" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_274"/><path d=" M 418.1867,54.0165 L 420.7467,53.2468" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_275"/><path d=" M 420.7467,53.2468 L 423.3067,52.4772" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_276"/><path d=" M 423.3067,52.4772 L 425.8667,51.7076" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_277"/><path d=" M 425.8667,51.7076 L 428.4267,50.9379" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_278"/><path d=" M 428.4267,50.9379 L 430.9867,50.1683" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_279"/><path d=" M 430.9867,50.1683 L 433.5467,49.3986" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_280"/><path d=" M 433.5467,49.3986 L 436.1067,48.6290" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_281"/><path d=" M 436.1067,48.6290 L 438.6667,47.8593" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_282"/><path d=" M 182.6667,110.6612 L 182.6667,110.6612" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_283"/><path d=" M 182.6667,110.6612 L 185.2267,111.1537" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_284"/><path d=" M 185.2267,111.1537 L 187.7867,111.6038" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_285"/><path d=" M 187.7867,111.6038 L 190.3467,112.0122" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_286"/><path d=" M 190.3467,112.0122 L 192.9067,112.3794" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_287"/><path d=" M 192.9067,112.3794 L 195.4667,112.7058" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_288"/><path d=" M 195.4667,112.7058 L 198.0267,112.9922" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_289"/><path d=" M 198.0267,112.9922 L 200.5867,113.2389" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_290"/><path d=" M 200.5867,113.2389 L 203.1467,113.4466" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_291"/><path d=" M 203.1467,113.4466 L 205.7067,113.6157" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_292"/><path d=" M 205.7067,113.6157 L 208.2667,113.7470" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_293"/><path d=" M 208.2667,113.7470 L 210.8267,113.8408" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_294"/><path d=" M 210.8267,113.8408 L 213.3867,113.8977" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_295"/><path d=" M 213.3867,113.8977 L 215.9467,113.9183" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_296"/><path d=" M 215.9467,113.9183 L 218.5067,113.9031" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_297"/><path d=" M 218.5067,113.9031 L 221.0667,113.8528" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_298"/><path d=" M 221.0667,113.8528 L 223.6267,113.7677" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_299"/><path d=" M 223.6267,113.7677 L 226.1867,113.6485" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_300"/><path d=" M 226.1867,113.6485 L 228.7467,113.4957" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_301"/><path d=" M 228.7467,113.4957 L 231.3067,113.3098" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_302"/><path d=" M 231.3067,113.3098 L 233.8667,113.0915" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_303"/><path d=" M 233.8667,113.0915 L 236.4267,112.8412" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_304"/><path d=" M 236.4267,112.8412 L 238.9867,112.5595" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_305"/><path d=" M 238.9867,112.5595 L 241.5467,112.2469" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_306"/><path d=" M 241.5467,112.2469 L 244.1067,111.9040" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_307"/><path d=" M 244.1067,111.9040 L 246.6667,111.5313" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_308"/><path d=" M 246.6667,111.5313 L 249.2267,111.1294" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_309"/><path d=" M 249.2267,111.1294 L 251.7867,110.6989" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_310"/><path d=" M 251.7867,110.6989 L 254.3467,110.2402" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_311"/><path d=" M 254.3467,110.2402 L 256.9067,109.7539" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_312"/><path d=" M 256.9067,109.7539 L 259.4667,109.2406" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_313"/><path d=" M 259.4667,109.2406 L 262.0267,108.7008" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_314"/><path d=" M 262.0267,108.7008 L 264.5867,108.1350" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_315"/><path d=" M 264.5867,108.1350 L 267.1467,107.5438" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_316"/><path d=" M 267.1467,107.5438 L 269.7067,106.9278" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_317"/><path d=" M 269.7067,106.9278 L 272.2667,106.2874" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_318"/><path d=" M 272.2667,106.2874 L 274.8267,105.6233" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_319"/><path d=" M 274.8267,105.6233 L 277.3867,104.9360" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_320"/><path d=" M 277.3867,104.9360 L 279.9467,104.2260" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_321"/><path d=" M 279.9467,104.2260 L 282.5067,103.4939" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_322"/><path d=" M 282.5067,103.4939 L 285.0667,102.7402" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_323"/><path d=" M 285.0667,102.7402 L 287.6267,101.9654" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_324"/><path d=" M 287.6267,101.9654 L 290.1867,101.1702" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_325"/><path d=" M 290.1867,101.1702 L 292.7467,100.3550" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_326"/><path d=" M 292.7467,100.3550 L 295.3067,99.5204" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_327"/><path d=" M 295.3067,99.5204 L 297.8667,98.6670" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_328"/><path d=" M 297.8667,98.6670 L 300.4267,97.7952" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_329"/><path d=" M 300.4267,97.7952 L 302.9867,96.9057" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_330"/><path d=" M 302.9867,96.9057 L 305.5467,95.9990" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_331"/><path d=" M 305.5467,95.9990 L 308.1067,95.0756" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_332"/><path d=" M 308.1067,95.0756 L 310.6667,94.1361" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_333"/><path d=" M 310.6667,94.1361 L 313.2267,93.1810" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_334"/><path d=" M 313.2267,93.1810 L 315.7867,92.2109" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_335"/><path d=" M 315.7867,92.2109 L 318.3467,91.2262" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_336"/><path d=" M 318.3467,91.2262 L 320.9067,90.2277" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_337"/><path d=" M 320.9067,90.2277 L 323.4667,89.2157" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_338"/><path d=" M 323.4667,89.2157 L 326.0267,88.1909" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_339"/><path d=" M 326.0267,88.1909 L 328.5867,87.1538" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_340"/><path d=" M 328.5867,87.1538 L 331.1467,86.1050" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_341"/><path d=" M 331.1467,86.1050 L 333.7067,85.0449" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_342"/><path d=" M 333.7067,85.0449 L 336.2667,83.9742" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_343"/><path d=" M 336.2667,83.9742 L 338.8267,82.8933" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_344"/><path d=" M 338.8267,82.8933 L 341.3867,81.8029" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_345"/><path d=" M 341.3867,81.8029 L 343.9467,80.7035" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_346"/><path d=" M 343.9467,80.7035 L 346.5067,79.5955" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_347"/><path d=" M 346.5067,79.5955 L 349.0667,78.4797" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_348"/><path d=" M 349.0667,78.4797 L 351.6267,77.3564" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_349"/><path d=" M 351.6267,77.3564 L 354.1867,76.2263" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_350"/><path d=" M 354.1867,76.2263 L 356.7467,75.0899" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_351"/><path d=" M 356.7467,75.0899 L 359.3067,73.9477" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_352"/><path d=" M 359.3067,73.9477 L 361.8667,72.8004" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_353"/><path d=" M 361.8667,72.8004 L 364.4267,71.6483" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_354"/><path d=" M 364.4267,71.6483 L 366.9867,70.4922" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_355"/><path d=" M 366.9867,70.4922 L 369.5467,69.3325" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_356"/><path d=" M 369.5467,69.3325 L 372.1067,68.1698" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_357"/><path d=" M 372.1067,68.1698 L 374.6667,67.0046" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_358"/><path d=" M 374.6667,67.0046 L 377.2267,65.8374" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_359"/><path d=" M 377.2267,65.8374 L 379.7867,64.6689" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_360"/><path d=" M 379.7867,64.6689 L 382.3467,63.4995" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_361"/><path d=" M 382.3467,63.4995 L 384.9067,62.3299" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_362"/><path d=" M 384.9067,62.3299 L 387.4667,61.1605" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_363"/><path d=" M 387.4667,61.1605 L 390.0267,59.9919" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_364"/><path d=" M 390.0267,59.9919 L 392.5867,58.8246" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_365"/><path d=" M 392.5867,58.8246 L 395.1467,57.6592" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_366"/><path d=" M 395.1467,57.6592 L 397.7067,56.4963" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_367"/><path d=" M 397.7067,56.4963 L 400.2667,55.3363" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_368"/><path d=" M 400.2667,55.3363 L 402.8267,54.1799" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_369"/><path d=" M 402.8267,54.1799 L 405.3867,53.0276" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_370"/><path d=" M 405.3867,53.0276 L 407.9467,51.8798" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_371"/><path d=" M 407.9467,51.8798 L 410.5067,50.7372" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_372"/><path d=" M 410.5067,50.7372 L 413.0667,49.6004" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_373"/><path d=" M 413.0667,49.6004 L 415.6267,48.4698" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_374"/><path d=" M 415.6267,48.4698 L 418.1867,47.3460" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_375"/><path d=" M 418.1867,47.3460 L 420.7467,46.2295" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_376"/><path d=" M 420.7467,46.2295 L 423.3067,45.1210" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_377"/><path d=" M 423.3067,45.1210 L 425.8667,44.0208" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_378"/><path d=" M 425.8667,44.0208 L 428.4267,42.9297" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_379"/><path d=" M 428.4267,42.9297 L 430.9867,41.8481" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_380"/><path d=" M 430.9867,41.8481 L 433.5467,40.7766" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_381"/><path d=" M 433.5467,40.7766 L 436.1067,39.7157" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_382"/><path d=" M 436.1067,39.7157 L 438.6667,38.6659" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_383"/><path d=" M 182.6667,103.2000 L 182.6667,103.2000" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_384"/><path d=" M 182.6667,103.2000 L 185.2267,114.5297" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_385"/><path d=" M 185.2267,114.5297 L 187.7867,124.7354" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_386"/><path d=" M 187.7867,124.7354 L 190.3467,133.8601" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_387"/><path d=" M 190.3467,133.8601 L 192.9067,141.9467" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_388"/><path d=" M 192.9067,141.9467 L 195.4667,149.0380" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_389"/><path d=" M 195.4667,149.0380 L 198.0267,155.1766" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_390"/><path d=" M 198.0267,155.1766 L 200.5867,160.4051" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_391"/><path d=" M 200.5867,160.4051 L 203.1467,164.7656" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_392"/><path d=" M 203.1467,164.7656 L 205.7067,168.3003" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_393"/><path d=" M 205.7067,168.3003 L 208.2667,171.0508" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_394"/><path d=" M 208.2667,171.0508 L 210.8267,173.0587" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_395"/><path d=" M 210.8267,173.0587 L 213.3867,174.3650" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_396"/><path d=" M 213.3867,174.3650 L 215.9467,175.0105" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_397"/><path d=" M 215.9467,175.0105 L 218.5067,175.0357" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_398"/><path d=" M 218.5067,175.0357 L 221.0667,174.4804" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_399"/><path d=" M 221.0667,174.4804 L 223.6267,173.3842" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_400"/><path d=" M 223.6267,173.3842 L 226.1867,171.7862" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_401"/><path d=" M 226.1867,171.7862 L 228.7467,169.7249" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_402"/><path d=" M 228.7467,169.7249 L 231.3067,167.2382" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_403"/><path d=" M 231.3067,167.2382 L 233.8667,164.3637" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_404"/><path d=" M 233.8667,164.3637 L 236.4267,161.1382" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_405"/><path d=" M 236.4267,161.1382 L 238.9867,157.5978" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_406"/><path d=" M 238.9867,157.5978 L 241.5467,153.7782" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_407"/><path d=" M 241.5467,153.7782 L 244.1067,149.7142" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_408"/><path d=" M 244.1067,149.7142 L 246.6667,145.4400" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_409"/><path d=" M 246.6667,145.4400 L 249.2267,140.9890" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_410"/><path d=" M 249.2267,140.9890 L 251.7867,136.3938" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_411"/><path d=" M 251.7867,136.3938 L 254.3467,131.6863" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_412"/><path d=" M 254.3467,131.6863 L 256.9067,126.8975" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_413"/><path d=" M 256.9067,126.8975 L 259.4667,122.0574" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_414"/><path d=" M 259.4667,122.0574 L 262.0267,117.1955" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_415"/><path d=" M 262.0267,117.1955 L 264.5867,112.3399" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_416"/><path d=" M 264.5867,112.3399 L 267.1467,107.5180" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_417"/><path d=" M 267.1467,107.5180 L 269.7067,102.7562" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_418"/><path d=" M 269.7067,102.7562 L 272.2667,98.0800" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_419"/><path d=" M 272.2667,98.0800 L 274.8267,93.5136" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_420"/><path d=" M 274.8267,93.5136 L 277.3867,89.0802" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_421"/><path d=" M 277.3867,89.0802 L 279.9467,84.8021" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_422"/><path d=" M 279.9467,84.8021 L 282.5067,80.7002" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_423"/><path d=" M 282.5067,80.7002 L 285.0667,76.7944" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_424"/><path d=" M 285.0667,76.7944 L 287.6267,73.1034" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_425"/><path d=" M 287.6267,73.1034 L 290.1867,69.6446" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_426"/><path d=" M 290.1867,69.6446 L 292.7467,66.4341" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_427"/><path d=" M 292.7467,66.4341 L 295.3067,63.4870" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_428"/><path d=" M 295.3067,63.4870 L 297.8667,60.8169" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_429"/><path d=" M 297.8667,60.8169 L 300.4267,58.4358" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_430"/><path d=" M 300.4267,58.4358 L 302.9867,56.3549" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_431"/><path d=" M 302.9867,56.3549 L 305.5467,54.5834" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_432"/><path d=" M 305.5467,54.5834 L 308.1067,53.1296" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_433"/><path d=" M 308.1067,53.1296 L 310.6667,52.0000" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_434"/><path d=" M 310.6667,52.0000 L 313.2267,51.1997" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_435"/><path d=" M 313.2267,51.1997 L 315.7867,50.7322" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_436"/><path d=" M 315.7867,50.7322 L 318.3467,50.5997" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_437"/><path d=" M 318.3467,50.5997 L 320.9067,50.8026" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_438"/><path d=" M 320.9067,50.8026 L 323.4667,51.3397" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_439"/><path d=" M 323.4667,51.3397 L 326.0267,52.2083" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_440"/><path d=" M 326.0267,52.2083 L 328.5867,53.4038" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_441"/><path d=" M 328.5867,53.4038 L 331.1467,54.9202" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_442"/><path d=" M 331.1467,54.9202 L 333.7067,56.7495" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_443"/><path d=" M 333.7067,56.7495 L 336.2667,58.8820" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_444"/><path d=" M 336.2667,58.8820 L 338.8267,61.3065" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_445"/><path d=" M 338.8267,61.3065 L 341.3867,64.0095" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_446"/><path d=" M 341.3867,64.0095 L 343.9467,66.9761" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_447"/><path d=" M 343.9467,66.9761 L 346.5067,70.1891" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_448"/><path d=" M 346.5067,70.1891 L 349.0667,73.6299" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_449"/><path d=" M 349.0667,73.6299 L 351.6267,77.2774" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_450"/><path d=" M 351.6267,77.2774 L 354.1867,81.1090" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_451"/><path d=" M 354.1867,81.1090 L 356.7467,85.0999" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_452"/><path d=" M 356.7467,85.0999 L 359.3067,89.2232" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_453"/><path d=" M 359.3067,89.2232 L 361.8667,93.4501" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_454"/><path d=" M 361.8667,93.4501 L 364.4267,97.7496" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_455"/><path d=" M 364.4267,97.7496 L 366.9867,102.0886" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_456"/><path d=" M 366.9867,102.0886 L 369.5467,106.4320" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_457"/><path d=" M 369.5467,106.4320 L 372.1067,110.7424" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_458"/><path d=" M 372.1067,110.7424 L 374.6667,114.9801" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_459"/><path d=" M 374.6667,114.9801 L 377.2267,119.1033" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_460"/><path d=" M 377.2267,119.1033 L 379.7867,123.0679" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_461"/><path d=" M 379.7867,123.0679 L 382.3467,126.8276" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_462"/><path d=" M 382.3467,126.8276 L 384.9067,130.3336" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_463"/><path d=" M 384.9067,130.3336 L 387.4667,133.5349" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_464"/><path d=" M 387.4667,133.5349 L 390.0267,136.3779" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_465"/><path d=" M 390.0267,136.3779 L 392.5867,138.8069" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_466"/><path d=" M 392.5867,138.8069 L 395.1467,140.7635" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_467"/><path d=" M 395.1467,140.7635 L 397.7067,142.1869" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_468"/><path d=" M 397.7067,142.1869 L 400.2667,143.0139" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_469"/><path d=" M 400.2667,143.0139 L 402.8267,143.1786" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_470"/><path d=" M 402.8267,143.1786 L 405.3867,142.6126" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_471"/><path d=" M 405.3867,142.6126 L 407.9467,141.2450" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_472"/><path d=" M 407.9467,141.2450 L 410.5067,139.0021" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_473"/><path d=" M 410.5067,139.0021 L 413.0667,135.8077" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_474"/><path d=" M 413.0667,135.8077 L 415.6267,131.5829" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_475"/><path d=" M 415.6267,131.5829 L 418.1867,126.2461" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_476"/><path d=" M 418.1867,126.2461 L 420.7467,119.7127" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_477"/><path d=" M 420.7467,119.7127 L 423.3067,111.8958" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_478"/><path d=" M 423.3067,111.8958 L 425.8667,102.7052" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_479"/><path d=" M 425.8667,102.7052 L 428.4267,92.0483" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_480"/><path d=" M 428.4267,92.0483 L 430.9867,79.8293" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_481"/><path d=" M 430.9867,79.8293 L 433.5467,65.9497" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_482"/><path d=" M 433.5467,65.9497 L 436.1067,50.3081" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_483"/><path d=" M 436.1067,50.3081 L 438.6667,32.8000" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_484"/><ellipse cx="182.66666666667" cy="103.2" rx="3" ry="3" style="fill: #3465a4; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_485"/><ellipse cx="246.66666666667" cy="145.44" rx="3" ry="3" style="fill: #3465a4; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_486"/><ellipse cx="272.26666666667" cy="98.08" rx="3" ry="3" style="fill: #3465a4; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_487"/><ellipse cx="310.66666666667" cy="52" rx="3" ry="3" style="fill: #3465a4; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_488"/><ellipse cx="366.13333333333" cy="100.64" rx="3" ry="3" style="fill: #3465a4; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_489"/><ellipse cx="438.66666666667" cy="32.8" rx="3" ry="3" style="fill: #3465a4; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_490"/><text id="ezcGraphTextBox_4" x="17" text-length="76.32px" y="13.5" style="font-size: 9px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Statistical data</text><text id="ezcGraphTextBox_6" x="17" text-length="71.55px" y="31.5" style="font-size: 9px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">polynom order 0</text><text id="ezcGraphTextBox_8" x="17" text-length="71.55px" y="49.5" style="font-size: 9px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">polynom order 1</text><text id="ezcGraphTextBox_10" x="17" text-length="71.55px" y="67.5" style="font-size: 9px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">polynom order 3</text><text id="ezcGraphTextBox_12" x="17" text-length="71.55px" y="85.5" style="font-size: 9px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">polynom order 5</text><text id="ezcGraphTextBox_17" x="142" text-length="7.44px" y="130" style="font-size: 12px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_28" x="248.66666666667" text-length="22.32px" y="130" style="font-size: 12px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">2.5</text><text id="ezcGraphTextBox_41" x="355.33333333333" text-length="7.44px" y="130" style="font-size: 12px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">5</text><text id="ezcGraphTextBox_54" x="435.68" text-length="22.32px" y="130" style="font-size: 12px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">7.5</text><text id="ezcGraphTextBox_61" x="123.12" text-length="14.88px" y="178" style="font-size: 12px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">-5</text><text id="ezcGraphTextBox_64" x="108.24" text-length="29.76px" y="146" style="font-size: 12px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">-2.5</text><text id="ezcGraphTextBox_65" x="130.56" text-length="7.44px" y="114" style="font-size: 12px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_68" x="115.68" text-length="22.32px" y="82" style="font-size: 12px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">2.5</text><text id="ezcGraphTextBox_71" x="130.56" text-length="7.44px" y="50" style="font-size: 12px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">5</text><text id="ezcGraphTextBox_74" x="115.68" text-length="22.32px" y="34" style="font-size: 12px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">7.5</text></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 100.0000,0.0000 L 100.0000,200.0000 L 0.0000,200.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><ellipse cx="9" cy="9" rx="7" ry="7" style="fill: #3465a4; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_3"/><path d=" M 2.0000,34.0000 L 2.0000,20.0000 L 16.0000,20.0000 L 16.0000,34.0000 L 2.0000,34.0000 z " style="fill: #4e9a06; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_5"/><path d=" M 2.0000,52.0000 L 2.0000,38.0000 L 16.0000,38.0000 L 16.0000,52.0000 L 2.0000,52.0000 z " style="fill: #cc0000; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 2.0000,70.0000 L 2.0000,56.0000 L 16.0000,56.0000 L 16.0000,70.0000 L 2.0000,70.0000 z " style="fill: #edd400; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 2.0000,88.0000 L 2.0000,74.0000 L 16.0000,74.0000 L 16.0000,88.0000 L 2.0000,88.0000 z " style="fill: #75505b; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 100.0000,116.0000 L 500.0000,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 492.0000,120.0000 L 500.0000,116.0000 L 492.0000,112.0000 L 492.0000,120.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_16"/><path d=" M 162.4000,20.0000 L 162.4000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 161.3333,115.0000 L 161.3333,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 181.6000,20.0000 L 181.6000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 182.6667,115.0000 L 182.6667,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 204.0000,20.0000 L 204.0000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 204.0000,115.0000 L 204.0000,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 226.4000,20.0000 L 226.4000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 225.3333,115.0000 L 225.3333,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 245.6000,20.0000 L 245.6000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 246.6667,113.0000 L 246.6667,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 268.0000,20.0000 L 268.0000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 268.0000,115.0000 L 268.0000,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 290.4000,20.0000 L 290.4000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 289.3333,115.0000 L 289.3333,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 309.6000,20.0000 L 309.6000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 310.6667,115.0000 L 310.6667,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 332.0000,20.0000 L 332.0000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 332.0000,115.0000 L 332.0000,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 354.4000,20.0000 L 354.4000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 353.3333,113.0000 L 353.3333,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 373.6000,20.0000 L 373.6000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 374.6667,115.0000 L 374.6667,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 396.0000,20.0000 L 396.0000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 396.0000,115.0000 L 396.0000,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 418.4000,20.0000 L 418.4000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 417.3333,115.0000 L 417.3333,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 437.6000,20.0000 L 437.6000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 438.6667,115.0000 L 438.6667,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 460.0000,20.0000 L 460.0000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 460.0000,113.0000 L 460.0000,116.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 140.0000,180.0000 L 460.0000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 140.0000,180.0000 L 143.0000,180.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 140.0000,173.6000 L 460.0000,173.6000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 140.0000,173.6000 L 141.0000,173.6000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 140.0000,167.2000 L 460.0000,167.2000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 140.0000,167.2000 L 141.0000,167.2000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 140.0000,160.8000 L 460.0000,160.8000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 140.0000,160.8000 L 141.0000,160.8000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 140.0000,154.4000 L 460.0000,154.4000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 140.0000,154.4000 L 141.0000,154.4000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 140.0000,148.0000 L 460.0000,148.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 140.0000,148.0000 L 143.0000,148.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 140.0000,141.6000 L 460.0000,141.6000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 140.0000,141.6000 L 141.0000,141.6000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 140.0000,135.2000 L 460.0000,135.2000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 140.0000,135.2000 L 141.0000,135.2000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 140.0000,128.8000 L 460.0000,128.8000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 140.0000,128.8000 L 141.0000,128.8000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 140.0000,122.4000 L 460.0000,122.4000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 140.0000,122.4000 L 141.0000,122.4000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 140.0000,109.6000 L 460.0000,109.6000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 140.0000,109.6000 L 141.0000,109.6000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 140.0000,103.2000 L 460.0000,103.2000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 140.0000,103.2000 L 141.0000,103.2000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 140.0000,96.8000 L 460.0000,96.8000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 140.0000,96.8000 L 141.0000,96.8000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><path d=" M 140.0000,90.4000 L 460.0000,90.4000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_80"/><path d=" M 140.0000,90.4000 L 141.0000,90.4000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_81"/><path d=" M 140.0000,84.0000 L 460.0000,84.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_82"/><path d=" M 140.0000,84.0000 L 143.0000,84.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_83"/><path d=" M 140.0000,77.6000 L 460.0000,77.6000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_85"/><path d=" M 140.0000,77.6000 L 141.0000,77.6000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_86"/><path d=" M 140.0000,71.2000 L 460.0000,71.2000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_87"/><path d=" M 140.0000,71.2000 L 141.0000,71.2000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_88"/><path d=" M 140.0000,64.8000 L 460.0000,64.8000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_89"/><path d=" M 140.0000,64.8000 L 141.0000,64.8000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_90"/><path d=" M 140.0000,58.4000 L 460.0000,58.4000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_91"/><path d=" M 140.0000,58.4000 L 141.0000,58.4000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_92"/><path d=" M 140.0000,52.0000 L 460.0000,52.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_93"/><path d=" M 140.0000,52.0000 L 143.0000,52.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_94"/><path d=" M 140.0000,45.6000 L 460.0000,45.6000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_96"/><path d=" M 140.0000,45.6000 L 141.0000,45.6000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_97"/><path d=" M 140.0000,39.2000 L 460.0000,39.2000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_98"/><path d=" M 140.0000,39.2000 L 141.0000,39.2000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_99"/><path d=" M 140.0000,32.8000 L 460.0000,32.8000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_100"/><path d=" M 140.0000,32.8000 L 141.0000,32.8000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_101"/><path d=" M 140.0000,26.4000 L 460.0000,26.4000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_102"/><path d=" M 140.0000,26.4000 L 141.0000,26.4000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_103"/><path d=" M 140.0000,20.0000 L 460.0000,20.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_104"/><path d=" M 140.0000,20.0000 L 143.0000,20.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_105"/><path d=" M 182.6667,103.2000 L 182.6667,103.2000" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_107"/><path d=" M 182.6667,103.2000 L 246.6667,145.4400" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_108"/><path d=" M 246.6667,145.4400 L 272.2667,98.0800" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_109"/><path d=" M 272.2667,98.0800 L 310.6667,52.0000" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_110"/><path d=" M 310.6667,52.0000 L 366.1333,100.6400" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_111"/><path d=" M 366.1333,100.6400 L 438.6667,32.8000" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_112"/><path d=" M 182.6667,88.6933 L 182.6667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_113"/><path d=" M 182.6667,88.6933 L 185.2267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_114"/><path d=" M 185.2267,88.6933 L 187.7867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_115"/><path d=" M 187.7867,88.6933 L 190.3467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_116"/><path d=" M 190.3467,88.6933 L 192.9067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_117"/><path d=" M 192.9067,88.6933 L 195.4667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_118"/><path d=" M 195.4667,88.6933 L 198.0267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_119"/><path d=" M 198.0267,88.6933 L 200.5867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_120"/><path d=" M 200.5867,88.6933 L 203.1467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_121"/><path d=" M 203.1467,88.6933 L 205.7067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_122"/><path d=" M 205.7067,88.6933 L 208.2667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_123"/><path d=" M 208.2667,88.6933 L 210.8267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_124"/><path d=" M 210.8267,88.6933 L 213.3867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_125"/><path d=" M 213.3867,88.6933 L 215.9467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_126"/><path d=" M 215.9467,88.6933 L 218.5067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_127"/><path d=" M 218.5067,88.6933 L 221.0667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_128"/><path d=" M 221.0667,88.6933 L 223.6267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_129"/><path d=" M 223.6267,88.6933 L 226.1867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_130"/><path d=" M 226.1867,88.6933 L 228.7467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_131"/><path d=" M 228.7467,88.6933 L 231.3067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_132"/><path d=" M 231.3067,88.6933 L 233.8667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_133"/><path d=" M 233.8667,88.6933 L 236.4267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_134"/><path d=" M 236.4267,88.6933 L 238.9867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_135"/><path d=" M 238.9867,88.6933 L 241.5467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_136"/><path d=" M 241.5467,88.6933 L 244.1067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_137"/><path d=" M 244.1067,88.6933 L 246.6667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_138"/><path d=" M 246.6667,88.6933 L 249.2267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_139"/><path d=" M 249.2267,88.6933 L 251.7867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_140"/><path d=" M 251.7867,88.6933 L 254.3467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_141"/><path d=" M 254.3467,88.6933 L 256.9067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_142"/><path d=" M 256.9067,88.6933 L 259.4667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_143"/><path d=" M 259.4667,88.6933 L 262.0267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_144"/><path d=" M 262.0267,88.6933 L 264.5867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_145"/><path d=" M 264.5867,88.6933 L 267.1467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_146"/><path d=" M 267.1467,88.6933 L 269.7067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_147"/><path d=" M 269.7067,88.6933 L 272.2667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_148"/><path d=" M 272.2667,88.6933 L 274.8267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_149"/><path d=" M 274.8267,88.6933 L 277.3867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_150"/><path d=" M 277.3867,88.6933 L 279.9467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_151"/><path d=" M 279.9467,88.6933 L 282.5067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_152"/><path d=" M 282.5067,88.6933 L 285.0667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_153"/><path d=" M 285.0667,88.6933 L 287.6267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_154"/><path d=" M 287.6267,88.6933 L 290.1867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_155"/><path d=" M 290.1867,88.6933 L 292.7467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_156"/><path d=" M 292.7467,88.6933 L 295.3067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_157"/><path d=" M 295.3067,88.6933 L 297.8667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_158"/><path d=" M 297.8667,88.6933 L 300.4267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_159"/><path d=" M 300.4267,88.6933 L 302.9867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_160"/><path d=" M 302.9867,88.6933 L 305.5467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_161"/><path d=" M 305.5467,88.6933 L 308.1067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_162"/><path d=" M 308.1067,88.6933 L 310.6667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_163"/><path d=" M 310.6667,88.6933 L 313.2267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_164"/><path d=" M 313.2267,88.6933 L 315.7867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_165"/><path d=" M 315.7867,88.6933 L 318.3467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_166"/><path d=" M 318.3467,88.6933 L 320.9067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_167"/><path d=" M 320.9067,88.6933 L 323.4667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_168"/><path d=" M 323.4667,88.6933 L 326.0267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_169"/><path d=" M 326.0267,88.6933 L 328.5867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_170"/><path d=" M 328.5867,88.6933 L 331.1467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_171"/><path d=" M 331.1467,88.6933 L 333.7067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_172"/><path d=" M 333.7067,88.6933 L 336.2667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_173"/><path d=" M 336.2667,88.6933 L 338.8267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_174"/><path d=" M 338.8267,88.6933 L 341.3867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_175"/><path d=" M 341.3867,88.6933 L 343.9467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_176"/><path d=" M 343.9467,88.6933 L 346.5067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_177"/><path d=" M 346.5067,88.6933 L 349.0667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_178"/><path d=" M 349.0667,88.6933 L 351.6267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_179"/><path d=" M 351.6267,88.6933 L 354.1867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_180"/><path d=" M 354.1867,88.6933 L 356.7467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_181"/><path d=" M 356.7467,88.6933 L 359.3067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_182"/><path d=" M 359.3067,88.6933 L 361.8667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_183"/><path d=" M 361.8667,88.6933 L 364.4267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_184"/><path d=" M 364.4267,88.6933 L 366.9867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_185"/><path d=" M 366.9867,88.6933 L 369.5467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_186"/><path d=" M 369.5467,88.6933 L 372.1067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_187"/><path d=" M 372.1067,88.6933 L 374.6667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_188"/><path d=" M 374.6667,88.6933 L 377.2267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_189"/><path d=" M 377.2267,88.6933 L 379.7867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_190"/><path d=" M 379.7867,88.6933 L 382.3467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_191"/><path d=" M 382.3467,88.6933 L 384.9067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_192"/><path d=" M 384.9067,88.6933 L 387.4667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_193"/><path d=" M 387.4667,88.6933 L 390.0267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_194"/><path d=" M 390.0267,88.6933 L 392.5867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_195"/><path d=" M 392.5867,88.6933 L 395.1467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_196"/><path d=" M 395.1467,88.6933 L 397.7067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_197"/><path d=" M 397.7067,88.6933 L 400.2667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_198"/><path d=" M 400.2667,88.6933 L 402.8267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_199"/><path d=" M 402.8267,88.6933 L 405.3867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_200"/><path d=" M 405.3867,88.6933 L 407.9467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_201"/><path d=" M 407.9467,88.6933 L 410.5067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_202"/><path d=" M 410.5067,88.6933 L 413.0667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_203"/><path d=" M 413.0667,88.6933 L 415.6267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_204"/><path d=" M 415.6267,88.6933 L 418.1867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_205"/><path d=" M 418.1867,88.6933 L 420.7467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_206"/><path d=" M 420.7467,88.6933 L 423.3067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_207"/><path d=" M 423.3067,88.6933 L 425.8667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_208"/><path d=" M 425.8667,88.6933 L 428.4267,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_209"/><path d=" M 428.4267,88.6933 L 430.9867,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_210"/><path d=" M 430.9867,88.6933 L 433.5467,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_211"/><path d=" M 433.5467,88.6933 L 436.1067,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_212"/><path d=" M 436.1067,88.6933 L 438.6667,88.6933" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_213"/><path d=" M 182.6667,124.8239 L 182.6667,124.8239" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_214"/><path d=" M 182.6667,124.8239 L 185.2267,124.0543" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_215"/><path d=" M 185.2267,124.0543 L 187.7867,123.2847" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_216"/><path d=" M 187.7867,123.2847 L 190.3467,122.5150" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_217"/><path d=" M 190.3467,122.5150 L 192.9067,121.7454" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_218"/><path d=" M 192.9067,121.7454 L 195.4667,120.9757" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_219"/><path d=" M 195.4667,120.9757 L 198.0267,120.2061" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_220"/><path d=" M 198.0267,120.2061 L 200.5867,119.4364" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_221"/><path d=" M 200.5867,119.4364 L 203.1467,118.6668" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_222"/><path d=" M 203.1467,118.6668 L 205.7067,117.8971" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_223"/><path d=" M 205.7067,117.8971 L 208.2667,117.1275" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_224"/><path d=" M 208.2667,117.1275 L 210.8267,116.3578" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_225"/><path d=" M 210.8267,116.3578 L 213.3867,115.5882" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_226"/><path d=" M 213.3867,115.5882 L 215.9467,114.8185" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_227"/><path d=" M 215.9467,114.8185 L 218.5067,114.0489" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_228"/><path d=" M 218.5067,114.0489 L 221.0667,113.2793" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_229"/><path d=" M 221.0667,113.2793 L 223.6267,112.5096" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_230"/><path d=" M 223.6267,112.5096 L 226.1867,111.7400" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_231"/><path d=" M 226.1867,111.7400 L 228.7467,110.9703" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_232"/><path d=" M 228.7467,110.9703 L 231.3067,110.2007" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_233"/><path d=" M 231.3067,110.2007 L 233.8667,109.4310" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_234"/><path d=" M 233.8667,109.4310 L 236.4267,108.6614" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_235"/><path d=" M 236.4267,108.6614 L 238.9867,107.8917" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_236"/><path d=" M 238.9867,107.8917 L 241.5467,107.1221" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_237"/><path d=" M 241.5467,107.1221 L 244.1067,106.3524" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_238"/><path d=" M 244.1067,106.3524 L 246.6667,105.5828" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_239"/><path d=" M 246.6667,105.5828 L 249.2267,104.8131" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_240"/><path d=" M 249.2267,104.8131 L 251.7867,104.0435" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_241"/><path d=" M 251.7867,104.0435 L 254.3467,103.2739" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_242"/><path d=" M 254.3467,103.2739 L 256.9067,102.5042" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_243"/><path d=" M 256.9067,102.5042 L 259.4667,101.7346" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_244"/><path d=" M 259.4667,101.7346 L 262.0267,100.9649" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_245"/><path d=" M 262.0267,100.9649 L 264.5867,100.1953" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_246"/><path d=" M 264.5867,100.1953 L 267.1467,99.4256" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_247"/><path d=" M 267.1467,99.4256 L 269.7067,98.6560" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_248"/><path d=" M 269.7067,98.6560 L 272.2667,97.8863" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_249"/><path d=" M 272.2667,97.8863 L 274.8267,97.1167" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_250"/><path d=" M 274.8267,97.1167 L 277.3867,96.3470" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_251"/><path d=" M 277.3867,96.3470 L 279.9467,95.5774" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_252"/><path d=" M 279.9467,95.5774 L 282.5067,94.8077" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_253"/><path d=" M 282.5067,94.8077 L 285.0667,94.0381" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_254"/><path d=" M 285.0667,94.0381 L 287.6267,93.2685" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_255"/><path d=" M 287.6267,93.2685 L 290.1867,92.4988" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_256"/><path d=" M 290.1867,92.4988 L 292.7467,91.7292" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_257"/><path d=" M 292.7467,91.7292 L 295.3067,90.9595" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_258"/><path d=" M 295.3067,90.9595 L 297.8667,90.1899" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_259"/><path d=" M 297.8667,90.1899 L 300.4267,89.4202" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_260"/><path d=" M 300.4267,89.4202 L 302.9867,88.6506" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_261"/><path d=" M 302.9867,88.6506 L 305.5467,87.8809" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_262"/><path d=" M 305.5467,87.8809 L 308.1067,87.1113" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_263"/><path d=" M 308.1067,87.1113 L 310.6667,86.3416" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_264"/><path d=" M 310.6667,86.3416 L 313.2267,85.5720" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_265"/><path d=" M 313.2267,85.5720 L 315.7867,84.8023" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_266"/><path d=" M 315.7867,84.8023 L 318.3467,84.0327" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_267"/><path d=" M 318.3467,84.0327 L 320.9067,83.2631" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_268"/><path d=" M 320.9067,83.2631 L 323.4667,82.4934" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_269"/><path d=" M 323.4667,82.4934 L 326.0267,81.7238" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_270"/><path d=" M 326.0267,81.7238 L 328.5867,80.9541" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_271"/><path d=" M 328.5867,80.9541 L 331.1467,80.1845" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_272"/><path d=" M 331.1467,80.1845 L 333.7067,79.4148" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_273"/><path d=" M 333.7067,79.4148 L 336.2667,78.6452" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_274"/><path d=" M 336.2667,78.6452 L 338.8267,77.8755" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_275"/><path d=" M 338.8267,77.8755 L 341.3867,77.1059" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_276"/><path d=" M 341.3867,77.1059 L 343.9467,76.3362" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_277"/><path d=" M 343.9467,76.3362 L 346.5067,75.5666" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_278"/><path d=" M 346.5067,75.5666 L 349.0667,74.7969" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_279"/><path d=" M 349.0667,74.7969 L 351.6267,74.0273" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_280"/><path d=" M 351.6267,74.0273 L 354.1867,73.2577" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_281"/><path d=" M 354.1867,73.2577 L 356.7467,72.4880" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_282"/><path d=" M 356.7467,72.4880 L 359.3067,71.7184" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_283"/><path d=" M 359.3067,71.7184 L 361.8667,70.9487" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_284"/><path d=" M 361.8667,70.9487 L 364.4267,70.1791" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_285"/><path d=" M 364.4267,70.1791 L 366.9867,69.4094" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_286"/><path d=" M 366.9867,69.4094 L 369.5467,68.6398" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_287"/><path d=" M 369.5467,68.6398 L 372.1067,67.8701" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_288"/><path d=" M 372.1067,67.8701 L 374.6667,67.1005" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_289"/><path d=" M 374.6667,67.1005 L 377.2267,66.3308" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_290"/><path d=" M 377.2267,66.3308 L 379.7867,65.5612" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_291"/><path d=" M 379.7867,65.5612 L 382.3467,64.7915" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_292"/><path d=" M 382.3467,64.7915 L 384.9067,64.0219" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_293"/><path d=" M 384.9067,64.0219 L 387.4667,63.2522" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_294"/><path d=" M 387.4667,63.2522 L 390.0267,62.4826" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_295"/><path d=" M 390.0267,62.4826 L 392.5867,61.7130" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_296"/><path d=" M 392.5867,61.7130 L 395.1467,60.9433" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_297"/><path d=" M 395.1467,60.9433 L 397.7067,60.1737" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_298"/><path d=" M 397.7067,60.1737 L 400.2667,59.4040" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_299"/><path d=" M 400.2667,59.4040 L 402.8267,58.6344" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_300"/><path d=" M 402.8267,58.6344 L 405.3867,57.8647" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_301"/><path d=" M 405.3867,57.8647 L 407.9467,57.0951" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_302"/><path d=" M 407.9467,57.0951 L 410.5067,56.3254" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_303"/><path d=" M 410.5067,56.3254 L 413.0667,55.5558" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_304"/><path d=" M 413.0667,55.5558 L 415.6267,54.7861" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_305"/><path d=" M 415.6267,54.7861 L 418.1867,54.0165" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_306"/><path d=" M 418.1867,54.0165 L 420.7467,53.2468" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_307"/><path d=" M 420.7467,53.2468 L 423.3067,52.4772" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_308"/><path d=" M 423.3067,52.4772 L 425.8667,51.7076" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_309"/><path d=" M 425.8667,51.7076 L 428.4267,50.9379" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_310"/><path d=" M 428.4267,50.9379 L 430.9867,50.1683" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_311"/><path d=" M 430.9867,50.1683 L 433.5467,49.3986" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_312"/><path d=" M 433.5467,49.3986 L 436.1067,48.6290" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_313"/><path d=" M 436.1067,48.6290 L 438.6667,47.8593" style="fill: none; stroke: #cc0000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_314"/><path d=" M 182.6667,110.6612 L 182.6667,110.6612" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_315"/><path d=" M 182.6667,110.6612 L 185.2267,111.1537" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_316"/><path d=" M 185.2267,111.1537 L 187.7867,111.6038" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_317"/><path d=" M 187.7867,111.6038 L 190.3467,112.0122" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_318"/><path d=" M 190.3467,112.0122 L 192.9067,112.3794" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_319"/><path d=" M 192.9067,112.3794 L 195.4667,112.7058" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_320"/><path d=" M 195.4667,112.7058 L 198.0267,112.9922" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_321"/><path d=" M 198.0267,112.9922 L 200.5867,113.2389" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_322"/><path d=" M 200.5867,113.2389 L 203.1467,113.4466" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_323"/><path d=" M 203.1467,113.4466 L 205.7067,113.6157" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_324"/><path d=" M 205.7067,113.6157 L 208.2667,113.7470" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_325"/><path d=" M 208.2667,113.7470 L 210.8267,113.8408" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_326"/><path d=" M 210.8267,113.8408 L 213.3867,113.8977" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_327"/><path d=" M 213.3867,113.8977 L 215.9467,113.9183" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_328"/><path d=" M 215.9467,113.9183 L 218.5067,113.9031" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_329"/><path d=" M 218.5067,113.9031 L 221.0667,113.8528" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_330"/><path d=" M 221.0667,113.8528 L 223.6267,113.7677" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_331"/><path d=" M 223.6267,113.7677 L 226.1867,113.6485" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_332"/><path d=" M 226.1867,113.6485 L 228.7467,113.4957" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_333"/><path d=" M 228.7467,113.4957 L 231.3067,113.3098" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_334"/><path d=" M 231.3067,113.3098 L 233.8667,113.0915" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_335"/><path d=" M 233.8667,113.0915 L 236.4267,112.8412" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_336"/><path d=" M 236.4267,112.8412 L 238.9867,112.5595" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_337"/><path d=" M 238.9867,112.5595 L 241.5467,112.2469" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_338"/><path d=" M 241.5467,112.2469 L 244.1067,111.9040" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_339"/><path d=" M 244.1067,111.9040 L 246.6667,111.5313" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_340"/><path d=" M 246.6667,111.5313 L 249.2267,111.1294" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_341"/><path d=" M 249.2267,111.1294 L 251.7867,110.6989" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_342"/><path d=" M 251.7867,110.6989 L 254.3467,110.2402" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_343"/><path d=" M 254.3467,110.2402 L 256.9067,109.7539" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_344"/><path d=" M 256.9067,109.7539 L 259.4667,109.2406" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_345"/><path d=" M 259.4667,109.2406 L 262.0267,108.7008" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_346"/><path d=" M 262.0267,108.7008 L 264.5867,108.1350" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_347"/><path d=" M 264.5867,108.1350 L 267.1467,107.5438" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_348"/><path d=" M 267.1467,107.5438 L 269.7067,106.9278" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_349"/><path d=" M 269.7067,106.9278 L 272.2667,106.2874" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_350"/><path d=" M 272.2667,106.2874 L 274.8267,105.6233" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_351"/><path d=" M 274.8267,105.6233 L 277.3867,104.9360" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_352"/><path d=" M 277.3867,104.9360 L 279.9467,104.2260" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_353"/><path d=" M 279.9467,104.2260 L 282.5067,103.4939" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_354"/><path d=" M 282.5067,103.4939 L 285.0667,102.7402" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_355"/><path d=" M 285.0667,102.7402 L 287.6267,101.9654" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_356"/><path d=" M 287.6267,101.9654 L 290.1867,101.1702" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_357"/><path d=" M 290.1867,101.1702 L 292.7467,100.3550" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_358"/><path d=" M 292.7467,100.3550 L 295.3067,99.5204" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_359"/><path d=" M 295.3067,99.5204 L 297.8667,98.6670" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_360"/><path d=" M 297.8667,98.6670 L 300.4267,97.7952" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_361"/><path d=" M 300.4267,97.7952 L 302.9867,96.9057" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_362"/><path d=" M 302.9867,96.9057 L 305.5467,95.9990" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_363"/><path d=" M 305.5467,95.9990 L 308.1067,95.0756" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_364"/><path d=" M 308.1067,95.0756 L 310.6667,94.1361" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_365"/><path d=" M 310.6667,94.1361 L 313.2267,93.1810" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_366"/><path d=" M 313.2267,93.1810 L 315.7867,92.2109" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_367"/><path d=" M 315.7867,92.2109 L 318.3467,91.2262" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_368"/><path d=" M 318.3467,91.2262 L 320.9067,90.2277" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_369"/><path d=" M 320.9067,90.2277 L 323.4667,89.2157" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_370"/><path d=" M 323.4667,89.2157 L 326.0267,88.1909" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_371"/><path d=" M 326.0267,88.1909 L 328.5867,87.1538" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_372"/><path d=" M 328.5867,87.1538 L 331.1467,86.1050" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_373"/><path d=" M 331.1467,86.1050 L 333.7067,85.0449" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_374"/><path d=" M 333.7067,85.0449 L 336.2667,83.9742" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_375"/><path d=" M 336.2667,83.9742 L 338.8267,82.8933" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_376"/><path d=" M 338.8267,82.8933 L 341.3867,81.8029" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_377"/><path d=" M 341.3867,81.8029 L 343.9467,80.7035" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_378"/><path d=" M 343.9467,80.7035 L 346.5067,79.5955" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_379"/><path d=" M 346.5067,79.5955 L 349.0667,78.4797" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_380"/><path d=" M 349.0667,78.4797 L 351.6267,77.3564" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_381"/><path d=" M 351.6267,77.3564 L 354.1867,76.2263" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_382"/><path d=" M 354.1867,76.2263 L 356.7467,75.0899" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_383"/><path d=" M 356.7467,75.0899 L 359.3067,73.9477" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_384"/><path d=" M 359.3067,73.9477 L 361.8667,72.8004" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_385"/><path d=" M 361.8667,72.8004 L 364.4267,71.6483" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_386"/><path d=" M 364.4267,71.6483 L 366.9867,70.4922" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_387"/><path d=" M 366.9867,70.4922 L 369.5467,69.3325" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_388"/><path d=" M 369.5467,69.3325 L 372.1067,68.1698" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_389"/><path d=" M 372.1067,68.1698 L 374.6667,67.0046" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_390"/><path d=" M 374.6667,67.0046 L 377.2267,65.8374" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_391"/><path d=" M 377.2267,65.8374 L 379.7867,64.6689" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_392"/><path d=" M 379.7867,64.6689 L 382.3467,63.4995" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_393"/><path d=" M 382.3467,63.4995 L 384.9067,62.3299" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_394"/><path d=" M 384.9067,62.3299 L 387.4667,61.1605" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_395"/><path d=" M 387.4667,61.1605 L 390.0267,59.9919" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_396"/><path d=" M 390.0267,59.9919 L 392.5867,58.8246" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_397"/><path d=" M 392.5867,58.8246 L 395.1467,57.6592" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_398"/><path d=" M 395.1467,57.6592 L 397.7067,56.4963" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_399"/><path d=" M 397.7067,56.4963 L 400.2667,55.3363" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_400"/><path d=" M 400.2667,55.3363 L 402.8267,54.1799" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_401"/><path d=" M 402.8267,54.1799 L 405.3867,53.0276" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_402"/><path d=" M 405.3867,53.0276 L 407.9467,51.8798" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_403"/><path d=" M 407.9467,51.8798 L 410.5067,50.7372" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_404"/><path d=" M 410.5067,50.7372 L 413.0667,49.6004" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_405"/><path d=" M 413.0667,49.6004 L 415.6267,48.4698" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_406"/><path d=" M 415.6267,48.4698 L 418.1867,47.3460" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_407"/><path d=" M 418.1867,47.3460 L 420.7467,46.2295" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_408"/><path d=" M 420.7467,46.2295 L 423.3067,45.1210" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_409"/><path d=" M 423.3067,45.1210 L 425.8667,44.0208" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_410"/><path d=" M 425.8667,44.0208 L 428.4267,42.9297" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_411"/><path d=" M 428.4267,42.9297 L 430.9867,41.8481" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_412"/><path d=" M 430.9867,41.8481 L 433.5467,40.7766" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_413"/><path d=" M 433.5467,40.7766 L 436.1067,39.7157" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_414"/><path d=" M 436.1067,39.7157 L 438.6667,38.6659" style="fill: none; stroke: #edd400; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_415"/><path d=" M 182.6667,103.2000 L 182.6667,103.2000" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_416"/><path d=" M 182.6667,103.2000 L 185.2267,114.5297" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_417"/><path d=" M 185.2267,114.5297 L 187.7867,124.7354" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_418"/><path d=" M 187.7867,124.7354 L 190.3467,133.8601" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_419"/><path d=" M 190.3467,133.8601 L 192.9067,141.9467" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_420"/><path d=" M 192.9067,141.9467 L 195.4667,149.0380" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_421"/><path d=" M 195.4667,149.0380 L 198.0267,155.1766" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_422"/><path d=" M 198.0267,155.1766 L 200.5867,160.4051" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_423"/><path d=" M 200.5867,160.4051 L 203.1467,164.7656" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_424"/><path d=" M 203.1467,164.7656 L 205.7067,168.3003" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_425"/><path d=" M 205.7067,168.3003 L 208.2667,171.0508" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_426"/><path d=" M 208.2667,171.0508 L 210.8267,173.0587" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_427"/><path d=" M 210.8267,173.0587 L 213.3867,174.3650" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_428"/><path d=" M 213.3867,174.3650 L 215.9467,175.0105" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_429"/><path d=" M 215.9467,175.0105 L 218.5067,175.0357" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_430"/><path d=" M 218.5067,175.0357 L 221.0667,174.4804" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_431"/><path d=" M 221.0667,174.4804 L 223.6267,173.3842" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_432"/><path d=" M 223.6267,173.3842 L 226.1867,171.7862" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_433"/><path d=" M 226.1867,171.7862 L 228.7467,169.7249" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_434"/><path d=" M 228.7467,169.7249 L 231.3067,167.2382" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_435"/><path d=" M 231.3067,167.2382 L 233.8667,164.3637" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_436"/><path d=" M 233.8667,164.3637 L 236.4267,161.1382" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_437"/><path d=" M 236.4267,161.1382 L 238.9867,157.5978" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_438"/><path d=" M 238.9867,157.5978 L 241.5467,153.7782" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_439"/><path d=" M 241.5467,153.7782 L 244.1067,149.7142" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_440"/><path d=" M 244.1067,149.7142 L 246.6667,145.4400" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_441"/><path d=" M 246.6667,145.4400 L 249.2267,140.9890" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_442"/><path d=" M 249.2267,140.9890 L 251.7867,136.3938" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_443"/><path d=" M 251.7867,136.3938 L 254.3467,131.6863" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_444"/><path d=" M 254.3467,131.6863 L 256.9067,126.8975" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_445"/><path d=" M 256.9067,126.8975 L 259.4667,122.0574" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_446"/><path d=" M 259.4667,122.0574 L 262.0267,117.1955" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_447"/><path d=" M 262.0267,117.1955 L 264.5867,112.3399" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_448"/><path d=" M 264.5867,112.3399 L 267.1467,107.5180" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_449"/><path d=" M 267.1467,107.5180 L 269.7067,102.7562" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_450"/><path d=" M 269.7067,102.7562 L 272.2667,98.0800" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_451"/><path d=" M 272.2667,98.0800 L 274.8267,93.5136" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_452"/><path d=" M 274.8267,93.5136 L 277.3867,89.0802" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_453"/><path d=" M 277.3867,89.0802 L 279.9467,84.8021" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_454"/><path d=" M 279.9467,84.8021 L 282.5067,80.7002" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_455"/><path d=" M 282.5067,80.7002 L 285.0667,76.7944" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_456"/><path d=" M 285.0667,76.7944 L 287.6267,73.1034" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_457"/><path d=" M 287.6267,73.1034 L 290.1867,69.6446" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_458"/><path d=" M 290.1867,69.6446 L 292.7467,66.4341" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_459"/><path d=" M 292.7467,66.4341 L 295.3067,63.4870" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_460"/><path d=" M 295.3067,63.4870 L 297.8667,60.8169" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_461"/><path d=" M 297.8667,60.8169 L 300.4267,58.4358" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_462"/><path d=" M 300.4267,58.4358 L 302.9867,56.3549" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_463"/><path d=" M 302.9867,56.3549 L 305.5467,54.5834" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_464"/><path d=" M 305.5467,54.5834 L 308.1067,53.1296" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_465"/><path d=" M 308.1067,53.1296 L 310.6667,52.0000" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_466"/><path d=" M 310.6667,52.0000 L 313.2267,51.1997" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_467"/><path d=" M 313.2267,51.1997 L 315.7867,50.7322" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_468"/><path d=" M 315.7867,50.7322 L 318.3467,50.5997" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_469"/><path d=" M 318.3467,50.5997 L 320.9067,50.8026" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_470"/><path d=" M 320.9067,50.8026 L 323.4667,51.3397" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_471"/><path d=" M 323.4667,51.3397 L 326.0267,52.2083" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_472"/><path d=" M 326.0267,52.2083 L 328.5867,53.4038" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_473"/><path d=" M 328.5867,53.4038 L 331.1467,54.9202" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_474"/><path d=" M 331.1467,54.9202 L 333.7067,56.7495" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_475"/><path d=" M 333.7067,56.7495 L 336.2667,58.8820" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_476"/><path d=" M 336.2667,58.8820 L 338.8267,61.3065" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_477"/><path d=" M 338.8267,61.3065 L 341.3867,64.0095" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_478"/><path d=" M 341.3867,64.0095 L 343.9467,66.9761" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_479"/><path d=" M 343.9467,66.9761 L 346.5067,70.1891" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_480"/><path d=" M 346.5067,70.1891 L 349.0667,73.6299" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_481"/><path d=" M 349.0667,73.6299 L 351.6267,77.2774" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_482"/><path d=" M 351.6267,77.2774 L 354.1867,81.1090" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_483"/><path d=" M 354.1867,81.1090 L 356.7467,85.0999" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_484"/><path d=" M 356.7467,85.0999 L 359.3067,89.2232" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_485"/><path d=" M 359.3067,89.2232 L 361.8667,93.4501" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_486"/><path d=" M 361.8667,93.4501 L 364.4267,97.7496" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_487"/><path d=" M 364.4267,97.7496 L 366.9867,102.0886" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_488"/><path d=" M 366.9867,102.0886 L 369.5467,106.4320" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_489"/><path d=" M 369.5467,106.4320 L 372.1067,110.7424" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_490"/><path d=" M 372.1067,110.7424 L 374.6667,114.9801" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_491"/><path d=" M 374.6667,114.9801 L 377.2267,119.1033" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_492"/><path d=" M 377.2267,119.1033 L 379.7867,123.0679" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_493"/><path d=" M 379.7867,123.0679 L 382.3467,126.8276" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_494"/><path d=" M 382.3467,126.8276 L 384.9067,130.3336" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_495"/><path d=" M 384.9067,130.3336 L 387.4667,133.5349" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_496"/><path d=" M 387.4667,133.5349 L 390.0267,136.3779" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_497"/><path d=" M 390.0267,136.3779 L 392.5867,138.8069" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_498"/><path d=" M 392.5867,138.8069 L 395.1467,140.7635" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_499"/><path d=" M 395.1467,140.7635 L 397.7067,142.1869" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_500"/><path d=" M 397.7067,142.1869 L 400.2667,143.0139" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_501"/><path d=" M 400.2667,143.0139 L 402.8267,143.1786" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_502"/><path d=" M 402.8267,143.1786 L 405.3867,142.6126" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_503"/><path d=" M 405.3867,142.6126 L 407.9467,141.2450" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_504"/><path d=" M 407.9467,141.2450 L 410.5067,139.0021" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_505"/><path d=" M 410.5067,139.0021 L 413.0667,135.8077" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_506"/><path d=" M 413.0667,135.8077 L 415.6267,131.5829" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_507"/><path d=" M 415.6267,131.5829 L 418.1867,126.2461" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_508"/><path d=" M 418.1867,126.2461 L 420.7467,119.7127" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_509"/><path d=" M 420.7467,119.7127 L 423.3067,111.8958" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_510"/><path d=" M 423.3067,111.8958 L 425.8667,102.7052" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_511"/><path d=" M 425.8667,102.7052 L 428.4267,92.0483" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_512"/><path d=" M 428.4267,92.0483 L 430.9867,79.8293" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_513"/><path d=" M 430.9867,79.8293 L 433.5467,65.9497" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_514"/><path d=" M 433.5467,65.9497 L 436.1067,50.3081" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_515"/><path d=" M 436.1067,50.3081 L 438.6667,32.8000" style="fill: none; stroke: #75505b; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_516"/><ellipse cx="182.66666666667" cy="103.2" rx="3" ry="3" style="fill: #3465a4; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_517"/><ellipse cx="246.66666666667" cy="145.44" rx="3" ry="3" style="fill: #3465a4; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_518"/><ellipse cx="272.26666666667" cy="98.08" rx="3" ry="3" style="fill: #3465a4; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_519"/><ellipse cx="310.66666666667" cy="52" rx="3" ry="3" style="fill: #3465a4; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_520"/><ellipse cx="366.13333333333" cy="100.64" rx="3" ry="3" style="fill: #3465a4; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_521"/><ellipse cx="438.66666666667" cy="32.8" rx="3" ry="3" style="fill: #3465a4; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_522"/><text id="ezcGraphTextBox_4" x="17" text-length="76.32px" y="13.5" style="font-size: 9px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Statistical data</text><text id="ezcGraphTextBox_6" x="17" text-length="71.55px" y="31.5" style="font-size: 9px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">polynom order 0</text><text id="ezcGraphTextBox_8" x="17" text-length="71.55px" y="49.5" style="font-size: 9px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">polynom order 1</text><text id="ezcGraphTextBox_10" x="17" text-length="71.55px" y="67.5" style="font-size: 9px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">polynom order 3</text><text id="ezcGraphTextBox_12" x="17" text-length="71.55px" y="85.5" style="font-size: 9px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">polynom order 5</text><text id="ezcGraphTextBox_17" x="142" text-length="7.44px" y="130" style="font-size: 12px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_28" x="248.66666666667" text-length="22.32px" y="130" style="font-size: 12px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">2.5</text><text id="ezcGraphTextBox_39" x="355.33333333333" text-length="7.44px" y="130" style="font-size: 12px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">5</text><text id="ezcGraphTextBox_50" x="435.68" text-length="22.32px" y="130" style="font-size: 12px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">7.5</text><text id="ezcGraphTextBox_53" x="123.12" text-length="14.88px" y="178" style="font-size: 12px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">-5</text><text id="ezcGraphTextBox_64" x="108.24" text-length="29.76px" y="146" style="font-size: 12px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">-2.5</text><text id="ezcGraphTextBox_73" x="130.56" text-length="7.44px" y="114" style="font-size: 12px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_84" x="115.68" text-length="22.32px" y="82" style="font-size: 12px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">2.5</text><text id="ezcGraphTextBox_95" x="130.56" text-length="7.44px" y="50" style="font-size: 12px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">5</text><text id="ezcGraphTextBox_106" x="115.68" text-length="22.32px" y="34" style="font-size: 12px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">7.5</text></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer2dTest_testRenderFilledLineBarChart.svg b/tests/data/compare/ezcGraphRenderer2dTest_testRenderFilledLineBarChart.svg
index 88be40e..07351d9 100644
--- a/tests/data/compare/ezcGraphRenderer2dTest_testRenderFilledLineBarChart.svg
+++ b/tests/data/compare/ezcGraphRenderer2dTest_testRenderFilledLineBarChart.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><ellipse cx="11" cy="47" rx="7" ry="7" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_8"/><path d=" M 100.0000,180.0000 L 500.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 492.0000,184.0000 L 500.0000,180.0000 L 492.0000,176.0000 L 492.0000,184.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 204.0000,20.0000 L 204.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 204.0000,177.0000 L 204.0000,183.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 268.0000,20.0000 L 268.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 268.0000,177.0000 L 268.0000,183.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 332.0000,20.0000 L 332.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 332.0000,177.0000 L 332.0000,183.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 396.0000,20.0000 L 396.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 396.0000,177.0000 L 396.0000,183.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 460.0000,20.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 460.0000,177.0000 L 460.0000,183.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,127.2000 L 460.0000,127.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 140.0000,126.6667 L 143.0000,126.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 140.0000,72.8000 L 460.0000,72.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 140.0000,73.3333 L 143.0000,73.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,20.0000 L 460.0000,20.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 140.0000,20.0000 L 143.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 199.2425,180.0000 L 173.6025,180.0000 L 173.6025,87.8400 L 199.2425,87.8400 L 199.2425,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_39"/><path d=" M 199.2425,180.0000 L 173.6025,180.0000 L 173.6025,87.8400 L 199.2425,87.8400 L 199.2425,180.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_40"/><path d=" M 263.2425,180.0000 L 237.6025,180.0000 L 237.6025,170.8267 L 263.2425,170.8267 L 263.2425,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_41"/><path d=" M 263.2425,180.0000 L 237.6025,180.0000 L 237.6025,170.8267 L 263.2425,170.8267 L 263.2425,180.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_42"/><path d=" M 327.2425,180.0000 L 301.6025,180.0000 L 301.6025,166.1333 L 327.2425,166.1333 L 327.2425,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_43"/><path d=" M 327.2425,180.0000 L 301.6025,180.0000 L 301.6025,166.1333 L 327.2425,166.1333 L 327.2425,180.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_44"/><path d=" M 391.2425,180.0000 L 365.6025,180.0000 L 365.6025,159.3067 L 391.2425,159.3067 L 391.2425,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_45"/><path d=" M 391.2425,180.0000 L 365.6025,180.0000 L 365.6025,159.3067 L 391.2425,159.3067 L 391.2425,180.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_46"/><path d=" M 455.2425,180.0000 L 429.6025,180.0000 L 429.6025,147.1467 L 455.2425,147.1467 L 455.2425,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_47"/><path d=" M 455.2425,180.0000 L 429.6025,180.0000 L 429.6025,147.1467 L 455.2425,147.1467 L 455.2425,180.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_48"/><path d=" M 170.3975,180.0000 L 144.7575,180.0000 L 144.7575,130.0800 L 170.3975,130.0800 L 170.3975,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_49"/><path d=" M 170.3975,180.0000 L 144.7575,180.0000 L 144.7575,130.0800 L 170.3975,130.0800 L 170.3975,180.0000 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_50"/><path d=" M 234.3975,180.0000 L 208.7575,180.0000 L 208.7575,175.5200 L 234.3975,175.5200 L 234.3975,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 234.3975,180.0000 L 208.7575,180.0000 L 208.7575,175.5200 L 234.3975,175.5200 L 234.3975,180.0000 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_52"/><path d=" M 298.3975,180.0000 L 272.7575,180.0000 L 272.7575,110.8800 L 298.3975,110.8800 L 298.3975,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_53"/><path d=" M 298.3975,180.0000 L 272.7575,180.0000 L 272.7575,110.8800 L 298.3975,110.8800 L 298.3975,180.0000 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_54"/><path d=" M 362.3975,180.0000 L 336.7575,180.0000 L 336.7575,154.4000 L 362.3975,154.4000 L 362.3975,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_55"/><path d=" M 362.3975,180.0000 L 336.7575,180.0000 L 336.7575,154.4000 L 362.3975,154.4000 L 362.3975,180.0000 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_56"/><path d=" M 426.3975,180.0000 L 400.7575,180.0000 L 400.7575,179.7867 L 426.3975,179.7867 L 426.3975,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 426.3975,180.0000 L 400.7575,180.0000 L 400.7575,179.7867 L 426.3975,179.7867 L 426.3975,180.0000 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 172.0000,64.1600 L 172.0000,64.1600" style="fill: none; stroke: #fce94f; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 172.0000,180.0000 L 172.0000,64.1600 L 236.0000,130.0800 L 236.0000,180.0000 L 172.0000,180.0000 z " style="fill: #fce94f; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 172.0000,64.1600 L 236.0000,130.0800" style="fill: none; stroke: #fce94f; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 236.0000,180.0000 L 236.0000,130.0800 L 300.0000,116.4267 L 300.0000,180.0000 L 236.0000,180.0000 z " style="fill: #fce94f; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_62"/><path d=" M 236.0000,130.0800 L 300.0000,116.4267" style="fill: none; stroke: #fce94f; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 300.0000,180.0000 L 300.0000,116.4267 L 364.0000,178.9333 L 364.0000,180.0000 L 300.0000,180.0000 z " style="fill: #fce94f; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_64"/><path d=" M 300.0000,116.4267 L 364.0000,178.9333" style="fill: none; stroke: #fce94f; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 364.0000,180.0000 L 364.0000,178.9333 L 428.0000,49.2267 L 428.0000,180.0000 L 364.0000,180.0000 z " style="fill: #fce94f; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_66"/><path d=" M 364.0000,178.9333 L 428.0000,49.2267" style="fill: none; stroke: #fce94f; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><ellipse cx="172" cy="64.16" rx="3" ry="3" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_68"/><ellipse cx="236" cy="130.08" rx="3" ry="3" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_69"/><ellipse cx="300" cy="116.42666666667" rx="3" ry="3" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_70"/><ellipse cx="364" cy="178.93333333333" rx="3" ry="3" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_71"/><ellipse cx="428" cy="49.226666666667" rx="3" ry="3" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_72"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 0</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_9" x="19" text-length="44.52px" y="54" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_14" x="142.32" text-length="59.36px" y="196" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text><text id="ezcGraphTextBox_17" x="206.32" text-length="59.36px" y="196" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_20" x="270.32" text-length="59.36px" y="196" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_23" x="334.32" text-length="59.36px" y="196" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_26" x="398.32" text-length="59.36px" y="196" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_29" x="129.32" text-length="8.68px" y="178" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_32" x="111.96" text-length="26.04px" y="124.66666666667" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_35" x="111.96" text-length="26.04px" y="71.333333333333" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_38" x="111.96" text-length="26.04px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><ellipse cx="11" cy="47" rx="7" ry="7" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_8"/><path d=" M 100.0000,180.0000 L 500.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 492.0000,184.0000 L 500.0000,180.0000 L 492.0000,176.0000 L 492.0000,184.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 204.0000,20.0000 L 204.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 204.0000,177.0000 L 204.0000,183.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 268.0000,20.0000 L 268.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 268.0000,177.0000 L 268.0000,183.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 332.0000,20.0000 L 332.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 332.0000,177.0000 L 332.0000,183.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 396.0000,20.0000 L 396.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 396.0000,177.0000 L 396.0000,183.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 460.0000,20.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 460.0000,177.0000 L 460.0000,183.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,168.8000 L 460.0000,168.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 140.0000,169.3333 L 141.0000,169.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 140.0000,159.2000 L 460.0000,159.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 140.0000,158.6667 L 141.0000,158.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 140.0000,148.0000 L 460.0000,148.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,148.0000 L 141.0000,148.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 140.0000,136.8000 L 460.0000,136.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 140.0000,137.3333 L 141.0000,137.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 140.0000,127.2000 L 460.0000,127.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 140.0000,126.6667 L 143.0000,126.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 140.0000,116.0000 L 460.0000,116.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 140.0000,116.0000 L 141.0000,116.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 140.0000,104.8000 L 460.0000,104.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 140.0000,105.3333 L 141.0000,105.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 140.0000,95.2000 L 460.0000,95.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 140.0000,94.6667 L 141.0000,94.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 140.0000,84.0000 L 460.0000,84.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 140.0000,84.0000 L 141.0000,84.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 140.0000,72.8000 L 460.0000,72.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 140.0000,73.3333 L 143.0000,73.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 140.0000,63.2000 L 460.0000,63.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 140.0000,62.6667 L 141.0000,62.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 140.0000,52.0000 L 460.0000,52.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 140.0000,52.0000 L 141.0000,52.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 140.0000,40.8000 L 460.0000,40.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 140.0000,41.3333 L 141.0000,41.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 140.0000,31.2000 L 460.0000,31.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 140.0000,30.6667 L 141.0000,30.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 140.0000,20.0000 L 460.0000,20.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 140.0000,20.0000 L 143.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 199.2425,180.0000 L 173.6025,180.0000 L 173.6025,87.8400 L 199.2425,87.8400 L 199.2425,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_63"/><path d=" M 199.2425,180.0000 L 173.6025,180.0000 L 173.6025,87.8400 L 199.2425,87.8400 L 199.2425,180.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_64"/><path d=" M 263.2425,180.0000 L 237.6025,180.0000 L 237.6025,170.8267 L 263.2425,170.8267 L 263.2425,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_65"/><path d=" M 263.2425,180.0000 L 237.6025,180.0000 L 237.6025,170.8267 L 263.2425,170.8267 L 263.2425,180.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_66"/><path d=" M 327.2425,180.0000 L 301.6025,180.0000 L 301.6025,166.1333 L 327.2425,166.1333 L 327.2425,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_67"/><path d=" M 327.2425,180.0000 L 301.6025,180.0000 L 301.6025,166.1333 L 327.2425,166.1333 L 327.2425,180.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_68"/><path d=" M 391.2425,180.0000 L 365.6025,180.0000 L 365.6025,159.3067 L 391.2425,159.3067 L 391.2425,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_69"/><path d=" M 391.2425,180.0000 L 365.6025,180.0000 L 365.6025,159.3067 L 391.2425,159.3067 L 391.2425,180.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_70"/><path d=" M 455.2425,180.0000 L 429.6025,180.0000 L 429.6025,147.1467 L 455.2425,147.1467 L 455.2425,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_71"/><path d=" M 455.2425,180.0000 L 429.6025,180.0000 L 429.6025,147.1467 L 455.2425,147.1467 L 455.2425,180.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_72"/><path d=" M 170.3975,180.0000 L 144.7575,180.0000 L 144.7575,130.0800 L 170.3975,130.0800 L 170.3975,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 170.3975,180.0000 L 144.7575,180.0000 L 144.7575,130.0800 L 170.3975,130.0800 L 170.3975,180.0000 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_74"/><path d=" M 234.3975,180.0000 L 208.7575,180.0000 L 208.7575,175.5200 L 234.3975,175.5200 L 234.3975,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_75"/><path d=" M 234.3975,180.0000 L 208.7575,180.0000 L 208.7575,175.5200 L 234.3975,175.5200 L 234.3975,180.0000 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_76"/><path d=" M 298.3975,180.0000 L 272.7575,180.0000 L 272.7575,110.8800 L 298.3975,110.8800 L 298.3975,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_77"/><path d=" M 298.3975,180.0000 L 272.7575,180.0000 L 272.7575,110.8800 L 298.3975,110.8800 L 298.3975,180.0000 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_78"/><path d=" M 362.3975,180.0000 L 336.7575,180.0000 L 336.7575,154.4000 L 362.3975,154.4000 L 362.3975,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 362.3975,180.0000 L 336.7575,180.0000 L 336.7575,154.4000 L 362.3975,154.4000 L 362.3975,180.0000 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_80"/><path d=" M 426.3975,180.0000 L 400.7575,180.0000 L 400.7575,179.7867 L 426.3975,179.7867 L 426.3975,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_81"/><path d=" M 426.3975,180.0000 L 400.7575,180.0000 L 400.7575,179.7867 L 426.3975,179.7867 L 426.3975,180.0000 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_82"/><path d=" M 172.0000,64.1600 L 172.0000,64.1600" style="fill: none; stroke: #fce94f; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_83"/><path d=" M 172.0000,180.0000 L 172.0000,64.1600 L 236.0000,130.0800 L 236.0000,180.0000 L 172.0000,180.0000 z " style="fill: #fce94f; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_84"/><path d=" M 172.0000,64.1600 L 236.0000,130.0800" style="fill: none; stroke: #fce94f; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_85"/><path d=" M 236.0000,180.0000 L 236.0000,130.0800 L 300.0000,116.4267 L 300.0000,180.0000 L 236.0000,180.0000 z " style="fill: #fce94f; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_86"/><path d=" M 236.0000,130.0800 L 300.0000,116.4267" style="fill: none; stroke: #fce94f; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_87"/><path d=" M 300.0000,180.0000 L 300.0000,116.4267 L 364.0000,178.9333 L 364.0000,180.0000 L 300.0000,180.0000 z " style="fill: #fce94f; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_88"/><path d=" M 300.0000,116.4267 L 364.0000,178.9333" style="fill: none; stroke: #fce94f; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_89"/><path d=" M 364.0000,180.0000 L 364.0000,178.9333 L 428.0000,49.2267 L 428.0000,180.0000 L 364.0000,180.0000 z " style="fill: #fce94f; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_90"/><path d=" M 364.0000,178.9333 L 428.0000,49.2267" style="fill: none; stroke: #fce94f; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_91"/><ellipse cx="172" cy="64.16" rx="3" ry="3" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_92"/><ellipse cx="236" cy="130.08" rx="3" ry="3" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_93"/><ellipse cx="300" cy="116.42666666667" rx="3" ry="3" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_94"/><ellipse cx="364" cy="178.93333333333" rx="3" ry="3" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_95"/><ellipse cx="428" cy="49.226666666667" rx="3" ry="3" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_96"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 0</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_9" x="19" text-length="44.52px" y="54" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_14" x="142.32" text-length="59.36px" y="196" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text><text id="ezcGraphTextBox_17" x="206.32" text-length="59.36px" y="196" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_20" x="270.32" text-length="59.36px" y="196" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_23" x="334.32" text-length="59.36px" y="196" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_26" x="398.32" text-length="59.36px" y="196" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_29" x="129.32" text-length="8.68px" y="178" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_40" x="111.96" text-length="26.04px" y="124.66666666667" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_51" x="111.96" text-length="26.04px" y="71.333333333333" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_62" x="111.96" text-length="26.04px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer2dTest_testRenderFilledLineChart.svg b/tests/data/compare/ezcGraphRenderer2dTest_testRenderFilledLineChart.svg
index c6fb1ff..388bf65 100644
--- a/tests/data/compare/ezcGraphRenderer2dTest_testRenderFilledLineChart.svg
+++ b/tests/data/compare/ezcGraphRenderer2dTest_testRenderFilledLineChart.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,180.0000 L 500.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 492.0000,184.0000 L 500.0000,180.0000 L 492.0000,176.0000 L 492.0000,184.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 220.0000,20.0000 L 220.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 220.0000,177.0000 L 220.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 300.0000,20.0000 L 300.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 300.0000,177.0000 L 300.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 380.0000,20.0000 L 380.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 380.0000,177.0000 L 380.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 460.0000,20.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 460.0000,177.0000 L 460.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 140.0000,127.2000 L 460.0000,127.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 140.0000,126.6667 L 143.0000,126.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 140.0000,72.8000 L 460.0000,72.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,73.3333 L 143.0000,73.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 140.0000,20.0000 L 460.0000,20.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 140.0000,20.0000 L 143.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 140.0000,130.0800 L 140.0000,130.0800" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,180.0000 L 140.0000,130.0800 L 220.0000,175.5200 L 220.0000,180.0000 L 140.0000,180.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_35"/><path d=" M 140.0000,130.0800 L 220.0000,175.5200" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 220.0000,180.0000 L 220.0000,175.5200 L 300.0000,110.8800 L 300.0000,180.0000 L 220.0000,180.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_37"/><path d=" M 220.0000,175.5200 L 300.0000,110.8800" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 300.0000,180.0000 L 300.0000,110.8800 L 380.0000,154.4000 L 380.0000,180.0000 L 300.0000,180.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_39"/><path d=" M 300.0000,110.8800 L 380.0000,154.4000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 380.0000,180.0000 L 380.0000,154.4000 L 460.0000,179.7867 L 460.0000,180.0000 L 380.0000,180.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_41"/><path d=" M 380.0000,154.4000 L 460.0000,179.7867" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 140.0000,64.1600 L 140.0000,64.1600" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 140.0000,180.0000 L 140.0000,64.1600 L 220.0000,130.0800 L 220.0000,180.0000 L 140.0000,180.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 140.0000,64.1600 L 220.0000,130.0800" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 220.0000,180.0000 L 220.0000,130.0800 L 300.0000,116.4267 L 300.0000,180.0000 L 220.0000,180.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_46"/><path d=" M 220.0000,130.0800 L 300.0000,116.4267" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 300.0000,180.0000 L 300.0000,116.4267 L 380.0000,178.9333 L 380.0000,180.0000 L 300.0000,180.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_48"/><path d=" M 300.0000,116.4267 L 380.0000,178.9333" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 380.0000,180.0000 L 380.0000,178.9333 L 460.0000,49.2267 L 460.0000,180.0000 L 380.0000,180.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_50"/><path d=" M 380.0000,178.9333 L 460.0000,49.2267" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><ellipse cx="140" cy="130.08" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="220" cy="175.52" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="300" cy="110.88" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="380" cy="154.4" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="460" cy="179.78666666667" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="140" cy="64.16" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><ellipse cx="220" cy="130.08" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_58"/><ellipse cx="300" cy="116.42666666667" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_59"/><ellipse cx="380" cy="178.93333333333" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_60"/><ellipse cx="460" cy="49.226666666667" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_61"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_14" x="186.08" text-length="67.84px" y="198" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_17" x="266.08" text-length="67.84px" y="198" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_20" x="346.08" text-length="67.84px" y="198" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_23" x="426.08" text-length="67.84px" y="198" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_24" x="128.08" text-length="9.92px" y="178" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_27" x="108.24" text-length="29.76px" y="124.66666666667" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_30" x="108.24" text-length="29.76px" y="71.333333333333" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_33" x="108.24" text-length="29.76px" y="38" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,180.0000 L 500.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 492.0000,184.0000 L 500.0000,180.0000 L 492.0000,176.0000 L 492.0000,184.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 220.0000,20.0000 L 220.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 220.0000,177.0000 L 220.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 300.0000,20.0000 L 300.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 300.0000,177.0000 L 300.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 380.0000,20.0000 L 380.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 380.0000,177.0000 L 380.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 460.0000,20.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 460.0000,177.0000 L 460.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 140.0000,168.8000 L 460.0000,168.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 140.0000,169.3333 L 141.0000,169.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 140.0000,159.2000 L 460.0000,159.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 140.0000,158.6667 L 141.0000,158.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,148.0000 L 460.0000,148.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 140.0000,148.0000 L 141.0000,148.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 140.0000,136.8000 L 460.0000,136.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 140.0000,137.3333 L 141.0000,137.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 140.0000,127.2000 L 460.0000,127.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 140.0000,126.6667 L 143.0000,126.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,116.0000 L 460.0000,116.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 140.0000,116.0000 L 141.0000,116.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 140.0000,104.8000 L 460.0000,104.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 140.0000,105.3333 L 141.0000,105.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 140.0000,95.2000 L 460.0000,95.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 140.0000,94.6667 L 141.0000,94.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 140.0000,84.0000 L 460.0000,84.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 140.0000,84.0000 L 141.0000,84.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 140.0000,72.8000 L 460.0000,72.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 140.0000,73.3333 L 143.0000,73.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 140.0000,63.2000 L 460.0000,63.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 140.0000,62.6667 L 141.0000,62.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 140.0000,52.0000 L 460.0000,52.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 140.0000,52.0000 L 141.0000,52.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 140.0000,40.8000 L 460.0000,40.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 140.0000,41.3333 L 141.0000,41.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 140.0000,31.2000 L 460.0000,31.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 140.0000,30.6667 L 141.0000,30.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 140.0000,20.0000 L 460.0000,20.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 140.0000,20.0000 L 143.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 140.0000,130.0800 L 140.0000,130.0800" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 140.0000,180.0000 L 140.0000,130.0800 L 220.0000,175.5200 L 220.0000,180.0000 L 140.0000,180.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_59"/><path d=" M 140.0000,130.0800 L 220.0000,175.5200" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 220.0000,180.0000 L 220.0000,175.5200 L 300.0000,110.8800 L 300.0000,180.0000 L 220.0000,180.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_61"/><path d=" M 220.0000,175.5200 L 300.0000,110.8800" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 300.0000,180.0000 L 300.0000,110.8800 L 380.0000,154.4000 L 380.0000,180.0000 L 300.0000,180.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_63"/><path d=" M 300.0000,110.8800 L 380.0000,154.4000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 380.0000,180.0000 L 380.0000,154.4000 L 460.0000,179.7867 L 460.0000,180.0000 L 380.0000,180.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_65"/><path d=" M 380.0000,154.4000 L 460.0000,179.7867" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 140.0000,64.1600 L 140.0000,64.1600" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 140.0000,180.0000 L 140.0000,64.1600 L 220.0000,130.0800 L 220.0000,180.0000 L 140.0000,180.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_68"/><path d=" M 140.0000,64.1600 L 220.0000,130.0800" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 220.0000,180.0000 L 220.0000,130.0800 L 300.0000,116.4267 L 300.0000,180.0000 L 220.0000,180.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 220.0000,130.0800 L 300.0000,116.4267" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 300.0000,180.0000 L 300.0000,116.4267 L 380.0000,178.9333 L 380.0000,180.0000 L 300.0000,180.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_72"/><path d=" M 300.0000,116.4267 L 380.0000,178.9333" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 380.0000,180.0000 L 380.0000,178.9333 L 460.0000,49.2267 L 460.0000,180.0000 L 380.0000,180.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_74"/><path d=" M 380.0000,178.9333 L 460.0000,49.2267" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><ellipse cx="140" cy="130.08" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_76"/><ellipse cx="220" cy="175.52" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="300" cy="110.88" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="380" cy="154.4" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="460" cy="179.78666666667" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="140" cy="64.16" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="220" cy="130.08" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="300" cy="116.42666666667" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="380" cy="178.93333333333" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="460" cy="49.226666666667" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_14" x="186.08" text-length="67.84px" y="198" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_17" x="266.08" text-length="67.84px" y="198" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_20" x="346.08" text-length="67.84px" y="198" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_23" x="426.08" text-length="67.84px" y="198" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_24" x="128.08" text-length="9.92px" y="178" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_35" x="108.24" text-length="29.76px" y="124.66666666667" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_46" x="108.24" text-length="29.76px" y="71.333333333333" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_57" x="108.24" text-length="29.76px" y="38" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer2dTest_testRenderFilledLineChartWithAxisIntersection.svg b/tests/data/compare/ezcGraphRenderer2dTest_testRenderFilledLineChartWithAxisIntersection.svg
index 9cf0a25..85515be 100644
--- a/tests/data/compare/ezcGraphRenderer2dTest_testRenderFilledLineChartWithAxisIntersection.svg
+++ b/tests/data/compare/ezcGraphRenderer2dTest_testRenderFilledLineChartWithAxisIntersection.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,140.0000 L 500.0000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 492.0000,144.0000 L 500.0000,140.0000 L 492.0000,136.0000 L 492.0000,144.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 220.0000,20.0000 L 220.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 220.0000,137.0000 L 220.0000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 300.0000,20.0000 L 300.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 300.0000,137.0000 L 300.0000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 380.0000,20.0000 L 380.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 380.0000,137.0000 L 380.0000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 460.0000,20.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 460.0000,137.0000 L 460.0000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 140.0000,180.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 140.0000,180.0000 L 143.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 140.0000,100.0000 L 460.0000,100.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,100.0000 L 143.0000,100.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 140.0000,60.0000 L 460.0000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 140.0000,60.0000 L 143.0000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 140.0000,20.0000 L 460.0000,20.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,20.0000 L 143.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 140.0000,102.5600 L 140.0000,102.5600" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 188.6234,140.0000 L 140.0000,140.0000 L 140.0000,102.5600 L 188.6234,140.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_38"/><path d=" M 188.6234,140.0000 L 220.0000,140.0000 L 220.0000,164.1600 L 188.6234,140.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_39"/><path d=" M 140.0000,102.5600 L 220.0000,164.1600" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 245.4316,140.0000 L 220.0000,140.0000 L 220.0000,164.1600 L 245.4316,140.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_41"/><path d=" M 245.4316,140.0000 L 300.0000,140.0000 L 300.0000,88.1600 L 245.4316,140.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_42"/><path d=" M 220.0000,164.1600 L 300.0000,88.1600" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 358.3784,140.0000 L 300.0000,140.0000 L 300.0000,88.1600 L 358.3784,140.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 358.3784,140.0000 L 380.0000,140.0000 L 380.0000,159.2000 L 358.3784,140.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_45"/><path d=" M 300.0000,88.1600 L 380.0000,159.2000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 459.3388,140.0000 L 380.0000,140.0000 L 380.0000,159.2000 L 459.3388,140.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_47"/><path d=" M 459.3388,140.0000 L 460.0000,140.0000 L 460.0000,139.8400 L 459.3388,140.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_48"/><path d=" M 380.0000,159.2000 L 460.0000,139.8400" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 140.0000,53.1200 L 140.0000,53.1200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 140.0000,140.0000 L 140.0000,53.1200 L 220.0000,102.5600 L 220.0000,140.0000 L 140.0000,140.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 140.0000,53.1200 L 220.0000,102.5600" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 220.0000,140.0000 L 220.0000,102.5600 L 300.0000,92.3200 L 300.0000,140.0000 L 220.0000,140.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_53"/><path d=" M 220.0000,102.5600 L 300.0000,92.3200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 378.6799,140.0000 L 300.0000,140.0000 L 300.0000,92.3200 L 378.6799,140.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_55"/><path d=" M 378.6799,140.0000 L 380.0000,140.0000 L 380.0000,140.8000 L 378.6799,140.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_56"/><path d=" M 300.0000,92.3200 L 380.0000,140.8000" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 380.0000,140.0000 L 380.0000,140.8000 L 460.0000,159.8400 L 460.0000,140.0000 L 380.0000,140.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_58"/><path d=" M 380.0000,140.8000 L 460.0000,159.8400" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><ellipse cx="140" cy="102.56" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_60"/><ellipse cx="220" cy="164.16" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_61"/><ellipse cx="300" cy="88.16" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_62"/><ellipse cx="380" cy="159.2" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_63"/><ellipse cx="460" cy="139.84" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_64"/><ellipse cx="140" cy="53.12" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_65"/><ellipse cx="220" cy="102.56" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_66"/><ellipse cx="300" cy="92.32" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_67"/><ellipse cx="380" cy="140.8" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_68"/><ellipse cx="460" cy="159.84" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_69"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_14" x="190.32" text-length="59.36px" y="156" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_17" x="270.32" text-length="59.36px" y="156" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_20" x="350.32" text-length="59.36px" y="156" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_23" x="430.32" text-length="59.36px" y="156" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_26" x="103.28" text-length="34.72px" y="178" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-250</text><text id="ezcGraphTextBox_27" x="129.32" text-length="8.68px" y="138" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_30" x="111.96" text-length="26.04px" y="98" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_33" x="111.96" text-length="26.04px" y="58" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_36" x="111.96" text-length="26.04px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,140.0000 L 500.0000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 492.0000,144.0000 L 500.0000,140.0000 L 492.0000,136.0000 L 492.0000,144.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 220.0000,20.0000 L 220.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 220.0000,137.0000 L 220.0000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 300.0000,20.0000 L 300.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 300.0000,137.0000 L 300.0000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 380.0000,20.0000 L 380.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 380.0000,137.0000 L 380.0000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 460.0000,20.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 460.0000,137.0000 L 460.0000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 140.0000,180.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 140.0000,180.0000 L 143.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 140.0000,172.0000 L 460.0000,172.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 140.0000,172.0000 L 141.0000,172.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,164.0000 L 460.0000,164.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 140.0000,164.0000 L 141.0000,164.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 140.0000,156.0000 L 460.0000,156.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 140.0000,156.0000 L 141.0000,156.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 140.0000,148.0000 L 460.0000,148.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 140.0000,148.0000 L 141.0000,148.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,132.0000 L 460.0000,132.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 140.0000,132.0000 L 141.0000,132.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 140.0000,124.0000 L 460.0000,124.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 140.0000,124.0000 L 141.0000,124.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 140.0000,116.0000 L 460.0000,116.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 140.0000,116.0000 L 141.0000,116.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 140.0000,108.0000 L 460.0000,108.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 140.0000,108.0000 L 141.0000,108.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 140.0000,100.0000 L 460.0000,100.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 140.0000,100.0000 L 143.0000,100.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 140.0000,92.0000 L 460.0000,92.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 140.0000,92.0000 L 141.0000,92.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 140.0000,84.0000 L 460.0000,84.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 140.0000,84.0000 L 141.0000,84.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 140.0000,76.0000 L 460.0000,76.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 140.0000,76.0000 L 141.0000,76.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 140.0000,68.0000 L 460.0000,68.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 140.0000,68.0000 L 141.0000,68.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 140.0000,60.0000 L 460.0000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 140.0000,60.0000 L 143.0000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 140.0000,52.0000 L 460.0000,52.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 140.0000,52.0000 L 141.0000,52.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 140.0000,44.0000 L 460.0000,44.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 140.0000,44.0000 L 141.0000,44.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 140.0000,36.0000 L 460.0000,36.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 140.0000,36.0000 L 141.0000,36.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 140.0000,28.0000 L 460.0000,28.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 140.0000,28.0000 L 141.0000,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 140.0000,20.0000 L 460.0000,20.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 140.0000,20.0000 L 143.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 140.0000,102.5600 L 140.0000,102.5600" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 188.6234,140.0000 L 140.0000,140.0000 L 140.0000,102.5600 L 188.6234,140.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 188.6234,140.0000 L 220.0000,140.0000 L 220.0000,164.1600 L 188.6234,140.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_71"/><path d=" M 140.0000,102.5600 L 220.0000,164.1600" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 245.4316,140.0000 L 220.0000,140.0000 L 220.0000,164.1600 L 245.4316,140.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 245.4316,140.0000 L 300.0000,140.0000 L 300.0000,88.1600 L 245.4316,140.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_74"/><path d=" M 220.0000,164.1600 L 300.0000,88.1600" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 358.3784,140.0000 L 300.0000,140.0000 L 300.0000,88.1600 L 358.3784,140.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 358.3784,140.0000 L 380.0000,140.0000 L 380.0000,159.2000 L 358.3784,140.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_77"/><path d=" M 300.0000,88.1600 L 380.0000,159.2000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 459.3388,140.0000 L 380.0000,140.0000 L 380.0000,159.2000 L 459.3388,140.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 459.3388,140.0000 L 460.0000,140.0000 L 460.0000,139.8400 L 459.3388,140.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_80"/><path d=" M 380.0000,159.2000 L 460.0000,139.8400" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_81"/><path d=" M 140.0000,53.1200 L 140.0000,53.1200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_82"/><path d=" M 140.0000,140.0000 L 140.0000,53.1200 L 220.0000,102.5600 L 220.0000,140.0000 L 140.0000,140.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_83"/><path d=" M 140.0000,53.1200 L 220.0000,102.5600" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_84"/><path d=" M 220.0000,140.0000 L 220.0000,102.5600 L 300.0000,92.3200 L 300.0000,140.0000 L 220.0000,140.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_85"/><path d=" M 220.0000,102.5600 L 300.0000,92.3200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_86"/><path d=" M 378.6799,140.0000 L 300.0000,140.0000 L 300.0000,92.3200 L 378.6799,140.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_87"/><path d=" M 378.6799,140.0000 L 380.0000,140.0000 L 380.0000,140.8000 L 378.6799,140.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_88"/><path d=" M 300.0000,92.3200 L 380.0000,140.8000" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_89"/><path d=" M 380.0000,140.0000 L 380.0000,140.8000 L 460.0000,159.8400 L 460.0000,140.0000 L 380.0000,140.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_90"/><path d=" M 380.0000,140.8000 L 460.0000,159.8400" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_91"/><ellipse cx="140" cy="102.56" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_92"/><ellipse cx="220" cy="164.16" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_93"/><ellipse cx="300" cy="88.16" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_94"/><ellipse cx="380" cy="159.2" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_95"/><ellipse cx="460" cy="139.84" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_96"/><ellipse cx="140" cy="53.12" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_97"/><ellipse cx="220" cy="102.56" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_98"/><ellipse cx="300" cy="92.32" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_99"/><ellipse cx="380" cy="140.8" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_100"/><ellipse cx="460" cy="159.84" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_101"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_14" x="190.32" text-length="59.36px" y="156" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_17" x="270.32" text-length="59.36px" y="156" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_20" x="350.32" text-length="59.36px" y="156" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_23" x="430.32" text-length="59.36px" y="156" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_26" x="103.28" text-length="34.72px" y="178" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-250</text><text id="ezcGraphTextBox_35" x="129.32" text-length="8.68px" y="138" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_46" x="111.96" text-length="26.04px" y="98" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_57" x="111.96" text-length="26.04px" y="58" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_68" x="111.96" text-length="26.04px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChart.svg b/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChart.svg
index 2296372..dfa7a69 100644
--- a/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChart.svg
+++ b/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChart.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,180.0000 L 500.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 492.0000,184.0000 L 500.0000,180.0000 L 492.0000,176.0000 L 492.0000,184.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 220.0000,20.0000 L 220.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 220.0000,177.0000 L 220.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 300.0000,20.0000 L 300.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 300.0000,177.0000 L 300.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 380.0000,20.0000 L 380.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 380.0000,177.0000 L 380.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 460.0000,20.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 460.0000,177.0000 L 460.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 140.0000,127.2000 L 460.0000,127.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 140.0000,126.6667 L 143.0000,126.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 140.0000,72.8000 L 460.0000,72.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,73.3333 L 143.0000,73.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 140.0000,20.0000 L 460.0000,20.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 140.0000,20.0000 L 143.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 140.0000,130.0800 L 140.0000,130.0800" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,130.0800 L 220.0000,175.5200" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 220.0000,175.5200 L 300.0000,110.8800" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 300.0000,110.8800 L 380.0000,154.4000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 380.0000,154.4000 L 460.0000,179.7867" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 140.0000,64.1600 L 140.0000,64.1600" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 140.0000,64.1600 L 220.0000,130.0800" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 220.0000,130.0800 L 300.0000,116.4267" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 300.0000,116.4267 L 380.0000,178.9333" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 380.0000,178.9333 L 460.0000,49.2267" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><ellipse cx="140" cy="130.08" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_44"/><ellipse cx="220" cy="175.52" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_45"/><ellipse cx="300" cy="110.88" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_46"/><ellipse cx="380" cy="154.4" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_47"/><ellipse cx="460" cy="179.78666666667" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_48"/><ellipse cx="140" cy="64.16" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="220" cy="130.08" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="300" cy="116.42666666667" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="380" cy="178.93333333333" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="460" cy="49.226666666667" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_14" x="186.08" text-length="67.84px" y="198" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_17" x="266.08" text-length="67.84px" y="198" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_20" x="346.08" text-length="67.84px" y="198" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_23" x="426.08" text-length="67.84px" y="198" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_24" x="128.08" text-length="9.92px" y="178" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_27" x="108.24" text-length="29.76px" y="124.66666666667" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_30" x="108.24" text-length="29.76px" y="71.333333333333" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_33" x="108.24" text-length="29.76px" y="38" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,180.0000 L 500.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 492.0000,184.0000 L 500.0000,180.0000 L 492.0000,176.0000 L 492.0000,184.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 220.0000,20.0000 L 220.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 220.0000,177.0000 L 220.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 300.0000,20.0000 L 300.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 300.0000,177.0000 L 300.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 380.0000,20.0000 L 380.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 380.0000,177.0000 L 380.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 460.0000,20.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 460.0000,177.0000 L 460.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 140.0000,168.8000 L 460.0000,168.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 140.0000,169.3333 L 141.0000,169.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 140.0000,159.2000 L 460.0000,159.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 140.0000,158.6667 L 141.0000,158.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,148.0000 L 460.0000,148.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 140.0000,148.0000 L 141.0000,148.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 140.0000,136.8000 L 460.0000,136.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 140.0000,137.3333 L 141.0000,137.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 140.0000,127.2000 L 460.0000,127.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 140.0000,126.6667 L 143.0000,126.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,116.0000 L 460.0000,116.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 140.0000,116.0000 L 141.0000,116.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 140.0000,104.8000 L 460.0000,104.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 140.0000,105.3333 L 141.0000,105.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 140.0000,95.2000 L 460.0000,95.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 140.0000,94.6667 L 141.0000,94.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 140.0000,84.0000 L 460.0000,84.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 140.0000,84.0000 L 141.0000,84.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 140.0000,72.8000 L 460.0000,72.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 140.0000,73.3333 L 143.0000,73.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 140.0000,63.2000 L 460.0000,63.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 140.0000,62.6667 L 141.0000,62.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 140.0000,52.0000 L 460.0000,52.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 140.0000,52.0000 L 141.0000,52.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 140.0000,40.8000 L 460.0000,40.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 140.0000,41.3333 L 141.0000,41.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 140.0000,31.2000 L 460.0000,31.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 140.0000,30.6667 L 141.0000,30.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 140.0000,20.0000 L 460.0000,20.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 140.0000,20.0000 L 143.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 140.0000,130.0800 L 140.0000,130.0800" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 140.0000,130.0800 L 220.0000,175.5200" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 220.0000,175.5200 L 300.0000,110.8800" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 300.0000,110.8800 L 380.0000,154.4000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 380.0000,154.4000 L 460.0000,179.7867" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 140.0000,64.1600 L 140.0000,64.1600" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 140.0000,64.1600 L 220.0000,130.0800" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 220.0000,130.0800 L 300.0000,116.4267" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 300.0000,116.4267 L 380.0000,178.9333" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 380.0000,178.9333 L 460.0000,49.2267" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><ellipse cx="140" cy="130.08" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_68"/><ellipse cx="220" cy="175.52" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_69"/><ellipse cx="300" cy="110.88" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_70"/><ellipse cx="380" cy="154.4" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_71"/><ellipse cx="460" cy="179.78666666667" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_72"/><ellipse cx="140" cy="64.16" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_73"/><ellipse cx="220" cy="130.08" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_74"/><ellipse cx="300" cy="116.42666666667" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_75"/><ellipse cx="380" cy="178.93333333333" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_76"/><ellipse cx="460" cy="49.226666666667" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_14" x="186.08" text-length="67.84px" y="198" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_17" x="266.08" text-length="67.84px" y="198" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_20" x="346.08" text-length="67.84px" y="198" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_23" x="426.08" text-length="67.84px" y="198" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_24" x="128.08" text-length="9.92px" y="178" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_35" x="108.24" text-length="29.76px" y="124.66666666667" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_46" x="108.24" text-length="29.76px" y="71.333333333333" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_57" x="108.24" text-length="29.76px" y="38" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithAxisLabels.svg b/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithAxisLabels.svg
index a5892aa..5676287 100644
--- a/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithAxisLabels.svg
+++ b/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithAxisLabels.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,180.0000 L 500.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 492.0000,184.0000 L 500.0000,180.0000 L 492.0000,176.0000 L 492.0000,184.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_12"/><path d=" M 220.0000,20.0000 L 220.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 220.0000,177.0000 L 220.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 300.0000,20.0000 L 300.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 300.0000,177.0000 L 300.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 380.0000,20.0000 L 380.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 380.0000,177.0000 L 380.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 460.0000,20.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 460.0000,177.0000 L 460.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 140.0000,127.2000 L 460.0000,127.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 140.0000,126.6667 L 143.0000,126.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,72.8000 L 460.0000,72.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 140.0000,73.3333 L 143.0000,73.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 140.0000,20.0000 L 460.0000,20.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 140.0000,20.0000 L 143.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,130.0800 L 140.0000,130.0800" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 140.0000,130.0800 L 220.0000,175.5200" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 220.0000,175.5200 L 300.0000,110.8800" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 300.0000,110.8800 L 380.0000,154.4000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 380.0000,154.4000 L 460.0000,179.7867" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 140.0000,64.1600 L 140.0000,64.1600" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 140.0000,64.1600 L 220.0000,130.0800" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 220.0000,130.0800 L 300.0000,116.4267" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 300.0000,116.4267 L 380.0000,178.9333" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 380.0000,178.9333 L 460.0000,49.2267" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><ellipse cx="140" cy="130.08" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_46"/><ellipse cx="220" cy="175.52" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_47"/><ellipse cx="300" cy="110.88" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_48"/><ellipse cx="380" cy="154.4" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="460" cy="179.78666666667" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="140" cy="64.16" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="220" cy="130.08" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="300" cy="116.42666666667" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="380" cy="178.93333333333" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="460" cy="49.226666666667" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_10" x="446.06" text-length="51.94px" y="178" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Samples</text><text id="ezcGraphTextBox_13" x="142" text-length="51.94px" y="16" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Numbers</text><text id="ezcGraphTextBox_16" x="190.32" text-length="59.36px" y="196" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_19" x="270.32" text-length="59.36px" y="196" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_22" x="350.32" text-length="59.36px" y="196" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_25" x="430.32" text-length="59.36px" y="196" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_26" x="129.32" text-length="8.68px" y="178" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_29" x="111.96" text-length="26.04px" y="124.66666666667" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_32" x="111.96" text-length="26.04px" y="71.333333333333" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_35" x="111.96" text-length="26.04px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,180.0000 L 500.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 492.0000,184.0000 L 500.0000,180.0000 L 492.0000,176.0000 L 492.0000,184.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_12"/><path d=" M 220.0000,20.0000 L 220.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 220.0000,177.0000 L 220.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 300.0000,20.0000 L 300.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 300.0000,177.0000 L 300.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 380.0000,20.0000 L 380.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 380.0000,177.0000 L 380.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 460.0000,20.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 460.0000,177.0000 L 460.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 140.0000,168.8000 L 460.0000,168.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 140.0000,169.3333 L 141.0000,169.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,159.2000 L 460.0000,159.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 140.0000,158.6667 L 141.0000,158.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 140.0000,148.0000 L 460.0000,148.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 140.0000,148.0000 L 141.0000,148.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 140.0000,136.8000 L 460.0000,136.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 140.0000,137.3333 L 141.0000,137.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,127.2000 L 460.0000,127.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 140.0000,126.6667 L 143.0000,126.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 140.0000,116.0000 L 460.0000,116.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 140.0000,116.0000 L 141.0000,116.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 140.0000,104.8000 L 460.0000,104.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 140.0000,105.3333 L 141.0000,105.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 140.0000,95.2000 L 460.0000,95.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 140.0000,94.6667 L 141.0000,94.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 140.0000,84.0000 L 460.0000,84.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 140.0000,84.0000 L 141.0000,84.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 140.0000,72.8000 L 460.0000,72.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 140.0000,73.3333 L 143.0000,73.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 140.0000,63.2000 L 460.0000,63.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 140.0000,62.6667 L 141.0000,62.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 140.0000,52.0000 L 460.0000,52.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 140.0000,52.0000 L 141.0000,52.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 140.0000,40.8000 L 460.0000,40.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 140.0000,41.3333 L 141.0000,41.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 140.0000,31.2000 L 460.0000,31.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 140.0000,30.6667 L 141.0000,30.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 140.0000,20.0000 L 460.0000,20.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 140.0000,20.0000 L 143.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 140.0000,130.0800 L 140.0000,130.0800" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 140.0000,130.0800 L 220.0000,175.5200" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 220.0000,175.5200 L 300.0000,110.8800" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 300.0000,110.8800 L 380.0000,154.4000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 380.0000,154.4000 L 460.0000,179.7867" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 140.0000,64.1600 L 140.0000,64.1600" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 140.0000,64.1600 L 220.0000,130.0800" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 220.0000,130.0800 L 300.0000,116.4267" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 300.0000,116.4267 L 380.0000,178.9333" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 380.0000,178.9333 L 460.0000,49.2267" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><ellipse cx="140" cy="130.08" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_70"/><ellipse cx="220" cy="175.52" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_71"/><ellipse cx="300" cy="110.88" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_72"/><ellipse cx="380" cy="154.4" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_73"/><ellipse cx="460" cy="179.78666666667" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_74"/><ellipse cx="140" cy="64.16" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_75"/><ellipse cx="220" cy="130.08" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_76"/><ellipse cx="300" cy="116.42666666667" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="380" cy="178.93333333333" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="460" cy="49.226666666667" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_10" x="446.06" text-length="51.94px" y="178" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Samples</text><text id="ezcGraphTextBox_13" x="142" text-length="51.94px" y="16" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Numbers</text><text id="ezcGraphTextBox_16" x="190.32" text-length="59.36px" y="196" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_19" x="270.32" text-length="59.36px" y="196" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_22" x="350.32" text-length="59.36px" y="196" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_25" x="430.32" text-length="59.36px" y="196" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_26" x="129.32" text-length="8.68px" y="178" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_37" x="111.96" text-length="26.04px" y="124.66666666667" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_48" x="111.96" text-length="26.04px" y="71.333333333333" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_59" x="111.96" text-length="26.04px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithAxisLabelsReversedAxis.svg b/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithAxisLabelsReversedAxis.svg
index 53ef98a..3366e16 100644
--- a/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithAxisLabelsReversedAxis.svg
+++ b/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithAxisLabelsReversedAxis.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 500.0000,20.0000 L 100.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 108.0000,16.0000 L 100.0000,20.0000 L 108.0000,24.0000 L 108.0000,16.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 460.0000,0.0000 L 460.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 462.5000,195.0000 L 460.0000,200.0000 L 457.5000,195.0000 L 462.5000,195.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_12"/><path d=" M 380.0000,20.0000 L 380.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 380.0000,20.0000 L 380.0000,17.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 300.0000,20.0000 L 300.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 300.0000,20.0000 L 300.0000,17.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 220.0000,20.0000 L 220.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 220.0000,20.0000 L 220.0000,17.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 140.0000,20.0000 L 140.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 140.0000,20.0000 L 140.0000,17.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 140.0000,72.8000 L 460.0000,72.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 463.0000,73.3333 L 460.0000,73.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,127.2000 L 460.0000,127.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 463.0000,126.6667 L 460.0000,126.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 140.0000,180.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 463.0000,180.0000 L 460.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 460.0000,69.9200 L 460.0000,69.9200" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 460.0000,69.9200 L 380.0000,24.4800" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 380.0000,24.4800 L 300.0000,89.1200" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 300.0000,89.1200 L 220.0000,45.6000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 220.0000,45.6000 L 140.0000,20.2133" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 460.0000,135.8400 L 460.0000,135.8400" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 460.0000,135.8400 L 380.0000,69.9200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 380.0000,69.9200 L 300.0000,83.5733" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 300.0000,83.5733 L 220.0000,21.0667" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 220.0000,21.0667 L 140.0000,150.7733" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><ellipse cx="460" cy="69.92" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_46"/><ellipse cx="380" cy="24.48" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_47"/><ellipse cx="300" cy="89.12" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_48"/><ellipse cx="220" cy="45.6" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="140" cy="20.213333333333" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="460" cy="135.84" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="380" cy="69.92" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="300" cy="83.573333333333" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="220" cy="21.066666666667" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="140" cy="150.77333333333" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_10" x="100" text-length="51.94px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Samples</text><text id="ezcGraphTextBox_13" x="408.06" text-length="51.94px" y="198" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Numbers</text><text id="ezcGraphTextBox_16" x="350.32" text-length="59.36px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_19" x="270.32" text-length="59.36px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_22" x="190.32" text-length="59.36px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_25" x="110.32" text-length="59.36px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_26" x="449.32" text-length="8.68px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_29" x="431.96" text-length="26.04px" y="89.333333333333" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_32" x="431.96" text-length="26.04px" y="142.66666666667" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_35" x="431.96" text-length="26.04px" y="178" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 500.0000,20.0000 L 100.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 108.0000,16.0000 L 100.0000,20.0000 L 108.0000,24.0000 L 108.0000,16.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 460.0000,0.0000 L 460.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 462.5000,195.0000 L 460.0000,200.0000 L 457.5000,195.0000 L 462.5000,195.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_12"/><path d=" M 380.0000,20.0000 L 380.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 380.0000,20.0000 L 380.0000,17.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 300.0000,20.0000 L 300.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 300.0000,20.0000 L 300.0000,17.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 220.0000,20.0000 L 220.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 220.0000,20.0000 L 220.0000,17.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 140.0000,20.0000 L 140.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 140.0000,20.0000 L 140.0000,17.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 140.0000,31.2000 L 460.0000,31.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 461.0000,30.6667 L 460.0000,30.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,40.8000 L 460.0000,40.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 461.0000,41.3333 L 460.0000,41.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 140.0000,52.0000 L 460.0000,52.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 461.0000,52.0000 L 460.0000,52.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 140.0000,63.2000 L 460.0000,63.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 461.0000,62.6667 L 460.0000,62.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,72.8000 L 460.0000,72.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 463.0000,73.3333 L 460.0000,73.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 140.0000,84.0000 L 460.0000,84.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 461.0000,84.0000 L 460.0000,84.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 140.0000,95.2000 L 460.0000,95.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 461.0000,94.6667 L 460.0000,94.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 140.0000,104.8000 L 460.0000,104.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 461.0000,105.3333 L 460.0000,105.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 140.0000,116.0000 L 460.0000,116.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 461.0000,116.0000 L 460.0000,116.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 140.0000,127.2000 L 460.0000,127.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 463.0000,126.6667 L 460.0000,126.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 140.0000,136.8000 L 460.0000,136.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 461.0000,137.3333 L 460.0000,137.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 140.0000,148.0000 L 460.0000,148.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 461.0000,148.0000 L 460.0000,148.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 140.0000,159.2000 L 460.0000,159.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 461.0000,158.6667 L 460.0000,158.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 140.0000,168.8000 L 460.0000,168.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 461.0000,169.3333 L 460.0000,169.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 140.0000,180.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 463.0000,180.0000 L 460.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 460.0000,69.9200 L 460.0000,69.9200" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 460.0000,69.9200 L 380.0000,24.4800" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 380.0000,24.4800 L 300.0000,89.1200" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 300.0000,89.1200 L 220.0000,45.6000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 220.0000,45.6000 L 140.0000,20.2133" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 460.0000,135.8400 L 460.0000,135.8400" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 460.0000,135.8400 L 380.0000,69.9200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 380.0000,69.9200 L 300.0000,83.5733" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 300.0000,83.5733 L 220.0000,21.0667" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 220.0000,21.0667 L 140.0000,150.7733" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><ellipse cx="460" cy="69.92" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_70"/><ellipse cx="380" cy="24.48" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_71"/><ellipse cx="300" cy="89.12" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_72"/><ellipse cx="220" cy="45.6" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_73"/><ellipse cx="140" cy="20.213333333333" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_74"/><ellipse cx="460" cy="135.84" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_75"/><ellipse cx="380" cy="69.92" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_76"/><ellipse cx="300" cy="83.573333333333" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="220" cy="21.066666666667" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="140" cy="150.77333333333" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_10" x="100" text-length="51.94px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Samples</text><text id="ezcGraphTextBox_13" x="408.06" text-length="51.94px" y="198" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Numbers</text><text id="ezcGraphTextBox_16" x="350.32" text-length="59.36px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_19" x="270.32" text-length="59.36px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_22" x="190.32" text-length="59.36px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_25" x="110.32" text-length="59.36px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_26" x="449.32" text-length="8.68px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_37" x="431.96" text-length="26.04px" y="89.333333333333" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_48" x="431.96" text-length="26.04px" y="142.66666666667" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_59" x="431.96" text-length="26.04px" y="178" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithDifferentAxisSpace.svg b/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithDifferentAxisSpace.svg
index 10f8d7d..a0453c8 100644
--- a/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithDifferentAxisSpace.svg
+++ b/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithDifferentAxisSpace.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,160.0000 L 500.0000,160.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 492.0000,164.0000 L 500.0000,160.0000 L 492.0000,156.0000 L 492.0000,164.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 120.0000,200.0000 L 120.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 119.0000,2.0000 L 120.0000,0.0000 L 121.0000,2.0000 L 119.0000,2.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 210.0000,40.0000 L 210.0000,160.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 210.0000,157.0000 L 210.0000,160.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 300.0000,40.0000 L 300.0000,160.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 300.0000,157.0000 L 300.0000,160.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 390.0000,40.0000 L 390.0000,160.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 390.0000,157.0000 L 390.0000,160.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 480.0000,40.0000 L 480.0000,160.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 480.0000,157.0000 L 480.0000,160.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 120.0000,119.8000 L 480.0000,119.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 120.0000,120.0000 L 123.0000,120.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 120.0000,80.2000 L 480.0000,80.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 120.0000,80.0000 L 123.0000,80.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 120.0000,40.6000 L 480.0000,40.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 120.0000,40.0000 L 123.0000,40.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 120.0000,122.5600 L 120.0000,122.5600" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 120.0000,122.5600 L 210.0000,156.6400" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 210.0000,156.6400 L 300.0000,108.1600" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 300.0000,108.1600 L 390.0000,140.8000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 390.0000,140.8000 L 480.0000,159.8400" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 120.0000,73.1200 L 120.0000,73.1200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 120.0000,73.1200 L 210.0000,122.5600" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 210.0000,122.5600 L 300.0000,112.3200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 300.0000,112.3200 L 390.0000,159.2000" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 390.0000,159.2000 L 480.0000,61.9200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><ellipse cx="120" cy="122.56" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_44"/><ellipse cx="210" cy="156.64" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_45"/><ellipse cx="300" cy="108.16" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_46"/><ellipse cx="390" cy="140.8" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_47"/><ellipse cx="480" cy="159.84" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_48"/><ellipse cx="120" cy="73.12" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="210" cy="122.56" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="300" cy="112.32" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="390" cy="159.2" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="480" cy="61.92" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_14" x="193.04" text-length="33.92px" y="170" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_17" x="283.04" text-length="33.92px" y="170" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_20" x="373.04" text-length="33.92px" y="170" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_23" x="463.04" text-length="33.92px" y="170" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_24" x="113.04" text-length="4.96px" y="158" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_27" x="103.12" text-length="14.88px" y="118" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_30" x="103.12" text-length="14.88px" y="78" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_33" x="103.12" text-length="14.88px" y="50" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,160.0000 L 500.0000,160.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 492.0000,164.0000 L 500.0000,160.0000 L 492.0000,156.0000 L 492.0000,164.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 120.0000,200.0000 L 120.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 119.0000,2.0000 L 120.0000,0.0000 L 121.0000,2.0000 L 119.0000,2.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 210.0000,40.0000 L 210.0000,160.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 210.0000,157.0000 L 210.0000,160.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 300.0000,40.0000 L 300.0000,160.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 300.0000,157.0000 L 300.0000,160.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 390.0000,40.0000 L 390.0000,160.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 390.0000,157.0000 L 390.0000,160.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 480.0000,40.0000 L 480.0000,160.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 480.0000,157.0000 L 480.0000,160.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 120.0000,152.2000 L 480.0000,152.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 120.0000,152.0000 L 121.0000,152.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 120.0000,143.2000 L 480.0000,143.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 120.0000,144.0000 L 121.0000,144.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 120.0000,136.0000 L 480.0000,136.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 120.0000,136.0000 L 121.0000,136.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 120.0000,128.8000 L 480.0000,128.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 120.0000,128.0000 L 121.0000,128.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 120.0000,119.8000 L 480.0000,119.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 120.0000,120.0000 L 123.0000,120.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 120.0000,112.6000 L 480.0000,112.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 120.0000,112.0000 L 121.0000,112.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 120.0000,103.6000 L 480.0000,103.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 120.0000,104.0000 L 121.0000,104.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 120.0000,96.4000 L 480.0000,96.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 120.0000,96.0000 L 121.0000,96.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 120.0000,87.4000 L 480.0000,87.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 120.0000,88.0000 L 121.0000,88.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 120.0000,80.2000 L 480.0000,80.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 120.0000,80.0000 L 123.0000,80.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 120.0000,71.2000 L 480.0000,71.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 120.0000,72.0000 L 121.0000,72.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 120.0000,64.0000 L 480.0000,64.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 120.0000,64.0000 L 121.0000,64.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 120.0000,56.8000 L 480.0000,56.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 120.0000,56.0000 L 121.0000,56.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 120.0000,47.8000 L 480.0000,47.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 120.0000,48.0000 L 121.0000,48.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 120.0000,40.6000 L 480.0000,40.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 120.0000,40.0000 L 123.0000,40.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 120.0000,122.5600 L 120.0000,122.5600" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 120.0000,122.5600 L 210.0000,156.6400" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 210.0000,156.6400 L 300.0000,108.1600" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 300.0000,108.1600 L 390.0000,140.8000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 390.0000,140.8000 L 480.0000,159.8400" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 120.0000,73.1200 L 120.0000,73.1200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 120.0000,73.1200 L 210.0000,122.5600" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 210.0000,122.5600 L 300.0000,112.3200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 300.0000,112.3200 L 390.0000,159.2000" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 390.0000,159.2000 L 480.0000,61.9200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><ellipse cx="120" cy="122.56" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_68"/><ellipse cx="210" cy="156.64" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_69"/><ellipse cx="300" cy="108.16" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_70"/><ellipse cx="390" cy="140.8" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_71"/><ellipse cx="480" cy="159.84" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_72"/><ellipse cx="120" cy="73.12" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_73"/><ellipse cx="210" cy="122.56" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_74"/><ellipse cx="300" cy="112.32" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_75"/><ellipse cx="390" cy="159.2" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_76"/><ellipse cx="480" cy="61.92" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_14" x="193.04" text-length="33.92px" y="170" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_17" x="283.04" text-length="33.92px" y="170" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_20" x="373.04" text-length="33.92px" y="170" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_23" x="463.04" text-length="33.92px" y="170" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_24" x="113.04" text-length="4.96px" y="158" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_35" x="103.12" text-length="14.88px" y="118" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_46" x="103.12" text-length="14.88px" y="78" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_57" x="103.12" text-length="14.88px" y="50" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithHighlightedData.svg b/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithHighlightedData.svg
index e399b38..1d9fa73 100644
--- a/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithHighlightedData.svg
+++ b/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithHighlightedData.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,140.0000 L 500.0000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 492.0000,144.0000 L 500.0000,140.0000 L 492.0000,136.0000 L 492.0000,144.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 204.0000,20.0000 L 204.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 204.0000,137.0000 L 204.0000,143.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 268.0000,20.0000 L 268.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 268.0000,137.0000 L 268.0000,143.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 332.0000,20.0000 L 332.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 332.0000,137.0000 L 332.0000,143.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 396.0000,20.0000 L 396.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 396.0000,137.0000 L 396.0000,143.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 460.0000,20.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 460.0000,137.0000 L 460.0000,143.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 140.0000,180.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 140.0000,180.0000 L 143.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,100.0000 L 460.0000,100.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 140.0000,100.0000 L 143.0000,100.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 140.0000,60.0000 L 460.0000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,60.0000 L 143.0000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 140.0000,20.0000 L 460.0000,20.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 140.0000,20.0000 L 143.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 199.2425,140.0000 L 144.7575,140.0000 L 144.7575,102.5600 L 199.2425,102.5600 L 199.2425,140.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_40"/><path d=" M 199.2425,140.0000 L 144.7575,140.0000 L 144.7575,102.5600 L 199.2425,102.5600 L 199.2425,140.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_41"/><path d=" M 263.2425,140.0000 L 208.7575,140.0000 L 208.7575,143.3600 L 263.2425,143.3600 L 263.2425,140.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_43"/><path d=" M 263.2425,140.0000 L 208.7575,140.0000 L 208.7575,143.3600 L 263.2425,143.3600 L 263.2425,140.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_44"/><path d=" M 327.2425,140.0000 L 272.7575,140.0000 L 272.7575,88.1600 L 327.2425,88.1600 L 327.2425,140.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_46"/><path d=" M 327.2425,140.0000 L 272.7575,140.0000 L 272.7575,88.1600 L 327.2425,88.1600 L 327.2425,140.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_47"/><path d=" M 391.2425,140.0000 L 336.7575,140.0000 L 336.7575,159.2000 L 391.2425,159.2000 L 391.2425,140.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_49"/><path d=" M 391.2425,140.0000 L 336.7575,140.0000 L 336.7575,159.2000 L 391.2425,159.2000 L 391.2425,140.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_50"/><path d=" M 455.2425,140.0000 L 400.7575,140.0000 L 400.7575,139.8400 L 455.2425,139.8400 L 455.2425,140.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_52"/><path d=" M 455.2425,140.0000 L 400.7575,140.0000 L 400.7575,139.8400 L 455.2425,139.8400 L 455.2425,140.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_53"/><path d=" M 172.0000,53.1200 L 172.0000,53.1200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 172.0000,53.1200 L 236.0000,102.5600" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 236.0000,102.5600 L 300.0000,92.3200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 300.0000,92.3200 L 364.0000,139.2000" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 364.0000,139.2000 L 428.0000,41.9200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><ellipse cx="172" cy="53.12" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_61"/><ellipse cx="236" cy="102.56" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_62"/><ellipse cx="300" cy="92.32" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_63"/><ellipse cx="364" cy="139.2" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_64"/><ellipse cx="428" cy="41.92" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_65"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_12" x="142.32" text-length="59.36px" y="156" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text><text id="ezcGraphTextBox_15" x="206.32" text-length="59.36px" y="156" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_18" x="270.32" text-length="59.36px" y="156" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_21" x="334.32" text-length="59.36px" y="156" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_24" x="398.32" text-length="59.36px" y="156" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_29" x="103.28" text-length="34.72px" y="178" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-250</text><text id="ezcGraphTextBox_30" x="129.32" text-length="8.68px" y="138" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_33" x="111.96" text-length="26.04px" y="98" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_36" x="111.96" text-length="26.04px" y="58" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_39" x="111.96" text-length="26.04px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text><path d=" M 162.2000,96.5600 L 162.2000,85.0600 L 182.3000,85.0600 L 182.3000,96.5600 L 162.2000,96.5600 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_66"/><path d=" M 162.2000,96.5600 L 162.2000,85.0600 L 182.3000,85.0600 L 182.3000,96.5600 L 162.2000,96.5600 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_42" x="162.7" text-length="18.6px" y="95.56" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">234</text><path d=" M 226.2000,161.3600 L 226.2000,149.8600 L 246.3000,149.8600 L 246.3000,161.3600 L 226.2000,161.3600 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_68"/><path d=" M 226.2000,161.3600 L 226.2000,149.8600 L 246.3000,149.8600 L 246.3000,161.3600 L 226.2000,161.3600 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_45" x="226.7" text-length="18.6px" y="160.36" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">-21</text><path d=" M 290.2000,82.1600 L 290.2000,70.6600 L 310.3000,70.6600 L 310.3000,82.1600 L 290.2000,82.1600 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 290.2000,82.1600 L 290.2000,70.6600 L 310.3000,70.6600 L 310.3000,82.1600 L 290.2000,82.1600 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><text id="ezcGraphTextBox_48" x="290.7" text-length="18.6px" y="81.16" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">324</text><path d=" M 351.1000,177.2000 L 351.1000,165.7000 L 377.4000,165.7000 L 377.4000,177.2000 L 351.1000,177.2000 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_72"/><path d=" M 351.1000,177.2000 L 351.1000,165.7000 L 377.4000,165.7000 L 377.4000,177.2000 L 351.1000,177.2000 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_73"/><text id="ezcGraphTextBox_51" x="351.6" text-length="24.8px" y="176.2" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">-120</text><path d=" M 424.4000,133.8400 L 424.4000,122.3400 L 432.1000,122.3400 L 432.1000,133.8400 L 424.4000,133.8400 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_74"/><path d=" M 424.4000,133.8400 L 424.4000,122.3400 L 432.1000,122.3400 L 432.1000,133.8400 L 424.4000,133.8400 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_75"/><text id="ezcGraphTextBox_54" x="424.9" text-length="6.2px" y="132.84" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">1</text><path d=" M 418.2000,35.9200 L 418.2000,24.4200 L 438.3000,24.4200 L 438.3000,35.9200 L 418.2000,35.9200 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 418.2000,35.9200 L 418.2000,24.4200 L 438.3000,24.4200 L 438.3000,35.9200 L 418.2000,35.9200 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_77"/><text id="ezcGraphTextBox_60" x="418.7" text-length="18.6px" y="34.92" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">613</text></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,140.0000 L 500.0000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 492.0000,144.0000 L 500.0000,140.0000 L 492.0000,136.0000 L 492.0000,144.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 204.0000,20.0000 L 204.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 204.0000,137.0000 L 204.0000,143.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 268.0000,20.0000 L 268.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 268.0000,137.0000 L 268.0000,143.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 332.0000,20.0000 L 332.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 332.0000,137.0000 L 332.0000,143.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 396.0000,20.0000 L 396.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 396.0000,137.0000 L 396.0000,143.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 460.0000,20.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 460.0000,137.0000 L 460.0000,143.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 140.0000,180.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 140.0000,180.0000 L 143.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,172.0000 L 460.0000,172.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 140.0000,172.0000 L 141.0000,172.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 140.0000,164.0000 L 460.0000,164.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 140.0000,164.0000 L 141.0000,164.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 140.0000,156.0000 L 460.0000,156.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,156.0000 L 141.0000,156.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 140.0000,148.0000 L 460.0000,148.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 140.0000,148.0000 L 141.0000,148.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 140.0000,132.0000 L 460.0000,132.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 140.0000,132.0000 L 141.0000,132.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 140.0000,124.0000 L 460.0000,124.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 140.0000,124.0000 L 141.0000,124.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 140.0000,116.0000 L 460.0000,116.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 140.0000,116.0000 L 141.0000,116.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 140.0000,108.0000 L 460.0000,108.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 140.0000,108.0000 L 141.0000,108.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 140.0000,100.0000 L 460.0000,100.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 140.0000,100.0000 L 143.0000,100.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 140.0000,92.0000 L 460.0000,92.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 140.0000,92.0000 L 141.0000,92.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 140.0000,84.0000 L 460.0000,84.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 140.0000,84.0000 L 141.0000,84.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 140.0000,76.0000 L 460.0000,76.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 140.0000,76.0000 L 141.0000,76.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 140.0000,68.0000 L 460.0000,68.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 140.0000,68.0000 L 141.0000,68.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 140.0000,60.0000 L 460.0000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 140.0000,60.0000 L 143.0000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 140.0000,52.0000 L 460.0000,52.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 140.0000,52.0000 L 141.0000,52.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 140.0000,44.0000 L 460.0000,44.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 140.0000,44.0000 L 141.0000,44.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 140.0000,36.0000 L 460.0000,36.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 140.0000,36.0000 L 141.0000,36.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 140.0000,28.0000 L 460.0000,28.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 140.0000,28.0000 L 141.0000,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 140.0000,20.0000 L 460.0000,20.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 140.0000,20.0000 L 143.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 199.2425,140.0000 L 144.7575,140.0000 L 144.7575,102.5600 L 199.2425,102.5600 L 199.2425,140.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_72"/><path d=" M 199.2425,140.0000 L 144.7575,140.0000 L 144.7575,102.5600 L 199.2425,102.5600 L 199.2425,140.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_73"/><path d=" M 263.2425,140.0000 L 208.7575,140.0000 L 208.7575,143.3600 L 263.2425,143.3600 L 263.2425,140.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_75"/><path d=" M 263.2425,140.0000 L 208.7575,140.0000 L 208.7575,143.3600 L 263.2425,143.3600 L 263.2425,140.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_76"/><path d=" M 327.2425,140.0000 L 272.7575,140.0000 L 272.7575,88.1600 L 327.2425,88.1600 L 327.2425,140.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_78"/><path d=" M 327.2425,140.0000 L 272.7575,140.0000 L 272.7575,88.1600 L 327.2425,88.1600 L 327.2425,140.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_79"/><path d=" M 391.2425,140.0000 L 336.7575,140.0000 L 336.7575,159.2000 L 391.2425,159.2000 L 391.2425,140.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_81"/><path d=" M 391.2425,140.0000 L 336.7575,140.0000 L 336.7575,159.2000 L 391.2425,159.2000 L 391.2425,140.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_82"/><path d=" M 455.2425,140.0000 L 400.7575,140.0000 L 400.7575,139.8400 L 455.2425,139.8400 L 455.2425,140.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_84"/><path d=" M 455.2425,140.0000 L 400.7575,140.0000 L 400.7575,139.8400 L 455.2425,139.8400 L 455.2425,140.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_85"/><path d=" M 172.0000,53.1200 L 172.0000,53.1200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_87"/><path d=" M 172.0000,53.1200 L 236.0000,102.5600" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_88"/><path d=" M 236.0000,102.5600 L 300.0000,92.3200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_89"/><path d=" M 300.0000,92.3200 L 364.0000,139.2000" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_90"/><path d=" M 364.0000,139.2000 L 428.0000,41.9200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_91"/><ellipse cx="172" cy="53.12" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_93"/><ellipse cx="236" cy="102.56" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_94"/><ellipse cx="300" cy="92.32" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_95"/><ellipse cx="364" cy="139.2" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_96"/><ellipse cx="428" cy="41.92" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_97"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_12" x="142.32" text-length="59.36px" y="156" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text><text id="ezcGraphTextBox_15" x="206.32" text-length="59.36px" y="156" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_18" x="270.32" text-length="59.36px" y="156" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_21" x="334.32" text-length="59.36px" y="156" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_24" x="398.32" text-length="59.36px" y="156" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_29" x="103.28" text-length="34.72px" y="178" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-250</text><text id="ezcGraphTextBox_38" x="129.32" text-length="8.68px" y="138" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_49" x="111.96" text-length="26.04px" y="98" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_60" x="111.96" text-length="26.04px" y="58" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_71" x="111.96" text-length="26.04px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text><path d=" M 162.2000,96.5600 L 162.2000,85.0600 L 182.3000,85.0600 L 182.3000,96.5600 L 162.2000,96.5600 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_98"/><path d=" M 162.2000,96.5600 L 162.2000,85.0600 L 182.3000,85.0600 L 182.3000,96.5600 L 162.2000,96.5600 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_99"/><text id="ezcGraphTextBox_74" x="162.7" text-length="18.6px" y="95.56" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">234</text><path d=" M 226.2000,161.3600 L 226.2000,149.8600 L 246.3000,149.8600 L 246.3000,161.3600 L 226.2000,161.3600 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_100"/><path d=" M 226.2000,161.3600 L 226.2000,149.8600 L 246.3000,149.8600 L 246.3000,161.3600 L 226.2000,161.3600 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_101"/><text id="ezcGraphTextBox_77" x="226.7" text-length="18.6px" y="160.36" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">-21</text><path d=" M 290.2000,82.1600 L 290.2000,70.6600 L 310.3000,70.6600 L 310.3000,82.1600 L 290.2000,82.1600 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_102"/><path d=" M 290.2000,82.1600 L 290.2000,70.6600 L 310.3000,70.6600 L 310.3000,82.1600 L 290.2000,82.1600 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_103"/><text id="ezcGraphTextBox_80" x="290.7" text-length="18.6px" y="81.16" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">324</text><path d=" M 351.1000,177.2000 L 351.1000,165.7000 L 377.4000,165.7000 L 377.4000,177.2000 L 351.1000,177.2000 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_104"/><path d=" M 351.1000,177.2000 L 351.1000,165.7000 L 377.4000,165.7000 L 377.4000,177.2000 L 351.1000,177.2000 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_105"/><text id="ezcGraphTextBox_83" x="351.6" text-length="24.8px" y="176.2" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">-120</text><path d=" M 424.4000,133.8400 L 424.4000,122.3400 L 432.1000,122.3400 L 432.1000,133.8400 L 424.4000,133.8400 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_106"/><path d=" M 424.4000,133.8400 L 424.4000,122.3400 L 432.1000,122.3400 L 432.1000,133.8400 L 424.4000,133.8400 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_107"/><text id="ezcGraphTextBox_86" x="424.9" text-length="6.2px" y="132.84" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">1</text><path d=" M 418.2000,35.9200 L 418.2000,24.4200 L 438.3000,24.4200 L 438.3000,35.9200 L 418.2000,35.9200 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_108"/><path d=" M 418.2000,35.9200 L 418.2000,24.4200 L 438.3000,24.4200 L 438.3000,35.9200 L 418.2000,35.9200 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_109"/><text id="ezcGraphTextBox_92" x="418.7" text-length="18.6px" y="34.92" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">613</text></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChart.svg b/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChart.svg
index e49848c..1d1888c 100644
--- a/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChart.svg
+++ b/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChart.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000 L 500.0000,162.0000 L 480.0000,182.0000 L 100.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 120.0000,162.0000 L 500.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 492.0000,166.0000 L 500.0000,162.0000 L 492.0000,158.0000 L 492.0000,166.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 234.0000,162.0000 L 234.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_15"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_16"/><path d=" M 310.0000,162.0000 L 310.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_19"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_20"/><path d=" M 386.0000,162.0000 L 386.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_23"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_24"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_28"/><path d=" M 462.0000,114.4800 L 158.0000,114.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_32"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_33"/><path d=" M 462.0000,65.5200 L 158.0000,65.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_36"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_37"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_40"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_41"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_43"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_44"/><path d=" M 148.0000,172.0000 L 148.0000,127.0720 L 224.0000,167.9680 L 224.0000,172.0000 L 148.0000,172.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_45"/><path d=" M 234.0000,162.0000 L 234.0000,157.9680 L 224.0000,167.9680 L 224.0000,172.0000 L 234.0000,162.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_46"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_47"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_48"/><path d=" M 224.0000,172.0000 L 224.0000,167.9680 L 300.0000,109.7920 L 300.0000,172.0000 L 224.0000,172.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_49"/><path d=" M 310.0000,162.0000 L 310.0000,99.7920 L 300.0000,109.7920 L 300.0000,172.0000 L 310.0000,162.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_50"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_52"/><path d=" M 300.0000,172.0000 L 300.0000,109.7920 L 376.0000,148.9600 L 376.0000,172.0000 L 300.0000,172.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_53"/><path d=" M 386.0000,162.0000 L 386.0000,138.9600 L 376.0000,148.9600 L 376.0000,172.0000 L 386.0000,162.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_55"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_56"/><path d=" M 376.0000,172.0000 L 376.0000,148.9600 L 452.0000,171.8080 L 452.0000,172.0000 L 376.0000,172.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 462.0000,162.0000 L 462.0000,161.8080 L 452.0000,171.8080 L 452.0000,172.0000 L 462.0000,162.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_58"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_59"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_60"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_61"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_62"/><path d=" M 138.0000,182.0000 L 138.0000,77.7440 L 214.0000,137.0720 L 214.0000,182.0000 L 138.0000,182.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_63"/><path d=" M 224.0000,172.0000 L 224.0000,127.0720 L 214.0000,137.0720 L 214.0000,182.0000 L 224.0000,172.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_64"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_65"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_66"/><path d=" M 214.0000,182.0000 L 214.0000,137.0720 L 290.0000,124.7840 L 290.0000,182.0000 L 214.0000,182.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_67"/><path d=" M 300.0000,172.0000 L 300.0000,114.7840 L 290.0000,124.7840 L 290.0000,182.0000 L 300.0000,172.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_68"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_69"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_70"/><path d=" M 290.0000,182.0000 L 290.0000,124.7840 L 366.0000,181.0400 L 366.0000,182.0000 L 290.0000,182.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_71"/><path d=" M 376.0000,172.0000 L 376.0000,171.0400 L 366.0000,181.0400 L 366.0000,182.0000 L 376.0000,172.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_72"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_74"/><path d=" M 366.0000,182.0000 L 366.0000,181.0400 L 442.0000,64.3040 L 442.0000,182.0000 L 366.0000,182.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_75"/><path d=" M 452.0000,172.0000 L 452.0000,54.3040 L 442.0000,64.3040 L 442.0000,182.0000 L 452.0000,172.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_77"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_78"/><ellipse cx="158" cy="117.072" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="234" cy="157.968" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="310" cy="99.792" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="386" cy="138.96" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="462" cy="161.808" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="148" cy="67.744" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="224" cy="127.072" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><ellipse cx="300" cy="114.784" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_86"/><ellipse cx="376" cy="171.04" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_87"/><ellipse cx="452" cy="54.304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_88"/><path d=" M 500.0000,162.0000 L 480.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_89"/><path d=" M 480.0000,182.0000 L 100.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_90"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_91"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_92"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_93"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_94"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_17" x="183.472" text-length="61.056px" y="198.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_21" x="259.472" text-length="61.056px" y="198.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_25" x="335.472" text-length="61.056px" y="198.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_29" x="411.472" text-length="61.056px" y="198.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_30" x="127.172" text-length="8.928px" y="180.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_34" x="109.316" text-length="26.784px" y="132.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_38" x="109.316" text-length="26.784px" y="84.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_42" x="109.316" text-length="26.784px" y="54.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000 L 500.0000,162.0000 L 480.0000,182.0000 L 100.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 120.0000,162.0000 L 500.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 492.0000,166.0000 L 500.0000,162.0000 L 492.0000,158.0000 L 492.0000,166.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 234.0000,162.0000 L 234.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_15"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_16"/><path d=" M 310.0000,162.0000 L 310.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_19"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_20"/><path d=" M 386.0000,162.0000 L 386.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_23"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_24"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_28"/><path d=" M 462.0000,151.9200 L 158.0000,151.9200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 138.0000,172.4000 L 158.0000,152.4000 L 158.9500,152.4000 L 138.9500,172.4000 L 138.0000,172.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_32"/><path d=" M 138.0000,172.4000 L 158.0000,152.4000 L 158.9500,152.4000 L 138.9500,172.4000 L 138.0000,172.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_33"/><path d=" M 462.0000,143.2800 L 158.0000,143.2800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 138.0000,162.8000 L 158.0000,142.8000 L 158.9500,142.8000 L 138.9500,162.8000 L 138.0000,162.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_35"/><path d=" M 138.0000,162.8000 L 158.0000,142.8000 L 158.9500,142.8000 L 138.9500,162.8000 L 138.0000,162.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_36"/><path d=" M 462.0000,133.2000 L 158.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_38"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_39"/><path d=" M 462.0000,123.1200 L 158.0000,123.1200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 138.0000,143.6000 L 158.0000,123.6000 L 158.9500,123.6000 L 138.9500,143.6000 L 138.0000,143.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_41"/><path d=" M 138.0000,143.6000 L 158.0000,123.6000 L 158.9500,123.6000 L 138.9500,143.6000 L 138.0000,143.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_42"/><path d=" M 462.0000,114.4800 L 158.0000,114.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 462.0000,104.4000 L 158.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_48"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_49"/><path d=" M 462.0000,94.3200 L 158.0000,94.3200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 138.0000,114.8000 L 158.0000,94.8000 L 158.9500,94.8000 L 138.9500,114.8000 L 138.0000,114.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 138.0000,114.8000 L 158.0000,94.8000 L 158.9500,94.8000 L 138.9500,114.8000 L 138.0000,114.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_52"/><path d=" M 462.0000,85.6800 L 158.0000,85.6800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 138.0000,105.2000 L 158.0000,85.2000 L 158.9500,85.2000 L 138.9500,105.2000 L 138.0000,105.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 138.0000,105.2000 L 158.0000,85.2000 L 158.9500,85.2000 L 138.9500,105.2000 L 138.0000,105.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_55"/><path d=" M 462.0000,75.6000 L 158.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 462.0000,65.5200 L 158.0000,65.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 462.0000,56.8800 L 158.0000,56.8800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 138.0000,76.4000 L 158.0000,56.4000 L 158.9500,56.4000 L 138.9500,76.4000 L 138.0000,76.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_64"/><path d=" M 138.0000,76.4000 L 158.0000,56.4000 L 158.9500,56.4000 L 138.9500,76.4000 L 138.0000,76.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_65"/><path d=" M 462.0000,46.8000 L 158.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_67"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_68"/><path d=" M 462.0000,36.7200 L 158.0000,36.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 138.0000,57.2000 L 158.0000,37.2000 L 158.9500,37.2000 L 138.9500,57.2000 L 138.0000,57.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 138.0000,57.2000 L 158.0000,37.2000 L 158.9500,37.2000 L 138.9500,57.2000 L 138.0000,57.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 462.0000,28.0800 L 158.0000,28.0800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 138.0000,47.6000 L 158.0000,27.6000 L 158.9500,27.6000 L 138.9500,47.6000 L 138.0000,47.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 138.0000,47.6000 L 158.0000,27.6000 L 158.9500,27.6000 L 138.9500,47.6000 L 138.0000,47.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_74"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_77"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_80"/><path d=" M 148.0000,172.0000 L 148.0000,127.0720 L 224.0000,167.9680 L 224.0000,172.0000 L 148.0000,172.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_81"/><path d=" M 234.0000,162.0000 L 234.0000,157.9680 L 224.0000,167.9680 L 224.0000,172.0000 L 234.0000,162.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_82"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_83"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_84"/><path d=" M 224.0000,172.0000 L 224.0000,167.9680 L 300.0000,109.7920 L 300.0000,172.0000 L 224.0000,172.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_85"/><path d=" M 310.0000,162.0000 L 310.0000,99.7920 L 300.0000,109.7920 L 300.0000,172.0000 L 310.0000,162.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_86"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_87"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_88"/><path d=" M 300.0000,172.0000 L 300.0000,109.7920 L 376.0000,148.9600 L 376.0000,172.0000 L 300.0000,172.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_89"/><path d=" M 386.0000,162.0000 L 386.0000,138.9600 L 376.0000,148.9600 L 376.0000,172.0000 L 386.0000,162.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_90"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_91"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_92"/><path d=" M 376.0000,172.0000 L 376.0000,148.9600 L 452.0000,171.8080 L 452.0000,172.0000 L 376.0000,172.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_93"/><path d=" M 462.0000,162.0000 L 462.0000,161.8080 L 452.0000,171.8080 L 452.0000,172.0000 L 462.0000,162.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_94"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_95"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_96"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_97"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_98"/><path d=" M 138.0000,182.0000 L 138.0000,77.7440 L 214.0000,137.0720 L 214.0000,182.0000 L 138.0000,182.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_99"/><path d=" M 224.0000,172.0000 L 224.0000,127.0720 L 214.0000,137.0720 L 214.0000,182.0000 L 224.0000,172.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_100"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_101"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_102"/><path d=" M 214.0000,182.0000 L 214.0000,137.0720 L 290.0000,124.7840 L 290.0000,182.0000 L 214.0000,182.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_103"/><path d=" M 300.0000,172.0000 L 300.0000,114.7840 L 290.0000,124.7840 L 290.0000,182.0000 L 300.0000,172.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_104"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_105"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_106"/><path d=" M 290.0000,182.0000 L 290.0000,124.7840 L 366.0000,181.0400 L 366.0000,182.0000 L 290.0000,182.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_107"/><path d=" M 376.0000,172.0000 L 376.0000,171.0400 L 366.0000,181.0400 L 366.0000,182.0000 L 376.0000,172.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_108"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_109"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_110"/><path d=" M 366.0000,182.0000 L 366.0000,181.0400 L 442.0000,64.3040 L 442.0000,182.0000 L 366.0000,182.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_111"/><path d=" M 452.0000,172.0000 L 452.0000,54.3040 L 442.0000,64.3040 L 442.0000,182.0000 L 452.0000,172.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_112"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_113"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_114"/><ellipse cx="158" cy="117.072" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_115"/><ellipse cx="234" cy="157.968" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_116"/><ellipse cx="310" cy="99.792" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_117"/><ellipse cx="386" cy="138.96" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_118"/><ellipse cx="462" cy="161.808" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_119"/><ellipse cx="148" cy="67.744" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_120"/><ellipse cx="224" cy="127.072" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_121"/><ellipse cx="300" cy="114.784" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_122"/><ellipse cx="376" cy="171.04" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_123"/><ellipse cx="452" cy="54.304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_124"/><path d=" M 500.0000,162.0000 L 480.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_125"/><path d=" M 480.0000,182.0000 L 100.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_126"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_127"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_128"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_129"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_130"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_17" x="183.472" text-length="61.056px" y="198.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_21" x="259.472" text-length="61.056px" y="198.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_25" x="335.472" text-length="61.056px" y="198.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_29" x="411.472" text-length="61.056px" y="198.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_30" x="127.172" text-length="8.928px" y="180.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_46" x="109.316" text-length="26.784px" y="132.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_62" x="109.316" text-length="26.784px" y="84.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_78" x="109.316" text-length="26.784px" y="54.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartNonFilledAxis.svg b/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartNonFilledAxis.svg
index d60ebdf..1dd1e65 100644
--- a/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartNonFilledAxis.svg
+++ b/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartNonFilledAxis.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000 L 500.0000,162.0000 L 480.0000,182.0000 L 100.0000,182.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_8"/><path d=" M 120.0000,162.0000 L 500.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 492.0000,166.0000 L 500.0000,162.0000 L 492.0000,158.0000 L 492.0000,166.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_11"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 234.0000,162.0000 L 234.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_15"/><path d=" M 310.0000,162.0000 L 310.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_18"/><path d=" M 386.0000,162.0000 L 386.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_21"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_24"/><path d=" M 462.0000,114.4800 L 158.0000,114.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_28"/><path d=" M 462.0000,65.5200 L 158.0000,65.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_31"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_34"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_36"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_37"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_38"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_39"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_40"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_41"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_42"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_43"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_46"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_47"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_48"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_49"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_50"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_51"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_52"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_53"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_55"/><ellipse cx="158" cy="117.072" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="234" cy="157.968" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><ellipse cx="310" cy="99.792" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_58"/><ellipse cx="386" cy="138.96" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_59"/><ellipse cx="462" cy="161.808" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_60"/><ellipse cx="148" cy="67.744" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_61"/><ellipse cx="224" cy="127.072" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_62"/><ellipse cx="300" cy="114.784" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_63"/><ellipse cx="376" cy="171.04" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_64"/><ellipse cx="452" cy="54.304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_65"/><path d=" M 500.0000,162.0000 L 480.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 480.0000,182.0000 L 100.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_16" x="183.472" text-length="61.056px" y="198.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_19" x="259.472" text-length="61.056px" y="198.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_22" x="335.472" text-length="61.056px" y="198.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_25" x="411.472" text-length="61.056px" y="198.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_26" x="127.172" text-length="8.928px" y="180.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_29" x="109.316" text-length="26.784px" y="132.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_32" x="109.316" text-length="26.784px" y="84.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_35" x="109.316" text-length="26.784px" y="54.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000 L 500.0000,162.0000 L 480.0000,182.0000 L 100.0000,182.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_8"/><path d=" M 120.0000,162.0000 L 500.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 492.0000,166.0000 L 500.0000,162.0000 L 492.0000,158.0000 L 492.0000,166.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_11"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 234.0000,162.0000 L 234.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_15"/><path d=" M 310.0000,162.0000 L 310.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_18"/><path d=" M 386.0000,162.0000 L 386.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_21"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_24"/><path d=" M 462.0000,151.9200 L 158.0000,151.9200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 138.0000,172.4000 L 158.0000,152.4000 L 158.9500,152.4000 L 138.9500,172.4000 L 138.0000,172.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_28"/><path d=" M 462.0000,143.2800 L 158.0000,143.2800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 138.0000,162.8000 L 158.0000,142.8000 L 158.9500,142.8000 L 138.9500,162.8000 L 138.0000,162.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_30"/><path d=" M 462.0000,133.2000 L 158.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_32"/><path d=" M 462.0000,123.1200 L 158.0000,123.1200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 138.0000,143.6000 L 158.0000,123.6000 L 158.9500,123.6000 L 138.9500,143.6000 L 138.0000,143.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_34"/><path d=" M 462.0000,114.4800 L 158.0000,114.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_36"/><path d=" M 462.0000,104.4000 L 158.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_39"/><path d=" M 462.0000,94.3200 L 158.0000,94.3200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 138.0000,114.8000 L 158.0000,94.8000 L 158.9500,94.8000 L 138.9500,114.8000 L 138.0000,114.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_41"/><path d=" M 462.0000,85.6800 L 158.0000,85.6800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 138.0000,105.2000 L 158.0000,85.2000 L 158.9500,85.2000 L 138.9500,105.2000 L 138.0000,105.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_43"/><path d=" M 462.0000,75.6000 L 158.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 462.0000,65.5200 L 158.0000,65.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_47"/><path d=" M 462.0000,56.8800 L 158.0000,56.8800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 138.0000,76.4000 L 158.0000,56.4000 L 158.9500,56.4000 L 138.9500,76.4000 L 138.0000,76.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_50"/><path d=" M 462.0000,46.8000 L 158.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_52"/><path d=" M 462.0000,36.7200 L 158.0000,36.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 138.0000,57.2000 L 158.0000,37.2000 L 158.9500,37.2000 L 138.9500,57.2000 L 138.0000,57.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_54"/><path d=" M 462.0000,28.0800 L 158.0000,28.0800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 138.0000,47.6000 L 158.0000,27.6000 L 158.9500,27.6000 L 138.9500,47.6000 L 138.0000,47.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_56"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_62"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_63"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_64"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_65"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_66"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_67"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_68"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_69"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_72"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_73"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_74"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_75"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_77"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_78"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_79"/><ellipse cx="158" cy="117.072" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="234" cy="157.968" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="310" cy="99.792" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="386" cy="138.96" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="462" cy="161.808" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="148" cy="67.744" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><ellipse cx="224" cy="127.072" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_86"/><ellipse cx="300" cy="114.784" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_87"/><ellipse cx="376" cy="171.04" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_88"/><ellipse cx="452" cy="54.304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_89"/><path d=" M 500.0000,162.0000 L 480.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_90"/><path d=" M 480.0000,182.0000 L 100.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_91"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_92"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_93"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_94"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_95"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_16" x="183.472" text-length="61.056px" y="198.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_19" x="259.472" text-length="61.056px" y="198.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_22" x="335.472" text-length="61.056px" y="198.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_25" x="411.472" text-length="61.056px" y="198.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_26" x="127.172" text-length="8.928px" y="180.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_37" x="109.316" text-length="26.784px" y="132.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_48" x="109.316" text-length="26.784px" y="84.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_59" x="109.316" text-length="26.784px" y="54.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartNonFilledGrid.svg b/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartNonFilledGrid.svg
index 05aba6f..020ee15 100644
--- a/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartNonFilledGrid.svg
+++ b/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartNonFilledGrid.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000 L 500.0000,162.0000 L 480.0000,182.0000 L 100.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 120.0000,162.0000 L 500.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 492.0000,166.0000 L 500.0000,162.0000 L 492.0000,158.0000 L 492.0000,166.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 234.0000,18.0000 L 214.0000,38.0000 L 214.0000,182.0000 L 234.0000,162.0000 L 234.0000,18.0000 z " style="fill: #888a85; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 234.0000,162.0000 L 234.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_16"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_17"/><path d=" M 310.0000,18.0000 L 290.0000,38.0000 L 290.0000,182.0000 L 310.0000,162.0000 L 310.0000,18.0000 z " style="fill: #888a85; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_19"/><path d=" M 310.0000,162.0000 L 310.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_21"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_22"/><path d=" M 386.0000,18.0000 L 366.0000,38.0000 L 366.0000,182.0000 L 386.0000,162.0000 L 386.0000,18.0000 z " style="fill: #888a85; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 386.0000,162.0000 L 386.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_26"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_27"/><path d=" M 462.0000,18.0000 L 442.0000,38.0000 L 442.0000,182.0000 L 462.0000,162.0000 L 462.0000,18.0000 z " style="fill: #888a85; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_29"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_31"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_32"/><path d=" M 158.0000,114.4800 L 138.0000,134.4800 L 442.0000,134.4800 L 462.0000,114.4800 L 158.0000,114.4800 z " style="fill: #888a85; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_35"/><path d=" M 462.0000,114.4800 L 158.0000,114.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_37"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_38"/><path d=" M 158.0000,65.5200 L 138.0000,85.5200 L 442.0000,85.5200 L 462.0000,65.5200 L 158.0000,65.5200 z " style="fill: #888a85; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_40"/><path d=" M 462.0000,65.5200 L 158.0000,65.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_42"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_43"/><path d=" M 158.0000,18.0000 L 138.0000,38.0000 L 442.0000,38.0000 L 462.0000,18.0000 L 158.0000,18.0000 z " style="fill: #888a85; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_45"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_47"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_48"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_50"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_51"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_52"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_53"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_55"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_56"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_57"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_58"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_59"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_62"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_63"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_64"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_65"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_66"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_67"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_68"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_69"/><ellipse cx="158" cy="117.072" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_70"/><ellipse cx="234" cy="157.968" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_71"/><ellipse cx="310" cy="99.792" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_72"/><ellipse cx="386" cy="138.96" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_73"/><ellipse cx="462" cy="161.808" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_74"/><ellipse cx="148" cy="67.744" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_75"/><ellipse cx="224" cy="127.072" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_76"/><ellipse cx="300" cy="114.784" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="376" cy="171.04" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="452" cy="54.304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><path d=" M 500.0000,162.0000 L 480.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_80"/><path d=" M 480.0000,182.0000 L 100.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_81"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_82"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_83"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_84"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_85"/><path d=" M 214.0000,38.0000 L 214.0000,182.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_86"/><path d=" M 214.0000,182.0000 L 234.0000,162.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_87"/><path d=" M 234.0000,18.0000 L 214.0000,38.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_88"/><path d=" M 290.0000,38.0000 L 290.0000,182.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_89"/><path d=" M 290.0000,182.0000 L 310.0000,162.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_90"/><path d=" M 310.0000,18.0000 L 290.0000,38.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_91"/><path d=" M 366.0000,38.0000 L 366.0000,182.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_92"/><path d=" M 366.0000,182.0000 L 386.0000,162.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_93"/><path d=" M 386.0000,18.0000 L 366.0000,38.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_94"/><path d=" M 442.0000,38.0000 L 442.0000,182.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_95"/><path d=" M 442.0000,182.0000 L 462.0000,162.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_96"/><path d=" M 462.0000,18.0000 L 442.0000,38.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_97"/><path d=" M 138.0000,134.4800 L 442.0000,134.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_98"/><path d=" M 442.0000,134.4800 L 462.0000,114.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_99"/><path d=" M 158.0000,114.4800 L 138.0000,134.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_100"/><path d=" M 138.0000,85.5200 L 442.0000,85.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_101"/><path d=" M 442.0000,85.5200 L 462.0000,65.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_102"/><path d=" M 158.0000,65.5200 L 138.0000,85.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_103"/><path d=" M 138.0000,38.0000 L 442.0000,38.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_104"/><path d=" M 442.0000,38.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_105"/><path d=" M 158.0000,18.0000 L 138.0000,38.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_106"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_18" x="183.472" text-length="61.056px" y="198.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_23" x="259.472" text-length="61.056px" y="198.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_28" x="335.472" text-length="61.056px" y="198.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_33" x="411.472" text-length="61.056px" y="198.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_34" x="127.172" text-length="8.928px" y="180.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_39" x="109.316" text-length="26.784px" y="132.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_44" x="109.316" text-length="26.784px" y="84.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_49" x="109.316" text-length="26.784px" y="54.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000 L 500.0000,162.0000 L 480.0000,182.0000 L 100.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 120.0000,162.0000 L 500.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 492.0000,166.0000 L 500.0000,162.0000 L 492.0000,158.0000 L 492.0000,166.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 234.0000,18.0000 L 214.0000,38.0000 L 214.0000,182.0000 L 234.0000,162.0000 L 234.0000,18.0000 z " style="fill: #888a85; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 234.0000,162.0000 L 234.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_16"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_17"/><path d=" M 310.0000,18.0000 L 290.0000,38.0000 L 290.0000,182.0000 L 310.0000,162.0000 L 310.0000,18.0000 z " style="fill: #888a85; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_19"/><path d=" M 310.0000,162.0000 L 310.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_21"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_22"/><path d=" M 386.0000,18.0000 L 366.0000,38.0000 L 366.0000,182.0000 L 386.0000,162.0000 L 386.0000,18.0000 z " style="fill: #888a85; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 386.0000,162.0000 L 386.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_26"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_27"/><path d=" M 462.0000,18.0000 L 442.0000,38.0000 L 442.0000,182.0000 L 462.0000,162.0000 L 462.0000,18.0000 z " style="fill: #888a85; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_29"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_31"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_32"/><path d=" M 158.0000,151.9200 L 138.0000,171.9200 L 442.0000,171.9200 L 462.0000,151.9200 L 158.0000,151.9200 z " style="fill: #888a85; fill-opacity: 0.47; stroke: none;" id="ezcGraphPolygon_35"/><path d=" M 462.0000,151.9200 L 158.0000,151.9200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 138.0000,172.4000 L 158.0000,152.4000 L 158.9500,152.4000 L 138.9500,172.4000 L 138.0000,172.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_37"/><path d=" M 138.0000,172.4000 L 158.0000,152.4000 L 158.9500,152.4000 L 138.9500,172.4000 L 138.0000,172.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_38"/><path d=" M 158.0000,143.2800 L 138.0000,163.2800 L 442.0000,163.2800 L 462.0000,143.2800 L 158.0000,143.2800 z " style="fill: #888a85; fill-opacity: 0.47; stroke: none;" id="ezcGraphPolygon_39"/><path d=" M 462.0000,143.2800 L 158.0000,143.2800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 138.0000,162.8000 L 158.0000,142.8000 L 158.9500,142.8000 L 138.9500,162.8000 L 138.0000,162.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_41"/><path d=" M 138.0000,162.8000 L 158.0000,142.8000 L 158.9500,142.8000 L 138.9500,162.8000 L 138.0000,162.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_42"/><path d=" M 158.0000,133.2000 L 138.0000,153.2000 L 442.0000,153.2000 L 462.0000,133.2000 L 158.0000,133.2000 z " style="fill: #888a85; fill-opacity: 0.47; stroke: none;" id="ezcGraphPolygon_43"/><path d=" M 462.0000,133.2000 L 158.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_45"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_46"/><path d=" M 158.0000,123.1200 L 138.0000,143.1200 L 442.0000,143.1200 L 462.0000,123.1200 L 158.0000,123.1200 z " style="fill: #888a85; fill-opacity: 0.47; stroke: none;" id="ezcGraphPolygon_47"/><path d=" M 462.0000,123.1200 L 158.0000,123.1200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 138.0000,143.6000 L 158.0000,123.6000 L 158.9500,123.6000 L 138.9500,143.6000 L 138.0000,143.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_49"/><path d=" M 138.0000,143.6000 L 158.0000,123.6000 L 158.9500,123.6000 L 138.9500,143.6000 L 138.0000,143.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_50"/><path d=" M 158.0000,114.4800 L 138.0000,134.4800 L 442.0000,134.4800 L 462.0000,114.4800 L 158.0000,114.4800 z " style="fill: #888a85; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 462.0000,114.4800 L 158.0000,114.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_53"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_54"/><path d=" M 158.0000,104.4000 L 138.0000,124.4000 L 442.0000,124.4000 L 462.0000,104.4000 L 158.0000,104.4000 z " style="fill: #888a85; fill-opacity: 0.47; stroke: none;" id="ezcGraphPolygon_56"/><path d=" M 462.0000,104.4000 L 158.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_58"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_59"/><path d=" M 158.0000,94.3200 L 138.0000,114.3200 L 442.0000,114.3200 L 462.0000,94.3200 L 158.0000,94.3200 z " style="fill: #888a85; fill-opacity: 0.47; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 462.0000,94.3200 L 158.0000,94.3200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 138.0000,114.8000 L 158.0000,94.8000 L 158.9500,94.8000 L 138.9500,114.8000 L 138.0000,114.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_62"/><path d=" M 138.0000,114.8000 L 158.0000,94.8000 L 158.9500,94.8000 L 138.9500,114.8000 L 138.0000,114.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_63"/><path d=" M 158.0000,85.6800 L 138.0000,105.6800 L 442.0000,105.6800 L 462.0000,85.6800 L 158.0000,85.6800 z " style="fill: #888a85; fill-opacity: 0.47; stroke: none;" id="ezcGraphPolygon_64"/><path d=" M 462.0000,85.6800 L 158.0000,85.6800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 138.0000,105.2000 L 158.0000,85.2000 L 158.9500,85.2000 L 138.9500,105.2000 L 138.0000,105.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_66"/><path d=" M 138.0000,105.2000 L 158.0000,85.2000 L 158.9500,85.2000 L 138.9500,105.2000 L 138.0000,105.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_67"/><path d=" M 158.0000,75.6000 L 138.0000,95.6000 L 442.0000,95.6000 L 462.0000,75.6000 L 158.0000,75.6000 z " style="fill: #888a85; fill-opacity: 0.47; stroke: none;" id="ezcGraphPolygon_68"/><path d=" M 462.0000,75.6000 L 158.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 158.0000,65.5200 L 138.0000,85.5200 L 442.0000,85.5200 L 462.0000,65.5200 L 158.0000,65.5200 z " style="fill: #888a85; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_72"/><path d=" M 462.0000,65.5200 L 158.0000,65.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_74"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_75"/><path d=" M 158.0000,56.8800 L 138.0000,76.8800 L 442.0000,76.8800 L 462.0000,56.8800 L 158.0000,56.8800 z " style="fill: #888a85; fill-opacity: 0.47; stroke: none;" id="ezcGraphPolygon_77"/><path d=" M 462.0000,56.8800 L 158.0000,56.8800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 138.0000,76.4000 L 158.0000,56.4000 L 158.9500,56.4000 L 138.9500,76.4000 L 138.0000,76.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 138.0000,76.4000 L 158.0000,56.4000 L 158.9500,56.4000 L 138.9500,76.4000 L 138.0000,76.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_80"/><path d=" M 158.0000,46.8000 L 138.0000,66.8000 L 442.0000,66.8000 L 462.0000,46.8000 L 158.0000,46.8000 z " style="fill: #888a85; fill-opacity: 0.47; stroke: none;" id="ezcGraphPolygon_81"/><path d=" M 462.0000,46.8000 L 158.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_82"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_83"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_84"/><path d=" M 158.0000,36.7200 L 138.0000,56.7200 L 442.0000,56.7200 L 462.0000,36.7200 L 158.0000,36.7200 z " style="fill: #888a85; fill-opacity: 0.47; stroke: none;" id="ezcGraphPolygon_85"/><path d=" M 462.0000,36.7200 L 158.0000,36.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_86"/><path d=" M 138.0000,57.2000 L 158.0000,37.2000 L 158.9500,37.2000 L 138.9500,57.2000 L 138.0000,57.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_87"/><path d=" M 138.0000,57.2000 L 158.0000,37.2000 L 158.9500,37.2000 L 138.9500,57.2000 L 138.0000,57.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_88"/><path d=" M 158.0000,28.0800 L 138.0000,48.0800 L 442.0000,48.0800 L 462.0000,28.0800 L 158.0000,28.0800 z " style="fill: #888a85; fill-opacity: 0.47; stroke: none;" id="ezcGraphPolygon_89"/><path d=" M 462.0000,28.0800 L 158.0000,28.0800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_90"/><path d=" M 138.0000,47.6000 L 158.0000,27.6000 L 158.9500,27.6000 L 138.9500,47.6000 L 138.0000,47.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_91"/><path d=" M 138.0000,47.6000 L 158.0000,27.6000 L 158.9500,27.6000 L 138.9500,47.6000 L 138.0000,47.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_92"/><path d=" M 158.0000,18.0000 L 138.0000,38.0000 L 442.0000,38.0000 L 462.0000,18.0000 L 158.0000,18.0000 z " style="fill: #888a85; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_93"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_94"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_95"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_96"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_98"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_99"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_100"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_101"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_102"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_103"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_104"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_105"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_106"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_107"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_108"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_109"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_110"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_111"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_112"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_113"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_114"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_115"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_116"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_117"/><ellipse cx="158" cy="117.072" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_118"/><ellipse cx="234" cy="157.968" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_119"/><ellipse cx="310" cy="99.792" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_120"/><ellipse cx="386" cy="138.96" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_121"/><ellipse cx="462" cy="161.808" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_122"/><ellipse cx="148" cy="67.744" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_123"/><ellipse cx="224" cy="127.072" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_124"/><ellipse cx="300" cy="114.784" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_125"/><ellipse cx="376" cy="171.04" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_126"/><ellipse cx="452" cy="54.304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_127"/><path d=" M 500.0000,162.0000 L 480.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_128"/><path d=" M 480.0000,182.0000 L 100.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_129"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_130"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_131"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_132"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_133"/><path d=" M 214.0000,38.0000 L 214.0000,182.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_134"/><path d=" M 214.0000,182.0000 L 234.0000,162.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_135"/><path d=" M 234.0000,18.0000 L 214.0000,38.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_136"/><path d=" M 290.0000,38.0000 L 290.0000,182.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_137"/><path d=" M 290.0000,182.0000 L 310.0000,162.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_138"/><path d=" M 310.0000,18.0000 L 290.0000,38.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_139"/><path d=" M 366.0000,38.0000 L 366.0000,182.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_140"/><path d=" M 366.0000,182.0000 L 386.0000,162.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_141"/><path d=" M 386.0000,18.0000 L 366.0000,38.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_142"/><path d=" M 442.0000,38.0000 L 442.0000,182.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_143"/><path d=" M 442.0000,182.0000 L 462.0000,162.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_144"/><path d=" M 462.0000,18.0000 L 442.0000,38.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_145"/><path d=" M 138.0000,171.9200 L 442.0000,171.9200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_146"/><path d=" M 442.0000,171.9200 L 462.0000,151.9200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_147"/><path d=" M 158.0000,151.9200 L 138.0000,171.9200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_148"/><path d=" M 138.0000,163.2800 L 442.0000,163.2800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_149"/><path d=" M 442.0000,163.2800 L 462.0000,143.2800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_150"/><path d=" M 158.0000,143.2800 L 138.0000,163.2800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_151"/><path d=" M 138.0000,153.2000 L 442.0000,153.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_152"/><path d=" M 442.0000,153.2000 L 462.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_153"/><path d=" M 158.0000,133.2000 L 138.0000,153.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_154"/><path d=" M 138.0000,143.1200 L 442.0000,143.1200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_155"/><path d=" M 442.0000,143.1200 L 462.0000,123.1200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_156"/><path d=" M 158.0000,123.1200 L 138.0000,143.1200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_157"/><path d=" M 138.0000,134.4800 L 442.0000,134.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_158"/><path d=" M 442.0000,134.4800 L 462.0000,114.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_159"/><path d=" M 158.0000,114.4800 L 138.0000,134.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_160"/><path d=" M 138.0000,124.4000 L 442.0000,124.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_161"/><path d=" M 442.0000,124.4000 L 462.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_162"/><path d=" M 158.0000,104.4000 L 138.0000,124.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_163"/><path d=" M 138.0000,114.3200 L 442.0000,114.3200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_164"/><path d=" M 442.0000,114.3200 L 462.0000,94.3200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_165"/><path d=" M 158.0000,94.3200 L 138.0000,114.3200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_166"/><path d=" M 138.0000,105.6800 L 442.0000,105.6800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_167"/><path d=" M 442.0000,105.6800 L 462.0000,85.6800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_168"/><path d=" M 158.0000,85.6800 L 138.0000,105.6800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_169"/><path d=" M 138.0000,95.6000 L 442.0000,95.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_170"/><path d=" M 442.0000,95.6000 L 462.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_171"/><path d=" M 158.0000,75.6000 L 138.0000,95.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_172"/><path d=" M 138.0000,85.5200 L 442.0000,85.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_173"/><path d=" M 442.0000,85.5200 L 462.0000,65.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_174"/><path d=" M 158.0000,65.5200 L 138.0000,85.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_175"/><path d=" M 138.0000,76.8800 L 442.0000,76.8800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_176"/><path d=" M 442.0000,76.8800 L 462.0000,56.8800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_177"/><path d=" M 158.0000,56.8800 L 138.0000,76.8800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_178"/><path d=" M 138.0000,66.8000 L 442.0000,66.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_179"/><path d=" M 442.0000,66.8000 L 462.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_180"/><path d=" M 158.0000,46.8000 L 138.0000,66.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_181"/><path d=" M 138.0000,56.7200 L 442.0000,56.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_182"/><path d=" M 442.0000,56.7200 L 462.0000,36.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_183"/><path d=" M 158.0000,36.7200 L 138.0000,56.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_184"/><path d=" M 138.0000,48.0800 L 442.0000,48.0800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_185"/><path d=" M 442.0000,48.0800 L 462.0000,28.0800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_186"/><path d=" M 158.0000,28.0800 L 138.0000,48.0800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_187"/><path d=" M 138.0000,38.0000 L 442.0000,38.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_188"/><path d=" M 442.0000,38.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_189"/><path d=" M 158.0000,18.0000 L 138.0000,38.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_190"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_18" x="183.472" text-length="61.056px" y="198.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_23" x="259.472" text-length="61.056px" y="198.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_28" x="335.472" text-length="61.056px" y="198.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_33" x="411.472" text-length="61.056px" y="198.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_34" x="127.172" text-length="8.928px" y="180.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_55" x="109.316" text-length="26.784px" y="132.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_76" x="109.316" text-length="26.784px" y="84.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_97" x="109.316" text-length="26.784px" y="54.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartWithAxisIntersection.svg b/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartWithAxisIntersection.svg
index e72dca6..c65ff39 100644
--- a/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartWithAxisIntersection.svg
+++ b/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartWithAxisIntersection.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,146.0000 L 120.0000,126.0000 L 500.0000,126.0000 L 480.0000,146.0000 L 100.0000,146.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 120.0000,126.0000 L 500.0000,126.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 492.0000,130.0000 L 500.0000,126.0000 L 492.0000,122.0000 L 492.0000,130.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 234.0000,162.0000 L 234.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 214.0000,143.3000 L 234.0000,123.3000 L 234.0000,126.0000 L 214.0000,146.0000 L 214.0000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_15"/><path d=" M 214.0000,143.3000 L 234.0000,123.3000 L 234.0000,126.0000 L 214.0000,146.0000 L 214.0000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_16"/><path d=" M 310.0000,162.0000 L 310.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 290.0000,143.3000 L 310.0000,123.3000 L 310.0000,126.0000 L 290.0000,146.0000 L 290.0000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_19"/><path d=" M 290.0000,143.3000 L 310.0000,123.3000 L 310.0000,126.0000 L 290.0000,146.0000 L 290.0000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_20"/><path d=" M 386.0000,162.0000 L 386.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 366.0000,143.3000 L 386.0000,123.3000 L 386.0000,126.0000 L 366.0000,146.0000 L 366.0000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_23"/><path d=" M 366.0000,143.3000 L 386.0000,123.3000 L 386.0000,126.0000 L 366.0000,146.0000 L 366.0000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_24"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 442.0000,143.3000 L 462.0000,123.3000 L 462.0000,126.0000 L 442.0000,146.0000 L 442.0000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 442.0000,143.3000 L 462.0000,123.3000 L 462.0000,126.0000 L 442.0000,146.0000 L 442.0000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_28"/><path d=" M 462.0000,162.0000 L 158.0000,162.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 138.0000,182.0000 L 158.0000,162.0000 L 160.8500,162.0000 L 140.8500,182.0000 L 138.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_31"/><path d=" M 138.0000,182.0000 L 158.0000,162.0000 L 160.8500,162.0000 L 140.8500,182.0000 L 138.0000,182.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_32"/><path d=" M 462.0000,90.0000 L 158.0000,90.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 138.0000,110.0000 L 158.0000,90.0000 L 160.8500,90.0000 L 140.8500,110.0000 L 138.0000,110.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_36"/><path d=" M 138.0000,110.0000 L 158.0000,90.0000 L 160.8500,90.0000 L 140.8500,110.0000 L 138.0000,110.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_37"/><path d=" M 462.0000,54.0000 L 158.0000,54.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 138.0000,74.0000 L 158.0000,54.0000 L 160.8500,54.0000 L 140.8500,74.0000 L 138.0000,74.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_40"/><path d=" M 138.0000,74.0000 L 158.0000,54.0000 L 160.8500,54.0000 L 140.8500,74.0000 L 138.0000,74.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_41"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 158.0000,92.3040 L 148.0000,102.3040 L 148.0000,102.3040 L 158.0000,92.3040 L 158.0000,92.3040 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_47"/><path d=" M 158.0000,92.3040 L 148.0000,102.3040 L 148.0000,102.3040 L 158.0000,92.3040 L 158.0000,92.3040 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_48"/><path d=" M 194.1922,136.0000 L 148.0000,136.0000 L 148.0000,102.3040 L 194.1922,136.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_49"/><path d=" M 194.1922,136.0000 L 224.0000,136.0000 L 224.0000,157.7440 L 194.1922,136.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_50"/><path d=" M 234.0000,126.0000 L 234.0000,147.7440 L 224.0000,157.7440 L 224.0000,136.0000 L 234.0000,126.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 158.0000,92.3040 L 148.0000,102.3040 L 224.0000,157.7440 L 234.0000,147.7440 L 158.0000,92.3040 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_52"/><path d=" M 158.0000,92.3040 L 148.0000,102.3040 L 224.0000,157.7440 L 234.0000,147.7440 L 158.0000,92.3040 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_53"/><path d=" M 248.1600,136.0000 L 224.0000,136.0000 L 224.0000,157.7440 L 248.1600,136.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 248.1600,136.0000 L 300.0000,136.0000 L 300.0000,89.3440 L 248.1600,136.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_55"/><path d=" M 310.0000,126.0000 L 310.0000,79.3440 L 300.0000,89.3440 L 300.0000,136.0000 L 310.0000,126.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_56"/><path d=" M 234.0000,147.7440 L 224.0000,157.7440 L 300.0000,89.3440 L 310.0000,79.3440 L 234.0000,147.7440 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 234.0000,147.7440 L 224.0000,157.7440 L 300.0000,89.3440 L 310.0000,79.3440 L 234.0000,147.7440 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 355.4595,136.0000 L 300.0000,136.0000 L 300.0000,89.3440 L 355.4595,136.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_59"/><path d=" M 355.4595,136.0000 L 376.0000,136.0000 L 376.0000,153.2800 L 355.4595,136.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 386.0000,126.0000 L 386.0000,143.2800 L 376.0000,153.2800 L 376.0000,136.0000 L 386.0000,126.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_61"/><path d=" M 310.0000,79.3440 L 300.0000,89.3440 L 376.0000,153.2800 L 386.0000,143.2800 L 310.0000,79.3440 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_62"/><path d=" M 310.0000,79.3440 L 300.0000,89.3440 L 376.0000,153.2800 L 386.0000,143.2800 L 310.0000,79.3440 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_63"/><path d=" M 451.3719,136.0000 L 376.0000,136.0000 L 376.0000,153.2800 L 451.3719,136.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_64"/><path d=" M 451.3719,136.0000 L 452.0000,136.0000 L 452.0000,135.8560 L 451.3719,136.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_65"/><path d=" M 462.0000,126.0000 L 462.0000,125.8560 L 452.0000,135.8560 L 452.0000,136.0000 L 462.0000,126.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_66"/><path d=" M 386.0000,143.2800 L 376.0000,153.2800 L 452.0000,135.8560 L 462.0000,125.8560 L 386.0000,143.2800 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_67"/><path d=" M 386.0000,143.2800 L 376.0000,153.2800 L 452.0000,135.8560 L 462.0000,125.8560 L 386.0000,143.2800 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_68"/><path d=" M 148.0000,57.8080 L 138.0000,67.8080 L 138.0000,67.8080 L 148.0000,57.8080 L 148.0000,57.8080 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_69"/><path d=" M 148.0000,57.8080 L 138.0000,67.8080 L 138.0000,67.8080 L 148.0000,57.8080 L 148.0000,57.8080 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_70"/><path d=" M 138.0000,146.0000 L 138.0000,67.8080 L 214.0000,112.3040 L 214.0000,146.0000 L 138.0000,146.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_71"/><path d=" M 224.0000,136.0000 L 224.0000,102.3040 L 214.0000,112.3040 L 214.0000,146.0000 L 224.0000,136.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_72"/><path d=" M 148.0000,57.8080 L 138.0000,67.8080 L 214.0000,112.3040 L 224.0000,102.3040 L 148.0000,57.8080 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 148.0000,57.8080 L 138.0000,67.8080 L 214.0000,112.3040 L 224.0000,102.3040 L 148.0000,57.8080 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_74"/><path d=" M 214.0000,146.0000 L 214.0000,112.3040 L 290.0000,103.0880 L 290.0000,146.0000 L 214.0000,146.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_75"/><path d=" M 300.0000,136.0000 L 300.0000,93.0880 L 290.0000,103.0880 L 290.0000,146.0000 L 300.0000,136.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 224.0000,102.3040 L 214.0000,112.3040 L 290.0000,103.0880 L 300.0000,93.0880 L 224.0000,102.3040 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_77"/><path d=" M 224.0000,102.3040 L 214.0000,112.3040 L 290.0000,103.0880 L 300.0000,93.0880 L 224.0000,102.3040 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_78"/><path d=" M 364.7459,146.0000 L 290.0000,146.0000 L 290.0000,103.0880 L 364.7459,146.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 364.7459,146.0000 L 366.0000,146.0000 L 366.0000,146.7200 L 364.7459,146.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_80"/><path d=" M 376.0000,136.0000 L 376.0000,136.7200 L 366.0000,146.7200 L 366.0000,146.0000 L 376.0000,136.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_81"/><path d=" M 300.0000,93.0880 L 290.0000,103.0880 L 366.0000,146.7200 L 376.0000,136.7200 L 300.0000,93.0880 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_82"/><path d=" M 300.0000,93.0880 L 290.0000,103.0880 L 366.0000,146.7200 L 376.0000,136.7200 L 300.0000,93.0880 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_83"/><path d=" M 366.0000,146.0000 L 366.0000,146.7200 L 442.0000,163.8560 L 442.0000,146.0000 L 366.0000,146.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_84"/><path d=" M 452.0000,136.0000 L 452.0000,153.8560 L 442.0000,163.8560 L 442.0000,146.0000 L 452.0000,136.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_85"/><path d=" M 376.0000,136.7200 L 366.0000,146.7200 L 442.0000,163.8560 L 452.0000,153.8560 L 376.0000,136.7200 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_86"/><path d=" M 376.0000,136.7200 L 366.0000,146.7200 L 442.0000,163.8560 L 452.0000,153.8560 L 376.0000,136.7200 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_87"/><ellipse cx="158" cy="92.304" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_88"/><ellipse cx="234" cy="147.744" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_89"/><ellipse cx="310" cy="79.344" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_90"/><ellipse cx="386" cy="143.28" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_91"/><ellipse cx="462" cy="125.856" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_92"/><ellipse cx="148" cy="57.808" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_93"/><ellipse cx="224" cy="102.304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_94"/><ellipse cx="300" cy="93.088" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_95"/><ellipse cx="376" cy="136.72" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_96"/><ellipse cx="452" cy="153.856" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_97"/><path d=" M 500.0000,126.0000 L 480.0000,146.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_98"/><path d=" M 480.0000,146.0000 L 100.0000,146.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_99"/><path d=" M 100.0000,146.0000 L 120.0000,126.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_100"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_101"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_102"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_103"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_17" x="185.592" text-length="56.816px" y="161.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_21" x="261.592" text-length="56.816px" y="161.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_25" x="337.592" text-length="56.816px" y="161.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_29" x="413.592" text-length="56.816px" y="161.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_33" x="102.868" text-length="33.232px" y="180.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-250</text><text id="ezcGraphTextBox_34" x="127.792" text-length="8.308px" y="144.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_38" x="111.176" text-length="24.924px" y="108.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_42" x="111.176" text-length="24.924px" y="72.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_46" x="111.176" text-length="24.924px" y="53.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,146.0000 L 120.0000,126.0000 L 500.0000,126.0000 L 480.0000,146.0000 L 100.0000,146.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 120.0000,126.0000 L 500.0000,126.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 492.0000,130.0000 L 500.0000,126.0000 L 492.0000,122.0000 L 492.0000,130.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 234.0000,162.0000 L 234.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 214.0000,143.3000 L 234.0000,123.3000 L 234.0000,126.0000 L 214.0000,146.0000 L 214.0000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_15"/><path d=" M 214.0000,143.3000 L 234.0000,123.3000 L 234.0000,126.0000 L 214.0000,146.0000 L 214.0000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_16"/><path d=" M 310.0000,162.0000 L 310.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 290.0000,143.3000 L 310.0000,123.3000 L 310.0000,126.0000 L 290.0000,146.0000 L 290.0000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_19"/><path d=" M 290.0000,143.3000 L 310.0000,123.3000 L 310.0000,126.0000 L 290.0000,146.0000 L 290.0000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_20"/><path d=" M 386.0000,162.0000 L 386.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 366.0000,143.3000 L 386.0000,123.3000 L 386.0000,126.0000 L 366.0000,146.0000 L 366.0000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_23"/><path d=" M 366.0000,143.3000 L 386.0000,123.3000 L 386.0000,126.0000 L 366.0000,146.0000 L 366.0000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_24"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 442.0000,143.3000 L 462.0000,123.3000 L 462.0000,126.0000 L 442.0000,146.0000 L 442.0000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 442.0000,143.3000 L 462.0000,123.3000 L 462.0000,126.0000 L 442.0000,146.0000 L 442.0000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_28"/><path d=" M 462.0000,162.0000 L 158.0000,162.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 138.0000,182.0000 L 158.0000,162.0000 L 160.8500,162.0000 L 140.8500,182.0000 L 138.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_31"/><path d=" M 138.0000,182.0000 L 158.0000,162.0000 L 160.8500,162.0000 L 140.8500,182.0000 L 138.0000,182.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_32"/><path d=" M 462.0000,154.8000 L 158.0000,154.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 138.0000,174.8000 L 158.0000,154.8000 L 158.9500,154.8000 L 138.9500,174.8000 L 138.0000,174.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_35"/><path d=" M 138.0000,174.8000 L 158.0000,154.8000 L 158.9500,154.8000 L 138.9500,174.8000 L 138.0000,174.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_36"/><path d=" M 462.0000,147.6000 L 158.0000,147.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 138.0000,167.6000 L 158.0000,147.6000 L 158.9500,147.6000 L 138.9500,167.6000 L 138.0000,167.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_38"/><path d=" M 138.0000,167.6000 L 158.0000,147.6000 L 158.9500,147.6000 L 138.9500,167.6000 L 138.0000,167.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_39"/><path d=" M 462.0000,140.4000 L 158.0000,140.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 138.0000,160.4000 L 158.0000,140.4000 L 158.9500,140.4000 L 138.9500,160.4000 L 138.0000,160.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_41"/><path d=" M 138.0000,160.4000 L 158.0000,140.4000 L 158.9500,140.4000 L 138.9500,160.4000 L 138.0000,160.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_42"/><path d=" M 462.0000,133.2000 L 158.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 462.0000,118.8000 L 158.0000,118.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 138.0000,138.8000 L 158.0000,118.8000 L 158.9500,118.8000 L 138.9500,138.8000 L 138.0000,138.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_48"/><path d=" M 138.0000,138.8000 L 158.0000,118.8000 L 158.9500,118.8000 L 138.9500,138.8000 L 138.0000,138.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_49"/><path d=" M 462.0000,111.6000 L 158.0000,111.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 138.0000,131.6000 L 158.0000,111.6000 L 158.9500,111.6000 L 138.9500,131.6000 L 138.0000,131.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 138.0000,131.6000 L 158.0000,111.6000 L 158.9500,111.6000 L 138.9500,131.6000 L 138.0000,131.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_52"/><path d=" M 462.0000,104.4000 L 158.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_55"/><path d=" M 462.0000,97.2000 L 158.0000,97.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 138.0000,117.2000 L 158.0000,97.2000 L 158.9500,97.2000 L 138.9500,117.2000 L 138.0000,117.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 138.0000,117.2000 L 158.0000,97.2000 L 158.9500,97.2000 L 138.9500,117.2000 L 138.0000,117.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 462.0000,90.0000 L 158.0000,90.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 138.0000,110.0000 L 158.0000,90.0000 L 160.8500,90.0000 L 140.8500,110.0000 L 138.0000,110.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 138.0000,110.0000 L 158.0000,90.0000 L 160.8500,90.0000 L 140.8500,110.0000 L 138.0000,110.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 462.0000,82.8000 L 158.0000,82.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 138.0000,102.8000 L 158.0000,82.8000 L 158.9500,82.8000 L 138.9500,102.8000 L 138.0000,102.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_64"/><path d=" M 138.0000,102.8000 L 158.0000,82.8000 L 158.9500,82.8000 L 138.9500,102.8000 L 138.0000,102.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_65"/><path d=" M 462.0000,75.6000 L 158.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_67"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_68"/><path d=" M 462.0000,68.4000 L 158.0000,68.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 138.0000,88.4000 L 158.0000,68.4000 L 158.9500,68.4000 L 138.9500,88.4000 L 138.0000,88.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 138.0000,88.4000 L 158.0000,68.4000 L 158.9500,68.4000 L 138.9500,88.4000 L 138.0000,88.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 462.0000,61.2000 L 158.0000,61.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 138.0000,81.2000 L 158.0000,61.2000 L 158.9500,61.2000 L 138.9500,81.2000 L 138.0000,81.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 138.0000,81.2000 L 158.0000,61.2000 L 158.9500,61.2000 L 138.9500,81.2000 L 138.0000,81.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_74"/><path d=" M 462.0000,54.0000 L 158.0000,54.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 138.0000,74.0000 L 158.0000,54.0000 L 160.8500,54.0000 L 140.8500,74.0000 L 138.0000,74.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 138.0000,74.0000 L 158.0000,54.0000 L 160.8500,54.0000 L 140.8500,74.0000 L 138.0000,74.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_77"/><path d=" M 462.0000,46.8000 L 158.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_80"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_81"/><path d=" M 462.0000,39.6000 L 158.0000,39.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_82"/><path d=" M 138.0000,59.6000 L 158.0000,39.6000 L 158.9500,39.6000 L 138.9500,59.6000 L 138.0000,59.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_83"/><path d=" M 138.0000,59.6000 L 158.0000,39.6000 L 158.9500,39.6000 L 138.9500,59.6000 L 138.0000,59.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_84"/><path d=" M 462.0000,32.4000 L 158.0000,32.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_85"/><path d=" M 138.0000,52.4000 L 158.0000,32.4000 L 158.9500,32.4000 L 138.9500,52.4000 L 138.0000,52.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_86"/><path d=" M 138.0000,52.4000 L 158.0000,32.4000 L 158.9500,32.4000 L 138.9500,52.4000 L 138.0000,52.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_87"/><path d=" M 462.0000,25.2000 L 158.0000,25.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_88"/><path d=" M 138.0000,45.2000 L 158.0000,25.2000 L 158.9500,25.2000 L 138.9500,45.2000 L 138.0000,45.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_89"/><path d=" M 138.0000,45.2000 L 158.0000,25.2000 L 158.9500,25.2000 L 138.9500,45.2000 L 138.0000,45.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_90"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_91"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_92"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_93"/><path d=" M 158.0000,92.3040 L 148.0000,102.3040 L 148.0000,102.3040 L 158.0000,92.3040 L 158.0000,92.3040 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_95"/><path d=" M 158.0000,92.3040 L 148.0000,102.3040 L 148.0000,102.3040 L 158.0000,92.3040 L 158.0000,92.3040 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_96"/><path d=" M 194.1922,136.0000 L 148.0000,136.0000 L 148.0000,102.3040 L 194.1922,136.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_97"/><path d=" M 194.1922,136.0000 L 224.0000,136.0000 L 224.0000,157.7440 L 194.1922,136.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_98"/><path d=" M 234.0000,126.0000 L 234.0000,147.7440 L 224.0000,157.7440 L 224.0000,136.0000 L 234.0000,126.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_99"/><path d=" M 158.0000,92.3040 L 148.0000,102.3040 L 224.0000,157.7440 L 234.0000,147.7440 L 158.0000,92.3040 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_100"/><path d=" M 158.0000,92.3040 L 148.0000,102.3040 L 224.0000,157.7440 L 234.0000,147.7440 L 158.0000,92.3040 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_101"/><path d=" M 248.1600,136.0000 L 224.0000,136.0000 L 224.0000,157.7440 L 248.1600,136.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_102"/><path d=" M 248.1600,136.0000 L 300.0000,136.0000 L 300.0000,89.3440 L 248.1600,136.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_103"/><path d=" M 310.0000,126.0000 L 310.0000,79.3440 L 300.0000,89.3440 L 300.0000,136.0000 L 310.0000,126.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_104"/><path d=" M 234.0000,147.7440 L 224.0000,157.7440 L 300.0000,89.3440 L 310.0000,79.3440 L 234.0000,147.7440 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_105"/><path d=" M 234.0000,147.7440 L 224.0000,157.7440 L 300.0000,89.3440 L 310.0000,79.3440 L 234.0000,147.7440 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_106"/><path d=" M 355.4595,136.0000 L 300.0000,136.0000 L 300.0000,89.3440 L 355.4595,136.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_107"/><path d=" M 355.4595,136.0000 L 376.0000,136.0000 L 376.0000,153.2800 L 355.4595,136.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_108"/><path d=" M 386.0000,126.0000 L 386.0000,143.2800 L 376.0000,153.2800 L 376.0000,136.0000 L 386.0000,126.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_109"/><path d=" M 310.0000,79.3440 L 300.0000,89.3440 L 376.0000,153.2800 L 386.0000,143.2800 L 310.0000,79.3440 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_110"/><path d=" M 310.0000,79.3440 L 300.0000,89.3440 L 376.0000,153.2800 L 386.0000,143.2800 L 310.0000,79.3440 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_111"/><path d=" M 451.3719,136.0000 L 376.0000,136.0000 L 376.0000,153.2800 L 451.3719,136.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_112"/><path d=" M 451.3719,136.0000 L 452.0000,136.0000 L 452.0000,135.8560 L 451.3719,136.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_113"/><path d=" M 462.0000,126.0000 L 462.0000,125.8560 L 452.0000,135.8560 L 452.0000,136.0000 L 462.0000,126.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_114"/><path d=" M 386.0000,143.2800 L 376.0000,153.2800 L 452.0000,135.8560 L 462.0000,125.8560 L 386.0000,143.2800 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_115"/><path d=" M 386.0000,143.2800 L 376.0000,153.2800 L 452.0000,135.8560 L 462.0000,125.8560 L 386.0000,143.2800 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_116"/><path d=" M 148.0000,57.8080 L 138.0000,67.8080 L 138.0000,67.8080 L 148.0000,57.8080 L 148.0000,57.8080 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_117"/><path d=" M 148.0000,57.8080 L 138.0000,67.8080 L 138.0000,67.8080 L 148.0000,57.8080 L 148.0000,57.8080 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_118"/><path d=" M 138.0000,146.0000 L 138.0000,67.8080 L 214.0000,112.3040 L 214.0000,146.0000 L 138.0000,146.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_119"/><path d=" M 224.0000,136.0000 L 224.0000,102.3040 L 214.0000,112.3040 L 214.0000,146.0000 L 224.0000,136.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_120"/><path d=" M 148.0000,57.8080 L 138.0000,67.8080 L 214.0000,112.3040 L 224.0000,102.3040 L 148.0000,57.8080 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_121"/><path d=" M 148.0000,57.8080 L 138.0000,67.8080 L 214.0000,112.3040 L 224.0000,102.3040 L 148.0000,57.8080 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_122"/><path d=" M 214.0000,146.0000 L 214.0000,112.3040 L 290.0000,103.0880 L 290.0000,146.0000 L 214.0000,146.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_123"/><path d=" M 300.0000,136.0000 L 300.0000,93.0880 L 290.0000,103.0880 L 290.0000,146.0000 L 300.0000,136.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_124"/><path d=" M 224.0000,102.3040 L 214.0000,112.3040 L 290.0000,103.0880 L 300.0000,93.0880 L 224.0000,102.3040 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_125"/><path d=" M 224.0000,102.3040 L 214.0000,112.3040 L 290.0000,103.0880 L 300.0000,93.0880 L 224.0000,102.3040 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_126"/><path d=" M 364.7459,146.0000 L 290.0000,146.0000 L 290.0000,103.0880 L 364.7459,146.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_127"/><path d=" M 364.7459,146.0000 L 366.0000,146.0000 L 366.0000,146.7200 L 364.7459,146.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_128"/><path d=" M 376.0000,136.0000 L 376.0000,136.7200 L 366.0000,146.7200 L 366.0000,146.0000 L 376.0000,136.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_129"/><path d=" M 300.0000,93.0880 L 290.0000,103.0880 L 366.0000,146.7200 L 376.0000,136.7200 L 300.0000,93.0880 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_130"/><path d=" M 300.0000,93.0880 L 290.0000,103.0880 L 366.0000,146.7200 L 376.0000,136.7200 L 300.0000,93.0880 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_131"/><path d=" M 366.0000,146.0000 L 366.0000,146.7200 L 442.0000,163.8560 L 442.0000,146.0000 L 366.0000,146.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_132"/><path d=" M 452.0000,136.0000 L 452.0000,153.8560 L 442.0000,163.8560 L 442.0000,146.0000 L 452.0000,136.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_133"/><path d=" M 376.0000,136.7200 L 366.0000,146.7200 L 442.0000,163.8560 L 452.0000,153.8560 L 376.0000,136.7200 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_134"/><path d=" M 376.0000,136.7200 L 366.0000,146.7200 L 442.0000,163.8560 L 452.0000,153.8560 L 376.0000,136.7200 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_135"/><ellipse cx="158" cy="92.304" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_136"/><ellipse cx="234" cy="147.744" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_137"/><ellipse cx="310" cy="79.344" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_138"/><ellipse cx="386" cy="143.28" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_139"/><ellipse cx="462" cy="125.856" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_140"/><ellipse cx="148" cy="57.808" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_141"/><ellipse cx="224" cy="102.304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_142"/><ellipse cx="300" cy="93.088" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_143"/><ellipse cx="376" cy="136.72" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_144"/><ellipse cx="452" cy="153.856" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_145"/><path d=" M 500.0000,126.0000 L 480.0000,146.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_146"/><path d=" M 480.0000,146.0000 L 100.0000,146.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_147"/><path d=" M 100.0000,146.0000 L 120.0000,126.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_148"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_149"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_150"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_151"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_17" x="185.592" text-length="56.816px" y="161.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_21" x="261.592" text-length="56.816px" y="161.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_25" x="337.592" text-length="56.816px" y="161.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_29" x="413.592" text-length="56.816px" y="161.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_33" x="102.868" text-length="33.232px" y="180.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-250</text><text id="ezcGraphTextBox_46" x="127.792" text-length="8.308px" y="144.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_62" x="111.176" text-length="24.924px" y="108.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_78" x="111.176" text-length="24.924px" y="72.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_94" x="111.176" text-length="24.924px" y="53.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartWithoutDataBorder.svg b/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartWithoutDataBorder.svg
index cf2c9fd..17e8fb6 100644
--- a/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartWithoutDataBorder.svg
+++ b/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartWithoutDataBorder.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000 L 500.0000,162.0000 L 480.0000,182.0000 L 100.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 120.0000,162.0000 L 500.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 492.0000,166.0000 L 500.0000,162.0000 L 492.0000,158.0000 L 492.0000,166.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 234.0000,162.0000 L 234.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_15"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_16"/><path d=" M 310.0000,162.0000 L 310.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_19"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_20"/><path d=" M 386.0000,162.0000 L 386.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_23"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_24"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_28"/><path d=" M 462.0000,114.4800 L 158.0000,114.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_32"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_33"/><path d=" M 462.0000,65.5200 L 158.0000,65.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_36"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_37"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_40"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_41"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_43"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_45"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_46"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_47"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_48"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_49"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_50"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_52"/><ellipse cx="158" cy="117.072" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="234" cy="157.968" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="310" cy="99.792" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="386" cy="138.96" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="462" cy="161.808" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><ellipse cx="148" cy="67.744" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_58"/><ellipse cx="224" cy="127.072" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_59"/><ellipse cx="300" cy="114.784" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_60"/><ellipse cx="376" cy="171.04" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_61"/><ellipse cx="452" cy="54.304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_62"/><path d=" M 500.0000,162.0000 L 480.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 480.0000,182.0000 L 100.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_17" x="183.472" text-length="61.056px" y="198.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_21" x="259.472" text-length="61.056px" y="198.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_25" x="335.472" text-length="61.056px" y="198.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_29" x="411.472" text-length="61.056px" y="198.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_30" x="127.172" text-length="8.928px" y="180.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_34" x="109.316" text-length="26.784px" y="132.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_38" x="109.316" text-length="26.784px" y="84.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_42" x="109.316" text-length="26.784px" y="54.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000 L 500.0000,162.0000 L 480.0000,182.0000 L 100.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 120.0000,162.0000 L 500.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 492.0000,166.0000 L 500.0000,162.0000 L 492.0000,158.0000 L 492.0000,166.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 234.0000,162.0000 L 234.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_15"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_16"/><path d=" M 310.0000,162.0000 L 310.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_19"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_20"/><path d=" M 386.0000,162.0000 L 386.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_23"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_24"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_28"/><path d=" M 462.0000,151.9200 L 158.0000,151.9200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 138.0000,172.4000 L 158.0000,152.4000 L 158.9500,152.4000 L 138.9500,172.4000 L 138.0000,172.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_32"/><path d=" M 138.0000,172.4000 L 158.0000,152.4000 L 158.9500,152.4000 L 138.9500,172.4000 L 138.0000,172.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_33"/><path d=" M 462.0000,143.2800 L 158.0000,143.2800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 138.0000,162.8000 L 158.0000,142.8000 L 158.9500,142.8000 L 138.9500,162.8000 L 138.0000,162.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_35"/><path d=" M 138.0000,162.8000 L 158.0000,142.8000 L 158.9500,142.8000 L 138.9500,162.8000 L 138.0000,162.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_36"/><path d=" M 462.0000,133.2000 L 158.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_38"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_39"/><path d=" M 462.0000,123.1200 L 158.0000,123.1200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 138.0000,143.6000 L 158.0000,123.6000 L 158.9500,123.6000 L 138.9500,143.6000 L 138.0000,143.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_41"/><path d=" M 138.0000,143.6000 L 158.0000,123.6000 L 158.9500,123.6000 L 138.9500,143.6000 L 138.0000,143.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_42"/><path d=" M 462.0000,114.4800 L 158.0000,114.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 462.0000,104.4000 L 158.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_48"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_49"/><path d=" M 462.0000,94.3200 L 158.0000,94.3200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 138.0000,114.8000 L 158.0000,94.8000 L 158.9500,94.8000 L 138.9500,114.8000 L 138.0000,114.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 138.0000,114.8000 L 158.0000,94.8000 L 158.9500,94.8000 L 138.9500,114.8000 L 138.0000,114.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_52"/><path d=" M 462.0000,85.6800 L 158.0000,85.6800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 138.0000,105.2000 L 158.0000,85.2000 L 158.9500,85.2000 L 138.9500,105.2000 L 138.0000,105.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 138.0000,105.2000 L 158.0000,85.2000 L 158.9500,85.2000 L 138.9500,105.2000 L 138.0000,105.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_55"/><path d=" M 462.0000,75.6000 L 158.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 462.0000,65.5200 L 158.0000,65.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 462.0000,56.8800 L 158.0000,56.8800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 138.0000,76.4000 L 158.0000,56.4000 L 158.9500,56.4000 L 138.9500,76.4000 L 138.0000,76.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_64"/><path d=" M 138.0000,76.4000 L 158.0000,56.4000 L 158.9500,56.4000 L 138.9500,76.4000 L 138.0000,76.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_65"/><path d=" M 462.0000,46.8000 L 158.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_67"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_68"/><path d=" M 462.0000,36.7200 L 158.0000,36.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 138.0000,57.2000 L 158.0000,37.2000 L 158.9500,37.2000 L 138.9500,57.2000 L 138.0000,57.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 138.0000,57.2000 L 158.0000,37.2000 L 158.9500,37.2000 L 138.9500,57.2000 L 138.0000,57.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 462.0000,28.0800 L 158.0000,28.0800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 138.0000,47.6000 L 158.0000,27.6000 L 158.9500,27.6000 L 138.9500,47.6000 L 138.0000,47.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 138.0000,47.6000 L 158.0000,27.6000 L 158.9500,27.6000 L 138.9500,47.6000 L 138.0000,47.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_74"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_77"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_80"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_81"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_82"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_83"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_84"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_85"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_86"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_87"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_88"/><ellipse cx="158" cy="117.072" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_89"/><ellipse cx="234" cy="157.968" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_90"/><ellipse cx="310" cy="99.792" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_91"/><ellipse cx="386" cy="138.96" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_92"/><ellipse cx="462" cy="161.808" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_93"/><ellipse cx="148" cy="67.744" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_94"/><ellipse cx="224" cy="127.072" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_95"/><ellipse cx="300" cy="114.784" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_96"/><ellipse cx="376" cy="171.04" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_97"/><ellipse cx="452" cy="54.304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_98"/><path d=" M 500.0000,162.0000 L 480.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_99"/><path d=" M 480.0000,182.0000 L 100.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_100"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_101"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_102"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_103"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_104"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_17" x="183.472" text-length="61.056px" y="198.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_21" x="259.472" text-length="61.056px" y="198.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_25" x="335.472" text-length="61.056px" y="198.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_29" x="411.472" text-length="61.056px" y="198.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_30" x="127.172" text-length="8.928px" y="180.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_46" x="109.316" text-length="26.784px" y="132.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_62" x="109.316" text-length="26.784px" y="84.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_78" x="109.316" text-length="26.784px" y="54.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer3dTest_testRender3dLineChart.svg b/tests/data/compare/ezcGraphRenderer3dTest_testRender3dLineChart.svg
index 4830341..7ed4d75 100644
--- a/tests/data/compare/ezcGraphRenderer3dTest_testRender3dLineChart.svg
+++ b/tests/data/compare/ezcGraphRenderer3dTest_testRender3dLineChart.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,19.0000 L 1.0000,1.0000 L 499.0000,1.0000 L 499.0000,19.0000 L 1.0000,19.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,18.0000 L 2.0000,2.0000 L 498.0000,2.0000 L 498.0000,18.0000 L 2.0000,18.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><path d=" M 1.0000,199.0000 L 1.0000,22.0000 L 99.0000,22.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_5"/><path d=" M 2.0000,198.0000 L 2.0000,23.0000 L 98.0000,23.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_6"/><ellipse cx="11" cy="32" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_7"/><ellipse cx="11" cy="50" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_9"/><path d=" M 100.0000,183.8900 L 117.9000,165.9900 L 500.0000,165.9900 L 482.1000,183.8900 L 100.0000,183.8900 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 117.9000,165.9900 L 500.0000,165.9900" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 492.0000,169.9900 L 500.0000,165.9900 L 492.0000,161.9900 L 492.0000,169.9900 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 138.2100,200.0000 L 156.1100,182.1000 L 156.1100,21.0000 L 138.2100,38.9000 L 138.2100,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 156.1100,182.1000 L 156.1100,21.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 154.1100,25.0000 L 156.1100,21.0000 L 158.1100,25.0000 L 154.1100,25.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_16"/><path d=" M 232.5300,165.9900 L 232.5300,37.1100" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 214.6300,181.1900 L 232.5300,163.2900 L 232.5300,165.9900 L 214.6300,183.8900 L 214.6300,181.1900 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_18"/><path d=" M 214.6300,181.1900 L 232.5300,163.2900 L 232.5300,165.9900 L 214.6300,183.8900 L 214.6300,181.1900 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_19"/><path d=" M 308.9500,165.9900 L 308.9500,37.1100" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 291.0500,181.1900 L 308.9500,163.2900 L 308.9500,165.9900 L 291.0500,183.8900 L 291.0500,181.1900 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_22"/><path d=" M 291.0500,181.1900 L 308.9500,163.2900 L 308.9500,165.9900 L 291.0500,183.8900 L 291.0500,181.1900 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_23"/><path d=" M 385.3700,165.9900 L 385.3700,37.1100" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 367.4700,181.1900 L 385.3700,163.2900 L 385.3700,165.9900 L 367.4700,183.8900 L 367.4700,181.1900 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_26"/><path d=" M 367.4700,181.1900 L 385.3700,163.2900 L 385.3700,165.9900 L 367.4700,183.8900 L 367.4700,181.1900 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_27"/><path d=" M 461.7900,165.9900 L 461.7900,37.1100" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 443.8900,181.1900 L 461.7900,163.2900 L 461.7900,165.9900 L 443.8900,183.8900 L 443.8900,181.1900 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_30"/><path d=" M 443.8900,181.1900 L 461.7900,163.2900 L 461.7900,165.9900 L 443.8900,183.8900 L 443.8900,181.1900 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_31"/><path d=" M 461.7900,123.4596 L 156.1100,123.4596" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 138.2100,140.9300 L 156.1100,123.0300 L 158.9758,123.0300 L 141.0757,140.9300 L 138.2100,140.9300 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_35"/><path d=" M 138.2100,140.9300 L 156.1100,123.0300 L 158.9758,123.0300 L 141.0757,140.9300 L 138.2100,140.9300 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_36"/><path d=" M 461.7900,79.6404 L 156.1100,79.6404" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 138.2100,97.9700 L 156.1100,80.0700 L 158.9758,80.0700 L 141.0757,97.9700 L 138.2100,97.9700 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_39"/><path d=" M 138.2100,97.9700 L 156.1100,80.0700 L 158.9758,80.0700 L 141.0757,97.9700 L 138.2100,97.9700 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_40"/><path d=" M 461.7900,37.1100 L 156.1100,37.1100" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 138.2100,55.0100 L 156.1100,37.1100 L 158.9758,37.1100 L 141.0757,55.0100 L 138.2100,55.0100 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_43"/><path d=" M 138.2100,55.0100 L 156.1100,37.1100 L 158.9758,37.1100 L 141.0757,55.0100 L 138.2100,55.0100 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_44"/><path d=" M 156.1100,125.7794 L 147.1600,134.7294 L 147.1600,134.7294 L 156.1100,125.7794 L 156.1100,125.7794 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_46"/><path d=" M 156.1100,125.7794 L 147.1600,134.7294 L 147.1600,134.7294 L 156.1100,125.7794 L 156.1100,125.7794 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_47"/><path d=" M 156.1100,125.7794 L 147.1600,134.7294 L 223.5800,171.3314 L 232.5300,162.3814 L 156.1100,125.7794 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_48"/><path d=" M 156.1100,125.7794 L 147.1600,134.7294 L 223.5800,171.3314 L 232.5300,162.3814 L 156.1100,125.7794 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_49"/><path d=" M 232.5300,162.3814 L 223.5800,171.3314 L 300.0000,119.2638 L 308.9500,110.3138 L 232.5300,162.3814 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_50"/><path d=" M 232.5300,162.3814 L 223.5800,171.3314 L 300.0000,119.2638 L 308.9500,110.3138 L 232.5300,162.3814 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_51"/><path d=" M 308.9500,110.3138 L 300.0000,119.2638 L 376.4200,154.3192 L 385.3700,145.3692 L 308.9500,110.3138 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_52"/><path d=" M 308.9500,110.3138 L 300.0000,119.2638 L 376.4200,154.3192 L 385.3700,145.3692 L 308.9500,110.3138 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_53"/><path d=" M 385.3700,145.3692 L 376.4200,154.3192 L 452.8400,174.7682 L 461.7900,165.8182 L 385.3700,145.3692 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 385.3700,145.3692 L 376.4200,154.3192 L 452.8400,174.7682 L 461.7900,165.8182 L 385.3700,145.3692 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_55"/><path d=" M 147.1600,81.6309 L 138.2100,90.5809 L 138.2100,90.5809 L 147.1600,81.6309 L 147.1600,81.6309 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_56"/><path d=" M 147.1600,81.6309 L 138.2100,90.5809 L 138.2100,90.5809 L 147.1600,81.6309 L 147.1600,81.6309 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_57"/><path d=" M 147.1600,81.6309 L 138.2100,90.5809 L 214.6300,143.6794 L 223.5800,134.7294 L 147.1600,81.6309 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_58"/><path d=" M 147.1600,81.6309 L 138.2100,90.5809 L 214.6300,143.6794 L 223.5800,134.7294 L 147.1600,81.6309 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_59"/><path d=" M 223.5800,134.7294 L 214.6300,143.6794 L 291.0500,132.6817 L 300.0000,123.7317 L 223.5800,134.7294 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 223.5800,134.7294 L 214.6300,143.6794 L 291.0500,132.6817 L 300.0000,123.7317 L 223.5800,134.7294 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 300.0000,123.7317 L 291.0500,132.6817 L 367.4700,183.0308 L 376.4200,174.0808 L 300.0000,123.7317 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_62"/><path d=" M 300.0000,123.7317 L 291.0500,132.6817 L 367.4700,183.0308 L 376.4200,174.0808 L 300.0000,123.7317 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_63"/><path d=" M 376.4200,174.0808 L 367.4700,183.0308 L 443.8900,78.5521 L 452.8400,69.6021 L 376.4200,174.0808 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_64"/><path d=" M 376.4200,174.0808 L 367.4700,183.0308 L 443.8900,78.5521 L 452.8400,69.6021 L 376.4200,174.0808 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_65"/><ellipse cx="156.11" cy="125.77944" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_66"/><ellipse cx="232.53" cy="162.38136" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_67"/><ellipse cx="308.95" cy="110.31384" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_68"/><ellipse cx="385.37" cy="145.3692" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_69"/><ellipse cx="461.79" cy="165.81816" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_70"/><ellipse cx="147.16" cy="81.63088" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_71"/><ellipse cx="223.58" cy="134.72944" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_72"/><ellipse cx="300" cy="123.73168" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_73"/><ellipse cx="376.42" cy="174.0808" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_74"/><ellipse cx="452.84" cy="69.60208" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_75"/><path d=" M 500.0000,165.9900 L 482.1000,183.8900" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 482.1000,183.8900 L 100.0000,183.8900" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 100.0000,183.8900 L 117.9000,165.9900" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 156.1100,21.0000 L 138.2100,38.9000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><path d=" M 138.2100,38.9000 L 138.2100,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_80"/><path d=" M 138.2100,200.0000 L 156.1100,182.1000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_81"/><text id="ezcGraphTextBox_4" x="190.64" text-length="118.72px" y="17" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line chart title</text><text id="ezcGraphTextBox_8" x="19" text-length="44.52px" y="39" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_10" x="19" text-length="44.52px" y="57" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_20" x="188.1088" text-length="53.0424px" y="198.2" style="font-size: 12px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_24" x="264.5288" text-length="53.0424px" y="198.2" style="font-size: 12px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_28" x="340.9488" text-length="53.0424px" y="198.2" style="font-size: 12px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_32" x="417.3688" text-length="53.0424px" y="198.2" style="font-size: 12px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_33" x="128.5433" text-length="7.7562px" y="182.09" style="font-size: 12px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_37" x="113.0309" text-length="23.2686px" y="139.13" style="font-size: 12px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_41" x="113.0309" text-length="23.2686px" y="96.17" style="font-size: 12px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_45" x="113.0309" text-length="23.2686px" y="69.32" style="font-size: 12px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,19.0000 L 1.0000,1.0000 L 499.0000,1.0000 L 499.0000,19.0000 L 1.0000,19.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,18.0000 L 2.0000,2.0000 L 498.0000,2.0000 L 498.0000,18.0000 L 2.0000,18.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><path d=" M 1.0000,199.0000 L 1.0000,22.0000 L 99.0000,22.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_5"/><path d=" M 2.0000,198.0000 L 2.0000,23.0000 L 98.0000,23.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_6"/><ellipse cx="11" cy="32" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_7"/><ellipse cx="11" cy="50" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_9"/><path d=" M 100.0000,183.8900 L 117.9000,165.9900 L 500.0000,165.9900 L 482.1000,183.8900 L 100.0000,183.8900 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 117.9000,165.9900 L 500.0000,165.9900" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 492.0000,169.9900 L 500.0000,165.9900 L 492.0000,161.9900 L 492.0000,169.9900 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 138.2100,200.0000 L 156.1100,182.1000 L 156.1100,21.0000 L 138.2100,38.9000 L 138.2100,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 156.1100,182.1000 L 156.1100,21.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 154.1100,25.0000 L 156.1100,21.0000 L 158.1100,25.0000 L 154.1100,25.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_16"/><path d=" M 232.5300,165.9900 L 232.5300,37.1100" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 214.6300,181.1900 L 232.5300,163.2900 L 232.5300,165.9900 L 214.6300,183.8900 L 214.6300,181.1900 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_18"/><path d=" M 214.6300,181.1900 L 232.5300,163.2900 L 232.5300,165.9900 L 214.6300,183.8900 L 214.6300,181.1900 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_19"/><path d=" M 308.9500,165.9900 L 308.9500,37.1100" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 291.0500,181.1900 L 308.9500,163.2900 L 308.9500,165.9900 L 291.0500,183.8900 L 291.0500,181.1900 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_22"/><path d=" M 291.0500,181.1900 L 308.9500,163.2900 L 308.9500,165.9900 L 291.0500,183.8900 L 291.0500,181.1900 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_23"/><path d=" M 385.3700,165.9900 L 385.3700,37.1100" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 367.4700,181.1900 L 385.3700,163.2900 L 385.3700,165.9900 L 367.4700,183.8900 L 367.4700,181.1900 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_26"/><path d=" M 367.4700,181.1900 L 385.3700,163.2900 L 385.3700,165.9900 L 367.4700,183.8900 L 367.4700,181.1900 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_27"/><path d=" M 461.7900,165.9900 L 461.7900,37.1100" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 443.8900,181.1900 L 461.7900,163.2900 L 461.7900,165.9900 L 443.8900,183.8900 L 443.8900,181.1900 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_30"/><path d=" M 443.8900,181.1900 L 461.7900,163.2900 L 461.7900,165.9900 L 443.8900,183.8900 L 443.8900,181.1900 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_31"/><path d=" M 461.7900,156.9684 L 156.1100,156.9684" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 138.2100,175.2980 L 156.1100,157.3980 L 157.0653,157.3980 L 139.1653,175.2980 L 138.2100,175.2980 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_35"/><path d=" M 138.2100,175.2980 L 156.1100,157.3980 L 157.0653,157.3980 L 139.1653,175.2980 L 138.2100,175.2980 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_36"/><path d=" M 461.7900,149.2356 L 156.1100,149.2356" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 138.2100,166.7060 L 156.1100,148.8060 L 157.0653,148.8060 L 139.1653,166.7060 L 138.2100,166.7060 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_38"/><path d=" M 138.2100,166.7060 L 156.1100,148.8060 L 157.0653,148.8060 L 139.1653,166.7060 L 138.2100,166.7060 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_39"/><path d=" M 461.7900,140.2140 L 156.1100,140.2140" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 138.2100,158.1140 L 156.1100,140.2140 L 157.0653,140.2140 L 139.1653,158.1140 L 138.2100,158.1140 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_41"/><path d=" M 138.2100,158.1140 L 156.1100,140.2140 L 157.0653,140.2140 L 139.1653,158.1140 L 138.2100,158.1140 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_42"/><path d=" M 461.7900,131.1924 L 156.1100,131.1924" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 138.2100,149.5220 L 156.1100,131.6220 L 157.0653,131.6220 L 139.1653,149.5220 L 138.2100,149.5220 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 138.2100,149.5220 L 156.1100,131.6220 L 157.0653,131.6220 L 139.1653,149.5220 L 138.2100,149.5220 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 461.7900,123.4596 L 156.1100,123.4596" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 138.2100,140.9300 L 156.1100,123.0300 L 158.9758,123.0300 L 141.0757,140.9300 L 138.2100,140.9300 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_47"/><path d=" M 138.2100,140.9300 L 156.1100,123.0300 L 158.9758,123.0300 L 141.0757,140.9300 L 138.2100,140.9300 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_48"/><path d=" M 461.7900,114.4380 L 156.1100,114.4380" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 138.2100,132.3380 L 156.1100,114.4380 L 157.0653,114.4380 L 139.1653,132.3380 L 138.2100,132.3380 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 138.2100,132.3380 L 156.1100,114.4380 L 157.0653,114.4380 L 139.1653,132.3380 L 138.2100,132.3380 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_52"/><path d=" M 461.7900,105.4164 L 156.1100,105.4164" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 138.2100,123.7460 L 156.1100,105.8460 L 157.0653,105.8460 L 139.1653,123.7460 L 138.2100,123.7460 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 138.2100,123.7460 L 156.1100,105.8460 L 157.0653,105.8460 L 139.1653,123.7460 L 138.2100,123.7460 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_55"/><path d=" M 461.7900,97.6836 L 156.1100,97.6836" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 138.2100,115.1540 L 156.1100,97.2540 L 157.0653,97.2540 L 139.1653,115.1540 L 138.2100,115.1540 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 138.2100,115.1540 L 156.1100,97.2540 L 157.0653,97.2540 L 139.1653,115.1540 L 138.2100,115.1540 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 461.7900,88.6620 L 156.1100,88.6620" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 138.2100,106.5620 L 156.1100,88.6620 L 157.0653,88.6620 L 139.1653,106.5620 L 138.2100,106.5620 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 138.2100,106.5620 L 156.1100,88.6620 L 157.0653,88.6620 L 139.1653,106.5620 L 138.2100,106.5620 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 461.7900,79.6404 L 156.1100,79.6404" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 138.2100,97.9700 L 156.1100,80.0700 L 158.9758,80.0700 L 141.0757,97.9700 L 138.2100,97.9700 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_63"/><path d=" M 138.2100,97.9700 L 156.1100,80.0700 L 158.9758,80.0700 L 141.0757,97.9700 L 138.2100,97.9700 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_64"/><path d=" M 461.7900,71.9076 L 156.1100,71.9076" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 138.2100,89.3780 L 156.1100,71.4780 L 157.0653,71.4780 L 139.1653,89.3780 L 138.2100,89.3780 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_67"/><path d=" M 138.2100,89.3780 L 156.1100,71.4780 L 157.0653,71.4780 L 139.1653,89.3780 L 138.2100,89.3780 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_68"/><path d=" M 461.7900,62.8860 L 156.1100,62.8860" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 138.2100,80.7860 L 156.1100,62.8860 L 157.0653,62.8860 L 139.1653,80.7860 L 138.2100,80.7860 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 138.2100,80.7860 L 156.1100,62.8860 L 157.0653,62.8860 L 139.1653,80.7860 L 138.2100,80.7860 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 461.7900,53.8644 L 156.1100,53.8644" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 138.2100,72.1940 L 156.1100,54.2940 L 157.0653,54.2940 L 139.1653,72.1940 L 138.2100,72.1940 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 138.2100,72.1940 L 156.1100,54.2940 L 157.0653,54.2940 L 139.1653,72.1940 L 138.2100,72.1940 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_74"/><path d=" M 461.7900,46.1316 L 156.1100,46.1316" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 138.2100,63.6020 L 156.1100,45.7020 L 157.0653,45.7020 L 139.1653,63.6020 L 138.2100,63.6020 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 138.2100,63.6020 L 156.1100,45.7020 L 157.0653,45.7020 L 139.1653,63.6020 L 138.2100,63.6020 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_77"/><path d=" M 461.7900,37.1100 L 156.1100,37.1100" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 138.2100,55.0100 L 156.1100,37.1100 L 158.9758,37.1100 L 141.0757,55.0100 L 138.2100,55.0100 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 138.2100,55.0100 L 156.1100,37.1100 L 158.9758,37.1100 L 141.0757,55.0100 L 138.2100,55.0100 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_80"/><path d=" M 156.1100,125.7794 L 147.1600,134.7294 L 147.1600,134.7294 L 156.1100,125.7794 L 156.1100,125.7794 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_82"/><path d=" M 156.1100,125.7794 L 147.1600,134.7294 L 147.1600,134.7294 L 156.1100,125.7794 L 156.1100,125.7794 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_83"/><path d=" M 156.1100,125.7794 L 147.1600,134.7294 L 223.5800,171.3314 L 232.5300,162.3814 L 156.1100,125.7794 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_84"/><path d=" M 156.1100,125.7794 L 147.1600,134.7294 L 223.5800,171.3314 L 232.5300,162.3814 L 156.1100,125.7794 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_85"/><path d=" M 232.5300,162.3814 L 223.5800,171.3314 L 300.0000,119.2638 L 308.9500,110.3138 L 232.5300,162.3814 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_86"/><path d=" M 232.5300,162.3814 L 223.5800,171.3314 L 300.0000,119.2638 L 308.9500,110.3138 L 232.5300,162.3814 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_87"/><path d=" M 308.9500,110.3138 L 300.0000,119.2638 L 376.4200,154.3192 L 385.3700,145.3692 L 308.9500,110.3138 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_88"/><path d=" M 308.9500,110.3138 L 300.0000,119.2638 L 376.4200,154.3192 L 385.3700,145.3692 L 308.9500,110.3138 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_89"/><path d=" M 385.3700,145.3692 L 376.4200,154.3192 L 452.8400,174.7682 L 461.7900,165.8182 L 385.3700,145.3692 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_90"/><path d=" M 385.3700,145.3692 L 376.4200,154.3192 L 452.8400,174.7682 L 461.7900,165.8182 L 385.3700,145.3692 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_91"/><path d=" M 147.1600,81.6309 L 138.2100,90.5809 L 138.2100,90.5809 L 147.1600,81.6309 L 147.1600,81.6309 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_92"/><path d=" M 147.1600,81.6309 L 138.2100,90.5809 L 138.2100,90.5809 L 147.1600,81.6309 L 147.1600,81.6309 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_93"/><path d=" M 147.1600,81.6309 L 138.2100,90.5809 L 214.6300,143.6794 L 223.5800,134.7294 L 147.1600,81.6309 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_94"/><path d=" M 147.1600,81.6309 L 138.2100,90.5809 L 214.6300,143.6794 L 223.5800,134.7294 L 147.1600,81.6309 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_95"/><path d=" M 223.5800,134.7294 L 214.6300,143.6794 L 291.0500,132.6817 L 300.0000,123.7317 L 223.5800,134.7294 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_96"/><path d=" M 223.5800,134.7294 L 214.6300,143.6794 L 291.0500,132.6817 L 300.0000,123.7317 L 223.5800,134.7294 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_97"/><path d=" M 300.0000,123.7317 L 291.0500,132.6817 L 367.4700,183.0308 L 376.4200,174.0808 L 300.0000,123.7317 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_98"/><path d=" M 300.0000,123.7317 L 291.0500,132.6817 L 367.4700,183.0308 L 376.4200,174.0808 L 300.0000,123.7317 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_99"/><path d=" M 376.4200,174.0808 L 367.4700,183.0308 L 443.8900,78.5521 L 452.8400,69.6021 L 376.4200,174.0808 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_100"/><path d=" M 376.4200,174.0808 L 367.4700,183.0308 L 443.8900,78.5521 L 452.8400,69.6021 L 376.4200,174.0808 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_101"/><ellipse cx="156.11" cy="125.77944" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_102"/><ellipse cx="232.53" cy="162.38136" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_103"/><ellipse cx="308.95" cy="110.31384" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_104"/><ellipse cx="385.37" cy="145.3692" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_105"/><ellipse cx="461.79" cy="165.81816" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_106"/><ellipse cx="147.16" cy="81.63088" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_107"/><ellipse cx="223.58" cy="134.72944" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_108"/><ellipse cx="300" cy="123.73168" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_109"/><ellipse cx="376.42" cy="174.0808" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_110"/><ellipse cx="452.84" cy="69.60208" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_111"/><path d=" M 500.0000,165.9900 L 482.1000,183.8900" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_112"/><path d=" M 482.1000,183.8900 L 100.0000,183.8900" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_113"/><path d=" M 100.0000,183.8900 L 117.9000,165.9900" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_114"/><path d=" M 156.1100,21.0000 L 138.2100,38.9000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_115"/><path d=" M 138.2100,38.9000 L 138.2100,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_116"/><path d=" M 138.2100,200.0000 L 156.1100,182.1000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_117"/><text id="ezcGraphTextBox_4" x="190.64" text-length="118.72px" y="17" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line chart title</text><text id="ezcGraphTextBox_8" x="19" text-length="44.52px" y="39" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_10" x="19" text-length="44.52px" y="57" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_20" x="188.1088" text-length="53.0424px" y="198.2" style="font-size: 12px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_24" x="264.5288" text-length="53.0424px" y="198.2" style="font-size: 12px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_28" x="340.9488" text-length="53.0424px" y="198.2" style="font-size: 12px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_32" x="417.3688" text-length="53.0424px" y="198.2" style="font-size: 12px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_33" x="128.5433" text-length="7.7562px" y="182.09" style="font-size: 12px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_49" x="113.0309" text-length="23.2686px" y="139.13" style="font-size: 12px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_65" x="113.0309" text-length="23.2686px" y="96.17" style="font-size: 12px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_81" x="113.0309" text-length="23.2686px" y="69.32" style="font-size: 12px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer3dTest_testRender3dLineChartBigMaxFontSize.svg b/tests/data/compare/ezcGraphRenderer3dTest_testRender3dLineChartBigMaxFontSize.svg
index 294faad..5930160 100644
--- a/tests/data/compare/ezcGraphRenderer3dTest_testRender3dLineChartBigMaxFontSize.svg
+++ b/tests/data/compare/ezcGraphRenderer3dTest_testRender3dLineChartBigMaxFontSize.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,35.0000 L 1.0000,1.0000 L 499.0000,1.0000 L 499.0000,35.0000 L 1.0000,35.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,34.0000 L 2.0000,2.0000 L 498.0000,2.0000 L 498.0000,34.0000 L 2.0000,34.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><path d=" M 1.0000,199.0000 L 1.0000,38.0000 L 99.0000,38.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_5"/><path d=" M 2.0000,198.0000 L 2.0000,39.0000 L 98.0000,39.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_6"/><ellipse cx="11" cy="48" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_7"/><ellipse cx="11" cy="66" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_9"/><path d=" M 100.0000,185.3300 L 116.3000,169.0300 L 500.0000,169.0300 L 483.7000,185.3300 L 100.0000,185.3300 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 116.3000,169.0300 L 500.0000,169.0300" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 492.0000,173.0300 L 500.0000,169.0300 L 492.0000,165.0300 L 492.0000,173.0300 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 138.3700,200.0000 L 154.6700,183.7000 L 154.6700,37.0000 L 138.3700,53.3000 L 138.3700,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 154.6700,183.7000 L 154.6700,37.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 152.6700,41.0000 L 154.6700,37.0000 L 156.6700,41.0000 L 152.6700,41.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_16"/><path d=" M 231.4100,169.0300 L 231.4100,51.6700" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 215.1100,182.6300 L 231.4100,166.3300 L 231.4100,169.0300 L 215.1100,185.3300 L 215.1100,182.6300 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_18"/><path d=" M 215.1100,182.6300 L 231.4100,166.3300 L 231.4100,169.0300 L 215.1100,185.3300 L 215.1100,182.6300 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_19"/><path d=" M 308.1500,169.0300 L 308.1500,51.6700" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 291.8500,182.6300 L 308.1500,166.3300 L 308.1500,169.0300 L 291.8500,185.3300 L 291.8500,182.6300 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_22"/><path d=" M 291.8500,182.6300 L 308.1500,166.3300 L 308.1500,169.0300 L 291.8500,185.3300 L 291.8500,182.6300 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_23"/><path d=" M 384.8900,169.0300 L 384.8900,51.6700" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 368.5900,182.6300 L 384.8900,166.3300 L 384.8900,169.0300 L 368.5900,185.3300 L 368.5900,182.6300 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_26"/><path d=" M 368.5900,182.6300 L 384.8900,166.3300 L 384.8900,169.0300 L 368.5900,185.3300 L 368.5900,182.6300 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_27"/><path d=" M 461.6300,169.0300 L 461.6300,51.6700" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 445.3300,182.6300 L 461.6300,166.3300 L 461.6300,169.0300 L 445.3300,185.3300 L 445.3300,182.6300 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_30"/><path d=" M 445.3300,182.6300 L 461.6300,166.3300 L 461.6300,169.0300 L 445.3300,185.3300 L 445.3300,182.6300 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_31"/><path d=" M 461.6300,130.3012 L 154.6700,130.3012" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 138.3700,146.2100 L 154.6700,129.9100 L 157.5478,129.9100 L 141.2477,146.2100 L 138.3700,146.2100 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_35"/><path d=" M 138.3700,146.2100 L 154.6700,129.9100 L 157.5478,129.9100 L 141.2477,146.2100 L 138.3700,146.2100 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_36"/><path d=" M 461.6300,90.3988 L 154.6700,90.3988" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 138.3700,107.0900 L 154.6700,90.7900 L 157.5478,90.7900 L 141.2477,107.0900 L 138.3700,107.0900 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_39"/><path d=" M 138.3700,107.0900 L 154.6700,90.7900 L 157.5478,90.7900 L 141.2477,107.0900 L 138.3700,107.0900 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_40"/><path d=" M 461.6300,51.6700 L 154.6700,51.6700" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 138.3700,67.9700 L 154.6700,51.6700 L 157.5478,51.6700 L 141.2477,67.9700 L 138.3700,67.9700 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_43"/><path d=" M 138.3700,67.9700 L 154.6700,51.6700 L 157.5478,51.6700 L 141.2477,67.9700 L 138.3700,67.9700 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_44"/><path d=" M 154.6700,132.4137 L 146.5200,140.5637 L 146.5200,140.5637 L 154.6700,132.4137 L 154.6700,132.4137 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_46"/><path d=" M 154.6700,132.4137 L 146.5200,140.5637 L 146.5200,140.5637 L 154.6700,132.4137 L 154.6700,132.4137 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_47"/><path d=" M 154.6700,132.4137 L 146.5200,140.5637 L 223.2600,173.8939 L 231.4100,165.7439 L 154.6700,132.4137 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_48"/><path d=" M 154.6700,132.4137 L 146.5200,140.5637 L 223.2600,173.8939 L 231.4100,165.7439 L 154.6700,132.4137 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_49"/><path d=" M 231.4100,165.7439 L 223.2600,173.8939 L 300.0000,126.4805 L 308.1500,118.3305 L 231.4100,165.7439 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_50"/><path d=" M 231.4100,165.7439 L 223.2600,173.8939 L 300.0000,126.4805 L 308.1500,118.3305 L 231.4100,165.7439 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_51"/><path d=" M 308.1500,118.3305 L 300.0000,126.4805 L 376.7400,158.4024 L 384.8900,150.2524 L 308.1500,118.3305 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_52"/><path d=" M 308.1500,118.3305 L 300.0000,126.4805 L 376.7400,158.4024 L 384.8900,150.2524 L 308.1500,118.3305 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_53"/><path d=" M 384.8900,150.2524 L 376.7400,158.4024 L 453.4800,177.0235 L 461.6300,168.8735 L 384.8900,150.2524 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 384.8900,150.2524 L 376.7400,158.4024 L 453.4800,177.0235 L 461.6300,168.8735 L 384.8900,150.2524 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_55"/><path d=" M 146.5200,92.2114 L 138.3700,100.3614 L 138.3700,100.3614 L 146.5200,92.2114 L 146.5200,92.2114 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_56"/><path d=" M 146.5200,92.2114 L 138.3700,100.3614 L 138.3700,100.3614 L 146.5200,92.2114 L 146.5200,92.2114 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_57"/><path d=" M 146.5200,92.2114 L 138.3700,100.3614 L 215.1100,148.7137 L 223.2600,140.5637 L 146.5200,92.2114 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_58"/><path d=" M 146.5200,92.2114 L 138.3700,100.3614 L 215.1100,148.7137 L 223.2600,140.5637 L 146.5200,92.2114 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_59"/><path d=" M 223.2600,140.5637 L 215.1100,148.7137 L 291.8500,138.6990 L 300.0000,130.5490 L 223.2600,140.5637 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 223.2600,140.5637 L 215.1100,148.7137 L 291.8500,138.6990 L 300.0000,130.5490 L 223.2600,140.5637 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 300.0000,130.5490 L 291.8500,138.6990 L 368.5900,184.5476 L 376.7400,176.3976 L 300.0000,130.5490 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_62"/><path d=" M 300.0000,130.5490 L 291.8500,138.6990 L 368.5900,184.5476 L 376.7400,176.3976 L 300.0000,130.5490 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_63"/><path d=" M 376.7400,176.3976 L 368.5900,184.5476 L 445.3300,89.4078 L 453.4800,81.2578 L 376.7400,176.3976 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_64"/><path d=" M 376.7400,176.3976 L 368.5900,184.5476 L 445.3300,89.4078 L 453.4800,81.2578 L 376.7400,176.3976 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_65"/><ellipse cx="154.67" cy="132.41368" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_66"/><ellipse cx="231.41" cy="165.74392" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_67"/><ellipse cx="308.15" cy="118.33048" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_68"/><ellipse cx="384.89" cy="150.2524" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_69"/><ellipse cx="461.63" cy="168.87352" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_70"/><ellipse cx="146.52" cy="92.21136" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_71"/><ellipse cx="223.26" cy="140.56368" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_72"/><ellipse cx="300" cy="130.54896" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_73"/><ellipse cx="376.74" cy="176.3976" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_74"/><ellipse cx="453.48" cy="81.25776" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_75"/><path d=" M 500.0000,169.0300 L 483.7000,185.3300" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 483.7000,185.3300 L 100.0000,185.3300" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 100.0000,185.3300 L 116.3000,169.0300" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 154.6700,37.0000 L 138.3700,53.3000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><path d=" M 138.3700,53.3000 L 138.3700,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_80"/><path d=" M 138.3700,200.0000 L 154.6700,183.7000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_81"/><text id="ezcGraphTextBox_4" x="122.8" text-length="254.4px" y="33" style="font-size: 30px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line chart title</text><text id="ezcGraphTextBox_8" x="19" text-length="44.52px" y="55" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_10" x="19" text-length="44.52px" y="73" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_20" x="191.6416" text-length="46.9368px" y="198.2" style="font-size: 11px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_24" x="268.3816" text-length="46.9368px" y="198.2" style="font-size: 11px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_28" x="345.1216" text-length="46.9368px" y="198.2" style="font-size: 11px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_32" x="421.8616" text-length="46.9368px" y="198.2" style="font-size: 11px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_33" x="129.5881" text-length="6.8634px" y="183.53" style="font-size: 11px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_37" x="115.8613" text-length="20.5902px" y="144.41" style="font-size: 11px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_41" x="115.8613" text-length="20.5902px" y="105.29" style="font-size: 11px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_45" x="115.8613" text-length="20.5902px" y="80.84" style="font-size: 11px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,35.0000 L 1.0000,1.0000 L 499.0000,1.0000 L 499.0000,35.0000 L 1.0000,35.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,34.0000 L 2.0000,2.0000 L 498.0000,2.0000 L 498.0000,34.0000 L 2.0000,34.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><path d=" M 1.0000,199.0000 L 1.0000,38.0000 L 99.0000,38.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_5"/><path d=" M 2.0000,198.0000 L 2.0000,39.0000 L 98.0000,39.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_6"/><ellipse cx="11" cy="48" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_7"/><ellipse cx="11" cy="66" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_9"/><path d=" M 100.0000,185.3300 L 116.3000,169.0300 L 500.0000,169.0300 L 483.7000,185.3300 L 100.0000,185.3300 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 116.3000,169.0300 L 500.0000,169.0300" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 492.0000,173.0300 L 500.0000,169.0300 L 492.0000,165.0300 L 492.0000,173.0300 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 138.3700,200.0000 L 154.6700,183.7000 L 154.6700,37.0000 L 138.3700,53.3000 L 138.3700,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 154.6700,183.7000 L 154.6700,37.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 152.6700,41.0000 L 154.6700,37.0000 L 156.6700,41.0000 L 152.6700,41.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_16"/><path d=" M 231.4100,169.0300 L 231.4100,51.6700" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 215.1100,182.6300 L 231.4100,166.3300 L 231.4100,169.0300 L 215.1100,185.3300 L 215.1100,182.6300 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_18"/><path d=" M 215.1100,182.6300 L 231.4100,166.3300 L 231.4100,169.0300 L 215.1100,185.3300 L 215.1100,182.6300 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_19"/><path d=" M 308.1500,169.0300 L 308.1500,51.6700" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 291.8500,182.6300 L 308.1500,166.3300 L 308.1500,169.0300 L 291.8500,185.3300 L 291.8500,182.6300 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_22"/><path d=" M 291.8500,182.6300 L 308.1500,166.3300 L 308.1500,169.0300 L 291.8500,185.3300 L 291.8500,182.6300 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_23"/><path d=" M 384.8900,169.0300 L 384.8900,51.6700" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 368.5900,182.6300 L 384.8900,166.3300 L 384.8900,169.0300 L 368.5900,185.3300 L 368.5900,182.6300 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_26"/><path d=" M 368.5900,182.6300 L 384.8900,166.3300 L 384.8900,169.0300 L 368.5900,185.3300 L 368.5900,182.6300 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_27"/><path d=" M 461.6300,169.0300 L 461.6300,51.6700" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 445.3300,182.6300 L 461.6300,166.3300 L 461.6300,169.0300 L 445.3300,185.3300 L 445.3300,182.6300 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_30"/><path d=" M 445.3300,182.6300 L 461.6300,166.3300 L 461.6300,169.0300 L 445.3300,185.3300 L 445.3300,182.6300 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_31"/><path d=" M 461.6300,160.8148 L 154.6700,160.8148" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 138.3700,177.5060 L 154.6700,161.2060 L 155.6293,161.2060 L 139.3293,177.5060 L 138.3700,177.5060 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_35"/><path d=" M 138.3700,177.5060 L 154.6700,161.2060 L 155.6293,161.2060 L 139.3293,177.5060 L 138.3700,177.5060 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_36"/><path d=" M 461.6300,153.7732 L 154.6700,153.7732" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 138.3700,169.6820 L 154.6700,153.3820 L 155.6293,153.3820 L 139.3293,169.6820 L 138.3700,169.6820 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_38"/><path d=" M 138.3700,169.6820 L 154.6700,153.3820 L 155.6293,153.3820 L 139.3293,169.6820 L 138.3700,169.6820 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_39"/><path d=" M 461.6300,145.5580 L 154.6700,145.5580" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 138.3700,161.8580 L 154.6700,145.5580 L 155.6293,145.5580 L 139.3293,161.8580 L 138.3700,161.8580 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_41"/><path d=" M 138.3700,161.8580 L 154.6700,145.5580 L 155.6293,145.5580 L 139.3293,161.8580 L 138.3700,161.8580 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_42"/><path d=" M 461.6300,137.3428 L 154.6700,137.3428" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 138.3700,154.0340 L 154.6700,137.7340 L 155.6293,137.7340 L 139.3293,154.0340 L 138.3700,154.0340 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 138.3700,154.0340 L 154.6700,137.7340 L 155.6293,137.7340 L 139.3293,154.0340 L 138.3700,154.0340 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 461.6300,130.3012 L 154.6700,130.3012" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 138.3700,146.2100 L 154.6700,129.9100 L 157.5478,129.9100 L 141.2477,146.2100 L 138.3700,146.2100 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_47"/><path d=" M 138.3700,146.2100 L 154.6700,129.9100 L 157.5478,129.9100 L 141.2477,146.2100 L 138.3700,146.2100 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_48"/><path d=" M 461.6300,122.0860 L 154.6700,122.0860" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 138.3700,138.3860 L 154.6700,122.0860 L 155.6293,122.0860 L 139.3293,138.3860 L 138.3700,138.3860 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 138.3700,138.3860 L 154.6700,122.0860 L 155.6293,122.0860 L 139.3293,138.3860 L 138.3700,138.3860 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_52"/><path d=" M 461.6300,113.8708 L 154.6700,113.8708" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 138.3700,130.5620 L 154.6700,114.2620 L 155.6293,114.2620 L 139.3293,130.5620 L 138.3700,130.5620 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 138.3700,130.5620 L 154.6700,114.2620 L 155.6293,114.2620 L 139.3293,130.5620 L 138.3700,130.5620 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_55"/><path d=" M 461.6300,106.8292 L 154.6700,106.8292" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 138.3700,122.7380 L 154.6700,106.4380 L 155.6293,106.4380 L 139.3293,122.7380 L 138.3700,122.7380 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 138.3700,122.7380 L 154.6700,106.4380 L 155.6293,106.4380 L 139.3293,122.7380 L 138.3700,122.7380 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 461.6300,98.6140 L 154.6700,98.6140" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 138.3700,114.9140 L 154.6700,98.6140 L 155.6293,98.6140 L 139.3293,114.9140 L 138.3700,114.9140 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 138.3700,114.9140 L 154.6700,98.6140 L 155.6293,98.6140 L 139.3293,114.9140 L 138.3700,114.9140 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 461.6300,90.3988 L 154.6700,90.3988" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 138.3700,107.0900 L 154.6700,90.7900 L 157.5478,90.7900 L 141.2477,107.0900 L 138.3700,107.0900 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_63"/><path d=" M 138.3700,107.0900 L 154.6700,90.7900 L 157.5478,90.7900 L 141.2477,107.0900 L 138.3700,107.0900 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_64"/><path d=" M 461.6300,83.3572 L 154.6700,83.3572" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 138.3700,99.2660 L 154.6700,82.9660 L 155.6293,82.9660 L 139.3293,99.2660 L 138.3700,99.2660 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_67"/><path d=" M 138.3700,99.2660 L 154.6700,82.9660 L 155.6293,82.9660 L 139.3293,99.2660 L 138.3700,99.2660 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_68"/><path d=" M 461.6300,75.1420 L 154.6700,75.1420" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 138.3700,91.4420 L 154.6700,75.1420 L 155.6293,75.1420 L 139.3293,91.4420 L 138.3700,91.4420 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 138.3700,91.4420 L 154.6700,75.1420 L 155.6293,75.1420 L 139.3293,91.4420 L 138.3700,91.4420 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 461.6300,66.9268 L 154.6700,66.9268" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 138.3700,83.6180 L 154.6700,67.3180 L 155.6293,67.3180 L 139.3293,83.6180 L 138.3700,83.6180 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 138.3700,83.6180 L 154.6700,67.3180 L 155.6293,67.3180 L 139.3293,83.6180 L 138.3700,83.6180 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_74"/><path d=" M 461.6300,59.8852 L 154.6700,59.8852" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 138.3700,75.7940 L 154.6700,59.4940 L 155.6293,59.4940 L 139.3293,75.7940 L 138.3700,75.7940 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 138.3700,75.7940 L 154.6700,59.4940 L 155.6293,59.4940 L 139.3293,75.7940 L 138.3700,75.7940 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_77"/><path d=" M 461.6300,51.6700 L 154.6700,51.6700" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 138.3700,67.9700 L 154.6700,51.6700 L 157.5478,51.6700 L 141.2477,67.9700 L 138.3700,67.9700 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 138.3700,67.9700 L 154.6700,51.6700 L 157.5478,51.6700 L 141.2477,67.9700 L 138.3700,67.9700 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_80"/><path d=" M 154.6700,132.4137 L 146.5200,140.5637 L 146.5200,140.5637 L 154.6700,132.4137 L 154.6700,132.4137 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_82"/><path d=" M 154.6700,132.4137 L 146.5200,140.5637 L 146.5200,140.5637 L 154.6700,132.4137 L 154.6700,132.4137 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_83"/><path d=" M 154.6700,132.4137 L 146.5200,140.5637 L 223.2600,173.8939 L 231.4100,165.7439 L 154.6700,132.4137 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_84"/><path d=" M 154.6700,132.4137 L 146.5200,140.5637 L 223.2600,173.8939 L 231.4100,165.7439 L 154.6700,132.4137 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_85"/><path d=" M 231.4100,165.7439 L 223.2600,173.8939 L 300.0000,126.4805 L 308.1500,118.3305 L 231.4100,165.7439 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_86"/><path d=" M 231.4100,165.7439 L 223.2600,173.8939 L 300.0000,126.4805 L 308.1500,118.3305 L 231.4100,165.7439 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_87"/><path d=" M 308.1500,118.3305 L 300.0000,126.4805 L 376.7400,158.4024 L 384.8900,150.2524 L 308.1500,118.3305 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_88"/><path d=" M 308.1500,118.3305 L 300.0000,126.4805 L 376.7400,158.4024 L 384.8900,150.2524 L 308.1500,118.3305 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_89"/><path d=" M 384.8900,150.2524 L 376.7400,158.4024 L 453.4800,177.0235 L 461.6300,168.8735 L 384.8900,150.2524 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_90"/><path d=" M 384.8900,150.2524 L 376.7400,158.4024 L 453.4800,177.0235 L 461.6300,168.8735 L 384.8900,150.2524 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_91"/><path d=" M 146.5200,92.2114 L 138.3700,100.3614 L 138.3700,100.3614 L 146.5200,92.2114 L 146.5200,92.2114 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_92"/><path d=" M 146.5200,92.2114 L 138.3700,100.3614 L 138.3700,100.3614 L 146.5200,92.2114 L 146.5200,92.2114 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_93"/><path d=" M 146.5200,92.2114 L 138.3700,100.3614 L 215.1100,148.7137 L 223.2600,140.5637 L 146.5200,92.2114 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_94"/><path d=" M 146.5200,92.2114 L 138.3700,100.3614 L 215.1100,148.7137 L 223.2600,140.5637 L 146.5200,92.2114 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_95"/><path d=" M 223.2600,140.5637 L 215.1100,148.7137 L 291.8500,138.6990 L 300.0000,130.5490 L 223.2600,140.5637 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_96"/><path d=" M 223.2600,140.5637 L 215.1100,148.7137 L 291.8500,138.6990 L 300.0000,130.5490 L 223.2600,140.5637 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_97"/><path d=" M 300.0000,130.5490 L 291.8500,138.6990 L 368.5900,184.5476 L 376.7400,176.3976 L 300.0000,130.5490 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_98"/><path d=" M 300.0000,130.5490 L 291.8500,138.6990 L 368.5900,184.5476 L 376.7400,176.3976 L 300.0000,130.5490 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_99"/><path d=" M 376.7400,176.3976 L 368.5900,184.5476 L 445.3300,89.4078 L 453.4800,81.2578 L 376.7400,176.3976 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_100"/><path d=" M 376.7400,176.3976 L 368.5900,184.5476 L 445.3300,89.4078 L 453.4800,81.2578 L 376.7400,176.3976 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_101"/><ellipse cx="154.67" cy="132.41368" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_102"/><ellipse cx="231.41" cy="165.74392" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_103"/><ellipse cx="308.15" cy="118.33048" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_104"/><ellipse cx="384.89" cy="150.2524" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_105"/><ellipse cx="461.63" cy="168.87352" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_106"/><ellipse cx="146.52" cy="92.21136" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_107"/><ellipse cx="223.26" cy="140.56368" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_108"/><ellipse cx="300" cy="130.54896" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_109"/><ellipse cx="376.74" cy="176.3976" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_110"/><ellipse cx="453.48" cy="81.25776" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_111"/><path d=" M 500.0000,169.0300 L 483.7000,185.3300" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_112"/><path d=" M 483.7000,185.3300 L 100.0000,185.3300" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_113"/><path d=" M 100.0000,185.3300 L 116.3000,169.0300" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_114"/><path d=" M 154.6700,37.0000 L 138.3700,53.3000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_115"/><path d=" M 138.3700,53.3000 L 138.3700,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_116"/><path d=" M 138.3700,200.0000 L 154.6700,183.7000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_117"/><text id="ezcGraphTextBox_4" x="122.8" text-length="254.4px" y="33" style="font-size: 30px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line chart title</text><text id="ezcGraphTextBox_8" x="19" text-length="44.52px" y="55" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_10" x="19" text-length="44.52px" y="73" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_20" x="191.6416" text-length="46.9368px" y="198.2" style="font-size: 11px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_24" x="268.3816" text-length="46.9368px" y="198.2" style="font-size: 11px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_28" x="345.1216" text-length="46.9368px" y="198.2" style="font-size: 11px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_32" x="421.8616" text-length="46.9368px" y="198.2" style="font-size: 11px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_33" x="129.5881" text-length="6.8634px" y="183.53" style="font-size: 11px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_49" x="115.8613" text-length="20.5902px" y="144.41" style="font-size: 11px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_65" x="115.8613" text-length="20.5902px" y="105.29" style="font-size: 11px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_81" x="115.8613" text-length="20.5902px" y="80.84" style="font-size: 11px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer3dTest_testRender3dLineChartSmallMaxFontSize.svg b/tests/data/compare/ezcGraphRenderer3dTest_testRender3dLineChartSmallMaxFontSize.svg
index 2fdfe5b..50926d5 100644
--- a/tests/data/compare/ezcGraphRenderer3dTest_testRender3dLineChartSmallMaxFontSize.svg
+++ b/tests/data/compare/ezcGraphRenderer3dTest_testRender3dLineChartSmallMaxFontSize.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,11.0000 L 1.0000,1.0000 L 499.0000,1.0000 L 499.0000,11.0000 L 1.0000,11.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,10.0000 L 2.0000,2.0000 L 498.0000,2.0000 L 498.0000,10.0000 L 2.0000,10.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><path d=" M 1.0000,199.0000 L 1.0000,14.0000 L 99.0000,14.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_5"/><path d=" M 2.0000,198.0000 L 2.0000,15.0000 L 98.0000,15.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_6"/><ellipse cx="11" cy="24" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_7"/><ellipse cx="11" cy="42" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_9"/><path d=" M 100.0000,183.1700 L 118.7000,164.4700 L 500.0000,164.4700 L 481.3000,183.1700 L 100.0000,183.1700 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 118.7000,164.4700 L 500.0000,164.4700" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 492.0000,168.4700 L 500.0000,164.4700 L 492.0000,160.4700 L 492.0000,168.4700 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 138.1300,200.0000 L 156.8300,181.3000 L 156.8300,13.0000 L 138.1300,31.7000 L 138.1300,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 156.8300,181.3000 L 156.8300,13.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 154.8300,17.0000 L 156.8300,13.0000 L 158.8300,17.0000 L 154.8300,17.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_16"/><path d=" M 233.0900,164.4700 L 233.0900,29.8300" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 214.3900,180.4700 L 233.0900,161.7700 L 233.0900,164.4700 L 214.3900,183.1700 L 214.3900,180.4700 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_18"/><path d=" M 214.3900,180.4700 L 233.0900,161.7700 L 233.0900,164.4700 L 214.3900,183.1700 L 214.3900,180.4700 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_19"/><path d=" M 309.3500,164.4700 L 309.3500,29.8300" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 290.6500,180.4700 L 309.3500,161.7700 L 309.3500,164.4700 L 290.6500,183.1700 L 290.6500,180.4700 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_22"/><path d=" M 290.6500,180.4700 L 309.3500,161.7700 L 309.3500,164.4700 L 290.6500,183.1700 L 290.6500,180.4700 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_23"/><path d=" M 385.6100,164.4700 L 385.6100,29.8300" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 366.9100,180.4700 L 385.6100,161.7700 L 385.6100,164.4700 L 366.9100,183.1700 L 366.9100,180.4700 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_26"/><path d=" M 366.9100,180.4700 L 385.6100,161.7700 L 385.6100,164.4700 L 366.9100,183.1700 L 366.9100,180.4700 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_27"/><path d=" M 461.8700,164.4700 L 461.8700,29.8300" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 443.1700,180.4700 L 461.8700,161.7700 L 461.8700,164.4700 L 443.1700,183.1700 L 443.1700,180.4700 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_30"/><path d=" M 443.1700,180.4700 L 461.8700,161.7700 L 461.8700,164.4700 L 443.1700,183.1700 L 443.1700,180.4700 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_31"/><path d=" M 461.8700,120.0388 L 156.8300,120.0388" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 138.1300,138.2900 L 156.8300,119.5900 L 159.6898,119.5900 L 140.9898,138.2900 L 138.1300,138.2900 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_35"/><path d=" M 138.1300,138.2900 L 156.8300,119.5900 L 159.6898,119.5900 L 140.9898,138.2900 L 138.1300,138.2900 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_36"/><path d=" M 461.8700,74.2612 L 156.8300,74.2612" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 138.1300,93.4100 L 156.8300,74.7100 L 159.6898,74.7100 L 140.9898,93.4100 L 138.1300,93.4100 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_39"/><path d=" M 138.1300,93.4100 L 156.8300,74.7100 L 159.6898,74.7100 L 140.9898,93.4100 L 138.1300,93.4100 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_40"/><path d=" M 461.8700,29.8300 L 156.8300,29.8300" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 138.1300,48.5300 L 156.8300,29.8300 L 159.6898,29.8300 L 140.9898,48.5300 L 138.1300,48.5300 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_43"/><path d=" M 138.1300,48.5300 L 156.8300,29.8300 L 159.6898,29.8300 L 140.9898,48.5300 L 138.1300,48.5300 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_44"/><path d=" M 156.8300,122.4623 L 147.4800,131.8123 L 147.4800,131.8123 L 156.8300,122.4623 L 156.8300,122.4623 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_46"/><path d=" M 156.8300,122.4623 L 147.4800,131.8123 L 147.4800,131.8123 L 156.8300,122.4623 L 156.8300,122.4623 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_47"/><path d=" M 156.8300,122.4623 L 147.4800,131.8123 L 223.7400,170.0501 L 233.0900,160.7001 L 156.8300,122.4623 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_48"/><path d=" M 156.8300,122.4623 L 147.4800,131.8123 L 223.7400,170.0501 L 233.0900,160.7001 L 156.8300,122.4623 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_49"/><path d=" M 233.0900,160.7001 L 223.7400,170.0501 L 300.0000,115.6555 L 309.3500,106.3055 L 233.0900,160.7001 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_50"/><path d=" M 233.0900,160.7001 L 223.7400,170.0501 L 300.0000,115.6555 L 309.3500,106.3055 L 233.0900,160.7001 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_51"/><path d=" M 309.3500,106.3055 L 300.0000,115.6555 L 376.2600,152.2776 L 385.6100,142.9276 L 309.3500,106.3055 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_52"/><path d=" M 309.3500,106.3055 L 300.0000,115.6555 L 376.2600,152.2776 L 385.6100,142.9276 L 309.3500,106.3055 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_53"/><path d=" M 385.6100,142.9276 L 376.2600,152.2776 L 452.5200,173.6405 L 461.8700,164.2905 L 385.6100,142.9276 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 385.6100,142.9276 L 376.2600,152.2776 L 452.5200,173.6405 L 461.8700,164.2905 L 385.6100,142.9276 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_55"/><path d=" M 147.4800,76.3406 L 138.1300,85.6906 L 138.1300,85.6906 L 147.4800,76.3406 L 147.4800,76.3406 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_56"/><path d=" M 147.4800,76.3406 L 138.1300,85.6906 L 138.1300,85.6906 L 147.4800,76.3406 L 147.4800,76.3406 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_57"/><path d=" M 147.4800,76.3406 L 138.1300,85.6906 L 214.3900,141.1623 L 223.7400,131.8123 L 147.4800,76.3406 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_58"/><path d=" M 147.4800,76.3406 L 138.1300,85.6906 L 214.3900,141.1623 L 223.7400,131.8123 L 147.4800,76.3406 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_59"/><path d=" M 223.7400,131.8123 L 214.3900,141.1623 L 290.6500,129.6730 L 300.0000,120.3230 L 223.7400,131.8123 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 223.7400,131.8123 L 214.3900,141.1623 L 290.6500,129.6730 L 300.0000,120.3230 L 223.7400,131.8123 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 300.0000,120.3230 L 290.6500,129.6730 L 366.9100,182.2724 L 376.2600,172.9224 L 300.0000,120.3230 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_62"/><path d=" M 300.0000,120.3230 L 290.6500,129.6730 L 366.9100,182.2724 L 376.2600,172.9224 L 300.0000,120.3230 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_63"/><path d=" M 376.2600,172.9224 L 366.9100,182.2724 L 443.1700,73.1242 L 452.5200,63.7742 L 376.2600,172.9224 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_64"/><path d=" M 376.2600,172.9224 L 366.9100,182.2724 L 443.1700,73.1242 L 452.5200,63.7742 L 376.2600,172.9224 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_65"/><ellipse cx="156.83" cy="122.46232" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_66"/><ellipse cx="233.09" cy="160.70008" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_67"/><ellipse cx="309.35" cy="106.30552" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_68"/><ellipse cx="385.61" cy="142.9276" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_69"/><ellipse cx="461.87" cy="164.29048" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_70"/><ellipse cx="147.48" cy="76.34064" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_71"/><ellipse cx="223.74" cy="131.81232" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_72"/><ellipse cx="300" cy="120.32304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_73"/><ellipse cx="376.26" cy="172.9224" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_74"/><ellipse cx="452.52" cy="63.77424" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_75"/><path d=" M 500.0000,164.4700 L 481.3000,183.1700" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 481.3000,183.1700 L 100.0000,183.1700" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 100.0000,183.1700 L 118.7000,164.4700" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 156.8300,13.0000 L 138.1300,31.7000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><path d=" M 138.1300,31.7000 L 138.1300,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_80"/><path d=" M 138.1300,200.0000 L 156.8300,181.3000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_81"/><text id="ezcGraphTextBox_4" x="224.56" text-length="50.88px" y="9" style="font-size: 6px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line chart title</text><text id="ezcGraphTextBox_8" x="19" text-length="44.52px" y="31" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_10" x="19" text-length="44.52px" y="49" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_20" x="186.3424" text-length="56.0952px" y="198.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_24" x="262.6024" text-length="56.0952px" y="198.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_28" x="338.8624" text-length="56.0952px" y="198.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_32" x="415.1224" text-length="56.0952px" y="198.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_33" x="128.0209" text-length="8.2026px" y="181.37" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_37" x="111.6157" text-length="24.6078px" y="136.49" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_41" x="111.6157" text-length="24.6078px" y="91.61" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_45" x="111.6157" text-length="24.6078px" y="63.56" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,11.0000 L 1.0000,1.0000 L 499.0000,1.0000 L 499.0000,11.0000 L 1.0000,11.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,10.0000 L 2.0000,2.0000 L 498.0000,2.0000 L 498.0000,10.0000 L 2.0000,10.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><path d=" M 1.0000,199.0000 L 1.0000,14.0000 L 99.0000,14.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_5"/><path d=" M 2.0000,198.0000 L 2.0000,15.0000 L 98.0000,15.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_6"/><ellipse cx="11" cy="24" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_7"/><ellipse cx="11" cy="42" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_9"/><path d=" M 100.0000,183.1700 L 118.7000,164.4700 L 500.0000,164.4700 L 481.3000,183.1700 L 100.0000,183.1700 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 118.7000,164.4700 L 500.0000,164.4700" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 492.0000,168.4700 L 500.0000,164.4700 L 492.0000,160.4700 L 492.0000,168.4700 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 138.1300,200.0000 L 156.8300,181.3000 L 156.8300,13.0000 L 138.1300,31.7000 L 138.1300,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 156.8300,181.3000 L 156.8300,13.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 154.8300,17.0000 L 156.8300,13.0000 L 158.8300,17.0000 L 154.8300,17.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_16"/><path d=" M 233.0900,164.4700 L 233.0900,29.8300" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 214.3900,180.4700 L 233.0900,161.7700 L 233.0900,164.4700 L 214.3900,183.1700 L 214.3900,180.4700 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_18"/><path d=" M 214.3900,180.4700 L 233.0900,161.7700 L 233.0900,164.4700 L 214.3900,183.1700 L 214.3900,180.4700 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_19"/><path d=" M 309.3500,164.4700 L 309.3500,29.8300" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 290.6500,180.4700 L 309.3500,161.7700 L 309.3500,164.4700 L 290.6500,183.1700 L 290.6500,180.4700 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_22"/><path d=" M 290.6500,180.4700 L 309.3500,161.7700 L 309.3500,164.4700 L 290.6500,183.1700 L 290.6500,180.4700 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_23"/><path d=" M 385.6100,164.4700 L 385.6100,29.8300" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 366.9100,180.4700 L 385.6100,161.7700 L 385.6100,164.4700 L 366.9100,183.1700 L 366.9100,180.4700 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_26"/><path d=" M 366.9100,180.4700 L 385.6100,161.7700 L 385.6100,164.4700 L 366.9100,183.1700 L 366.9100,180.4700 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_27"/><path d=" M 461.8700,164.4700 L 461.8700,29.8300" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 443.1700,180.4700 L 461.8700,161.7700 L 461.8700,164.4700 L 443.1700,183.1700 L 443.1700,180.4700 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_30"/><path d=" M 443.1700,180.4700 L 461.8700,161.7700 L 461.8700,164.4700 L 443.1700,183.1700 L 443.1700,180.4700 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_31"/><path d=" M 461.8700,155.0452 L 156.8300,155.0452" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 138.1300,174.1940 L 156.8300,155.4940 L 157.7832,155.4940 L 139.0832,174.1940 L 138.1300,174.1940 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_35"/><path d=" M 138.1300,174.1940 L 156.8300,155.4940 L 157.7832,155.4940 L 139.0832,174.1940 L 138.1300,174.1940 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_36"/><path d=" M 461.8700,146.9668 L 156.8300,146.9668" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 138.1300,165.2180 L 156.8300,146.5180 L 157.7832,146.5180 L 139.0832,165.2180 L 138.1300,165.2180 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_38"/><path d=" M 138.1300,165.2180 L 156.8300,146.5180 L 157.7832,146.5180 L 139.0832,165.2180 L 138.1300,165.2180 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_39"/><path d=" M 461.8700,137.5420 L 156.8300,137.5420" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 138.1300,156.2420 L 156.8300,137.5420 L 157.7832,137.5420 L 139.0832,156.2420 L 138.1300,156.2420 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_41"/><path d=" M 138.1300,156.2420 L 156.8300,137.5420 L 157.7832,137.5420 L 139.0832,156.2420 L 138.1300,156.2420 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_42"/><path d=" M 461.8700,128.1172 L 156.8300,128.1172" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 138.1300,147.2660 L 156.8300,128.5660 L 157.7832,128.5660 L 139.0832,147.2660 L 138.1300,147.2660 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 138.1300,147.2660 L 156.8300,128.5660 L 157.7832,128.5660 L 139.0832,147.2660 L 138.1300,147.2660 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 461.8700,120.0388 L 156.8300,120.0388" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 138.1300,138.2900 L 156.8300,119.5900 L 159.6898,119.5900 L 140.9898,138.2900 L 138.1300,138.2900 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_47"/><path d=" M 138.1300,138.2900 L 156.8300,119.5900 L 159.6898,119.5900 L 140.9898,138.2900 L 138.1300,138.2900 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_48"/><path d=" M 461.8700,110.6140 L 156.8300,110.6140" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 138.1300,129.3140 L 156.8300,110.6140 L 157.7832,110.6140 L 139.0832,129.3140 L 138.1300,129.3140 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 138.1300,129.3140 L 156.8300,110.6140 L 157.7832,110.6140 L 139.0832,129.3140 L 138.1300,129.3140 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_52"/><path d=" M 461.8700,101.1892 L 156.8300,101.1892" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 138.1300,120.3380 L 156.8300,101.6380 L 157.7832,101.6380 L 139.0832,120.3380 L 138.1300,120.3380 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 138.1300,120.3380 L 156.8300,101.6380 L 157.7832,101.6380 L 139.0832,120.3380 L 138.1300,120.3380 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_55"/><path d=" M 461.8700,93.1108 L 156.8300,93.1108" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 138.1300,111.3620 L 156.8300,92.6620 L 157.7832,92.6620 L 139.0832,111.3620 L 138.1300,111.3620 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 138.1300,111.3620 L 156.8300,92.6620 L 157.7832,92.6620 L 139.0832,111.3620 L 138.1300,111.3620 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 461.8700,83.6860 L 156.8300,83.6860" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 138.1300,102.3860 L 156.8300,83.6860 L 157.7832,83.6860 L 139.0832,102.3860 L 138.1300,102.3860 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 138.1300,102.3860 L 156.8300,83.6860 L 157.7832,83.6860 L 139.0832,102.3860 L 138.1300,102.3860 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 461.8700,74.2612 L 156.8300,74.2612" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 138.1300,93.4100 L 156.8300,74.7100 L 159.6898,74.7100 L 140.9898,93.4100 L 138.1300,93.4100 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_63"/><path d=" M 138.1300,93.4100 L 156.8300,74.7100 L 159.6898,74.7100 L 140.9898,93.4100 L 138.1300,93.4100 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_64"/><path d=" M 461.8700,66.1828 L 156.8300,66.1828" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 138.1300,84.4340 L 156.8300,65.7340 L 157.7832,65.7340 L 139.0832,84.4340 L 138.1300,84.4340 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_67"/><path d=" M 138.1300,84.4340 L 156.8300,65.7340 L 157.7832,65.7340 L 139.0832,84.4340 L 138.1300,84.4340 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_68"/><path d=" M 461.8700,56.7580 L 156.8300,56.7580" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 138.1300,75.4580 L 156.8300,56.7580 L 157.7832,56.7580 L 139.0832,75.4580 L 138.1300,75.4580 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 138.1300,75.4580 L 156.8300,56.7580 L 157.7832,56.7580 L 139.0832,75.4580 L 138.1300,75.4580 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 461.8700,47.3332 L 156.8300,47.3332" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 138.1300,66.4820 L 156.8300,47.7820 L 157.7832,47.7820 L 139.0832,66.4820 L 138.1300,66.4820 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 138.1300,66.4820 L 156.8300,47.7820 L 157.7832,47.7820 L 139.0832,66.4820 L 138.1300,66.4820 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_74"/><path d=" M 461.8700,39.2548 L 156.8300,39.2548" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 138.1300,57.5060 L 156.8300,38.8060 L 157.7832,38.8060 L 139.0832,57.5060 L 138.1300,57.5060 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 138.1300,57.5060 L 156.8300,38.8060 L 157.7832,38.8060 L 139.0832,57.5060 L 138.1300,57.5060 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_77"/><path d=" M 461.8700,29.8300 L 156.8300,29.8300" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 138.1300,48.5300 L 156.8300,29.8300 L 159.6898,29.8300 L 140.9898,48.5300 L 138.1300,48.5300 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 138.1300,48.5300 L 156.8300,29.8300 L 159.6898,29.8300 L 140.9898,48.5300 L 138.1300,48.5300 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_80"/><path d=" M 156.8300,122.4623 L 147.4800,131.8123 L 147.4800,131.8123 L 156.8300,122.4623 L 156.8300,122.4623 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_82"/><path d=" M 156.8300,122.4623 L 147.4800,131.8123 L 147.4800,131.8123 L 156.8300,122.4623 L 156.8300,122.4623 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_83"/><path d=" M 156.8300,122.4623 L 147.4800,131.8123 L 223.7400,170.0501 L 233.0900,160.7001 L 156.8300,122.4623 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_84"/><path d=" M 156.8300,122.4623 L 147.4800,131.8123 L 223.7400,170.0501 L 233.0900,160.7001 L 156.8300,122.4623 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_85"/><path d=" M 233.0900,160.7001 L 223.7400,170.0501 L 300.0000,115.6555 L 309.3500,106.3055 L 233.0900,160.7001 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_86"/><path d=" M 233.0900,160.7001 L 223.7400,170.0501 L 300.0000,115.6555 L 309.3500,106.3055 L 233.0900,160.7001 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_87"/><path d=" M 309.3500,106.3055 L 300.0000,115.6555 L 376.2600,152.2776 L 385.6100,142.9276 L 309.3500,106.3055 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_88"/><path d=" M 309.3500,106.3055 L 300.0000,115.6555 L 376.2600,152.2776 L 385.6100,142.9276 L 309.3500,106.3055 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_89"/><path d=" M 385.6100,142.9276 L 376.2600,152.2776 L 452.5200,173.6405 L 461.8700,164.2905 L 385.6100,142.9276 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_90"/><path d=" M 385.6100,142.9276 L 376.2600,152.2776 L 452.5200,173.6405 L 461.8700,164.2905 L 385.6100,142.9276 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_91"/><path d=" M 147.4800,76.3406 L 138.1300,85.6906 L 138.1300,85.6906 L 147.4800,76.3406 L 147.4800,76.3406 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_92"/><path d=" M 147.4800,76.3406 L 138.1300,85.6906 L 138.1300,85.6906 L 147.4800,76.3406 L 147.4800,76.3406 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_93"/><path d=" M 147.4800,76.3406 L 138.1300,85.6906 L 214.3900,141.1623 L 223.7400,131.8123 L 147.4800,76.3406 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_94"/><path d=" M 147.4800,76.3406 L 138.1300,85.6906 L 214.3900,141.1623 L 223.7400,131.8123 L 147.4800,76.3406 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_95"/><path d=" M 223.7400,131.8123 L 214.3900,141.1623 L 290.6500,129.6730 L 300.0000,120.3230 L 223.7400,131.8123 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_96"/><path d=" M 223.7400,131.8123 L 214.3900,141.1623 L 290.6500,129.6730 L 300.0000,120.3230 L 223.7400,131.8123 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_97"/><path d=" M 300.0000,120.3230 L 290.6500,129.6730 L 366.9100,182.2724 L 376.2600,172.9224 L 300.0000,120.3230 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_98"/><path d=" M 300.0000,120.3230 L 290.6500,129.6730 L 366.9100,182.2724 L 376.2600,172.9224 L 300.0000,120.3230 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_99"/><path d=" M 376.2600,172.9224 L 366.9100,182.2724 L 443.1700,73.1242 L 452.5200,63.7742 L 376.2600,172.9224 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_100"/><path d=" M 376.2600,172.9224 L 366.9100,182.2724 L 443.1700,73.1242 L 452.5200,63.7742 L 376.2600,172.9224 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_101"/><ellipse cx="156.83" cy="122.46232" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_102"/><ellipse cx="233.09" cy="160.70008" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_103"/><ellipse cx="309.35" cy="106.30552" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_104"/><ellipse cx="385.61" cy="142.9276" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_105"/><ellipse cx="461.87" cy="164.29048" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_106"/><ellipse cx="147.48" cy="76.34064" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_107"/><ellipse cx="223.74" cy="131.81232" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_108"/><ellipse cx="300" cy="120.32304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_109"/><ellipse cx="376.26" cy="172.9224" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_110"/><ellipse cx="452.52" cy="63.77424" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_111"/><path d=" M 500.0000,164.4700 L 481.3000,183.1700" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_112"/><path d=" M 481.3000,183.1700 L 100.0000,183.1700" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_113"/><path d=" M 100.0000,183.1700 L 118.7000,164.4700" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_114"/><path d=" M 156.8300,13.0000 L 138.1300,31.7000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_115"/><path d=" M 138.1300,31.7000 L 138.1300,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_116"/><path d=" M 138.1300,200.0000 L 156.8300,181.3000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_117"/><text id="ezcGraphTextBox_4" x="224.56" text-length="50.88px" y="9" style="font-size: 6px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line chart title</text><text id="ezcGraphTextBox_8" x="19" text-length="44.52px" y="31" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_10" x="19" text-length="44.52px" y="49" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_20" x="186.3424" text-length="56.0952px" y="198.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_24" x="262.6024" text-length="56.0952px" y="198.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_28" x="338.8624" text-length="56.0952px" y="198.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_32" x="415.1224" text-length="56.0952px" y="198.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_33" x="128.0209" text-length="8.2026px" y="181.37" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_49" x="111.6157" text-length="24.6078px" y="136.49" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_65" x="111.6157" text-length="24.6078px" y="91.61" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_81" x="111.6157" text-length="24.6078px" y="63.56" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer3dTest_testRenderBarChart.svg b/tests/data/compare/ezcGraphRenderer3dTest_testRenderBarChart.svg
index ec412f1..2cdd8a0 100644
--- a/tests/data/compare/ezcGraphRenderer3dTest_testRenderBarChart.svg
+++ b/tests/data/compare/ezcGraphRenderer3dTest_testRenderBarChart.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><path d=" M 4.0000,18.0000 L 4.0000,4.0000 L 18.0000,4.0000 L 18.0000,18.0000 L 4.0000,18.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_4"/><path d=" M 4.0000,36.0000 L 4.0000,22.0000 L 18.0000,22.0000 L 18.0000,36.0000 L 4.0000,36.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_6"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000 L 500.0000,162.0000 L 480.0000,182.0000 L 100.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 120.0000,162.0000 L 500.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 492.0000,166.0000 L 500.0000,162.0000 L 492.0000,158.0000 L 492.0000,166.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 218.8000,162.0000 L 218.8000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 198.8000,179.3000 L 218.8000,159.3000 L 218.8000,164.7000 L 198.8000,184.7000 L 198.8000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_16"/><path d=" M 198.8000,179.3000 L 218.8000,159.3000 L 218.8000,164.7000 L 198.8000,184.7000 L 198.8000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_17"/><path d=" M 279.6000,162.0000 L 279.6000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 259.6000,179.3000 L 279.6000,159.3000 L 279.6000,164.7000 L 259.6000,184.7000 L 259.6000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_20"/><path d=" M 259.6000,179.3000 L 279.6000,159.3000 L 279.6000,164.7000 L 259.6000,184.7000 L 259.6000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_21"/><path d=" M 340.4000,162.0000 L 340.4000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 320.4000,179.3000 L 340.4000,159.3000 L 340.4000,164.7000 L 320.4000,184.7000 L 320.4000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 320.4000,179.3000 L 340.4000,159.3000 L 340.4000,164.7000 L 320.4000,184.7000 L 320.4000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_25"/><path d=" M 401.2000,162.0000 L 401.2000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 381.2000,179.3000 L 401.2000,159.3000 L 401.2000,164.7000 L 381.2000,184.7000 L 381.2000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_28"/><path d=" M 381.2000,179.3000 L 401.2000,159.3000 L 401.2000,164.7000 L 381.2000,184.7000 L 381.2000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_29"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,164.7000 L 442.0000,184.7000 L 442.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_32"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,164.7000 L 442.0000,184.7000 L 442.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_33"/><path d=" M 462.0000,133.2000 L 158.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 160.8500,133.2000 L 140.8500,153.2000 L 138.0000,153.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_36"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 160.8500,133.2000 L 140.8500,153.2000 L 138.0000,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_37"/><path d=" M 462.0000,104.4000 L 158.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 160.8500,104.4000 L 140.8500,124.4000 L 138.0000,124.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_40"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 160.8500,104.4000 L 140.8500,124.4000 L 138.0000,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_41"/><path d=" M 462.0000,75.6000 L 158.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 160.8500,75.6000 L 140.8500,95.6000 L 138.0000,95.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 160.8500,75.6000 L 140.8500,95.6000 L 138.0000,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 462.0000,46.8000 L 158.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 160.8500,46.8000 L 140.8500,66.8000 L 138.0000,66.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_48"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 160.8500,46.8000 L 140.8500,66.8000 L 138.0000,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_49"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_52"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_53"/><path d=" M 160.5196,39.5840 L 144.5196,55.5840 L 168.8776,55.5840 L 184.8776,39.5840 L 160.5196,39.5840 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_55"/><path d=" M 168.8776,180.0000 L 144.5196,180.0000 L 144.5196,55.5840 L 168.8776,55.5840 L 168.8776,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_56"/><path d=" M 184.8776,39.5840 L 168.8776,55.5840 L 168.8776,180.0000 L 184.8776,164.0000 L 184.8776,39.5840 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 187.9224,96.6080 L 171.9224,112.6080 L 196.2804,112.6080 L 212.2804,96.6080 L 187.9224,96.6080 z " style="fill: #8f1919; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_58"/><path d=" M 196.2804,180.0000 L 171.9224,180.0000 L 171.9224,112.6080 L 196.2804,112.6080 L 196.2804,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_59"/><path d=" M 212.2804,96.6080 L 196.2804,112.6080 L 196.2804,180.0000 L 212.2804,164.0000 L 212.2804,96.6080 z " style="fill: #bf2121; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 221.3196,151.6160 L 205.3196,167.6160 L 229.6776,167.6160 L 245.6776,151.6160 L 221.3196,151.6160 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_61"/><path d=" M 229.6776,180.0000 L 205.3196,180.0000 L 205.3196,167.6160 L 229.6776,167.6160 L 229.6776,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_62"/><path d=" M 245.6776,151.6160 L 229.6776,167.6160 L 229.6776,180.0000 L 245.6776,164.0000 L 245.6776,151.6160 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_63"/><path d=" M 248.7224,157.9520 L 232.7224,173.9520 L 257.0804,173.9520 L 273.0804,157.9520 L 248.7224,157.9520 z " style="fill: #8f1919; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_64"/><path d=" M 257.0804,180.0000 L 232.7224,180.0000 L 232.7224,173.9520 L 257.0804,173.9520 L 257.0804,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_65"/><path d=" M 273.0804,157.9520 L 257.0804,173.9520 L 257.0804,180.0000 L 273.0804,164.0000 L 273.0804,157.9520 z " style="fill: #bf2121; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_66"/><path d=" M 282.1196,145.2800 L 266.1196,161.2800 L 290.4776,161.2800 L 306.4776,145.2800 L 282.1196,145.2800 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_67"/><path d=" M 290.4776,180.0000 L 266.1196,180.0000 L 266.1196,161.2800 L 290.4776,161.2800 L 290.4776,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_68"/><path d=" M 306.4776,145.2800 L 290.4776,161.2800 L 290.4776,180.0000 L 306.4776,164.0000 L 306.4776,145.2800 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_69"/><path d=" M 309.5224,70.6880 L 293.5224,86.6880 L 317.8804,86.6880 L 333.8804,70.6880 L 309.5224,70.6880 z " style="fill: #8f1919; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 317.8804,180.0000 L 293.5224,180.0000 L 293.5224,86.6880 L 317.8804,86.6880 L 317.8804,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_71"/><path d=" M 333.8804,70.6880 L 317.8804,86.6880 L 317.8804,180.0000 L 333.8804,164.0000 L 333.8804,70.6880 z " style="fill: #bf2121; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_72"/><path d=" M 342.9196,136.0640 L 326.9196,152.0640 L 351.2776,152.0640 L 367.2776,136.0640 L 342.9196,136.0640 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 351.2776,180.0000 L 326.9196,180.0000 L 326.9196,152.0640 L 351.2776,152.0640 L 351.2776,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_74"/><path d=" M 367.2776,136.0640 L 351.2776,152.0640 L 351.2776,180.0000 L 367.2776,164.0000 L 367.2776,136.0640 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_75"/><path d=" M 370.3224,129.4400 L 354.3224,145.4400 L 378.6804,145.4400 L 394.6804,129.4400 L 370.3224,129.4400 z " style="fill: #8f1919; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 378.6804,180.0000 L 354.3224,180.0000 L 354.3224,145.4400 L 378.6804,145.4400 L 378.6804,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_77"/><path d=" M 394.6804,129.4400 L 378.6804,145.4400 L 378.6804,180.0000 L 394.6804,164.0000 L 394.6804,129.4400 z " style="fill: #bf2121; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_78"/><path d=" M 403.7196,119.6480 L 387.7196,135.6480 L 412.0776,135.6480 L 428.0776,119.6480 L 403.7196,119.6480 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 412.0776,180.0000 L 387.7196,180.0000 L 387.7196,135.6480 L 412.0776,135.6480 L 412.0776,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_80"/><path d=" M 428.0776,119.6480 L 412.0776,135.6480 L 412.0776,180.0000 L 428.0776,164.0000 L 428.0776,119.6480 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_81"/><path d=" M 431.1224,163.7120 L 415.1224,179.7120 L 439.4804,179.7120 L 455.4804,163.7120 L 431.1224,163.7120 z " style="fill: #8f1919; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_82"/><path d=" M 439.4804,180.0000 L 415.1224,180.0000 L 415.1224,179.7120 L 439.4804,179.7120 L 439.4804,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_83"/><path d=" M 455.4804,163.7120 L 439.4804,179.7120 L 439.4804,180.0000 L 455.4804,164.0000 L 455.4804,163.7120 z " style="fill: #bf2121; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_84"/><path d=" M 500.0000,162.0000 L 480.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_85"/><path d=" M 480.0000,182.0000 L 100.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_86"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_87"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_88"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_89"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_90"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 0</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_14" x="145.504" text-length="45.792px" y="194.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text><text id="ezcGraphTextBox_18" x="206.304" text-length="45.792px" y="194.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_22" x="267.104" text-length="45.792px" y="194.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_26" x="327.904" text-length="45.792px" y="194.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_30" x="388.704" text-length="45.792px" y="194.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_34" x="129.404" text-length="6.696px" y="180.2" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_38" x="116.012" text-length="20.088px" y="151.4" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text><text id="ezcGraphTextBox_42" x="116.012" text-length="20.088px" y="122.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text><text id="ezcGraphTextBox_46" x="116.012" text-length="20.088px" y="93.8" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text><text id="ezcGraphTextBox_50" x="116.012" text-length="20.088px" y="65" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text><text id="ezcGraphTextBox_54" x="116.012" text-length="20.088px" y="50.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><path d=" M 4.0000,18.0000 L 4.0000,4.0000 L 18.0000,4.0000 L 18.0000,18.0000 L 4.0000,18.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_4"/><path d=" M 4.0000,36.0000 L 4.0000,22.0000 L 18.0000,22.0000 L 18.0000,36.0000 L 4.0000,36.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_6"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000 L 500.0000,162.0000 L 480.0000,182.0000 L 100.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 120.0000,162.0000 L 500.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 492.0000,166.0000 L 500.0000,162.0000 L 492.0000,158.0000 L 492.0000,166.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 218.8000,162.0000 L 218.8000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 198.8000,179.3000 L 218.8000,159.3000 L 218.8000,164.7000 L 198.8000,184.7000 L 198.8000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_16"/><path d=" M 198.8000,179.3000 L 218.8000,159.3000 L 218.8000,164.7000 L 198.8000,184.7000 L 198.8000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_17"/><path d=" M 279.6000,162.0000 L 279.6000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 259.6000,179.3000 L 279.6000,159.3000 L 279.6000,164.7000 L 259.6000,184.7000 L 259.6000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_20"/><path d=" M 259.6000,179.3000 L 279.6000,159.3000 L 279.6000,164.7000 L 259.6000,184.7000 L 259.6000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_21"/><path d=" M 340.4000,162.0000 L 340.4000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 320.4000,179.3000 L 340.4000,159.3000 L 340.4000,164.7000 L 320.4000,184.7000 L 320.4000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 320.4000,179.3000 L 340.4000,159.3000 L 340.4000,164.7000 L 320.4000,184.7000 L 320.4000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_25"/><path d=" M 401.2000,162.0000 L 401.2000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 381.2000,179.3000 L 401.2000,159.3000 L 401.2000,164.7000 L 381.2000,184.7000 L 381.2000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_28"/><path d=" M 381.2000,179.3000 L 401.2000,159.3000 L 401.2000,164.7000 L 381.2000,184.7000 L 381.2000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_29"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,164.7000 L 442.0000,184.7000 L 442.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_32"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,164.7000 L 442.0000,184.7000 L 442.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_33"/><path d=" M 462.0000,154.8000 L 158.0000,154.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 138.0000,174.8000 L 158.0000,154.8000 L 158.9500,154.8000 L 138.9500,174.8000 L 138.0000,174.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_36"/><path d=" M 138.0000,174.8000 L 158.0000,154.8000 L 158.9500,154.8000 L 138.9500,174.8000 L 138.0000,174.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_37"/><path d=" M 462.0000,147.6000 L 158.0000,147.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 138.0000,167.6000 L 158.0000,147.6000 L 158.9500,147.6000 L 138.9500,167.6000 L 138.0000,167.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_39"/><path d=" M 138.0000,167.6000 L 158.0000,147.6000 L 158.9500,147.6000 L 138.9500,167.6000 L 138.0000,167.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_40"/><path d=" M 462.0000,140.4000 L 158.0000,140.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 138.0000,160.4000 L 158.0000,140.4000 L 158.9500,140.4000 L 138.9500,160.4000 L 138.0000,160.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_42"/><path d=" M 138.0000,160.4000 L 158.0000,140.4000 L 158.9500,140.4000 L 138.9500,160.4000 L 138.0000,160.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_43"/><path d=" M 462.0000,133.2000 L 158.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 160.8500,133.2000 L 140.8500,153.2000 L 138.0000,153.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_45"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 160.8500,133.2000 L 140.8500,153.2000 L 138.0000,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_46"/><path d=" M 462.0000,126.0000 L 158.0000,126.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 138.0000,146.0000 L 158.0000,126.0000 L 158.9500,126.0000 L 138.9500,146.0000 L 138.0000,146.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_49"/><path d=" M 138.0000,146.0000 L 158.0000,126.0000 L 158.9500,126.0000 L 138.9500,146.0000 L 138.0000,146.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_50"/><path d=" M 462.0000,118.8000 L 158.0000,118.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 138.0000,138.8000 L 158.0000,118.8000 L 158.9500,118.8000 L 138.9500,138.8000 L 138.0000,138.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_52"/><path d=" M 138.0000,138.8000 L 158.0000,118.8000 L 158.9500,118.8000 L 138.9500,138.8000 L 138.0000,138.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_53"/><path d=" M 462.0000,111.6000 L 158.0000,111.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 138.0000,131.6000 L 158.0000,111.6000 L 158.9500,111.6000 L 138.9500,131.6000 L 138.0000,131.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_55"/><path d=" M 138.0000,131.6000 L 158.0000,111.6000 L 158.9500,111.6000 L 138.9500,131.6000 L 138.0000,131.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_56"/><path d=" M 462.0000,104.4000 L 158.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 160.8500,104.4000 L 140.8500,124.4000 L 138.0000,124.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_58"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 160.8500,104.4000 L 140.8500,124.4000 L 138.0000,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_59"/><path d=" M 462.0000,97.2000 L 158.0000,97.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 138.0000,117.2000 L 158.0000,97.2000 L 158.9500,97.2000 L 138.9500,117.2000 L 138.0000,117.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_62"/><path d=" M 138.0000,117.2000 L 158.0000,97.2000 L 158.9500,97.2000 L 138.9500,117.2000 L 138.0000,117.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_63"/><path d=" M 462.0000,90.0000 L 158.0000,90.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 138.0000,110.0000 L 158.0000,90.0000 L 158.9500,90.0000 L 138.9500,110.0000 L 138.0000,110.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_65"/><path d=" M 138.0000,110.0000 L 158.0000,90.0000 L 158.9500,90.0000 L 138.9500,110.0000 L 138.0000,110.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_66"/><path d=" M 462.0000,82.8000 L 158.0000,82.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 138.0000,102.8000 L 158.0000,82.8000 L 158.9500,82.8000 L 138.9500,102.8000 L 138.0000,102.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_68"/><path d=" M 138.0000,102.8000 L 158.0000,82.8000 L 158.9500,82.8000 L 138.9500,102.8000 L 138.0000,102.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_69"/><path d=" M 462.0000,75.6000 L 158.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 160.8500,75.6000 L 140.8500,95.6000 L 138.0000,95.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_71"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 160.8500,75.6000 L 140.8500,95.6000 L 138.0000,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_72"/><path d=" M 462.0000,68.4000 L 158.0000,68.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 138.0000,88.4000 L 158.0000,68.4000 L 158.9500,68.4000 L 138.9500,88.4000 L 138.0000,88.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_75"/><path d=" M 138.0000,88.4000 L 158.0000,68.4000 L 158.9500,68.4000 L 138.9500,88.4000 L 138.0000,88.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_76"/><path d=" M 462.0000,61.2000 L 158.0000,61.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 138.0000,81.2000 L 158.0000,61.2000 L 158.9500,61.2000 L 138.9500,81.2000 L 138.0000,81.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_78"/><path d=" M 138.0000,81.2000 L 158.0000,61.2000 L 158.9500,61.2000 L 138.9500,81.2000 L 138.0000,81.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_79"/><path d=" M 462.0000,54.0000 L 158.0000,54.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_80"/><path d=" M 138.0000,74.0000 L 158.0000,54.0000 L 158.9500,54.0000 L 138.9500,74.0000 L 138.0000,74.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_81"/><path d=" M 138.0000,74.0000 L 158.0000,54.0000 L 158.9500,54.0000 L 138.9500,74.0000 L 138.0000,74.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_82"/><path d=" M 462.0000,46.8000 L 158.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_83"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 160.8500,46.8000 L 140.8500,66.8000 L 138.0000,66.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_84"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 160.8500,46.8000 L 140.8500,66.8000 L 138.0000,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_85"/><path d=" M 462.0000,39.6000 L 158.0000,39.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_87"/><path d=" M 138.0000,59.6000 L 158.0000,39.6000 L 158.9500,39.6000 L 138.9500,59.6000 L 138.0000,59.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_88"/><path d=" M 138.0000,59.6000 L 158.0000,39.6000 L 158.9500,39.6000 L 138.9500,59.6000 L 138.0000,59.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_89"/><path d=" M 462.0000,32.4000 L 158.0000,32.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_90"/><path d=" M 138.0000,52.4000 L 158.0000,32.4000 L 158.9500,32.4000 L 138.9500,52.4000 L 138.0000,52.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_91"/><path d=" M 138.0000,52.4000 L 158.0000,32.4000 L 158.9500,32.4000 L 138.9500,52.4000 L 138.0000,52.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_92"/><path d=" M 462.0000,25.2000 L 158.0000,25.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_93"/><path d=" M 138.0000,45.2000 L 158.0000,25.2000 L 158.9500,25.2000 L 138.9500,45.2000 L 138.0000,45.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_94"/><path d=" M 138.0000,45.2000 L 158.0000,25.2000 L 158.9500,25.2000 L 138.9500,45.2000 L 138.0000,45.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_95"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_96"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_97"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_98"/><path d=" M 160.5196,39.5840 L 144.5196,55.5840 L 168.8776,55.5840 L 184.8776,39.5840 L 160.5196,39.5840 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_100"/><path d=" M 168.8776,180.0000 L 144.5196,180.0000 L 144.5196,55.5840 L 168.8776,55.5840 L 168.8776,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_101"/><path d=" M 184.8776,39.5840 L 168.8776,55.5840 L 168.8776,180.0000 L 184.8776,164.0000 L 184.8776,39.5840 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_102"/><path d=" M 187.9224,96.6080 L 171.9224,112.6080 L 196.2804,112.6080 L 212.2804,96.6080 L 187.9224,96.6080 z " style="fill: #8f1919; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_103"/><path d=" M 196.2804,180.0000 L 171.9224,180.0000 L 171.9224,112.6080 L 196.2804,112.6080 L 196.2804,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_104"/><path d=" M 212.2804,96.6080 L 196.2804,112.6080 L 196.2804,180.0000 L 212.2804,164.0000 L 212.2804,96.6080 z " style="fill: #bf2121; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_105"/><path d=" M 221.3196,151.6160 L 205.3196,167.6160 L 229.6776,167.6160 L 245.6776,151.6160 L 221.3196,151.6160 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_106"/><path d=" M 229.6776,180.0000 L 205.3196,180.0000 L 205.3196,167.6160 L 229.6776,167.6160 L 229.6776,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_107"/><path d=" M 245.6776,151.6160 L 229.6776,167.6160 L 229.6776,180.0000 L 245.6776,164.0000 L 245.6776,151.6160 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_108"/><path d=" M 248.7224,157.9520 L 232.7224,173.9520 L 257.0804,173.9520 L 273.0804,157.9520 L 248.7224,157.9520 z " style="fill: #8f1919; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_109"/><path d=" M 257.0804,180.0000 L 232.7224,180.0000 L 232.7224,173.9520 L 257.0804,173.9520 L 257.0804,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_110"/><path d=" M 273.0804,157.9520 L 257.0804,173.9520 L 257.0804,180.0000 L 273.0804,164.0000 L 273.0804,157.9520 z " style="fill: #bf2121; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_111"/><path d=" M 282.1196,145.2800 L 266.1196,161.2800 L 290.4776,161.2800 L 306.4776,145.2800 L 282.1196,145.2800 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_112"/><path d=" M 290.4776,180.0000 L 266.1196,180.0000 L 266.1196,161.2800 L 290.4776,161.2800 L 290.4776,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_113"/><path d=" M 306.4776,145.2800 L 290.4776,161.2800 L 290.4776,180.0000 L 306.4776,164.0000 L 306.4776,145.2800 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_114"/><path d=" M 309.5224,70.6880 L 293.5224,86.6880 L 317.8804,86.6880 L 333.8804,70.6880 L 309.5224,70.6880 z " style="fill: #8f1919; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_115"/><path d=" M 317.8804,180.0000 L 293.5224,180.0000 L 293.5224,86.6880 L 317.8804,86.6880 L 317.8804,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_116"/><path d=" M 333.8804,70.6880 L 317.8804,86.6880 L 317.8804,180.0000 L 333.8804,164.0000 L 333.8804,70.6880 z " style="fill: #bf2121; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_117"/><path d=" M 342.9196,136.0640 L 326.9196,152.0640 L 351.2776,152.0640 L 367.2776,136.0640 L 342.9196,136.0640 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_118"/><path d=" M 351.2776,180.0000 L 326.9196,180.0000 L 326.9196,152.0640 L 351.2776,152.0640 L 351.2776,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_119"/><path d=" M 367.2776,136.0640 L 351.2776,152.0640 L 351.2776,180.0000 L 367.2776,164.0000 L 367.2776,136.0640 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_120"/><path d=" M 370.3224,129.4400 L 354.3224,145.4400 L 378.6804,145.4400 L 394.6804,129.4400 L 370.3224,129.4400 z " style="fill: #8f1919; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_121"/><path d=" M 378.6804,180.0000 L 354.3224,180.0000 L 354.3224,145.4400 L 378.6804,145.4400 L 378.6804,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_122"/><path d=" M 394.6804,129.4400 L 378.6804,145.4400 L 378.6804,180.0000 L 394.6804,164.0000 L 394.6804,129.4400 z " style="fill: #bf2121; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_123"/><path d=" M 403.7196,119.6480 L 387.7196,135.6480 L 412.0776,135.6480 L 428.0776,119.6480 L 403.7196,119.6480 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_124"/><path d=" M 412.0776,180.0000 L 387.7196,180.0000 L 387.7196,135.6480 L 412.0776,135.6480 L 412.0776,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_125"/><path d=" M 428.0776,119.6480 L 412.0776,135.6480 L 412.0776,180.0000 L 428.0776,164.0000 L 428.0776,119.6480 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_126"/><path d=" M 431.1224,163.7120 L 415.1224,179.7120 L 439.4804,179.7120 L 455.4804,163.7120 L 431.1224,163.7120 z " style="fill: #8f1919; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_127"/><path d=" M 439.4804,180.0000 L 415.1224,180.0000 L 415.1224,179.7120 L 439.4804,179.7120 L 439.4804,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_128"/><path d=" M 455.4804,163.7120 L 439.4804,179.7120 L 439.4804,180.0000 L 455.4804,164.0000 L 455.4804,163.7120 z " style="fill: #bf2121; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_129"/><path d=" M 500.0000,162.0000 L 480.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_130"/><path d=" M 480.0000,182.0000 L 100.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_131"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_132"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_133"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_134"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_135"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 0</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_14" x="145.504" text-length="45.792px" y="194.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text><text id="ezcGraphTextBox_18" x="206.304" text-length="45.792px" y="194.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_22" x="267.104" text-length="45.792px" y="194.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_26" x="327.904" text-length="45.792px" y="194.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_30" x="388.704" text-length="45.792px" y="194.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_34" x="129.404" text-length="6.696px" y="180.2" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_47" x="116.012" text-length="20.088px" y="151.4" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text><text id="ezcGraphTextBox_60" x="116.012" text-length="20.088px" y="122.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text><text id="ezcGraphTextBox_73" x="116.012" text-length="20.088px" y="93.8" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text><text id="ezcGraphTextBox_86" x="116.012" text-length="20.088px" y="65" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text><text id="ezcGraphTextBox_99" x="116.012" text-length="20.088px" y="50.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer3dTest_testRenderBarChartSymbols.svg b/tests/data/compare/ezcGraphRenderer3dTest_testRenderBarChartSymbols.svg
index 9fd774c..e395108 100644
--- a/tests/data/compare/ezcGraphRenderer3dTest_testRenderBarChartSymbols.svg
+++ b/tests/data/compare/ezcGraphRenderer3dTest_testRenderBarChartSymbols.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="700" height="200" version="1.0" id="ezcGraph"><defs><linearGradient id="Definition_LinearGradient_229_104_245_104_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_229_104_245_104_ffffffbf_0000007f" x1="229.62040178571" y1="104.608" x2="245.31790178571" y2="104.608" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_229_104_245_104_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_229_104_245_104_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_229_104_245_104_8f191900_ef292900" x1="229.62040178571" y1="104.608" x2="245.31790178571" y2="104.608" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_229_104_245_104_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_249_136_264_136_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_249_136_264_136_ffffffbf_0000007f" x1="249.08209821429" y1="136.288" x2="264.77959821429" y2="136.288" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_249_136_264_136_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_316_165_331_165_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_316_165_331_165_ffffffbf_0000007f" x1="316.02040178571" y1="165.952" x2="331.71790178571" y2="165.952" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_316_165_331_165_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_316_165_331_165_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_316_165_331_165_8f191900_ef292900" x1="316.02040178571" y1="165.952" x2="331.71790178571" y2="165.952" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_316_165_331_165_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_335_101_351_101_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_335_101_351_101_ffffffbf_0000007f" x1="335.48209821429" y1="101.44" x2="351.17959821429" y2="101.44" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_335_101_351_101_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_402_78_418_78_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_402_78_418_78_ffffffbf_0000007f" x1="402.42040178571" y1="78.688" x2="418.11790178571" y2="78.688" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_402_78_418_78_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_402_78_418_78_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_402_78_418_78_8f191900_ef292900" x1="402.42040178571" y1="78.688" x2="418.11790178571" y2="78.688" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_402_78_418_78_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_421_68_437_68_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_421_68_437_68_ffffffbf_0000007f" x1="421.88209821429" y1="68.032" x2="437.57959821429" y2="68.032" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_421_68_437_68_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_488_137_504_137_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_488_137_504_137_ffffffbf_0000007f" x1="488.82040178571" y1="137.44" x2="504.51790178571" y2="137.44" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_488_137_504_137_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_488_137_504_137_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_488_137_504_137_8f191900_ef292900" x1="488.82040178571" y1="137.44" x2="504.51790178571" y2="137.44" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_488_137_504_137_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_508_53_523_53_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_508_53_523_53_ffffffbf_0000007f" x1="508.28209821429" y1="53.344" x2="523.97959821429" y2="53.344" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_508_53_523_53_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_575_171_590_171_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_575_171_590_171_ffffffbf_0000007f" x1="575.22040178571" y1="171.712" x2="590.91790178571" y2="171.712" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_575_171_590_171_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_575_171_590_171_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_575_171_590_171_8f191900_ef292900" x1="575.22040178571" y1="171.712" x2="590.91790178571" y2="171.712" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_575_171_590_171_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_594_33_610_33_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_594_33_610_33_ffffffbf_0000007f" x1="594.68209821429" y1="33.76" x2="610.37959821429" y2="33.76" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_594_33_610_33_ffffffbf_0000007f"/></defs><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 700.0000,0.0000 L 700.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 139.0000,1.0000 L 139.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 138.0000,2.0000 L 138.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><path d=" M 4.0000,18.0000 L 4.0000,4.0000 L 18.0000,4.0000 L 18.0000,18.0000 L 4.0000,18.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircle_6"/><ellipse cx="11" cy="47" rx="7" ry="7" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_8"/><path d=" M 4.0000,65.0000 L 11.0000,58.0000 L 18.0000,65.0000 L 11.0000,72.0000 L 4.0000,65.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 140.0000,182.0000 L 160.0000,162.0000 L 700.0000,162.0000 L 680.0000,182.0000 L 140.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_12"/><path d=" M 160.0000,162.0000 L 700.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 692.0000,166.0000 L 700.0000,162.0000 L 692.0000,158.0000 L 692.0000,166.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 194.0000,200.0000 L 214.0000,180.0000 L 214.0000,0.0000 L 194.0000,20.0000 L 194.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_15"/><path d=" M 214.0000,180.0000 L 214.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 211.5000,5.0000 L 214.0000,0.0000 L 216.5000,5.0000 L 211.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_17"/><path d=" M 300.4000,162.0000 L 300.4000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 280.4000,179.3000 L 300.4000,159.3000 L 300.4000,164.7000 L 280.4000,184.7000 L 280.4000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_20"/><path d=" M 280.4000,179.3000 L 300.4000,159.3000 L 300.4000,164.7000 L 280.4000,184.7000 L 280.4000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_21"/><path d=" M 386.8000,162.0000 L 386.8000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 366.8000,179.3000 L 386.8000,159.3000 L 386.8000,164.7000 L 366.8000,184.7000 L 366.8000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 366.8000,179.3000 L 386.8000,159.3000 L 386.8000,164.7000 L 366.8000,184.7000 L 366.8000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_25"/><path d=" M 473.2000,162.0000 L 473.2000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 453.2000,179.3000 L 473.2000,159.3000 L 473.2000,164.7000 L 453.2000,184.7000 L 453.2000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_28"/><path d=" M 453.2000,179.3000 L 473.2000,159.3000 L 473.2000,164.7000 L 453.2000,184.7000 L 453.2000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_29"/><path d=" M 559.6000,162.0000 L 559.6000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 539.6000,179.3000 L 559.6000,159.3000 L 559.6000,164.7000 L 539.6000,184.7000 L 539.6000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_32"/><path d=" M 539.6000,179.3000 L 559.6000,159.3000 L 559.6000,164.7000 L 539.6000,184.7000 L 539.6000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_33"/><path d=" M 646.0000,162.0000 L 646.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 626.0000,179.3000 L 646.0000,159.3000 L 646.0000,164.7000 L 626.0000,184.7000 L 626.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_36"/><path d=" M 626.0000,179.3000 L 646.0000,159.3000 L 646.0000,164.7000 L 626.0000,184.7000 L 626.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_37"/><path d=" M 646.0000,133.2000 L 214.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 194.0000,153.2000 L 214.0000,133.2000 L 216.8929,133.2000 L 196.8929,153.2000 L 194.0000,153.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_40"/><path d=" M 194.0000,153.2000 L 214.0000,133.2000 L 216.8929,133.2000 L 196.8929,153.2000 L 194.0000,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_41"/><path d=" M 646.0000,104.4000 L 214.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 194.0000,124.4000 L 214.0000,104.4000 L 216.8929,104.4000 L 196.8929,124.4000 L 194.0000,124.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 194.0000,124.4000 L 214.0000,104.4000 L 216.8929,104.4000 L 196.8929,124.4000 L 194.0000,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 646.0000,75.6000 L 214.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 194.0000,95.6000 L 214.0000,75.6000 L 216.8929,75.6000 L 196.8929,95.6000 L 194.0000,95.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_48"/><path d=" M 194.0000,95.6000 L 214.0000,75.6000 L 216.8929,75.6000 L 196.8929,95.6000 L 194.0000,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_49"/><path d=" M 646.0000,46.8000 L 214.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 194.0000,66.8000 L 214.0000,46.8000 L 216.8929,46.8000 L 196.8929,66.8000 L 194.0000,66.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_52"/><path d=" M 194.0000,66.8000 L 214.0000,46.8000 L 216.8929,46.8000 L 196.8929,66.8000 L 194.0000,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_53"/><path d=" M 646.0000,18.0000 L 214.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 194.0000,38.0000 L 214.0000,18.0000 L 216.8929,18.0000 L 196.8929,38.0000 L 194.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_56"/><path d=" M 194.0000,38.0000 L 214.0000,18.0000 L 216.8929,18.0000 L 196.8929,38.0000 L 194.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_57"/><path d=" M 218.4390,39.5840 L 202.4390,55.5840 L 217.5759,55.5840 L 233.5759,39.5840 L 218.4390,39.5840 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_59"/><path d=" M 217.5759,180.0000 L 202.4390,180.0000 L 202.4390,55.5840 L 217.5759,55.5840 L 217.5759,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 233.5759,39.5840 L 217.5759,55.5840 L 217.5759,180.0000 L 233.5759,164.0000 L 233.5759,39.5840 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_61"/><path d="M 229.62,172.00 A 7.85,3.92 0 0,0 245.32,172.00 L 245.32,104.61 A 7.85,3.924375 0 0,1 229.62,104.61 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_62"/><path d="M 229.62,172.00 A 7.85,3.92 0 0,0 245.32,172.00 L 245.32,104.61 A 7.85,3.924375 0 0,1 229.62,104.61 z" style="fill: url(#LinearGradient_229_104_245_104_ffffffbf_0000007f); stroke: none;"/><ellipse cx="237.46915178571" cy="104.608" rx="7.84875" ry="3.924375" style="fill: url(#LinearGradient_229_104_245_104_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_63"/><path d="M 249.08,172.00 A 7.85,3.92 0 0,0 264.78,172.00 L 264.78,136.29 A 7.85,3.924375 0 0,1 249.08,136.29 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_64"/><path d="M 249.08,172.00 A 7.85,3.92 0 0,0 264.78,172.00 L 264.78,136.29 A 7.85,3.924375 0 0,1 249.08,136.29 z" style="fill: url(#LinearGradient_249_136_264_136_ffffffbf_0000007f); stroke: none;"/><ellipse cx="256.93084821429" cy="136.288" rx="7.84875" ry="3.924375" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_65"/><path d=" M 271.4199,180.0000 L 268.8241,172.0000 L 268.8241,60.5440 L 271.4199,68.5440 L 271.4199,180.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_66"/><path d=" M 268.8241,60.5440 L 271.4199,68.5440 L 283.9610,60.5440 L 281.3652,52.5440 L 268.8241,60.5440 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_67"/><path d=" M 271.4199,180.0000 L 283.9610,172.0000 L 283.9610,60.5440 L 271.4199,68.5440 L 271.4199,180.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_68"/><path d=" M 304.8390,151.6160 L 288.8390,167.6160 L 303.9759,167.6160 L 319.9759,151.6160 L 304.8390,151.6160 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_69"/><path d=" M 303.9759,180.0000 L 288.8390,180.0000 L 288.8390,167.6160 L 303.9759,167.6160 L 303.9759,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 319.9759,151.6160 L 303.9759,167.6160 L 303.9759,180.0000 L 319.9759,164.0000 L 319.9759,151.6160 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_71"/><path d="M 316.02,172.00 A 7.85,3.92 0 0,0 331.72,172.00 L 331.72,165.95 A 7.85,3.924375 0 0,1 316.02,165.95 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_72"/><path d="M 316.02,172.00 A 7.85,3.92 0 0,0 331.72,172.00 L 331.72,165.95 A 7.85,3.924375 0 0,1 316.02,165.95 z" style="fill: url(#LinearGradient_316_165_331_165_ffffffbf_0000007f); stroke: none;"/><ellipse cx="323.86915178571" cy="165.952" rx="7.84875" ry="3.924375" style="fill: url(#LinearGradient_316_165_331_165_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_73"/><path d="M 335.48,172.00 A 7.85,3.92 0 0,0 351.18,172.00 L 351.18,101.44 A 7.85,3.924375 0 0,1 335.48,101.44 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_74"/><path d="M 335.48,172.00 A 7.85,3.92 0 0,0 351.18,172.00 L 351.18,101.44 A 7.85,3.924375 0 0,1 335.48,101.44 z" style="fill: url(#LinearGradient_335_101_351_101_ffffffbf_0000007f); stroke: none;"/><ellipse cx="343.33084821429" cy="101.44" rx="7.84875" ry="3.924375" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_75"/><path d=" M 357.8199,180.0000 L 355.2241,172.0000 L 355.2241,96.8320 L 357.8199,104.8320 L 357.8199,180.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 355.2241,96.8320 L 357.8199,104.8320 L 370.3610,96.8320 L 367.7652,88.8320 L 355.2241,96.8320 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_77"/><path d=" M 357.8199,180.0000 L 370.3610,172.0000 L 370.3610,96.8320 L 357.8199,104.8320 L 357.8199,180.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_78"/><path d=" M 391.2390,145.2800 L 375.2390,161.2800 L 390.3759,161.2800 L 406.3759,145.2800 L 391.2390,145.2800 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 390.3759,180.0000 L 375.2390,180.0000 L 375.2390,161.2800 L 390.3759,161.2800 L 390.3759,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_80"/><path d=" M 406.3759,145.2800 L 390.3759,161.2800 L 390.3759,180.0000 L 406.3759,164.0000 L 406.3759,145.2800 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_81"/><path d="M 402.42,172.00 A 7.85,3.92 0 0,0 418.12,172.00 L 418.12,78.69 A 7.85,3.924375 0 0,1 402.42,78.69 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_82"/><path d="M 402.42,172.00 A 7.85,3.92 0 0,0 418.12,172.00 L 418.12,78.69 A 7.85,3.924375 0 0,1 402.42,78.69 z" style="fill: url(#LinearGradient_402_78_418_78_ffffffbf_0000007f); stroke: none;"/><ellipse cx="410.26915178571" cy="78.688" rx="7.84875" ry="3.924375" style="fill: url(#LinearGradient_402_78_418_78_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_83"/><path d="M 421.88,172.00 A 7.85,3.92 0 0,0 437.58,172.00 L 437.58,68.03 A 7.85,3.924375 0 0,1 421.88,68.03 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_84"/><path d="M 421.88,172.00 A 7.85,3.92 0 0,0 437.58,172.00 L 437.58,68.03 A 7.85,3.924375 0 0,1 421.88,68.03 z" style="fill: url(#LinearGradient_421_68_437_68_ffffffbf_0000007f); stroke: none;"/><ellipse cx="429.73084821429" cy="68.032" rx="7.84875" ry="3.924375" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><path d=" M 444.2199,180.0000 L 441.6241,172.0000 L 441.6241,165.0880 L 444.2199,173.0880 L 444.2199,180.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_86"/><path d=" M 441.6241,165.0880 L 444.2199,173.0880 L 456.7610,165.0880 L 454.1652,157.0880 L 441.6241,165.0880 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_87"/><path d=" M 444.2199,180.0000 L 456.7610,172.0000 L 456.7610,165.0880 L 444.2199,173.0880 L 444.2199,180.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_88"/><path d=" M 477.6390,136.0640 L 461.6390,152.0640 L 476.7759,152.0640 L 492.7759,136.0640 L 477.6390,136.0640 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_89"/><path d=" M 476.7759,180.0000 L 461.6390,180.0000 L 461.6390,152.0640 L 476.7759,152.0640 L 476.7759,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_90"/><path d=" M 492.7759,136.0640 L 476.7759,152.0640 L 476.7759,180.0000 L 492.7759,164.0000 L 492.7759,136.0640 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_91"/><path d="M 488.82,172.00 A 7.85,3.92 0 0,0 504.52,172.00 L 504.52,137.44 A 7.85,3.924375 0 0,1 488.82,137.44 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_92"/><path d="M 488.82,172.00 A 7.85,3.92 0 0,0 504.52,172.00 L 504.52,137.44 A 7.85,3.924375 0 0,1 488.82,137.44 z" style="fill: url(#LinearGradient_488_137_504_137_ffffffbf_0000007f); stroke: none;"/><ellipse cx="496.66915178571" cy="137.44" rx="7.84875" ry="3.924375" style="fill: url(#LinearGradient_488_137_504_137_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_93"/><path d="M 508.28,172.00 A 7.85,3.92 0 0,0 523.98,172.00 L 523.98,53.34 A 7.85,3.924375 0 0,1 508.28,53.34 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_94"/><path d="M 508.28,172.00 A 7.85,3.92 0 0,0 523.98,172.00 L 523.98,53.34 A 7.85,3.924375 0 0,1 508.28,53.34 z" style="fill: url(#LinearGradient_508_53_523_53_ffffffbf_0000007f); stroke: none;"/><ellipse cx="516.13084821429" cy="53.344" rx="7.84875" ry="3.924375" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_95"/><path d=" M 530.6199,180.0000 L 528.0241,172.0000 L 528.0241,155.0080 L 530.6199,163.0080 L 530.6199,180.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_96"/><path d=" M 528.0241,155.0080 L 530.6199,163.0080 L 543.1610,155.0080 L 540.5652,147.0080 L 528.0241,155.0080 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_97"/><path d=" M 530.6199,180.0000 L 543.1610,172.0000 L 543.1610,155.0080 L 530.6199,163.0080 L 530.6199,180.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_98"/><path d=" M 564.0390,119.6480 L 548.0390,135.6480 L 563.1759,135.6480 L 579.1759,119.6480 L 564.0390,119.6480 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_99"/><path d=" M 563.1759,180.0000 L 548.0390,180.0000 L 548.0390,135.6480 L 563.1759,135.6480 L 563.1759,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_100"/><path d=" M 579.1759,119.6480 L 563.1759,135.6480 L 563.1759,180.0000 L 579.1759,164.0000 L 579.1759,119.6480 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_101"/><path d="M 575.22,172.00 A 7.85,3.92 0 0,0 590.92,172.00 L 590.92,171.71 A 7.85,3.924375 0 0,1 575.22,171.71 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_102"/><path d="M 575.22,172.00 A 7.85,3.92 0 0,0 590.92,172.00 L 590.92,171.71 A 7.85,3.924375 0 0,1 575.22,171.71 z" style="fill: url(#LinearGradient_575_171_590_171_ffffffbf_0000007f); stroke: none;"/><ellipse cx="583.06915178571" cy="171.712" rx="7.84875" ry="3.924375" style="fill: url(#LinearGradient_575_171_590_171_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_103"/><path d="M 594.68,172.00 A 7.85,3.92 0 0,0 610.38,172.00 L 610.38,33.76 A 7.85,3.924375 0 0,1 594.68,33.76 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_104"/><path d="M 594.68,172.00 A 7.85,3.92 0 0,0 610.38,172.00 L 610.38,33.76 A 7.85,3.924375 0 0,1 594.68,33.76 z" style="fill: url(#LinearGradient_594_33_610_33_ffffffbf_0000007f); stroke: none;"/><ellipse cx="602.53084821429" cy="33.76" rx="7.84875" ry="3.924375" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_105"/><path d=" M 617.0199,180.0000 L 614.4241,172.0000 L 614.4241,139.7440 L 617.0199,147.7440 L 617.0199,180.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_106"/><path d=" M 614.4241,139.7440 L 617.0199,147.7440 L 629.5610,139.7440 L 626.9652,131.7440 L 614.4241,139.7440 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_107"/><path d=" M 617.0199,180.0000 L 629.5610,172.0000 L 629.5610,139.7440 L 617.0199,147.7440 L 617.0199,180.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_108"/><path d=" M 700.0000,162.0000 L 680.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_109"/><path d=" M 680.0000,182.0000 L 140.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_110"/><path d=" M 140.0000,182.0000 L 160.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_111"/><path d=" M 214.0000,0.0000 L 194.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_112"/><path d=" M 194.0000,20.0000 L 194.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_113"/><path d=" M 194.0000,200.0000 L 214.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_114"/><text id="ezcGraphTextBox_5" x="19" text-length="66.78px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Rectangle</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Circle</text><text id="ezcGraphTextBox_9" x="19" text-length="44.52px" y="54" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Bullet</text><text id="ezcGraphTextBox_11" x="19" text-length="51.94px" y="72" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Diamond</text><text id="ezcGraphTextBox_18" x="214.304" text-length="45.792px" y="194.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text><text id="ezcGraphTextBox_22" x="300.704" text-length="45.792px" y="194.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_26" x="387.104" text-length="45.792px" y="194.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_30" x="473.504" text-length="45.792px" y="194.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_34" x="559.904" text-length="45.792px" y="194.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_38" x="185.37542857143" text-length="6.696px" y="180.2" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_42" x="171.98342857143" text-length="20.088px" y="151.4" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text><text id="ezcGraphTextBox_46" x="171.98342857143" text-length="20.088px" y="122.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text><text id="ezcGraphTextBox_50" x="171.98342857143" text-length="20.088px" y="93.8" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text><text id="ezcGraphTextBox_54" x="171.98342857143" text-length="20.088px" y="65" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text><text id="ezcGraphTextBox_58" x="171.98342857143" text-length="20.088px" y="50.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="700" height="200" version="1.0" id="ezcGraph"><defs><linearGradient id="Definition_LinearGradient_229_104_245_104_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_229_104_245_104_ffffffbf_0000007f" x1="229.62040178571" y1="104.608" x2="245.31790178571" y2="104.608" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_229_104_245_104_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_229_104_245_104_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_229_104_245_104_8f191900_ef292900" x1="229.62040178571" y1="104.608" x2="245.31790178571" y2="104.608" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_229_104_245_104_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_249_136_264_136_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_249_136_264_136_ffffffbf_0000007f" x1="249.08209821429" y1="136.288" x2="264.77959821429" y2="136.288" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_249_136_264_136_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_316_165_331_165_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_316_165_331_165_ffffffbf_0000007f" x1="316.02040178571" y1="165.952" x2="331.71790178571" y2="165.952" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_316_165_331_165_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_316_165_331_165_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_316_165_331_165_8f191900_ef292900" x1="316.02040178571" y1="165.952" x2="331.71790178571" y2="165.952" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_316_165_331_165_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_335_101_351_101_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_335_101_351_101_ffffffbf_0000007f" x1="335.48209821429" y1="101.44" x2="351.17959821429" y2="101.44" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_335_101_351_101_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_402_78_418_78_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_402_78_418_78_ffffffbf_0000007f" x1="402.42040178571" y1="78.688" x2="418.11790178571" y2="78.688" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_402_78_418_78_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_402_78_418_78_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_402_78_418_78_8f191900_ef292900" x1="402.42040178571" y1="78.688" x2="418.11790178571" y2="78.688" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_402_78_418_78_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_421_68_437_68_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_421_68_437_68_ffffffbf_0000007f" x1="421.88209821429" y1="68.032" x2="437.57959821429" y2="68.032" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_421_68_437_68_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_488_137_504_137_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_488_137_504_137_ffffffbf_0000007f" x1="488.82040178571" y1="137.44" x2="504.51790178571" y2="137.44" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_488_137_504_137_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_488_137_504_137_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_488_137_504_137_8f191900_ef292900" x1="488.82040178571" y1="137.44" x2="504.51790178571" y2="137.44" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_488_137_504_137_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_508_53_523_53_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_508_53_523_53_ffffffbf_0000007f" x1="508.28209821429" y1="53.344" x2="523.97959821429" y2="53.344" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_508_53_523_53_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_575_171_590_171_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_575_171_590_171_ffffffbf_0000007f" x1="575.22040178571" y1="171.712" x2="590.91790178571" y2="171.712" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_575_171_590_171_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_575_171_590_171_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_575_171_590_171_8f191900_ef292900" x1="575.22040178571" y1="171.712" x2="590.91790178571" y2="171.712" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_575_171_590_171_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_594_33_610_33_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_594_33_610_33_ffffffbf_0000007f" x1="594.68209821429" y1="33.76" x2="610.37959821429" y2="33.76" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_594_33_610_33_ffffffbf_0000007f"/></defs><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 700.0000,0.0000 L 700.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 139.0000,1.0000 L 139.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 138.0000,2.0000 L 138.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><path d=" M 4.0000,18.0000 L 4.0000,4.0000 L 18.0000,4.0000 L 18.0000,18.0000 L 4.0000,18.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircle_6"/><ellipse cx="11" cy="47" rx="7" ry="7" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_8"/><path d=" M 4.0000,65.0000 L 11.0000,58.0000 L 18.0000,65.0000 L 11.0000,72.0000 L 4.0000,65.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 140.0000,182.0000 L 160.0000,162.0000 L 700.0000,162.0000 L 680.0000,182.0000 L 140.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_12"/><path d=" M 160.0000,162.0000 L 700.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 692.0000,166.0000 L 700.0000,162.0000 L 692.0000,158.0000 L 692.0000,166.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 194.0000,200.0000 L 214.0000,180.0000 L 214.0000,0.0000 L 194.0000,20.0000 L 194.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_15"/><path d=" M 214.0000,180.0000 L 214.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 211.5000,5.0000 L 214.0000,0.0000 L 216.5000,5.0000 L 211.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_17"/><path d=" M 300.4000,162.0000 L 300.4000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 280.4000,179.3000 L 300.4000,159.3000 L 300.4000,164.7000 L 280.4000,184.7000 L 280.4000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_20"/><path d=" M 280.4000,179.3000 L 300.4000,159.3000 L 300.4000,164.7000 L 280.4000,184.7000 L 280.4000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_21"/><path d=" M 386.8000,162.0000 L 386.8000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 366.8000,179.3000 L 386.8000,159.3000 L 386.8000,164.7000 L 366.8000,184.7000 L 366.8000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 366.8000,179.3000 L 386.8000,159.3000 L 386.8000,164.7000 L 366.8000,184.7000 L 366.8000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_25"/><path d=" M 473.2000,162.0000 L 473.2000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 453.2000,179.3000 L 473.2000,159.3000 L 473.2000,164.7000 L 453.2000,184.7000 L 453.2000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_28"/><path d=" M 453.2000,179.3000 L 473.2000,159.3000 L 473.2000,164.7000 L 453.2000,184.7000 L 453.2000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_29"/><path d=" M 559.6000,162.0000 L 559.6000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 539.6000,179.3000 L 559.6000,159.3000 L 559.6000,164.7000 L 539.6000,184.7000 L 539.6000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_32"/><path d=" M 539.6000,179.3000 L 559.6000,159.3000 L 559.6000,164.7000 L 539.6000,184.7000 L 539.6000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_33"/><path d=" M 646.0000,162.0000 L 646.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 626.0000,179.3000 L 646.0000,159.3000 L 646.0000,164.7000 L 626.0000,184.7000 L 626.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_36"/><path d=" M 626.0000,179.3000 L 646.0000,159.3000 L 646.0000,164.7000 L 626.0000,184.7000 L 626.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_37"/><path d=" M 646.0000,154.8000 L 214.0000,154.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 194.0000,174.8000 L 214.0000,154.8000 L 214.9643,154.8000 L 194.9643,174.8000 L 194.0000,174.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_40"/><path d=" M 194.0000,174.8000 L 214.0000,154.8000 L 214.9643,154.8000 L 194.9643,174.8000 L 194.0000,174.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_41"/><path d=" M 646.0000,147.6000 L 214.0000,147.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 194.0000,167.6000 L 214.0000,147.6000 L 214.9643,147.6000 L 194.9643,167.6000 L 194.0000,167.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_43"/><path d=" M 194.0000,167.6000 L 214.0000,147.6000 L 214.9643,147.6000 L 194.9643,167.6000 L 194.0000,167.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_44"/><path d=" M 646.0000,140.4000 L 214.0000,140.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 194.0000,160.4000 L 214.0000,140.4000 L 214.9643,140.4000 L 194.9643,160.4000 L 194.0000,160.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_46"/><path d=" M 194.0000,160.4000 L 214.0000,140.4000 L 214.9643,140.4000 L 194.9643,160.4000 L 194.0000,160.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_47"/><path d=" M 646.0000,133.2000 L 214.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 194.0000,153.2000 L 214.0000,133.2000 L 216.8929,133.2000 L 196.8929,153.2000 L 194.0000,153.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_49"/><path d=" M 194.0000,153.2000 L 214.0000,133.2000 L 216.8929,133.2000 L 196.8929,153.2000 L 194.0000,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_50"/><path d=" M 646.0000,126.0000 L 214.0000,126.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 194.0000,146.0000 L 214.0000,126.0000 L 214.9643,126.0000 L 194.9643,146.0000 L 194.0000,146.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_53"/><path d=" M 194.0000,146.0000 L 214.0000,126.0000 L 214.9643,126.0000 L 194.9643,146.0000 L 194.0000,146.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_54"/><path d=" M 646.0000,118.8000 L 214.0000,118.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 194.0000,138.8000 L 214.0000,118.8000 L 214.9643,118.8000 L 194.9643,138.8000 L 194.0000,138.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_56"/><path d=" M 194.0000,138.8000 L 214.0000,118.8000 L 214.9643,118.8000 L 194.9643,138.8000 L 194.0000,138.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_57"/><path d=" M 646.0000,111.6000 L 214.0000,111.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 194.0000,131.6000 L 214.0000,111.6000 L 214.9643,111.6000 L 194.9643,131.6000 L 194.0000,131.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_59"/><path d=" M 194.0000,131.6000 L 214.0000,111.6000 L 214.9643,111.6000 L 194.9643,131.6000 L 194.0000,131.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_60"/><path d=" M 646.0000,104.4000 L 214.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 194.0000,124.4000 L 214.0000,104.4000 L 216.8929,104.4000 L 196.8929,124.4000 L 194.0000,124.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_62"/><path d=" M 194.0000,124.4000 L 214.0000,104.4000 L 216.8929,104.4000 L 196.8929,124.4000 L 194.0000,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_63"/><path d=" M 646.0000,97.2000 L 214.0000,97.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 194.0000,117.2000 L 214.0000,97.2000 L 214.9643,97.2000 L 194.9643,117.2000 L 194.0000,117.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_66"/><path d=" M 194.0000,117.2000 L 214.0000,97.2000 L 214.9643,97.2000 L 194.9643,117.2000 L 194.0000,117.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_67"/><path d=" M 646.0000,90.0000 L 214.0000,90.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 194.0000,110.0000 L 214.0000,90.0000 L 214.9643,90.0000 L 194.9643,110.0000 L 194.0000,110.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_69"/><path d=" M 194.0000,110.0000 L 214.0000,90.0000 L 214.9643,90.0000 L 194.9643,110.0000 L 194.0000,110.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_70"/><path d=" M 646.0000,82.8000 L 214.0000,82.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 194.0000,102.8000 L 214.0000,82.8000 L 214.9643,82.8000 L 194.9643,102.8000 L 194.0000,102.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_72"/><path d=" M 194.0000,102.8000 L 214.0000,82.8000 L 214.9643,82.8000 L 194.9643,102.8000 L 194.0000,102.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_73"/><path d=" M 646.0000,75.6000 L 214.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 194.0000,95.6000 L 214.0000,75.6000 L 216.8929,75.6000 L 196.8929,95.6000 L 194.0000,95.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_75"/><path d=" M 194.0000,95.6000 L 214.0000,75.6000 L 216.8929,75.6000 L 196.8929,95.6000 L 194.0000,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_76"/><path d=" M 646.0000,68.4000 L 214.0000,68.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 194.0000,88.4000 L 214.0000,68.4000 L 214.9643,68.4000 L 194.9643,88.4000 L 194.0000,88.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 194.0000,88.4000 L 214.0000,68.4000 L 214.9643,68.4000 L 194.9643,88.4000 L 194.0000,88.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_80"/><path d=" M 646.0000,61.2000 L 214.0000,61.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_81"/><path d=" M 194.0000,81.2000 L 214.0000,61.2000 L 214.9643,61.2000 L 194.9643,81.2000 L 194.0000,81.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_82"/><path d=" M 194.0000,81.2000 L 214.0000,61.2000 L 214.9643,61.2000 L 194.9643,81.2000 L 194.0000,81.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_83"/><path d=" M 646.0000,54.0000 L 214.0000,54.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_84"/><path d=" M 194.0000,74.0000 L 214.0000,54.0000 L 214.9643,54.0000 L 194.9643,74.0000 L 194.0000,74.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_85"/><path d=" M 194.0000,74.0000 L 214.0000,54.0000 L 214.9643,54.0000 L 194.9643,74.0000 L 194.0000,74.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_86"/><path d=" M 646.0000,46.8000 L 214.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_87"/><path d=" M 194.0000,66.8000 L 214.0000,46.8000 L 216.8929,46.8000 L 196.8929,66.8000 L 194.0000,66.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_88"/><path d=" M 194.0000,66.8000 L 214.0000,46.8000 L 216.8929,46.8000 L 196.8929,66.8000 L 194.0000,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_89"/><path d=" M 646.0000,39.6000 L 214.0000,39.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_91"/><path d=" M 194.0000,59.6000 L 214.0000,39.6000 L 214.9643,39.6000 L 194.9643,59.6000 L 194.0000,59.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_92"/><path d=" M 194.0000,59.6000 L 214.0000,39.6000 L 214.9643,39.6000 L 194.9643,59.6000 L 194.0000,59.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_93"/><path d=" M 646.0000,32.4000 L 214.0000,32.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_94"/><path d=" M 194.0000,52.4000 L 214.0000,32.4000 L 214.9643,32.4000 L 194.9643,52.4000 L 194.0000,52.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_95"/><path d=" M 194.0000,52.4000 L 214.0000,32.4000 L 214.9643,32.4000 L 194.9643,52.4000 L 194.0000,52.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_96"/><path d=" M 646.0000,25.2000 L 214.0000,25.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_97"/><path d=" M 194.0000,45.2000 L 214.0000,25.2000 L 214.9643,25.2000 L 194.9643,45.2000 L 194.0000,45.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_98"/><path d=" M 194.0000,45.2000 L 214.0000,25.2000 L 214.9643,25.2000 L 194.9643,45.2000 L 194.0000,45.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_99"/><path d=" M 646.0000,18.0000 L 214.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_100"/><path d=" M 194.0000,38.0000 L 214.0000,18.0000 L 216.8929,18.0000 L 196.8929,38.0000 L 194.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_101"/><path d=" M 194.0000,38.0000 L 214.0000,18.0000 L 216.8929,18.0000 L 196.8929,38.0000 L 194.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_102"/><path d=" M 218.4390,39.5840 L 202.4390,55.5840 L 217.5759,55.5840 L 233.5759,39.5840 L 218.4390,39.5840 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_104"/><path d=" M 217.5759,180.0000 L 202.4390,180.0000 L 202.4390,55.5840 L 217.5759,55.5840 L 217.5759,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_105"/><path d=" M 233.5759,39.5840 L 217.5759,55.5840 L 217.5759,180.0000 L 233.5759,164.0000 L 233.5759,39.5840 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_106"/><path d="M 229.62,172.00 A 7.85,3.92 0 0,0 245.32,172.00 L 245.32,104.61 A 7.85,3.924375 0 0,1 229.62,104.61 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_107"/><path d="M 229.62,172.00 A 7.85,3.92 0 0,0 245.32,172.00 L 245.32,104.61 A 7.85,3.924375 0 0,1 229.62,104.61 z" style="fill: url(#LinearGradient_229_104_245_104_ffffffbf_0000007f); stroke: none;"/><ellipse cx="237.46915178571" cy="104.608" rx="7.84875" ry="3.924375" style="fill: url(#LinearGradient_229_104_245_104_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_108"/><path d="M 249.08,172.00 A 7.85,3.92 0 0,0 264.78,172.00 L 264.78,136.29 A 7.85,3.924375 0 0,1 249.08,136.29 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_109"/><path d="M 249.08,172.00 A 7.85,3.92 0 0,0 264.78,172.00 L 264.78,136.29 A 7.85,3.924375 0 0,1 249.08,136.29 z" style="fill: url(#LinearGradient_249_136_264_136_ffffffbf_0000007f); stroke: none;"/><ellipse cx="256.93084821429" cy="136.288" rx="7.84875" ry="3.924375" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_110"/><path d=" M 271.4199,180.0000 L 268.8241,172.0000 L 268.8241,60.5440 L 271.4199,68.5440 L 271.4199,180.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_111"/><path d=" M 268.8241,60.5440 L 271.4199,68.5440 L 283.9610,60.5440 L 281.3652,52.5440 L 268.8241,60.5440 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_112"/><path d=" M 271.4199,180.0000 L 283.9610,172.0000 L 283.9610,60.5440 L 271.4199,68.5440 L 271.4199,180.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_113"/><path d=" M 304.8390,151.6160 L 288.8390,167.6160 L 303.9759,167.6160 L 319.9759,151.6160 L 304.8390,151.6160 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_114"/><path d=" M 303.9759,180.0000 L 288.8390,180.0000 L 288.8390,167.6160 L 303.9759,167.6160 L 303.9759,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_115"/><path d=" M 319.9759,151.6160 L 303.9759,167.6160 L 303.9759,180.0000 L 319.9759,164.0000 L 319.9759,151.6160 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_116"/><path d="M 316.02,172.00 A 7.85,3.92 0 0,0 331.72,172.00 L 331.72,165.95 A 7.85,3.924375 0 0,1 316.02,165.95 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_117"/><path d="M 316.02,172.00 A 7.85,3.92 0 0,0 331.72,172.00 L 331.72,165.95 A 7.85,3.924375 0 0,1 316.02,165.95 z" style="fill: url(#LinearGradient_316_165_331_165_ffffffbf_0000007f); stroke: none;"/><ellipse cx="323.86915178571" cy="165.952" rx="7.84875" ry="3.924375" style="fill: url(#LinearGradient_316_165_331_165_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_118"/><path d="M 335.48,172.00 A 7.85,3.92 0 0,0 351.18,172.00 L 351.18,101.44 A 7.85,3.924375 0 0,1 335.48,101.44 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_119"/><path d="M 335.48,172.00 A 7.85,3.92 0 0,0 351.18,172.00 L 351.18,101.44 A 7.85,3.924375 0 0,1 335.48,101.44 z" style="fill: url(#LinearGradient_335_101_351_101_ffffffbf_0000007f); stroke: none;"/><ellipse cx="343.33084821429" cy="101.44" rx="7.84875" ry="3.924375" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_120"/><path d=" M 357.8199,180.0000 L 355.2241,172.0000 L 355.2241,96.8320 L 357.8199,104.8320 L 357.8199,180.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_121"/><path d=" M 355.2241,96.8320 L 357.8199,104.8320 L 370.3610,96.8320 L 367.7652,88.8320 L 355.2241,96.8320 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_122"/><path d=" M 357.8199,180.0000 L 370.3610,172.0000 L 370.3610,96.8320 L 357.8199,104.8320 L 357.8199,180.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_123"/><path d=" M 391.2390,145.2800 L 375.2390,161.2800 L 390.3759,161.2800 L 406.3759,145.2800 L 391.2390,145.2800 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_124"/><path d=" M 390.3759,180.0000 L 375.2390,180.0000 L 375.2390,161.2800 L 390.3759,161.2800 L 390.3759,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_125"/><path d=" M 406.3759,145.2800 L 390.3759,161.2800 L 390.3759,180.0000 L 406.3759,164.0000 L 406.3759,145.2800 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_126"/><path d="M 402.42,172.00 A 7.85,3.92 0 0,0 418.12,172.00 L 418.12,78.69 A 7.85,3.924375 0 0,1 402.42,78.69 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_127"/><path d="M 402.42,172.00 A 7.85,3.92 0 0,0 418.12,172.00 L 418.12,78.69 A 7.85,3.924375 0 0,1 402.42,78.69 z" style="fill: url(#LinearGradient_402_78_418_78_ffffffbf_0000007f); stroke: none;"/><ellipse cx="410.26915178571" cy="78.688" rx="7.84875" ry="3.924375" style="fill: url(#LinearGradient_402_78_418_78_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_128"/><path d="M 421.88,172.00 A 7.85,3.92 0 0,0 437.58,172.00 L 437.58,68.03 A 7.85,3.924375 0 0,1 421.88,68.03 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_129"/><path d="M 421.88,172.00 A 7.85,3.92 0 0,0 437.58,172.00 L 437.58,68.03 A 7.85,3.924375 0 0,1 421.88,68.03 z" style="fill: url(#LinearGradient_421_68_437_68_ffffffbf_0000007f); stroke: none;"/><ellipse cx="429.73084821429" cy="68.032" rx="7.84875" ry="3.924375" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_130"/><path d=" M 444.2199,180.0000 L 441.6241,172.0000 L 441.6241,165.0880 L 444.2199,173.0880 L 444.2199,180.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_131"/><path d=" M 441.6241,165.0880 L 444.2199,173.0880 L 456.7610,165.0880 L 454.1652,157.0880 L 441.6241,165.0880 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_132"/><path d=" M 444.2199,180.0000 L 456.7610,172.0000 L 456.7610,165.0880 L 444.2199,173.0880 L 444.2199,180.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_133"/><path d=" M 477.6390,136.0640 L 461.6390,152.0640 L 476.7759,152.0640 L 492.7759,136.0640 L 477.6390,136.0640 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_134"/><path d=" M 476.7759,180.0000 L 461.6390,180.0000 L 461.6390,152.0640 L 476.7759,152.0640 L 476.7759,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_135"/><path d=" M 492.7759,136.0640 L 476.7759,152.0640 L 476.7759,180.0000 L 492.7759,164.0000 L 492.7759,136.0640 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_136"/><path d="M 488.82,172.00 A 7.85,3.92 0 0,0 504.52,172.00 L 504.52,137.44 A 7.85,3.924375 0 0,1 488.82,137.44 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_137"/><path d="M 488.82,172.00 A 7.85,3.92 0 0,0 504.52,172.00 L 504.52,137.44 A 7.85,3.924375 0 0,1 488.82,137.44 z" style="fill: url(#LinearGradient_488_137_504_137_ffffffbf_0000007f); stroke: none;"/><ellipse cx="496.66915178571" cy="137.44" rx="7.84875" ry="3.924375" style="fill: url(#LinearGradient_488_137_504_137_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_138"/><path d="M 508.28,172.00 A 7.85,3.92 0 0,0 523.98,172.00 L 523.98,53.34 A 7.85,3.924375 0 0,1 508.28,53.34 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_139"/><path d="M 508.28,172.00 A 7.85,3.92 0 0,0 523.98,172.00 L 523.98,53.34 A 7.85,3.924375 0 0,1 508.28,53.34 z" style="fill: url(#LinearGradient_508_53_523_53_ffffffbf_0000007f); stroke: none;"/><ellipse cx="516.13084821429" cy="53.344" rx="7.84875" ry="3.924375" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_140"/><path d=" M 530.6199,180.0000 L 528.0241,172.0000 L 528.0241,155.0080 L 530.6199,163.0080 L 530.6199,180.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_141"/><path d=" M 528.0241,155.0080 L 530.6199,163.0080 L 543.1610,155.0080 L 540.5652,147.0080 L 528.0241,155.0080 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_142"/><path d=" M 530.6199,180.0000 L 543.1610,172.0000 L 543.1610,155.0080 L 530.6199,163.0080 L 530.6199,180.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_143"/><path d=" M 564.0390,119.6480 L 548.0390,135.6480 L 563.1759,135.6480 L 579.1759,119.6480 L 564.0390,119.6480 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_144"/><path d=" M 563.1759,180.0000 L 548.0390,180.0000 L 548.0390,135.6480 L 563.1759,135.6480 L 563.1759,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_145"/><path d=" M 579.1759,119.6480 L 563.1759,135.6480 L 563.1759,180.0000 L 579.1759,164.0000 L 579.1759,119.6480 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_146"/><path d="M 575.22,172.00 A 7.85,3.92 0 0,0 590.92,172.00 L 590.92,171.71 A 7.85,3.924375 0 0,1 575.22,171.71 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_147"/><path d="M 575.22,172.00 A 7.85,3.92 0 0,0 590.92,172.00 L 590.92,171.71 A 7.85,3.924375 0 0,1 575.22,171.71 z" style="fill: url(#LinearGradient_575_171_590_171_ffffffbf_0000007f); stroke: none;"/><ellipse cx="583.06915178571" cy="171.712" rx="7.84875" ry="3.924375" style="fill: url(#LinearGradient_575_171_590_171_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_148"/><path d="M 594.68,172.00 A 7.85,3.92 0 0,0 610.38,172.00 L 610.38,33.76 A 7.85,3.924375 0 0,1 594.68,33.76 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_149"/><path d="M 594.68,172.00 A 7.85,3.92 0 0,0 610.38,172.00 L 610.38,33.76 A 7.85,3.924375 0 0,1 594.68,33.76 z" style="fill: url(#LinearGradient_594_33_610_33_ffffffbf_0000007f); stroke: none;"/><ellipse cx="602.53084821429" cy="33.76" rx="7.84875" ry="3.924375" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_150"/><path d=" M 617.0199,180.0000 L 614.4241,172.0000 L 614.4241,139.7440 L 617.0199,147.7440 L 617.0199,180.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_151"/><path d=" M 614.4241,139.7440 L 617.0199,147.7440 L 629.5610,139.7440 L 626.9652,131.7440 L 614.4241,139.7440 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_152"/><path d=" M 617.0199,180.0000 L 629.5610,172.0000 L 629.5610,139.7440 L 617.0199,147.7440 L 617.0199,180.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_153"/><path d=" M 700.0000,162.0000 L 680.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_154"/><path d=" M 680.0000,182.0000 L 140.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_155"/><path d=" M 140.0000,182.0000 L 160.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_156"/><path d=" M 214.0000,0.0000 L 194.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_157"/><path d=" M 194.0000,20.0000 L 194.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_158"/><path d=" M 194.0000,200.0000 L 214.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_159"/><text id="ezcGraphTextBox_5" x="19" text-length="66.78px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Rectangle</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Circle</text><text id="ezcGraphTextBox_9" x="19" text-length="44.52px" y="54" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Bullet</text><text id="ezcGraphTextBox_11" x="19" text-length="51.94px" y="72" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Diamond</text><text id="ezcGraphTextBox_18" x="214.304" text-length="45.792px" y="194.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text><text id="ezcGraphTextBox_22" x="300.704" text-length="45.792px" y="194.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_26" x="387.104" text-length="45.792px" y="194.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_30" x="473.504" text-length="45.792px" y="194.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_34" x="559.904" text-length="45.792px" y="194.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_38" x="185.37542857143" text-length="6.696px" y="180.2" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_51" x="171.98342857143" text-length="20.088px" y="151.4" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text><text id="ezcGraphTextBox_64" x="171.98342857143" text-length="20.088px" y="122.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text><text id="ezcGraphTextBox_77" x="171.98342857143" text-length="20.088px" y="93.8" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text><text id="ezcGraphTextBox_90" x="171.98342857143" text-length="20.088px" y="65" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text><text id="ezcGraphTextBox_103" x="171.98342857143" text-length="20.088px" y="50.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithAxisLabels.svg b/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithAxisLabels.svg
index f974ce5..c7034b0 100644
--- a/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithAxisLabels.svg
+++ b/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithAxisLabels.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000 L 500.0000,162.0000 L 480.0000,182.0000 L 100.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 120.0000,162.0000 L 500.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 492.0000,166.0000 L 500.0000,162.0000 L 492.0000,158.0000 L 492.0000,166.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_12"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 234.0000,162.0000 L 234.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_17"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_18"/><path d=" M 310.0000,162.0000 L 310.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_21"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_22"/><path d=" M 386.0000,162.0000 L 386.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_26"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_29"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_30"/><path d=" M 462.0000,114.4800 L 158.0000,114.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_34"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_35"/><path d=" M 462.0000,65.5200 L 158.0000,65.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_38"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_39"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_42"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_43"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_45"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_46"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_47"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_48"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_49"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_50"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_52"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_53"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_54"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_55"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_56"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_59"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_60"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_61"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_62"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_63"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_64"/><ellipse cx="158" cy="117.072" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_65"/><ellipse cx="234" cy="157.968" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_66"/><ellipse cx="310" cy="99.792" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_67"/><ellipse cx="386" cy="138.96" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_68"/><ellipse cx="462" cy="161.808" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_69"/><ellipse cx="148" cy="67.744" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_70"/><ellipse cx="224" cy="127.072" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_71"/><ellipse cx="300" cy="114.784" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_72"/><ellipse cx="376" cy="171.04" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_73"/><ellipse cx="452" cy="54.304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_74"/><path d=" M 500.0000,162.0000 L 480.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 480.0000,182.0000 L 100.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_80"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_11" x="446.06" text-length="51.94px" y="160" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Samples</text><text id="ezcGraphTextBox_15" x="160" text-length="51.94px" y="16" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Numbers</text><text id="ezcGraphTextBox_19" x="184.32" text-length="59.36px" y="197.8" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_23" x="260.32" text-length="59.36px" y="197.8" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_27" x="336.32" text-length="59.36px" y="197.8" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_31" x="412.32" text-length="59.36px" y="197.8" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_32" x="127.42" text-length="8.68px" y="180.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_36" x="110.06" text-length="26.04px" y="132.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_40" x="110.06" text-length="26.04px" y="84.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_44" x="110.06" text-length="26.04px" y="53.8" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000 L 500.0000,162.0000 L 480.0000,182.0000 L 100.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 120.0000,162.0000 L 500.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 492.0000,166.0000 L 500.0000,162.0000 L 492.0000,158.0000 L 492.0000,166.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_12"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 234.0000,162.0000 L 234.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_17"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_18"/><path d=" M 310.0000,162.0000 L 310.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_21"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_22"/><path d=" M 386.0000,162.0000 L 386.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_26"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_29"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_30"/><path d=" M 462.0000,151.9200 L 158.0000,151.9200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 138.0000,172.4000 L 158.0000,152.4000 L 158.9500,152.4000 L 138.9500,172.4000 L 138.0000,172.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_34"/><path d=" M 138.0000,172.4000 L 158.0000,152.4000 L 158.9500,152.4000 L 138.9500,172.4000 L 138.0000,172.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_35"/><path d=" M 462.0000,143.2800 L 158.0000,143.2800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 138.0000,162.8000 L 158.0000,142.8000 L 158.9500,142.8000 L 138.9500,162.8000 L 138.0000,162.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_37"/><path d=" M 138.0000,162.8000 L 158.0000,142.8000 L 158.9500,142.8000 L 138.9500,162.8000 L 138.0000,162.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_38"/><path d=" M 462.0000,133.2000 L 158.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_40"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_41"/><path d=" M 462.0000,123.1200 L 158.0000,123.1200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 138.0000,143.6000 L 158.0000,123.6000 L 158.9500,123.6000 L 138.9500,143.6000 L 138.0000,143.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_43"/><path d=" M 138.0000,143.6000 L 158.0000,123.6000 L 158.9500,123.6000 L 138.9500,143.6000 L 138.0000,143.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_44"/><path d=" M 462.0000,114.4800 L 158.0000,114.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_46"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_47"/><path d=" M 462.0000,104.4000 L 158.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_50"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_51"/><path d=" M 462.0000,94.3200 L 158.0000,94.3200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 138.0000,114.8000 L 158.0000,94.8000 L 158.9500,94.8000 L 138.9500,114.8000 L 138.0000,114.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_53"/><path d=" M 138.0000,114.8000 L 158.0000,94.8000 L 158.9500,94.8000 L 138.9500,114.8000 L 138.0000,114.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_54"/><path d=" M 462.0000,85.6800 L 158.0000,85.6800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 138.0000,105.2000 L 158.0000,85.2000 L 158.9500,85.2000 L 138.9500,105.2000 L 138.0000,105.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_56"/><path d=" M 138.0000,105.2000 L 158.0000,85.2000 L 158.9500,85.2000 L 138.9500,105.2000 L 138.0000,105.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_57"/><path d=" M 462.0000,75.6000 L 158.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_59"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_60"/><path d=" M 462.0000,65.5200 L 158.0000,65.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_62"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_63"/><path d=" M 462.0000,56.8800 L 158.0000,56.8800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 138.0000,76.4000 L 158.0000,56.4000 L 158.9500,56.4000 L 138.9500,76.4000 L 138.0000,76.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_66"/><path d=" M 138.0000,76.4000 L 158.0000,56.4000 L 158.9500,56.4000 L 138.9500,76.4000 L 138.0000,76.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_67"/><path d=" M 462.0000,46.8000 L 158.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_69"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_70"/><path d=" M 462.0000,36.7200 L 158.0000,36.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 138.0000,57.2000 L 158.0000,37.2000 L 158.9500,37.2000 L 138.9500,57.2000 L 138.0000,57.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_72"/><path d=" M 138.0000,57.2000 L 158.0000,37.2000 L 158.9500,37.2000 L 138.9500,57.2000 L 138.0000,57.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_73"/><path d=" M 462.0000,28.0800 L 158.0000,28.0800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 138.0000,47.6000 L 158.0000,27.6000 L 158.9500,27.6000 L 138.9500,47.6000 L 138.0000,47.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_75"/><path d=" M 138.0000,47.6000 L 158.0000,27.6000 L 158.9500,27.6000 L 138.9500,47.6000 L 138.0000,47.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_76"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_78"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_79"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_81"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_82"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_83"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_84"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_85"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_86"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_87"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_88"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_89"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_90"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_91"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_92"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_93"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_94"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_95"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_96"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_97"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_98"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_99"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_100"/><ellipse cx="158" cy="117.072" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_101"/><ellipse cx="234" cy="157.968" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_102"/><ellipse cx="310" cy="99.792" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_103"/><ellipse cx="386" cy="138.96" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_104"/><ellipse cx="462" cy="161.808" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_105"/><ellipse cx="148" cy="67.744" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_106"/><ellipse cx="224" cy="127.072" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_107"/><ellipse cx="300" cy="114.784" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_108"/><ellipse cx="376" cy="171.04" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_109"/><ellipse cx="452" cy="54.304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_110"/><path d=" M 500.0000,162.0000 L 480.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_111"/><path d=" M 480.0000,182.0000 L 100.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_112"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_113"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_114"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_115"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_116"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_11" x="446.06" text-length="51.94px" y="160" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Samples</text><text id="ezcGraphTextBox_15" x="160" text-length="51.94px" y="16" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Numbers</text><text id="ezcGraphTextBox_19" x="184.32" text-length="59.36px" y="197.8" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_23" x="260.32" text-length="59.36px" y="197.8" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_27" x="336.32" text-length="59.36px" y="197.8" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_31" x="412.32" text-length="59.36px" y="197.8" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_32" x="127.42" text-length="8.68px" y="180.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_48" x="110.06" text-length="26.04px" y="132.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_64" x="110.06" text-length="26.04px" y="84.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_80" x="110.06" text-length="26.04px" y="53.8" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithAxisLabelsReversedAxis.svg b/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithAxisLabelsReversedAxis.svg
index 851c605..93278e1 100644
--- a/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithAxisLabelsReversedAxis.svg
+++ b/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithAxisLabelsReversedAxis.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 480.0000,38.0000 L 500.0000,18.0000 L 120.0000,18.0000 L 100.0000,38.0000 L 480.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 500.0000,18.0000 L 120.0000,18.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 128.0000,14.0000 L 120.0000,18.0000 L 128.0000,22.0000 L 128.0000,14.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 442.0000,20.0000 L 462.0000,0.0000 L 462.0000,180.0000 L 442.0000,200.0000 L 442.0000,20.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_12"/><path d=" M 462.0000,0.0000 L 462.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 464.5000,175.0000 L 462.0000,180.0000 L 459.5000,175.0000 L 464.5000,175.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 386.0000,162.0000 L 386.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 366.0000,38.0000 L 386.0000,18.0000 L 386.0000,15.3000 L 366.0000,35.3000 L 366.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_17"/><path d=" M 366.0000,38.0000 L 386.0000,18.0000 L 386.0000,15.3000 L 366.0000,35.3000 L 366.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_18"/><path d=" M 310.0000,162.0000 L 310.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 290.0000,38.0000 L 310.0000,18.0000 L 310.0000,15.3000 L 290.0000,35.3000 L 290.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_21"/><path d=" M 290.0000,38.0000 L 310.0000,18.0000 L 310.0000,15.3000 L 290.0000,35.3000 L 290.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_22"/><path d=" M 234.0000,162.0000 L 234.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 214.0000,38.0000 L 234.0000,18.0000 L 234.0000,15.3000 L 214.0000,35.3000 L 214.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 214.0000,38.0000 L 234.0000,18.0000 L 234.0000,15.3000 L 214.0000,35.3000 L 214.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_26"/><path d=" M 158.0000,162.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 158.0000,15.3000 L 138.0000,35.3000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_29"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 158.0000,15.3000 L 138.0000,35.3000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_30"/><path d=" M 462.0000,65.5200 L 158.0000,65.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 444.8500,86.0000 L 464.8500,66.0000 L 462.0000,66.0000 L 442.0000,86.0000 L 444.8500,86.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_34"/><path d=" M 444.8500,86.0000 L 464.8500,66.0000 L 462.0000,66.0000 L 442.0000,86.0000 L 444.8500,86.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_35"/><path d=" M 462.0000,114.4800 L 158.0000,114.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 444.8500,134.0000 L 464.8500,114.0000 L 462.0000,114.0000 L 442.0000,134.0000 L 444.8500,134.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_38"/><path d=" M 444.8500,134.0000 L 464.8500,114.0000 L 462.0000,114.0000 L 442.0000,134.0000 L 444.8500,134.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_39"/><path d=" M 462.0000,162.0000 L 158.0000,162.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 444.8500,182.0000 L 464.8500,162.0000 L 462.0000,162.0000 L 442.0000,182.0000 L 444.8500,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_42"/><path d=" M 444.8500,182.0000 L 464.8500,162.0000 L 462.0000,162.0000 L 442.0000,182.0000 L 444.8500,182.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_43"/><path d=" M 462.0000,62.9280 L 452.0000,72.9280 L 452.0000,72.9280 L 462.0000,62.9280 L 462.0000,62.9280 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_45"/><path d=" M 462.0000,62.9280 L 452.0000,72.9280 L 452.0000,72.9280 L 462.0000,62.9280 L 462.0000,62.9280 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_46"/><path d=" M 462.0000,62.9280 L 452.0000,72.9280 L 376.0000,32.0320 L 386.0000,22.0320 L 462.0000,62.9280 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_47"/><path d=" M 462.0000,62.9280 L 452.0000,72.9280 L 376.0000,32.0320 L 386.0000,22.0320 L 462.0000,62.9280 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_48"/><path d=" M 386.0000,22.0320 L 376.0000,32.0320 L 300.0000,90.2080 L 310.0000,80.2080 L 386.0000,22.0320 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_49"/><path d=" M 386.0000,22.0320 L 376.0000,32.0320 L 300.0000,90.2080 L 310.0000,80.2080 L 386.0000,22.0320 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_50"/><path d=" M 310.0000,80.2080 L 300.0000,90.2080 L 224.0000,51.0400 L 234.0000,41.0400 L 310.0000,80.2080 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 310.0000,80.2080 L 300.0000,90.2080 L 224.0000,51.0400 L 234.0000,41.0400 L 310.0000,80.2080 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_52"/><path d=" M 234.0000,41.0400 L 224.0000,51.0400 L 148.0000,28.1920 L 158.0000,18.1920 L 234.0000,41.0400 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_53"/><path d=" M 234.0000,41.0400 L 224.0000,51.0400 L 148.0000,28.1920 L 158.0000,18.1920 L 234.0000,41.0400 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_54"/><path d=" M 452.0000,132.2560 L 442.0000,142.2560 L 442.0000,142.2560 L 452.0000,132.2560 L 452.0000,132.2560 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_55"/><path d=" M 452.0000,132.2560 L 442.0000,142.2560 L 442.0000,142.2560 L 452.0000,132.2560 L 452.0000,132.2560 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_56"/><path d=" M 452.0000,132.2560 L 442.0000,142.2560 L 366.0000,82.9280 L 376.0000,72.9280 L 452.0000,132.2560 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 452.0000,132.2560 L 442.0000,142.2560 L 366.0000,82.9280 L 376.0000,72.9280 L 452.0000,132.2560 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 376.0000,72.9280 L 366.0000,82.9280 L 290.0000,95.2160 L 300.0000,85.2160 L 376.0000,72.9280 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_59"/><path d=" M 376.0000,72.9280 L 366.0000,82.9280 L 290.0000,95.2160 L 300.0000,85.2160 L 376.0000,72.9280 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_60"/><path d=" M 300.0000,85.2160 L 290.0000,95.2160 L 214.0000,38.9600 L 224.0000,28.9600 L 300.0000,85.2160 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_61"/><path d=" M 300.0000,85.2160 L 290.0000,95.2160 L 214.0000,38.9600 L 224.0000,28.9600 L 300.0000,85.2160 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_62"/><path d=" M 224.0000,28.9600 L 214.0000,38.9600 L 138.0000,155.6960 L 148.0000,145.6960 L 224.0000,28.9600 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_63"/><path d=" M 224.0000,28.9600 L 214.0000,38.9600 L 138.0000,155.6960 L 148.0000,145.6960 L 224.0000,28.9600 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_64"/><ellipse cx="462" cy="62.928" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_65"/><ellipse cx="386" cy="22.032" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_66"/><ellipse cx="310" cy="80.208" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_67"/><ellipse cx="234" cy="41.04" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_68"/><ellipse cx="158" cy="18.192" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_69"/><ellipse cx="452" cy="132.256" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_70"/><ellipse cx="376" cy="72.928" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_71"/><ellipse cx="300" cy="85.216" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_72"/><ellipse cx="224" cy="28.96" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_73"/><ellipse cx="148" cy="145.696" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_74"/><path d=" M 120.0000,18.0000 L 100.0000,38.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 100.0000,38.0000 L 480.0000,38.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 480.0000,38.0000 L 500.0000,18.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 462.0000,180.0000 L 442.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 442.0000,200.0000 L 442.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><path d=" M 442.0000,20.0000 L 462.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_80"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_11" x="120" text-length="51.94px" y="16" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Samples</text><text id="ezcGraphTextBox_15" x="390.06" text-length="51.94px" y="198" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Numbers</text><text id="ezcGraphTextBox_19" x="336.32" text-length="59.36px" y="53.8" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_23" x="260.32" text-length="59.36px" y="53.8" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_27" x="184.32" text-length="59.36px" y="53.8" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_31" x="108.32" text-length="59.36px" y="53.8" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_32" x="431.42" text-length="8.68px" y="53.8" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_36" x="414.06" text-length="26.04px" y="101.8" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_40" x="414.06" text-length="26.04px" y="149.8" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_44" x="414.06" text-length="26.04px" y="180.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 480.0000,38.0000 L 500.0000,18.0000 L 120.0000,18.0000 L 100.0000,38.0000 L 480.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 500.0000,18.0000 L 120.0000,18.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 128.0000,14.0000 L 120.0000,18.0000 L 128.0000,22.0000 L 128.0000,14.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 442.0000,20.0000 L 462.0000,0.0000 L 462.0000,180.0000 L 442.0000,200.0000 L 442.0000,20.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_12"/><path d=" M 462.0000,0.0000 L 462.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 464.5000,175.0000 L 462.0000,180.0000 L 459.5000,175.0000 L 464.5000,175.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 386.0000,162.0000 L 386.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 366.0000,38.0000 L 386.0000,18.0000 L 386.0000,15.3000 L 366.0000,35.3000 L 366.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_17"/><path d=" M 366.0000,38.0000 L 386.0000,18.0000 L 386.0000,15.3000 L 366.0000,35.3000 L 366.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_18"/><path d=" M 310.0000,162.0000 L 310.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 290.0000,38.0000 L 310.0000,18.0000 L 310.0000,15.3000 L 290.0000,35.3000 L 290.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_21"/><path d=" M 290.0000,38.0000 L 310.0000,18.0000 L 310.0000,15.3000 L 290.0000,35.3000 L 290.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_22"/><path d=" M 234.0000,162.0000 L 234.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 214.0000,38.0000 L 234.0000,18.0000 L 234.0000,15.3000 L 214.0000,35.3000 L 214.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 214.0000,38.0000 L 234.0000,18.0000 L 234.0000,15.3000 L 214.0000,35.3000 L 214.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_26"/><path d=" M 158.0000,162.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 158.0000,15.3000 L 138.0000,35.3000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_29"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 158.0000,15.3000 L 138.0000,35.3000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_30"/><path d=" M 462.0000,28.0800 L 158.0000,28.0800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 442.9500,47.6000 L 462.9500,27.6000 L 462.0000,27.6000 L 442.0000,47.6000 L 442.9500,47.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_34"/><path d=" M 442.9500,47.6000 L 462.9500,27.6000 L 462.0000,27.6000 L 442.0000,47.6000 L 442.9500,47.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_35"/><path d=" M 462.0000,36.7200 L 158.0000,36.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 442.9500,57.2000 L 462.9500,37.2000 L 462.0000,37.2000 L 442.0000,57.2000 L 442.9500,57.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_37"/><path d=" M 442.9500,57.2000 L 462.9500,37.2000 L 462.0000,37.2000 L 442.0000,57.2000 L 442.9500,57.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_38"/><path d=" M 462.0000,46.8000 L 158.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 442.9500,66.8000 L 462.9500,46.8000 L 462.0000,46.8000 L 442.0000,66.8000 L 442.9500,66.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_40"/><path d=" M 442.9500,66.8000 L 462.9500,46.8000 L 462.0000,46.8000 L 442.0000,66.8000 L 442.9500,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_41"/><path d=" M 462.0000,56.8800 L 158.0000,56.8800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 442.9500,76.4000 L 462.9500,56.4000 L 462.0000,56.4000 L 442.0000,76.4000 L 442.9500,76.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_43"/><path d=" M 442.9500,76.4000 L 462.9500,56.4000 L 462.0000,56.4000 L 442.0000,76.4000 L 442.9500,76.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_44"/><path d=" M 462.0000,65.5200 L 158.0000,65.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 444.8500,86.0000 L 464.8500,66.0000 L 462.0000,66.0000 L 442.0000,86.0000 L 444.8500,86.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_46"/><path d=" M 444.8500,86.0000 L 464.8500,66.0000 L 462.0000,66.0000 L 442.0000,86.0000 L 444.8500,86.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_47"/><path d=" M 462.0000,75.6000 L 158.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 442.9500,95.6000 L 462.9500,75.6000 L 462.0000,75.6000 L 442.0000,95.6000 L 442.9500,95.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_50"/><path d=" M 442.9500,95.6000 L 462.9500,75.6000 L 462.0000,75.6000 L 442.0000,95.6000 L 442.9500,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_51"/><path d=" M 462.0000,85.6800 L 158.0000,85.6800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 442.9500,105.2000 L 462.9500,85.2000 L 462.0000,85.2000 L 442.0000,105.2000 L 442.9500,105.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_53"/><path d=" M 442.9500,105.2000 L 462.9500,85.2000 L 462.0000,85.2000 L 442.0000,105.2000 L 442.9500,105.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_54"/><path d=" M 462.0000,94.3200 L 158.0000,94.3200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 442.9500,114.8000 L 462.9500,94.8000 L 462.0000,94.8000 L 442.0000,114.8000 L 442.9500,114.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_56"/><path d=" M 442.9500,114.8000 L 462.9500,94.8000 L 462.0000,94.8000 L 442.0000,114.8000 L 442.9500,114.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_57"/><path d=" M 462.0000,104.4000 L 158.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 442.9500,124.4000 L 462.9500,104.4000 L 462.0000,104.4000 L 442.0000,124.4000 L 442.9500,124.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_59"/><path d=" M 442.9500,124.4000 L 462.9500,104.4000 L 462.0000,104.4000 L 442.0000,124.4000 L 442.9500,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_60"/><path d=" M 462.0000,114.4800 L 158.0000,114.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 444.8500,134.0000 L 464.8500,114.0000 L 462.0000,114.0000 L 442.0000,134.0000 L 444.8500,134.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_62"/><path d=" M 444.8500,134.0000 L 464.8500,114.0000 L 462.0000,114.0000 L 442.0000,134.0000 L 444.8500,134.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_63"/><path d=" M 462.0000,123.1200 L 158.0000,123.1200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 442.9500,143.6000 L 462.9500,123.6000 L 462.0000,123.6000 L 442.0000,143.6000 L 442.9500,143.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_66"/><path d=" M 442.9500,143.6000 L 462.9500,123.6000 L 462.0000,123.6000 L 442.0000,143.6000 L 442.9500,143.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_67"/><path d=" M 462.0000,133.2000 L 158.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 442.9500,153.2000 L 462.9500,133.2000 L 462.0000,133.2000 L 442.0000,153.2000 L 442.9500,153.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_69"/><path d=" M 442.9500,153.2000 L 462.9500,133.2000 L 462.0000,133.2000 L 442.0000,153.2000 L 442.9500,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_70"/><path d=" M 462.0000,143.2800 L 158.0000,143.2800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 442.9500,162.8000 L 462.9500,142.8000 L 462.0000,142.8000 L 442.0000,162.8000 L 442.9500,162.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_72"/><path d=" M 442.9500,162.8000 L 462.9500,142.8000 L 462.0000,142.8000 L 442.0000,162.8000 L 442.9500,162.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_73"/><path d=" M 462.0000,151.9200 L 158.0000,151.9200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 442.9500,172.4000 L 462.9500,152.4000 L 462.0000,152.4000 L 442.0000,172.4000 L 442.9500,172.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_75"/><path d=" M 442.9500,172.4000 L 462.9500,152.4000 L 462.0000,152.4000 L 442.0000,172.4000 L 442.9500,172.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_76"/><path d=" M 462.0000,162.0000 L 158.0000,162.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 444.8500,182.0000 L 464.8500,162.0000 L 462.0000,162.0000 L 442.0000,182.0000 L 444.8500,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_78"/><path d=" M 444.8500,182.0000 L 464.8500,162.0000 L 462.0000,162.0000 L 442.0000,182.0000 L 444.8500,182.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_79"/><path d=" M 462.0000,62.9280 L 452.0000,72.9280 L 452.0000,72.9280 L 462.0000,62.9280 L 462.0000,62.9280 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_81"/><path d=" M 462.0000,62.9280 L 452.0000,72.9280 L 452.0000,72.9280 L 462.0000,62.9280 L 462.0000,62.9280 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_82"/><path d=" M 462.0000,62.9280 L 452.0000,72.9280 L 376.0000,32.0320 L 386.0000,22.0320 L 462.0000,62.9280 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_83"/><path d=" M 462.0000,62.9280 L 452.0000,72.9280 L 376.0000,32.0320 L 386.0000,22.0320 L 462.0000,62.9280 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_84"/><path d=" M 386.0000,22.0320 L 376.0000,32.0320 L 300.0000,90.2080 L 310.0000,80.2080 L 386.0000,22.0320 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_85"/><path d=" M 386.0000,22.0320 L 376.0000,32.0320 L 300.0000,90.2080 L 310.0000,80.2080 L 386.0000,22.0320 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_86"/><path d=" M 310.0000,80.2080 L 300.0000,90.2080 L 224.0000,51.0400 L 234.0000,41.0400 L 310.0000,80.2080 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_87"/><path d=" M 310.0000,80.2080 L 300.0000,90.2080 L 224.0000,51.0400 L 234.0000,41.0400 L 310.0000,80.2080 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_88"/><path d=" M 234.0000,41.0400 L 224.0000,51.0400 L 148.0000,28.1920 L 158.0000,18.1920 L 234.0000,41.0400 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_89"/><path d=" M 234.0000,41.0400 L 224.0000,51.0400 L 148.0000,28.1920 L 158.0000,18.1920 L 234.0000,41.0400 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_90"/><path d=" M 452.0000,132.2560 L 442.0000,142.2560 L 442.0000,142.2560 L 452.0000,132.2560 L 452.0000,132.2560 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_91"/><path d=" M 452.0000,132.2560 L 442.0000,142.2560 L 442.0000,142.2560 L 452.0000,132.2560 L 452.0000,132.2560 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_92"/><path d=" M 452.0000,132.2560 L 442.0000,142.2560 L 366.0000,82.9280 L 376.0000,72.9280 L 452.0000,132.2560 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_93"/><path d=" M 452.0000,132.2560 L 442.0000,142.2560 L 366.0000,82.9280 L 376.0000,72.9280 L 452.0000,132.2560 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_94"/><path d=" M 376.0000,72.9280 L 366.0000,82.9280 L 290.0000,95.2160 L 300.0000,85.2160 L 376.0000,72.9280 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_95"/><path d=" M 376.0000,72.9280 L 366.0000,82.9280 L 290.0000,95.2160 L 300.0000,85.2160 L 376.0000,72.9280 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_96"/><path d=" M 300.0000,85.2160 L 290.0000,95.2160 L 214.0000,38.9600 L 224.0000,28.9600 L 300.0000,85.2160 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_97"/><path d=" M 300.0000,85.2160 L 290.0000,95.2160 L 214.0000,38.9600 L 224.0000,28.9600 L 300.0000,85.2160 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_98"/><path d=" M 224.0000,28.9600 L 214.0000,38.9600 L 138.0000,155.6960 L 148.0000,145.6960 L 224.0000,28.9600 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_99"/><path d=" M 224.0000,28.9600 L 214.0000,38.9600 L 138.0000,155.6960 L 148.0000,145.6960 L 224.0000,28.9600 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_100"/><ellipse cx="462" cy="62.928" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_101"/><ellipse cx="386" cy="22.032" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_102"/><ellipse cx="310" cy="80.208" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_103"/><ellipse cx="234" cy="41.04" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_104"/><ellipse cx="158" cy="18.192" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_105"/><ellipse cx="452" cy="132.256" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_106"/><ellipse cx="376" cy="72.928" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_107"/><ellipse cx="300" cy="85.216" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_108"/><ellipse cx="224" cy="28.96" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_109"/><ellipse cx="148" cy="145.696" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_110"/><path d=" M 120.0000,18.0000 L 100.0000,38.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_111"/><path d=" M 100.0000,38.0000 L 480.0000,38.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_112"/><path d=" M 480.0000,38.0000 L 500.0000,18.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_113"/><path d=" M 462.0000,180.0000 L 442.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_114"/><path d=" M 442.0000,200.0000 L 442.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_115"/><path d=" M 442.0000,20.0000 L 462.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_116"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_11" x="120" text-length="51.94px" y="16" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Samples</text><text id="ezcGraphTextBox_15" x="390.06" text-length="51.94px" y="198" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Numbers</text><text id="ezcGraphTextBox_19" x="336.32" text-length="59.36px" y="53.8" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_23" x="260.32" text-length="59.36px" y="53.8" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_27" x="184.32" text-length="59.36px" y="53.8" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_31" x="108.32" text-length="59.36px" y="53.8" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_32" x="431.42" text-length="8.68px" y="53.8" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_48" x="414.06" text-length="26.04px" y="101.8" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_64" x="414.06" text-length="26.04px" y="149.8" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_80" x="414.06" text-length="26.04px" y="180.2" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithDifferentAxisSpace.svg b/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithDifferentAxisSpace.svg
index f86e813..e6c5ef7 100644
--- a/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithDifferentAxisSpace.svg
+++ b/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithDifferentAxisSpace.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,164.0000 L 120.0000,144.0000 L 500.0000,144.0000 L 480.0000,164.0000 L 100.0000,164.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 120.0000,144.0000 L 500.0000,144.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 492.0000,148.0000 L 500.0000,144.0000 L 492.0000,140.0000 L 492.0000,148.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 119.0000,200.0000 L 139.0000,180.0000 L 139.0000,0.0000 L 119.0000,20.0000 L 119.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 139.0000,180.0000 L 139.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 138.0000,2.0000 L 139.0000,0.0000 L 140.0000,2.0000 L 138.0000,2.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 224.5000,144.0000 L 224.5000,36.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 204.5000,161.3000 L 224.5000,141.3000 L 224.5000,144.0000 L 204.5000,164.0000 L 204.5000,161.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_15"/><path d=" M 204.5000,161.3000 L 224.5000,141.3000 L 224.5000,144.0000 L 204.5000,164.0000 L 204.5000,161.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_16"/><path d=" M 310.0000,144.0000 L 310.0000,36.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 290.0000,161.3000 L 310.0000,141.3000 L 310.0000,144.0000 L 290.0000,164.0000 L 290.0000,161.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_19"/><path d=" M 290.0000,161.3000 L 310.0000,141.3000 L 310.0000,144.0000 L 290.0000,164.0000 L 290.0000,161.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_20"/><path d=" M 395.5000,144.0000 L 395.5000,36.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 375.5000,161.3000 L 395.5000,141.3000 L 395.5000,144.0000 L 375.5000,164.0000 L 375.5000,161.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_23"/><path d=" M 375.5000,161.3000 L 395.5000,141.3000 L 395.5000,144.0000 L 375.5000,164.0000 L 375.5000,161.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_24"/><path d=" M 481.0000,144.0000 L 481.0000,36.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 461.0000,161.3000 L 481.0000,141.3000 L 481.0000,144.0000 L 461.0000,164.0000 L 461.0000,161.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 461.0000,161.3000 L 481.0000,141.3000 L 481.0000,144.0000 L 461.0000,164.0000 L 461.0000,161.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_28"/><path d=" M 481.0000,107.8200 L 139.0000,107.8200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 119.0000,128.0000 L 139.0000,108.0000 L 141.8500,108.0000 L 121.8500,128.0000 L 119.0000,128.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_32"/><path d=" M 119.0000,128.0000 L 139.0000,108.0000 L 141.8500,108.0000 L 121.8500,128.0000 L 119.0000,128.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_33"/><path d=" M 481.0000,72.1800 L 139.0000,72.1800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 119.0000,92.0000 L 139.0000,72.0000 L 141.8500,72.0000 L 121.8500,92.0000 L 119.0000,92.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_36"/><path d=" M 119.0000,92.0000 L 139.0000,72.0000 L 141.8500,72.0000 L 121.8500,92.0000 L 119.0000,92.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_37"/><path d=" M 481.0000,36.5400 L 139.0000,36.5400" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 119.0000,56.0000 L 139.0000,36.0000 L 141.8500,36.0000 L 121.8500,56.0000 L 119.0000,56.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_40"/><path d=" M 119.0000,56.0000 L 139.0000,36.0000 L 141.8500,36.0000 L 121.8500,56.0000 L 119.0000,56.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_41"/><path d=" M 139.0000,110.3040 L 129.0000,120.3040 L 129.0000,120.3040 L 139.0000,110.3040 L 139.0000,110.3040 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_43"/><path d=" M 139.0000,110.3040 L 129.0000,120.3040 L 129.0000,120.3040 L 139.0000,110.3040 L 139.0000,110.3040 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_44"/><path d=" M 139.0000,110.3040 L 129.0000,120.3040 L 214.5000,150.9760 L 224.5000,140.9760 L 139.0000,110.3040 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_45"/><path d=" M 139.0000,110.3040 L 129.0000,120.3040 L 214.5000,150.9760 L 224.5000,140.9760 L 139.0000,110.3040 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_46"/><path d=" M 224.5000,140.9760 L 214.5000,150.9760 L 300.0000,107.3440 L 310.0000,97.3440 L 224.5000,140.9760 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_47"/><path d=" M 224.5000,140.9760 L 214.5000,150.9760 L 300.0000,107.3440 L 310.0000,97.3440 L 224.5000,140.9760 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_48"/><path d=" M 310.0000,97.3440 L 300.0000,107.3440 L 385.5000,136.7200 L 395.5000,126.7200 L 310.0000,97.3440 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_49"/><path d=" M 310.0000,97.3440 L 300.0000,107.3440 L 385.5000,136.7200 L 395.5000,126.7200 L 310.0000,97.3440 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_50"/><path d=" M 395.5000,126.7200 L 385.5000,136.7200 L 471.0000,153.8560 L 481.0000,143.8560 L 395.5000,126.7200 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 395.5000,126.7200 L 385.5000,136.7200 L 471.0000,153.8560 L 481.0000,143.8560 L 395.5000,126.7200 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_52"/><path d=" M 129.0000,75.8080 L 119.0000,85.8080 L 119.0000,85.8080 L 129.0000,75.8080 L 129.0000,75.8080 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_53"/><path d=" M 129.0000,75.8080 L 119.0000,85.8080 L 119.0000,85.8080 L 129.0000,75.8080 L 129.0000,75.8080 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_54"/><path d=" M 129.0000,75.8080 L 119.0000,85.8080 L 204.5000,130.3040 L 214.5000,120.3040 L 129.0000,75.8080 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_55"/><path d=" M 129.0000,75.8080 L 119.0000,85.8080 L 204.5000,130.3040 L 214.5000,120.3040 L 129.0000,75.8080 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_56"/><path d=" M 214.5000,120.3040 L 204.5000,130.3040 L 290.0000,121.0880 L 300.0000,111.0880 L 214.5000,120.3040 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 214.5000,120.3040 L 204.5000,130.3040 L 290.0000,121.0880 L 300.0000,111.0880 L 214.5000,120.3040 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 300.0000,111.0880 L 290.0000,121.0880 L 375.5000,163.2800 L 385.5000,153.2800 L 300.0000,111.0880 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_59"/><path d=" M 300.0000,111.0880 L 290.0000,121.0880 L 375.5000,163.2800 L 385.5000,153.2800 L 300.0000,111.0880 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_60"/><path d=" M 385.5000,153.2800 L 375.5000,163.2800 L 461.0000,75.7280 L 471.0000,65.7280 L 385.5000,153.2800 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_61"/><path d=" M 385.5000,153.2800 L 375.5000,163.2800 L 461.0000,75.7280 L 471.0000,65.7280 L 385.5000,153.2800 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_62"/><ellipse cx="139" cy="110.304" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_63"/><ellipse cx="224.5" cy="140.976" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_64"/><ellipse cx="310" cy="97.344" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_65"/><ellipse cx="395.5" cy="126.72" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_66"/><ellipse cx="481" cy="143.856" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_67"/><ellipse cx="129" cy="75.808" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_68"/><ellipse cx="214.5" cy="120.304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_69"/><ellipse cx="300" cy="111.088" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_70"/><ellipse cx="385.5" cy="153.28" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_71"/><ellipse cx="471" cy="65.728" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_72"/><path d=" M 500.0000,144.0000 L 480.0000,164.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 480.0000,164.0000 L 100.0000,164.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 100.0000,164.0000 L 120.0000,144.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 139.0000,0.0000 L 119.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 119.0000,20.0000 L 119.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 119.0000,200.0000 L 139.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_17" x="188.812" text-length="31.376px" y="173.2" style="font-size: 7px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_21" x="274.312" text-length="31.376px" y="173.2" style="font-size: 7px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_25" x="359.812" text-length="31.376px" y="173.2" style="font-size: 7px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_29" x="445.312" text-length="31.376px" y="173.2" style="font-size: 7px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_30" x="112.512" text-length="4.588px" y="162.2" style="font-size: 7px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_34" x="103.336" text-length="13.764px" y="126.2" style="font-size: 7px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_38" x="103.336" text-length="13.764px" y="90.2" style="font-size: 7px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_42" x="103.336" text-length="13.764px" y="65.2" style="font-size: 7px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,164.0000 L 120.0000,144.0000 L 500.0000,144.0000 L 480.0000,164.0000 L 100.0000,164.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 120.0000,144.0000 L 500.0000,144.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 492.0000,148.0000 L 500.0000,144.0000 L 492.0000,140.0000 L 492.0000,148.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 119.0000,200.0000 L 139.0000,180.0000 L 139.0000,0.0000 L 119.0000,20.0000 L 119.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 139.0000,180.0000 L 139.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 138.0000,2.0000 L 139.0000,0.0000 L 140.0000,2.0000 L 138.0000,2.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 224.5000,144.0000 L 224.5000,36.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 204.5000,161.3000 L 224.5000,141.3000 L 224.5000,144.0000 L 204.5000,164.0000 L 204.5000,161.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_15"/><path d=" M 204.5000,161.3000 L 224.5000,141.3000 L 224.5000,144.0000 L 204.5000,164.0000 L 204.5000,161.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_16"/><path d=" M 310.0000,144.0000 L 310.0000,36.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 290.0000,161.3000 L 310.0000,141.3000 L 310.0000,144.0000 L 290.0000,164.0000 L 290.0000,161.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_19"/><path d=" M 290.0000,161.3000 L 310.0000,141.3000 L 310.0000,144.0000 L 290.0000,164.0000 L 290.0000,161.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_20"/><path d=" M 395.5000,144.0000 L 395.5000,36.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 375.5000,161.3000 L 395.5000,141.3000 L 395.5000,144.0000 L 375.5000,164.0000 L 375.5000,161.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_23"/><path d=" M 375.5000,161.3000 L 395.5000,141.3000 L 395.5000,144.0000 L 375.5000,164.0000 L 375.5000,161.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_24"/><path d=" M 481.0000,144.0000 L 481.0000,36.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 461.0000,161.3000 L 481.0000,141.3000 L 481.0000,144.0000 L 461.0000,164.0000 L 461.0000,161.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 461.0000,161.3000 L 481.0000,141.3000 L 481.0000,144.0000 L 461.0000,164.0000 L 461.0000,161.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_28"/><path d=" M 481.0000,136.9800 L 139.0000,136.9800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 119.0000,156.8000 L 139.0000,136.8000 L 139.9500,136.8000 L 119.9500,156.8000 L 119.0000,156.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_32"/><path d=" M 119.0000,156.8000 L 139.0000,136.8000 L 139.9500,136.8000 L 119.9500,156.8000 L 119.0000,156.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_33"/><path d=" M 481.0000,128.8800 L 139.0000,128.8800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 119.0000,149.6000 L 139.0000,129.6000 L 139.9500,129.6000 L 119.9500,149.6000 L 119.0000,149.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_35"/><path d=" M 119.0000,149.6000 L 139.0000,129.6000 L 139.9500,129.6000 L 119.9500,149.6000 L 119.0000,149.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_36"/><path d=" M 481.0000,122.4000 L 139.0000,122.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 119.0000,142.4000 L 139.0000,122.4000 L 139.9500,122.4000 L 119.9500,142.4000 L 119.0000,142.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_38"/><path d=" M 119.0000,142.4000 L 139.0000,122.4000 L 139.9500,122.4000 L 119.9500,142.4000 L 119.0000,142.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_39"/><path d=" M 481.0000,115.9200 L 139.0000,115.9200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 119.0000,135.2000 L 139.0000,115.2000 L 139.9500,115.2000 L 119.9500,135.2000 L 119.0000,135.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_41"/><path d=" M 119.0000,135.2000 L 139.0000,115.2000 L 139.9500,115.2000 L 119.9500,135.2000 L 119.0000,135.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_42"/><path d=" M 481.0000,107.8200 L 139.0000,107.8200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 119.0000,128.0000 L 139.0000,108.0000 L 141.8500,108.0000 L 121.8500,128.0000 L 119.0000,128.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 119.0000,128.0000 L 139.0000,108.0000 L 141.8500,108.0000 L 121.8500,128.0000 L 119.0000,128.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 481.0000,101.3400 L 139.0000,101.3400" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 119.0000,120.8000 L 139.0000,100.8000 L 139.9500,100.8000 L 119.9500,120.8000 L 119.0000,120.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_48"/><path d=" M 119.0000,120.8000 L 139.0000,100.8000 L 139.9500,100.8000 L 119.9500,120.8000 L 119.0000,120.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_49"/><path d=" M 481.0000,93.2400 L 139.0000,93.2400" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 119.0000,113.6000 L 139.0000,93.6000 L 139.9500,93.6000 L 119.9500,113.6000 L 119.0000,113.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 119.0000,113.6000 L 139.0000,93.6000 L 139.9500,93.6000 L 119.9500,113.6000 L 119.0000,113.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_52"/><path d=" M 481.0000,86.7600 L 139.0000,86.7600" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 119.0000,106.4000 L 139.0000,86.4000 L 139.9500,86.4000 L 119.9500,106.4000 L 119.0000,106.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 119.0000,106.4000 L 139.0000,86.4000 L 139.9500,86.4000 L 119.9500,106.4000 L 119.0000,106.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_55"/><path d=" M 481.0000,78.6600 L 139.0000,78.6600" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 119.0000,99.2000 L 139.0000,79.2000 L 139.9500,79.2000 L 119.9500,99.2000 L 119.0000,99.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 119.0000,99.2000 L 139.0000,79.2000 L 139.9500,79.2000 L 119.9500,99.2000 L 119.0000,99.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 481.0000,72.1800 L 139.0000,72.1800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 119.0000,92.0000 L 139.0000,72.0000 L 141.8500,72.0000 L 121.8500,92.0000 L 119.0000,92.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 119.0000,92.0000 L 139.0000,72.0000 L 141.8500,72.0000 L 121.8500,92.0000 L 119.0000,92.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 481.0000,64.0800 L 139.0000,64.0800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 119.0000,84.8000 L 139.0000,64.8000 L 139.9500,64.8000 L 119.9500,84.8000 L 119.0000,84.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_64"/><path d=" M 119.0000,84.8000 L 139.0000,64.8000 L 139.9500,64.8000 L 119.9500,84.8000 L 119.0000,84.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_65"/><path d=" M 481.0000,57.6000 L 139.0000,57.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 119.0000,77.6000 L 139.0000,57.6000 L 139.9500,57.6000 L 119.9500,77.6000 L 119.0000,77.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_67"/><path d=" M 119.0000,77.6000 L 139.0000,57.6000 L 139.9500,57.6000 L 119.9500,77.6000 L 119.0000,77.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_68"/><path d=" M 481.0000,51.1200 L 139.0000,51.1200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 119.0000,70.4000 L 139.0000,50.4000 L 139.9500,50.4000 L 119.9500,70.4000 L 119.0000,70.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 119.0000,70.4000 L 139.0000,50.4000 L 139.9500,50.4000 L 119.9500,70.4000 L 119.0000,70.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 481.0000,43.0200 L 139.0000,43.0200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 119.0000,63.2000 L 139.0000,43.2000 L 139.9500,43.2000 L 119.9500,63.2000 L 119.0000,63.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 119.0000,63.2000 L 139.0000,43.2000 L 139.9500,43.2000 L 119.9500,63.2000 L 119.0000,63.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_74"/><path d=" M 481.0000,36.5400 L 139.0000,36.5400" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 119.0000,56.0000 L 139.0000,36.0000 L 141.8500,36.0000 L 121.8500,56.0000 L 119.0000,56.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 119.0000,56.0000 L 139.0000,36.0000 L 141.8500,36.0000 L 121.8500,56.0000 L 119.0000,56.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_77"/><path d=" M 139.0000,110.3040 L 129.0000,120.3040 L 129.0000,120.3040 L 139.0000,110.3040 L 139.0000,110.3040 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 139.0000,110.3040 L 129.0000,120.3040 L 129.0000,120.3040 L 139.0000,110.3040 L 139.0000,110.3040 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_80"/><path d=" M 139.0000,110.3040 L 129.0000,120.3040 L 214.5000,150.9760 L 224.5000,140.9760 L 139.0000,110.3040 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_81"/><path d=" M 139.0000,110.3040 L 129.0000,120.3040 L 214.5000,150.9760 L 224.5000,140.9760 L 139.0000,110.3040 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_82"/><path d=" M 224.5000,140.9760 L 214.5000,150.9760 L 300.0000,107.3440 L 310.0000,97.3440 L 224.5000,140.9760 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_83"/><path d=" M 224.5000,140.9760 L 214.5000,150.9760 L 300.0000,107.3440 L 310.0000,97.3440 L 224.5000,140.9760 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_84"/><path d=" M 310.0000,97.3440 L 300.0000,107.3440 L 385.5000,136.7200 L 395.5000,126.7200 L 310.0000,97.3440 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_85"/><path d=" M 310.0000,97.3440 L 300.0000,107.3440 L 385.5000,136.7200 L 395.5000,126.7200 L 310.0000,97.3440 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_86"/><path d=" M 395.5000,126.7200 L 385.5000,136.7200 L 471.0000,153.8560 L 481.0000,143.8560 L 395.5000,126.7200 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_87"/><path d=" M 395.5000,126.7200 L 385.5000,136.7200 L 471.0000,153.8560 L 481.0000,143.8560 L 395.5000,126.7200 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_88"/><path d=" M 129.0000,75.8080 L 119.0000,85.8080 L 119.0000,85.8080 L 129.0000,75.8080 L 129.0000,75.8080 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_89"/><path d=" M 129.0000,75.8080 L 119.0000,85.8080 L 119.0000,85.8080 L 129.0000,75.8080 L 129.0000,75.8080 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_90"/><path d=" M 129.0000,75.8080 L 119.0000,85.8080 L 204.5000,130.3040 L 214.5000,120.3040 L 129.0000,75.8080 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_91"/><path d=" M 129.0000,75.8080 L 119.0000,85.8080 L 204.5000,130.3040 L 214.5000,120.3040 L 129.0000,75.8080 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_92"/><path d=" M 214.5000,120.3040 L 204.5000,130.3040 L 290.0000,121.0880 L 300.0000,111.0880 L 214.5000,120.3040 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_93"/><path d=" M 214.5000,120.3040 L 204.5000,130.3040 L 290.0000,121.0880 L 300.0000,111.0880 L 214.5000,120.3040 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_94"/><path d=" M 300.0000,111.0880 L 290.0000,121.0880 L 375.5000,163.2800 L 385.5000,153.2800 L 300.0000,111.0880 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_95"/><path d=" M 300.0000,111.0880 L 290.0000,121.0880 L 375.5000,163.2800 L 385.5000,153.2800 L 300.0000,111.0880 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_96"/><path d=" M 385.5000,153.2800 L 375.5000,163.2800 L 461.0000,75.7280 L 471.0000,65.7280 L 385.5000,153.2800 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_97"/><path d=" M 385.5000,153.2800 L 375.5000,163.2800 L 461.0000,75.7280 L 471.0000,65.7280 L 385.5000,153.2800 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_98"/><ellipse cx="139" cy="110.304" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_99"/><ellipse cx="224.5" cy="140.976" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_100"/><ellipse cx="310" cy="97.344" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_101"/><ellipse cx="395.5" cy="126.72" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_102"/><ellipse cx="481" cy="143.856" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_103"/><ellipse cx="129" cy="75.808" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_104"/><ellipse cx="214.5" cy="120.304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_105"/><ellipse cx="300" cy="111.088" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_106"/><ellipse cx="385.5" cy="153.28" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_107"/><ellipse cx="471" cy="65.728" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_108"/><path d=" M 500.0000,144.0000 L 480.0000,164.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_109"/><path d=" M 480.0000,164.0000 L 100.0000,164.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_110"/><path d=" M 100.0000,164.0000 L 120.0000,144.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_111"/><path d=" M 139.0000,0.0000 L 119.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_112"/><path d=" M 119.0000,20.0000 L 119.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_113"/><path d=" M 119.0000,200.0000 L 139.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_114"/><text id="ezcGraphTextBox_5" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_17" x="188.812" text-length="31.376px" y="173.2" style="font-size: 7px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_21" x="274.312" text-length="31.376px" y="173.2" style="font-size: 7px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_25" x="359.812" text-length="31.376px" y="173.2" style="font-size: 7px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_29" x="445.312" text-length="31.376px" y="173.2" style="font-size: 7px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_30" x="112.512" text-length="4.588px" y="162.2" style="font-size: 7px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_46" x="103.336" text-length="13.764px" y="126.2" style="font-size: 7px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_62" x="103.336" text-length="13.764px" y="90.2" style="font-size: 7px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_78" x="103.336" text-length="13.764px" y="65.2" style="font-size: 7px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithHighlightedData.svg b/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithHighlightedData.svg
index 0ab88c4..25cee7a 100644
--- a/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithHighlightedData.svg
+++ b/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithHighlightedData.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs><linearGradient id="Definition_LinearGradient_8_8_13_13_abefff00_39506800"><stop offset="0" style="stop-color: #abefff; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #395068; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_8_8_13_13_abefff00_39506800" x1="8.100505066" y1="8.100505066" x2="13.899494934" y2="13.899494934" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_8_8_13_13_abefff00_39506800"/><linearGradient id="Definition_LinearGradient_8_26_13_31_ff3e3e00_78151500"><stop offset="0" style="stop-color: #ff3e3e; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #781515; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_8_26_13_31_ff3e3e00_78151500" x1="8.100505066" y1="26.100505066" x2="13.899494934" y2="31.899494934" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_8_26_13_31_ff3e3e00_78151500"/><linearGradient id="Definition_LinearGradient_187_91_189_93_abefff00_39506800"><stop offset="0" style="stop-color: #abefff; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #395068; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_187_91_189_93_abefff00_39506800" x1="187.157359314" y1="91.061359314" x2="189.642640686" y2="93.546640686" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_187_91_189_93_abefff00_39506800"/><linearGradient id="Definition_LinearGradient_247_127_250_130_abefff00_39506800"><stop offset="0" style="stop-color: #abefff; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #395068; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_247_127_250_130_abefff00_39506800" x1="247.957359314" y1="127.781359314" x2="250.442640686" y2="130.266640686" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_247_127_250_130_abefff00_39506800"/><linearGradient id="Definition_LinearGradient_308_78_311_80_abefff00_39506800"><stop offset="0" style="stop-color: #abefff; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #395068; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_308_78_311_80_abefff00_39506800" x1="308.757359314" y1="78.101359314" x2="311.242640686" y2="80.586640686" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_308_78_311_80_abefff00_39506800"/><linearGradient id="Definition_LinearGradient_369_142_372_144_abefff00_39506800"><stop offset="0" style="stop-color: #abefff; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #395068; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_369_142_372_144_abefff00_39506800" x1="369.557359314" y1="142.037359314" x2="372.042640686" y2="144.522640686" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_369_142_372_144_abefff00_39506800"/><linearGradient id="Definition_LinearGradient_430_124_432_127_abefff00_39506800"><stop offset="0" style="stop-color: #abefff; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #395068; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_430_124_432_127_abefff00_39506800" x1="430.357359314" y1="124.613359314" x2="432.842640686" y2="127.098640686" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_430_124_432_127_abefff00_39506800"/><linearGradient id="Definition_LinearGradient_177_56_179_59_ff3e3e00_78151500"><stop offset="0" style="stop-color: #ff3e3e; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #781515; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_177_56_179_59_ff3e3e00_78151500" x1="177.157359314" y1="56.565359314" x2="179.642640686" y2="59.050640686" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_177_56_179_59_ff3e3e00_78151500"/><linearGradient id="Definition_LinearGradient_237_101_240_103_ff3e3e00_78151500"><stop offset="0" style="stop-color: #ff3e3e; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #781515; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_237_101_240_103_ff3e3e00_78151500" x1="237.957359314" y1="101.061359314" x2="240.442640686" y2="103.546640686" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_237_101_240_103_ff3e3e00_78151500"/><linearGradient id="Definition_LinearGradient_298_91_301_94_ff3e3e00_78151500"><stop offset="0" style="stop-color: #ff3e3e; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #781515; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_298_91_301_94_ff3e3e00_78151500" x1="298.757359314" y1="91.845359314" x2="301.242640686" y2="94.330640686" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_298_91_301_94_ff3e3e00_78151500"/><linearGradient id="Definition_LinearGradient_359_134_362_136_ff3e3e00_78151500"><stop offset="0" style="stop-color: #ff3e3e; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #781515; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_359_134_362_136_ff3e3e00_78151500" x1="359.557359314" y1="134.037359314" x2="362.042640686" y2="136.522640686" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_359_134_362_136_ff3e3e00_78151500"/><linearGradient id="Definition_LinearGradient_420_46_422_48_ff3e3e00_78151500"><stop offset="0" style="stop-color: #ff3e3e; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #781515; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_420_46_422_48_ff3e3e00_78151500" x1="420.357359314" y1="46.485359314" x2="422.842640686" y2="48.970640686" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_420_46_422_48_ff3e3e00_78151500"/></defs><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="11" rx="6.3" ry="6.3" style="fill: url(#LinearGradient_8_8_13_13_abefff00_39506800); stroke: none;" id="ezcGraphCircle_5"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_7"/><ellipse cx="11" cy="29" rx="6.3" ry="6.3" style="fill: url(#LinearGradient_8_26_13_31_ff3e3e00_78151500); stroke: none;" id="ezcGraphCircle_8"/><path d=" M 100.0000,146.0000 L 120.0000,126.0000 L 500.0000,126.0000 L 480.0000,146.0000 L 100.0000,146.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 120.0000,126.0000 L 500.0000,126.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 492.0000,130.0000 L 500.0000,126.0000 L 492.0000,122.0000 L 492.0000,130.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_12"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_15"/><path d=" M 218.8000,162.0000 L 218.8000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 198.8000,143.3000 L 218.8000,123.3000 L 218.8000,128.7000 L 198.8000,148.7000 L 198.8000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_18"/><path d=" M 198.8000,143.3000 L 218.8000,123.3000 L 218.8000,128.7000 L 198.8000,148.7000 L 198.8000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_19"/><path d=" M 279.6000,162.0000 L 279.6000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 259.6000,143.3000 L 279.6000,123.3000 L 279.6000,128.7000 L 259.6000,148.7000 L 259.6000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_22"/><path d=" M 259.6000,143.3000 L 279.6000,123.3000 L 279.6000,128.7000 L 259.6000,148.7000 L 259.6000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_23"/><path d=" M 340.4000,162.0000 L 340.4000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 320.4000,143.3000 L 340.4000,123.3000 L 340.4000,128.7000 L 320.4000,148.7000 L 320.4000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_26"/><path d=" M 320.4000,143.3000 L 340.4000,123.3000 L 340.4000,128.7000 L 320.4000,148.7000 L 320.4000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_27"/><path d=" M 401.2000,162.0000 L 401.2000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 381.2000,143.3000 L 401.2000,123.3000 L 401.2000,128.7000 L 381.2000,148.7000 L 381.2000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_30"/><path d=" M 381.2000,143.3000 L 401.2000,123.3000 L 401.2000,128.7000 L 381.2000,148.7000 L 381.2000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_31"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 442.0000,143.3000 L 462.0000,123.3000 L 462.0000,128.7000 L 442.0000,148.7000 L 442.0000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_34"/><path d=" M 442.0000,143.3000 L 462.0000,123.3000 L 462.0000,128.7000 L 442.0000,148.7000 L 442.0000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_35"/><path d=" M 462.0000,162.0000 L 158.0000,162.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 138.0000,182.0000 L 158.0000,162.0000 L 160.8500,162.0000 L 140.8500,182.0000 L 138.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_37"/><path d=" M 138.0000,182.0000 L 158.0000,162.0000 L 160.8500,162.0000 L 140.8500,182.0000 L 138.0000,182.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_38"/><path d=" M 462.0000,90.0000 L 158.0000,90.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 138.0000,110.0000 L 158.0000,90.0000 L 160.8500,90.0000 L 140.8500,110.0000 L 138.0000,110.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_42"/><path d=" M 138.0000,110.0000 L 158.0000,90.0000 L 160.8500,90.0000 L 140.8500,110.0000 L 138.0000,110.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_43"/><path d=" M 462.0000,54.0000 L 158.0000,54.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 138.0000,74.0000 L 158.0000,54.0000 L 160.8500,54.0000 L 140.8500,74.0000 L 138.0000,74.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_46"/><path d=" M 138.0000,74.0000 L 158.0000,54.0000 L 160.8500,54.0000 L 140.8500,74.0000 L 138.0000,74.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_47"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_50"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_51"/><path d=" M 188.4000,92.3040 L 178.4000,102.3040 L 178.4000,102.3040 L 188.4000,92.3040 L 188.4000,92.3040 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_53"/><path d=" M 188.4000,92.3040 L 178.4000,102.3040 L 178.4000,102.3040 L 188.4000,92.3040 L 188.4000,92.3040 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_54"/><path d=" M 188.4000,92.3040 L 178.4000,102.3040 L 239.2000,139.0240 L 249.2000,129.0240 L 188.4000,92.3040 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_56"/><path d=" M 188.4000,92.3040 L 178.4000,102.3040 L 239.2000,139.0240 L 249.2000,129.0240 L 188.4000,92.3040 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_57"/><path d=" M 249.2000,129.0240 L 239.2000,139.0240 L 300.0000,89.3440 L 310.0000,79.3440 L 249.2000,129.0240 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_59"/><path d=" M 249.2000,129.0240 L 239.2000,139.0240 L 300.0000,89.3440 L 310.0000,79.3440 L 249.2000,129.0240 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_60"/><path d=" M 310.0000,79.3440 L 300.0000,89.3440 L 360.8000,153.2800 L 370.8000,143.2800 L 310.0000,79.3440 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_62"/><path d=" M 310.0000,79.3440 L 300.0000,89.3440 L 360.8000,153.2800 L 370.8000,143.2800 L 310.0000,79.3440 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_63"/><path d=" M 370.8000,143.2800 L 360.8000,153.2800 L 421.6000,135.8560 L 431.6000,125.8560 L 370.8000,143.2800 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_65"/><path d=" M 370.8000,143.2800 L 360.8000,153.2800 L 421.6000,135.8560 L 431.6000,125.8560 L 370.8000,143.2800 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_66"/><path d=" M 178.4000,57.8080 L 168.4000,67.8080 L 168.4000,67.8080 L 178.4000,57.8080 L 178.4000,57.8080 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_68"/><path d=" M 178.4000,57.8080 L 168.4000,67.8080 L 168.4000,67.8080 L 178.4000,57.8080 L 178.4000,57.8080 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_69"/><path d=" M 178.4000,57.8080 L 168.4000,67.8080 L 229.2000,112.3040 L 239.2000,102.3040 L 178.4000,57.8080 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 178.4000,57.8080 L 168.4000,67.8080 L 229.2000,112.3040 L 239.2000,102.3040 L 178.4000,57.8080 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 239.2000,102.3040 L 229.2000,112.3040 L 290.0000,103.0880 L 300.0000,93.0880 L 239.2000,102.3040 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_72"/><path d=" M 239.2000,102.3040 L 229.2000,112.3040 L 290.0000,103.0880 L 300.0000,93.0880 L 239.2000,102.3040 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_73"/><path d=" M 300.0000,93.0880 L 290.0000,103.0880 L 350.8000,145.2800 L 360.8000,135.2800 L 300.0000,93.0880 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_74"/><path d=" M 300.0000,93.0880 L 290.0000,103.0880 L 350.8000,145.2800 L 360.8000,135.2800 L 300.0000,93.0880 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_75"/><path d=" M 360.8000,135.2800 L 350.8000,145.2800 L 411.6000,57.7280 L 421.6000,47.7280 L 360.8000,135.2800 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 360.8000,135.2800 L 350.8000,145.2800 L 411.6000,57.7280 L 421.6000,47.7280 L 360.8000,135.2800 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_77"/><ellipse cx="188.4" cy="92.304" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="188.4" cy="92.304" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_187_91_189_93_abefff00_39506800); stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="249.2" cy="129.024" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="249.2" cy="129.024" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_247_127_250_130_abefff00_39506800); stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="310" cy="79.344" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="310" cy="79.344" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_308_78_311_80_abefff00_39506800); stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="370.8" cy="143.28" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><ellipse cx="370.8" cy="143.28" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_369_142_372_144_abefff00_39506800); stroke: none;" id="ezcGraphCircle_86"/><ellipse cx="431.6" cy="125.856" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_87"/><ellipse cx="431.6" cy="125.856" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_430_124_432_127_abefff00_39506800); stroke: none;" id="ezcGraphCircle_88"/><ellipse cx="178.4" cy="57.808" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_89"/><ellipse cx="178.4" cy="57.808" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_177_56_179_59_ff3e3e00_78151500); stroke: none;" id="ezcGraphCircle_90"/><ellipse cx="239.2" cy="102.304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_91"/><ellipse cx="239.2" cy="102.304" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_237_101_240_103_ff3e3e00_78151500); stroke: none;" id="ezcGraphCircle_92"/><ellipse cx="300" cy="93.088" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_93"/><ellipse cx="300" cy="93.088" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_298_91_301_94_ff3e3e00_78151500); stroke: none;" id="ezcGraphCircle_94"/><ellipse cx="360.8" cy="135.28" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_95"/><ellipse cx="360.8" cy="135.28" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_359_134_362_136_ff3e3e00_78151500); stroke: none;" id="ezcGraphCircle_96"/><ellipse cx="421.6" cy="47.728" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_97"/><ellipse cx="421.6" cy="47.728" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_420_46_422_48_ff3e3e00_78151500); stroke: none;" id="ezcGraphCircle_98"/><path d=" M 500.0000,126.0000 L 480.0000,146.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_99"/><path d=" M 480.0000,146.0000 L 100.0000,146.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_100"/><path d=" M 100.0000,146.0000 L 120.0000,126.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_101"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_102"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_103"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_104"/><text id="ezcGraphTextBox_6" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_9" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_16" x="139.992" text-length="56.816px" y="161.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text><text id="ezcGraphTextBox_20" x="200.792" text-length="56.816px" y="161.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_24" x="261.592" text-length="56.816px" y="161.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_28" x="322.392" text-length="56.816px" y="161.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_32" x="383.192" text-length="56.816px" y="161.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_39" x="102.868" text-length="33.232px" y="180.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-250</text><text id="ezcGraphTextBox_40" x="127.792" text-length="8.308px" y="144.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_44" x="111.176" text-length="24.924px" y="108.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_48" x="111.176" text-length="24.924px" y="72.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_52" x="111.176" text-length="24.924px" y="53.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text><path d=" M 178.6000,88.1040 L 178.6000,76.6040 L 198.7000,76.6040 L 198.7000,88.1040 L 178.6000,88.1040 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_105"/><path d=" M 178.6000,88.1040 L 178.6000,76.6040 L 198.7000,76.6040 L 198.7000,88.1040 L 178.6000,88.1040 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_106"/><text id="ezcGraphTextBox_55" x="179.1" text-length="18.6px" y="87.104" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">234</text><path d=" M 239.4000,146.4240 L 239.4000,134.9240 L 259.5000,134.9240 L 259.5000,146.4240 L 239.4000,146.4240 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_107"/><path d=" M 239.4000,146.4240 L 239.4000,134.9240 L 259.5000,134.9240 L 259.5000,146.4240 L 239.4000,146.4240 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_108"/><text id="ezcGraphTextBox_58" x="239.9" text-length="18.6px" y="145.424" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">-21</text><path d=" M 300.2000,75.1440 L 300.2000,63.6440 L 320.3000,63.6440 L 320.3000,75.1440 L 300.2000,75.1440 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_109"/><path d=" M 300.2000,75.1440 L 300.2000,63.6440 L 320.3000,63.6440 L 320.3000,75.1440 L 300.2000,75.1440 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_110"/><text id="ezcGraphTextBox_61" x="300.7" text-length="18.6px" y="74.144" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">324</text><path d=" M 357.9000,160.6800 L 357.9000,149.1800 L 384.2000,149.1800 L 384.2000,160.6800 L 357.9000,160.6800 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_111"/><path d=" M 357.9000,160.6800 L 357.9000,149.1800 L 384.2000,149.1800 L 384.2000,160.6800 L 357.9000,160.6800 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_112"/><text id="ezcGraphTextBox_64" x="358.4" text-length="24.8px" y="159.68" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">-120</text><path d=" M 428.0000,121.6560 L 428.0000,110.1560 L 435.7000,110.1560 L 435.7000,121.6560 L 428.0000,121.6560 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_113"/><path d=" M 428.0000,121.6560 L 428.0000,110.1560 L 435.7000,110.1560 L 435.7000,121.6560 L 428.0000,121.6560 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_114"/><text id="ezcGraphTextBox_67" x="428.5" text-length="6.2px" y="120.656" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">1</text><path d=" M 411.8000,43.5280 L 411.8000,32.0280 L 431.9000,32.0280 L 431.9000,43.5280 L 411.8000,43.5280 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_115"/><path d=" M 411.8000,43.5280 L 411.8000,32.0280 L 431.9000,32.0280 L 431.9000,43.5280 L 411.8000,43.5280 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_116"/><text id="ezcGraphTextBox_78" x="412.3" text-length="18.6px" y="42.528" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">613</text></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs><linearGradient id="Definition_LinearGradient_8_8_13_13_abefff00_39506800"><stop offset="0" style="stop-color: #abefff; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #395068; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_8_8_13_13_abefff00_39506800" x1="8.100505066" y1="8.100505066" x2="13.899494934" y2="13.899494934" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_8_8_13_13_abefff00_39506800"/><linearGradient id="Definition_LinearGradient_8_26_13_31_ff3e3e00_78151500"><stop offset="0" style="stop-color: #ff3e3e; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #781515; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_8_26_13_31_ff3e3e00_78151500" x1="8.100505066" y1="26.100505066" x2="13.899494934" y2="31.899494934" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_8_26_13_31_ff3e3e00_78151500"/><linearGradient id="Definition_LinearGradient_187_91_189_93_abefff00_39506800"><stop offset="0" style="stop-color: #abefff; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #395068; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_187_91_189_93_abefff00_39506800" x1="187.157359314" y1="91.061359314" x2="189.642640686" y2="93.546640686" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_187_91_189_93_abefff00_39506800"/><linearGradient id="Definition_LinearGradient_247_127_250_130_abefff00_39506800"><stop offset="0" style="stop-color: #abefff; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #395068; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_247_127_250_130_abefff00_39506800" x1="247.957359314" y1="127.781359314" x2="250.442640686" y2="130.266640686" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_247_127_250_130_abefff00_39506800"/><linearGradient id="Definition_LinearGradient_308_78_311_80_abefff00_39506800"><stop offset="0" style="stop-color: #abefff; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #395068; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_308_78_311_80_abefff00_39506800" x1="308.757359314" y1="78.101359314" x2="311.242640686" y2="80.586640686" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_308_78_311_80_abefff00_39506800"/><linearGradient id="Definition_LinearGradient_369_142_372_144_abefff00_39506800"><stop offset="0" style="stop-color: #abefff; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #395068; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_369_142_372_144_abefff00_39506800" x1="369.557359314" y1="142.037359314" x2="372.042640686" y2="144.522640686" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_369_142_372_144_abefff00_39506800"/><linearGradient id="Definition_LinearGradient_430_124_432_127_abefff00_39506800"><stop offset="0" style="stop-color: #abefff; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #395068; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_430_124_432_127_abefff00_39506800" x1="430.357359314" y1="124.613359314" x2="432.842640686" y2="127.098640686" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_430_124_432_127_abefff00_39506800"/><linearGradient id="Definition_LinearGradient_177_56_179_59_ff3e3e00_78151500"><stop offset="0" style="stop-color: #ff3e3e; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #781515; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_177_56_179_59_ff3e3e00_78151500" x1="177.157359314" y1="56.565359314" x2="179.642640686" y2="59.050640686" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_177_56_179_59_ff3e3e00_78151500"/><linearGradient id="Definition_LinearGradient_237_101_240_103_ff3e3e00_78151500"><stop offset="0" style="stop-color: #ff3e3e; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #781515; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_237_101_240_103_ff3e3e00_78151500" x1="237.957359314" y1="101.061359314" x2="240.442640686" y2="103.546640686" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_237_101_240_103_ff3e3e00_78151500"/><linearGradient id="Definition_LinearGradient_298_91_301_94_ff3e3e00_78151500"><stop offset="0" style="stop-color: #ff3e3e; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #781515; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_298_91_301_94_ff3e3e00_78151500" x1="298.757359314" y1="91.845359314" x2="301.242640686" y2="94.330640686" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_298_91_301_94_ff3e3e00_78151500"/><linearGradient id="Definition_LinearGradient_359_134_362_136_ff3e3e00_78151500"><stop offset="0" style="stop-color: #ff3e3e; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #781515; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_359_134_362_136_ff3e3e00_78151500" x1="359.557359314" y1="134.037359314" x2="362.042640686" y2="136.522640686" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_359_134_362_136_ff3e3e00_78151500"/><linearGradient id="Definition_LinearGradient_420_46_422_48_ff3e3e00_78151500"><stop offset="0" style="stop-color: #ff3e3e; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #781515; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_420_46_422_48_ff3e3e00_78151500" x1="420.357359314" y1="46.485359314" x2="422.842640686" y2="48.970640686" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_420_46_422_48_ff3e3e00_78151500"/></defs><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="11" rx="6.3" ry="6.3" style="fill: url(#LinearGradient_8_8_13_13_abefff00_39506800); stroke: none;" id="ezcGraphCircle_5"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_7"/><ellipse cx="11" cy="29" rx="6.3" ry="6.3" style="fill: url(#LinearGradient_8_26_13_31_ff3e3e00_78151500); stroke: none;" id="ezcGraphCircle_8"/><path d=" M 100.0000,146.0000 L 120.0000,126.0000 L 500.0000,126.0000 L 480.0000,146.0000 L 100.0000,146.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 120.0000,126.0000 L 500.0000,126.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 492.0000,130.0000 L 500.0000,126.0000 L 492.0000,122.0000 L 492.0000,130.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_12"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_15"/><path d=" M 218.8000,162.0000 L 218.8000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 198.8000,143.3000 L 218.8000,123.3000 L 218.8000,128.7000 L 198.8000,148.7000 L 198.8000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_18"/><path d=" M 198.8000,143.3000 L 218.8000,123.3000 L 218.8000,128.7000 L 198.8000,148.7000 L 198.8000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_19"/><path d=" M 279.6000,162.0000 L 279.6000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 259.6000,143.3000 L 279.6000,123.3000 L 279.6000,128.7000 L 259.6000,148.7000 L 259.6000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_22"/><path d=" M 259.6000,143.3000 L 279.6000,123.3000 L 279.6000,128.7000 L 259.6000,148.7000 L 259.6000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_23"/><path d=" M 340.4000,162.0000 L 340.4000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 320.4000,143.3000 L 340.4000,123.3000 L 340.4000,128.7000 L 320.4000,148.7000 L 320.4000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_26"/><path d=" M 320.4000,143.3000 L 340.4000,123.3000 L 340.4000,128.7000 L 320.4000,148.7000 L 320.4000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_27"/><path d=" M 401.2000,162.0000 L 401.2000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 381.2000,143.3000 L 401.2000,123.3000 L 401.2000,128.7000 L 381.2000,148.7000 L 381.2000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_30"/><path d=" M 381.2000,143.3000 L 401.2000,123.3000 L 401.2000,128.7000 L 381.2000,148.7000 L 381.2000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_31"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 442.0000,143.3000 L 462.0000,123.3000 L 462.0000,128.7000 L 442.0000,148.7000 L 442.0000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_34"/><path d=" M 442.0000,143.3000 L 462.0000,123.3000 L 462.0000,128.7000 L 442.0000,148.7000 L 442.0000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_35"/><path d=" M 462.0000,162.0000 L 158.0000,162.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 138.0000,182.0000 L 158.0000,162.0000 L 160.8500,162.0000 L 140.8500,182.0000 L 138.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_37"/><path d=" M 138.0000,182.0000 L 158.0000,162.0000 L 160.8500,162.0000 L 140.8500,182.0000 L 138.0000,182.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_38"/><path d=" M 462.0000,154.8000 L 158.0000,154.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 138.0000,174.8000 L 158.0000,154.8000 L 158.9500,154.8000 L 138.9500,174.8000 L 138.0000,174.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_41"/><path d=" M 138.0000,174.8000 L 158.0000,154.8000 L 158.9500,154.8000 L 138.9500,174.8000 L 138.0000,174.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_42"/><path d=" M 462.0000,147.6000 L 158.0000,147.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 138.0000,167.6000 L 158.0000,147.6000 L 158.9500,147.6000 L 138.9500,167.6000 L 138.0000,167.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 138.0000,167.6000 L 158.0000,147.6000 L 158.9500,147.6000 L 138.9500,167.6000 L 138.0000,167.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 462.0000,140.4000 L 158.0000,140.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 138.0000,160.4000 L 158.0000,140.4000 L 158.9500,140.4000 L 138.9500,160.4000 L 138.0000,160.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_47"/><path d=" M 138.0000,160.4000 L 158.0000,140.4000 L 158.9500,140.4000 L 138.9500,160.4000 L 138.0000,160.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_48"/><path d=" M 462.0000,133.2000 L 158.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_50"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_51"/><path d=" M 462.0000,118.8000 L 158.0000,118.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 138.0000,138.8000 L 158.0000,118.8000 L 158.9500,118.8000 L 138.9500,138.8000 L 138.0000,138.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 138.0000,138.8000 L 158.0000,118.8000 L 158.9500,118.8000 L 138.9500,138.8000 L 138.0000,138.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_55"/><path d=" M 462.0000,111.6000 L 158.0000,111.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 138.0000,131.6000 L 158.0000,111.6000 L 158.9500,111.6000 L 138.9500,131.6000 L 138.0000,131.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 138.0000,131.6000 L 158.0000,111.6000 L 158.9500,111.6000 L 138.9500,131.6000 L 138.0000,131.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 462.0000,104.4000 L 158.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 462.0000,97.2000 L 158.0000,97.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 138.0000,117.2000 L 158.0000,97.2000 L 158.9500,97.2000 L 138.9500,117.2000 L 138.0000,117.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_63"/><path d=" M 138.0000,117.2000 L 158.0000,97.2000 L 158.9500,97.2000 L 138.9500,117.2000 L 138.0000,117.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_64"/><path d=" M 462.0000,90.0000 L 158.0000,90.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 138.0000,110.0000 L 158.0000,90.0000 L 160.8500,90.0000 L 140.8500,110.0000 L 138.0000,110.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_66"/><path d=" M 138.0000,110.0000 L 158.0000,90.0000 L 160.8500,90.0000 L 140.8500,110.0000 L 138.0000,110.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_67"/><path d=" M 462.0000,82.8000 L 158.0000,82.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 138.0000,102.8000 L 158.0000,82.8000 L 158.9500,82.8000 L 138.9500,102.8000 L 138.0000,102.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 138.0000,102.8000 L 158.0000,82.8000 L 158.9500,82.8000 L 138.9500,102.8000 L 138.0000,102.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 462.0000,75.6000 L 158.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_74"/><path d=" M 462.0000,68.4000 L 158.0000,68.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 138.0000,88.4000 L 158.0000,68.4000 L 158.9500,68.4000 L 138.9500,88.4000 L 138.0000,88.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 138.0000,88.4000 L 158.0000,68.4000 L 158.9500,68.4000 L 138.9500,88.4000 L 138.0000,88.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_77"/><path d=" M 462.0000,61.2000 L 158.0000,61.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 138.0000,81.2000 L 158.0000,61.2000 L 158.9500,61.2000 L 138.9500,81.2000 L 138.0000,81.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 138.0000,81.2000 L 158.0000,61.2000 L 158.9500,61.2000 L 138.9500,81.2000 L 138.0000,81.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_80"/><path d=" M 462.0000,54.0000 L 158.0000,54.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_81"/><path d=" M 138.0000,74.0000 L 158.0000,54.0000 L 160.8500,54.0000 L 140.8500,74.0000 L 138.0000,74.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_82"/><path d=" M 138.0000,74.0000 L 158.0000,54.0000 L 160.8500,54.0000 L 140.8500,74.0000 L 138.0000,74.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_83"/><path d=" M 462.0000,46.8000 L 158.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_85"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_86"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_87"/><path d=" M 462.0000,39.6000 L 158.0000,39.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_88"/><path d=" M 138.0000,59.6000 L 158.0000,39.6000 L 158.9500,39.6000 L 138.9500,59.6000 L 138.0000,59.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_89"/><path d=" M 138.0000,59.6000 L 158.0000,39.6000 L 158.9500,39.6000 L 138.9500,59.6000 L 138.0000,59.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_90"/><path d=" M 462.0000,32.4000 L 158.0000,32.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_91"/><path d=" M 138.0000,52.4000 L 158.0000,32.4000 L 158.9500,32.4000 L 138.9500,52.4000 L 138.0000,52.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_92"/><path d=" M 138.0000,52.4000 L 158.0000,32.4000 L 158.9500,32.4000 L 138.9500,52.4000 L 138.0000,52.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_93"/><path d=" M 462.0000,25.2000 L 158.0000,25.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_94"/><path d=" M 138.0000,45.2000 L 158.0000,25.2000 L 158.9500,25.2000 L 138.9500,45.2000 L 138.0000,45.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_95"/><path d=" M 138.0000,45.2000 L 158.0000,25.2000 L 158.9500,25.2000 L 138.9500,45.2000 L 138.0000,45.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_96"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_97"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_98"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_99"/><path d=" M 188.4000,92.3040 L 178.4000,102.3040 L 178.4000,102.3040 L 188.4000,92.3040 L 188.4000,92.3040 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_101"/><path d=" M 188.4000,92.3040 L 178.4000,102.3040 L 178.4000,102.3040 L 188.4000,92.3040 L 188.4000,92.3040 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_102"/><path d=" M 188.4000,92.3040 L 178.4000,102.3040 L 239.2000,139.0240 L 249.2000,129.0240 L 188.4000,92.3040 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_104"/><path d=" M 188.4000,92.3040 L 178.4000,102.3040 L 239.2000,139.0240 L 249.2000,129.0240 L 188.4000,92.3040 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_105"/><path d=" M 249.2000,129.0240 L 239.2000,139.0240 L 300.0000,89.3440 L 310.0000,79.3440 L 249.2000,129.0240 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_107"/><path d=" M 249.2000,129.0240 L 239.2000,139.0240 L 300.0000,89.3440 L 310.0000,79.3440 L 249.2000,129.0240 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_108"/><path d=" M 310.0000,79.3440 L 300.0000,89.3440 L 360.8000,153.2800 L 370.8000,143.2800 L 310.0000,79.3440 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_110"/><path d=" M 310.0000,79.3440 L 300.0000,89.3440 L 360.8000,153.2800 L 370.8000,143.2800 L 310.0000,79.3440 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_111"/><path d=" M 370.8000,143.2800 L 360.8000,153.2800 L 421.6000,135.8560 L 431.6000,125.8560 L 370.8000,143.2800 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_113"/><path d=" M 370.8000,143.2800 L 360.8000,153.2800 L 421.6000,135.8560 L 431.6000,125.8560 L 370.8000,143.2800 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_114"/><path d=" M 178.4000,57.8080 L 168.4000,67.8080 L 168.4000,67.8080 L 178.4000,57.8080 L 178.4000,57.8080 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_116"/><path d=" M 178.4000,57.8080 L 168.4000,67.8080 L 168.4000,67.8080 L 178.4000,57.8080 L 178.4000,57.8080 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_117"/><path d=" M 178.4000,57.8080 L 168.4000,67.8080 L 229.2000,112.3040 L 239.2000,102.3040 L 178.4000,57.8080 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_118"/><path d=" M 178.4000,57.8080 L 168.4000,67.8080 L 229.2000,112.3040 L 239.2000,102.3040 L 178.4000,57.8080 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_119"/><path d=" M 239.2000,102.3040 L 229.2000,112.3040 L 290.0000,103.0880 L 300.0000,93.0880 L 239.2000,102.3040 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_120"/><path d=" M 239.2000,102.3040 L 229.2000,112.3040 L 290.0000,103.0880 L 300.0000,93.0880 L 239.2000,102.3040 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_121"/><path d=" M 300.0000,93.0880 L 290.0000,103.0880 L 350.8000,145.2800 L 360.8000,135.2800 L 300.0000,93.0880 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_122"/><path d=" M 300.0000,93.0880 L 290.0000,103.0880 L 350.8000,145.2800 L 360.8000,135.2800 L 300.0000,93.0880 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_123"/><path d=" M 360.8000,135.2800 L 350.8000,145.2800 L 411.6000,57.7280 L 421.6000,47.7280 L 360.8000,135.2800 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_124"/><path d=" M 360.8000,135.2800 L 350.8000,145.2800 L 411.6000,57.7280 L 421.6000,47.7280 L 360.8000,135.2800 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_125"/><ellipse cx="188.4" cy="92.304" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_127"/><ellipse cx="188.4" cy="92.304" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_187_91_189_93_abefff00_39506800); stroke: none;" id="ezcGraphCircle_128"/><ellipse cx="249.2" cy="129.024" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_129"/><ellipse cx="249.2" cy="129.024" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_247_127_250_130_abefff00_39506800); stroke: none;" id="ezcGraphCircle_130"/><ellipse cx="310" cy="79.344" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_131"/><ellipse cx="310" cy="79.344" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_308_78_311_80_abefff00_39506800); stroke: none;" id="ezcGraphCircle_132"/><ellipse cx="370.8" cy="143.28" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_133"/><ellipse cx="370.8" cy="143.28" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_369_142_372_144_abefff00_39506800); stroke: none;" id="ezcGraphCircle_134"/><ellipse cx="431.6" cy="125.856" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_135"/><ellipse cx="431.6" cy="125.856" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_430_124_432_127_abefff00_39506800); stroke: none;" id="ezcGraphCircle_136"/><ellipse cx="178.4" cy="57.808" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_137"/><ellipse cx="178.4" cy="57.808" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_177_56_179_59_ff3e3e00_78151500); stroke: none;" id="ezcGraphCircle_138"/><ellipse cx="239.2" cy="102.304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_139"/><ellipse cx="239.2" cy="102.304" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_237_101_240_103_ff3e3e00_78151500); stroke: none;" id="ezcGraphCircle_140"/><ellipse cx="300" cy="93.088" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_141"/><ellipse cx="300" cy="93.088" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_298_91_301_94_ff3e3e00_78151500); stroke: none;" id="ezcGraphCircle_142"/><ellipse cx="360.8" cy="135.28" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_143"/><ellipse cx="360.8" cy="135.28" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_359_134_362_136_ff3e3e00_78151500); stroke: none;" id="ezcGraphCircle_144"/><ellipse cx="421.6" cy="47.728" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_145"/><ellipse cx="421.6" cy="47.728" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_420_46_422_48_ff3e3e00_78151500); stroke: none;" id="ezcGraphCircle_146"/><path d=" M 500.0000,126.0000 L 480.0000,146.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_147"/><path d=" M 480.0000,146.0000 L 100.0000,146.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_148"/><path d=" M 100.0000,146.0000 L 120.0000,126.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_149"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_150"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_151"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_152"/><text id="ezcGraphTextBox_6" x="19" text-length="44.52px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text><text id="ezcGraphTextBox_9" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text><text id="ezcGraphTextBox_16" x="139.992" text-length="56.816px" y="161.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text><text id="ezcGraphTextBox_20" x="200.792" text-length="56.816px" y="161.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_24" x="261.592" text-length="56.816px" y="161.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_28" x="322.392" text-length="56.816px" y="161.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text><text id="ezcGraphTextBox_32" x="383.192" text-length="56.816px" y="161.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text><text id="ezcGraphTextBox_39" x="102.868" text-length="33.232px" y="180.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-250</text><text id="ezcGraphTextBox_52" x="127.792" text-length="8.308px" y="144.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_68" x="111.176" text-length="24.924px" y="108.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_84" x="111.176" text-length="24.924px" y="72.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text><text id="ezcGraphTextBox_100" x="111.176" text-length="24.924px" y="53.2" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text><path d=" M 178.6000,88.1040 L 178.6000,76.6040 L 198.7000,76.6040 L 198.7000,88.1040 L 178.6000,88.1040 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_153"/><path d=" M 178.6000,88.1040 L 178.6000,76.6040 L 198.7000,76.6040 L 198.7000,88.1040 L 178.6000,88.1040 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_154"/><text id="ezcGraphTextBox_103" x="179.1" text-length="18.6px" y="87.104" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">234</text><path d=" M 239.4000,146.4240 L 239.4000,134.9240 L 259.5000,134.9240 L 259.5000,146.4240 L 239.4000,146.4240 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_155"/><path d=" M 239.4000,146.4240 L 239.4000,134.9240 L 259.5000,134.9240 L 259.5000,146.4240 L 239.4000,146.4240 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_156"/><text id="ezcGraphTextBox_106" x="239.9" text-length="18.6px" y="145.424" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">-21</text><path d=" M 300.2000,75.1440 L 300.2000,63.6440 L 320.3000,63.6440 L 320.3000,75.1440 L 300.2000,75.1440 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_157"/><path d=" M 300.2000,75.1440 L 300.2000,63.6440 L 320.3000,63.6440 L 320.3000,75.1440 L 300.2000,75.1440 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_158"/><text id="ezcGraphTextBox_109" x="300.7" text-length="18.6px" y="74.144" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">324</text><path d=" M 357.9000,160.6800 L 357.9000,149.1800 L 384.2000,149.1800 L 384.2000,160.6800 L 357.9000,160.6800 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_159"/><path d=" M 357.9000,160.6800 L 357.9000,149.1800 L 384.2000,149.1800 L 384.2000,160.6800 L 357.9000,160.6800 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_160"/><text id="ezcGraphTextBox_112" x="358.4" text-length="24.8px" y="159.68" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">-120</text><path d=" M 428.0000,121.6560 L 428.0000,110.1560 L 435.7000,110.1560 L 435.7000,121.6560 L 428.0000,121.6560 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_161"/><path d=" M 428.0000,121.6560 L 428.0000,110.1560 L 435.7000,110.1560 L 435.7000,121.6560 L 428.0000,121.6560 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_162"/><text id="ezcGraphTextBox_115" x="428.5" text-length="6.2px" y="120.656" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">1</text><path d=" M 411.8000,43.5280 L 411.8000,32.0280 L 431.9000,32.0280 L 431.9000,43.5280 L 411.8000,43.5280 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_163"/><path d=" M 411.8000,43.5280 L 411.8000,32.0280 L 431.9000,32.0280 L 431.9000,43.5280 L 411.8000,43.5280 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_164"/><text id="ezcGraphTextBox_126" x="412.3" text-length="18.6px" y="42.528" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">613</text></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer3dTest_testRenderNegativeBarChartSymbols.svg b/tests/data/compare/ezcGraphRenderer3dTest_testRenderNegativeBarChartSymbols.svg
index b2a2565..884168c 100644
--- a/tests/data/compare/ezcGraphRenderer3dTest_testRenderNegativeBarChartSymbols.svg
+++ b/tests/data/compare/ezcGraphRenderer3dTest_testRenderNegativeBarChartSymbols.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="700" height="200" version="1.0" id="ezcGraph"><defs><linearGradient id="Definition_LinearGradient_229_28_245_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_229_28_245_28_ffffffbf_0000007f" x1="229.62040178571" y1="28" x2="245.31790178571" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_229_28_245_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_229_28_245_28_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_229_28_245_28_8f191900_ef292900" x1="229.62040178571" y1="28" x2="245.31790178571" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_229_28_245_28_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_249_28_264_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_249_28_264_28_ffffffbf_0000007f" x1="249.08209821429" y1="28" x2="264.77959821429" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_249_28_264_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_316_28_331_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_316_28_331_28_ffffffbf_0000007f" x1="316.02040178571" y1="28" x2="331.71790178571" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_316_28_331_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_316_28_331_28_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_316_28_331_28_8f191900_ef292900" x1="316.02040178571" y1="28" x2="331.71790178571" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_316_28_331_28_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_335_28_351_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_335_28_351_28_ffffffbf_0000007f" x1="335.48209821429" y1="28" x2="351.17959821429" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_335_28_351_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_402_28_418_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_402_28_418_28_ffffffbf_0000007f" x1="402.42040178571" y1="28" x2="418.11790178571" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_402_28_418_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_402_28_418_28_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_402_28_418_28_8f191900_ef292900" x1="402.42040178571" y1="28" x2="418.11790178571" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_402_28_418_28_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_421_28_437_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_421_28_437_28_ffffffbf_0000007f" x1="421.88209821429" y1="28" x2="437.57959821429" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_421_28_437_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_488_28_504_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_488_28_504_28_ffffffbf_0000007f" x1="488.82040178571" y1="28" x2="504.51790178571" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_488_28_504_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_488_28_504_28_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_488_28_504_28_8f191900_ef292900" x1="488.82040178571" y1="28" x2="504.51790178571" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_488_28_504_28_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_508_28_523_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_508_28_523_28_ffffffbf_0000007f" x1="508.28209821429" y1="28" x2="523.97959821429" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_508_28_523_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_575_28_590_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_575_28_590_28_ffffffbf_0000007f" x1="575.22040178571" y1="28" x2="590.91790178571" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_575_28_590_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_575_28_590_28_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_575_28_590_28_8f191900_ef292900" x1="575.22040178571" y1="28" x2="590.91790178571" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_575_28_590_28_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_594_28_610_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_594_28_610_28_ffffffbf_0000007f" x1="594.68209821429" y1="28" x2="610.37959821429" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_594_28_610_28_ffffffbf_0000007f"/></defs><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 700.0000,0.0000 L 700.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 139.0000,1.0000 L 139.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 138.0000,2.0000 L 138.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><path d=" M 4.0000,18.0000 L 4.0000,4.0000 L 18.0000,4.0000 L 18.0000,18.0000 L 4.0000,18.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircle_6"/><ellipse cx="11" cy="47" rx="7" ry="7" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_8"/><path d=" M 4.0000,65.0000 L 11.0000,58.0000 L 18.0000,65.0000 L 11.0000,72.0000 L 4.0000,65.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 140.0000,38.0000 L 160.0000,18.0000 L 700.0000,18.0000 L 680.0000,38.0000 L 140.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_12"/><path d=" M 160.0000,18.0000 L 700.0000,18.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 692.0000,22.0000 L 700.0000,18.0000 L 692.0000,14.0000 L 692.0000,22.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 194.0000,200.0000 L 214.0000,180.0000 L 214.0000,0.0000 L 194.0000,20.0000 L 194.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_15"/><path d=" M 214.0000,180.0000 L 214.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 211.5000,5.0000 L 214.0000,0.0000 L 216.5000,5.0000 L 211.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_17"/><path d=" M 300.4000,162.0000 L 300.4000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 280.4000,35.3000 L 300.4000,15.3000 L 300.4000,20.7000 L 280.4000,40.7000 L 280.4000,35.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_20"/><path d=" M 280.4000,35.3000 L 300.4000,15.3000 L 300.4000,20.7000 L 280.4000,40.7000 L 280.4000,35.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_21"/><path d=" M 386.8000,162.0000 L 386.8000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 366.8000,35.3000 L 386.8000,15.3000 L 386.8000,20.7000 L 366.8000,40.7000 L 366.8000,35.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 366.8000,35.3000 L 386.8000,15.3000 L 386.8000,20.7000 L 366.8000,40.7000 L 366.8000,35.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_25"/><path d=" M 473.2000,162.0000 L 473.2000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 453.2000,35.3000 L 473.2000,15.3000 L 473.2000,20.7000 L 453.2000,40.7000 L 453.2000,35.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_28"/><path d=" M 453.2000,35.3000 L 473.2000,15.3000 L 473.2000,20.7000 L 453.2000,40.7000 L 453.2000,35.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_29"/><path d=" M 559.6000,162.0000 L 559.6000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 539.6000,35.3000 L 559.6000,15.3000 L 559.6000,20.7000 L 539.6000,40.7000 L 539.6000,35.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_32"/><path d=" M 539.6000,35.3000 L 559.6000,15.3000 L 559.6000,20.7000 L 539.6000,40.7000 L 539.6000,35.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_33"/><path d=" M 646.0000,162.0000 L 646.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 626.0000,35.3000 L 646.0000,15.3000 L 646.0000,20.7000 L 626.0000,40.7000 L 626.0000,35.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_36"/><path d=" M 626.0000,35.3000 L 646.0000,15.3000 L 646.0000,20.7000 L 626.0000,40.7000 L 626.0000,35.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_37"/><path d=" M 646.0000,162.0000 L 214.0000,162.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 194.0000,182.0000 L 214.0000,162.0000 L 216.8929,162.0000 L 196.8929,182.0000 L 194.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_39"/><path d=" M 194.0000,182.0000 L 214.0000,162.0000 L 216.8929,162.0000 L 196.8929,182.0000 L 194.0000,182.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_40"/><path d=" M 646.0000,133.2000 L 214.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 194.0000,153.2000 L 214.0000,133.2000 L 216.8929,133.2000 L 196.8929,153.2000 L 194.0000,153.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_43"/><path d=" M 194.0000,153.2000 L 214.0000,133.2000 L 216.8929,133.2000 L 196.8929,153.2000 L 194.0000,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_44"/><path d=" M 646.0000,104.4000 L 214.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 194.0000,124.4000 L 214.0000,104.4000 L 216.8929,104.4000 L 196.8929,124.4000 L 194.0000,124.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_47"/><path d=" M 194.0000,124.4000 L 214.0000,104.4000 L 216.8929,104.4000 L 196.8929,124.4000 L 194.0000,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_48"/><path d=" M 646.0000,75.6000 L 214.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 194.0000,95.6000 L 214.0000,75.6000 L 216.8929,75.6000 L 196.8929,95.6000 L 194.0000,95.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 194.0000,95.6000 L 214.0000,75.6000 L 216.8929,75.6000 L 196.8929,95.6000 L 194.0000,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_52"/><path d=" M 646.0000,46.8000 L 214.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 194.0000,66.8000 L 214.0000,46.8000 L 216.8929,46.8000 L 196.8929,66.8000 L 194.0000,66.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_55"/><path d=" M 194.0000,66.8000 L 214.0000,46.8000 L 216.8929,46.8000 L 196.8929,66.8000 L 194.0000,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_56"/><path d=" M 217.5759,36.0000 L 202.4390,36.0000 L 202.4390,160.4160 L 217.5759,160.4160 L 217.5759,36.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_59"/><path d=" M 218.4390,20.0000 L 202.4390,36.0000 L 217.5759,36.0000 L 233.5759,20.0000 L 218.4390,20.0000 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 233.5759,144.4160 L 217.5759,160.4160 L 217.5759,36.0000 L 233.5759,20.0000 L 233.5759,144.4160 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_61"/><path d="M 229.62,95.39 A 7.85,3.92 0 0,0 245.32,95.39 L 245.32,28.00 A 7.85,3.924375 0 0,1 229.62,28.00 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_62"/><path d="M 229.62,95.39 A 7.85,3.92 0 0,0 245.32,95.39 L 245.32,28.00 A 7.85,3.924375 0 0,1 229.62,28.00 z" style="fill: url(#LinearGradient_229_28_245_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="237.46915178571" cy="28" rx="7.84875" ry="3.924375" style="fill: url(#LinearGradient_229_28_245_28_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_63"/><path d="M 249.08,63.71 A 7.85,3.92 0 0,0 264.78,63.71 L 264.78,28.00 A 7.85,3.924375 0 0,1 249.08,28.00 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_64"/><path d="M 249.08,63.71 A 7.85,3.92 0 0,0 264.78,63.71 L 264.78,28.00 A 7.85,3.924375 0 0,1 249.08,28.00 z" style="fill: url(#LinearGradient_249_28_264_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="256.93084821429" cy="28" rx="7.84875" ry="3.924375" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_65"/><path d=" M 271.4199,36.0000 L 268.8241,28.0000 L 268.8241,139.4560 L 271.4199,147.4560 L 271.4199,36.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_66"/><path d=" M 268.8241,28.0000 L 271.4199,36.0000 L 283.9610,28.0000 L 281.3652,20.0000 L 268.8241,28.0000 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_67"/><path d=" M 271.4199,36.0000 L 283.9610,28.0000 L 283.9610,139.4560 L 271.4199,147.4560 L 271.4199,36.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_68"/><path d=" M 303.9759,36.0000 L 288.8390,36.0000 L 288.8390,48.3840 L 303.9759,48.3840 L 303.9759,36.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_69"/><path d=" M 304.8390,20.0000 L 288.8390,36.0000 L 303.9759,36.0000 L 319.9759,20.0000 L 304.8390,20.0000 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 319.9759,32.3840 L 303.9759,48.3840 L 303.9759,36.0000 L 319.9759,20.0000 L 319.9759,32.3840 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_71"/><path d="M 316.02,34.05 A 7.85,3.92 0 0,0 331.72,34.05 L 331.72,28.00 A 7.85,3.924375 0 0,1 316.02,28.00 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_72"/><path d="M 316.02,34.05 A 7.85,3.92 0 0,0 331.72,34.05 L 331.72,28.00 A 7.85,3.924375 0 0,1 316.02,28.00 z" style="fill: url(#LinearGradient_316_28_331_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="323.86915178571" cy="28" rx="7.84875" ry="3.924375" style="fill: url(#LinearGradient_316_28_331_28_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_73"/><path d="M 335.48,98.56 A 7.85,3.92 0 0,0 351.18,98.56 L 351.18,28.00 A 7.85,3.924375 0 0,1 335.48,28.00 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_74"/><path d="M 335.48,98.56 A 7.85,3.92 0 0,0 351.18,98.56 L 351.18,28.00 A 7.85,3.924375 0 0,1 335.48,28.00 z" style="fill: url(#LinearGradient_335_28_351_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="343.33084821429" cy="28" rx="7.84875" ry="3.924375" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_75"/><path d=" M 357.8199,36.0000 L 355.2241,28.0000 L 355.2241,103.1680 L 357.8199,111.1680 L 357.8199,36.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 355.2241,28.0000 L 357.8199,36.0000 L 370.3610,28.0000 L 367.7652,20.0000 L 355.2241,28.0000 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_77"/><path d=" M 357.8199,36.0000 L 370.3610,28.0000 L 370.3610,103.1680 L 357.8199,111.1680 L 357.8199,36.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_78"/><path d=" M 390.3759,36.0000 L 375.2390,36.0000 L 375.2390,54.7200 L 390.3759,54.7200 L 390.3759,36.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 391.2390,20.0000 L 375.2390,36.0000 L 390.3759,36.0000 L 406.3759,20.0000 L 391.2390,20.0000 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_80"/><path d=" M 406.3759,38.7200 L 390.3759,54.7200 L 390.3759,36.0000 L 406.3759,20.0000 L 406.3759,38.7200 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_81"/><path d="M 402.42,121.31 A 7.85,3.92 0 0,0 418.12,121.31 L 418.12,28.00 A 7.85,3.924375 0 0,1 402.42,28.00 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_82"/><path d="M 402.42,121.31 A 7.85,3.92 0 0,0 418.12,121.31 L 418.12,28.00 A 7.85,3.924375 0 0,1 402.42,28.00 z" style="fill: url(#LinearGradient_402_28_418_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="410.26915178571" cy="28" rx="7.84875" ry="3.924375" style="fill: url(#LinearGradient_402_28_418_28_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_83"/><path d="M 421.88,131.97 A 7.85,3.92 0 0,0 437.58,131.97 L 437.58,28.00 A 7.85,3.924375 0 0,1 421.88,28.00 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_84"/><path d="M 421.88,131.97 A 7.85,3.92 0 0,0 437.58,131.97 L 437.58,28.00 A 7.85,3.924375 0 0,1 421.88,28.00 z" style="fill: url(#LinearGradient_421_28_437_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="429.73084821429" cy="28" rx="7.84875" ry="3.924375" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><path d=" M 444.2199,36.0000 L 441.6241,28.0000 L 441.6241,34.9120 L 444.2199,42.9120 L 444.2199,36.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_86"/><path d=" M 441.6241,28.0000 L 444.2199,36.0000 L 456.7610,28.0000 L 454.1652,20.0000 L 441.6241,28.0000 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_87"/><path d=" M 444.2199,36.0000 L 456.7610,28.0000 L 456.7610,34.9120 L 444.2199,42.9120 L 444.2199,36.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_88"/><path d=" M 476.7759,36.0000 L 461.6390,36.0000 L 461.6390,63.9360 L 476.7759,63.9360 L 476.7759,36.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_89"/><path d=" M 477.6390,20.0000 L 461.6390,36.0000 L 476.7759,36.0000 L 492.7759,20.0000 L 477.6390,20.0000 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_90"/><path d=" M 492.7759,47.9360 L 476.7759,63.9360 L 476.7759,36.0000 L 492.7759,20.0000 L 492.7759,47.9360 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_91"/><path d="M 488.82,62.56 A 7.85,3.92 0 0,0 504.52,62.56 L 504.52,28.00 A 7.85,3.924375 0 0,1 488.82,28.00 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_92"/><path d="M 488.82,62.56 A 7.85,3.92 0 0,0 504.52,62.56 L 504.52,28.00 A 7.85,3.924375 0 0,1 488.82,28.00 z" style="fill: url(#LinearGradient_488_28_504_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="496.66915178571" cy="28" rx="7.84875" ry="3.924375" style="fill: url(#LinearGradient_488_28_504_28_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_93"/><path d="M 508.28,146.66 A 7.85,3.92 0 0,0 523.98,146.66 L 523.98,28.00 A 7.85,3.924375 0 0,1 508.28,28.00 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_94"/><path d="M 508.28,146.66 A 7.85,3.92 0 0,0 523.98,146.66 L 523.98,28.00 A 7.85,3.924375 0 0,1 508.28,28.00 z" style="fill: url(#LinearGradient_508_28_523_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="516.13084821429" cy="28" rx="7.84875" ry="3.924375" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_95"/><path d=" M 530.6199,36.0000 L 528.0241,28.0000 L 528.0241,44.9920 L 530.6199,52.9920 L 530.6199,36.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_96"/><path d=" M 528.0241,28.0000 L 530.6199,36.0000 L 543.1610,28.0000 L 540.5652,20.0000 L 528.0241,28.0000 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_97"/><path d=" M 530.6199,36.0000 L 543.1610,28.0000 L 543.1610,44.9920 L 530.6199,52.9920 L 530.6199,36.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_98"/><path d=" M 563.1759,36.0000 L 548.0390,36.0000 L 548.0390,80.3520 L 563.1759,80.3520 L 563.1759,36.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_99"/><path d=" M 564.0390,20.0000 L 548.0390,36.0000 L 563.1759,36.0000 L 579.1759,20.0000 L 564.0390,20.0000 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_100"/><path d=" M 579.1759,64.3520 L 563.1759,80.3520 L 563.1759,36.0000 L 579.1759,20.0000 L 579.1759,64.3520 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_101"/><path d="M 575.22,28.29 A 7.85,3.92 0 0,0 590.92,28.29 L 590.92,28.00 A 7.85,3.924375 0 0,1 575.22,28.00 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_102"/><path d="M 575.22,28.29 A 7.85,3.92 0 0,0 590.92,28.29 L 590.92,28.00 A 7.85,3.924375 0 0,1 575.22,28.00 z" style="fill: url(#LinearGradient_575_28_590_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="583.06915178571" cy="28" rx="7.84875" ry="3.924375" style="fill: url(#LinearGradient_575_28_590_28_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_103"/><path d="M 594.68,166.24 A 7.85,3.92 0 0,0 610.38,166.24 L 610.38,28.00 A 7.85,3.924375 0 0,1 594.68,28.00 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_104"/><path d="M 594.68,166.24 A 7.85,3.92 0 0,0 610.38,166.24 L 610.38,28.00 A 7.85,3.924375 0 0,1 594.68,28.00 z" style="fill: url(#LinearGradient_594_28_610_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="602.53084821429" cy="28" rx="7.84875" ry="3.924375" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_105"/><path d=" M 617.0199,36.0000 L 614.4241,28.0000 L 614.4241,60.2560 L 617.0199,68.2560 L 617.0199,36.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_106"/><path d=" M 614.4241,28.0000 L 617.0199,36.0000 L 629.5610,28.0000 L 626.9652,20.0000 L 614.4241,28.0000 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_107"/><path d=" M 617.0199,36.0000 L 629.5610,28.0000 L 629.5610,60.2560 L 617.0199,68.2560 L 617.0199,36.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_108"/><path d=" M 700.0000,18.0000 L 680.0000,38.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_109"/><path d=" M 680.0000,38.0000 L 140.0000,38.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_110"/><path d=" M 140.0000,38.0000 L 160.0000,18.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_111"/><path d=" M 214.0000,0.0000 L 194.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_112"/><path d=" M 194.0000,20.0000 L 194.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_113"/><path d=" M 194.0000,200.0000 L 214.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_114"/><text id="ezcGraphTextBox_5" x="19" text-length="66.78px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Rectangle</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Circle</text><text id="ezcGraphTextBox_9" x="19" text-length="44.52px" y="54" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Bullet</text><text id="ezcGraphTextBox_11" x="19" text-length="51.94px" y="72" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Diamond</text><text id="ezcGraphTextBox_18" x="211.442" text-length="51.516px" y="50.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample -1</text><text id="ezcGraphTextBox_22" x="297.842" text-length="51.516px" y="50.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample -2</text><text id="ezcGraphTextBox_26" x="384.242" text-length="51.516px" y="50.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample -3</text><text id="ezcGraphTextBox_30" x="470.642" text-length="51.516px" y="50.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample -4</text><text id="ezcGraphTextBox_34" x="557.042" text-length="51.516px" y="50.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample -5</text><text id="ezcGraphTextBox_41" x="165.28742857143" text-length="26.784px" y="180.2" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-500</text><text id="ezcGraphTextBox_45" x="165.28742857143" text-length="26.784px" y="151.4" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-400</text><text id="ezcGraphTextBox_49" x="165.28742857143" text-length="26.784px" y="122.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-300</text><text id="ezcGraphTextBox_53" x="165.28742857143" text-length="26.784px" y="93.8" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-200</text><text id="ezcGraphTextBox_57" x="165.28742857143" text-length="26.784px" y="65" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-100</text><text id="ezcGraphTextBox_58" x="185.37542857143" text-length="6.696px" y="50.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="700" height="200" version="1.0" id="ezcGraph"><defs><linearGradient id="Definition_LinearGradient_229_28_245_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_229_28_245_28_ffffffbf_0000007f" x1="229.62040178571" y1="28" x2="245.31790178571" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_229_28_245_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_229_28_245_28_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_229_28_245_28_8f191900_ef292900" x1="229.62040178571" y1="28" x2="245.31790178571" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_229_28_245_28_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_249_28_264_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_249_28_264_28_ffffffbf_0000007f" x1="249.08209821429" y1="28" x2="264.77959821429" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_249_28_264_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_316_28_331_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_316_28_331_28_ffffffbf_0000007f" x1="316.02040178571" y1="28" x2="331.71790178571" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_316_28_331_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_316_28_331_28_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_316_28_331_28_8f191900_ef292900" x1="316.02040178571" y1="28" x2="331.71790178571" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_316_28_331_28_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_335_28_351_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_335_28_351_28_ffffffbf_0000007f" x1="335.48209821429" y1="28" x2="351.17959821429" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_335_28_351_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_402_28_418_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_402_28_418_28_ffffffbf_0000007f" x1="402.42040178571" y1="28" x2="418.11790178571" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_402_28_418_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_402_28_418_28_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_402_28_418_28_8f191900_ef292900" x1="402.42040178571" y1="28" x2="418.11790178571" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_402_28_418_28_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_421_28_437_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_421_28_437_28_ffffffbf_0000007f" x1="421.88209821429" y1="28" x2="437.57959821429" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_421_28_437_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_488_28_504_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_488_28_504_28_ffffffbf_0000007f" x1="488.82040178571" y1="28" x2="504.51790178571" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_488_28_504_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_488_28_504_28_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_488_28_504_28_8f191900_ef292900" x1="488.82040178571" y1="28" x2="504.51790178571" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_488_28_504_28_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_508_28_523_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_508_28_523_28_ffffffbf_0000007f" x1="508.28209821429" y1="28" x2="523.97959821429" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_508_28_523_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_575_28_590_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_575_28_590_28_ffffffbf_0000007f" x1="575.22040178571" y1="28" x2="590.91790178571" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_575_28_590_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_575_28_590_28_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_575_28_590_28_8f191900_ef292900" x1="575.22040178571" y1="28" x2="590.91790178571" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_575_28_590_28_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_594_28_610_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_594_28_610_28_ffffffbf_0000007f" x1="594.68209821429" y1="28" x2="610.37959821429" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_594_28_610_28_ffffffbf_0000007f"/></defs><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 700.0000,0.0000 L 700.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 139.0000,1.0000 L 139.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 138.0000,2.0000 L 138.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><path d=" M 4.0000,18.0000 L 4.0000,4.0000 L 18.0000,4.0000 L 18.0000,18.0000 L 4.0000,18.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircle_6"/><ellipse cx="11" cy="47" rx="7" ry="7" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_8"/><path d=" M 4.0000,65.0000 L 11.0000,58.0000 L 18.0000,65.0000 L 11.0000,72.0000 L 4.0000,65.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 140.0000,38.0000 L 160.0000,18.0000 L 700.0000,18.0000 L 680.0000,38.0000 L 140.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_12"/><path d=" M 160.0000,18.0000 L 700.0000,18.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 692.0000,22.0000 L 700.0000,18.0000 L 692.0000,14.0000 L 692.0000,22.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 194.0000,200.0000 L 214.0000,180.0000 L 214.0000,0.0000 L 194.0000,20.0000 L 194.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_15"/><path d=" M 214.0000,180.0000 L 214.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 211.5000,5.0000 L 214.0000,0.0000 L 216.5000,5.0000 L 211.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_17"/><path d=" M 300.4000,162.0000 L 300.4000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 280.4000,35.3000 L 300.4000,15.3000 L 300.4000,20.7000 L 280.4000,40.7000 L 280.4000,35.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_20"/><path d=" M 280.4000,35.3000 L 300.4000,15.3000 L 300.4000,20.7000 L 280.4000,40.7000 L 280.4000,35.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_21"/><path d=" M 386.8000,162.0000 L 386.8000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 366.8000,35.3000 L 386.8000,15.3000 L 386.8000,20.7000 L 366.8000,40.7000 L 366.8000,35.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 366.8000,35.3000 L 386.8000,15.3000 L 386.8000,20.7000 L 366.8000,40.7000 L 366.8000,35.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_25"/><path d=" M 473.2000,162.0000 L 473.2000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 453.2000,35.3000 L 473.2000,15.3000 L 473.2000,20.7000 L 453.2000,40.7000 L 453.2000,35.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_28"/><path d=" M 453.2000,35.3000 L 473.2000,15.3000 L 473.2000,20.7000 L 453.2000,40.7000 L 453.2000,35.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_29"/><path d=" M 559.6000,162.0000 L 559.6000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 539.6000,35.3000 L 559.6000,15.3000 L 559.6000,20.7000 L 539.6000,40.7000 L 539.6000,35.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_32"/><path d=" M 539.6000,35.3000 L 559.6000,15.3000 L 559.6000,20.7000 L 539.6000,40.7000 L 539.6000,35.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_33"/><path d=" M 646.0000,162.0000 L 646.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 626.0000,35.3000 L 646.0000,15.3000 L 646.0000,20.7000 L 626.0000,40.7000 L 626.0000,35.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_36"/><path d=" M 626.0000,35.3000 L 646.0000,15.3000 L 646.0000,20.7000 L 626.0000,40.7000 L 626.0000,35.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_37"/><path d=" M 646.0000,162.0000 L 214.0000,162.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 194.0000,182.0000 L 214.0000,162.0000 L 216.8929,162.0000 L 196.8929,182.0000 L 194.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_39"/><path d=" M 194.0000,182.0000 L 214.0000,162.0000 L 216.8929,162.0000 L 196.8929,182.0000 L 194.0000,182.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_40"/><path d=" M 646.0000,154.8000 L 214.0000,154.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 194.0000,174.8000 L 214.0000,154.8000 L 214.9643,154.8000 L 194.9643,174.8000 L 194.0000,174.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_43"/><path d=" M 194.0000,174.8000 L 214.0000,154.8000 L 214.9643,154.8000 L 194.9643,174.8000 L 194.0000,174.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_44"/><path d=" M 646.0000,147.6000 L 214.0000,147.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 194.0000,167.6000 L 214.0000,147.6000 L 214.9643,147.6000 L 194.9643,167.6000 L 194.0000,167.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_46"/><path d=" M 194.0000,167.6000 L 214.0000,147.6000 L 214.9643,147.6000 L 194.9643,167.6000 L 194.0000,167.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_47"/><path d=" M 646.0000,140.4000 L 214.0000,140.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 194.0000,160.4000 L 214.0000,140.4000 L 214.9643,140.4000 L 194.9643,160.4000 L 194.0000,160.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_49"/><path d=" M 194.0000,160.4000 L 214.0000,140.4000 L 214.9643,140.4000 L 194.9643,160.4000 L 194.0000,160.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_50"/><path d=" M 646.0000,133.2000 L 214.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 194.0000,153.2000 L 214.0000,133.2000 L 216.8929,133.2000 L 196.8929,153.2000 L 194.0000,153.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_52"/><path d=" M 194.0000,153.2000 L 214.0000,133.2000 L 216.8929,133.2000 L 196.8929,153.2000 L 194.0000,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_53"/><path d=" M 646.0000,126.0000 L 214.0000,126.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 194.0000,146.0000 L 214.0000,126.0000 L 214.9643,126.0000 L 194.9643,146.0000 L 194.0000,146.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_56"/><path d=" M 194.0000,146.0000 L 214.0000,126.0000 L 214.9643,126.0000 L 194.9643,146.0000 L 194.0000,146.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_57"/><path d=" M 646.0000,118.8000 L 214.0000,118.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 194.0000,138.8000 L 214.0000,118.8000 L 214.9643,118.8000 L 194.9643,138.8000 L 194.0000,138.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_59"/><path d=" M 194.0000,138.8000 L 214.0000,118.8000 L 214.9643,118.8000 L 194.9643,138.8000 L 194.0000,138.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_60"/><path d=" M 646.0000,111.6000 L 214.0000,111.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 194.0000,131.6000 L 214.0000,111.6000 L 214.9643,111.6000 L 194.9643,131.6000 L 194.0000,131.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_62"/><path d=" M 194.0000,131.6000 L 214.0000,111.6000 L 214.9643,111.6000 L 194.9643,131.6000 L 194.0000,131.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_63"/><path d=" M 646.0000,104.4000 L 214.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 194.0000,124.4000 L 214.0000,104.4000 L 216.8929,104.4000 L 196.8929,124.4000 L 194.0000,124.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_65"/><path d=" M 194.0000,124.4000 L 214.0000,104.4000 L 216.8929,104.4000 L 196.8929,124.4000 L 194.0000,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_66"/><path d=" M 646.0000,97.2000 L 214.0000,97.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 194.0000,117.2000 L 214.0000,97.2000 L 214.9643,97.2000 L 194.9643,117.2000 L 194.0000,117.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_69"/><path d=" M 194.0000,117.2000 L 214.0000,97.2000 L 214.9643,97.2000 L 194.9643,117.2000 L 194.0000,117.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_70"/><path d=" M 646.0000,90.0000 L 214.0000,90.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 194.0000,110.0000 L 214.0000,90.0000 L 214.9643,90.0000 L 194.9643,110.0000 L 194.0000,110.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_72"/><path d=" M 194.0000,110.0000 L 214.0000,90.0000 L 214.9643,90.0000 L 194.9643,110.0000 L 194.0000,110.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_73"/><path d=" M 646.0000,82.8000 L 214.0000,82.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 194.0000,102.8000 L 214.0000,82.8000 L 214.9643,82.8000 L 194.9643,102.8000 L 194.0000,102.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_75"/><path d=" M 194.0000,102.8000 L 214.0000,82.8000 L 214.9643,82.8000 L 194.9643,102.8000 L 194.0000,102.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_76"/><path d=" M 646.0000,75.6000 L 214.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 194.0000,95.6000 L 214.0000,75.6000 L 216.8929,75.6000 L 196.8929,95.6000 L 194.0000,95.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_78"/><path d=" M 194.0000,95.6000 L 214.0000,75.6000 L 216.8929,75.6000 L 196.8929,95.6000 L 194.0000,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_79"/><path d=" M 646.0000,68.4000 L 214.0000,68.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_81"/><path d=" M 194.0000,88.4000 L 214.0000,68.4000 L 214.9643,68.4000 L 194.9643,88.4000 L 194.0000,88.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_82"/><path d=" M 194.0000,88.4000 L 214.0000,68.4000 L 214.9643,68.4000 L 194.9643,88.4000 L 194.0000,88.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_83"/><path d=" M 646.0000,61.2000 L 214.0000,61.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_84"/><path d=" M 194.0000,81.2000 L 214.0000,61.2000 L 214.9643,61.2000 L 194.9643,81.2000 L 194.0000,81.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_85"/><path d=" M 194.0000,81.2000 L 214.0000,61.2000 L 214.9643,61.2000 L 194.9643,81.2000 L 194.0000,81.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_86"/><path d=" M 646.0000,54.0000 L 214.0000,54.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_87"/><path d=" M 194.0000,74.0000 L 214.0000,54.0000 L 214.9643,54.0000 L 194.9643,74.0000 L 194.0000,74.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_88"/><path d=" M 194.0000,74.0000 L 214.0000,54.0000 L 214.9643,54.0000 L 194.9643,74.0000 L 194.0000,74.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_89"/><path d=" M 646.0000,46.8000 L 214.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_90"/><path d=" M 194.0000,66.8000 L 214.0000,46.8000 L 216.8929,46.8000 L 196.8929,66.8000 L 194.0000,66.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_91"/><path d=" M 194.0000,66.8000 L 214.0000,46.8000 L 216.8929,46.8000 L 196.8929,66.8000 L 194.0000,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_92"/><path d=" M 646.0000,39.6000 L 214.0000,39.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_94"/><path d=" M 194.0000,59.6000 L 214.0000,39.6000 L 214.9643,39.6000 L 194.9643,59.6000 L 194.0000,59.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_95"/><path d=" M 194.0000,59.6000 L 214.0000,39.6000 L 214.9643,39.6000 L 194.9643,59.6000 L 194.0000,59.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_96"/><path d=" M 646.0000,32.4000 L 214.0000,32.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_97"/><path d=" M 194.0000,52.4000 L 214.0000,32.4000 L 214.9643,32.4000 L 194.9643,52.4000 L 194.0000,52.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_98"/><path d=" M 194.0000,52.4000 L 214.0000,32.4000 L 214.9643,32.4000 L 194.9643,52.4000 L 194.0000,52.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_99"/><path d=" M 646.0000,25.2000 L 214.0000,25.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_100"/><path d=" M 194.0000,45.2000 L 214.0000,25.2000 L 214.9643,25.2000 L 194.9643,45.2000 L 194.0000,45.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_101"/><path d=" M 194.0000,45.2000 L 214.0000,25.2000 L 214.9643,25.2000 L 194.9643,45.2000 L 194.0000,45.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_102"/><path d=" M 217.5759,36.0000 L 202.4390,36.0000 L 202.4390,160.4160 L 217.5759,160.4160 L 217.5759,36.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_104"/><path d=" M 218.4390,20.0000 L 202.4390,36.0000 L 217.5759,36.0000 L 233.5759,20.0000 L 218.4390,20.0000 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_105"/><path d=" M 233.5759,144.4160 L 217.5759,160.4160 L 217.5759,36.0000 L 233.5759,20.0000 L 233.5759,144.4160 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_106"/><path d="M 229.62,95.39 A 7.85,3.92 0 0,0 245.32,95.39 L 245.32,28.00 A 7.85,3.924375 0 0,1 229.62,28.00 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_107"/><path d="M 229.62,95.39 A 7.85,3.92 0 0,0 245.32,95.39 L 245.32,28.00 A 7.85,3.924375 0 0,1 229.62,28.00 z" style="fill: url(#LinearGradient_229_28_245_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="237.46915178571" cy="28" rx="7.84875" ry="3.924375" style="fill: url(#LinearGradient_229_28_245_28_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_108"/><path d="M 249.08,63.71 A 7.85,3.92 0 0,0 264.78,63.71 L 264.78,28.00 A 7.85,3.924375 0 0,1 249.08,28.00 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_109"/><path d="M 249.08,63.71 A 7.85,3.92 0 0,0 264.78,63.71 L 264.78,28.00 A 7.85,3.924375 0 0,1 249.08,28.00 z" style="fill: url(#LinearGradient_249_28_264_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="256.93084821429" cy="28" rx="7.84875" ry="3.924375" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_110"/><path d=" M 271.4199,36.0000 L 268.8241,28.0000 L 268.8241,139.4560 L 271.4199,147.4560 L 271.4199,36.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_111"/><path d=" M 268.8241,28.0000 L 271.4199,36.0000 L 283.9610,28.0000 L 281.3652,20.0000 L 268.8241,28.0000 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_112"/><path d=" M 271.4199,36.0000 L 283.9610,28.0000 L 283.9610,139.4560 L 271.4199,147.4560 L 271.4199,36.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_113"/><path d=" M 303.9759,36.0000 L 288.8390,36.0000 L 288.8390,48.3840 L 303.9759,48.3840 L 303.9759,36.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_114"/><path d=" M 304.8390,20.0000 L 288.8390,36.0000 L 303.9759,36.0000 L 319.9759,20.0000 L 304.8390,20.0000 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_115"/><path d=" M 319.9759,32.3840 L 303.9759,48.3840 L 303.9759,36.0000 L 319.9759,20.0000 L 319.9759,32.3840 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_116"/><path d="M 316.02,34.05 A 7.85,3.92 0 0,0 331.72,34.05 L 331.72,28.00 A 7.85,3.924375 0 0,1 316.02,28.00 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_117"/><path d="M 316.02,34.05 A 7.85,3.92 0 0,0 331.72,34.05 L 331.72,28.00 A 7.85,3.924375 0 0,1 316.02,28.00 z" style="fill: url(#LinearGradient_316_28_331_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="323.86915178571" cy="28" rx="7.84875" ry="3.924375" style="fill: url(#LinearGradient_316_28_331_28_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_118"/><path d="M 335.48,98.56 A 7.85,3.92 0 0,0 351.18,98.56 L 351.18,28.00 A 7.85,3.924375 0 0,1 335.48,28.00 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_119"/><path d="M 335.48,98.56 A 7.85,3.92 0 0,0 351.18,98.56 L 351.18,28.00 A 7.85,3.924375 0 0,1 335.48,28.00 z" style="fill: url(#LinearGradient_335_28_351_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="343.33084821429" cy="28" rx="7.84875" ry="3.924375" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_120"/><path d=" M 357.8199,36.0000 L 355.2241,28.0000 L 355.2241,103.1680 L 357.8199,111.1680 L 357.8199,36.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_121"/><path d=" M 355.2241,28.0000 L 357.8199,36.0000 L 370.3610,28.0000 L 367.7652,20.0000 L 355.2241,28.0000 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_122"/><path d=" M 357.8199,36.0000 L 370.3610,28.0000 L 370.3610,103.1680 L 357.8199,111.1680 L 357.8199,36.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_123"/><path d=" M 390.3759,36.0000 L 375.2390,36.0000 L 375.2390,54.7200 L 390.3759,54.7200 L 390.3759,36.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_124"/><path d=" M 391.2390,20.0000 L 375.2390,36.0000 L 390.3759,36.0000 L 406.3759,20.0000 L 391.2390,20.0000 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_125"/><path d=" M 406.3759,38.7200 L 390.3759,54.7200 L 390.3759,36.0000 L 406.3759,20.0000 L 406.3759,38.7200 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_126"/><path d="M 402.42,121.31 A 7.85,3.92 0 0,0 418.12,121.31 L 418.12,28.00 A 7.85,3.924375 0 0,1 402.42,28.00 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_127"/><path d="M 402.42,121.31 A 7.85,3.92 0 0,0 418.12,121.31 L 418.12,28.00 A 7.85,3.924375 0 0,1 402.42,28.00 z" style="fill: url(#LinearGradient_402_28_418_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="410.26915178571" cy="28" rx="7.84875" ry="3.924375" style="fill: url(#LinearGradient_402_28_418_28_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_128"/><path d="M 421.88,131.97 A 7.85,3.92 0 0,0 437.58,131.97 L 437.58,28.00 A 7.85,3.924375 0 0,1 421.88,28.00 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_129"/><path d="M 421.88,131.97 A 7.85,3.92 0 0,0 437.58,131.97 L 437.58,28.00 A 7.85,3.924375 0 0,1 421.88,28.00 z" style="fill: url(#LinearGradient_421_28_437_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="429.73084821429" cy="28" rx="7.84875" ry="3.924375" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_130"/><path d=" M 444.2199,36.0000 L 441.6241,28.0000 L 441.6241,34.9120 L 444.2199,42.9120 L 444.2199,36.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_131"/><path d=" M 441.6241,28.0000 L 444.2199,36.0000 L 456.7610,28.0000 L 454.1652,20.0000 L 441.6241,28.0000 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_132"/><path d=" M 444.2199,36.0000 L 456.7610,28.0000 L 456.7610,34.9120 L 444.2199,42.9120 L 444.2199,36.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_133"/><path d=" M 476.7759,36.0000 L 461.6390,36.0000 L 461.6390,63.9360 L 476.7759,63.9360 L 476.7759,36.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_134"/><path d=" M 477.6390,20.0000 L 461.6390,36.0000 L 476.7759,36.0000 L 492.7759,20.0000 L 477.6390,20.0000 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_135"/><path d=" M 492.7759,47.9360 L 476.7759,63.9360 L 476.7759,36.0000 L 492.7759,20.0000 L 492.7759,47.9360 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_136"/><path d="M 488.82,62.56 A 7.85,3.92 0 0,0 504.52,62.56 L 504.52,28.00 A 7.85,3.924375 0 0,1 488.82,28.00 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_137"/><path d="M 488.82,62.56 A 7.85,3.92 0 0,0 504.52,62.56 L 504.52,28.00 A 7.85,3.924375 0 0,1 488.82,28.00 z" style="fill: url(#LinearGradient_488_28_504_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="496.66915178571" cy="28" rx="7.84875" ry="3.924375" style="fill: url(#LinearGradient_488_28_504_28_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_138"/><path d="M 508.28,146.66 A 7.85,3.92 0 0,0 523.98,146.66 L 523.98,28.00 A 7.85,3.924375 0 0,1 508.28,28.00 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_139"/><path d="M 508.28,146.66 A 7.85,3.92 0 0,0 523.98,146.66 L 523.98,28.00 A 7.85,3.924375 0 0,1 508.28,28.00 z" style="fill: url(#LinearGradient_508_28_523_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="516.13084821429" cy="28" rx="7.84875" ry="3.924375" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_140"/><path d=" M 530.6199,36.0000 L 528.0241,28.0000 L 528.0241,44.9920 L 530.6199,52.9920 L 530.6199,36.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_141"/><path d=" M 528.0241,28.0000 L 530.6199,36.0000 L 543.1610,28.0000 L 540.5652,20.0000 L 528.0241,28.0000 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_142"/><path d=" M 530.6199,36.0000 L 543.1610,28.0000 L 543.1610,44.9920 L 530.6199,52.9920 L 530.6199,36.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_143"/><path d=" M 563.1759,36.0000 L 548.0390,36.0000 L 548.0390,80.3520 L 563.1759,80.3520 L 563.1759,36.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_144"/><path d=" M 564.0390,20.0000 L 548.0390,36.0000 L 563.1759,36.0000 L 579.1759,20.0000 L 564.0390,20.0000 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_145"/><path d=" M 579.1759,64.3520 L 563.1759,80.3520 L 563.1759,36.0000 L 579.1759,20.0000 L 579.1759,64.3520 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_146"/><path d="M 575.22,28.29 A 7.85,3.92 0 0,0 590.92,28.29 L 590.92,28.00 A 7.85,3.924375 0 0,1 575.22,28.00 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_147"/><path d="M 575.22,28.29 A 7.85,3.92 0 0,0 590.92,28.29 L 590.92,28.00 A 7.85,3.924375 0 0,1 575.22,28.00 z" style="fill: url(#LinearGradient_575_28_590_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="583.06915178571" cy="28" rx="7.84875" ry="3.924375" style="fill: url(#LinearGradient_575_28_590_28_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_148"/><path d="M 594.68,166.24 A 7.85,3.92 0 0,0 610.38,166.24 L 610.38,28.00 A 7.85,3.924375 0 0,1 594.68,28.00 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_149"/><path d="M 594.68,166.24 A 7.85,3.92 0 0,0 610.38,166.24 L 610.38,28.00 A 7.85,3.924375 0 0,1 594.68,28.00 z" style="fill: url(#LinearGradient_594_28_610_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="602.53084821429" cy="28" rx="7.84875" ry="3.924375" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_150"/><path d=" M 617.0199,36.0000 L 614.4241,28.0000 L 614.4241,60.2560 L 617.0199,68.2560 L 617.0199,36.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_151"/><path d=" M 614.4241,28.0000 L 617.0199,36.0000 L 629.5610,28.0000 L 626.9652,20.0000 L 614.4241,28.0000 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_152"/><path d=" M 617.0199,36.0000 L 629.5610,28.0000 L 629.5610,60.2560 L 617.0199,68.2560 L 617.0199,36.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_153"/><path d=" M 700.0000,18.0000 L 680.0000,38.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_154"/><path d=" M 680.0000,38.0000 L 140.0000,38.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_155"/><path d=" M 140.0000,38.0000 L 160.0000,18.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_156"/><path d=" M 214.0000,0.0000 L 194.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_157"/><path d=" M 194.0000,20.0000 L 194.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_158"/><path d=" M 194.0000,200.0000 L 214.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_159"/><text id="ezcGraphTextBox_5" x="19" text-length="66.78px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Rectangle</text><text id="ezcGraphTextBox_7" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Circle</text><text id="ezcGraphTextBox_9" x="19" text-length="44.52px" y="54" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Bullet</text><text id="ezcGraphTextBox_11" x="19" text-length="51.94px" y="72" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Diamond</text><text id="ezcGraphTextBox_18" x="211.442" text-length="51.516px" y="50.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample -1</text><text id="ezcGraphTextBox_22" x="297.842" text-length="51.516px" y="50.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample -2</text><text id="ezcGraphTextBox_26" x="384.242" text-length="51.516px" y="50.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample -3</text><text id="ezcGraphTextBox_30" x="470.642" text-length="51.516px" y="50.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample -4</text><text id="ezcGraphTextBox_34" x="557.042" text-length="51.516px" y="50.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample -5</text><text id="ezcGraphTextBox_41" x="165.28742857143" text-length="26.784px" y="180.2" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-500</text><text id="ezcGraphTextBox_54" x="165.28742857143" text-length="26.784px" y="151.4" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-400</text><text id="ezcGraphTextBox_67" x="165.28742857143" text-length="26.784px" y="122.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-300</text><text id="ezcGraphTextBox_80" x="165.28742857143" text-length="26.784px" y="93.8" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-200</text><text id="ezcGraphTextBox_93" x="165.28742857143" text-length="26.784px" y="65" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-100</text><text id="ezcGraphTextBox_103" x="185.37542857143" text-length="6.696px" y="50.6" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer3dTest_testRenderPimpedBarChart.svg b/tests/data/compare/ezcGraphRenderer3dTest_testRenderPimpedBarChart.svg
index 6f5a684..a52cbda 100644
--- a/tests/data/compare/ezcGraphRenderer3dTest_testRenderPimpedBarChart.svg
+++ b/tests/data/compare/ezcGraphRenderer3dTest_testRenderPimpedBarChart.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="700" height="300" version="1.0" id="ezcGraph"><defs><linearGradient id="Definition_LinearGradient_5_5_16_16_abefff00_39506800"><stop offset="0" style="stop-color: #abefff; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #395068; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_5_5_16_16_abefff00_39506800" x1="5.4" y1="5.4" x2="16.6" y2="16.6" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_5_5_16_16_abefff00_39506800"/><linearGradient id="Definition_LinearGradient_8_44_13_49_ffff7700_7e752800"><stop offset="0" style="stop-color: #ffff77; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #7e7528; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_8_44_13_49_ffff7700_7e752800" x1="8.100505066" y1="44.100505066" x2="13.899494934" y2="49.899494934" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_8_44_13_49_ffff7700_7e752800"/><linearGradient id="Definition_LinearGradient_8_62_13_67_cfff4e00_45711a00"><stop offset="0" style="stop-color: #cfff4e; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #45711a; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_8_62_13_67_cfff4e00_45711a00" x1="8.949747474" y1="62.949747474" x2="13.050252526" y2="67.050252526" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_8_62_13_67_cfff4e00_45711a00"/><linearGradient id="Definition_LinearGradient_255_49_206_73_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_255_49_206_73_ffffffff_ffffff7f" x1="255.29389880952" y1="49.584" x2="206.53296130952" y2="73.584" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_255_49_206_73_ffffffff_ffffff7f"/><linearGradient id="Definition_LinearGradient_231_198_206_73_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_231_198_206_73_ffffffff_ffffff7f" x1="231.29389880952" y1="198" x2="206.53296130952" y2="73.584" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_231_198_206_73_ffffffff_ffffff7f"/><linearGradient id="Definition_LinearGradient_249_118_275_118_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_249_118_275_118_ffffffbf_0000007f" x1="249.66767113095" y1="118.608" x2="275.83017113095" y2="118.608" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_249_118_275_118_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_249_118_275_118_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_249_118_275_118_8f191900_ef292900" x1="249.66767113095" y1="118.608" x2="275.83017113095" y2="118.608" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_249_118_275_118_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_281_150_307_150_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_281_150_307_150_ffffffbf_0000007f" x1="281.50316220238" y1="150.288" x2="307.66566220238" y2="150.288" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_281_150_307_150_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_338_74_314_74_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_338_74_314_74_ffffffff_ffffff7f" x1="338.80037202381" y1="74.544" x2="314.03943452381" y2="74.544" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_338_74_314_74_ffffffff_ffffff7f"/><linearGradient id="Definition_LinearGradient_372_198_347_210_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_372_198_347_210_ffffffff_ffffff7f" x1="372.62723214286" y1="198" x2="347.86629464286" y2="210.384" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_372_198_347_210_ffffffff_ffffff7f"/><linearGradient id="Definition_LinearGradient_396_174_347_198_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_396_174_347_198_ffffffff_ffffff7f" x1="396.62723214286" y1="174" x2="347.86629464286" y2="198" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_396_174_347_198_ffffffff_ffffff7f"/><linearGradient id="Definition_LinearGradient_391_186_417_186_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_391_186_417_186_ffffffbf_0000007f" x1="391.00100446429" y1="186" x2="417.16350446429" y2="186" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_391_186_417_186_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_391_186_417_186_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_391_186_417_186_8f191900_ef292900" x1="391.00100446429" y1="186" x2="417.16350446429" y2="186" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_391_186_417_186_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_422_186_448_186_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_422_186_448_186_ffffffbf_0000007f" x1="422.83649553571" y1="186" x2="448.99899553571" y2="186" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_422_186_448_186_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_480_186_455_186_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_480_186_455_186_ffffffff_ffffff7f" x1="480.13370535714" y1="186" x2="455.37276785714" y2="186" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_480_186_455_186_ffffffff_ffffff7f"/><linearGradient id="Definition_LinearGradient_537_155_489_179_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_537_155_489_179_ffffffff_ffffff7f" x1="537.96056547619" y1="155.28" x2="489.19962797619" y2="179.28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_537_155_489_179_ffffffff_ffffff7f"/><linearGradient id="Definition_LinearGradient_513_198_489_179_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_513_198_489_179_ffffffff_ffffff7f" x1="513.96056547619" y1="198" x2="489.19962797619" y2="179.28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_513_198_489_179_ffffffff_ffffff7f"/><linearGradient id="Definition_LinearGradient_532_92_558_92_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_532_92_558_92_ffffffbf_0000007f" x1="532.33433779762" y1="92.688" x2="558.49683779762" y2="92.688" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_532_92_558_92_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_532_92_558_92_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_532_92_558_92_8f191900_ef292900" x1="532.33433779762" y1="92.688" x2="558.49683779762" y2="92.688" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_532_92_558_92_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_564_82_590_82_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_564_82_590_82_ffffffbf_0000007f" x1="564.16982886905" y1="82.032" x2="590.33232886905" y2="82.032" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_564_82_590_82_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_621_179_596_179_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_621_179_596_179_ffffffff_ffffff7f" x1="621.46703869048" y1="179.088" x2="596.70610119048" y2="179.088" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_621_179_596_179_ffffffff_ffffff7f"/></defs><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,300.0000 L 0.0000,0.0000 L 700.0000,0.0000 L 700.0000,300.0000 L 0.0000,300.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,299.0000 L 1.0000,1.0000 L 139.0000,1.0000 L 139.0000,299.0000 L 1.0000,299.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,298.0000 L 2.0000,2.0000 L 138.0000,2.0000 L 138.0000,298.0000 L 2.0000,298.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><path d=" M 4.0000,18.0000 L 4.0000,4.0000 L 18.0000,4.0000 L 18.0000,18.0000 L 4.0000,18.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_4"/><path d=" M 16.6000,5.4000 L 16.6000,16.6000 L 5.4000,16.6000 L 5.4000,5.4000 L 16.6000,5.4000 z " style="fill: url(#LinearGradient_5_5_16_16_abefff00_39506800); stroke: none;" id="ezcGraphPolygon_5"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircle_7"/><ellipse cx="11" cy="47" rx="7" ry="7" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_9"/><ellipse cx="11" cy="47" rx="6.3" ry="6.3" style="fill: url(#LinearGradient_8_44_13_49_ffff7700_7e752800); stroke: none;" id="ezcGraphCircle_10"/><path d=" M 4.0000,65.0000 L 11.0000,58.0000 L 18.0000,65.0000 L 11.0000,72.0000 L 4.0000,65.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_12"/><path d=" M 16.6000,65.0000 L 11.0000,70.6000 L 5.4000,65.0000 L 11.0000,59.4000 L 16.6000,65.0000 z " style="fill: url(#LinearGradient_8_62_13_67_cfff4e00_45711a00); stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 140.0000,201.0000 L 170.0000,171.0000 L 700.0000,171.0000 L 670.0000,201.0000 L 140.0000,201.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_15"/><path d=" M 170.0000,171.0000 L 700.0000,171.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 692.0000,175.0000 L 700.0000,171.0000 L 692.0000,167.0000 L 692.0000,175.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_17"/><path d=" M 193.0000,300.0000 L 223.0000,270.0000 L 223.0000,0.0000 L 193.0000,30.0000 L 193.0000,300.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_18"/><path d=" M 223.0000,270.0000 L 223.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 219.5000,7.0000 L 223.0000,0.0000 L 226.5000,7.0000 L 219.5000,7.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_20"/><path d=" M 362.9200,243.0000 L 362.9200,27.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 334.3333,198.3000 L 364.3333,168.3000 L 364.3333,173.7000 L 334.3333,203.7000 L 334.3333,198.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_23"/><path d=" M 334.3333,198.3000 L 364.3333,168.3000 L 364.3333,173.7000 L 334.3333,203.7000 L 334.3333,198.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_24"/><path d=" M 507.0800,243.0000 L 507.0800,27.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 475.6667,198.3000 L 505.6667,168.3000 L 505.6667,173.7000 L 475.6667,203.7000 L 475.6667,198.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 475.6667,198.3000 L 505.6667,168.3000 L 505.6667,173.7000 L 475.6667,203.7000 L 475.6667,198.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_28"/><path d=" M 647.0000,243.0000 L 647.0000,27.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 617.0000,198.3000 L 647.0000,168.3000 L 647.0000,173.7000 L 617.0000,203.7000 L 617.0000,198.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_31"/><path d=" M 617.0000,198.3000 L 647.0000,168.3000 L 647.0000,173.7000 L 617.0000,203.7000 L 617.0000,198.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_32"/><path d=" M 647.0000,243.0000 L 223.0000,243.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 193.0000,273.0000 L 223.0000,243.0000 L 225.8393,243.0000 L 195.8393,273.0000 L 193.0000,273.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_34"/><path d=" M 193.0000,273.0000 L 223.0000,243.0000 L 225.8393,243.0000 L 195.8393,273.0000 L 193.0000,273.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_35"/><path d=" M 647.0000,98.2800 L 223.0000,98.2800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 193.0000,129.0000 L 223.0000,99.0000 L 225.8393,99.0000 L 195.8393,129.0000 L 193.0000,129.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_39"/><path d=" M 193.0000,129.0000 L 223.0000,99.0000 L 225.8393,99.0000 L 195.8393,129.0000 L 193.0000,129.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_40"/><path d=" M 647.0000,27.0000 L 223.0000,27.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 193.0000,57.0000 L 223.0000,27.0000 L 225.8393,27.0000 L 195.8393,57.0000 L 193.0000,57.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_43"/><path d=" M 193.0000,57.0000 L 223.0000,27.0000 L 225.8393,27.0000 L 195.8393,57.0000 L 193.0000,57.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_44"/><path d=" M 230.5330,49.5840 L 206.5330,73.5840 L 231.2939,73.5840 L 255.2939,49.5840 L 230.5330,49.5840 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_46"/><path d=" M 231.2939,198.0000 L 206.5330,198.0000 L 206.5330,73.5840 L 231.2939,73.5840 L 231.2939,198.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_47"/><path d=" M 230.5330,49.5840 L 206.5330,73.5840 L 231.2939,73.5840 L 255.2939,49.5840 L 230.5330,49.5840 z " style="fill: url(#LinearGradient_255_49_206_73_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_48"/><path d=" M 231.2939,198.0000 L 206.5330,198.0000 L 206.5330,73.5840 L 231.2939,73.5840 L 231.2939,198.0000 z " style="fill: url(#LinearGradient_231_198_206_73_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_49"/><path d=" M 255.2939,49.5840 L 231.2939,73.5840 L 231.2939,198.0000 L 255.2939,174.0000 L 255.2939,49.5840 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_50"/><path d="M 249.67,186.00 A 13.08,6.54 0 0,0 275.83,186.00 L 275.83,118.61 A 13.08,6.540625 0 0,1 249.67,118.61 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_51"/><path d="M 249.67,186.00 A 13.08,6.54 0 0,0 275.83,186.00 L 275.83,118.61 A 13.08,6.540625 0 0,1 249.67,118.61 z" style="fill: url(#LinearGradient_249_118_275_118_ffffffbf_0000007f); stroke: none;"/><ellipse cx="262.74892113095" cy="118.608" rx="13.08125" ry="6.540625" style="fill: url(#LinearGradient_249_118_275_118_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_52"/><path d="M 281.50,186.00 A 13.08,6.54 0 0,0 307.67,186.00 L 307.67,150.29 A 13.08,6.540625 0 0,1 281.50,150.29 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_53"/><path d="M 281.50,186.00 A 13.08,6.54 0 0,0 307.67,186.00 L 307.67,150.29 A 13.08,6.540625 0 0,1 281.50,150.29 z" style="fill: url(#LinearGradient_281_150_307_150_ffffffbf_0000007f); stroke: none;"/><ellipse cx="294.58441220238" cy="150.288" rx="13.08125" ry="6.540625" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><path d=" M 319.3721,198.0000 L 314.0394,186.0000 L 314.0394,74.5440 L 319.3721,86.5440 L 319.3721,198.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_55"/><path d=" M 314.0394,74.5440 L 319.3721,86.5440 L 338.8004,74.5440 L 333.4677,62.5440 L 314.0394,74.5440 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_56"/><path d=" M 314.0394,74.5440 L 319.3721,86.5440 L 338.8004,74.5440 L 333.4677,62.5440 L 314.0394,74.5440 z " style="fill: url(#LinearGradient_338_74_314_74_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 319.3721,198.0000 L 338.8004,186.0000 L 338.8004,74.5440 L 319.3721,86.5440 L 319.3721,198.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_58"/><path d=" M 372.6272,198.0000 L 347.8663,198.0000 L 347.8663,210.3840 L 372.6272,210.3840 L 372.6272,198.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_59"/><path d=" M 371.8663,174.0000 L 347.8663,198.0000 L 372.6272,198.0000 L 396.6272,174.0000 L 371.8663,174.0000 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 372.6272,198.0000 L 347.8663,198.0000 L 347.8663,210.3840 L 372.6272,210.3840 L 372.6272,198.0000 z " style="fill: url(#LinearGradient_372_198_347_210_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_61"/><path d=" M 371.8663,174.0000 L 347.8663,198.0000 L 372.6272,198.0000 L 396.6272,174.0000 L 371.8663,174.0000 z " style="fill: url(#LinearGradient_396_174_347_198_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_62"/><path d=" M 396.6272,186.3840 L 372.6272,210.3840 L 372.6272,198.0000 L 396.6272,174.0000 L 396.6272,186.3840 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_63"/><path d="M 391.00,192.05 A 13.08,6.54 0 0,0 417.16,192.05 L 417.16,186.00 A 13.08,6.540625 0 0,1 391.00,186.00 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_64"/><path d="M 391.00,192.05 A 13.08,6.54 0 0,0 417.16,192.05 L 417.16,186.00 A 13.08,6.540625 0 0,1 391.00,186.00 z" style="fill: url(#LinearGradient_391_186_417_186_ffffffbf_0000007f); stroke: none;"/><ellipse cx="404.08225446429" cy="186" rx="13.08125" ry="6.540625" style="fill: url(#LinearGradient_391_186_417_186_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_65"/><path d="M 422.84,256.56 A 13.08,6.54 0 0,0 449.00,256.56 L 449.00,186.00 A 13.08,6.540625 0 0,1 422.84,186.00 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_66"/><path d="M 422.84,256.56 A 13.08,6.54 0 0,0 449.00,256.56 L 449.00,186.00 A 13.08,6.540625 0 0,1 422.84,186.00 z" style="fill: url(#LinearGradient_422_186_448_186_ffffffbf_0000007f); stroke: none;"/><ellipse cx="435.91774553571" cy="186" rx="13.08125" ry="6.540625" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_67"/><path d=" M 460.7054,198.0000 L 455.3728,186.0000 L 455.3728,247.3440 L 460.7054,259.3440 L 460.7054,198.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_68"/><path d=" M 455.3728,186.0000 L 460.7054,198.0000 L 480.1337,186.0000 L 474.8010,174.0000 L 455.3728,186.0000 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_69"/><path d=" M 455.3728,186.0000 L 460.7054,198.0000 L 480.1337,186.0000 L 474.8010,174.0000 L 455.3728,186.0000 z " style="fill: url(#LinearGradient_480_186_455_186_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 460.7054,198.0000 L 480.1337,186.0000 L 480.1337,247.3440 L 460.7054,259.3440 L 460.7054,198.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_71"/><path d=" M 513.1996,155.2800 L 489.1996,179.2800 L 513.9606,179.2800 L 537.9606,155.2800 L 513.1996,155.2800 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_72"/><path d=" M 513.9606,198.0000 L 489.1996,198.0000 L 489.1996,179.2800 L 513.9606,179.2800 L 513.9606,198.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 513.1996,155.2800 L 489.1996,179.2800 L 513.9606,179.2800 L 537.9606,155.2800 L 513.1996,155.2800 z " style="fill: url(#LinearGradient_537_155_489_179_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_74"/><path d=" M 513.9606,198.0000 L 489.1996,198.0000 L 489.1996,179.2800 L 513.9606,179.2800 L 513.9606,198.0000 z " style="fill: url(#LinearGradient_513_198_489_179_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_75"/><path d=" M 537.9606,155.2800 L 513.9606,179.2800 L 513.9606,198.0000 L 537.9606,174.0000 L 537.9606,155.2800 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_76"/><path d="M 532.33,186.00 A 13.08,6.54 0 0,0 558.50,186.00 L 558.50,92.69 A 13.08,6.540625 0 0,1 532.33,92.69 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_77"/><path d="M 532.33,186.00 A 13.08,6.54 0 0,0 558.50,186.00 L 558.50,92.69 A 13.08,6.540625 0 0,1 532.33,92.69 z" style="fill: url(#LinearGradient_532_92_558_92_ffffffbf_0000007f); stroke: none;"/><ellipse cx="545.41558779762" cy="92.688" rx="13.08125" ry="6.540625" style="fill: url(#LinearGradient_532_92_558_92_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_78"/><path d="M 564.17,186.00 A 13.08,6.54 0 0,0 590.33,186.00 L 590.33,82.03 A 13.08,6.540625 0 0,1 564.17,82.03 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_79"/><path d="M 564.17,186.00 A 13.08,6.54 0 0,0 590.33,186.00 L 590.33,82.03 A 13.08,6.540625 0 0,1 564.17,82.03 z" style="fill: url(#LinearGradient_564_82_590_82_ffffffbf_0000007f); stroke: none;"/><ellipse cx="577.25107886905" cy="82.032" rx="13.08125" ry="6.540625" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><path d=" M 602.0388,198.0000 L 596.7061,186.0000 L 596.7061,179.0880 L 602.0388,191.0880 L 602.0388,198.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_81"/><path d=" M 596.7061,179.0880 L 602.0388,191.0880 L 621.4670,179.0880 L 616.1344,167.0880 L 596.7061,179.0880 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_82"/><path d=" M 596.7061,179.0880 L 602.0388,191.0880 L 621.4670,179.0880 L 616.1344,167.0880 L 596.7061,179.0880 z " style="fill: url(#LinearGradient_621_179_596_179_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_83"/><path d=" M 602.0388,198.0000 L 621.4670,186.0000 L 621.4670,179.0880 L 602.0388,191.0880 L 602.0388,198.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_84"/><path d=" M 700.0000,171.0000 L 670.0000,201.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_85"/><path d=" M 670.0000,201.0000 L 140.0000,201.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_86"/><path d=" M 140.0000,201.0000 L 170.0000,171.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_87"/><path d=" M 223.0000,0.0000 L 193.0000,30.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_88"/><path d=" M 193.0000,30.0000 L 193.0000,300.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_89"/><path d=" M 193.0000,300.0000 L 223.0000,270.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_90"/><text id="ezcGraphTextBox_6" x="19" text-length="66.78px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Rectangle</text><text id="ezcGraphTextBox_8" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Circle</text><text id="ezcGraphTextBox_11" x="19" text-length="44.52px" y="54" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Bullet</text><text id="ezcGraphTextBox_14" x="19" text-length="51.94px" y="72" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Diamond</text><text id="ezcGraphTextBox_21" x="204.872" text-length="82.256px" y="222.2" style="font-size: 19px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text><text id="ezcGraphTextBox_25" x="346.20533333333" text-length="82.256px" y="222.2" style="font-size: 19px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_29" x="487.53866666667" text-length="82.256px" y="222.2" style="font-size: 19px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_36" x="142.99514285714" text-length="48.112px" y="271.2" style="font-size: 19px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-250</text><text id="ezcGraphTextBox_37" x="179.07914285714" text-length="12.028px" y="199.2" style="font-size: 19px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_41" x="155.02314285714" text-length="36.084px" y="127.2" style="font-size: 19px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_45" x="155.02314285714" text-length="36.084px" y="78.2" style="font-size: 19px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="700" height="300" version="1.0" id="ezcGraph"><defs><linearGradient id="Definition_LinearGradient_5_5_16_16_abefff00_39506800"><stop offset="0" style="stop-color: #abefff; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #395068; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_5_5_16_16_abefff00_39506800" x1="5.4" y1="5.4" x2="16.6" y2="16.6" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_5_5_16_16_abefff00_39506800"/><linearGradient id="Definition_LinearGradient_8_44_13_49_ffff7700_7e752800"><stop offset="0" style="stop-color: #ffff77; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #7e7528; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_8_44_13_49_ffff7700_7e752800" x1="8.100505066" y1="44.100505066" x2="13.899494934" y2="49.899494934" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_8_44_13_49_ffff7700_7e752800"/><linearGradient id="Definition_LinearGradient_8_62_13_67_cfff4e00_45711a00"><stop offset="0" style="stop-color: #cfff4e; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #45711a; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_8_62_13_67_cfff4e00_45711a00" x1="8.949747474" y1="62.949747474" x2="13.050252526" y2="67.050252526" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_8_62_13_67_cfff4e00_45711a00"/><linearGradient id="Definition_LinearGradient_255_49_206_73_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_255_49_206_73_ffffffff_ffffff7f" x1="255.29389880952" y1="49.584" x2="206.53296130952" y2="73.584" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_255_49_206_73_ffffffff_ffffff7f"/><linearGradient id="Definition_LinearGradient_231_198_206_73_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_231_198_206_73_ffffffff_ffffff7f" x1="231.29389880952" y1="198" x2="206.53296130952" y2="73.584" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_231_198_206_73_ffffffff_ffffff7f"/><linearGradient id="Definition_LinearGradient_249_118_275_118_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_249_118_275_118_ffffffbf_0000007f" x1="249.66767113095" y1="118.608" x2="275.83017113095" y2="118.608" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_249_118_275_118_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_249_118_275_118_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_249_118_275_118_8f191900_ef292900" x1="249.66767113095" y1="118.608" x2="275.83017113095" y2="118.608" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_249_118_275_118_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_281_150_307_150_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_281_150_307_150_ffffffbf_0000007f" x1="281.50316220238" y1="150.288" x2="307.66566220238" y2="150.288" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_281_150_307_150_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_338_74_314_74_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_338_74_314_74_ffffffff_ffffff7f" x1="338.80037202381" y1="74.544" x2="314.03943452381" y2="74.544" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_338_74_314_74_ffffffff_ffffff7f"/><linearGradient id="Definition_LinearGradient_372_198_347_210_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_372_198_347_210_ffffffff_ffffff7f" x1="372.62723214286" y1="198" x2="347.86629464286" y2="210.384" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_372_198_347_210_ffffffff_ffffff7f"/><linearGradient id="Definition_LinearGradient_396_174_347_198_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_396_174_347_198_ffffffff_ffffff7f" x1="396.62723214286" y1="174" x2="347.86629464286" y2="198" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_396_174_347_198_ffffffff_ffffff7f"/><linearGradient id="Definition_LinearGradient_391_186_417_186_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_391_186_417_186_ffffffbf_0000007f" x1="391.00100446429" y1="186" x2="417.16350446429" y2="186" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_391_186_417_186_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_391_186_417_186_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_391_186_417_186_8f191900_ef292900" x1="391.00100446429" y1="186" x2="417.16350446429" y2="186" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_391_186_417_186_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_422_186_448_186_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_422_186_448_186_ffffffbf_0000007f" x1="422.83649553571" y1="186" x2="448.99899553571" y2="186" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_422_186_448_186_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_480_186_455_186_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_480_186_455_186_ffffffff_ffffff7f" x1="480.13370535714" y1="186" x2="455.37276785714" y2="186" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_480_186_455_186_ffffffff_ffffff7f"/><linearGradient id="Definition_LinearGradient_537_155_489_179_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_537_155_489_179_ffffffff_ffffff7f" x1="537.96056547619" y1="155.28" x2="489.19962797619" y2="179.28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_537_155_489_179_ffffffff_ffffff7f"/><linearGradient id="Definition_LinearGradient_513_198_489_179_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_513_198_489_179_ffffffff_ffffff7f" x1="513.96056547619" y1="198" x2="489.19962797619" y2="179.28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_513_198_489_179_ffffffff_ffffff7f"/><linearGradient id="Definition_LinearGradient_532_92_558_92_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_532_92_558_92_ffffffbf_0000007f" x1="532.33433779762" y1="92.688" x2="558.49683779762" y2="92.688" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_532_92_558_92_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_532_92_558_92_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_532_92_558_92_8f191900_ef292900" x1="532.33433779762" y1="92.688" x2="558.49683779762" y2="92.688" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_532_92_558_92_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_564_82_590_82_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_564_82_590_82_ffffffbf_0000007f" x1="564.16982886905" y1="82.032" x2="590.33232886905" y2="82.032" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_564_82_590_82_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_621_179_596_179_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_621_179_596_179_ffffffff_ffffff7f" x1="621.46703869048" y1="179.088" x2="596.70610119048" y2="179.088" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_621_179_596_179_ffffffff_ffffff7f"/></defs><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,300.0000 L 0.0000,0.0000 L 700.0000,0.0000 L 700.0000,300.0000 L 0.0000,300.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,299.0000 L 1.0000,1.0000 L 139.0000,1.0000 L 139.0000,299.0000 L 1.0000,299.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,298.0000 L 2.0000,2.0000 L 138.0000,2.0000 L 138.0000,298.0000 L 2.0000,298.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><path d=" M 4.0000,18.0000 L 4.0000,4.0000 L 18.0000,4.0000 L 18.0000,18.0000 L 4.0000,18.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_4"/><path d=" M 16.6000,5.4000 L 16.6000,16.6000 L 5.4000,16.6000 L 5.4000,5.4000 L 16.6000,5.4000 z " style="fill: url(#LinearGradient_5_5_16_16_abefff00_39506800); stroke: none;" id="ezcGraphPolygon_5"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircle_7"/><ellipse cx="11" cy="47" rx="7" ry="7" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_9"/><ellipse cx="11" cy="47" rx="6.3" ry="6.3" style="fill: url(#LinearGradient_8_44_13_49_ffff7700_7e752800); stroke: none;" id="ezcGraphCircle_10"/><path d=" M 4.0000,65.0000 L 11.0000,58.0000 L 18.0000,65.0000 L 11.0000,72.0000 L 4.0000,65.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_12"/><path d=" M 16.6000,65.0000 L 11.0000,70.6000 L 5.4000,65.0000 L 11.0000,59.4000 L 16.6000,65.0000 z " style="fill: url(#LinearGradient_8_62_13_67_cfff4e00_45711a00); stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 140.0000,201.0000 L 170.0000,171.0000 L 700.0000,171.0000 L 670.0000,201.0000 L 140.0000,201.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_15"/><path d=" M 170.0000,171.0000 L 700.0000,171.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 692.0000,175.0000 L 700.0000,171.0000 L 692.0000,167.0000 L 692.0000,175.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_17"/><path d=" M 193.0000,300.0000 L 223.0000,270.0000 L 223.0000,0.0000 L 193.0000,30.0000 L 193.0000,300.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_18"/><path d=" M 223.0000,270.0000 L 223.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 219.5000,7.0000 L 223.0000,0.0000 L 226.5000,7.0000 L 219.5000,7.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_20"/><path d=" M 362.9200,243.0000 L 362.9200,27.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 334.3333,198.3000 L 364.3333,168.3000 L 364.3333,173.7000 L 334.3333,203.7000 L 334.3333,198.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_23"/><path d=" M 334.3333,198.3000 L 364.3333,168.3000 L 364.3333,173.7000 L 334.3333,203.7000 L 334.3333,198.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_24"/><path d=" M 507.0800,243.0000 L 507.0800,27.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 475.6667,198.3000 L 505.6667,168.3000 L 505.6667,173.7000 L 475.6667,203.7000 L 475.6667,198.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 475.6667,198.3000 L 505.6667,168.3000 L 505.6667,173.7000 L 475.6667,203.7000 L 475.6667,198.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_28"/><path d=" M 647.0000,243.0000 L 647.0000,27.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 617.0000,198.3000 L 647.0000,168.3000 L 647.0000,173.7000 L 617.0000,203.7000 L 617.0000,198.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_31"/><path d=" M 617.0000,198.3000 L 647.0000,168.3000 L 647.0000,173.7000 L 617.0000,203.7000 L 617.0000,198.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_32"/><path d=" M 647.0000,243.0000 L 223.0000,243.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 193.0000,273.0000 L 223.0000,243.0000 L 225.8393,243.0000 L 195.8393,273.0000 L 193.0000,273.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_34"/><path d=" M 193.0000,273.0000 L 223.0000,243.0000 L 225.8393,243.0000 L 195.8393,273.0000 L 193.0000,273.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_35"/><path d=" M 647.0000,227.8800 L 223.0000,227.8800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 193.0000,258.6000 L 223.0000,228.6000 L 223.9464,228.6000 L 193.9464,258.6000 L 193.0000,258.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_38"/><path d=" M 193.0000,258.6000 L 223.0000,228.6000 L 223.9464,228.6000 L 193.9464,258.6000 L 193.0000,258.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_39"/><path d=" M 647.0000,214.9200 L 223.0000,214.9200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 193.0000,244.2000 L 223.0000,214.2000 L 223.9464,214.2000 L 193.9464,244.2000 L 193.0000,244.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_41"/><path d=" M 193.0000,244.2000 L 223.0000,214.2000 L 223.9464,214.2000 L 193.9464,244.2000 L 193.0000,244.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_42"/><path d=" M 647.0000,199.8000 L 223.0000,199.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 193.0000,229.8000 L 223.0000,199.8000 L 223.9464,199.8000 L 193.9464,229.8000 L 193.0000,229.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 193.0000,229.8000 L 223.0000,199.8000 L 223.9464,199.8000 L 193.9464,229.8000 L 193.0000,229.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 647.0000,184.6800 L 223.0000,184.6800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 193.0000,215.4000 L 223.0000,185.4000 L 223.9464,185.4000 L 193.9464,215.4000 L 193.0000,215.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_47"/><path d=" M 193.0000,215.4000 L 223.0000,185.4000 L 223.9464,185.4000 L 193.9464,215.4000 L 193.0000,215.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_48"/><path d=" M 647.0000,156.6000 L 223.0000,156.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 193.0000,186.6000 L 223.0000,156.6000 L 223.9464,156.6000 L 193.9464,186.6000 L 193.0000,186.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 193.0000,186.6000 L 223.0000,156.6000 L 223.9464,156.6000 L 193.9464,186.6000 L 193.0000,186.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_52"/><path d=" M 647.0000,141.4800 L 223.0000,141.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 193.0000,172.2000 L 223.0000,142.2000 L 223.9464,142.2000 L 193.9464,172.2000 L 193.0000,172.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 193.0000,172.2000 L 223.0000,142.2000 L 223.9464,142.2000 L 193.9464,172.2000 L 193.0000,172.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_55"/><path d=" M 647.0000,128.5200 L 223.0000,128.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 193.0000,157.8000 L 223.0000,127.8000 L 223.9464,127.8000 L 193.9464,157.8000 L 193.0000,157.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 193.0000,157.8000 L 223.0000,127.8000 L 223.9464,127.8000 L 193.9464,157.8000 L 193.0000,157.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 647.0000,113.4000 L 223.0000,113.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 193.0000,143.4000 L 223.0000,113.4000 L 223.9464,113.4000 L 193.9464,143.4000 L 193.0000,143.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 193.0000,143.4000 L 223.0000,113.4000 L 223.9464,113.4000 L 193.9464,143.4000 L 193.0000,143.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 647.0000,98.2800 L 223.0000,98.2800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 193.0000,129.0000 L 223.0000,99.0000 L 225.8393,99.0000 L 195.8393,129.0000 L 193.0000,129.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_63"/><path d=" M 193.0000,129.0000 L 223.0000,99.0000 L 225.8393,99.0000 L 195.8393,129.0000 L 193.0000,129.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_64"/><path d=" M 647.0000,85.3200 L 223.0000,85.3200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 193.0000,114.6000 L 223.0000,84.6000 L 223.9464,84.6000 L 193.9464,114.6000 L 193.0000,114.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_67"/><path d=" M 193.0000,114.6000 L 223.0000,84.6000 L 223.9464,84.6000 L 193.9464,114.6000 L 193.0000,114.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_68"/><path d=" M 647.0000,70.2000 L 223.0000,70.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 193.0000,100.2000 L 223.0000,70.2000 L 223.9464,70.2000 L 193.9464,100.2000 L 193.0000,100.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 193.0000,100.2000 L 223.0000,70.2000 L 223.9464,70.2000 L 193.9464,100.2000 L 193.0000,100.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 647.0000,55.0800 L 223.0000,55.0800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 193.0000,85.8000 L 223.0000,55.8000 L 223.9464,55.8000 L 193.9464,85.8000 L 193.0000,85.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 193.0000,85.8000 L 223.0000,55.8000 L 223.9464,55.8000 L 193.9464,85.8000 L 193.0000,85.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_74"/><path d=" M 647.0000,42.1200 L 223.0000,42.1200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 193.0000,71.4000 L 223.0000,41.4000 L 223.9464,41.4000 L 193.9464,71.4000 L 193.0000,71.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 193.0000,71.4000 L 223.0000,41.4000 L 223.9464,41.4000 L 193.9464,71.4000 L 193.0000,71.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_77"/><path d=" M 647.0000,27.0000 L 223.0000,27.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 193.0000,57.0000 L 223.0000,27.0000 L 225.8393,27.0000 L 195.8393,57.0000 L 193.0000,57.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 193.0000,57.0000 L 223.0000,27.0000 L 225.8393,27.0000 L 195.8393,57.0000 L 193.0000,57.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_80"/><path d=" M 230.5330,49.5840 L 206.5330,73.5840 L 231.2939,73.5840 L 255.2939,49.5840 L 230.5330,49.5840 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_82"/><path d=" M 231.2939,198.0000 L 206.5330,198.0000 L 206.5330,73.5840 L 231.2939,73.5840 L 231.2939,198.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_83"/><path d=" M 230.5330,49.5840 L 206.5330,73.5840 L 231.2939,73.5840 L 255.2939,49.5840 L 230.5330,49.5840 z " style="fill: url(#LinearGradient_255_49_206_73_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_84"/><path d=" M 231.2939,198.0000 L 206.5330,198.0000 L 206.5330,73.5840 L 231.2939,73.5840 L 231.2939,198.0000 z " style="fill: url(#LinearGradient_231_198_206_73_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_85"/><path d=" M 255.2939,49.5840 L 231.2939,73.5840 L 231.2939,198.0000 L 255.2939,174.0000 L 255.2939,49.5840 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_86"/><path d="M 249.67,186.00 A 13.08,6.54 0 0,0 275.83,186.00 L 275.83,118.61 A 13.08,6.540625 0 0,1 249.67,118.61 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_87"/><path d="M 249.67,186.00 A 13.08,6.54 0 0,0 275.83,186.00 L 275.83,118.61 A 13.08,6.540625 0 0,1 249.67,118.61 z" style="fill: url(#LinearGradient_249_118_275_118_ffffffbf_0000007f); stroke: none;"/><ellipse cx="262.74892113095" cy="118.608" rx="13.08125" ry="6.540625" style="fill: url(#LinearGradient_249_118_275_118_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_88"/><path d="M 281.50,186.00 A 13.08,6.54 0 0,0 307.67,186.00 L 307.67,150.29 A 13.08,6.540625 0 0,1 281.50,150.29 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_89"/><path d="M 281.50,186.00 A 13.08,6.54 0 0,0 307.67,186.00 L 307.67,150.29 A 13.08,6.540625 0 0,1 281.50,150.29 z" style="fill: url(#LinearGradient_281_150_307_150_ffffffbf_0000007f); stroke: none;"/><ellipse cx="294.58441220238" cy="150.288" rx="13.08125" ry="6.540625" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_90"/><path d=" M 319.3721,198.0000 L 314.0394,186.0000 L 314.0394,74.5440 L 319.3721,86.5440 L 319.3721,198.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_91"/><path d=" M 314.0394,74.5440 L 319.3721,86.5440 L 338.8004,74.5440 L 333.4677,62.5440 L 314.0394,74.5440 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_92"/><path d=" M 314.0394,74.5440 L 319.3721,86.5440 L 338.8004,74.5440 L 333.4677,62.5440 L 314.0394,74.5440 z " style="fill: url(#LinearGradient_338_74_314_74_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_93"/><path d=" M 319.3721,198.0000 L 338.8004,186.0000 L 338.8004,74.5440 L 319.3721,86.5440 L 319.3721,198.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_94"/><path d=" M 372.6272,198.0000 L 347.8663,198.0000 L 347.8663,210.3840 L 372.6272,210.3840 L 372.6272,198.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_95"/><path d=" M 371.8663,174.0000 L 347.8663,198.0000 L 372.6272,198.0000 L 396.6272,174.0000 L 371.8663,174.0000 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_96"/><path d=" M 372.6272,198.0000 L 347.8663,198.0000 L 347.8663,210.3840 L 372.6272,210.3840 L 372.6272,198.0000 z " style="fill: url(#LinearGradient_372_198_347_210_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_97"/><path d=" M 371.8663,174.0000 L 347.8663,198.0000 L 372.6272,198.0000 L 396.6272,174.0000 L 371.8663,174.0000 z " style="fill: url(#LinearGradient_396_174_347_198_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_98"/><path d=" M 396.6272,186.3840 L 372.6272,210.3840 L 372.6272,198.0000 L 396.6272,174.0000 L 396.6272,186.3840 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_99"/><path d="M 391.00,192.05 A 13.08,6.54 0 0,0 417.16,192.05 L 417.16,186.00 A 13.08,6.540625 0 0,1 391.00,186.00 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_100"/><path d="M 391.00,192.05 A 13.08,6.54 0 0,0 417.16,192.05 L 417.16,186.00 A 13.08,6.540625 0 0,1 391.00,186.00 z" style="fill: url(#LinearGradient_391_186_417_186_ffffffbf_0000007f); stroke: none;"/><ellipse cx="404.08225446429" cy="186" rx="13.08125" ry="6.540625" style="fill: url(#LinearGradient_391_186_417_186_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_101"/><path d="M 422.84,256.56 A 13.08,6.54 0 0,0 449.00,256.56 L 449.00,186.00 A 13.08,6.540625 0 0,1 422.84,186.00 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_102"/><path d="M 422.84,256.56 A 13.08,6.54 0 0,0 449.00,256.56 L 449.00,186.00 A 13.08,6.540625 0 0,1 422.84,186.00 z" style="fill: url(#LinearGradient_422_186_448_186_ffffffbf_0000007f); stroke: none;"/><ellipse cx="435.91774553571" cy="186" rx="13.08125" ry="6.540625" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_103"/><path d=" M 460.7054,198.0000 L 455.3728,186.0000 L 455.3728,247.3440 L 460.7054,259.3440 L 460.7054,198.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_104"/><path d=" M 455.3728,186.0000 L 460.7054,198.0000 L 480.1337,186.0000 L 474.8010,174.0000 L 455.3728,186.0000 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_105"/><path d=" M 455.3728,186.0000 L 460.7054,198.0000 L 480.1337,186.0000 L 474.8010,174.0000 L 455.3728,186.0000 z " style="fill: url(#LinearGradient_480_186_455_186_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_106"/><path d=" M 460.7054,198.0000 L 480.1337,186.0000 L 480.1337,247.3440 L 460.7054,259.3440 L 460.7054,198.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_107"/><path d=" M 513.1996,155.2800 L 489.1996,179.2800 L 513.9606,179.2800 L 537.9606,155.2800 L 513.1996,155.2800 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_108"/><path d=" M 513.9606,198.0000 L 489.1996,198.0000 L 489.1996,179.2800 L 513.9606,179.2800 L 513.9606,198.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_109"/><path d=" M 513.1996,155.2800 L 489.1996,179.2800 L 513.9606,179.2800 L 537.9606,155.2800 L 513.1996,155.2800 z " style="fill: url(#LinearGradient_537_155_489_179_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_110"/><path d=" M 513.9606,198.0000 L 489.1996,198.0000 L 489.1996,179.2800 L 513.9606,179.2800 L 513.9606,198.0000 z " style="fill: url(#LinearGradient_513_198_489_179_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_111"/><path d=" M 537.9606,155.2800 L 513.9606,179.2800 L 513.9606,198.0000 L 537.9606,174.0000 L 537.9606,155.2800 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_112"/><path d="M 532.33,186.00 A 13.08,6.54 0 0,0 558.50,186.00 L 558.50,92.69 A 13.08,6.540625 0 0,1 532.33,92.69 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_113"/><path d="M 532.33,186.00 A 13.08,6.54 0 0,0 558.50,186.00 L 558.50,92.69 A 13.08,6.540625 0 0,1 532.33,92.69 z" style="fill: url(#LinearGradient_532_92_558_92_ffffffbf_0000007f); stroke: none;"/><ellipse cx="545.41558779762" cy="92.688" rx="13.08125" ry="6.540625" style="fill: url(#LinearGradient_532_92_558_92_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_114"/><path d="M 564.17,186.00 A 13.08,6.54 0 0,0 590.33,186.00 L 590.33,82.03 A 13.08,6.540625 0 0,1 564.17,82.03 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_115"/><path d="M 564.17,186.00 A 13.08,6.54 0 0,0 590.33,186.00 L 590.33,82.03 A 13.08,6.540625 0 0,1 564.17,82.03 z" style="fill: url(#LinearGradient_564_82_590_82_ffffffbf_0000007f); stroke: none;"/><ellipse cx="577.25107886905" cy="82.032" rx="13.08125" ry="6.540625" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_116"/><path d=" M 602.0388,198.0000 L 596.7061,186.0000 L 596.7061,179.0880 L 602.0388,191.0880 L 602.0388,198.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_117"/><path d=" M 596.7061,179.0880 L 602.0388,191.0880 L 621.4670,179.0880 L 616.1344,167.0880 L 596.7061,179.0880 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_118"/><path d=" M 596.7061,179.0880 L 602.0388,191.0880 L 621.4670,179.0880 L 616.1344,167.0880 L 596.7061,179.0880 z " style="fill: url(#LinearGradient_621_179_596_179_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_119"/><path d=" M 602.0388,198.0000 L 621.4670,186.0000 L 621.4670,179.0880 L 602.0388,191.0880 L 602.0388,198.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_120"/><path d=" M 700.0000,171.0000 L 670.0000,201.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_121"/><path d=" M 670.0000,201.0000 L 140.0000,201.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_122"/><path d=" M 140.0000,201.0000 L 170.0000,171.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_123"/><path d=" M 223.0000,0.0000 L 193.0000,30.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_124"/><path d=" M 193.0000,30.0000 L 193.0000,300.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_125"/><path d=" M 193.0000,300.0000 L 223.0000,270.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_126"/><text id="ezcGraphTextBox_6" x="19" text-length="66.78px" y="18" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Rectangle</text><text id="ezcGraphTextBox_8" x="19" text-length="44.52px" y="36" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Circle</text><text id="ezcGraphTextBox_11" x="19" text-length="44.52px" y="54" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Bullet</text><text id="ezcGraphTextBox_14" x="19" text-length="51.94px" y="72" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Diamond</text><text id="ezcGraphTextBox_21" x="204.872" text-length="82.256px" y="222.2" style="font-size: 19px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text><text id="ezcGraphTextBox_25" x="346.20533333333" text-length="82.256px" y="222.2" style="font-size: 19px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text><text id="ezcGraphTextBox_29" x="487.53866666667" text-length="82.256px" y="222.2" style="font-size: 19px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text><text id="ezcGraphTextBox_36" x="142.99514285714" text-length="48.112px" y="271.2" style="font-size: 19px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-250</text><text id="ezcGraphTextBox_49" x="179.07914285714" text-length="12.028px" y="199.2" style="font-size: 19px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text><text id="ezcGraphTextBox_65" x="155.02314285714" text-length="36.084px" y="127.2" style="font-size: 19px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text><text id="ezcGraphTextBox_81" x="155.02314285714" text-length="36.084px" y="78.2" style="font-size: 19px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></svg>
diff --git a/tests/image_map_test.php b/tests/image_map_test.php
index 7c01d29..1a97ffc 100644
--- a/tests/image_map_test.php
+++ b/tests/image_map_test.php
@@ -91,7 +91,7 @@ class ezcGraphImageMapTest extends ezcTestCase
$this->assertSame( 3, count( $reference['data'] ), '3 datasets expected.' );
$this->assertSame( 5, count( $reference['data']['sampleData'] ), '5 datapoints expected.' );
$this->assertSame( 1, count( $reference['data']['sampleData']['sample 2'] ), '1 element for datapoint expected.' );
- $this->assertSame( 'ezcGraphCircle_55', $reference['data']['sampleData']['sample 2'][0], 'ezcGraphCircle element expected.' );
+ $this->assertSame( 'ezcGraphCircle_79', $reference['data']['sampleData']['sample 2'][0], 'ezcGraphCircle element expected.' );
// Check legend references
$this->assertSame( 3, count( $reference['legend'] ), '3 legend items expected.' );
@@ -197,7 +197,7 @@ class ezcGraphImageMapTest extends ezcTestCase
$this->assertSame( 3, count( $reference['data'] ), '3 datasets expected.' );
$this->assertSame( 5, count( $reference['data']['sampleData'] ), '5 datapoints expected.' );
$this->assertSame( 1, count( $reference['data']['sampleData']['sample 2'] ), '1 element for datapoint expected.' );
- $this->assertSame( 'ezcGraphCircle_80', $reference['data']['sampleData']['sample 2'][0], 'ezcGraphCircle element expected.' );
+ $this->assertSame( 'ezcGraphCircle_116', $reference['data']['sampleData']['sample 2'][0], 'ezcGraphCircle element expected.' );
// Check legend references
$this->assertSame( 3, count( $reference['legend'] ), '3 legend items expected.' );
OpenPOWER on IntegriCloud