This is an automated email from the ASF dual-hosted git repository.
ovilia pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/echarts-custom-series.git
The following commit(s) were added to refs/heads/main by this push:
new bcfbef5 feat(lineRange): vertical lineRange
bcfbef5 is described below
commit bcfbef54cf1eb398376b5f76a2d5b9a6a9b07259
Author: Ovilia <[email protected]>
AuthorDate: Thu Oct 17 16:53:05 2024 +0800
feat(lineRange): vertical lineRange
---
.prettierignore | 1 +
README.md | 7 +-
custom-series/lineRange/README.md | 54 ++++-
custom-series/lineRange/src/index.ts | 17 +-
custom-series/lineRange/test/vertical.html | 73 ++++++
screenshots/barRange.svg | 28 +--
screenshots/lineRange.svg | 84 +++++++
screenshots/stage.svg | 86 +++----
screenshots/violin.svg | 372 +++++++++++------------------
9 files changed, 419 insertions(+), 303 deletions(-)
diff --git a/.prettierignore b/.prettierignore
new file mode 100644
index 0000000..dd44972
--- /dev/null
+++ b/.prettierignore
@@ -0,0 +1 @@
+*.md
diff --git a/README.md b/README.md
index 5f2125e..be70992 100644
--- a/README.md
+++ b/README.md
@@ -4,9 +4,10 @@ This repo provides some custom series for [Apache
ECharts](https://github.com/ap
## List of Custom Series
-| [barRange](custom-series/barRange) <br>
 | [violin](custom-series/violin) <br>
 |
-|
----------------------------------------------------------------------------- |
--------------------------------------------------------------------- |
-| [stage](custom-series/stage) <br> 
| |
+| | |
+|-|-|
+| [violin](custom-series/violin) <br>  |
[stage](custom-series/stage) <br>  |
|
+| [barRange](custom-series/barRange) <br>
 | [lineRange](custom-series/lineRange)
<br>  |
## Setup
diff --git a/custom-series/lineRange/README.md
b/custom-series/lineRange/README.md
index e9cd32c..3273364 100644
--- a/custom-series/lineRange/README.md
+++ b/custom-series/lineRange/README.md
@@ -1,6 +1,6 @@
# lineRange
-`lineRange` is a custom series for [Apache
ECharts](https://github.com/apache/echarts). It's typically used to ...
+`lineRange` is a custom series for [Apache
ECharts](https://github.com/apache/echarts). It's typically used to show the
range of data.

@@ -37,15 +37,63 @@ See [test](./test/index.html) for more details.
### series.data
-The data of the series is an array of arrays. Each sub-array represents ...
+The data of the series is an array of arrays.
```js
-const data = [];
+option = {
+ xAxis: {
+ data: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
+ type: 'category'
+ },
+ yAxis: {
+ type: 'value'
+ },
+ series: [{
+ type: 'custom',
+ renderItem: 'lineRange',
+ data: [
+ [0, 10, 20],
+ [1, 20, 30],
+ [2, 30, 40],
+ [3, 40, 50],
+ [4, 50, 60],
+ [5, 60, 70],
+ [6, 70, 80],
+ ],
+ encode: {
+ x: [1, 2],
+ y: 0,
+ tooltip: [1, 2]
+ }
+ }]
+};
```
+The first element of the sub-array is the x value. The second element is the
starting y value, and the third element is the ending y value. If you want to
make a vertical lineRange chart, you can swap the x and y in the above example
(including `encode`).
+
### series.itemPayload
The `itemPayload` is an object that contains the following properties:
| Property | Type | Default | Description |
| -------- | ---- | ------- | ----------- |
+| `lineStyle` | `object` | `{}` | The style of the lines. |
+| `lineStyle.color` | `string` | null | The color of the lines. Default is the
series color. |
+| `lineStyle.opacity` | `number` | 1 | The opacity of the lines. |
+| `lineStyle.width` | `number` | 0 | The width of the lines. |
+| `lineStyle.type` | `string` | 'solid' | The type of the lines. |
+| `lineStyle.dashOffset` | `number` | 0 | The dashOffset of the lines. |
+| `lineStyle.cap` | 'butt' | 'round' | 'square' | 'butt' | The cap of the
lines. |
+| `lineStyle.join` | 'bevel' | 'round' | 'miter' | 'bevel' | The join of the
lines. |
+| `lineStyle.miterLimit` | `number` | 10 | The miterLimit of the lines. |
+| `lineStyle.shadowBlur` | `number` | 0 | The shadowBlur of the lines. |
+| `lineStyle.shadowColor` | `string` | null | The shadowColor of the lines. |
+| `lineStyle.shadowOffsetX` | `number` | 0 | The shadowOffsetX of the lines. |
+| `lineStyle.shadowOffsetY` | `number` | 0 | The shadowOffsetY of the lines. |
+| `areaStyle` | `object` | `{}` | The style of the area. |
+| `areaStyle.color` | `string` | null | The color of the area. Default is the
series color. |
+| `areaStyle.opacity` | `number` | 0.2 | The opacity of the area. |
+| `areaStyle.shadowBlur` | `number` | 0 | The shadowBlur of the area. |
+| `areaStyle.shadowColor` | `string` | null | The shadowColor of the area. |
+| `areaStyle.shadowOffsetX` | `number` | 0 | The shadowOffsetX of the area. |
+| `areaStyle.shadowOffsetY` | `number` | 0 | The shadowOffsetY of the area. |
diff --git a/custom-series/lineRange/src/index.ts
b/custom-series/lineRange/src/index.ts
index 2b611d9..ab9eae0 100644
--- a/custom-series/lineRange/src/index.ts
+++ b/custom-series/lineRange/src/index.ts
@@ -63,20 +63,25 @@ const renderItem = (
const cnt = params.dataInsideLength;
if (params.dataIndex === cnt - 1) {
const itemPayload = params.itemPayload as LineRangeItemPayload;
+ const isHorizontal = params.encode.x.length === 1;
+ const startDim = isHorizontal ? params.encode.y[0] : params.encode.x[0];
+ const endDim = isHorizontal ? params.encode.y[1] : params.encode.x[1];
const points: number[][] = [];
let pathDataStart: string = '';
let pathDataEnd: string = '';
for (let i = 0; i < cnt; i++) {
- const startValue = api.value(1, i);
- const startCoord = api.coord([i, startValue]);
+ const startValue = api.value(startDim, i);
+ const startCoord = api.coord(
+ isHorizontal ? [i, startValue] : [startValue, i]
+ );
points.push(startCoord);
pathDataStart +=
(i === 0 ? 'M' : 'L') + startCoord[0] + ',' + startCoord[1] + ' ';
}
for (let i = cnt - 1; i >= 0; i--) {
- const endValue = api.value(2, i);
- const endCoord = api.coord([i, endValue]);
+ const endValue = api.value(endDim, i);
+ const endCoord = api.coord(isHorizontal ? [i, endValue] : [endValue, i]);
points.push(endCoord);
pathDataEnd +=
(i === cnt - 1 ? 'M' : 'L') + endCoord[0] + ',' + endCoord[1] + ' ';
@@ -92,6 +97,10 @@ const renderItem = (
style: {
fill: areaStyle.color || api.visual('color'),
opacity: zrUtil.retrieve2(areaStyle.opacity, 0.2),
+ shadowBlur: areaStyle.shadowBlur,
+ shadowColor: areaStyle.shadowColor,
+ shadowOffsetX: areaStyle.shadowOffsetX,
+ shadowOffsetY: areaStyle.shadowOffsetY,
},
silent: true,
} as Polygon);
diff --git a/custom-series/lineRange/test/vertical.html
b/custom-series/lineRange/test/vertical.html
new file mode 100644
index 0000000..6b1da31
--- /dev/null
+++ b/custom-series/lineRange/test/vertical.html
@@ -0,0 +1,73 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>Apache ECharts Custom Series Test</title>
+</head>
+
+<body>
+ <div id="main" style="width: 1000px;height:400px;border:1px solid
#ccc"></div>
+
+ <script src="../node_modules/echarts/dist/echarts.js"></script>
+ <script src="../dist/index.js"></script>
+ <script>
+ echarts.use(window.lineRangeCustomSeriesInstaller);
+ const chart = echarts.init(document.getElementById('main'));
+ const data = [
+ [0, 26.7, 32.5],
+ [1, 25.3, 32.4],
+ [2, 24.6, 32.7],
+ [3, 26.8, 35.8],
+ [4, 26.2, 33.1],
+ [5, 24.9, 31.4],
+ [6, 25.3, 32.9],
+ ];
+
+ option = {
+ yAxis: {
+ data: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
+ type: 'category'
+ },
+ xAxis: {
+ type: 'value'
+ },
+ tooltip: {
+ show: true
+ },
+ legend: {
+ top: 15
+ },
+ series: [{
+ type: 'custom',
+ name: 'line',
+ renderItem: 'lineRange',
+ data,
+ itemPayload: {
+ areaStyle: {
+ },
+ // lineStyle: {
+ // width: 2
+ // }
+ },
+ encode: {
+ x: [1, 2],
+ y: 0,
+ tooltip: [1, 2]
+ }
+ }, {
+ type: 'line',
+ name: 'line', // To use the same color as custom series
+ data: data.map(function (item) {
+ const ratio = Math.random() * 0.5 + 0.25;
+ return item[1] * ratio + item[2] * (1 - ratio);
+ }),
+ }]
+ };
+
+ chart.setOption(option);
+ </script>
+</body>
+
+</html>
\ No newline at end of file
diff --git a/screenshots/barRange.svg b/screenshots/barRange.svg
index f881ea3..a46ccef 100644
--- a/screenshots/barRange.svg
+++ b/screenshots/barRange.svg
@@ -1,19 +1,19 @@
<svg width="600" height="400" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" baseProfile="full"
viewBox="0 0 600 400">
<rect width="600" height="400" x="0" y="0" fill="#fff"></rect>
-<path d="M60 330.5L540 330.5" fill="transparent" stroke="#E0E6F1"
class="zr0-cls-0"></path>
-<path d="M60 262.5L540 262.5" fill="transparent" stroke="#E0E6F1"
class="zr0-cls-0"></path>
-<path d="M60 195.5L540 195.5" fill="transparent" stroke="#E0E6F1"
class="zr0-cls-0"></path>
-<path d="M60 127.5L540 127.5" fill="transparent" stroke="#E0E6F1"
class="zr0-cls-0"></path>
-<path d="M60 60.5L540 60.5" fill="transparent" stroke="#E0E6F1"
class="zr0-cls-0"></path>
-<path d="M60 330.5L540 330.5" fill="transparent" stroke="#6E7079"
stroke-linecap="round" class="zr0-cls-0"></path>
-<path d="M60.5 330L60.5 335" fill="transparent" stroke="#6E7079"
class="zr0-cls-0"></path>
-<path d="M128.5 330L128.5 335" fill="transparent" stroke="#6E7079"
class="zr0-cls-0"></path>
-<path d="M197.5 330L197.5 335" fill="transparent" stroke="#6E7079"
class="zr0-cls-0"></path>
-<path d="M265.5 330L265.5 335" fill="transparent" stroke="#6E7079"
class="zr0-cls-0"></path>
-<path d="M334.5 330L334.5 335" fill="transparent" stroke="#6E7079"
class="zr0-cls-0"></path>
-<path d="M403.5 330L403.5 335" fill="transparent" stroke="#6E7079"
class="zr0-cls-0"></path>
-<path d="M471.5 330L471.5 335" fill="transparent" stroke="#6E7079"
class="zr0-cls-0"></path>
-<path d="M540.5 330L540.5 335" fill="transparent" stroke="#6E7079"
class="zr0-cls-0"></path>
+<path d="M60 330.5L540 330.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr0-cls-0"></path>
+<path d="M60 262.5L540 262.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr0-cls-0"></path>
+<path d="M60 195.5L540 195.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr0-cls-0"></path>
+<path d="M60 127.5L540 127.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr0-cls-0"></path>
+<path d="M60 60.5L540 60.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr0-cls-0"></path>
+<path d="M60 330.5L540 330.5" fill="none" pointer-events="visible"
stroke="#6E7079" stroke-linecap="round" class="zr0-cls-0"></path>
+<path d="M60.5 330L60.5 335" fill="none" pointer-events="visible"
stroke="#6E7079" class="zr0-cls-0"></path>
+<path d="M128.5 330L128.5 335" fill="none" pointer-events="visible"
stroke="#6E7079" class="zr0-cls-0"></path>
+<path d="M197.5 330L197.5 335" fill="none" pointer-events="visible"
stroke="#6E7079" class="zr0-cls-0"></path>
+<path d="M265.5 330L265.5 335" fill="none" pointer-events="visible"
stroke="#6E7079" class="zr0-cls-0"></path>
+<path d="M334.5 330L334.5 335" fill="none" pointer-events="visible"
stroke="#6E7079" class="zr0-cls-0"></path>
+<path d="M403.5 330L403.5 335" fill="none" pointer-events="visible"
stroke="#6E7079" class="zr0-cls-0"></path>
+<path d="M471.5 330L471.5 335" fill="none" pointer-events="visible"
stroke="#6E7079" class="zr0-cls-0"></path>
+<path d="M540.5 330L540.5 335" fill="none" pointer-events="visible"
stroke="#6E7079" class="zr0-cls-0"></path>
<text dominant-baseline="central" text-anchor="end"
style="font-size:12px;font-family:sans-serif;" transform="translate(52 330)"
fill="#6E7079">0</text>
<text dominant-baseline="central" text-anchor="end"
style="font-size:12px;font-family:sans-serif;" transform="translate(52 262.5)"
fill="#6E7079">10</text>
<text dominant-baseline="central" text-anchor="end"
style="font-size:12px;font-family:sans-serif;" transform="translate(52 195)"
fill="#6E7079">20</text>
diff --git a/screenshots/lineRange.svg b/screenshots/lineRange.svg
new file mode 100644
index 0000000..ee13985
--- /dev/null
+++ b/screenshots/lineRange.svg
@@ -0,0 +1,84 @@
+<svg width="600" height="400" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" baseProfile="full"
viewBox="0 0 600 400">
+<rect width="600" height="400" x="0" y="0" fill="#fff"></rect>
+<path d="M60 330.5L540 330.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr1-cls-2"></path>
+<path d="M60 262.5L540 262.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr1-cls-2"></path>
+<path d="M60 195.5L540 195.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr1-cls-2"></path>
+<path d="M60 127.5L540 127.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr1-cls-2"></path>
+<path d="M60 60.5L540 60.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr1-cls-2"></path>
+<path d="M60 330.5L540 330.5" fill="none" pointer-events="visible"
stroke="#6E7079" stroke-linecap="round" class="zr1-cls-2"></path>
+<path d="M60.5 330L60.5 335" fill="none" pointer-events="visible"
stroke="#6E7079" class="zr1-cls-2"></path>
+<path d="M128.5 330L128.5 335" fill="none" pointer-events="visible"
stroke="#6E7079" class="zr1-cls-2"></path>
+<path d="M197.5 330L197.5 335" fill="none" pointer-events="visible"
stroke="#6E7079" class="zr1-cls-2"></path>
+<path d="M265.5 330L265.5 335" fill="none" pointer-events="visible"
stroke="#6E7079" class="zr1-cls-2"></path>
+<path d="M334.5 330L334.5 335" fill="none" pointer-events="visible"
stroke="#6E7079" class="zr1-cls-2"></path>
+<path d="M403.5 330L403.5 335" fill="none" pointer-events="visible"
stroke="#6E7079" class="zr1-cls-2"></path>
+<path d="M471.5 330L471.5 335" fill="none" pointer-events="visible"
stroke="#6E7079" class="zr1-cls-2"></path>
+<path d="M540.5 330L540.5 335" fill="none" pointer-events="visible"
stroke="#6E7079" class="zr1-cls-2"></path>
+<text dominant-baseline="central" text-anchor="end"
style="font-size:12px;font-family:sans-serif;" transform="translate(52 330)"
fill="#6E7079">0</text>
+<text dominant-baseline="central" text-anchor="end"
style="font-size:12px;font-family:sans-serif;" transform="translate(52 262.5)"
fill="#6E7079">10</text>
+<text dominant-baseline="central" text-anchor="end"
style="font-size:12px;font-family:sans-serif;" transform="translate(52 195)"
fill="#6E7079">20</text>
+<text dominant-baseline="central" text-anchor="end"
style="font-size:12px;font-family:sans-serif;" transform="translate(52 127.5)"
fill="#6E7079">30</text>
+<text dominant-baseline="central" text-anchor="end"
style="font-size:12px;font-family:sans-serif;" transform="translate(52 60)"
fill="#6E7079">40</text>
+<text dominant-baseline="central" text-anchor="middle"
style="font-size:12px;font-family:sans-serif;" y="6"
transform="translate(94.2857 338)" fill="#6E7079">Sun</text>
+<text dominant-baseline="central" text-anchor="middle"
style="font-size:12px;font-family:sans-serif;" y="6"
transform="translate(162.8571 338)" fill="#6E7079">Mon</text>
+<text dominant-baseline="central" text-anchor="middle"
style="font-size:12px;font-family:sans-serif;" y="6"
transform="translate(231.4286 338)" fill="#6E7079">Tue</text>
+<text dominant-baseline="central" text-anchor="middle"
style="font-size:12px;font-family:sans-serif;" y="6" transform="translate(300
338)" fill="#6E7079">Wed</text>
+<text dominant-baseline="central" text-anchor="middle"
style="font-size:12px;font-family:sans-serif;" y="6"
transform="translate(368.5714 338)" fill="#6E7079">Thu</text>
+<text dominant-baseline="central" text-anchor="middle"
style="font-size:12px;font-family:sans-serif;" y="6"
transform="translate(437.1429 338)" fill="#6E7079">Fri</text>
+<text dominant-baseline="central" text-anchor="middle"
style="font-size:12px;font-family:sans-serif;" y="6"
transform="translate(505.7143 338)" fill="#6E7079">Sat</text>
+<polygon points="94.3 149.8 162.9 159.2 231.4 164 300 149.1 368.6 153.2 437.1
161.9 505.7 159.2 505.7 107.9 437.1 118.1 368.6 106.6 300 88.4 231.4 109.3
162.9 111.3 94.3 110.6" fill="#5470c6" fill-opacity="0.2"
ecmeta_series_index="0" ecmeta_data_index="6" ecmeta_ssr_type="chart"
ecmeta_silent="true" class="zr1-cls-2"></polygon>
+<path d="M94.3 149.8L162.9 159.2L231.4 163.9L300 149.1L368.6 153.1L437.1
161.9L505.7 159.2" fill="none" pointer-events="visible" stroke="#5470c6"
stroke-width="0" stroke-linecap="butt" stroke-miterlimit="10"
ecmeta_series_index="0" ecmeta_data_index="6" ecmeta_ssr_type="chart"
ecmeta_silent="true" class="zr1-cls-2"></path>
+<path d="M505.7 107.9L437.1 118.1L368.6 106.6L300 88.3L231.4 109.3L162.9
111.3L94.3 110.6" fill="none" pointer-events="visible" stroke="#5470c6"
stroke-width="0" stroke-linecap="butt" stroke-miterlimit="10"
ecmeta_series_index="0" ecmeta_data_index="6" ecmeta_ssr_type="chart"
ecmeta_silent="true" class="zr1-cls-2"></path>
+<g clip-path="url(#zr1-c0)">
+<path d="M94.3 131.3L162.9 146.4L231.4 130.8L300 133L368.6 123.8L437.1
138.2L505.7 132.5" fill="none" pointer-events="visible" stroke="#5470c6"
stroke-width="2" stroke-linejoin="bevel" class="zr1-cls-5"></path>
+</g>
+<path d="M1 0A1 1 0 1 1 1 -0.1A1 1 0 0 1 1 0"
transform="matrix(2,0,0,2,94.2857,131.3106)" fill="#fff" stroke="#5470c6"
ecmeta_series_index="1" ecmeta_data_index="0" ecmeta_ssr_type="chart"
class="zr1-cls-6"></path>
+<path d="M1 0A1 1 0 1 1 1 -0.1A1 1 0 0 1 1 0"
transform="matrix(2,0,0,2,162.8571,146.4212)" fill="#fff" stroke="#5470c6"
ecmeta_series_index="1" ecmeta_data_index="1" ecmeta_ssr_type="chart"
class="zr1-cls-6"></path>
+<path d="M1 0A1 1 0 1 1 1 -0.1A1 1 0 0 1 1 0"
transform="matrix(2,0,0,2,231.4286,130.7965)" fill="#fff" stroke="#5470c6"
ecmeta_series_index="1" ecmeta_data_index="2" ecmeta_ssr_type="chart"
class="zr1-cls-6"></path>
+<path d="M1 0A1 1 0 1 1 1 -0.1A1 1 0 0 1 1 0"
transform="matrix(2,0,0,2,300,133.0354)" fill="#fff" stroke="#5470c6"
ecmeta_series_index="1" ecmeta_data_index="3" ecmeta_ssr_type="chart"
class="zr1-cls-6"></path>
+<path d="M1 0A1 1 0 1 1 1 -0.1A1 1 0 0 1 1 0"
transform="matrix(2,0,0,2,368.5714,123.7732)" fill="#fff" stroke="#5470c6"
ecmeta_series_index="1" ecmeta_data_index="4" ecmeta_ssr_type="chart"
class="zr1-cls-6"></path>
+<path d="M1 0A1 1 0 1 1 1 -0.1A1 1 0 0 1 1 0"
transform="matrix(2,0,0,2,437.1429,138.1992)" fill="#fff" stroke="#5470c6"
ecmeta_series_index="1" ecmeta_data_index="5" ecmeta_ssr_type="chart"
class="zr1-cls-6"></path>
+<path d="M1 0A1 1 0 1 1 1 -0.1A1 1 0 0 1 1 0"
transform="matrix(2,0,0,2,505.7143,132.5082)" fill="#fff" stroke="#5470c6"
ecmeta_series_index="1" ecmeta_data_index="6" ecmeta_ssr_type="chart"
class="zr1-cls-6"></path>
+<path d="M-5 -5l58.7 0l0 24l-58.7 0Z" transform="translate(275.64 20)"
fill="rgb(0,0,0)" fill-opacity="0" stroke="#ccc" stroke-width="0"
class="zr1-cls-2"></path>
+<path d="M3.5 0L21.5 0A3.5 3.5 0 0 1 25 3.5L25 10.5A3.5 3.5 0 0 1 21.5 14L3.5
14A3.5 3.5 0 0 1 0 10.5L0 3.5A3.5 3.5 0 0 1 3.5 0" transform="translate(275.64
20)" fill="#5470c6" ecmeta_series_index="0" ecmeta_data_index="0"
ecmeta_ssr_type="legend" ecmeta_silent="true" class="zr1-cls-2"></path>
+<text dominant-baseline="central" text-anchor="start"
style="font-size:12px;font-family:sans-serif;" x="30" y="7"
transform="translate(275.64 20)" fill="#333">line</text>
+<path d="M0 0l48.7 0l0 14l-48.7 0Z" transform="translate(275.64 20)"
fill="none" pointer-events="visible" ecmeta_series_index="0"
ecmeta_data_index="0" ecmeta_ssr_type="legend" class="zr1-cls-7"></path>
+<defs >
+<clipPath id="zr1-c0">
+<path d="M59 59l482 0l0 272l-482 0Z" fill="#000" class="zr1-cls-3
zr1-cls-4"></path>
+</clipPath>
+</defs>
+<style ><![CDATA[
+.zr1-cls-2:hover {
+pointer-events:none;
+}
+.zr1-cls-3 {
+animation:zr1-ani-0 1s linear both;
+}
+.zr1-cls-4:hover {
+cursor:pointer;
+fill:rgba(0,0,0,1);
+}
+.zr1-cls-5:hover {
+cursor:pointer;
+}
+.zr1-cls-6:hover {
+cursor:pointer;
+fill:rgba(255,255,255,1);
+}
+.zr1-cls-7:hover {
+cursor:pointer;
+fill:rgba(0,0,0,0);
+}
+@keyframes zr1-ani-0 {
+0% {
+d:path("M59 59l0 0l0 272l0 0Z");
+}
+100% {
+d:path("M59 59l482 0l0 272l-482 0Z");
+}
+}
+]]>
+
+</style>
+</svg>
\ No newline at end of file
diff --git a/screenshots/stage.svg b/screenshots/stage.svg
index 4e078bd..65d3db7 100644
--- a/screenshots/stage.svg
+++ b/screenshots/stage.svg
@@ -1,21 +1,21 @@
<svg width="600" height="400" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" baseProfile="full"
viewBox="0 0 600 400">
<rect width="600" height="400" x="0" y="0" fill="#fff"></rect>
-<path d="M60 330.5L540 330.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr0-cls-0"></path>
-<path d="M60 262.5L540 262.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr0-cls-0"></path>
-<path d="M60 195.5L540 195.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr0-cls-0"></path>
-<path d="M60 127.5L540 127.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr0-cls-0"></path>
-<path d="M60 60.5L540 60.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr0-cls-0"></path>
-<path d="M60.5 60L60.5 330" fill="none" pointer-events="visible"
stroke="#E0E6F1" stroke-opacity="0.8" stroke-dasharray="4,2"
class="zr0-cls-0"></path>
-<path d="M60.5 60L60.5 330" fill="none" pointer-events="visible"
stroke="#E0E6F1" stroke-opacity="0.8" stroke-dasharray="4,2"
class="zr0-cls-0"></path>
-<path d="M120.5 60L120.5 330" fill="none" pointer-events="visible"
stroke="#E0E6F1" stroke-opacity="0.8" stroke-dasharray="4,2"
class="zr0-cls-0"></path>
-<path d="M180.5 60L180.5 330" fill="none" pointer-events="visible"
stroke="#E0E6F1" stroke-opacity="0.8" stroke-dasharray="4,2"
class="zr0-cls-0"></path>
-<path d="M240.5 60L240.5 330" fill="none" pointer-events="visible"
stroke="#E0E6F1" stroke-opacity="0.8" stroke-dasharray="4,2"
class="zr0-cls-0"></path>
-<path d="M300.5 60L300.5 330" fill="none" pointer-events="visible"
stroke="#E0E6F1" stroke-opacity="0.8" stroke-dasharray="4,2"
class="zr0-cls-0"></path>
-<path d="M360.5 60L360.5 330" fill="none" pointer-events="visible"
stroke="#E0E6F1" stroke-opacity="0.8" stroke-dasharray="4,2"
class="zr0-cls-0"></path>
-<path d="M420.5 60L420.5 330" fill="none" pointer-events="visible"
stroke="#E0E6F1" stroke-opacity="0.8" stroke-dasharray="4,2"
class="zr0-cls-0"></path>
-<path d="M480.5 60L480.5 330" fill="none" pointer-events="visible"
stroke="#E0E6F1" stroke-opacity="0.8" stroke-dasharray="4,2"
class="zr0-cls-0"></path>
-<path d="M540.5 60L540.5 330" fill="none" pointer-events="visible"
stroke="#E0E6F1" stroke-opacity="0.8" stroke-dasharray="4,2"
class="zr0-cls-0"></path>
-<path d="M60.5 330L60.5 60" fill="none" pointer-events="visible" stroke="#ccc"
stroke-linecap="round" class="zr0-cls-0"></path>
+<path d="M60 330.5L540 330.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr2-cls-8"></path>
+<path d="M60 262.5L540 262.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr2-cls-8"></path>
+<path d="M60 195.5L540 195.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr2-cls-8"></path>
+<path d="M60 127.5L540 127.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr2-cls-8"></path>
+<path d="M60 60.5L540 60.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr2-cls-8"></path>
+<path d="M60.5 60L60.5 330" fill="none" pointer-events="visible"
stroke="#E0E6F1" stroke-opacity="0.8" stroke-dasharray="4,2"
class="zr2-cls-8"></path>
+<path d="M60.5 60L60.5 330" fill="none" pointer-events="visible"
stroke="#E0E6F1" stroke-opacity="0.8" stroke-dasharray="4,2"
class="zr2-cls-8"></path>
+<path d="M120.5 60L120.5 330" fill="none" pointer-events="visible"
stroke="#E0E6F1" stroke-opacity="0.8" stroke-dasharray="4,2"
class="zr2-cls-8"></path>
+<path d="M180.5 60L180.5 330" fill="none" pointer-events="visible"
stroke="#E0E6F1" stroke-opacity="0.8" stroke-dasharray="4,2"
class="zr2-cls-8"></path>
+<path d="M240.5 60L240.5 330" fill="none" pointer-events="visible"
stroke="#E0E6F1" stroke-opacity="0.8" stroke-dasharray="4,2"
class="zr2-cls-8"></path>
+<path d="M300.5 60L300.5 330" fill="none" pointer-events="visible"
stroke="#E0E6F1" stroke-opacity="0.8" stroke-dasharray="4,2"
class="zr2-cls-8"></path>
+<path d="M360.5 60L360.5 330" fill="none" pointer-events="visible"
stroke="#E0E6F1" stroke-opacity="0.8" stroke-dasharray="4,2"
class="zr2-cls-8"></path>
+<path d="M420.5 60L420.5 330" fill="none" pointer-events="visible"
stroke="#E0E6F1" stroke-opacity="0.8" stroke-dasharray="4,2"
class="zr2-cls-8"></path>
+<path d="M480.5 60L480.5 330" fill="none" pointer-events="visible"
stroke="#E0E6F1" stroke-opacity="0.8" stroke-dasharray="4,2"
class="zr2-cls-8"></path>
+<path d="M540.5 60L540.5 330" fill="none" pointer-events="visible"
stroke="#E0E6F1" stroke-opacity="0.8" stroke-dasharray="4,2"
class="zr2-cls-8"></path>
+<path d="M60.5 330L60.5 60" fill="none" pointer-events="visible" stroke="#ccc"
stroke-linecap="round" class="zr2-cls-8"></path>
<text dominant-baseline="central" text-anchor="start" style="font: normal
normal 12px sans-serif" y="6" transform="translate(60 338)"
fill="#c6c6c6">03:00</text>
<text dominant-baseline="central" text-anchor="start" style="font: normal
normal 12px sans-serif" y="6" transform="translate(120 338)"
fill="#c6c6c6">04:00</text>
<text dominant-baseline="central" text-anchor="start" style="font: normal
normal 12px sans-serif" y="6" transform="translate(180 338)"
fill="#c6c6c6">05:00</text>
@@ -24,33 +24,33 @@
<text dominant-baseline="central" text-anchor="start" style="font: normal
normal 12px sans-serif" y="6" transform="translate(360 338)"
fill="#c6c6c6">08:00</text>
<text dominant-baseline="central" text-anchor="start" style="font: normal
normal 12px sans-serif" y="6" transform="translate(420 338)"
fill="#c6c6c6">09:00</text>
<text dominant-baseline="central" text-anchor="start" style="font: normal
normal 12px sans-serif" y="6" transform="translate(480 338)"
fill="#c6c6c6">10:00</text>
-<path d="M79.5 220A9.5 9.5 0 0 1 89 229.5L89 247A9.5 9.5 0 0 1 79.5 256.5A9.5
9.5 0 0 1 70 247L70 229.5A9.5 9.5 0 0 1 79.5 220M95 287.5L114 287.5A10 10 0 0 1
124 297.5L124 314A10 10 0 0 1 114 324L95 324A10 10 0 0 1 85 314L85 297.5A10 10
0 0 1 95 287.5M85 262.5A6 6 0 0 0 79 256.5L85 254.5L85 262.5ZM89 281.5A6 6 0 0
0 95 287.5L89 289.5L89 281.5ZM89 297.5l-4 0l0 -51l4 0ZM130 220L148 220A10 10 0
0 1 158 230L158 246.5A10 10 0 0 1 148 256.5L130 256.5A10 10 0 0 1 120 246.5L120
230A10 10 0 0 1 1 [...]
-<path d="M252 87A1.5 1.5 0 0 1 253.5 88.5L253.5 118A1.5 1.5 0 0 1 252
119.5A1.5 1.5 0 0 1 250.5 118L250.5 88.5A1.5 1.5 0 0 1 252 87" fill="#EF8872"
ecmeta_series_index="0" ecmeta_data_index="0" ecmeta_ssr_type="chart"
class="zr0-cls-1"></path>
-<path d="M256.5 87A1.5 1.5 0 0 1 258 88.5L258 118A1.5 1.5 0 0 1 256.5
119.5A1.5 1.5 0 0 1 255 118L255 88.5A1.5 1.5 0 0 1 256.5 87" fill="#EF8872"
ecmeta_series_index="0" ecmeta_data_index="1" ecmeta_ssr_type="chart"
class="zr0-cls-1"></path>
-<path d="M419.5 87A1.5 1.5 0 0 1 421 88.5L421 118A1.5 1.5 0 0 1 419.5
119.5A1.5 1.5 0 0 1 418 118L418 88.5A1.5 1.5 0 0 1 419.5 87" fill="#EF8872"
ecmeta_series_index="0" ecmeta_data_index="2" ecmeta_ssr_type="chart"
class="zr0-cls-1"></path>
-<path d="M233 154.5L244 154.5A8 8 0 0 1 252 162.5L252 179A8 8 0 0 1 244
187L233 187A8 8 0 0 1 225 179L225 162.5A8 8 0 0 1 233 154.5" fill="#59AAE1"
ecmeta_series_index="0" ecmeta_data_index="3" ecmeta_ssr_type="chart"
class="zr0-cls-2"></path>
-<path d="M345 154.5L348 154.5A8 8 0 0 1 356 162.5L356 179A8 8 0 0 1 348
187L345 187A8 8 0 0 1 337 179L337 162.5A8 8 0 0 1 345 154.5" fill="#59AAE1"
ecmeta_series_index="0" ecmeta_data_index="4" ecmeta_ssr_type="chart"
class="zr0-cls-2"></path>
-<path d="M417.5 154.5A1.5 1.5 0 0 1 419 156L419 185.5A1.5 1.5 0 0 1 417.5
187A1.5 1.5 0 0 1 416 185.5L416 156A1.5 1.5 0 0 1 417.5 154.5" fill="#59AAE1"
ecmeta_series_index="0" ecmeta_data_index="5" ecmeta_ssr_type="chart"
class="zr0-cls-2"></path>
-<path d="M436 154.5L441 154.5A8 8 0 0 1 449 162.5L449 179A8 8 0 0 1 441
187L436 187A8 8 0 0 1 428 179L428 162.5A8 8 0 0 1 436 154.5" fill="#59AAE1"
ecmeta_series_index="0" ecmeta_data_index="6" ecmeta_ssr_type="chart"
class="zr0-cls-2"></path>
-<path d="M233 154.5L244 154.5A8 8 0 0 1 252 162.5L252 179A8 8 0 0 1 244
187L233 187A8 8 0 0 1 225 179L225 162.5A8 8 0 0 1 233 154.5" fill="#59AAE1"
ecmeta_series_index="0" ecmeta_data_index="7" ecmeta_ssr_type="chart"
class="zr0-cls-2"></path>
-<path d="M79.5 222A7.5 7.5 0 0 1 87 229.5L87 247A7.5 7.5 0 0 1 79.5 254.5A7.5
7.5 0 0 1 72 247L72 229.5A7.5 7.5 0 0 1 79.5 222" fill="#3478F6"
ecmeta_series_index="0" ecmeta_data_index="8" ecmeta_ssr_type="chart"
class="zr0-cls-3"></path>
-<path d="M130 222L148 222A8 8 0 0 1 156 230L156 246.5A8 8 0 0 1 148 254.5L130
254.5A8 8 0 0 1 122 246.5L122 230A8 8 0 0 1 130 222" fill="#3478F6"
ecmeta_series_index="0" ecmeta_data_index="9" ecmeta_ssr_type="chart"
class="zr0-cls-3"></path>
-<path d="M164 222A4 4 0 0 1 168 226L168 250.5A4 4 0 0 1 164 254.5A4 4 0 0 1
160 250.5L160 226A4 4 0 0 1 164 222" fill="#3478F6" ecmeta_series_index="0"
ecmeta_data_index="10" ecmeta_ssr_type="chart" class="zr0-cls-3"></path>
-<path d="M185 222L217 222A8 8 0 0 1 225 230L225 246.5A8 8 0 0 1 217 254.5L185
254.5A8 8 0 0 1 177 246.5L177 230A8 8 0 0 1 185 222" fill="#3478F6"
ecmeta_series_index="0" ecmeta_data_index="11" ecmeta_ssr_type="chart"
class="zr0-cls-3"></path>
-<path d="M253.5 222A1.5 1.5 0 0 1 255 223.5L255 253A1.5 1.5 0 0 1 253.5
254.5A1.5 1.5 0 0 1 252 253L252 223.5A1.5 1.5 0 0 1 253.5 222" fill="#3478F6"
ecmeta_series_index="0" ecmeta_data_index="12" ecmeta_ssr_type="chart"
class="zr0-cls-3"></path>
-<path d="M266 222L329 222A8 8 0 0 1 337 230L337 246.5A8 8 0 0 1 329 254.5L266
254.5A8 8 0 0 1 258 246.5L258 230A8 8 0 0 1 266 222" fill="#3478F6"
ecmeta_series_index="0" ecmeta_data_index="13" ecmeta_ssr_type="chart"
class="zr0-cls-3"></path>
-<path d="M364 222L408 222A8 8 0 0 1 416 230L416 246.5A8 8 0 0 1 408 254.5L364
254.5A8 8 0 0 1 356 246.5L356 230A8 8 0 0 1 364 222" fill="#3478F6"
ecmeta_series_index="0" ecmeta_data_index="14" ecmeta_ssr_type="chart"
class="zr0-cls-3"></path>
-<path d="M424 222A4 4 0 0 1 428 226L428 250.5A4 4 0 0 1 424 254.5A4 4 0 0 1
420 250.5L420 226A4 4 0 0 1 424 222" fill="#3478F6" ecmeta_series_index="0"
ecmeta_data_index="15" ecmeta_ssr_type="chart" class="zr0-cls-3"></path>
-<path d="M457 222L513 222A8 8 0 0 1 521 230L521 246.5A8 8 0 0 1 513 254.5L457
254.5A8 8 0 0 1 449 246.5L449 230A8 8 0 0 1 457 222" fill="#3478F6"
ecmeta_series_index="0" ecmeta_data_index="16" ecmeta_ssr_type="chart"
class="zr0-cls-3"></path>
-<path d="M95 289.5L114 289.5A8 8 0 0 1 122 297.5L122 314A8 8 0 0 1 114 322L95
322A8 8 0 0 1 87 314L87 297.5A8 8 0 0 1 95 289.5" fill="#35349D"
ecmeta_series_index="0" ecmeta_data_index="17" ecmeta_ssr_type="chart"
class="zr0-cls-4"></path>
-<path d="M158 289.5A2 2 0 0 1 160 291.5L160 320A2 2 0 0 1 158 322A2 2 0 0 1
156 320L156 291.5A2 2 0 0 1 158 289.5" fill="#35349D" ecmeta_series_index="0"
ecmeta_data_index="18" ecmeta_ssr_type="chart" class="zr0-cls-4"></path>
-<path d="M172.5 289.5A4.5 4.5 0 0 1 177 294L177 317.5A4.5 4.5 0 0 1 172.5
322A4.5 4.5 0 0 1 168 317.5L168 294A4.5 4.5 0 0 1 172.5 289.5" fill="#35349D"
ecmeta_series_index="0" ecmeta_data_index="19" ecmeta_ssr_type="chart"
class="zr0-cls-4"></path>
+<path d="M79.5 220A9.5 9.5 0 0 1 89 229.5L89 247A9.5 9.5 0 0 1 79.5 256.5A9.5
9.5 0 0 1 70 247L70 229.5A9.5 9.5 0 0 1 79.5 220M95 287.5L114 287.5A10 10 0 0 1
124 297.5L124 314A10 10 0 0 1 114 324L95 324A10 10 0 0 1 85 314L85 297.5A10 10
0 0 1 95 287.5M85 262.5A6 6 0 0 0 79 256.5L85 254.5L85 262.5ZM89 281.5A6 6 0 0
0 95 287.5L89 289.5L89 281.5ZM89 297.5l-4 0l0 -51l4 0ZM130 220L148 220A10 10 0
0 1 158 230L158 246.5A10 10 0 0 1 148 256.5L130 256.5A10 10 0 0 1 120 246.5L120
230A10 10 0 0 1 1 [...]
+<path d="M252 87A1.5 1.5 0 0 1 253.5 88.5L253.5 118A1.5 1.5 0 0 1 252
119.5A1.5 1.5 0 0 1 250.5 118L250.5 88.5A1.5 1.5 0 0 1 252 87" fill="#EF8872"
ecmeta_series_index="0" ecmeta_data_index="0" ecmeta_ssr_type="chart"
class="zr2-cls-9"></path>
+<path d="M256.5 87A1.5 1.5 0 0 1 258 88.5L258 118A1.5 1.5 0 0 1 256.5
119.5A1.5 1.5 0 0 1 255 118L255 88.5A1.5 1.5 0 0 1 256.5 87" fill="#EF8872"
ecmeta_series_index="0" ecmeta_data_index="1" ecmeta_ssr_type="chart"
class="zr2-cls-9"></path>
+<path d="M419.5 87A1.5 1.5 0 0 1 421 88.5L421 118A1.5 1.5 0 0 1 419.5
119.5A1.5 1.5 0 0 1 418 118L418 88.5A1.5 1.5 0 0 1 419.5 87" fill="#EF8872"
ecmeta_series_index="0" ecmeta_data_index="2" ecmeta_ssr_type="chart"
class="zr2-cls-9"></path>
+<path d="M233 154.5L244 154.5A8 8 0 0 1 252 162.5L252 179A8 8 0 0 1 244
187L233 187A8 8 0 0 1 225 179L225 162.5A8 8 0 0 1 233 154.5" fill="#59AAE1"
ecmeta_series_index="0" ecmeta_data_index="3" ecmeta_ssr_type="chart"
class="zr2-cls-10"></path>
+<path d="M345 154.5L348 154.5A8 8 0 0 1 356 162.5L356 179A8 8 0 0 1 348
187L345 187A8 8 0 0 1 337 179L337 162.5A8 8 0 0 1 345 154.5" fill="#59AAE1"
ecmeta_series_index="0" ecmeta_data_index="4" ecmeta_ssr_type="chart"
class="zr2-cls-10"></path>
+<path d="M417.5 154.5A1.5 1.5 0 0 1 419 156L419 185.5A1.5 1.5 0 0 1 417.5
187A1.5 1.5 0 0 1 416 185.5L416 156A1.5 1.5 0 0 1 417.5 154.5" fill="#59AAE1"
ecmeta_series_index="0" ecmeta_data_index="5" ecmeta_ssr_type="chart"
class="zr2-cls-10"></path>
+<path d="M436 154.5L441 154.5A8 8 0 0 1 449 162.5L449 179A8 8 0 0 1 441
187L436 187A8 8 0 0 1 428 179L428 162.5A8 8 0 0 1 436 154.5" fill="#59AAE1"
ecmeta_series_index="0" ecmeta_data_index="6" ecmeta_ssr_type="chart"
class="zr2-cls-10"></path>
+<path d="M233 154.5L244 154.5A8 8 0 0 1 252 162.5L252 179A8 8 0 0 1 244
187L233 187A8 8 0 0 1 225 179L225 162.5A8 8 0 0 1 233 154.5" fill="#59AAE1"
ecmeta_series_index="0" ecmeta_data_index="7" ecmeta_ssr_type="chart"
class="zr2-cls-10"></path>
+<path d="M79.5 222A7.5 7.5 0 0 1 87 229.5L87 247A7.5 7.5 0 0 1 79.5 254.5A7.5
7.5 0 0 1 72 247L72 229.5A7.5 7.5 0 0 1 79.5 222" fill="#3478F6"
ecmeta_series_index="0" ecmeta_data_index="8" ecmeta_ssr_type="chart"
class="zr2-cls-11"></path>
+<path d="M130 222L148 222A8 8 0 0 1 156 230L156 246.5A8 8 0 0 1 148 254.5L130
254.5A8 8 0 0 1 122 246.5L122 230A8 8 0 0 1 130 222" fill="#3478F6"
ecmeta_series_index="0" ecmeta_data_index="9" ecmeta_ssr_type="chart"
class="zr2-cls-11"></path>
+<path d="M164 222A4 4 0 0 1 168 226L168 250.5A4 4 0 0 1 164 254.5A4 4 0 0 1
160 250.5L160 226A4 4 0 0 1 164 222" fill="#3478F6" ecmeta_series_index="0"
ecmeta_data_index="10" ecmeta_ssr_type="chart" class="zr2-cls-11"></path>
+<path d="M185 222L217 222A8 8 0 0 1 225 230L225 246.5A8 8 0 0 1 217 254.5L185
254.5A8 8 0 0 1 177 246.5L177 230A8 8 0 0 1 185 222" fill="#3478F6"
ecmeta_series_index="0" ecmeta_data_index="11" ecmeta_ssr_type="chart"
class="zr2-cls-11"></path>
+<path d="M253.5 222A1.5 1.5 0 0 1 255 223.5L255 253A1.5 1.5 0 0 1 253.5
254.5A1.5 1.5 0 0 1 252 253L252 223.5A1.5 1.5 0 0 1 253.5 222" fill="#3478F6"
ecmeta_series_index="0" ecmeta_data_index="12" ecmeta_ssr_type="chart"
class="zr2-cls-11"></path>
+<path d="M266 222L329 222A8 8 0 0 1 337 230L337 246.5A8 8 0 0 1 329 254.5L266
254.5A8 8 0 0 1 258 246.5L258 230A8 8 0 0 1 266 222" fill="#3478F6"
ecmeta_series_index="0" ecmeta_data_index="13" ecmeta_ssr_type="chart"
class="zr2-cls-11"></path>
+<path d="M364 222L408 222A8 8 0 0 1 416 230L416 246.5A8 8 0 0 1 408 254.5L364
254.5A8 8 0 0 1 356 246.5L356 230A8 8 0 0 1 364 222" fill="#3478F6"
ecmeta_series_index="0" ecmeta_data_index="14" ecmeta_ssr_type="chart"
class="zr2-cls-11"></path>
+<path d="M424 222A4 4 0 0 1 428 226L428 250.5A4 4 0 0 1 424 254.5A4 4 0 0 1
420 250.5L420 226A4 4 0 0 1 424 222" fill="#3478F6" ecmeta_series_index="0"
ecmeta_data_index="15" ecmeta_ssr_type="chart" class="zr2-cls-11"></path>
+<path d="M457 222L513 222A8 8 0 0 1 521 230L521 246.5A8 8 0 0 1 513 254.5L457
254.5A8 8 0 0 1 449 246.5L449 230A8 8 0 0 1 457 222" fill="#3478F6"
ecmeta_series_index="0" ecmeta_data_index="16" ecmeta_ssr_type="chart"
class="zr2-cls-11"></path>
+<path d="M95 289.5L114 289.5A8 8 0 0 1 122 297.5L122 314A8 8 0 0 1 114 322L95
322A8 8 0 0 1 87 314L87 297.5A8 8 0 0 1 95 289.5" fill="#35349D"
ecmeta_series_index="0" ecmeta_data_index="17" ecmeta_ssr_type="chart"
class="zr2-cls-12"></path>
+<path d="M158 289.5A2 2 0 0 1 160 291.5L160 320A2 2 0 0 1 158 322A2 2 0 0 1
156 320L156 291.5A2 2 0 0 1 158 289.5" fill="#35349D" ecmeta_series_index="0"
ecmeta_data_index="18" ecmeta_ssr_type="chart" class="zr2-cls-12"></path>
+<path d="M172.5 289.5A4.5 4.5 0 0 1 177 294L177 317.5A4.5 4.5 0 0 1 172.5
322A4.5 4.5 0 0 1 168 317.5L168 294A4.5 4.5 0 0 1 172.5 289.5" fill="#35349D"
ecmeta_series_index="0" ecmeta_data_index="19" ecmeta_ssr_type="chart"
class="zr2-cls-12"></path>
<text dominant-baseline="central" text-anchor="start" style="font: 12px
sans-serif" x="65" y="73" fill="#8A8A8A">Awake</text>
<text dominant-baseline="central" text-anchor="start" style="font: 12px
sans-serif" x="65" y="140.5" fill="#8A8A8A">REM</text>
<text dominant-baseline="central" text-anchor="start" style="font: 12px
sans-serif" x="65" y="208" fill="#8A8A8A">Core</text>
<text dominant-baseline="central" text-anchor="start" style="font: 12px
sans-serif" x="65" y="275.5" fill="#8A8A8A">Deep</text>
<defs >
-<linearGradient gradientUnits="objectBoundingBox" x1="0" y1="0" x2="0" y2="1"
id="zr0-g0">
+<linearGradient gradientUnits="objectBoundingBox" x1="0" y1="0" x2="0" y2="1"
id="zr2-g0">
<stop offset="12.5%" stop-color="#EF8872"></stop>
<stop offset="37.5%" stop-color="#59AAE1"></stop>
<stop offset="62.5%" stop-color="#3478F6"></stop>
@@ -58,22 +58,22 @@
</linearGradient>
</defs>
<style ><![CDATA[
-.zr0-cls-0:hover {
+.zr2-cls-8:hover {
pointer-events:none;
}
-.zr0-cls-1:hover {
+.zr2-cls-9:hover {
cursor:pointer;
fill:rgba(255,149,125,1);
}
-.zr0-cls-2:hover {
+.zr2-cls-10:hover {
cursor:pointer;
fill:rgba(97,187,247,1);
}
-.zr0-cls-3:hover {
+.zr2-cls-11:hover {
cursor:pointer;
fill:rgba(57,132,255,1);
}
-.zr0-cls-4:hover {
+.zr2-cls-12:hover {
cursor:pointer;
fill:rgba(58,57,172,1);
}
diff --git a/screenshots/violin.svg b/screenshots/violin.svg
index 508ed0e..0a4f161 100644
--- a/screenshots/violin.svg
+++ b/screenshots/violin.svg
@@ -1,21 +1,21 @@
<svg width="600" height="400" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" baseProfile="full"
viewBox="0 0 600 400">
<rect width="600" height="400" x="0" y="0" fill="#fff"></rect>
-<path d="M60 330.5L540 330.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr0-cls-0"></path>
-<path d="M60 285.5L540 285.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr0-cls-0"></path>
-<path d="M60 240.5L540 240.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr0-cls-0"></path>
-<path d="M60 195.5L540 195.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr0-cls-0"></path>
-<path d="M60 150.5L540 150.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr0-cls-0"></path>
-<path d="M60 105.5L540 105.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr0-cls-0"></path>
-<path d="M60 60.5L540 60.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr0-cls-0"></path>
-<path d="M60 330.5L540 330.5" fill="none" pointer-events="visible"
stroke="#6E7079" stroke-linecap="round" class="zr0-cls-0"></path>
-<path d="M60.5 330L60.5 335" fill="none" pointer-events="visible"
stroke="#6E7079" class="zr0-cls-0"></path>
-<path d="M128.5 330L128.5 335" fill="none" pointer-events="visible"
stroke="#6E7079" class="zr0-cls-0"></path>
-<path d="M197.5 330L197.5 335" fill="none" pointer-events="visible"
stroke="#6E7079" class="zr0-cls-0"></path>
-<path d="M265.5 330L265.5 335" fill="none" pointer-events="visible"
stroke="#6E7079" class="zr0-cls-0"></path>
-<path d="M334.5 330L334.5 335" fill="none" pointer-events="visible"
stroke="#6E7079" class="zr0-cls-0"></path>
-<path d="M403.5 330L403.5 335" fill="none" pointer-events="visible"
stroke="#6E7079" class="zr0-cls-0"></path>
-<path d="M471.5 330L471.5 335" fill="none" pointer-events="visible"
stroke="#6E7079" class="zr0-cls-0"></path>
-<path d="M540.5 330L540.5 335" fill="none" pointer-events="visible"
stroke="#6E7079" class="zr0-cls-0"></path>
+<path d="M60 330.5L540 330.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr3-cls-13"></path>
+<path d="M60 285.5L540 285.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr3-cls-13"></path>
+<path d="M60 240.5L540 240.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr3-cls-13"></path>
+<path d="M60 195.5L540 195.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr3-cls-13"></path>
+<path d="M60 150.5L540 150.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr3-cls-13"></path>
+<path d="M60 105.5L540 105.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr3-cls-13"></path>
+<path d="M60 60.5L540 60.5" fill="none" pointer-events="visible"
stroke="#E0E6F1" class="zr3-cls-13"></path>
+<path d="M60 330.5L540 330.5" fill="none" pointer-events="visible"
stroke="#6E7079" stroke-linecap="round" class="zr3-cls-13"></path>
+<path d="M60.5 330L60.5 335" fill="none" pointer-events="visible"
stroke="#6E7079" class="zr3-cls-13"></path>
+<path d="M128.5 330L128.5 335" fill="none" pointer-events="visible"
stroke="#6E7079" class="zr3-cls-13"></path>
+<path d="M197.5 330L197.5 335" fill="none" pointer-events="visible"
stroke="#6E7079" class="zr3-cls-13"></path>
+<path d="M265.5 330L265.5 335" fill="none" pointer-events="visible"
stroke="#6E7079" class="zr3-cls-13"></path>
+<path d="M334.5 330L334.5 335" fill="none" pointer-events="visible"
stroke="#6E7079" class="zr3-cls-13"></path>
+<path d="M403.5 330L403.5 335" fill="none" pointer-events="visible"
stroke="#6E7079" class="zr3-cls-13"></path>
+<path d="M471.5 330L471.5 335" fill="none" pointer-events="visible"
stroke="#6E7079" class="zr3-cls-13"></path>
+<path d="M540.5 330L540.5 335" fill="none" pointer-events="visible"
stroke="#6E7079" class="zr3-cls-13"></path>
<text dominant-baseline="central" text-anchor="end"
style="font-size:12px;font-family:sans-serif;" transform="translate(52 330)"
fill="#6E7079">0</text>
<text dominant-baseline="central" text-anchor="end"
style="font-size:12px;font-family:sans-serif;" transform="translate(52 285)"
fill="#6E7079">1</text>
<text dominant-baseline="central" text-anchor="end"
style="font-size:12px;font-family:sans-serif;" transform="translate(52 240)"
fill="#6E7079">2</text>
@@ -30,247 +30,147 @@
<text dominant-baseline="central" text-anchor="middle"
style="font-size:12px;font-family:sans-serif;" y="6"
transform="translate(368.5714 338)" fill="#6E7079">Fri</text>
<text dominant-baseline="central" text-anchor="middle"
style="font-size:12px;font-family:sans-serif;" y="6"
transform="translate(437.1429 338)" fill="#6E7079">Sat</text>
<text dominant-baseline="central" text-anchor="middle"
style="font-size:12px;font-family:sans-serif;" y="6"
transform="translate(505.7143 338)" fill="#6E7079">Sun</text>
-<circle cx="94.3" cy="159.1" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="0" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<polygon points="94.4 280 94.6 275.5 95 270.9 95.9 266.4 96.9 261.8 98.3 257.3
99.7 252.7 101.1 248.2 102.4 243.6 103.6 239.1 104.8 234.5 106.2 230 107.6
225.5 108.9 220.9 110.2 216.4 111.3 211.8 112 207.3 112.5 202.7 113 198.2 113.2
193.6 113 189.1 112.4 184.5 112.1 180 112.2 175.5 112.2 170.9 112.4 166.4 112.2
161.8 111.7 157.3 110.9 152.7 110.3 148.2 109.6 143.6 109 139.1 108.2 134.5
107.3 130 106.5 125.5 105.5 120.9 104.3 116.4 103.1 111.8 102.1 107.3 101.1
102.7 99.9 98.2 98.7 93.6 [...]
-<circle cx="94.3" cy="155.4" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="1" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="133.1" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="2" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="233.3" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="3" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="206.8" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="4" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="192.6" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="5" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="177.9" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="6" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="198" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="7" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="105.1" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="8" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="216.5" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="9" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="188.7" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="10" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="159.7" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="11" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="230.6" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="12" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="177" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="13" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="206" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="14" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="127.8" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="15" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="212.1" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="16" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="138.4" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="17" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="140.2" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="18" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="224.3" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="19" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="216" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="20" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="170.9" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="21" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="164.3" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="22" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="150.6" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="23" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="182.6" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="24" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="105.6" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="25" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="226.5" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="26" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="199.6" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="27" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="226.1" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="28" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="125.5" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="29" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="109.1" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="30" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="140.7" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="31" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="158.5" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="32" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="135" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="33" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="190.8" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="34" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="154.8" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="35" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="138.6" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="36" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="174.6" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="37" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="188.2" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="38" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="130.3" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="39" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="224.8" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="40" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="224.7" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="41" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="175.8" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="42" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="139" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="43" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="216.8" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="44" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="106.8" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="45" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="187.5" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="46" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="217.4" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="47" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="174.9" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="48" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="190.1" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="49" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="157.4" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="50" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="221.6" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="51" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="106.5" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="52" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="184.3" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="53" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="94.3" cy="237.8" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="54" ecmeta_ssr_type="chart" class="zr0-cls-1"></circle>
-<circle cx="162.9" cy="138.8" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="55" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<polygon points="162.9 243.6 163.2 239.1 163.5 234.5 163.9 230 164.6 225.5
165.3 220.9 166.3 216.4 167.4 211.8 168.3 207.3 169.6 202.7 170.7 198.2 171.6
193.6 172.4 189.1 173.2 184.5 174.1 180 175.1 175.5 176.4 170.9 177.7 166.4
178.9 161.8 180 157.3 180.9 152.7 181.7 148.2 182.4 143.6 183.1 139.1 183.6
134.5 183.8 130 184 125.5 184.4 120.9 184.5 116.4 184.4 111.8 183.8 107.3 182.7
102.7 181.2 98.2 179.5 93.6 177.6 89.1 175.7 84.5 174.1 80 172.5 75.5 171 70.9
169.7 66.4 168.4 61.8 167.2 [...]
-<circle cx="162.9" cy="104.6" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="56" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="136.6" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="57" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="201.1" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="58" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="129.3" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="59" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="121.8" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="60" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="114.3" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="61" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="173.2" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="62" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="180.9" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="63" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="115.3" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="64" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="114.9" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="65" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="96.6" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="66" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="98.2" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="67" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="126.2" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="68" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="82.2" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="69" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="146.8" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="70" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="191.2" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="71" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="175.5" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="72" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="128.9" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="73" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="185" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="74" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="162.4" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="75" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="84.5" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="76" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="182.8" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="77" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="78.2" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="78" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="195.5" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="79" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="108" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="80" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="158" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="81" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="143.1" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="82" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="98.3" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="83" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="135.5" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="84" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="79.4" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="85" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="132" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="86" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="80.8" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="87" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="118" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="88" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="131.3" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="89" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="124" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="90" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="98.8" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="91" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="162.6" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="92" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="80.1" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="93" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="140.9" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="94" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="130.1" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="95" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="106.8" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="96" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="173.6" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="97" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="122.9" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="98" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="162.9" cy="164.9" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="99" ecmeta_ssr_type="chart" class="zr0-cls-2"></circle>
-<circle cx="231.4" cy="273.5" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="100" ecmeta_ssr_type="chart" class="zr0-cls-3"></circle>
-<polygon points="232.9 320.9 235 316.4 237.5 311.8 239.8 307.3 241.7 302.7
243.4 298.2 245.8 293.6 248.8 289.1 252.1 284.5 254.7 280 256.8 275.5 258.2
270.9 259 266.4 259.1 261.8 258.6 257.3 257.5 252.7 255.8 248.2 253.4 243.6
250.4 239.1 247.1 234.5 244.5 230 242.7 225.5 242.4 220.9 241.6 216.4 240.3
211.8 238.6 207.3 237.9 202.7 238 198.2 238.5 193.6 238.9 189.1 239.1 184.5
239.1 180 239 175.5 238.8 170.9 238.3 166.4 237.8 161.8 237 157.3 236.1 152.7
235.1 148.2 233.8 143.6 232.5 139.1 [...]
-<circle cx="231.4" cy="246.1" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="101" ecmeta_ssr_type="chart" class="zr0-cls-3"></circle>
-<circle cx="231.4" cy="280.5" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="102" ecmeta_ssr_type="chart" class="zr0-cls-3"></circle>
-<circle cx="231.4" cy="252" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="103" ecmeta_ssr_type="chart" class="zr0-cls-3"></circle>
-<circle cx="231.4" cy="180.9" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="104" ecmeta_ssr_type="chart" class="zr0-cls-3"></circle>
-<circle cx="300" cy="133.1" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="105" ecmeta_ssr_type="chart" class="zr0-cls-4"></circle>
-<polygon points="300.1 284.5 300.6 280 301.1 275.5 301.6 270.9 302 266.4 302.6
261.8 303.4 257.3 304.7 252.7 305.8 248.2 306.7 243.6 307.5 239.1 308 234.5
308.7 230 309.1 225.5 310.1 220.9 311.3 216.4 312.1 211.8 313.4 207.3 314.8
202.7 316 198.2 317.2 193.6 318.3 189.1 319.3 184.5 320 180 320.4 175.5 320.9
170.9 321.4 166.4 322.1 161.8 322.3 157.3 322.2 152.7 321.6 148.2 320.4 143.6
318.9 139.1 316.9 134.5 315.3 130 313.5 125.5 311.5 120.9 310 116.4 308.7 111.8
307.4 107.3 306.2 102.7 3 [...]
-<circle cx="300" cy="175.7" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="106" ecmeta_ssr_type="chart" class="zr0-cls-4"></circle>
-<circle cx="300" cy="163.3" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="107" ecmeta_ssr_type="chart" class="zr0-cls-4"></circle>
-<circle cx="300" cy="221.8" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="108" ecmeta_ssr_type="chart" class="zr0-cls-4"></circle>
-<circle cx="300" cy="241.3" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="109" ecmeta_ssr_type="chart" class="zr0-cls-4"></circle>
-<circle cx="300" cy="111.6" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="110" ecmeta_ssr_type="chart" class="zr0-cls-4"></circle>
-<circle cx="300" cy="179.7" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="111" ecmeta_ssr_type="chart" class="zr0-cls-4"></circle>
-<circle cx="300" cy="131.5" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="112" ecmeta_ssr_type="chart" class="zr0-cls-4"></circle>
-<circle cx="300" cy="165.6" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="113" ecmeta_ssr_type="chart" class="zr0-cls-4"></circle>
-<circle cx="300" cy="213.5" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="114" ecmeta_ssr_type="chart" class="zr0-cls-4"></circle>
-<circle cx="300" cy="144.9" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="115" ecmeta_ssr_type="chart" class="zr0-cls-4"></circle>
-<circle cx="300" cy="214.7" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="116" ecmeta_ssr_type="chart" class="zr0-cls-4"></circle>
-<circle cx="300" cy="180.3" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="117" ecmeta_ssr_type="chart" class="zr0-cls-4"></circle>
-<circle cx="300" cy="167.2" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="118" ecmeta_ssr_type="chart" class="zr0-cls-4"></circle>
-<circle cx="300" cy="211.1" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="119" ecmeta_ssr_type="chart" class="zr0-cls-4"></circle>
-<circle cx="300" cy="179.8" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="120" ecmeta_ssr_type="chart" class="zr0-cls-4"></circle>
-<circle cx="300" cy="155" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="121" ecmeta_ssr_type="chart" class="zr0-cls-4"></circle>
-<circle cx="300" cy="119.9" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="122" ecmeta_ssr_type="chart" class="zr0-cls-4"></circle>
-<circle cx="300" cy="155.3" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="123" ecmeta_ssr_type="chart" class="zr0-cls-4"></circle>
-<circle cx="300" cy="162" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="124" ecmeta_ssr_type="chart" class="zr0-cls-4"></circle>
-<circle cx="300" cy="167.7" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="125" ecmeta_ssr_type="chart" class="zr0-cls-4"></circle>
-<circle cx="300" cy="237.3" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="126" ecmeta_ssr_type="chart" class="zr0-cls-4"></circle>
-<circle cx="300" cy="189" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="127" ecmeta_ssr_type="chart" class="zr0-cls-4"></circle>
-<circle cx="300" cy="127.2" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="128" ecmeta_ssr_type="chart" class="zr0-cls-4"></circle>
-<circle cx="300" cy="141.3" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="129" ecmeta_ssr_type="chart" class="zr0-cls-4"></circle>
-<circle cx="368.6" cy="202.7" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="130" ecmeta_ssr_type="chart" class="zr0-cls-5"></circle>
-<polygon points="368.9 252.7 369.3 248.2 370.4 243.6 371.4 239.1 372.2 234.5
373 230 373.8 225.5 374.6 220.9 375.7 216.4 377 211.8 378 207.3 378.7 202.7
379.3 198.2 379.9 193.6 380.6 189.1 381.7 184.5 382.4 180 382.9 175.5 383.2
170.9 383.3 166.4 383.2 161.8 383.5 157.3 384.2 152.7 384.8 148.2 385.2 143.6
385.4 139.1 385.7 134.5 386.1 130 386.9 125.5 387.5 120.9 387.6 116.4 387.2
111.8 386.4 107.3 385.2 102.7 384.3 98.2 383.5 93.6 382.4 89.1 381.2 84.5 379.9
80 378.3 75.5 376.6 70.9 375. [...]
-<circle cx="368.6" cy="92.9" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="131" ecmeta_ssr_type="chart" class="zr0-cls-5"></circle>
-<circle cx="368.6" cy="128.7" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="132" ecmeta_ssr_type="chart" class="zr0-cls-5"></circle>
-<circle cx="368.6" cy="101.1" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="133" ecmeta_ssr_type="chart" class="zr0-cls-5"></circle>
-<circle cx="368.6" cy="147.1" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="134" ecmeta_ssr_type="chart" class="zr0-cls-5"></circle>
-<circle cx="368.6" cy="89.9" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="135" ecmeta_ssr_type="chart" class="zr0-cls-5"></circle>
-<circle cx="368.6" cy="110.1" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="136" ecmeta_ssr_type="chart" class="zr0-cls-5"></circle>
-<circle cx="368.6" cy="134.6" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="137" ecmeta_ssr_type="chart" class="zr0-cls-5"></circle>
-<circle cx="368.6" cy="144.5" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="138" ecmeta_ssr_type="chart" class="zr0-cls-5"></circle>
-<circle cx="368.6" cy="117.9" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="139" ecmeta_ssr_type="chart" class="zr0-cls-5"></circle>
-<circle cx="368.6" cy="83.1" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="140" ecmeta_ssr_type="chart" class="zr0-cls-5"></circle>
-<circle cx="368.6" cy="145.9" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="141" ecmeta_ssr_type="chart" class="zr0-cls-5"></circle>
-<circle cx="368.6" cy="183.8" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="142" ecmeta_ssr_type="chart" class="zr0-cls-5"></circle>
-<circle cx="368.6" cy="145.9" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="143" ecmeta_ssr_type="chart" class="zr0-cls-5"></circle>
-<circle cx="368.6" cy="85.7" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="144" ecmeta_ssr_type="chart" class="zr0-cls-5"></circle>
-<circle cx="368.6" cy="108.2" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="145" ecmeta_ssr_type="chart" class="zr0-cls-5"></circle>
-<circle cx="368.6" cy="154.6" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="146" ecmeta_ssr_type="chart" class="zr0-cls-5"></circle>
-<circle cx="368.6" cy="171.9" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="147" ecmeta_ssr_type="chart" class="zr0-cls-5"></circle>
-<circle cx="368.6" cy="96.4" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="148" ecmeta_ssr_type="chart" class="zr0-cls-5"></circle>
-<circle cx="368.6" cy="115.7" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="149" ecmeta_ssr_type="chart" class="zr0-cls-5"></circle>
-<circle cx="368.6" cy="203" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="150" ecmeta_ssr_type="chart" class="zr0-cls-5"></circle>
-<circle cx="368.6" cy="173.6" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="151" ecmeta_ssr_type="chart" class="zr0-cls-5"></circle>
-<circle cx="368.6" cy="206.5" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="152" ecmeta_ssr_type="chart" class="zr0-cls-5"></circle>
-<circle cx="368.6" cy="212.1" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="153" ecmeta_ssr_type="chart" class="zr0-cls-5"></circle>
-<circle cx="368.6" cy="177.8" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="154" ecmeta_ssr_type="chart" class="zr0-cls-5"></circle>
-<circle cx="437.1" cy="254.1" r="4" fill="#3ba272" ecmeta_series_index="0"
ecmeta_data_index="155" ecmeta_ssr_type="chart" class="zr0-cls-6"></circle>
-<polygon points="441.4 330 442.4 325.5 443.4 320.9 444.4 316.4 445.4 311.8
446.4 307.3 447.2 302.7 448 298.2 448.9 293.6 450.1 289.1 450.8 284.5 451.2 280
451.2 275.5 450.9 270.9 450.2 266.4 449.7 261.8 449 257.3 448.7 252.7 449.2
248.2 449.7 243.6 450.4 239.1 451.5 234.5 452.9 230 454.2 225.5 455.3 220.9 456
216.4 456.1 211.8 456.1 207.3 456 202.7 456 198.2 455.6 193.6 454.8 189.1 453.5
184.5 451.9 180 449.8 175.5 447.7 170.9 445.5 166.4 443.4 161.8 441.5 157.3
439.6 152.7 438.2 148.2 4 [...]
-<circle cx="437.1" cy="266.9" r="4" fill="#3ba272" ecmeta_series_index="0"
ecmeta_data_index="156" ecmeta_ssr_type="chart" class="zr0-cls-6"></circle>
-<circle cx="437.1" cy="200.3" r="4" fill="#3ba272" ecmeta_series_index="0"
ecmeta_data_index="157" ecmeta_ssr_type="chart" class="zr0-cls-6"></circle>
-<circle cx="437.1" cy="248" r="4" fill="#3ba272" ecmeta_series_index="0"
ecmeta_data_index="158" ecmeta_ssr_type="chart" class="zr0-cls-6"></circle>
-<circle cx="437.1" cy="193.6" r="4" fill="#3ba272" ecmeta_series_index="0"
ecmeta_data_index="159" ecmeta_ssr_type="chart" class="zr0-cls-6"></circle>
-<circle cx="437.1" cy="272.3" r="4" fill="#3ba272" ecmeta_series_index="0"
ecmeta_data_index="160" ecmeta_ssr_type="chart" class="zr0-cls-6"></circle>
-<circle cx="437.1" cy="195.7" r="4" fill="#3ba272" ecmeta_series_index="0"
ecmeta_data_index="161" ecmeta_ssr_type="chart" class="zr0-cls-6"></circle>
-<circle cx="437.1" cy="190" r="4" fill="#3ba272" ecmeta_series_index="0"
ecmeta_data_index="162" ecmeta_ssr_type="chart" class="zr0-cls-6"></circle>
-<circle cx="437.1" cy="301.2" r="4" fill="#3ba272" ecmeta_series_index="0"
ecmeta_data_index="163" ecmeta_ssr_type="chart" class="zr0-cls-6"></circle>
-<circle cx="437.1" cy="294.1" r="4" fill="#3ba272" ecmeta_series_index="0"
ecmeta_data_index="164" ecmeta_ssr_type="chart" class="zr0-cls-6"></circle>
-<circle cx="437.1" cy="296.7" r="4" fill="#3ba272" ecmeta_series_index="0"
ecmeta_data_index="165" ecmeta_ssr_type="chart" class="zr0-cls-6"></circle>
-<circle cx="437.1" cy="254.5" r="4" fill="#3ba272" ecmeta_series_index="0"
ecmeta_data_index="166" ecmeta_ssr_type="chart" class="zr0-cls-6"></circle>
-<circle cx="437.1" cy="312.7" r="4" fill="#3ba272" ecmeta_series_index="0"
ecmeta_data_index="167" ecmeta_ssr_type="chart" class="zr0-cls-6"></circle>
-<circle cx="437.1" cy="250.2" r="4" fill="#3ba272" ecmeta_series_index="0"
ecmeta_data_index="168" ecmeta_ssr_type="chart" class="zr0-cls-6"></circle>
-<circle cx="437.1" cy="214.3" r="4" fill="#3ba272" ecmeta_series_index="0"
ecmeta_data_index="169" ecmeta_ssr_type="chart" class="zr0-cls-6"></circle>
-<circle cx="437.1" cy="299.4" r="4" fill="#3ba272" ecmeta_series_index="0"
ecmeta_data_index="170" ecmeta_ssr_type="chart" class="zr0-cls-6"></circle>
-<circle cx="437.1" cy="197.3" r="4" fill="#3ba272" ecmeta_series_index="0"
ecmeta_data_index="171" ecmeta_ssr_type="chart" class="zr0-cls-6"></circle>
-<circle cx="437.1" cy="184.5" r="4" fill="#3ba272" ecmeta_series_index="0"
ecmeta_data_index="172" ecmeta_ssr_type="chart" class="zr0-cls-6"></circle>
-<circle cx="437.1" cy="194.6" r="4" fill="#3ba272" ecmeta_series_index="0"
ecmeta_data_index="173" ecmeta_ssr_type="chart" class="zr0-cls-6"></circle>
-<circle cx="437.1" cy="220.2" r="4" fill="#3ba272" ecmeta_series_index="0"
ecmeta_data_index="174" ecmeta_ssr_type="chart" class="zr0-cls-6"></circle>
-<circle cx="437.1" cy="188.5" r="4" fill="#3ba272" ecmeta_series_index="0"
ecmeta_data_index="175" ecmeta_ssr_type="chart" class="zr0-cls-6"></circle>
-<circle cx="437.1" cy="208.5" r="4" fill="#3ba272" ecmeta_series_index="0"
ecmeta_data_index="176" ecmeta_ssr_type="chart" class="zr0-cls-6"></circle>
-<circle cx="437.1" cy="207.3" r="4" fill="#3ba272" ecmeta_series_index="0"
ecmeta_data_index="177" ecmeta_ssr_type="chart" class="zr0-cls-6"></circle>
-<circle cx="437.1" cy="212.6" r="4" fill="#3ba272" ecmeta_series_index="0"
ecmeta_data_index="178" ecmeta_ssr_type="chart" class="zr0-cls-6"></circle>
-<circle cx="437.1" cy="280.3" r="4" fill="#3ba272" ecmeta_series_index="0"
ecmeta_data_index="179" ecmeta_ssr_type="chart" class="zr0-cls-6"></circle>
-<circle cx="505.7" cy="134" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="180" ecmeta_ssr_type="chart" class="zr0-cls-7"></circle>
-<polygon points="505.9 284.5 506.2 280 506.5 275.5 507.7 270.9 509.3 266.4
510.6 261.8 511.8 257.3 512.8 252.7 513.7 248.2 514.5 243.6 515.7 239.1 516.7
234.5 517.5 230 518.3 225.5 519 220.9 519.3 216.4 519.4 211.8 519.5 207.3 519.6
202.7 519.6 198.2 519.4 193.6 519.2 189.1 519.9 184.5 521.4 180 523.1 175.5
524.4 170.9 525.1 166.4 525.6 161.8 525.7 157.3 525.7 152.7 525.7 148.2 525.3
143.6 524.7 139.1 523.7 134.5 522.5 130 520.9 125.5 519 120.9 517.1 116.4 515.3
111.8 513.3 107.3 511.1 1 [...]
-<circle cx="505.7" cy="144.7" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="181" ecmeta_ssr_type="chart" class="zr0-cls-7"></circle>
-<circle cx="505.7" cy="141.7" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="182" ecmeta_ssr_type="chart" class="zr0-cls-7"></circle>
-<circle cx="505.7" cy="229.9" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="183" ecmeta_ssr_type="chart" class="zr0-cls-7"></circle>
-<circle cx="505.7" cy="148" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="184" ecmeta_ssr_type="chart" class="zr0-cls-7"></circle>
-<circle cx="505.7" cy="112.6" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="185" ecmeta_ssr_type="chart" class="zr0-cls-7"></circle>
-<circle cx="505.7" cy="181.9" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="186" ecmeta_ssr_type="chart" class="zr0-cls-7"></circle>
-<circle cx="505.7" cy="143.5" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="187" ecmeta_ssr_type="chart" class="zr0-cls-7"></circle>
-<circle cx="505.7" cy="228" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="188" ecmeta_ssr_type="chart" class="zr0-cls-7"></circle>
-<circle cx="505.7" cy="158.2" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="189" ecmeta_ssr_type="chart" class="zr0-cls-7"></circle>
-<circle cx="505.7" cy="204.6" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="190" ecmeta_ssr_type="chart" class="zr0-cls-7"></circle>
-<circle cx="505.7" cy="163" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="191" ecmeta_ssr_type="chart" class="zr0-cls-7"></circle>
-<circle cx="505.7" cy="168.6" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="192" ecmeta_ssr_type="chart" class="zr0-cls-7"></circle>
-<circle cx="505.7" cy="230.8" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="193" ecmeta_ssr_type="chart" class="zr0-cls-7"></circle>
-<circle cx="505.7" cy="163.1" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="194" ecmeta_ssr_type="chart" class="zr0-cls-7"></circle>
-<circle cx="505.7" cy="120.3" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="195" ecmeta_ssr_type="chart" class="zr0-cls-7"></circle>
-<circle cx="505.7" cy="137" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="196" ecmeta_ssr_type="chart" class="zr0-cls-7"></circle>
-<circle cx="505.7" cy="242.8" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="197" ecmeta_ssr_type="chart" class="zr0-cls-7"></circle>
-<circle cx="505.7" cy="226.8" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="198" ecmeta_ssr_type="chart" class="zr0-cls-7"></circle>
-<circle cx="505.7" cy="187.5" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="199" ecmeta_ssr_type="chart" class="zr0-cls-7"></circle>
-<circle cx="505.7" cy="146.5" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="200" ecmeta_ssr_type="chart" class="zr0-cls-7"></circle>
-<circle cx="505.7" cy="230.6" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="201" ecmeta_ssr_type="chart" class="zr0-cls-7"></circle>
-<circle cx="505.7" cy="144.1" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="202" ecmeta_ssr_type="chart" class="zr0-cls-7"></circle>
-<circle cx="505.7" cy="196.6" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="203" ecmeta_ssr_type="chart" class="zr0-cls-7"></circle>
-<circle cx="505.7" cy="198.5" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="204" ecmeta_ssr_type="chart" class="zr0-cls-7"></circle>
+<circle cx="94.3" cy="215.5" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="0" ecmeta_ssr_type="chart" class="zr3-cls-14"></circle>
+<polygon points="96.3 257.3 99 252.7 101.5 248.2 103.6 243.6 105.4 239.1 106.9
234.5 108.1 230 108.9 225.5 109.5 220.9 109.7 216.4 109.6 211.8 109.2 207.3
108.5 202.7 107.5 198.2 106.1 193.6 104.5 189.1 102.5 184.5 100.3 180 99.2
175.5 97.5 170.9 98.8 166.4 101.2 161.8 103.3 157.3 106 152.7 108.9 148.2 111.3
143.6 113.2 139.1 114.7 134.5 115.6 130 116.2 125.5 116.2 120.9 115.8 116.4
114.9 111.8 113.5 107.3 111.7 102.7 109.3 98.2 106.5 93.6 103.7 89.1 101.6 84.5
99.2 80 97.4 75.5 96.1 70. [...]
+<circle cx="94.3" cy="215.1" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="1" ecmeta_ssr_type="chart" class="zr3-cls-14"></circle>
+<circle cx="94.3" cy="122.9" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="2" ecmeta_ssr_type="chart" class="zr3-cls-14"></circle>
+<circle cx="94.3" cy="135.2" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="3" ecmeta_ssr_type="chart" class="zr3-cls-14"></circle>
+<circle cx="94.3" cy="110.2" r="4" fill="#5470c6" ecmeta_series_index="0"
ecmeta_data_index="4" ecmeta_ssr_type="chart" class="zr3-cls-14"></circle>
+<circle cx="162.9" cy="120.7" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="5" ecmeta_ssr_type="chart" class="zr3-cls-15"></circle>
+<polygon points="163.6 243.6 165 239.1 166.2 234.5 167.3 230 169.6 225.5 171.7
220.9 173.5 216.4 175 211.8 176.1 207.3 177 202.7 177.5 198.2 177.8 193.6 177.7
189.1 177.3 184.5 176.6 180 175.5 175.5 174.2 170.9 172.5 166.4 171.8 161.8
170.9 157.3 170.6 152.7 170.4 148.2 169.9 143.6 169.3 139.1 170.7 134.5 172.5
130 174 125.5 175.1 120.9 176 116.4 177.8 111.8 179.4 107.3 180.5 102.7 181.1
98.2 181.2 93.6 180.9 89.1 180.1 84.5 178.8 80 177.1 75.5 176.6 70.9 175.7 66.4
174.5 61.8 173 57.3 1 [...]
+<circle cx="162.9" cy="184.4" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="6" ecmeta_ssr_type="chart" class="zr3-cls-15"></circle>
+<circle cx="162.9" cy="200.8" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="7" ecmeta_ssr_type="chart" class="zr3-cls-15"></circle>
+<circle cx="162.9" cy="92.1" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="8" ecmeta_ssr_type="chart" class="zr3-cls-15"></circle>
+<circle cx="162.9" cy="70.8" r="4" fill="#91cc75" ecmeta_series_index="0"
ecmeta_data_index="9" ecmeta_ssr_type="chart" class="zr3-cls-15"></circle>
+<circle cx="231.4" cy="208.9" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="10" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<polygon points="231.7 325.5 232.1 320.9 232.6 316.4 233.4 311.8 234.7 307.3
236 302.7 237.3 298.2 238.4 293.6 239.6 289.1 240.7 284.5 242 280 243 275.5
243.9 270.9 245.2 266.4 246.1 261.8 246.8 257.3 247.5 252.7 248.1 248.2 248.3
243.6 248.4 239.1 248.5 234.5 248.7 230 248.9 225.5 249.3 220.9 250.3 216.4
250.9 211.8 251.3 207.3 251.3 202.7 251 198.2 250.5 193.6 249.9 189.1 248.7
184.5 247.5 180 246.4 175.5 245 170.9 243.4 166.4 241.9 161.8 240.3 157.3 238.7
152.7 237.1 148.2 235.6 143.6 [...]
+<circle cx="231.4" cy="249.6" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="11" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="231.4" cy="178.4" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="12" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="231.4" cy="179.4" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="13" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="231.4" cy="269.1" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="14" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="231.4" cy="268.6" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="15" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="231.4" cy="263.7" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="16" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="231.4" cy="226.1" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="17" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="231.4" cy="185" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="18" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="231.4" cy="285.5" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="19" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="231.4" cy="266.4" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="20" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="231.4" cy="268.3" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="21" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="231.4" cy="226.4" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="22" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="231.4" cy="205.2" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="23" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="231.4" cy="227.9" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="24" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="231.4" cy="256.8" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="25" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="231.4" cy="168" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="26" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="231.4" cy="189.2" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="27" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="231.4" cy="183.9" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="28" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="231.4" cy="211.2" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="29" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="231.4" cy="242.8" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="30" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="231.4" cy="199.8" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="31" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="231.4" cy="275.4" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="32" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="231.4" cy="240.3" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="33" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="231.4" cy="156.5" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="34" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="231.4" cy="176" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="35" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="231.4" cy="196.7" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="36" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="231.4" cy="194.3" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="37" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="231.4" cy="239.3" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="38" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="231.4" cy="189.9" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="39" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="231.4" cy="280.5" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="40" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="231.4" cy="212.8" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="41" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="231.4" cy="218.6" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="42" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="231.4" cy="174.4" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="43" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="231.4" cy="227.6" r="4" fill="#fac858" ecmeta_series_index="0"
ecmeta_data_index="44" ecmeta_ssr_type="chart" class="zr3-cls-16"></circle>
+<circle cx="300" cy="182.4" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="45" ecmeta_ssr_type="chart" class="zr3-cls-17"></circle>
+<polygon points="300.1 275.5 300.4 270.9 301.1 266.4 302.1 261.8 303.1 257.3
303.9 252.7 304.6 248.2 305.1 243.6 305.6 239.1 306.4 234.5 307.3 230 308.2
225.5 309.4 220.9 310.3 216.4 311 211.8 311.7 207.3 313.2 202.7 314.8 198.2
315.9 193.6 316.5 189.1 317 184.5 317.5 180 318.5 175.5 319.8 170.9 321.1 166.4
321.9 161.8 322.1 157.3 322.1 152.7 321.8 148.2 321.3 143.6 320.5 139.1 319.5
134.5 318.3 130 316.6 125.5 314.7 120.9 312.6 116.4 311.4 111.8 310.3 107.3
308.9 102.7 307.2 98.2 305.5 [...]
+<circle cx="300" cy="223.2" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="46" ecmeta_ssr_type="chart" class="zr3-cls-17"></circle>
+<circle cx="300" cy="221.3" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="47" ecmeta_ssr_type="chart" class="zr3-cls-17"></circle>
+<circle cx="300" cy="169.2" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="48" ecmeta_ssr_type="chart" class="zr3-cls-17"></circle>
+<circle cx="300" cy="194.7" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="49" ecmeta_ssr_type="chart" class="zr3-cls-17"></circle>
+<circle cx="300" cy="232.6" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="50" ecmeta_ssr_type="chart" class="zr3-cls-17"></circle>
+<circle cx="300" cy="124.3" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="51" ecmeta_ssr_type="chart" class="zr3-cls-17"></circle>
+<circle cx="300" cy="180.4" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="52" ecmeta_ssr_type="chart" class="zr3-cls-17"></circle>
+<circle cx="300" cy="127.4" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="53" ecmeta_ssr_type="chart" class="zr3-cls-17"></circle>
+<circle cx="300" cy="192.5" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="54" ecmeta_ssr_type="chart" class="zr3-cls-17"></circle>
+<circle cx="300" cy="141.2" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="55" ecmeta_ssr_type="chart" class="zr3-cls-17"></circle>
+<circle cx="300" cy="162.9" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="56" ecmeta_ssr_type="chart" class="zr3-cls-17"></circle>
+<circle cx="300" cy="132.7" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="57" ecmeta_ssr_type="chart" class="zr3-cls-17"></circle>
+<circle cx="300" cy="162.1" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="58" ecmeta_ssr_type="chart" class="zr3-cls-17"></circle>
+<circle cx="300" cy="111.8" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="59" ecmeta_ssr_type="chart" class="zr3-cls-17"></circle>
+<circle cx="300" cy="160.9" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="60" ecmeta_ssr_type="chart" class="zr3-cls-17"></circle>
+<circle cx="300" cy="163.1" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="61" ecmeta_ssr_type="chart" class="zr3-cls-17"></circle>
+<circle cx="300" cy="133.5" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="62" ecmeta_ssr_type="chart" class="zr3-cls-17"></circle>
+<circle cx="300" cy="140.2" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="63" ecmeta_ssr_type="chart" class="zr3-cls-17"></circle>
+<circle cx="300" cy="225.4" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="64" ecmeta_ssr_type="chart" class="zr3-cls-17"></circle>
+<circle cx="300" cy="160.1" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="65" ecmeta_ssr_type="chart" class="zr3-cls-17"></circle>
+<circle cx="300" cy="187" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="66" ecmeta_ssr_type="chart" class="zr3-cls-17"></circle>
+<circle cx="300" cy="157.3" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="67" ecmeta_ssr_type="chart" class="zr3-cls-17"></circle>
+<circle cx="300" cy="109.4" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="68" ecmeta_ssr_type="chart" class="zr3-cls-17"></circle>
+<circle cx="300" cy="128.3" r="4" fill="#ee6666" ecmeta_series_index="0"
ecmeta_data_index="69" ecmeta_ssr_type="chart" class="zr3-cls-17"></circle>
+<circle cx="368.6" cy="85.1" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="70" ecmeta_ssr_type="chart" class="zr3-cls-18"></circle>
+<polygon points="369 243.6 369.9 239.1 371 234.5 372.7 230 374.7 225.5 376.4
220.9 377.9 216.4 379.6 211.8 381 207.3 382 202.7 382.8 198.2 383.7 193.6 384.7
189.1 385.3 184.5 385.5 180 385.3 175.5 384.6 170.9 383.6 166.4 382.1 161.8
380.2 157.3 378.5 152.7 377.3 148.2 376.3 143.6 375.8 139.1 376.2 134.5 377.4
130 379.2 125.5 381.1 120.9 382.6 116.4 383.6 111.8 384.3 107.3 384.9 102.7
385.7 98.2 386 93.6 386.1 89.1 385.7 84.5 385 80 383.9 75.5 382.4 70.9 380.6
66.4 378.4 61.8 376.4 57.3 3 [...]
+<circle cx="368.6" cy="191.8" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="71" ecmeta_ssr_type="chart" class="zr3-cls-18"></circle>
+<circle cx="368.6" cy="90.4" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="72" ecmeta_ssr_type="chart" class="zr3-cls-18"></circle>
+<circle cx="368.6" cy="202" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="73" ecmeta_ssr_type="chart" class="zr3-cls-18"></circle>
+<circle cx="368.6" cy="92.7" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="74" ecmeta_ssr_type="chart" class="zr3-cls-18"></circle>
+<circle cx="368.6" cy="92.6" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="75" ecmeta_ssr_type="chart" class="zr3-cls-18"></circle>
+<circle cx="368.6" cy="185.5" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="76" ecmeta_ssr_type="chart" class="zr3-cls-18"></circle>
+<circle cx="368.6" cy="171.8" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="77" ecmeta_ssr_type="chart" class="zr3-cls-18"></circle>
+<circle cx="368.6" cy="153.7" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="78" ecmeta_ssr_type="chart" class="zr3-cls-18"></circle>
+<circle cx="368.6" cy="199" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="79" ecmeta_ssr_type="chart" class="zr3-cls-18"></circle>
+<circle cx="368.6" cy="148.2" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="80" ecmeta_ssr_type="chart" class="zr3-cls-18"></circle>
+<circle cx="368.6" cy="82.6" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="81" ecmeta_ssr_type="chart" class="zr3-cls-18"></circle>
+<circle cx="368.6" cy="88.7" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="82" ecmeta_ssr_type="chart" class="zr3-cls-18"></circle>
+<circle cx="368.6" cy="189.3" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="83" ecmeta_ssr_type="chart" class="zr3-cls-18"></circle>
+<circle cx="368.6" cy="107" r="4" fill="#73c0de" ecmeta_series_index="0"
ecmeta_data_index="84" ecmeta_ssr_type="chart" class="zr3-cls-18"></circle>
+<circle cx="437.1" cy="231.6" r="4" fill="#3ba272" ecmeta_series_index="0"
ecmeta_data_index="85" ecmeta_ssr_type="chart" class="zr3-cls-19"></circle>
+<polygon points="438.4 307.3 442.7 302.7 446.5 298.2 449.9 293.6 452.8 289.1
455.2 284.5 457.1 280 459 275.5 461.5 270.9 463.3 266.4 464.9 261.8 466.9 257.3
468.1 252.7 468.5 248.2 468.1 243.6 467 239.1 465 234.5 462.3 230 458.8 225.5
454.5 220.9 451.7 216.4 450.9 211.8 449.9 207.3 448.5 202.7 446.8 198.2 444.8
193.6 442.5 189.1 440.6 184.5 439.3 180 438 175.5 436.3 175.5 434.9 180 433.7
184.5 431.8 189.1 429.5 193.6 427.5 198.2 425.8 202.7 424.4 207.3 423.4 211.8
422.6 216.4 419.8 220.9 [...]
+<circle cx="437.1" cy="218" r="4" fill="#3ba272" ecmeta_series_index="0"
ecmeta_data_index="86" ecmeta_ssr_type="chart" class="zr3-cls-19"></circle>
+<circle cx="437.1" cy="262.1" r="4" fill="#3ba272" ecmeta_series_index="0"
ecmeta_data_index="87" ecmeta_ssr_type="chart" class="zr3-cls-19"></circle>
+<circle cx="437.1" cy="266" r="4" fill="#3ba272" ecmeta_series_index="0"
ecmeta_data_index="88" ecmeta_ssr_type="chart" class="zr3-cls-19"></circle>
+<circle cx="437.1" cy="262.3" r="4" fill="#3ba272" ecmeta_series_index="0"
ecmeta_data_index="89" ecmeta_ssr_type="chart" class="zr3-cls-19"></circle>
+<circle cx="505.7" cy="177.8" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="90" ecmeta_ssr_type="chart" class="zr3-cls-20"></circle>
+<polygon points="506.2 284.5 506.7 280 507.1 275.5 507.4 270.9 507.7 266.4
507.9 261.8 508.6 257.3 509.5 252.7 510.4 248.2 511.1 243.6 512 239.1 513.9
234.5 515.5 230 516.8 225.5 518.8 220.9 520.8 216.4 522.4 211.8 523.9 207.3
524.9 202.7 525.9 198.2 527 193.6 528 189.1 528.4 184.5 528.7 180 528.3 175.5
527.4 170.9 526.7 166.4 526.4 161.8 525.6 157.3 524.2 152.7 522.8 148.2 521.9
143.6 520.4 139.1 518.7 134.5 517.8 130 516.7 125.5 515.4 120.9 514.3 116.4
512.9 111.8 511.7 107.3 510.7 102 [...]
+<circle cx="505.7" cy="196.7" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="91" ecmeta_ssr_type="chart" class="zr3-cls-20"></circle>
+<circle cx="505.7" cy="210.8" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="92" ecmeta_ssr_type="chart" class="zr3-cls-20"></circle>
+<circle cx="505.7" cy="194.2" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="93" ecmeta_ssr_type="chart" class="zr3-cls-20"></circle>
+<circle cx="505.7" cy="181.1" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="94" ecmeta_ssr_type="chart" class="zr3-cls-20"></circle>
+<circle cx="505.7" cy="139.9" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="95" ecmeta_ssr_type="chart" class="zr3-cls-20"></circle>
+<circle cx="505.7" cy="166.7" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="96" ecmeta_ssr_type="chart" class="zr3-cls-20"></circle>
+<circle cx="505.7" cy="244.4" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="97" ecmeta_ssr_type="chart" class="zr3-cls-20"></circle>
+<circle cx="505.7" cy="156.4" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="98" ecmeta_ssr_type="chart" class="zr3-cls-20"></circle>
+<circle cx="505.7" cy="179.3" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="99" ecmeta_ssr_type="chart" class="zr3-cls-20"></circle>
+<circle cx="505.7" cy="124.3" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="100" ecmeta_ssr_type="chart" class="zr3-cls-20"></circle>
+<circle cx="505.7" cy="150" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="101" ecmeta_ssr_type="chart" class="zr3-cls-20"></circle>
+<circle cx="505.7" cy="216.9" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="102" ecmeta_ssr_type="chart" class="zr3-cls-20"></circle>
+<circle cx="505.7" cy="120.2" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="103" ecmeta_ssr_type="chart" class="zr3-cls-20"></circle>
+<circle cx="505.7" cy="193.8" r="4" fill="#fc8452" ecmeta_series_index="0"
ecmeta_data_index="104" ecmeta_ssr_type="chart" class="zr3-cls-20"></circle>
<style ><![CDATA[
-.zr0-cls-0:hover {
+.zr3-cls-13:hover {
pointer-events:none;
}
-.zr0-cls-1:hover {
+.zr3-cls-14:hover {
cursor:pointer;
fill:rgba(92,123,217,1);
}
-.zr0-cls-2:hover {
+.zr3-cls-15:hover {
cursor:pointer;
fill:rgba(159,224,128,1);
}
-.zr0-cls-3:hover {
+.zr3-cls-16:hover {
cursor:pointer;
fill:rgba(255,220,96,1);
}
-.zr0-cls-4:hover {
+.zr3-cls-17:hover {
cursor:pointer;
fill:rgba(255,112,112,1);
}
-.zr0-cls-5:hover {
+.zr3-cls-18:hover {
cursor:pointer;
fill:rgba(126,211,244,1);
}
-.zr0-cls-6:hover {
+.zr3-cls-19:hover {
cursor:pointer;
fill:rgba(64,178,125,1);
}
-.zr0-cls-7:hover {
+.zr3-cls-20:hover {
cursor:pointer;
fill:rgba(255,145,90,1);
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]