jupyter-ijavascript-utils 1.5.1 → 1.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/DOCS.md +15 -2
  2. package/README.md +8 -0
  3. package/docResources/img/Table_StyleCell.png +0 -0
  4. package/docResources/img/Table_StyleHeader.png +0 -0
  5. package/docResources/img/Table_StyleRow.png +0 -0
  6. package/docResources/img/Table_StyleTable.png +0 -0
  7. package/docResources/img/noiseVisualization_axisChart.svg +1 -0
  8. package/docResources/img/noiseVisualization_dotChart.svg +1 -0
  9. package/docResources/img/noiseVisualization_vlOrig.svg +1 -0
  10. package/docResources/img/noiseVisualization_vlSimple.svg +1 -0
  11. package/docResources/img/noiseVisualization_wavesDark.svg +1 -0
  12. package/docResources/img/noiseVisualization_wavesLight.svg +1 -0
  13. package/docResources/img/svgAnimation1.gif +0 -0
  14. package/docResources/img/svgAnimation2Dark.gif +0 -0
  15. package/docResources/img/svgAnimation2Light.gif +0 -0
  16. package/docResources/img/svgEmbed1.png +0 -0
  17. package/docResources/img/svgP5Example.png +0 -0
  18. package/docResources/img/svgRender_1.svg +1 -0
  19. package/docResources/img/svgRender_2.svg +1 -0
  20. package/docResources/img/svgRender_3.svg +1 -0
  21. package/docResources/notebooks/ex_NoiseVisualization.ipynb +1878 -0
  22. package/docResources/notebooks/ex_NoiseVisualizationExport.ipynb +1405 -0
  23. package/docResources/notebooks/ex_VegaLite1.ipynb +68 -110
  24. package/package.json +3 -1
  25. package/src/TableGenerator.js +78 -3
  26. package/src/__testHelper__/ijsContext.js +5 -1
  27. package/src/__tests__/TableGenerator__spec.js +1 -1
  28. package/src/__tests__/ijs_htmlScript__spec.js +170 -28
  29. package/src/__tests__/leaflet__spec.js +5 -0
  30. package/src/__tests__/svg__spec.js +185 -0
  31. package/src/__tests__/svg_utilityFunctions__spec.js +126 -0
  32. package/src/_types/global.js +1 -0
  33. package/src/ijs.js +25 -4
  34. package/src/index.js +3 -0
  35. package/src/leaflet.js +4 -0
  36. package/src/svg.js +374 -0
  37. package/src/svg_utilityFunctions.js +148 -0
  38. package/src/vega.js +9 -1
  39. package/tutorials/noiseVisualization.markdown +1231 -0
  40. package/tutorials/tutorials.json +3 -0
package/DOCS.md CHANGED
@@ -19,6 +19,7 @@ See the [#Installation section for requirements and installation](#install)
19
19
  | {@link module:object} | Massage and manipulate Objects or Collections of Objects. |
20
20
  | {@link module:plantuml} | Render <a href="https://plantuml.com">PlantUML</a> within Jupyter results. |
21
21
  | {@link module:set} | Functional Utilities for managing JavaScript Sets - allowing for chaining. |
22
+ | {@link module:svg} | Programmatically create SVGs (either jupyter side for exports, or client side for animations) |
22
23
  | {@link module:vega} | Generate Charts / Graphs / Maps with <a href="https://vega.github.io/vega/">Vega</a> and <a href="https://vega.github.io/vega-lite/">Vega-Lite</a> |
23
24
  | {@link SourceMap} | SubClass of Maps - generated by the {@link module:group} and reducible with {@link module:aggregate}|
24
25
  | {@link TableGenerator} | Class that can filter, sorts, manage and then generate HTML, CSV, Markdown, etc. |
@@ -27,8 +28,9 @@ See the [#Installation section for requirements and installation](#install)
27
28
 
28
29
  ## What's New
29
30
 
30
- * 1.5 - Add Latex support for rendering Math formulas and PlantUML support for Diagrams
31
- * 1.4 - Add in vega embed, vega mimetypes and example choropleth tutorial
31
+ * 1.6 - add SVG support for rendering SVGs and animations with {@link module:svg}.
32
+ * 1.5 - Add LaTeX / KaTeX support with {@link module:latex} for rendering Math formulas and PlantUML support for Diagrams
33
+ * 1.4 - Add in vega embed, vega mimetypes with {@link module:vega} and example choropleth tutorial
32
34
  * 1.3 - Add {@link module:leaflet|Leaflet} for Maps, allow Vega to use {@link module:vega.svgFromSpec|explicit specs} (so [Examples can be copied and pasted](https://vega.github.io/vega-lite/examples/), and add in {@link module:ijs.htmlScript|htmlScripts}
33
35
 
34
36
  -------
@@ -174,6 +176,10 @@ utils.vega.svg((vl) => vl.markPoint()
174
176
 
175
177
  ![Screenshot of Vega Cell](img/BarleyYieldBySite.png)
176
178
 
179
+ and more from {@link module:vega}
180
+
181
+ ![Screenshot of Vega-Lite Examples](img/vegaLiteExamples.png)
182
+
177
183
  ## Create a Data Driven Map
178
184
 
179
185
  (See the {@tutorial vega_choroplethShort} tutorial for more)
@@ -202,6 +208,13 @@ utils.ijs.htmlScript({
202
208
 
203
209
  ![Screenshot of QR Code](img/htmlScript_qrCode.png)
204
210
 
211
+ ## Create Animations
212
+
213
+ (See the {@tutorial noiseVisualization} tutorial or {@link module:svg|svg module} for more)
214
+
215
+ ![Screenshot of dark animation](img/svgAnimation2Dark.gif)
216
+ ![Screenshot of light animation](img/svgAnimation2Light.gif)
217
+
205
218
  <a name="install">&nbsp;</a>
206
219
  # Install
207
220
 
package/README.md CHANGED
@@ -18,6 +18,7 @@ See documentation at: [https://jupyter-ijavascript-utils.onrender.com/](https://
18
18
 
19
19
  # What's New
20
20
 
21
+ * 1.6 - add SVG support for rendering SVGs and animations
21
22
  * 1.5 - Add Latex support for rendering Math formulas and PlantUML support for Diagrams
22
23
  * 1.4 - Add in vega embed, vega mimetypes and example choropleth tutorial
23
24
  * 1.3 - Add Leaflet for Maps, allow Vega to use explicit specs (so [Examples can be copied and pasted](https://vega.github.io/vega-lite/examples/), and add in htmlScripts
@@ -185,6 +186,13 @@ utils.ijs.htmlScript({
185
186
 
186
187
  ![Screenshot of QR Code](https://jupyter-ijavascript-utils.onrender.com/img/htmlScript_qrCode.png)
187
188
 
189
+ ## Create Animations
190
+
191
+ (See the {@tutorial noiseVisualization} tutorial or {@link module:svg|svg module} for more)
192
+
193
+ ![Screenshot of dark animation](https://jupyter-ijavascript-utils.onrender.com/img/svgAnimation2Dark.gif)
194
+ ![Screenshot of light animation](https://jupyter-ijavascript-utils.onrender.com/img/svgAnimation2Light.gif)
195
+
188
196
  # License
189
197
 
190
198
  See [License](https://jupyter-ijavascript-utils.onrender.com/LICENSE) (MIT License).
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" class="marks" width="330" height="242" viewBox="0 0 330 242"><rect width="330" height="242" fill="white"/><g fill="none" stroke-miterlimit="10" transform="translate(59,5)"><g class="mark-group role-frame root" role="graphics-object" aria-roledescription="group mark container"><g transform="translate(0,0)"><path class="background" aria-hidden="true" d="M0.5,0.5h200v200h-200Z" stroke="#ddd"/><g><g class="mark-group role-axis" aria-hidden="true"><g transform="translate(0.5,200.5)"><path class="background" aria-hidden="true" d="M0,0h0v0h0Z" pointer-events="none"/><g><g class="mark-rule role-axis-grid" pointer-events="none"><line transform="translate(0,-200)" x2="0" y2="200" stroke="#ddd" stroke-width="1" opacity="1"/><line transform="translate(33,-200)" x2="0" y2="200" stroke="#ddd" stroke-width="1" opacity="1"/><line transform="translate(67,-200)" x2="0" y2="200" stroke="#ddd" stroke-width="1" opacity="1"/><line transform="translate(100,-200)" x2="0" y2="200" stroke="#ddd" stroke-width="1" opacity="1"/><line transform="translate(133,-200)" x2="0" y2="200" stroke="#ddd" stroke-width="1" opacity="1"/><line transform="translate(167,-200)" x2="0" y2="200" stroke="#ddd" stroke-width="1" opacity="1"/><line transform="translate(200,-200)" x2="0" y2="200" stroke="#ddd" stroke-width="1" opacity="1"/></g></g><path class="foreground" aria-hidden="true" d="" pointer-events="none" display="none"/></g></g><g class="mark-group role-axis" aria-hidden="true"><g transform="translate(0.5,0.5)"><path class="background" aria-hidden="true" d="M0,0h0v0h0Z" pointer-events="none"/><g><g class="mark-rule role-axis-grid" pointer-events="none"><line transform="translate(0,200)" x2="200" y2="0" stroke="#ddd" stroke-width="1" opacity="1"/><line transform="translate(0,144)" x2="200" y2="0" stroke="#ddd" stroke-width="1" opacity="1"/><line transform="translate(0,89)" x2="200" y2="0" stroke="#ddd" stroke-width="1" opacity="1"/><line transform="translate(0,33)" x2="200" y2="0" stroke="#ddd" stroke-width="1" opacity="1"/></g></g><path class="foreground" aria-hidden="true" d="" pointer-events="none" display="none"/></g></g><g class="mark-group role-axis" role="graphics-symbol" aria-roledescription="axis" aria-label="X-axis titled 'index' for a linear scale with values from 0 to 30"><g transform="translate(0.5,200.5)"><path class="background" aria-hidden="true" d="M0,0h0v0h0Z" pointer-events="none"/><g><g class="mark-rule role-axis-tick" pointer-events="none"><line transform="translate(0,0)" x2="0" y2="5" stroke="#888" stroke-width="1" opacity="1"/><line transform="translate(33,0)" x2="0" y2="5" stroke="#888" stroke-width="1" opacity="1"/><line transform="translate(67,0)" x2="0" y2="5" stroke="#888" stroke-width="1" opacity="1"/><line transform="translate(100,0)" x2="0" y2="5" stroke="#888" stroke-width="1" opacity="1"/><line transform="translate(133,0)" x2="0" y2="5" stroke="#888" stroke-width="1" opacity="1"/><line transform="translate(167,0)" x2="0" y2="5" stroke="#888" stroke-width="1" opacity="1"/><line transform="translate(200,0)" x2="0" y2="5" stroke="#888" stroke-width="1" opacity="1"/></g><g class="mark-text role-axis-label" pointer-events="none"><text text-anchor="start" transform="translate(0,15)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">0</text><text text-anchor="middle" transform="translate(33.33333333333333,15)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">5</text><text text-anchor="middle" transform="translate(66.66666666666666,15)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">10</text><text text-anchor="middle" transform="translate(100,15)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">15</text><text text-anchor="middle" transform="translate(133.33333333333331,15)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">20</text><text text-anchor="middle" transform="translate(166.66666666666669,15)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">25</text><text text-anchor="end" transform="translate(200,15)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">30</text></g><g class="mark-rule role-axis-domain" pointer-events="none"><line transform="translate(0,0)" x2="200" y2="0" stroke="#888" stroke-width="1" opacity="1"/></g><g class="mark-text role-axis-title" pointer-events="none"><text text-anchor="middle" transform="translate(100,30)" font-family="sans-serif" font-size="11px" font-weight="bold" fill="#000" opacity="1">index</text></g></g><path class="foreground" aria-hidden="true" d="" pointer-events="none" display="none"/></g></g><g class="mark-group role-axis" role="graphics-symbol" aria-roledescription="axis" aria-label="Y-axis titled 'Value from Noise' for a linear scale with values from −1.0 to 0.8"><g transform="translate(0.5,0.5)"><path class="background" aria-hidden="true" d="M0,0h0v0h0Z" pointer-events="none"/><g><g class="mark-rule role-axis-tick" pointer-events="none"><line transform="translate(0,200)" x2="-5" y2="0" stroke="#888" stroke-width="1" opacity="1"/><line transform="translate(0,144)" x2="-5" y2="0" stroke="#888" stroke-width="1" opacity="1"/><line transform="translate(0,89)" x2="-5" y2="0" stroke="#888" stroke-width="1" opacity="1"/><line transform="translate(0,33)" x2="-5" y2="0" stroke="#888" stroke-width="1" opacity="1"/></g><g class="mark-text role-axis-label" pointer-events="none"><text text-anchor="end" transform="translate(-7,203)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">−1.0</text><text text-anchor="end" transform="translate(-7,147.44444444444443)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">−0.5</text><text text-anchor="end" transform="translate(-7,91.88888888888889)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">0.0</text><text text-anchor="end" transform="translate(-7,36.33333333333335)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">0.5</text></g><g class="mark-rule role-axis-domain" pointer-events="none"><line transform="translate(0,200)" x2="0" y2="-200" stroke="#888" stroke-width="1" opacity="1"/></g><g class="mark-text role-axis-title" pointer-events="none"><text text-anchor="middle" transform="translate(-43,100) rotate(-90) translate(0,-2)" font-family="sans-serif" font-size="11px" font-weight="bold" fill="#000" opacity="1">Value from Noise</text></g></g><path class="foreground" aria-hidden="true" d="" pointer-events="none" display="none"/></g></g><g class="mark-line role-mark child__layer_xAmt_marks" role="graphics-object" aria-roledescription="line mark container"><path aria-label="index: 0; Value from Noise: 0" role="graphics-symbol" aria-roledescription="line mark" d="M0,88.88888888888889L6.666666666666667,131.97283279012345L13.333333333333334,157.62248050480108L20,149.63132800000002L26.666666666666668,107.43884062551443L33.33333333333333,52.52551440329223L40,13.736113777777792L46.666666666666664,7.127009668038453L53.333333333333336,26.967967956104278L60,59.11916444444447L66.66666666666666,88.88888888888889L73.33333333333333,102.85026567901237L80,97.03926044444442L86.66666666666667,79.57786745679014L93.33333333333333,64.89207150617288L100,62.68518518518525L106.66666666666667,76.6475833123L113.33333333333333,105.83763605304073L120,140.6095834074074L126.66666666666666,166.19478124919976L133.33333333333331,173.34439871970736L140,159.43276088888885L146.66666666666666,130.20281649748512L153.33333333333334,97.99874187471414L160,75.21871407407403L166.66666666666669,67.99364426154551L173.33333333333334,73.54532333973481L180,82.93127585185186L186.66666666666666,88.18855836854138L193.33333333333334,88.88888490900777" stroke="#4c78a8" stroke-width="2"/></g><g class="mark-line role-mark child__layer_yAmt_marks" role="graphics-object" aria-roledescription="line mark container"><path aria-label="index: 0; Value from Noise: 0" role="graphics-symbol" aria-roledescription="line mark" d="M0,88.88888888888889L6.666666666666667,45.80493468678555L13.333333333333334,18.254336146319194L20,10.736875851851835L26.666666666666668,20.099101117512607L33.33333333333333,41.138088705989986L40,68.04933451851853L46.666666666666664,97.62553447828077L53.333333333333336,130.38376006584363L60,162.5218512592592L66.66666666666666,185.33086419753076L73.33333333333333,192.10184107544578L80,180.42268207407398L86.66666666666667,153.53310942112478L93.33333333333333,122.6481330919066L100,97.95925925925926L106.66666666666667,82.36493645724734L113.33333333333333,75.76030093461361L120,78.49842725925926L126.66666666666666,85.02727135985369L133.33333333333331,88.88888888888889L140,89.35225244444445L146.66666666666666,88.94228669044352L153.33333333333334,88.93078986739826L160,89.11913481481481L166.66666666666669,89.24435299497028L173.33333333333334,89.1221688888889L180,88.9349688888889L186.66666666666666,88.88892444444446L193.33333333333334,88.88888888888889" stroke="#f58518" stroke-width="2"/></g><g class="mark-line role-mark child__layer_zAmt_marks" role="graphics-object" aria-roledescription="line mark container"><path aria-label="index: 0; Value from Noise: 0" role="graphics-symbol" aria-roledescription="line mark" d="M0,88.88888888888889L6.666666666666667,88.88888490900777L13.333333333333334,88.18852992409694L20,82.89901985185185L26.666666666666668,73.4053553397348L33.33333333333333,67.81614083219023L40,75.13450429629631L46.666666666666664,97.9974549391861L53.333333333333336,130.0247354586191L60,156.34367051851848L66.66666666666666,161.3579332418838L73.33333333333333,140.3121628678555L80,102.3498524444444L86.66666666666667,66.36963214631922L93.33333333333333,51.28484456881577L100,61.737037037037034L106.66666666666667,79.76336700868774L113.33333333333333,81.16487408139004L120,61.6198186666667L126.66666666666666,33.546559985368084L133.33333333333331,16.419844535893937L140,21.897470814814834L146.66666666666666,47.80675704801099L153.33333333333334,79.76608093644269L160,102.55056829629635L166.66666666666669,109.78390489254686L173.33333333333334,104.23245443804299L180,94.84650192592592L186.66666666666666,89.5892194092364L193.33333333333334,88.88889286877" stroke="#e45756" stroke-width="2"/></g><g class="mark-group role-legend" role="graphics-symbol" aria-roledescription="legend" aria-label="Symbol legend for stroke color with 3 values: xAmt, yAmt, zAmt"><g transform="translate(218,0)"><path class="background" aria-hidden="true" d="M0,0h48v37h-48Z" pointer-events="none"/><g><g class="mark-group role-legend-entry"><g transform="translate(0,0)"><path class="background" aria-hidden="true" d="M0,0h0v0h0Z" pointer-events="none"/><g><g class="mark-group role-scope" role="graphics-object" aria-roledescription="group mark container"><g transform="translate(0,0)"><path class="background" aria-hidden="true" d="M0,0h48v11h-48Z" pointer-events="none" opacity="1"/><g><g class="mark-symbol role-legend-symbol" pointer-events="none"><path transform="translate(6,6)" d="M-5,0L5,0" stroke="#4c78a8" stroke-width="1.5" opacity="1"/></g><g class="mark-text role-legend-label" pointer-events="none"><text text-anchor="start" transform="translate(16,9)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">xAmt</text></g></g><path class="foreground" aria-hidden="true" d="" pointer-events="none" display="none"/></g><g transform="translate(0,13)"><path class="background" aria-hidden="true" d="M0,0h48v11h-48Z" pointer-events="none" opacity="1"/><g><g class="mark-symbol role-legend-symbol" pointer-events="none"><path transform="translate(6,6)" d="M-5,0L5,0" stroke="#f58518" stroke-width="1.5" opacity="1"/></g><g class="mark-text role-legend-label" pointer-events="none"><text text-anchor="start" transform="translate(16,9)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">yAmt</text></g></g><path class="foreground" aria-hidden="true" d="" pointer-events="none" display="none"/></g><g transform="translate(0,26)"><path class="background" aria-hidden="true" d="M0,0h48v11h-48Z" pointer-events="none" opacity="1"/><g><g class="mark-symbol role-legend-symbol" pointer-events="none"><path transform="translate(6,6)" d="M-5,0L5,0" stroke="#e45756" stroke-width="1.5" opacity="1"/></g><g class="mark-text role-legend-label" pointer-events="none"><text text-anchor="start" transform="translate(16,9)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">zAmt</text></g></g><path class="foreground" aria-hidden="true" d="" pointer-events="none" display="none"/></g></g></g><path class="foreground" aria-hidden="true" d="" pointer-events="none" display="none"/></g></g></g><path class="foreground" aria-hidden="true" d="" pointer-events="none" display="none"/></g></g></g><path class="foreground" aria-hidden="true" d="" display="none"/></g></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" class="marks" width="457" height="447" viewBox="0 0 457 447"><rect width="457" height="447" fill="white"/><g fill="none" stroke-miterlimit="10" transform="translate(51,10)"><g class="mark-group role-frame root" role="graphics-object" aria-roledescription="group mark container"><g transform="translate(0,0)"><path class="background" aria-hidden="true" d="M0.5,0.5h400v400h-400Z" stroke="#ddd"/><g><g class="mark-group role-axis" aria-hidden="true"><g transform="translate(0.5,400.5)"><path class="background" aria-hidden="true" d="M0,0h0v0h0Z" pointer-events="none"/><g><g class="mark-rule role-axis-grid" pointer-events="none"><line transform="translate(0,-400)" x2="0" y2="400" stroke="#ddd" stroke-width="1" opacity="1"/><line transform="translate(40,-400)" x2="0" y2="400" stroke="#ddd" stroke-width="1" opacity="1"/><line transform="translate(80,-400)" x2="0" y2="400" stroke="#ddd" stroke-width="1" opacity="1"/><line transform="translate(120,-400)" x2="0" y2="400" stroke="#ddd" stroke-width="1" opacity="1"/><line transform="translate(160,-400)" x2="0" y2="400" stroke="#ddd" stroke-width="1" opacity="1"/><line transform="translate(200,-400)" x2="0" y2="400" stroke="#ddd" stroke-width="1" opacity="1"/><line transform="translate(240,-400)" x2="0" y2="400" stroke="#ddd" stroke-width="1" opacity="1"/><line transform="translate(280,-400)" x2="0" y2="400" stroke="#ddd" stroke-width="1" opacity="1"/><line transform="translate(320,-400)" x2="0" y2="400" stroke="#ddd" stroke-width="1" opacity="1"/><line transform="translate(360,-400)" x2="0" y2="400" stroke="#ddd" stroke-width="1" opacity="1"/><line transform="translate(400,-400)" x2="0" y2="400" stroke="#ddd" stroke-width="1" opacity="1"/></g></g><path class="foreground" aria-hidden="true" d="" pointer-events="none" display="none"/></g></g><g class="mark-group role-axis" aria-hidden="true"><g transform="translate(0.5,0.5)"><path class="background" aria-hidden="true" d="M0,0h0v0h0Z" pointer-events="none"/><g><g class="mark-rule role-axis-grid" pointer-events="none"><line transform="translate(0,400)" x2="400" y2="0" stroke="#ddd" stroke-width="1" opacity="1"/><line transform="translate(0,360)" x2="400" y2="0" stroke="#ddd" stroke-width="1" opacity="1"/><line transform="translate(0,320)" x2="400" y2="0" stroke="#ddd" stroke-width="1" opacity="1"/><line transform="translate(0,280)" x2="400" y2="0" stroke="#ddd" stroke-width="1" opacity="1"/><line transform="translate(0,240)" x2="400" y2="0" stroke="#ddd" stroke-width="1" opacity="1"/><line transform="translate(0,200)" x2="400" y2="0" stroke="#ddd" stroke-width="1" opacity="1"/><line transform="translate(0,160)" x2="400" y2="0" stroke="#ddd" stroke-width="1" opacity="1"/><line transform="translate(0,120)" x2="400" y2="0" stroke="#ddd" stroke-width="1" opacity="1"/><line transform="translate(0,80)" x2="400" y2="0" stroke="#ddd" stroke-width="1" opacity="1"/><line transform="translate(0,40)" x2="400" y2="0" stroke="#ddd" stroke-width="1" opacity="1"/><line transform="translate(0,0)" x2="400" y2="0" stroke="#ddd" stroke-width="1" opacity="1"/></g></g><path class="foreground" aria-hidden="true" d="" pointer-events="none" display="none"/></g></g><g class="mark-group role-axis" role="graphics-symbol" aria-roledescription="axis" aria-label="X-axis titled 'x' for a linear scale with values from 0.0 to 1.0"><g transform="translate(0.5,400.5)"><path class="background" aria-hidden="true" d="M0,0h0v0h0Z" pointer-events="none"/><g><g class="mark-rule role-axis-tick" pointer-events="none"><line transform="translate(0,0)" x2="0" y2="5" stroke="#888" stroke-width="1" opacity="1"/><line transform="translate(40,0)" x2="0" y2="5" stroke="#888" stroke-width="1" opacity="1"/><line transform="translate(80,0)" x2="0" y2="5" stroke="#888" stroke-width="1" opacity="1"/><line transform="translate(120,0)" x2="0" y2="5" stroke="#888" stroke-width="1" opacity="1"/><line transform="translate(160,0)" x2="0" y2="5" stroke="#888" stroke-width="1" opacity="1"/><line transform="translate(200,0)" x2="0" y2="5" stroke="#888" stroke-width="1" opacity="1"/><line transform="translate(240,0)" x2="0" y2="5" stroke="#888" stroke-width="1" opacity="1"/><line transform="translate(280,0)" x2="0" y2="5" stroke="#888" stroke-width="1" opacity="1"/><line transform="translate(320,0)" x2="0" y2="5" stroke="#888" stroke-width="1" opacity="1"/><line transform="translate(360,0)" x2="0" y2="5" stroke="#888" stroke-width="1" opacity="1"/><line transform="translate(400,0)" x2="0" y2="5" stroke="#888" stroke-width="1" opacity="1"/></g><g class="mark-text role-axis-label" pointer-events="none"><text text-anchor="start" transform="translate(0,15)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">0.0</text><text text-anchor="middle" transform="translate(40,15)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">0.1</text><text text-anchor="middle" transform="translate(80,15)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">0.2</text><text text-anchor="middle" transform="translate(120,15)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">0.3</text><text text-anchor="middle" transform="translate(160,15)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">0.4</text><text text-anchor="middle" transform="translate(200,15)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">0.5</text><text text-anchor="middle" transform="translate(240,15)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">0.6</text><text text-anchor="middle" transform="translate(280,15)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">0.7</text><text text-anchor="middle" transform="translate(320,15)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">0.8</text><text text-anchor="middle" transform="translate(360,15)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">0.9</text><text text-anchor="end" transform="translate(400,15)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">1.0</text></g><g class="mark-rule role-axis-domain" pointer-events="none"><line transform="translate(0,0)" x2="400" y2="0" stroke="#888" stroke-width="1" opacity="1"/></g><g class="mark-text role-axis-title" pointer-events="none"><text text-anchor="middle" transform="translate(200,30)" font-family="sans-serif" font-size="11px" font-weight="bold" fill="#000" opacity="1">x</text></g></g><path class="foreground" aria-hidden="true" d="" pointer-events="none" display="none"/></g></g><g class="mark-group role-axis" role="graphics-symbol" aria-roledescription="axis" aria-label="Y-axis titled 'y' for a linear scale with values from 0.0 to 1.0"><g transform="translate(0.5,0.5)"><path class="background" aria-hidden="true" d="M0,0h0v0h0Z" pointer-events="none"/><g><g class="mark-rule role-axis-tick" pointer-events="none"><line transform="translate(0,400)" x2="-5" y2="0" stroke="#888" stroke-width="1" opacity="1"/><line transform="translate(0,360)" x2="-5" y2="0" stroke="#888" stroke-width="1" opacity="1"/><line transform="translate(0,320)" x2="-5" y2="0" stroke="#888" stroke-width="1" opacity="1"/><line transform="translate(0,280)" x2="-5" y2="0" stroke="#888" stroke-width="1" opacity="1"/><line transform="translate(0,240)" x2="-5" y2="0" stroke="#888" stroke-width="1" opacity="1"/><line transform="translate(0,200)" x2="-5" y2="0" stroke="#888" stroke-width="1" opacity="1"/><line transform="translate(0,160)" x2="-5" y2="0" stroke="#888" stroke-width="1" opacity="1"/><line transform="translate(0,120)" x2="-5" y2="0" stroke="#888" stroke-width="1" opacity="1"/><line transform="translate(0,80)" x2="-5" y2="0" stroke="#888" stroke-width="1" opacity="1"/><line transform="translate(0,40)" x2="-5" y2="0" stroke="#888" stroke-width="1" opacity="1"/><line transform="translate(0,0)" x2="-5" y2="0" stroke="#888" stroke-width="1" opacity="1"/></g><g class="mark-text role-axis-label" pointer-events="none"><text text-anchor="end" transform="translate(-7,403)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">0.0</text><text text-anchor="end" transform="translate(-7,363)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">0.1</text><text text-anchor="end" transform="translate(-7,323)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">0.2</text><text text-anchor="end" transform="translate(-7,283)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">0.3</text><text text-anchor="end" transform="translate(-7,243)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">0.4</text><text text-anchor="end" transform="translate(-7,203)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">0.5</text><text text-anchor="end" transform="translate(-7,163)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">0.6</text><text text-anchor="end" transform="translate(-7,123.00000000000001)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">0.7</text><text text-anchor="end" transform="translate(-7,82.99999999999999)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">0.8</text><text text-anchor="end" transform="translate(-7,42.99999999999999)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">0.9</text><text text-anchor="end" transform="translate(-7,3)" font-family="sans-serif" font-size="10px" fill="#000" opacity="1">1.0</text></g><g class="mark-rule role-axis-domain" pointer-events="none"><line transform="translate(0,400)" x2="0" y2="-400" stroke="#888" stroke-width="1" opacity="1"/></g><g class="mark-text role-axis-title" pointer-events="none"><text text-anchor="middle" transform="translate(-35,200) rotate(-90) translate(0,-2)" font-family="sans-serif" font-size="11px" font-weight="bold" fill="#000" opacity="1">y</text></g></g><path class="foreground" aria-hidden="true" d="" pointer-events="none" display="none"/></g></g><g class="mark-symbol role-mark marks" role="graphics-object" aria-roledescription="symbol mark container"><path aria-label="x: 0; y: 0; val: 0" role="graphics-symbol" aria-roledescription="point" transform="translate(0,400)" d="M6.096049784194573,0A6.096049784194573,6.096049784194573,0,1,1,-6.096049784194573,0A6.096049784194573,6.096049784194573,0,1,1,6.096049784194573,0" fill="rgb(223, 150, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.05; y: 0; val: 0.214407703262" role="graphics-symbol" aria-roledescription="point" transform="translate(20,400)" d="M7.0346799698648015,0A7.0346799698648015,7.0346799698648015,0,1,1,-7.0346799698648015,0A7.0346799698648015,7.0346799698648015,0,1,1,7.0346799698648015,0" fill="rgb(200, 179, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.1; y: 0; val: 0.40353607" role="graphics-symbol" aria-roledescription="point" transform="translate(40,400)" d="M7.769071858365091,0A7.769071858365091,7.769071858365091,0,1,1,-7.769071858365091,0A7.769071858365091,7.769071858365091,0,1,1,7.769071858365091,0" fill="rgb(175, 201, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.15; y: 0; val: 0.545936824451" role="graphics-symbol" aria-roledescription="point" transform="translate(60.00000000000001,400)" d="M8.279140498152021,0A8.279140498152021,8.279140498152021,0,1,1,-8.279140498152021,0A8.279140498152021,8.279140498152021,0,1,1,8.279140498152021,0" fill="rgb(152, 217, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.2; y: 0; val: 0.628907760728" role="graphics-symbol" aria-roledescription="point" transform="translate(80,400)" d="M8.562337584976175,0A8.562337584976175,8.562337584976175,0,1,1,-8.562337584976175,0A8.562337584976175,8.562337584976175,0,1,1,8.562337584976175,0" fill="rgb(136, 226, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.25; y: 0; val: 0.65185869491" role="graphics-symbol" aria-roledescription="point" transform="translate(100,400)" d="M8.639034917873039,0A8.639034917873039,8.639034917873039,0,1,1,-8.639034917873039,0A8.639034917873039,8.639034917873039,0,1,1,8.639034917873039,0" fill="rgb(131, 228, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.3; y: 0; val: 0.624673321817" role="graphics-symbol" aria-roledescription="point" transform="translate(120.00000000000001,400)" d="M8.54811176029989,0A8.54811176029989,8.54811176029989,0,1,1,-8.54811176029989,0A8.54811176029989,8.54811176029989,0,1,1,8.54811176029989,0" fill="rgb(137, 225, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.35; y: 0; val: 0.565437837049" role="graphics-symbol" aria-roledescription="point" transform="translate(140,400)" d="M8.346565360007288,0A8.346565360007288,8.346565360007288,0,1,1,-8.346565360007288,0A8.346565360007288,8.346565360007288,0,1,1,8.346565360007288,0" fill="rgb(148, 219, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.4; y: 0; val: 0.496820224325" role="graphics-symbol" aria-roledescription="point" transform="translate(160,400)" d="M8.106835057969906,0A8.106835057969906,8.106835057969906,0,1,1,-8.106835057969906,0A8.106835057969906,8.106835057969906,0,1,1,8.106835057969906,0" fill="rgb(161, 212, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.45; y: 0; val: 0.441359098479" role="graphics-symbol" aria-roledescription="point" transform="translate(180,400)" d="M7.907760527267904,0A7.907760527267904,7.907760527267904,0,1,1,-7.907760527267904,0A7.907760527267904,7.907760527267904,0,1,1,7.907760527267904,0" fill="rgb(170, 205, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.5; y: 0; val: 0.416417979092" role="graphics-symbol" aria-roledescription="point" transform="translate(200,400)" d="M7.816583294960737,0A7.816583294960737,7.816583294960737,0,1,1,-7.816583294960737,0A7.816583294960737,7.816583294960737,0,1,1,7.816583294960737,0" fill="rgb(173, 203, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.55; y: 0; val: 0.429707809222" role="graphics-symbol" aria-roledescription="point" transform="translate(220.00000000000003,400)" d="M7.865298468043884,0A7.865298468043884,7.865298468043884,0,1,1,-7.865298468043884,0A7.865298468043884,7.865298468043884,0,1,1,7.865298468043884,0" fill="rgb(171, 204, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.6; y: 0; val: 0.476524756461" role="graphics-symbol" aria-roledescription="point" transform="translate(240.00000000000003,400)" d="M8.034557902521488,0A8.034557902521488,8.034557902521488,0,1,1,-8.034557902521488,0A8.034557902521488,8.034557902521488,0,1,1,8.034557902521488,0" fill="rgb(164, 209, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.65; y: 0; val: 0.540193781304" role="graphics-symbol" aria-roledescription="point" transform="translate(260,400)" d="M8.259178974058184,0A8.259178974058184,8.259178974058184,0,1,1,-8.259178974058184,0A8.259178974058184,8.259178974058184,0,1,1,8.259178974058184,0" fill="rgb(153, 216, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.7; y: 0; val: 0.597651130584" role="graphics-symbol" aria-roledescription="point" transform="translate(280,400)" d="M8.456765651289789,0A8.456765651289789,8.456765651289789,0,1,1,-8.456765651289789,0A8.456765651289789,8.456765651289789,0,1,1,8.456765651289789,0" fill="rgb(142, 222, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.75; y: 0; val: 0.631839725045" role="graphics-symbol" aria-roledescription="point" transform="translate(300,400)" d="M8.572173843850003,0A8.572173843850003,8.572173843850003,0,1,1,-8.572173843850003,0A8.572173843850003,8.572173843850003,0,1,1,8.572173843850003,0" fill="rgb(135, 226, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.8; y: 0; val: 0.638017086952" role="graphics-symbol" aria-roledescription="point" transform="translate(320,400)" d="M8.59286102658985,0A8.59286102658985,8.59286102658985,0,1,1,-8.59286102658985,0A8.59286102658985,8.59286102658985,0,1,1,8.59286102658985,0" fill="rgb(134, 227, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.85; y: 0; val: 0.614015828507" role="graphics-symbol" aria-roledescription="point" transform="translate(340.00000000000006,400)" d="M8.512202120680596,0A8.512202120680596,8.512202120680596,0,1,1,-8.512202120680596,0A8.512202120680596,8.512202120680596,0,1,1,8.512202120680596,0" fill="rgb(139, 224, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.9; y: 0; val: 0.557227919375" role="graphics-symbol" aria-roledescription="point" transform="translate(360,400)" d="M8.31824613318939,0A8.31824613318939,8.31824613318939,0,1,1,-8.31824613318939,0A8.31824613318939,8.31824613318939,0,1,1,8.31824613318939,0" fill="rgb(150, 218, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.95; y: 0; val: 0.467028336356" role="graphics-symbol" aria-roledescription="point" transform="translate(380,400)" d="M8.000514576286502,0A8.000514576286502,8.000514576286502,0,1,1,-8.000514576286502,0A8.000514576286502,8.000514576286502,0,1,1,8.000514576286502,0" fill="rgb(165, 208, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0; y: 0.05; val: 0.214407703262" role="graphics-symbol" aria-roledescription="point" transform="translate(0,380)" d="M7.0346799698648015,0A7.0346799698648015,7.0346799698648015,0,1,1,-7.0346799698648015,0A7.0346799698648015,7.0346799698648015,0,1,1,7.0346799698648015,0" fill="rgb(200, 179, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.05; y: 0.05; val: 0.420260754375" role="graphics-symbol" aria-roledescription="point" transform="translate(20,380)" d="M7.830700509802471,0A7.830700509802471,7.830700509802471,0,1,1,-7.830700509802471,0A7.830700509802471,7.830700509802471,0,1,1,7.830700509802471,0" fill="rgb(173, 203, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.1; y: 0.05; val: 0.593045178223" role="graphics-symbol" aria-roledescription="point" transform="translate(40,380)" d="M8.441097034455751,0A8.441097034455751,8.441097034455751,0,1,1,-8.441097034455751,0A8.441097034455751,8.441097034455751,0,1,1,8.441097034455751,0" fill="rgb(143, 222, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.15; y: 0.05; val: 0.71262767453" role="graphics-symbol" aria-roledescription="point" transform="translate(60.00000000000001,380)" d="M8.838899042248496,0A8.838899042248496,8.838899042248496,0,1,1,-8.838899042248496,0A8.838899042248496,8.838899042248496,0,1,1,8.838899042248496,0" fill="rgb(116, 234, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.2; y: 0.05; val: 0.766566362978" role="graphics-symbol" aria-roledescription="point" transform="translate(80,380)" d="M9.012586720323073,0A9.012586720323073,9.012586720323073,0,1,1,-9.012586720323073,0A9.012586720323073,9.012586720323073,0,1,1,9.012586720323073,0" fill="rgb(101, 240, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.25; y: 0.05; val: 0.755297339415" role="graphics-symbol" aria-roledescription="point" transform="translate(100,380)" d="M8.976577119683101,0A8.976577119683101,8.976577119683101,0,1,1,-8.976577119683101,0A8.976577119683101,8.976577119683101,0,1,1,8.976577119683101,0" fill="rgb(105, 239, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.3; y: 0.05; val: 0.692334007955" role="graphics-symbol" aria-roledescription="point" transform="translate(120.00000000000001,380)" d="M8.772661275533578,0A8.772661275533578,8.772661275533578,0,1,1,-8.772661275533578,0A8.772661275533578,8.772661275533578,0,1,1,8.772661275533578,0" fill="rgb(121, 232, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.35; y: 0.05; val: 0.600311386409" role="graphics-symbol" aria-roledescription="point" transform="translate(140,380)" d="M8.465802148840735,0A8.465802148840735,8.465802148840735,0,1,1,-8.465802148840735,0A8.465802148840735,8.465802148840735,0,1,1,8.465802148840735,0" fill="rgb(142, 223, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.4; y: 0.05; val: 0.505839410816" role="graphics-symbol" aria-roledescription="point" transform="translate(160,380)" d="M8.138748602547548,0A8.138748602547548,8.138748602547548,0,1,1,-8.138748602547548,0A8.138748602547548,8.138748602547548,0,1,1,8.138748602547548,0" fill="rgb(159, 212, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.45; y: 0.05; val: 0.433852828309" role="graphics-symbol" aria-roledescription="point" transform="translate(180,380)" d="M7.880430830985259,0A7.880430830985259,7.880430830985259,0,1,1,-7.880430830985259,0A7.880430830985259,7.880430830985259,0,1,1,7.880430830985259,0" fill="rgb(171, 204, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.5; y: 0.05; val: 0.402142065709" role="graphics-symbol" aria-roledescription="point" transform="translate(200,380)" d="M7.763913016845622,0A7.763913016845622,7.763913016845622,0,1,1,-7.763913016845622,0A7.763913016845622,7.763913016845622,0,1,1,7.763913016845622,0" fill="rgb(176, 201, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.55; y: 0.05; val: 0.416905484021" role="graphics-symbol" aria-roledescription="point" transform="translate(220.00000000000003,380)" d="M7.818375655033402,0A7.818375655033402,7.818375655033402,0,1,1,-7.818375655033402,0A7.818375655033402,7.818375655033402,0,1,1,7.818375655033402,0" fill="rgb(173, 203, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.6; y: 0.05; val: 0.470418676745" role="graphics-symbol" aria-roledescription="point" transform="translate(240.00000000000003,380)" d="M8.012685069546713,0A8.012685069546713,8.012685069546713,0,1,1,-8.012685069546713,0A8.012685069546713,8.012685069546713,0,1,1,8.012685069546713,0" fill="rgb(165, 209, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.65; y: 0.05; val: 0.542270942691" role="graphics-symbol" aria-roledescription="point" transform="translate(260,380)" d="M8.266404283296565,0A8.266404283296565,8.266404283296565,0,1,1,-8.266404283296565,0A8.266404283296565,8.266404283296565,0,1,1,8.266404283296565,0" fill="rgb(153, 216, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.7; y: 0.05; val: 0.606072761756" role="graphics-symbol" aria-roledescription="point" transform="translate(280,380)" d="M8.485339703539427,0A8.485339703539427,8.485339703539427,0,1,1,-8.485339703539427,0A8.485339703539427,8.485339703539427,0,1,1,8.485339703539427,0" fill="rgb(140, 223, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.75; y: 0.05; val: 0.643087374605" role="graphics-symbol" aria-roledescription="point" transform="translate(300,380)" d="M8.609803619305458,0A8.609803619305458,8.609803619305458,0,1,1,-8.609803619305458,0A8.609803619305458,8.609803619305458,0,1,1,8.609803619305458,0" fill="rgb(133, 227, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.8; y: 0.05; val: 0.647491932668" role="graphics-symbol" aria-roledescription="point" transform="translate(320,380)" d="M8.624494631868838,0A8.624494631868838,8.624494631868838,0,1,1,-8.624494631868838,0A8.624494631868838,8.624494631868838,0,1,1,8.624494631868838,0" fill="rgb(132, 228, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.85; y: 0.05; val: 0.615492947323" role="graphics-symbol" aria-roledescription="point" transform="translate(340.00000000000006,380)" d="M8.517188201638762,0A8.517188201638762,8.517188201638762,0,1,1,-8.517188201638762,0A8.517188201638762,8.517188201638762,0,1,1,8.517188201638762,0" fill="rgb(139, 224, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.9; y: 0.05; val: 0.545083198474" role="graphics-symbol" aria-roledescription="point" transform="translate(360,380)" d="M8.276176532844646,0A8.276176532844646,8.276176532844646,0,1,1,-8.276176532844646,0A8.276176532844646,8.276176532844646,0,1,1,8.276176532844646,0" fill="rgb(152, 217, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.95; y: 0.05; val: 0.437931616956" role="graphics-symbol" aria-roledescription="point" transform="translate(380,380)" d="M7.895293092523146,0A7.895293092523146,7.895293092523146,0,1,1,-7.895293092523146,0A7.895293092523146,7.895293092523146,0,1,1,7.895293092523146,0" fill="rgb(170, 205, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0; y: 0.1; val: 0.40353607" role="graphics-symbol" aria-roledescription="point" transform="translate(0,360)" d="M7.769071858365091,0A7.769071858365091,7.769071858365091,0,1,1,-7.769071858365091,0A7.769071858365091,7.769071858365091,0,1,1,7.769071858365091,0" fill="rgb(175, 201, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.05; y: 0.1; val: 0.593045178223" role="graphics-symbol" aria-roledescription="point" transform="translate(20,360)" d="M8.441097034455751,0A8.441097034455751,8.441097034455751,0,1,1,-8.441097034455751,0A8.441097034455751,8.441097034455751,0,1,1,8.441097034455751,0" fill="rgb(143, 222, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.1; y: 0.1; val: 0.743049856763" role="graphics-symbol" aria-roledescription="point" transform="translate(40,360)" d="M8.937276372240655,0A8.937276372240655,8.937276372240655,0,1,1,-8.937276372240655,0A8.937276372240655,8.937276372240655,0,1,1,8.937276372240655,0" fill="rgb(108, 237, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.15; y: 0.1; val: 0.833999437392" role="graphics-symbol" aria-roledescription="point" transform="translate(60.00000000000001,360)" d="M9.225129086779404,0A9.225129086779404,9.225129086779404,0,1,1,-9.225129086779404,0A9.225129086779404,9.225129086779404,0,1,1,9.225129086779404,0" fill="rgb(77, 246, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.2; y: 0.1; val: 0.85386904865" role="graphics-symbol" aria-roledescription="point" transform="translate(80,360)" d="M9.286828356301214,0A9.286828356301214,9.286828356301214,0,1,1,-9.286828356301214,0A9.286828356301214,9.286828356301214,0,1,1,9.286828356301214,0" fill="rgb(68, 248, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.25; y: 0.1; val: 0.804862266713" role="graphics-symbol" aria-roledescription="point" transform="translate(100,360)" d="M9.133898451332454,0A9.133898451332454,9.133898451332454,0,1,1,-9.133898451332454,0A9.133898451332454,9.133898451332454,0,1,1,9.133898451332454,0" fill="rgb(89, 244, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.3; y: 0.1; val: 0.704475524852" role="graphics-symbol" aria-roledescription="point" transform="translate(120.00000000000001,360)" d="M8.812350560858855,0A8.812350560858855,8.812350560858855,0,1,1,-8.812350560858855,0A8.812350560858855,8.812350560858855,0,1,1,8.812350560858855,0" fill="rgb(118, 233, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.35; y: 0.1; val: 0.579882850797" role="graphics-symbol" aria-roledescription="point" transform="translate(140,360)" d="M8.396160006747722,0A8.396160006747722,8.396160006747722,0,1,1,-8.396160006747722,0A8.396160006747722,8.396160006747722,0,1,1,8.396160006747722,0" fill="rgb(146, 221, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.4; y: 0.1; val: 0.461309334927" role="graphics-symbol" aria-roledescription="point" transform="translate(160,360)" d="M7.979942695543035,0A7.979942695543035,7.979942695543035,0,1,1,-7.979942695543035,0A7.979942695543035,7.979942695543035,0,1,1,7.979942695543035,0" fill="rgb(166, 208, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.45; y: 0.1; val: 0.375507356565" role="graphics-symbol" aria-roledescription="point" transform="translate(180,360)" d="M7.664678059999542,0A7.664678059999542,7.664678059999542,0,1,1,-7.664678059999542,0A7.664678059999542,7.664678059999542,0,1,1,7.664678059999542,0" fill="rgb(179, 198, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.5; y: 0.1; val: 0.339957563338" role="graphics-symbol" aria-roledescription="point" transform="translate(200,360)" d="M7.5301901837386,0A7.5301901837386,7.5301901837386,0,1,1,-7.5301901837386,0A7.5301901837386,7.5301901837386,0,1,1,7.5301901837386,0" fill="rgb(184, 194, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.55; y: 0.1; val: 0.358583634454" role="graphics-symbol" aria-roledescription="point" transform="translate(220.00000000000003,360)" d="M7.600950956916355,0A7.600950956916355,7.600950956916355,0,1,1,-7.600950956916355,0A7.600950956916355,7.600950956916355,0,1,1,7.600950956916355,0" fill="rgb(182, 196, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.6; y: 0.1; val: 0.420036131534" role="graphics-symbol" aria-roledescription="point" transform="translate(240.00000000000003,360)" d="M7.829876012642023,0A7.829876012642023,7.829876012642023,0,1,1,-7.829876012642023,0A7.829876012642023,7.829876012642023,0,1,1,7.829876012642023,0" fill="rgb(173, 203, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.65; y: 0.1; val: 0.499966238369" role="graphics-symbol" aria-roledescription="point" transform="translate(260,360)" d="M8.11798118184819,0A8.11798118184819,8.11798118184819,0,1,1,-8.11798118184819,0A8.11798118184819,8.11798118184819,0,1,1,8.11798118184819,0" fill="rgb(160, 212, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.7; y: 0.1; val: 0.569174913762" role="graphics-symbol" aria-roledescription="point" transform="translate(280,360)" d="M8.359424229884862,0A8.359424229884862,8.359424229884862,0,1,1,-8.359424229884862,0A8.359424229884862,8.359424229884862,0,1,1,8.359424229884862,0" fill="rgb(148, 219, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.75; y: 0.1; val: 0.60832904028" role="graphics-symbol" aria-roledescription="point" transform="translate(300,360)" d="M8.4929787830225,0A8.4929787830225,8.4929787830225,0,1,1,-8.4929787830225,0A8.4929787830225,8.4929787830225,0,1,1,8.4929787830225,0" fill="rgb(140, 224, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.8; y: 0.1; val: 0.610154921227" role="graphics-symbol" aria-roledescription="point" transform="translate(320,360)" d="M8.499155639589652,0A8.499155639589652,8.499155639589652,0,1,1,-8.499155639589652,0A8.499155639589652,8.499155639589652,0,1,1,8.499155639589652,0" fill="rgb(140, 224, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.85; y: 0.1; val: 0.57017425901" role="graphics-symbol" aria-roledescription="point" transform="translate(340.00000000000006,360)" d="M8.362859516353172,0A8.362859516353172,8.362859516353172,0,1,1,-8.362859516353172,0A8.362859516353172,8.362859516353172,0,1,1,8.362859516353172,0" fill="rgb(147, 219, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.9; y: 0.1; val: 0.488060935592" role="graphics-symbol" aria-roledescription="point" transform="translate(360,360)" d="M8.075720421386661,0A8.075720421386661,8.075720421386661,0,1,1,-8.075720421386661,0A8.075720421386661,8.075720421386661,0,1,1,8.075720421386661,0" fill="rgb(162, 211, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.95; y: 0.1; val: 0.368523023605" role="graphics-symbol" aria-roledescription="point" transform="translate(380,360)" d="M7.638442645723566,0A7.638442645723566,7.638442645723566,0,1,1,-7.638442645723566,0A7.638442645723566,7.638442645723566,0,1,1,7.638442645723566,0" fill="rgb(180, 197, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0; y: 0.15; val: 0.545635562293" role="graphics-symbol" aria-roledescription="point" transform="translate(0,340)" d="M8.278094575032815,0A8.278094575032815,8.278094575032815,0,1,1,-8.278094575032815,0A8.278094575032815,8.278094575032815,0,1,1,8.278094575032815,0" fill="rgb(152, 217, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.05; y: 0.15; val: 0.712590796149" role="graphics-symbol" aria-roledescription="point" transform="translate(20,340)" d="M8.838779122799007,0A8.838779122799007,8.838779122799007,0,1,1,-8.838779122799007,0A8.838779122799007,8.838779122799007,0,1,1,8.838779122799007,0" fill="rgb(116, 234, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.1; y: 0.15; val: 0.833774778021" role="graphics-symbol" aria-roledescription="point" transform="translate(40,340)" d="M9.224429113336685,0A9.224429113336685,9.224429113336685,0,1,1,-9.224429113336685,0A9.224429113336685,9.224429113336685,0,1,1,9.224429113336685,0" fill="rgb(77, 246, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.15; y: 0.15; val: 0.890185538118" role="graphics-symbol" aria-roledescription="point" transform="translate(60.00000000000001,340)" d="M9.398551954518748,0A9.398551954518748,9.398551954518748,0,1,1,-9.398551954518748,0A9.398551954518748,9.398551954518748,0,1,1,9.398551954518748,0" fill="rgb(46, 252, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.2; y: 0.15; val: 0.872835830529" role="graphics-symbol" aria-roledescription="point" transform="translate(80,340)" d="M9.345344156493466,0A9.345344156493466,9.345344156493466,0,1,1,-9.345344156493466,0A9.345344156493466,9.345344156493466,0,1,1,9.345344156493466,0" fill="rgb(58, 250, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.25; y: 0.15; val: 0.786773550442" role="graphics-symbol" aria-roledescription="point" transform="translate(100,340)" d="M9.076800025093378,0A9.076800025093378,9.076800025093378,0,1,1,-9.076800025093378,0A9.076800025093378,9.076800025093378,0,1,1,9.076800025093378,0" fill="rgb(95, 242, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.3; y: 0.15; val: 0.652699082856" role="graphics-symbol" aria-roledescription="point" transform="translate(120.00000000000001,340)" d="M8.641830403890577,0A8.641830403890577,8.641830403890577,0,1,1,-8.641830403890577,0A8.641830403890577,8.641830403890577,0,1,1,8.641830403890577,0" fill="rgb(131, 228, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.35; y: 0.15; val: 0.501414029532" role="graphics-symbol" aria-roledescription="point" transform="translate(140,340)" d="M8.123105473418537,0A8.123105473418537,8.123105473418537,0,1,1,-8.123105473418537,0A8.123105473418537,8.123105473418537,0,1,1,8.123105473418537,0" fill="rgb(160, 212, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.4; y: 0.15; val: 0.365786772107" role="graphics-symbol" aria-roledescription="point" transform="translate(160,340)" d="M7.628139800397162,0A7.628139800397162,7.628139800397162,0,1,1,-7.628139800397162,0A7.628139800397162,7.628139800397162,0,1,1,7.628139800397162,0" fill="rgb(181, 197, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.45; y: 0.15; val: 0.273393570686" role="graphics-symbol" aria-roledescription="point" transform="translate(180,340)" d="M7.27168720204499,0A7.27168720204499,7.27168720204499,0,1,1,-7.27168720204499,0A7.27168720204499,7.27168720204499,0,1,1,7.27168720204499,0" fill="rgb(193, 186, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.5; y: 0.15; val: 0.240461150051" role="graphics-symbol" aria-roledescription="point" transform="translate(200,340)" d="M7.140333666544579,0A7.140333666544579,7.140333666544579,0,1,1,-7.140333666544579,0A7.140333666544579,7.140333666544579,0,1,1,7.140333666544579,0" fill="rgb(197, 182, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.55; y: 0.15; val: 0.267859450066" role="graphics-symbol" aria-roledescription="point" transform="translate(220.00000000000003,340)" d="M7.2497802928155854,0A7.2497802928155854,7.2497802928155854,0,1,1,-7.2497802928155854,0A7.2497802928155854,7.2497802928155854,0,1,1,7.2497802928155854,0" fill="rgb(194, 185, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.6; y: 0.15; val: 0.340170514571" role="graphics-symbol" aria-roledescription="point" transform="translate(240.00000000000003,340)" d="M7.5310029464613795,0A7.5310029464613795,7.5310029464613795,0,1,1,-7.5310029464613795,0A7.5310029464613795,7.5310029464613795,0,1,1,7.5310029464613795,0" fill="rgb(184, 194, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.65; y: 0.15; val: 0.429236015884" role="graphics-symbol" aria-roledescription="point" transform="translate(260,340)" d="M7.863574230085595,0A7.863574230085595,7.863574230085595,0,1,1,-7.863574230085595,0A7.863574230085595,7.863574230085595,0,1,1,7.863574230085595,0" fill="rgb(171, 204, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.7; y: 0.15; val: 0.504060070822" role="graphics-symbol" aria-roledescription="point" transform="translate(280,340)" d="M8.132462491391284,0A8.132462491391284,8.132462491391284,0,1,1,-8.132462491391284,0A8.132462491391284,8.132462491391284,0,1,1,8.132462491391284,0" fill="rgb(159, 212, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.75; y: 0.15; val: 0.545793368048" role="graphics-symbol" aria-roledescription="point" transform="translate(300,340)" d="M8.278642462140212,0A8.278642462140212,8.278642462140212,0,1,1,-8.278642462140212,0A8.278642462140212,8.278642462140212,0,1,1,8.278642462140212,0" fill="rgb(152, 217, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.8; y: 0.15; val: 0.545966850834" role="graphics-symbol" aria-roledescription="point" transform="translate(320,340)" d="M8.279244736623582,0A8.279244736623582,8.279244736623582,0,1,1,-8.279244736623582,0A8.279244736623582,8.279244736623582,0,1,1,8.279244736623582,0" fill="rgb(152, 217, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.85; y: 0.15; val: 0.500363472554" role="graphics-symbol" aria-roledescription="point" transform="translate(340.00000000000006,340)" d="M8.119387468838159,0A8.119387468838159,8.119387468838159,0,1,1,-8.119387468838159,0A8.119387468838159,8.119387468838159,0,1,1,8.119387468838159,0" fill="rgb(160, 212, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.9; y: 0.15; val: 0.410765067862" role="graphics-symbol" aria-roledescription="point" transform="translate(360,340)" d="M7.795769714401127,0A7.795769714401127,7.795769714401127,0,1,1,-7.795769714401127,0A7.795769714401127,7.795769714401127,0,1,1,7.795769714401127,0" fill="rgb(174, 202, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.95; y: 0.15; val: 0.284993552399" role="graphics-symbol" aria-roledescription="point" transform="translate(380,340)" d="M7.317393114616178,0A7.317393114616178,7.317393114616178,0,1,1,-7.317393114616178,0A7.317393114616178,7.317393114616178,0,1,1,7.317393114616178,0" fill="rgb(192, 187, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0; y: 0.2; val: 0.621054924114" role="graphics-symbol" aria-roledescription="point" transform="translate(0,320)" d="M8.535936773537488,0A8.535936773537488,8.535936773537488,0,1,1,-8.535936773537488,0A8.535936773537488,8.535936773537488,0,1,1,8.535936773537488,0" fill="rgb(137, 225, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.05; y: 0.2; val: 0.76301576411" role="graphics-symbol" aria-roledescription="point" transform="translate(20,320)" d="M9.001256503346164,0A9.001256503346164,9.001256503346164,0,1,1,-9.001256503346164,0A9.001256503346164,9.001256503346164,0,1,1,9.001256503346164,0" fill="rgb(102, 239, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.1; y: 0.2; val: 0.851241764447" role="graphics-symbol" aria-roledescription="point" transform="translate(40,320)" d="M9.278693631124273,0A9.278693631124273,9.278693631124273,0,1,1,-9.278693631124273,0A9.278693631124273,9.278693631124273,0,1,1,9.278693631124273,0" fill="rgb(69, 248, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.15; y: 0.2; val: 0.869536517752" role="graphics-symbol" aria-roledescription="point" transform="translate(60.00000000000001,320)" d="M9.335191559264102,0A9.335191559264102,9.335191559264102,0,1,1,-9.335191559264102,0A9.335191559264102,9.335191559264102,0,1,1,9.335191559264102,0" fill="rgb(60, 250, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.2; y: 0.2; val: 0.814609065063" role="graphics-symbol" aria-roledescription="point" transform="translate(80,320)" d="M9.164517485054462,0A9.164517485054462,9.164517485054462,0,1,1,-9.164517485054462,0A9.164517485054462,9.164517485054462,0,1,1,9.164517485054462,0" fill="rgb(85, 245, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.25; y: 0.2; val: 0.696352761101" role="graphics-symbol" aria-roledescription="point" transform="translate(100,320)" d="M8.78581798929718,0A8.78581798929718,8.78581798929718,0,1,1,-8.78581798929718,0A8.78581798929718,8.78581798929718,0,1,1,8.78581798929718,0" fill="rgb(120, 233, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.3; y: 0.2; val: 0.537517650079" role="graphics-symbol" aria-roledescription="point" transform="translate(120.00000000000001,320)" d="M8.249860847912592,0A8.249860847912592,8.249860847912592,0,1,1,-8.249860847912592,0A8.249860847912592,8.249860847912592,0,1,1,8.249860847912592,0" fill="rgb(153, 216, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.35; y: 0.2; val: 0.370694668035" role="graphics-symbol" aria-roledescription="point" transform="translate(140,320)" d="M7.646609687622959,0A7.646609687622959,7.646609687622959,0,1,1,-7.646609687622959,0A7.646609687622959,7.646609687622959,0,1,1,7.646609687622959,0" fill="rgb(180, 197, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.4; y: 0.2; val: 0.229772123481" role="graphics-symbol" aria-roledescription="point" transform="translate(160,320)" d="M7.097177080011064,0A7.097177080011064,7.097177080011064,0,1,1,-7.097177080011064,0A7.097177080011064,7.097177080011064,0,1,1,7.097177080011064,0" fill="rgb(199, 180, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.45; y: 0.2; val: 0.141759948682" role="graphics-symbol" aria-roledescription="point" transform="translate(180,320)" d="M6.731320604330214,0A6.731320604330214,6.731320604330214,0,1,1,-6.731320604330214,0A6.731320604330214,6.731320604330214,0,1,1,6.731320604330214,0" fill="rgb(209, 169, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.5; y: 0.2; val: 0.120528094127" role="graphics-symbol" aria-roledescription="point" transform="translate(200,320)" d="M6.640044905837538,0A6.640044905837538,6.640044905837538,0,1,1,-6.640044905837538,0A6.640044905837538,6.640044905837538,0,1,1,6.640044905837538,0" fill="rgb(211, 167, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.55; y: 0.2; val: 0.163180174662" role="graphics-symbol" aria-roledescription="point" transform="translate(220.00000000000003,320)" d="M6.822168720329007,0A6.822168720329007,6.822168720329007,0,1,1,-6.822168720329007,0A6.822168720329007,6.822168720329007,0,1,1,6.822168720329007,0" fill="rgb(206, 172, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.6; y: 0.2; val: 0.250070037334" role="graphics-symbol" aria-roledescription="point" transform="translate(240.00000000000003,320)" d="M7.178907791382382,0A7.178907791382382,7.178907791382382,0,1,1,-7.178907791382382,0A7.178907791382382,7.178907791382382,0,1,1,7.178907791382382,0" fill="rgb(196, 183, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.65; y: 0.2; val: 0.34985646871" role="graphics-symbol" aria-roledescription="point" transform="translate(260,320)" d="M7.567878676199346,0A7.567878676199346,7.567878676199346,0,1,1,-7.567878676199346,0A7.567878676199346,7.567878676199346,0,1,1,7.567878676199346,0" fill="rgb(183, 195, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.7; y: 0.2; val: 0.431418955883" role="graphics-symbol" aria-roledescription="point" transform="translate(280,320)" d="M7.871548935464067,0A7.871548935464067,7.871548935464067,0,1,1,-7.871548935464067,0A7.871548935464067,7.871548935464067,0,1,1,7.871548935464067,0" fill="rgb(171, 204, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.75; y: 0.2; val: 0.477308231489" role="graphics-symbol" aria-roledescription="point" transform="translate(300,320)" d="M8.03736011101768,0A8.03736011101768,8.03736011101768,0,1,1,-8.03736011101768,0A8.03736011101768,8.03736011101768,0,1,1,8.03736011101768,0" fill="rgb(164, 209, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.8; y: 0.2; val: 0.478403613635" role="graphics-symbol" aria-roledescription="point" transform="translate(320,320)" d="M8.041276262111847,0A8.041276262111847,8.041276262111847,0,1,1,-8.041276262111847,0A8.041276262111847,8.041276262111847,0,1,1,8.041276262111847,0" fill="rgb(164, 209, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.85; y: 0.2; val: 0.431310547864" role="graphics-symbol" aria-roledescription="point" transform="translate(340.00000000000006,320)" d="M7.8711530904951585,0A7.8711530904951585,7.8711530904951585,0,1,1,-7.8711530904951585,0A7.8711530904951585,7.8711530904951585,0,1,1,7.8711530904951585,0" fill="rgb(171, 204, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.9; y: 0.2; val: 0.339928169984" role="graphics-symbol" aria-roledescription="point" transform="translate(360,320)" d="M7.530077992373016,0A7.530077992373016,7.530077992373016,0,1,1,-7.530077992373016,0A7.530077992373016,7.530077992373016,0,1,1,7.530077992373016,0" fill="rgb(184, 194, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.95; y: 0.2; val: 0.214848256857" role="graphics-symbol" aria-roledescription="point" transform="translate(380,320)" d="M7.036479718501345,0A7.036479718501345,7.036479718501345,0,1,1,-7.036479718501345,0A7.036479718501345,7.036479718501345,0,1,1,7.036479718501345,0" fill="rgb(200, 179, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0; y: 0.25; val: 0.612564734116" role="graphics-symbol" aria-roledescription="point" transform="translate(0,300)" d="M8.507301040802036,0A8.507301040802036,8.507301040802036,0,1,1,-8.507301040802036,0A8.507301040802036,8.507301040802036,0,1,1,8.507301040802036,0" fill="rgb(139, 224, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.05; y: 0.25; val: 0.730396247766" role="graphics-symbol" aria-roledescription="point" transform="translate(20,300)" d="M8.896490070213805,0A8.896490070213805,8.896490070213805,0,1,1,-8.896490070213805,0A8.896490070213805,8.896490070213805,0,1,1,8.896490070213805,0" fill="rgb(112, 236, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.1; y: 0.25; val: 0.787414658715" role="graphics-symbol" aria-roledescription="point" transform="translate(40,300)" d="M9.078829870930223,0A9.078829870930223,9.078829870930223,0,1,1,-9.078829870930223,0A9.078829870930223,9.078829870930223,0,1,1,9.078829870930223,0" fill="rgb(95, 242, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.15; y: 0.25; val: 0.770616415232" role="graphics-symbol" aria-roledescription="point" transform="translate(60.00000000000001,300)" d="M9.025493363718954,0A9.025493363718954,9.025493363718954,0,1,1,-9.025493363718954,0A9.025493363718954,9.025493363718954,0,1,1,9.025493363718954,0" fill="rgb(100, 240, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.2; y: 0.25; val: 0.682401079079" role="graphics-symbol" aria-roledescription="point" transform="translate(80,300)" d="M8.740057586291972,0A8.740057586291972,8.740057586291972,0,1,1,-8.740057586291972,0A8.740057586291972,8.740057586291972,0,1,1,8.740057586291972,0" fill="rgb(124, 231, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.25; y: 0.25; val: 0.53950442174" role="graphics-symbol" aria-roledescription="point" transform="translate(100,300)" d="M8.256779671518661,0A8.256779671518661,8.256779671518661,0,1,1,-8.256779671518661,0A8.256779671518661,8.256779671518661,0,1,1,8.256779671518661,0" fill="rgb(153, 216, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.3; y: 0.25; val: 0.368199491967" role="graphics-symbol" aria-roledescription="point" transform="translate(120.00000000000001,300)" d="M7.637225172142365,0A7.637225172142365,7.637225172142365,0,1,1,-7.637225172142365,0A7.637225172142365,7.637225172142365,0,1,1,7.637225172142365,0" fill="rgb(180, 197, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.35; y: 0.25; val: 0.200544560826" role="graphics-symbol" aria-roledescription="point" transform="translate(140,300)" d="M6.977809162760808,0A6.977809162760808,6.977809162760808,0,1,1,-6.977809162760808,0A6.977809162760808,6.977809162760808,0,1,1,6.977809162760808,0" fill="rgb(202, 177, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.4; y: 0.25; val: 0.0691445446961" role="graphics-symbol" aria-roledescription="point" transform="translate(160,300)" d="M6.413773577436572,0A6.413773577436572,6.413773577436572,0,1,1,-6.413773577436572,0A6.413773577436572,6.413773577436572,0,1,1,6.413773577436572,0" fill="rgb(216, 160, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.45; y: 0.25; val: −0.00134211841974" role="graphics-symbol" aria-roledescription="point" transform="translate(180,300)" d="M6.089718658866858,0A6.089718658866858,6.089718658866858,0,1,1,-6.089718658866858,0A6.089718658866858,6.089718658866858,0,1,1,6.089718658866858,0" fill="rgb(223, 150, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.5; y: 0.25; val: −0.000627631900898" role="graphics-symbol" aria-roledescription="point" transform="translate(200,300)" d="M6.093089898424639,0A6.093089898424639,6.093089898424639,0,1,1,-6.093089898424639,0A6.093089898424639,6.093089898424639,0,1,1,6.093089898424639,0" fill="rgb(223, 150, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.55; y: 0.25; val: 0.0640547653011" role="graphics-symbol" aria-roledescription="point" transform="translate(220.00000000000003,300)" d="M6.390924292221626,0A6.390924292221626,6.390924292221626,0,1,1,-6.390924292221626,0A6.390924292221626,6.390924292221626,0,1,1,6.390924292221626,0" fill="rgb(217, 159, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.6; y: 0.25; val: 0.169074566596" role="graphics-symbol" aria-roledescription="point" transform="translate(240.00000000000003,300)" d="M6.846956708280885,0A6.846956708280885,6.846956708280885,0,1,1,-6.846956708280885,0A6.846956708280885,6.846956708280885,0,1,1,6.846956708280885,0" fill="rgb(206, 173, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.65; y: 0.25; val: 0.281200891296" role="graphics-symbol" aria-roledescription="point" transform="translate(260,300)" d="M7.302480856784659,0A7.302480856784659,7.302480856784659,0,1,1,-7.302480856784659,0A7.302480856784659,7.302480856784659,0,1,1,7.302480856784659,0" fill="rgb(192, 187, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.7; y: 0.25; val: 0.371436436861" role="graphics-symbol" aria-roledescription="point" transform="translate(280,300)" d="M7.649397307155194,0A7.649397307155194,7.649397307155194,0,1,1,-7.649397307155194,0A7.649397307155194,7.649397307155194,0,1,1,7.649397307155194,0" fill="rgb(180, 197, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.75; y: 0.25; val: 0.423955604197" role="graphics-symbol" aria-roledescription="point" transform="translate(300,300)" d="M7.844250332072556,0A7.844250332072556,7.844250332072556,0,1,1,-7.844250332072556,0A7.844250332072556,7.844250332072556,0,1,1,7.844250332072556,0" fill="rgb(172, 203, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.8; y: 0.25; val: 0.429461576567" role="graphics-symbol" aria-roledescription="point" transform="translate(320,300)" d="M7.864398621851761,0A7.864398621851761,7.864398621851761,0,1,1,-7.864398621851761,0A7.864398621851761,7.864398621851761,0,1,1,7.864398621851761,0" fill="rgb(171, 204, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.85; y: 0.25; val: 0.385656956785" role="graphics-symbol" aria-roledescription="point" transform="translate(340.00000000000006,300)" d="M7.70264396348391,0A7.70264396348391,7.70264396348391,0,1,1,-7.70264396348391,0A7.70264396348391,7.70264396348391,0,1,1,7.70264396348391,0" fill="rgb(178, 199, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.9; y: 0.25; val: 0.298341587895" role="graphics-symbol" aria-roledescription="point" transform="translate(360,300)" d="M7.369635908558888,0A7.369635908558888,7.369635908558888,0,1,1,-7.369635908558888,0A7.369635908558888,7.369635908558888,0,1,1,7.369635908558888,0" fill="rgb(190, 189, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.95; y: 0.25; val: 0.180325751114" role="graphics-symbol" aria-roledescription="point" transform="translate(380,300)" d="M6.894024464748861,0A6.894024464748861,6.894024464748861,0,1,1,-6.894024464748861,0A6.894024464748861,6.894024464748861,0,1,1,6.894024464748861,0" fill="rgb(204, 174, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0; y: 0.3; val: 0.515581343879" role="graphics-symbol" aria-roledescription="point" transform="translate(0,280)" d="M8.173079527110952,0A8.173079527110952,8.173079527110952,0,1,1,-8.173079527110952,0A8.173079527110952,8.173079527110952,0,1,1,8.173079527110952,0" fill="rgb(157, 214, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.05; y: 0.3; val: 0.611901502043" role="graphics-symbol" aria-roledescription="point" transform="translate(20,280)" d="M8.505060030138162,0A8.505060030138162,8.505060030138162,0,1,1,-8.505060030138162,0A8.505060030138162,8.505060030138162,0,1,1,8.505060030138162,0" fill="rgb(139, 224, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.1; y: 0.3; val: 0.643363137938" role="graphics-symbol" aria-roledescription="point" transform="translate(40,280)" d="M8.610724138943034,0A8.610724138943034,8.610724138943034,0,1,1,-8.610724138943034,0A8.610724138943034,8.610724138943034,0,1,1,8.610724138943034,0" fill="rgb(133, 227, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.15; y: 0.3; val: 0.600269997283" role="graphics-symbol" aria-roledescription="point" transform="translate(60.00000000000001,280)" d="M8.465661629937692,0A8.465661629937692,8.465661629937692,0,1,1,-8.465661629937692,0A8.465661629937692,8.465661629937692,0,1,1,8.465661629937692,0" fill="rgb(142, 223, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.2; y: 0.3; val: 0.489555070881" role="graphics-symbol" aria-roledescription="point" transform="translate(80,280)" d="M8.081036344996235,0A8.081036344996235,8.081036344996235,0,1,1,-8.081036344996235,0A8.081036344996235,8.081036344996235,0,1,1,8.081036344996235,0" fill="rgb(162, 211, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.25; y: 0.3; val: 0.332971951287" role="graphics-symbol" aria-roledescription="point" transform="translate(100,280)" d="M7.503479657149493,0A7.503479657149493,7.503479657149493,0,1,1,-7.503479657149493,0A7.503479657149493,7.503479657149493,0,1,1,7.503479657149493,0" fill="rgb(185, 193, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.3; y: 0.3; val: 0.161659975634" role="graphics-symbol" aria-roledescription="point" transform="translate(120.00000000000001,280)" d="M6.815761126216154,0A6.815761126216154,6.815761126216154,0,1,1,-6.815761126216154,0A6.815761126216154,6.815761126216154,0,1,1,6.815761126216154,0" fill="rgb(206, 172, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.35; y: 0.3; val: 0.00825359711026" role="graphics-symbol" aria-roledescription="point" transform="translate(140,280)" d="M6.134840535304541,0A6.134840535304541,6.134840535304541,0,1,1,-6.134840535304541,0A6.134840535304541,6.134840535304541,0,1,1,6.134840535304541,0" fill="rgb(222, 152, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.4; y: 0.3; val: −0.0985131360334" role="graphics-symbol" aria-roledescription="point" transform="translate(160,280)" d="M5.6123921663245495,0A5.6123921663245495,5.6123921663245495,0,1,1,-5.6123921663245495,0A5.6123921663245495,5.6123921663245495,0,1,1,5.6123921663245495,0" fill="rgb(231, 136, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.45; y: 0.3; val: −0.1385244746" role="graphics-symbol" aria-roledescription="point" transform="translate(180,280)" d="M5.403605754471149,0A5.403605754471149,5.403605754471149,0,1,1,-5.403605754471149,0A5.403605754471149,5.403605754471149,0,1,1,5.403605754471149,0" fill="rgb(234, 130, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.5; y: 0.3; val: −0.106394348525" role="graphics-symbol" aria-roledescription="point" transform="translate(200,280)" d="M5.5718853512418045,0A5.5718853512418045,5.5718853512418045,0,1,1,-5.5718853512418045,0A5.5718853512418045,5.5718853512418045,0,1,1,5.5718853512418045,0" fill="rgb(232, 135, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.55; y: 0.3; val: −0.0140488571634" role="graphics-symbol" aria-roledescription="point" transform="translate(220.00000000000003,280)" d="M6.02944822329892,0A6.02944822329892,6.02944822329892,0,1,1,-6.02944822329892,0A6.02944822329892,6.02944822329892,0,1,1,6.02944822329892,0" fill="rgb(224, 149, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.6; y: 0.3; val: 0.111665825189" role="graphics-symbol" aria-roledescription="point" transform="translate(240.00000000000003,280)" d="M6.601572718606333,0A6.601572718606333,6.601572718606333,0,1,1,-6.601572718606333,0A6.601572718606333,6.601572718606333,0,1,1,6.601572718606333,0" fill="rgb(212, 165, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.65; y: 0.3; val: 0.237762239217" role="graphics-symbol" aria-roledescription="point" transform="translate(260,280)" d="M7.129461557717185,0A7.129461557717185,7.129461557717185,0,1,1,-7.129461557717185,0A7.129461557717185,7.129461557717185,0,1,1,7.129461557717185,0" fill="rgb(198, 181, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.7; y: 0.3; val: 0.339309922692" role="graphics-symbol" aria-roledescription="point" transform="translate(280,280)" d="M7.527717819499687,0A7.527717819499687,7.527717819499687,0,1,1,-7.527717819499687,0A7.527717819499687,7.527717819499687,0,1,1,7.527717819499687,0" fill="rgb(185, 194, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.75; y: 0.3; val: 0.401263590969" role="graphics-symbol" aria-roledescription="point" transform="translate(300,280)" d="M7.760660252494801,0A7.760660252494801,7.760660252494801,0,1,1,-7.760660252494801,0A7.760660252494801,7.760660252494801,0,1,1,7.760660252494801,0" fill="rgb(176, 201, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.8; y: 0.3; val: 0.414612443576" role="graphics-symbol" aria-roledescription="point" transform="translate(320,280)" d="M7.809941482234163,0A7.809941482234163,7.809941482234163,0,1,1,-7.809941482234163,0A7.809941482234163,7.809941482234163,0,1,1,7.809941482234163,0" fill="rgb(174, 202, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.85; y: 0.3; val: 0.378270128948" role="graphics-symbol" aria-roledescription="point" transform="translate(340.00000000000006,280)" d="M7.675031173464367,0A7.675031173464367,7.675031173464367,0,1,1,-7.675031173464367,0A7.675031173464367,7.675031173464367,0,1,1,7.675031173464367,0" fill="rgb(179, 198, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.9; y: 0.3; val: 0.299643362752" role="graphics-symbol" aria-roledescription="point" transform="translate(360,280)" d="M7.374711110537653,0A7.374711110537653,7.374711110537653,0,1,1,-7.374711110537653,0A7.374711110537653,7.374711110537653,0,1,1,7.374711110537653,0" fill="rgb(190, 189, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.95; y: 0.3; val: 0.193175373369" role="graphics-symbol" aria-roledescription="point" transform="translate(380,280)" d="M6.947389022332044,0A6.947389022332044,6.947389022332044,0,1,1,-6.947389022332044,0A6.947389022332044,6.947389022332044,0,1,1,6.947389022332044,0" fill="rgb(203, 176, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0; y: 0.35; val: 0.343779313632" role="graphics-symbol" aria-roledescription="point" transform="translate(0,259.99999999999994)" d="M7.544763195824444,0A7.544763195824444,7.544763195824444,0,1,1,-7.544763195824444,0A7.544763195824444,7.544763195824444,0,1,1,7.544763195824444,0" fill="rgb(184, 194, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.05; y: 0.35; val: 0.422073133431" role="graphics-symbol" aria-roledescription="point" transform="translate(20,259.99999999999994)" d="M7.8373498273199695,0A7.8373498273199695,7.8373498273199695,0,1,1,-7.8373498273199695,0A7.8373498273199695,7.8373498273199695,0,1,1,7.8373498273199695,0" fill="rgb(173, 203, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.1; y: 0.35; val: 0.435197898269" role="graphics-symbol" aria-roledescription="point" transform="translate(40,259.99999999999994)" d="M7.885335083177861,0A7.885335083177861,7.885335083177861,0,1,1,-7.885335083177861,0A7.885335083177861,7.885335083177861,0,1,1,7.885335083177861,0" fill="rgb(171, 205, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.15; y: 0.35; val: 0.376682282023" role="graphics-symbol" aria-roledescription="point" transform="translate(60.00000000000001,259.99999999999994)" d="M7.669082641269538,0A7.669082641269538,7.669082641269538,0,1,1,-7.669082641269538,0A7.669082641269538,7.669082641269538,0,1,1,7.669082641269538,0" fill="rgb(179, 198, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.2; y: 0.35; val: 0.256916464625" role="graphics-symbol" aria-roledescription="point" transform="translate(80,259.99999999999994)" d="M7.206266265677318,0A7.206266265677318,7.206266265677318,0,1,1,-7.206266265677318,0A7.206266265677318,7.206266265677318,0,1,1,7.206266265677318,0" fill="rgb(195, 184, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.25; y: 0.35; val: 0.100648758321" role="graphics-symbol" aria-roledescription="point" transform="translate(100,259.99999999999994)" d="M6.5534313988258335,0A6.5534313988258335,6.5534313988258335,0,1,1,-6.5534313988258335,0A6.5534313988258335,6.5534313988258335,0,1,1,6.5534313988258335,0" fill="rgb(213, 164, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.3; y: 0.35; val: −0.0586330048915" role="graphics-symbol" aria-roledescription="point" transform="translate(120.00000000000001,259.99999999999994)" d="M5.813036577303993,0A5.813036577303993,5.813036577303993,0,1,1,-5.813036577303993,0A5.813036577303993,5.813036577303993,0,1,1,5.813036577303993,0" fill="rgb(228, 142, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.35; y: 0.35; val: −0.186645183036" role="graphics-symbol" aria-roledescription="point" transform="translate(140,259.99999999999994)" d="M5.1412848327385,0A5.1412848327385,5.1412848327385,0,1,1,-5.1412848327385,0A5.1412848327385,5.1412848327385,0,1,1,5.1412848327385,0" fill="rgb(238, 123, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.4; y: 0.35; val: −0.257333846253" role="graphics-symbol" aria-roledescription="point" transform="translate(160,259.99999999999994)" d="M4.7296278823637925,0A4.7296278823637925,4.7296278823637925,0,1,1,-4.7296278823637925,0A4.7296278823637925,4.7296278823637925,0,1,1,4.7296278823637925,0" fill="rgb(242, 112, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.45; y: 0.35; val: −0.257272257166" role="graphics-symbol" aria-roledescription="point" transform="translate(180,259.99999999999994)" d="M4.730002141667774,0A4.730002141667774,4.730002141667774,0,1,1,-4.730002141667774,0A4.730002141667774,4.730002141667774,0,1,1,4.730002141667774,0" fill="rgb(242, 112, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.5; y: 0.35; val: −0.18736449702" role="graphics-symbol" aria-roledescription="point" transform="translate(200,259.99999999999994)" d="M5.13726202035072,0A5.13726202035072,5.13726202035072,0,1,1,-5.13726202035072,0A5.13726202035072,5.13726202035072,0,1,1,5.13726202035072,0" fill="rgb(238, 123, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.55; y: 0.35; val: −0.0642969394128" role="graphics-symbol" aria-roledescription="point" transform="translate(220.00000000000003,259.99999999999994)" d="M5.7849642717106144,0A5.7849642717106144,5.7849642717106144,0,1,1,-5.7849642717106144,0A5.7849642717106144,5.7849642717106144,0,1,1,5.7849642717106144,0" fill="rgb(228, 141, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.6; y: 0.35; val: 0.0832897532566" role="graphics-symbol" aria-roledescription="point" transform="translate(240.00000000000003,259.99999999999994)" d="M6.476851643309514,0A6.476851643309514,6.476851643309514,0,1,1,-6.476851643309514,0A6.476851643309514,6.476851643309514,0,1,1,6.476851643309514,0" fill="rgb(215, 162, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.65; y: 0.35; val: 0.225529908394" role="graphics-symbol" aria-roledescription="point" transform="translate(260,259.99999999999994)" d="M7.079976359485677,0A7.079976359485677,7.079976359485677,0,1,1,-7.079976359485677,0A7.079976359485677,7.079976359485677,0,1,1,7.079976359485677,0" fill="rgb(199, 180, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.7; y: 0.35; val: 0.341147774241" role="graphics-symbol" aria-roledescription="point" transform="translate(280,259.99999999999994)" d="M7.534731691237536,0A7.534731691237536,7.534731691237536,0,1,1,-7.534731691237536,0A7.534731691237536,7.534731691237536,0,1,1,7.534731691237536,0" fill="rgb(184, 194, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.75; y: 0.35; val: 0.41497106037" role="graphics-symbol" aria-roledescription="point" transform="translate(300,259.99999999999994)" d="M7.811261133422339,0A7.811261133422339,7.811261133422339,0,1,1,-7.811261133422339,0A7.811261133422339,7.811261133422339,0,1,1,7.811261133422339,0" fill="rgb(174, 202, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.8; y: 0.35; val: 0.438632855875" role="graphics-symbol" aria-roledescription="point" transform="translate(320,259.99999999999994)" d="M7.897845444484534,0A7.897845444484534,7.897845444484534,0,1,1,-7.897845444484534,0A7.897845444484534,7.897845444484534,0,1,1,7.897845444484534,0" fill="rgb(170, 205, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.85; y: 0.35; val: 0.412292336843" role="graphics-symbol" aria-roledescription="point" transform="translate(340.00000000000006,259.99999999999994)" d="M7.801398474916027,0A7.801398474916027,7.801398474916027,0,1,1,-7.801398474916027,0A7.801398474916027,7.801398474916027,0,1,1,7.801398474916027,0" fill="rgb(174, 202, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.9; y: 0.35; val: 0.344700222243" role="graphics-symbol" aria-roledescription="point" transform="translate(360,259.99999999999994)" d="M7.548270577148008,0A7.548270577148008,7.548270577148008,0,1,1,-7.548270577148008,0A7.548270577148008,7.548270577148008,0,1,1,7.548270577148008,0" fill="rgb(184, 194, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.95; y: 0.35; val: 0.25145033422" role="graphics-symbol" aria-roledescription="point" transform="translate(380,259.99999999999994)" d="M7.184431872819692,0A7.184431872819692,7.184431872819692,0,1,1,-7.184431872819692,0A7.184431872819692,7.184431872819692,0,1,1,7.184431872819692,0" fill="rgb(196, 183, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0; y: 0.4; val: 0.127458556443" role="graphics-symbol" aria-roledescription="point" transform="translate(0,240)" d="M6.669976266168722,0A6.669976266168722,6.669976266168722,0,1,1,-6.669976266168722,0A6.669976266168722,6.669976266168722,0,1,1,6.669976266168722,0" fill="rgb(210, 168, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.05; y: 0.4; val: 0.191370103214" role="graphics-symbol" aria-roledescription="point" transform="translate(20,240)" d="M6.939916500244037,0A6.939916500244037,6.939916500244037,0,1,1,-6.939916500244037,0A6.939916500244037,6.939916500244037,0,1,1,6.939916500244037,0" fill="rgb(203, 176, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.1; y: 0.4; val: 0.19320746219" role="graphics-symbol" aria-roledescription="point" transform="translate(40,240)" d="M6.9475217743090285,0A6.9475217743090285,6.9475217743090285,0,1,1,-6.9475217743090285,0A6.9475217743090285,6.9475217743090285,0,1,1,6.9475217743090285,0" fill="rgb(203, 176, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.15; y: 0.4; val: 0.129441738514" role="graphics-symbol" aria-roledescription="point" transform="translate(60.00000000000001,240)" d="M6.678516570561772,0A6.678516570561772,6.678516570561772,0,1,1,-6.678516570561772,0A6.678516570561772,6.678516570561772,0,1,1,6.678516570561772,0" fill="rgb(210, 168, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.2; y: 0.4; val: 0.0128973725343" role="graphics-symbol" aria-roledescription="point" transform="translate(80,240)" d="M6.156558188658788,0A6.156558188658788,6.156558188658788,0,1,1,-6.156558188658788,0A6.156558188658788,6.156558188658788,0,1,1,6.156558188658788,0" fill="rgb(222, 152, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.25; y: 0.4; val: −0.130373727924" role="graphics-symbol" aria-roledescription="point" transform="translate(100,240)" d="M5.446786976915829,0A5.446786976915829,5.446786976915829,0,1,1,-5.446786976915829,0A5.446786976915829,5.446786976915829,0,1,1,5.446786976915829,0" fill="rgb(234, 132, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.3; y: 0.4; val: −0.266857086838" role="graphics-symbol" aria-roledescription="point" transform="translate(120.00000000000001,240)" d="M4.671397110893093,0A4.671397110893093,4.671397110893093,0,1,1,-4.671397110893093,0A4.671397110893093,4.671397110893093,0,1,1,4.671397110893093,0" fill="rgb(243, 110, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.35; y: 0.4; val: −0.363108626804" role="graphics-symbol" aria-roledescription="point" transform="translate(140,240)" d="M4.035973020250555,0A4.035973020250555,4.035973020250555,0,1,1,-4.035973020250555,0A4.035973020250555,4.035973020250555,0,1,1,4.035973020250555,0" fill="rgb(247, 93, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.4; y: 0.4; val: −0.394349197292" role="graphics-symbol" aria-roledescription="point" transform="translate(160,240)" d="M3.807001674114154,0A3.807001674114154,3.807001674114154,0,1,1,-3.807001674114154,0A3.807001674114154,3.807001674114154,0,1,1,3.807001674114154,0" fill="rgb(249, 87, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.45; y: 0.4; val: −0.351908145969" role="graphics-symbol" aria-roledescription="point" transform="translate(180,240)" d="M4.114963031648837,0A4.114963031648837,4.114963031648837,0,1,1,-4.114963031648837,0A4.114963031648837,4.114963031648837,0,1,1,4.114963031648837,0" fill="rgb(247, 95, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.5; y: 0.4; val: −0.243603832579" role="graphics-symbol" aria-roledescription="point" transform="translate(200,240)" d="M4.8123412980160545,0A4.8123412980160545,4.8123412980160545,0,1,1,-4.8123412980160545,0A4.8123412980160545,4.8123412980160545,0,1,1,4.8123412980160545,0" fill="rgb(241, 114, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.55; y: 0.4; val: −0.0905651730836" role="graphics-symbol" aria-roledescription="point" transform="translate(220.00000000000003,240)" d="M5.652948110323446,0A5.652948110323446,5.652948110323446,0,1,1,-5.652948110323446,0A5.652948110323446,5.652948110323446,0,1,1,5.652948110323446,0" fill="rgb(230, 138, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.6; y: 0.4; val: 0.0789738614759" role="graphics-symbol" aria-roledescription="point" transform="translate(240.00000000000003,240)" d="M6.457671001459845,0A6.457671001459845,6.457671001459845,0,1,1,-6.457671001459845,0A6.457671001459845,6.457671001459845,0,1,1,6.457671001459845,0" fill="rgb(215, 161, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.65; y: 0.4; val: 0.2398619072" role="graphics-symbol" aria-roledescription="point" transform="translate(260,240)" d="M7.13792114762124,0A7.13792114762124,7.13792114762124,0,1,1,-7.13792114762124,0A7.13792114762124,7.13792114762124,0,1,1,7.13792114762124,0" fill="rgb(197, 182, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.7; y: 0.4; val: 0.371589430502" role="graphics-symbol" aria-roledescription="point" transform="translate(280,240)" d="M7.649972141678704,0A7.649972141678704,7.649972141678704,0,1,1,-7.649972141678704,0A7.649972141678704,7.649972141678704,0,1,1,7.649972141678704,0" fill="rgb(180, 197, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.75; y: 0.4; val: 0.45866359575" role="graphics-symbol" aria-roledescription="point" transform="translate(300,240)" d="M7.970407715358097,0A7.970407715358097,7.970407715358097,0,1,1,-7.970407715358097,0A7.970407715358097,7.970407715358097,0,1,1,7.970407715358097,0" fill="rgb(167, 207, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.8; y: 0.4; val: 0.493501932509" role="graphics-symbol" aria-roledescription="point" transform="translate(320,240)" d="M8.095061934344757,0A8.095061934344757,8.095061934344757,0,1,1,-8.095061934344757,0A8.095061934344757,8.095061934344757,0,1,1,8.095061934344757,0" fill="rgb(161, 211, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.85; y: 0.4; val: 0.477502732464" role="graphics-symbol" aria-roledescription="point" transform="translate(340.00000000000006,240)" d="M8.038055619715921,0A8.038055619715921,8.038055619715921,0,1,1,-8.038055619715921,0A8.038055619715921,8.038055619715921,0,1,1,8.038055619715921,0" fill="rgb(164, 209, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.9; y: 0.4; val: 0.420598886739" role="graphics-symbol" aria-roledescription="point" transform="translate(360,240)" d="M7.8319414896071065,0A7.8319414896071065,7.8319414896071065,0,1,1,-7.8319414896071065,0A7.8319414896071065,7.8319414896071065,0,1,1,7.8319414896071065,0" fill="rgb(173, 203, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.95; y: 0.4; val: 0.33925965759" role="graphics-symbol" aria-roledescription="point" transform="translate(380,240)" d="M7.527525898820928,0A7.527525898820928,7.527525898820928,0,1,1,-7.527525898820928,0A7.527525898820928,7.527525898820928,0,1,1,7.527525898820928,0" fill="rgb(185, 194, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0; y: 0.45; val: −0.0931593143924" role="graphics-symbol" aria-roledescription="point" transform="translate(0,220.00000000000003)" d="M5.639743087013142,0A5.639743087013142,5.639743087013142,0,1,1,-5.639743087013142,0A5.639743087013142,5.639743087013142,0,1,1,5.639743087013142,0" fill="rgb(231, 137, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.05; y: 0.45; val: −0.0404238620434" role="graphics-symbol" aria-roledescription="point" transform="translate(20,220.00000000000003)" d="M5.902382485964208,0A5.902382485964208,5.902382485964208,0,1,1,-5.902382485964208,0A5.902382485964208,5.902382485964208,0,1,1,5.902382485964208,0" fill="rgb(226, 145, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.1; y: 0.45; val: −0.0442501115332" role="graphics-symbol" aria-roledescription="point" transform="translate(40,220.00000000000003)" d="M5.883721008292353,0A5.883721008292353,5.883721008292353,0,1,1,-5.883721008292353,0A5.883721008292353,5.883721008292353,0,1,1,5.883721008292353,0" fill="rgb(227, 144, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.15; y: 0.45; val: −0.10568996215" role="graphics-symbol" aria-roledescription="point" transform="translate(60.00000000000001,220.00000000000003)" d="M5.575517638941458,0A5.575517638941458,5.575517638941458,0,1,1,-5.575517638941458,0A5.575517638941458,5.575517638941458,0,1,1,5.575517638941458,0" fill="rgb(232, 135, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.2; y: 0.45; val: −0.210459161553" role="graphics-symbol" aria-roledescription="point" transform="translate(80,220.00000000000003)" d="M5.006385877350087,0A5.006385877350087,5.006385877350087,0,1,1,-5.006385877350087,0A5.006385877350087,5.006385877350087,0,1,1,5.006385877350087,0" fill="rgb(239, 119, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.25; y: 0.45; val: −0.332583475754" role="graphics-symbol" aria-roledescription="point" transform="translate(100,220.00000000000003)" d="M4.247795887287611,0A4.247795887287611,4.247795887287611,0,1,1,-4.247795887287611,0A4.247795887287611,4.247795887287611,0,1,1,4.247795887287611,0" fill="rgb(246, 99, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.3; y: 0.45; val: −0.440237726159" role="graphics-symbol" aria-roledescription="point" transform="translate(120.00000000000001,220.00000000000003)" d="M3.443171468433517,0A3.443171468433517,3.443171468433517,0,1,1,-3.443171468433517,0A3.443171468433517,3.443171468433517,0,1,1,3.443171468433517,0" fill="rgb(251, 78, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.35; y: 0.45; val: −0.502814783954" role="graphics-symbol" aria-roledescription="point" transform="translate(140,220.00000000000003)" d="M2.87372287846977,0A2.87372287846977,2.87372287846977,0,1,1,-2.87372287846977,0A2.87372287846977,2.87372287846977,0,1,1,2.87372287846977,0" fill="rgb(253, 63, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.4; y: 0.45; val: −0.498425314376" role="graphics-symbol" aria-roledescription="point" transform="translate(160,220.00000000000003)" d="M2.917294146266329,0A2.917294146266329,2.917294146266329,0,1,1,-2.917294146266329,0A2.917294146266329,2.917294146266329,0,1,1,2.917294146266329,0" fill="rgb(252, 65, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.45; y: 0.45; val: −0.420919515551" role="graphics-symbol" aria-roledescription="point" transform="translate(180,220.00000000000003)" d="M3.6008204049360666,0A3.6008204049360666,3.6008204049360666,0,1,1,-3.6008204049360666,0A3.6008204049360666,3.6008204049360666,0,1,1,3.6008204049360666,0" fill="rgb(250, 82, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.5; y: 0.45; val: −0.281850581622" role="graphics-symbol" aria-roledescription="point" transform="translate(200,220.00000000000003)" d="M4.578217210120989,0A4.578217210120989,4.578217210120989,0,1,1,-4.578217210120989,0A4.578217210120989,4.578217210120989,0,1,1,4.578217210120989,0" fill="rgb(243, 108, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.55; y: 0.45; val: −0.104224492002" role="graphics-symbol" aria-roledescription="point" transform="translate(220.00000000000003,220.00000000000003)" d="M5.583067011513082,0A5.583067011513082,5.583067011513082,0,1,1,-5.583067011513082,0A5.583067011513082,5.583067011513082,0,1,1,5.583067011513082,0" fill="rgb(232, 136, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.6; y: 0.45; val: 0.0865049459688" role="graphics-symbol" aria-roledescription="point" transform="translate(240.00000000000003,220.00000000000003)" d="M6.4911037313532205,0A6.4911037313532205,6.4911037313532205,0,1,1,-6.4911037313532205,0A6.4911037313532205,6.4911037313532205,0,1,1,6.4911037313532205,0" fill="rgb(214, 162, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.65; y: 0.45; val: 0.266773067348" role="graphics-symbol" aria-roledescription="point" transform="translate(260,220.00000000000003)" d="M7.245472051084957,0A7.245472051084957,7.245472051084957,0,1,1,-7.245472051084957,0A7.245472051084957,7.245472051084957,0,1,1,7.245472051084957,0" fill="rgb(194, 185, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.7; y: 0.45; val: 0.414917860849" role="graphics-symbol" aria-roledescription="point" transform="translate(280,220.00000000000003)" d="M7.8110653819660945,0A7.8110653819660945,7.8110653819660945,0,1,1,-7.8110653819660945,0A7.8110653819660945,7.8110653819660945,0,1,1,7.8110653819660945,0" fill="rgb(174, 202, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.75; y: 0.45; val: 0.514941139843" role="graphics-symbol" aria-roledescription="point" transform="translate(300,220.00000000000003)" d="M8.170827853123889,0A8.170827853123889,8.170827853123889,0,1,1,-8.170827853123889,0A8.170827853123889,8.170827853123889,0,1,1,8.170827853123889,0" fill="rgb(157, 213, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.8; y: 0.45; val: 0.559927123954" role="graphics-symbol" aria-roledescription="point" transform="translate(320,220.00000000000003)" d="M8.327567374953471,0A8.327567374953471,8.327567374953471,0,1,1,-8.327567374953471,0A8.327567374953471,8.327567374953471,0,1,1,8.327567374953471,0" fill="rgb(149, 218, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.85; y: 0.45; val: 0.552463930961" role="graphics-symbol" aria-roledescription="point" transform="translate(340.00000000000006,220.00000000000003)" d="M8.301768976276216,0A8.301768976276216,8.301768976276216,0,1,1,-8.301768976276216,0A8.301768976276216,8.301768976276216,0,1,1,8.301768976276216,0" fill="rgb(151, 218, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.9; y: 0.45; val: 0.503640133358" role="graphics-symbol" aria-roledescription="point" transform="translate(360,220.00000000000003)" d="M8.130978213614256,0A8.130978213614256,8.130978213614256,0,1,1,-8.130978213614256,0A8.130978213614256,8.130978213614256,0,1,1,8.130978213614256,0" fill="rgb(159, 212, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.95; y: 0.45; val: 0.430805429923" role="graphics-symbol" aria-roledescription="point" transform="translate(380,220.00000000000003)" d="M7.8693084220130185,0A7.8693084220130185,7.8693084220130185,0,1,1,-7.8693084220130185,0A7.8693084220130185,7.8693084220130185,0,1,1,7.8693084220130185,0" fill="rgb(171, 204, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0; y: 0.5; val: −0.277229777103" role="graphics-symbol" aria-roledescription="point" transform="translate(0,200)" d="M4.607134978745329,0A4.607134978745329,4.607134978745329,0,1,1,-4.607134978745329,0A4.607134978745329,4.607134978745329,0,1,1,4.607134978745329,0" fill="rgb(243, 108, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.05; y: 0.5; val: −0.233415351116" role="graphics-symbol" aria-roledescription="point" transform="translate(20,200)" d="M4.872812130820147,0A4.872812130820147,4.872812130820147,0,1,1,-4.872812130820147,0A4.872812130820147,4.872812130820147,0,1,1,4.872812130820147,0" fill="rgb(241, 116, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.1; y: 0.5; val: −0.239537692213" role="graphics-symbol" aria-roledescription="point" transform="translate(40,200)" d="M4.836565376004241,0A4.836565376004241,4.836565376004241,0,1,1,-4.836565376004241,0A4.836565376004241,4.836565376004241,0,1,1,4.836565376004241,0" fill="rgb(241, 115, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.15; y: 0.5; val: −0.294777659517" role="graphics-symbol" aria-roledescription="point" transform="translate(60.00000000000001,200)" d="M4.4963295582935,0A4.4963295582935,4.4963295582935,0,1,1,-4.4963295582935,0A4.4963295582935,4.4963295582935,0,1,1,4.4963295582935,0" fill="rgb(244, 105, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.2; y: 0.5; val: −0.384292032428" role="graphics-symbol" aria-roledescription="point" transform="translate(80,200)" d="M3.8821878504571283,0A3.8821878504571283,3.8821878504571283,0,1,1,-3.8821878504571283,0A3.8821878504571283,3.8821878504571283,0,1,1,3.8821878504571283,0" fill="rgb(248, 89, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.25; y: 0.5; val: −0.483243110827" role="graphics-symbol" aria-roledescription="point" transform="translate(100,200)" d="M3.0632223091977218,0A3.0632223091977218,3.0632223091977218,0,1,1,-3.0632223091977218,0A3.0632223091977218,3.0632223091977218,0,1,1,3.0632223091977218,0" fill="rgb(252, 68, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.3; y: 0.5; val: −0.56260033562" role="graphics-symbol" aria-roledescription="point" transform="translate(120.00000000000001,200)" d="M2.1958146709545403,0A2.1958146709545403,2.1958146709545403,0,1,1,-2.1958146709545403,0A2.1958146709545403,2.1958146709545403,0,1,1,2.1958146709545403,0" fill="rgb(254, 47, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.35; y: 0.5; val: −0.595648049201" role="graphics-symbol" aria-roledescription="point" transform="translate(140,200)" d="M1.7093579892652473,0A1.7093579892652473,1.7093579892652473,0,1,1,-1.7093579892652473,0A1.7093579892652473,1.7093579892652473,0,1,1,1.7093579892652473,0" fill="rgb(254, 35, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.4; y: 0.5; val: −0.564286192676" role="graphics-symbol" aria-roledescription="point" transform="translate(160,200)" d="M2.1736359289269584,0A2.1736359289269584,2.1736359289269584,0,1,1,-2.1736359289269584,0A2.1736359289269584,2.1736359289269584,0,1,1,2.1736359289269584,0" fill="rgb(254, 46, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.45; y: 0.5; val: −0.4642604903" role="graphics-symbol" aria-roledescription="point" transform="translate(180,200)" d="M3.236435981127284,0A3.236435981127284,3.236435981127284,0,1,1,-3.236435981127284,0A3.236435981127284,3.236435981127284,0,1,1,3.236435981127284,0" fill="rgb(251, 73, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.5; y: 0.5; val: −0.307156513627" role="graphics-symbol" aria-roledescription="point" transform="translate(200,200)" d="M4.416491817879882,0A4.416491817879882,4.416491817879882,0,1,1,-4.416491817879882,0A4.416491817879882,4.416491817879882,0,1,1,4.416491817879882,0" fill="rgb(245, 103, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.55; y: 0.5; val: −0.113342967428" role="graphics-symbol" aria-roledescription="point" transform="translate(220.00000000000003,200)" d="M5.535925904845689,0A5.535925904845689,5.535925904845689,0,1,1,-5.535925904845689,0A5.535925904845689,5.535925904845689,0,1,1,5.535925904845689,0" fill="rgb(232, 134, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.6; y: 0.5; val: 0.094042362593" role="graphics-symbol" aria-roledescription="point" transform="translate(240.00000000000003,200)" d="M6.524393039369508,0A6.524393039369508,6.524393039369508,0,1,1,-6.524393039369508,0A6.524393039369508,6.524393039369508,0,1,1,6.524393039369508,0" fill="rgb(214, 163, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.65; y: 0.5; val: 0.290161551044" role="graphics-symbol" aria-roledescription="point" transform="translate(260,200)" d="M7.337664240183266,0A7.337664240183266,7.337664240183266,0,1,1,-7.337664240183266,0A7.337664240183266,7.337664240183266,0,1,1,7.337664240183266,0" fill="rgb(191, 188, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.7; y: 0.5; val: 0.451889286096" role="graphics-symbol" aria-roledescription="point" transform="translate(280,200)" d="M7.945941624913841,0A7.945941624913841,7.945941624913841,0,1,1,-7.945941624913841,0A7.945941624913841,7.945941624913841,0,1,1,7.945941624913841,0" fill="rgb(168, 207, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.75; y: 0.5; val: 0.562238435277" role="graphics-symbol" aria-roledescription="point" transform="translate(300,200)" d="M8.335540809403305,0A8.335540809403305,8.335540809403305,0,1,1,-8.335540809403305,0A8.335540809403305,8.335540809403305,0,1,1,8.335540809403305,0" fill="rgb(149, 219, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.8; y: 0.5; val: 0.614525077602" role="graphics-symbol" aria-roledescription="point" transform="translate(320,200)" d="M8.513921443710274,0A8.513921443710274,8.513921443710274,0,1,1,-8.513921443710274,0A8.513921443710274,8.513921443710274,0,1,1,8.513921443710274,0" fill="rgb(139, 224, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.85; y: 0.5; val: 0.612395995874" role="graphics-symbol" aria-roledescription="point" transform="translate(340.00000000000006,200)" d="M8.506730943128455,0A8.506730943128455,8.506730943128455,0,1,1,-8.506730943128455,0A8.506730943128455,8.506730943128455,0,1,1,8.506730943128455,0" fill="rgb(139, 224, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.9; y: 0.5; val: 0.568200916757" role="graphics-symbol" aria-roledescription="point" transform="translate(360,200)" d="M8.35607471993656,0A8.35607471993656,8.35607471993656,0,1,1,-8.35607471993656,0A8.35607471993656,8.35607471993656,0,1,1,8.35607471993656,0" fill="rgb(148, 219, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.95; y: 0.5; val: 0.500507880959" role="graphics-symbol" aria-roledescription="point" transform="translate(380,200)" d="M8.11989864257601,0A8.11989864257601,8.11989864257601,0,1,1,-8.11989864257601,0A8.11989864257601,8.11989864257601,0,1,1,8.11989864257601,0" fill="rgb(160, 212, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0; y: 0.55; val: −0.392852692174" role="graphics-symbol" aria-roledescription="point" transform="translate(0,179.99999999999997)" d="M3.8182831295555575,0A3.8182831295555575,3.8182831295555575,0,1,1,-3.8182831295555575,0A3.8182831295555575,3.8182831295555575,0,1,1,3.8182831295555575,0" fill="rgb(249, 87, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.05; y: 0.55; val: −0.357064353989" role="graphics-symbol" aria-roledescription="point" transform="translate(20,179.99999999999997)" d="M4.07878952755533,0A4.07878952755533,4.07878952755533,0,1,1,-4.07878952755533,0A4.07878952755533,4.07878952755533,0,1,1,4.07878952755533,0" fill="rgb(247, 94, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.1; y: 0.55; val: −0.364778359354" role="graphics-symbol" aria-roledescription="point" transform="translate(40,179.99999999999997)" d="M4.024064636045314,0A4.024064636045314,4.024064636045314,0,1,1,-4.024064636045314,0A4.024064636045314,4.024064636045314,0,1,1,4.024064636045314,0" fill="rgb(248, 93, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.15; y: 0.55; val: −0.413978627938" role="graphics-symbol" aria-roledescription="point" transform="translate(60.00000000000001,179.99999999999997)" d="M3.6558027723870814,0A3.6558027723870814,3.6558027723870814,0,1,1,-3.6558027723870814,0A3.6558027723870814,3.6558027723870814,0,1,1,3.6558027723870814,0" fill="rgb(250, 83, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.2; y: 0.55; val: −0.490030405227" role="graphics-symbol" aria-roledescription="point" transform="translate(80,179.99999999999997)" d="M2.9988620616517525,0A2.9988620616517525,2.9988620616517525,0,1,1,-2.9988620616517525,0A2.9988620616517525,2.9988620616517525,0,1,1,2.9988620616517525,0" fill="rgb(252, 67, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.25; y: 0.55; val: −0.569917015623" role="graphics-symbol" aria-roledescription="point" transform="translate(100,179.99999999999997)" d="M2.0978593603089206,0A2.0978593603089206,2.0978593603089206,0,1,1,-2.0978593603089206,0A2.0978593603089206,2.0978593603089206,0,1,1,2.0978593603089206,0" fill="rgb(254, 44, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.3; y: 0.55; val: −0.627848381929" role="graphics-symbol" aria-roledescription="point" transform="translate(120.00000000000001,179.99999999999997)" d="M1.0348515814754444,0A1.0348515814754444,1.0348515814754444,0,1,1,-1.0348515814754444,0A1.0348515814754444,1.0348515814754444,0,1,1,1.0348515814754444,0" fill="rgb(255, 18, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.35; y: 0.55; val: −0.641061435088" role="graphics-symbol" aria-roledescription="point" transform="translate(140,179.99999999999997)" d="M0.5580193708011356,0A0.5580193708011356,0.5580193708011356,0,1,1,-0.5580193708011356,0A0.5580193708011356,0.5580193708011356,0,1,1,0.5580193708011356,0" fill="rgb(255, 6, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.4; y: 0.55; val: −0.594774190343" role="graphics-symbol" aria-roledescription="point" transform="translate(160,179.99999999999997)" d="M1.7239887404030516,0A1.7239887404030516,1.7239887404030516,0,1,1,-1.7239887404030516,0A1.7239887404030516,1.7239887404030516,0,1,1,1.7239887404030516,0" fill="rgb(254, 35, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.45; y: 0.55; val: −0.4852977369" role="graphics-symbol" aria-roledescription="point" transform="translate(180,179.99999999999997)" d="M3.0438830257208007,0A3.0438830257208007,3.0438830257208007,0,1,1,-3.0438830257208007,0A3.0438830257208007,3.0438830257208007,0,1,1,3.0438830257208007,0" fill="rgb(252, 68, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.5; y: 0.55; val: −0.320549277982" role="graphics-symbol" aria-roledescription="point" transform="translate(200,179.99999999999997)" d="M4.328456696835318,0A4.328456696835318,4.328456696835318,0,1,1,-4.328456696835318,0A4.328456696835318,4.328456696835318,0,1,1,4.328456696835318,0" fill="rgb(245, 101, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.55; y: 0.55; val: −0.118231711256" role="graphics-symbol" aria-roledescription="point" transform="translate(220.00000000000003,179.99999999999997)" d="M5.510485790995084,0A5.510485790995084,5.510485790995084,0,1,1,-5.510485790995084,0A5.510485790995084,5.510485790995084,0,1,1,5.510485790995084,0" fill="rgb(233, 134, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.6; y: 0.55; val: 0.0980966643372" role="graphics-symbol" aria-roledescription="point" transform="translate(240.00000000000003,179.99999999999997)" d="M6.5422289683909725,0A6.5422289683909725,6.5422289683909725,0,1,1,-6.5422289683909725,0A6.5422289683909725,6.5422289683909725,0,1,1,6.5422289683909725,0" fill="rgb(213, 164, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.65; y: 0.55; val: 0.302794749271" role="graphics-symbol" aria-roledescription="point" transform="translate(260,179.99999999999997)" d="M7.386982916188865,0A7.386982916188865,7.386982916188865,0,1,1,-7.386982916188865,0A7.386982916188865,7.386982916188865,0,1,1,7.386982916188865,0" fill="rgb(189, 189, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.7; y: 0.55; val: 0.471953448003" role="graphics-symbol" aria-roledescription="point" transform="translate(280,179.99999999999997)" d="M8.018188449090136,0A8.018188449090136,8.018188449090136,0,1,1,-8.018188449090136,0A8.018188449090136,8.018188449090136,0,1,1,8.018188449090136,0" fill="rgb(165, 209, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.75; y: 0.55; val: 0.587674003027" role="graphics-symbol" aria-roledescription="point" transform="translate(300,179.99999999999997)" d="M8.422788454164108,0A8.422788454164108,8.422788454164108,0,1,1,-8.422788454164108,0A8.422788454164108,8.422788454164108,0,1,1,8.422788454164108,0" fill="rgb(144, 221, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.8; y: 0.55; val: 0.643095702308" role="graphics-symbol" aria-roledescription="point" transform="translate(320,179.99999999999997)" d="M8.60983141927265,0A8.60983141927265,8.60983141927265,0,1,1,-8.60983141927265,0A8.60983141927265,8.60983141927265,0,1,1,8.60983141927265,0" fill="rgb(133, 227, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.85; y: 0.55; val: 0.642908767241" role="graphics-symbol" aria-roledescription="point" transform="translate(340.00000000000006,179.99999999999997)" d="M8.609207361396304,0A8.609207361396304,8.609207361396304,0,1,1,-8.609207361396304,0A8.609207361396304,8.609207361396304,0,1,1,8.609207361396304,0" fill="rgb(133, 227, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.9; y: 0.55; val: 0.601532430887" role="graphics-symbol" aria-roledescription="point" transform="translate(360,179.99999999999997)" d="M8.469946629108936,0A8.469946629108936,8.469946629108936,0,1,1,-8.469946629108936,0A8.469946629108936,8.469946629108936,0,1,1,8.469946629108936,0" fill="rgb(141, 223, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.95; y: 0.55; val: 0.539157162195" role="graphics-symbol" aria-roledescription="point" transform="translate(380,179.99999999999997)" d="M8.25557077732972,0A8.25557077732972,8.25557077732972,0,1,1,-8.25557077732972,0A8.25557077732972,8.25557077732972,0,1,1,8.25557077732972,0" fill="rgb(153, 216, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0; y: 0.6; val: −0.42463386764" role="graphics-symbol" aria-roledescription="point" transform="translate(0,159.99999999999997)" d="M3.5710493881482708,0A3.5710493881482708,3.5710493881482708,0,1,1,-3.5710493881482708,0A3.5710493881482708,3.5710493881482708,0,1,1,3.5710493881482708,0" fill="rgb(250, 81, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.05; y: 0.6; val: −0.397562257877" role="graphics-symbol" aria-roledescription="point" transform="translate(20,159.99999999999997)" d="M3.782666237857686,0A3.782666237857686,3.782666237857686,0,1,1,-3.782666237857686,0A3.782666237857686,3.782666237857686,0,1,1,3.782666237857686,0" fill="rgb(249, 87, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.1; y: 0.6; val: −0.408740511725" role="graphics-symbol" aria-roledescription="point" transform="translate(40,159.99999999999997)" d="M3.696755201488939,0A3.696755201488939,3.696755201488939,0,1,1,-3.696755201488939,0A3.696755201488939,3.696755201488939,0,1,1,3.696755201488939,0" fill="rgb(249, 84, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.15; y: 0.6; val: −0.455590800727" role="graphics-symbol" aria-roledescription="point" transform="translate(60.00000000000001,159.99999999999997)" d="M3.3125340333114095,0A3.3125340333114095,3.3125340333114095,0,1,1,-3.3125340333114095,0A3.3125340333114095,3.3125340333114095,0,1,1,3.3125340333114095,0" fill="rgb(251, 74, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.2; y: 0.6; val: −0.52422165142" role="graphics-symbol" aria-roledescription="point" transform="translate(80,159.99999999999997)" d="M2.650988892028275,0A2.650988892028275,2.650988892028275,0,1,1,-2.650988892028275,0A2.650988892028275,2.650988892028275,0,1,1,2.650988892028275,0" fill="rgb(253, 58, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.25; y: 0.6; val: −0.593651443704" role="graphics-symbol" aria-roledescription="point" transform="translate(100,159.99999999999997)" d="M1.7426062528690938,0A1.7426062528690938,1.7426062528690938,0,1,1,-1.7426062528690938,0A1.7426062528690938,1.7426062528690938,0,1,1,1.7426062528690938,0" fill="rgb(254, 36, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.3; y: 0.6; val: −0.641019289396" role="graphics-symbol" aria-roledescription="point" transform="translate(120.00000000000001,159.99999999999997)" d="M0.5601859503006954,0A0.5601859503006954,0.5601859503006954,0,1,1,-0.5601859503006954,0A0.5601859503006954,0.5601859503006954,0,1,1,0.5601859503006954,0" fill="rgb(255, 6, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.35; y: 0.6; val: −0.646478394169" role="graphics-symbol" aria-roledescription="point" transform="translate(140,159.99999999999997)" d="M0,0" fill="rgb(255, 0, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.4; y: 0.6; val: −0.596608833305" role="graphics-symbol" aria-roledescription="point" transform="translate(160,159.99999999999997)" d="M1.6931259636647908,0A1.6931259636647908,1.6931259636647908,0,1,1,-1.6931259636647908,0A1.6931259636647908,1.6931259636647908,0,1,1,1.6931259636647908,0" fill="rgb(254, 34, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.45; y: 0.6; val: −0.486249994925" role="graphics-symbol" aria-roledescription="point" transform="translate(180,159.99999999999997)" d="M3.034878049658689,0A3.034878049658689,3.034878049658689,0,1,1,-3.034878049658689,0A3.034878049658689,3.034878049658689,0,1,1,3.034878049658689,0" fill="rgb(252, 67, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.5; y: 0.6; val: −0.321160640835" role="graphics-symbol" aria-roledescription="point" transform="translate(200,159.99999999999997)" d="M4.324395231317396,0A4.324395231317396,4.324395231317396,0,1,1,-4.324395231317396,0A4.324395231317396,4.324395231317396,0,1,1,4.324395231317396,0" fill="rgb(245, 101, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.55; y: 0.6; val: −0.11845483722" role="graphics-symbol" aria-roledescription="point" transform="translate(220.00000000000003,159.99999999999997)" d="M5.509321881820883,0A5.509321881820883,5.509321881820883,0,1,1,-5.509321881820883,0A5.509321881820883,5.509321881820883,0,1,1,5.509321881820883,0" fill="rgb(233, 134, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.6; y: 0.6; val: 0.0982817042967" role="graphics-symbol" aria-roledescription="point" transform="translate(240.00000000000003,159.99999999999997)" d="M6.543041847204628,0A6.543041847204628,6.543041847204628,0,1,1,-6.543041847204628,0A6.543041847204628,6.543041847204628,0,1,1,6.543041847204628,0" fill="rgb(213, 164, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.65; y: 0.6; val: 0.30337142517" role="graphics-symbol" aria-roledescription="point" transform="translate(260,159.99999999999997)" d="M7.389226342267743,0A7.389226342267743,7.389226342267743,0,1,1,-7.389226342267743,0A7.389226342267743,7.389226342267743,0,1,1,7.389226342267743,0" fill="rgb(189, 189, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.7; y: 0.6; val: 0.472867084141" role="graphics-symbol" aria-roledescription="point" transform="translate(280,159.99999999999997)" d="M8.021462770772748,0A8.021462770772748,8.021462770772748,0,1,1,-8.021462770772748,0A8.021462770772748,8.021462770772748,0,1,1,8.021462770772748,0" fill="rgb(165, 209, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.75; y: 0.6; val: 0.588474677272" role="graphics-symbol" aria-roledescription="point" transform="translate(300,159.99999999999997)" d="M8.425520214179986,0A8.425520214179986,8.425520214179986,0,1,1,-8.425520214179986,0A8.425520214179986,8.425520214179986,0,1,1,8.425520214179986,0" fill="rgb(144, 221, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.8; y: 0.6; val: 0.643840868086" role="graphics-symbol" aria-roledescription="point" transform="translate(320,159.99999999999997)" d="M8.612318606784942,0A8.612318606784942,8.612318606784942,0,1,1,-8.612318606784942,0A8.612318606784942,8.612318606784942,0,1,1,8.612318606784942,0" fill="rgb(133, 227, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.85; y: 0.6; val: 0.646238097052" role="graphics-symbol" aria-roledescription="point" transform="translate(340.00000000000006,159.99999999999997)" d="M8.620315123591235,0A8.620315123591235,8.620315123591235,0,1,1,-8.620315123591235,0A8.620315123591235,8.620315123591235,0,1,1,8.620315123591235,0" fill="rgb(132, 227, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.9; y: 0.6; val: 0.611219296425" role="graphics-symbol" aria-roledescription="point" transform="translate(360,159.99999999999997)" d="M8.50275429307468,0A8.50275429307468,8.50275429307468,0,1,1,-8.50275429307468,0A8.50275429307468,8.50275429307468,0,1,1,8.50275429307468,0" fill="rgb(139, 224, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.95; y: 0.6; val: 0.55824527117" role="graphics-symbol" aria-roledescription="point" transform="translate(380,159.99999999999997)" d="M8.321760609761228,0A8.321760609761228,8.321760609761228,0,1,1,-8.321760609761228,0A8.321760609761228,8.321760609761228,0,1,1,8.321760609761228,0" fill="rgb(150, 218, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0; y: 0.65; val: −0.376919865341" role="graphics-symbol" aria-roledescription="point" transform="translate(0,140)" d="M3.9363892426938896,0A3.9363892426938896,3.9363892426938896,0,1,1,-3.9363892426938896,0A3.9363892426938896,3.9363892426938896,0,1,1,3.9363892426938896,0" fill="rgb(248, 91, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.05; y: 0.65; val: −0.360733824059" role="graphics-symbol" aria-roledescription="point" transform="translate(20,140)" d="M4.05284963061059,0A4.05284963061059,4.05284963061059,0,1,1,-4.05284963061059,0A4.05284963061059,4.05284963061059,0,1,1,4.05284963061059,0" fill="rgb(247, 94, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.1; y: 0.65; val: −0.379096953357" role="graphics-symbol" aria-roledescription="point" transform="translate(40,140)" d="M3.920460902878326,0A3.920460902878326,3.920460902878326,0,1,1,-3.920460902878326,0A3.920460902878326,3.920460902878326,0,1,1,3.920460902878326,0" fill="rgb(248, 90, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.15; y: 0.65; val: −0.429319498595" role="graphics-symbol" aria-roledescription="point" transform="translate(60.00000000000001,140)" d="M3.5331356320668164,0A3.5331356320668164,3.5331356320668164,0,1,1,-3.5331356320668164,0A3.5331356320668164,3.5331356320668164,0,1,1,3.5331356320668164,0" fill="rgb(250, 80, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.2; y: 0.65; val: −0.498412122652" role="graphics-symbol" aria-roledescription="point" transform="translate(80,140)" d="M2.9174241107509813,0A2.9174241107509813,2.9174241107509813,0,1,1,-2.9174241107509813,0A2.9174241107509813,2.9174241107509813,0,1,1,2.9174241107509813,0" fill="rgb(252, 65, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.25; y: 0.65; val: −0.567026886622" role="graphics-symbol" aria-roledescription="point" transform="translate(100,140)" d="M2.137088801739757,0A2.137088801739757,2.137088801739757,0,1,1,-2.137088801739757,0A2.137088801739757,2.137088801739757,0,1,1,2.137088801739757,0" fill="rgb(254, 45, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.3; y: 0.65; val: −0.614013990829" role="graphics-symbol" aria-roledescription="point" transform="translate(120.00000000000001,140)" d="M1.3660770972176814,0A1.3660770972176814,1.3660770972176814,0,1,1,-1.3660770972176814,0A1.3660770972176814,1.3660770972176814,0,1,1,1.3660770972176814,0" fill="rgb(255, 26, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.35; y: 0.65; val: −0.620429012634" role="graphics-symbol" aria-roledescription="point" transform="translate(140,140)" d="M1.2236866045899701,0A1.2236866045899701,1.2236866045899701,0,1,1,-1.2236866045899701,0A1.2236866045899701,1.2236866045899701,0,1,1,1.2236866045899701,0" fill="rgb(255, 23, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.4; y: 0.65; val: −0.573098979134" role="graphics-symbol" aria-roledescription="point" transform="translate(160,140)" d="M2.0538022260657924,0A2.0538022260657924,2.0538022260657924,0,1,1,-2.0538022260657924,0A2.0538022260657924,2.0538022260657924,0,1,1,2.0538022260657924,0" fill="rgb(254, 43, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.45; y: 0.65; val: −0.467382002272" role="graphics-symbol" aria-roledescription="point" transform="translate(180,140)" d="M3.20859509948765,0A3.20859509948765,3.20859509948765,0,1,1,-3.20859509948765,0A3.20859509948765,3.20859509948765,0,1,1,3.20859509948765,0" fill="rgb(251, 72, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.5; y: 0.65; val: −0.308935405974" role="graphics-symbol" aria-roledescription="point" transform="translate(200,140)" d="M4.404899893095274,0A4.404899893095274,4.404899893095274,0,1,1,-4.404899893095274,0A4.404899893095274,4.404899893095274,0,1,1,4.404899893095274,0" fill="rgb(245, 103, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.55; y: 0.65; val: −0.113992410011" role="graphics-symbol" aria-roledescription="point" transform="translate(220.00000000000003,140)" d="M5.532553064282391,0A5.532553064282391,5.532553064282391,0,1,1,-5.532553064282391,0A5.532553064282391,5.532553064282391,0,1,1,5.532553064282391,0" fill="rgb(232, 134, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.6; y: 0.65; val: 0.0945809576859" role="graphics-symbol" aria-roledescription="point" transform="translate(240.00000000000003,140)" d="M6.526765266835156,0A6.526765266835156,6.526765266835156,0,1,1,-6.526765266835156,0A6.526765266835156,6.526765266835156,0,1,1,6.526765266835156,0" fill="rgb(214, 163, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.65; y: 0.65; val: 0.291839587745" role="graphics-symbol" aria-roledescription="point" transform="translate(260,140)" d="M7.344234192761528,0A7.344234192761528,7.344234192761528,0,1,1,-7.344234192761528,0A7.344234192761528,7.344234192761528,0,1,1,7.344234192761528,0" fill="rgb(191, 188, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.7; y: 0.65; val: 0.454683297363" role="graphics-symbol" aria-roledescription="point" transform="translate(280,140)" d="M7.956041589652708,0A7.956041589652708,7.956041589652708,0,1,1,-7.956041589652708,0A7.956041589652708,7.956041589652708,0,1,1,7.956041589652708,0" fill="rgb(167, 207, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.75; y: 0.65; val: 0.567476149583" role="graphics-symbol" aria-roledescription="point" transform="translate(300,140)" d="M8.353581423036914,0A8.353581423036914,8.353581423036914,0,1,1,-8.353581423036914,0A8.353581423036914,8.353581423036914,0,1,1,8.353581423036914,0" fill="rgb(148, 219, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.8; y: 0.65; val: 0.626147922085" role="graphics-symbol" aria-roledescription="point" transform="translate(320,140)" d="M8.553068444160406,0A8.553068444160406,8.553068444160406,0,1,1,-8.553068444160406,0A8.553068444160406,8.553068444160406,0,1,1,8.553068444160406,0" fill="rgb(136, 225, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.85; y: 0.65; val: 0.637563904769" role="graphics-symbol" aria-roledescription="point" transform="translate(340.00000000000006,140)" d="M8.59134507145253,0A8.59134507145253,8.59134507145253,0,1,1,-8.59134507145253,0A8.59134507145253,8.59134507145253,0,1,1,8.59134507145253,0" fill="rgb(134, 227, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.9; y: 0.65; val: 0.615348834818" role="graphics-symbol" aria-roledescription="point" transform="translate(360,140)" d="M8.516701871903507,0A8.516701871903507,8.516701871903507,0,1,1,-8.516701871903507,0A8.516701871903507,8.516701871903507,0,1,1,8.516701871903507,0" fill="rgb(139, 224, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.95; y: 0.65; val: 0.576384031005" role="graphics-symbol" aria-roledescription="point" transform="translate(380,140)" d="M8.384174291351982,0A8.384174291351982,8.384174291351982,0,1,1,-8.384174291351982,0A8.384174291351982,8.384174291351982,0,1,1,8.384174291351982,0" fill="rgb(146, 220, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0; y: 0.7; val: −0.27023898026" role="graphics-symbol" aria-roledescription="point" transform="translate(0,119.99999999999997)" d="M4.650542762974882,0A4.650542762974882,4.650542762974882,0,1,1,-4.650542762974882,0A4.650542762974882,4.650542762974882,0,1,1,4.650542762974882,0" fill="rgb(243, 110, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.05; y: 0.7; val: −0.267915156993" role="graphics-symbol" aria-roledescription="point" transform="translate(20,119.99999999999997)" d="M4.664882573121977,0A4.664882573121977,4.664882573121977,0,1,1,-4.664882573121977,0A4.664882573121977,4.664882573121977,0,1,1,4.664882573121977,0" fill="rgb(243, 110, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.1; y: 0.7; val: −0.297418022225" role="graphics-symbol" aria-roledescription="point" transform="translate(40,119.99999999999997)" d="M4.4794198597323795,0A4.4794198597323795,4.4794198597323795,0,1,1,-4.4794198597323795,0A4.4794198597323795,4.4794198597323795,0,1,1,4.4794198597323795,0" fill="rgb(244, 105, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.15; y: 0.7; val: −0.356021073772" role="graphics-symbol" aria-roledescription="point" transform="translate(60.00000000000001,119.99999999999997)" d="M4.086134527853414,0A4.086134527853414,4.086134527853414,0,1,1,-4.086134527853414,0A4.086134527853414,4.086134527853414,0,1,1,4.086134527853414,0" fill="rgb(247, 94, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.2; y: 0.7; val: −0.431266845427" role="graphics-symbol" aria-roledescription="point" transform="translate(80,119.99999999999997)" d="M3.5172584688308337,0A3.5172584688308337,3.5172584688308337,0,1,1,-3.5172584688308337,0A3.5172584688308337,3.5172584688308337,0,1,1,3.5172584688308337,0" fill="rgb(250, 80, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.25; y: 0.7; val: −0.504578333563" role="graphics-symbol" aria-roledescription="point" transform="translate(100,119.99999999999997)" d="M2.8560301516017788,0A2.8560301516017788,2.8560301516017788,0,1,1,-2.8560301516017788,0A2.8560301516017788,2.8560301516017788,0,1,1,2.8560301516017788,0" fill="rgb(253, 63, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.3; y: 0.7; val: −0.555704068933" role="graphics-symbol" aria-roledescription="point" transform="translate(120.00000000000001,119.99999999999997)" d="M2.284299329196815,0A2.284299329196815,2.284299329196815,0,1,1,-2.284299329196815,0A2.284299329196815,2.284299329196815,0,1,1,2.284299329196815,0" fill="rgb(254, 49, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.35; y: 0.7; val: −0.566908455015" role="graphics-symbol" aria-roledescription="point" transform="translate(140,119.99999999999997)" d="M2.1386809969011016,0A2.1386809969011016,2.1386809969011016,0,1,1,-2.1386809969011016,0A2.1386809969011016,2.1386809969011016,0,1,1,2.1386809969011016,0" fill="rgb(254, 45, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.4; y: 0.7; val: −0.526357390449" role="graphics-symbol" aria-roledescription="point" transform="translate(160,119.99999999999997)" d="M2.627731418923165,0A2.627731418923165,2.627731418923165,0,1,1,-2.627731418923165,0A2.627731418923165,2.627731418923165,0,1,1,2.627731418923165,0" fill="rgb(253, 57, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.45; y: 0.7; val: −0.430441089238" role="graphics-symbol" aria-roledescription="point" transform="translate(180,119.99999999999997)" d="M3.523999782884235,0A3.523999782884235,3.523999782884235,0,1,1,-3.523999782884235,0A3.523999782884235,3.523999782884235,0,1,1,3.523999782884235,0" fill="rgb(250, 80, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.5; y: 0.7; val: −0.284996039444" role="graphics-symbol" aria-roledescription="point" transform="translate(200,119.99999999999997)" d="M4.558427468433609,0A4.558427468433609,4.558427468433609,0,1,1,-4.558427468433609,0A4.558427468433609,4.558427468433609,0,1,1,4.558427468433609,0" fill="rgb(244, 107, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.55; y: 0.7; val: −0.105245823773" role="graphics-symbol" aria-roledescription="point" transform="translate(220.00000000000003,119.99999999999997)" d="M5.577806697826993,0A5.577806697826993,5.577806697826993,0,1,1,-5.577806697826993,0A5.577806697826993,5.577806697826993,0,1,1,5.577806697826993,0" fill="rgb(232, 135, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.6; y: 0.7; val: 0.0873243836394" role="graphics-symbol" aria-roledescription="point" transform="translate(240.00000000000003,119.99999999999997)" d="M6.494731077878478,0A6.494731077878478,6.494731077878478,0,1,1,-6.494731077878478,0A6.494731077878478,6.494731077878478,0,1,1,6.494731077878478,0" fill="rgb(214, 162, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.65; y: 0.7; val: 0.269385146544" role="graphics-symbol" aria-roledescription="point" transform="translate(260,119.99999999999997)" d="M7.255826391638677,0A7.255826391638677,7.255826391638677,0,1,1,-7.255826391638677,0A7.255826391638677,7.255826391638677,0,1,1,7.255826391638677,0" fill="rgb(194, 185, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.7; y: 0.7; val: 0.422200843412" role="graphics-symbol" aria-roledescription="point" transform="translate(280,119.99999999999997)" d="M7.83781816125862,0A7.83781816125862,7.83781816125862,0,1,1,-7.83781816125862,0A7.83781816125862,7.83781816125862,0,1,1,7.83781816125862,0" fill="rgb(173, 203, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.75; y: 0.7; val: 0.535555966422" role="graphics-symbol" aria-roledescription="point" transform="translate(300,119.99999999999997)" d="M8.243023694096463,0A8.243023694096463,8.243023694096463,0,1,1,-8.243023694096463,0A8.243023694096463,8.243023694096463,0,1,1,8.243023694096463,0" fill="rgb(154, 216, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.8; y: 0.7; val: 0.60506059916" role="graphics-symbol" aria-roledescription="point" transform="translate(320,119.99999999999997)" d="M8.48191059040955,0A8.48191059040955,8.48191059040955,0,1,1,-8.48191059040955,0A8.48191059040955,8.48191059040955,0,1,1,8.48191059040955,0" fill="rgb(141, 223, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.85; y: 0.7; val: 0.633528686726" role="graphics-symbol" aria-roledescription="point" transform="translate(340.00000000000006,119.99999999999997)" d="M8.577834912813707,0A8.577834912813707,8.577834912813707,0,1,1,-8.577834912813707,0A8.577834912813707,8.577834912813707,0,1,1,8.577834912813707,0" fill="rgb(135, 226, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.9; y: 0.7; val: 0.630385801707" role="graphics-symbol" aria-roledescription="point" transform="translate(360,119.99999999999997)" d="M8.567297581327173,0A8.567297581327173,8.567297581327173,0,1,1,-8.567297581327173,0A8.567297581327173,8.567297581327173,0,1,1,8.567297581327173,0" fill="rgb(135, 226, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.95; y: 0.7; val: 0.608768813694" role="graphics-symbol" aria-roledescription="point" transform="translate(380,119.99999999999997)" d="M8.494466923343793,0A8.494466923343793,8.494466923343793,0,1,1,-8.494466923343793,0A8.494466923343793,8.494466923343793,0,1,1,8.494466923343793,0" fill="rgb(140, 224, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0; y: 0.75; val: −0.12903715229" role="graphics-symbol" aria-roledescription="point" transform="translate(0,100)" d="M5.453835290929665,0A5.453835290929665,5.453835290929665,0,1,1,-5.453835290929665,0A5.453835290929665,5.453835290929665,0,1,1,5.453835290929665,0" fill="rgb(233, 132, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.05; y: 0.75; val: −0.142999012638" role="graphics-symbol" aria-roledescription="point" transform="translate(20,100)" d="M5.379753076647196,0A5.379753076647196,5.379753076647196,0,1,1,-5.379753076647196,0A5.379753076647196,5.379753076647196,0,1,1,5.379753076647196,0" fill="rgb(234, 130, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.1; y: 0.75; val: −0.185521380565" role="graphics-symbol" aria-roledescription="point" transform="translate(40,100)" d="M5.1475634818531,0A5.1475634818531,5.1475634818531,0,1,1,-5.1475634818531,0A5.1475634818531,5.1475634818531,0,1,1,5.1475634818531,0" fill="rgb(237, 123, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.15; y: 0.75; val: −0.253731974642" role="graphics-symbol" aria-roledescription="point" transform="translate(60.00000000000001,100)" d="M4.7514658783585055,0A4.7514658783585055,4.7514658783585055,0,1,1,-4.7514658783585055,0A4.7514658783585055,4.7514658783585055,0,1,1,4.7514658783585055,0" fill="rgb(242, 112, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.2; y: 0.75; val: −0.335953910229" role="graphics-symbol" aria-roledescription="point" transform="translate(80,100)" d="M4.224929067184543,0A4.224929067184543,4.224929067184543,0,1,1,-4.224929067184543,0A4.224929067184543,4.224929067184543,0,1,1,4.224929067184543,0" fill="rgb(246, 98, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.25; y: 0.75; val: −0.414981408979" role="graphics-symbol" aria-roledescription="point" transform="translate(100,100)" d="M3.6479104394499826,0A3.6479104394499826,3.6479104394499826,0,1,1,-3.6479104394499826,0A3.6479104394499826,3.6479104394499826,0,1,1,3.6479104394499826,0" fill="rgb(250, 83, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.3; y: 0.75; val: −0.472099717037" role="graphics-symbol" aria-roledescription="point" transform="translate(120.00000000000001,100)" d="M3.1660530452983635,0A3.1660530452983635,3.1660530452983635,0,1,1,-3.1660530452983635,0A3.1660530452983635,3.1660530452983635,0,1,1,3.1660530452983635,0" fill="rgb(252, 71, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.35; y: 0.75; val: −0.491022625043" role="graphics-symbol" aria-roledescription="point" transform="translate(140,100)" d="M2.989337288486953,0A2.989337288486953,2.989337288486953,0,1,1,-2.989337288486953,0A2.989337288486953,2.989337288486953,0,1,1,2.989337288486953,0" fill="rgb(252, 66, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.4; y: 0.75; val: −0.461135775501" role="graphics-symbol" aria-roledescription="point" transform="translate(160,100)" d="M3.2640676030181086,0A3.2640676030181086,3.2640676030181086,0,1,1,-3.2640676030181086,0A3.2640676030181086,3.2640676030181086,0,1,1,3.2640676030181086,0" fill="rgb(251, 73, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.45; y: 0.75; val: −0.379647894147" role="graphics-symbol" aria-roledescription="point" transform="translate(180,100)" d="M3.91641975549502,0A3.91641975549502,3.91641975549502,0,1,1,-3.91641975549502,0A3.91641975549502,3.91641975549502,0,1,1,3.91641975549502,0" fill="rgb(248, 90, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.5; y: 0.75; val: −0.252466024462" role="graphics-symbol" aria-roledescription="point" transform="translate(200,100)" d="M4.7591174817928446,0A4.7591174817928446,4.7591174817928446,0,1,1,-4.7591174817928446,0A4.7591174817928446,4.7591174817928446,0,1,1,4.7591174817928446,0" fill="rgb(242, 113, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.55; y: 0.75; val: −0.093707682721" role="graphics-symbol" aria-roledescription="point" transform="translate(220.00000000000003,100)" d="M5.6369477531542564,0A5.6369477531542564,5.6369477531542564,0,1,1,-5.6369477531542564,0A5.6369477531542564,5.6369477531542564,0,1,1,5.6369477531542564,0" fill="rgb(231, 137, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.6; y: 0.75; val: 0.0768933453482" role="graphics-symbol" aria-roledescription="point" transform="translate(240.00000000000003,100)" d="M6.448404412841492,0A6.448404412841492,6.448404412841492,0,1,1,-6.448404412841492,0A6.448404412841492,6.448404412841492,0,1,1,6.448404412841492,0" fill="rgb(215, 161, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.65; y: 0.75; val: 0.240344723303" role="graphics-symbol" aria-roledescription="point" transform="translate(260,100)" d="M7.139865002632254,0A7.139865002632254,7.139865002632254,0,1,1,-7.139865002632254,0A7.139865002632254,7.139865002632254,0,1,1,7.139865002632254,0" fill="rgb(197, 182, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.7; y: 0.75; val: 0.385351195398" role="graphics-symbol" aria-roledescription="point" transform="translate(280,100)" d="M7.701502957340885,0A7.701502957340885,7.701502957340885,0,1,1,-7.701502957340885,0A7.701502957340885,7.701502957340885,0,1,1,7.701502957340885,0" fill="rgb(178, 199, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.75; y: 0.75; val: 0.504650763476" role="graphics-symbol" aria-roledescription="point" transform="translate(300,100)" d="M8.134549848568334,0A8.134549848568334,8.134549848568334,0,1,1,-8.134549848568334,0A8.134549848568334,8.134549848568334,0,1,1,8.134549848568334,0" fill="rgb(159, 212, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.8; y: 0.75; val: 0.592049940249" role="graphics-symbol" aria-roledescription="point" transform="translate(320,100)" d="M8.437707592140631,0A8.437707592140631,8.437707592140631,0,1,1,-8.437707592140631,0A8.437707592140631,8.437707592140631,0,1,1,8.437707592140631,0" fill="rgb(143, 222, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.85; y: 0.75; val: 0.644353181099" role="graphics-symbol" aria-roledescription="point" transform="translate(340.00000000000006,100)" d="M8.614028170127623,0A8.614028170127623,8.614028170127623,0,1,1,-8.614028170127623,0A8.614028170127623,8.614028170127623,0,1,1,8.614028170127623,0" fill="rgb(132, 227, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.9; y: 0.75; val: 0.664931407293" role="graphics-symbol" aria-roledescription="point" transform="translate(360,100)" d="M8.682418396655285,0A8.682418396655285,8.682418396655285,0,1,1,-8.682418396655285,0A8.682418396655285,8.682418396655285,0,1,1,8.682418396655285,0" fill="rgb(128, 229, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.95; y: 0.75; val: 0.662318798818" role="graphics-symbol" aria-roledescription="point" transform="translate(380,100)" d="M8.673765468771654,0A8.673765468771654,8.673765468771654,0,1,1,-8.673765468771654,0A8.673765468771654,8.673765468771654,0,1,1,8.673765468771654,0" fill="rgb(128, 229, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0; y: 0.8; val: 0.0265538232382" role="graphics-symbol" aria-roledescription="point" transform="translate(0,79.99999999999999)" d="M6.21998624904975,0A6.21998624904975,6.21998624904975,0,1,1,-6.21998624904975,0A6.21998624904975,6.21998624904975,0,1,1,6.21998624904975,0" fill="rgb(220, 154, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.05; y: 0.8; val: −0.00415825232767" role="graphics-symbol" aria-roledescription="point" transform="translate(20,79.99999999999999)" d="M6.076412773025906,0A6.076412773025906,6.076412773025906,0,1,1,-6.076412773025906,0A6.076412773025906,6.076412773025906,0,1,1,6.076412773025906,0" fill="rgb(223, 150, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.1; y: 0.8; val: −0.0584756360656" role="graphics-symbol" aria-roledescription="point" transform="translate(40,79.99999999999999)" d="M5.813814613112672,0A5.813814613112672,5.813814613112672,0,1,1,-5.813814613112672,0A5.813814613112672,5.813814613112672,0,1,1,5.813814613112672,0" fill="rgb(228, 142, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.15; y: 0.8; val: −0.134384895882" role="graphics-symbol" aria-roledescription="point" transform="translate(60.00000000000001,79.99999999999999)" d="M5.4255794629719265,0A5.4255794629719265,5.4255794629719265,0,1,1,-5.4255794629719265,0A5.4255794629719265,5.4255794629719265,0,1,1,5.4255794629719265,0" fill="rgb(234, 131, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.2; y: 0.8; val: −0.222122190666" role="graphics-symbol" aria-roledescription="point" transform="translate(80,79.99999999999999)" d="M4.93897440164094,0A4.93897440164094,4.93897440164094,0,1,1,-4.93897440164094,0A4.93897440164094,4.93897440164094,0,1,1,4.93897440164094,0" fill="rgb(240, 117, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.25; y: 0.8; val: −0.306589933915" role="graphics-symbol" aria-roledescription="point" transform="translate(100,79.99999999999999)" d="M4.42017747909583,0A4.42017747909583,4.42017747909583,0,1,1,-4.42017747909583,0A4.42017747909583,4.42017747909583,0,1,1,4.42017747909583,0" fill="rgb(245, 103, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.3; y: 0.8; val: −0.370917845558" role="graphics-symbol" aria-roledescription="point" transform="translate(120.00000000000001,79.99999999999999)" d="M3.9799720110770633,0A3.9799720110770633,3.9799720110770633,0,1,1,-3.9799720110770633,0A3.9799720110770633,3.9799720110770633,0,1,1,3.9799720110770633,0" fill="rgb(248, 92, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.35; y: 0.8; val: −0.400213082756" role="graphics-symbol" aria-roledescription="point" transform="translate(140,79.99999999999999)" d="M3.762470630855256,0A3.762470630855256,3.762470630855256,0,1,1,-3.762470630855256,0A3.762470630855256,3.762470630855256,0,1,1,3.762470630855256,0" fill="rgb(249, 86, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.4; y: 0.8; val: −0.384752579027" role="graphics-symbol" aria-roledescription="point" transform="translate(160,79.99999999999999)" d="M3.8787767000046585,0A3.8787767000046585,3.8787767000046585,0,1,1,-3.8787767000046585,0A3.8787767000046585,3.8787767000046585,0,1,1,3.8787767000046585,0" fill="rgb(248, 89, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.45; y: 0.8; val: −0.322079159536" role="graphics-symbol" aria-roledescription="point" transform="translate(180,79.99999999999999)" d="M4.318286057239514,0A4.318286057239514,4.318286057239514,0,1,1,-4.318286057239514,0A4.318286057239514,4.318286057239514,0,1,1,4.318286057239514,0" fill="rgb(245, 101, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.5; y: 0.8; val: −0.217671440075" role="graphics-symbol" aria-roledescription="point" transform="translate(200,79.99999999999999)" d="M4.964807422154566,0A4.964807422154566,4.964807422154566,0,1,1,-4.964807422154566,0A4.964807422154566,4.964807422154566,0,1,1,4.964807422154566,0" fill="rgb(240, 118, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.55; y: 0.8; val: −0.0840976489121" role="graphics-symbol" aria-roledescription="point" transform="translate(220.00000000000003,79.99999999999999)" d="M5.685736371451571,0A5.685736371451571,5.685736371451571,0,1,1,-5.685736371451571,0A5.685736371451571,5.685736371451571,0,1,1,5.685736371451571,0" fill="rgb(230, 139, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.6; y: 0.8; val: 0.0622274056477" role="graphics-symbol" aria-roledescription="point" transform="translate(240.00000000000003,79.99999999999999)" d="M6.382700864883477,0A6.382700864883477,6.382700864883477,0,1,1,-6.382700864883477,0A6.382700864883477,6.382700864883477,0,1,1,6.382700864883477,0" fill="rgb(217, 159, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.65; y: 0.8; val: 0.210034877123" role="graphics-symbol" aria-roledescription="point" transform="translate(260,79.99999999999999)" d="M7.0167910790806305,0A7.0167910790806305,7.0167910790806305,0,1,1,-7.0167910790806305,0A7.0167910790806305,7.0167910790806305,0,1,1,7.0167910790806305,0" fill="rgb(201, 178, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.7; y: 0.8; val: 0.352527162166" role="graphics-symbol" aria-roledescription="point" transform="translate(280,79.99999999999999)" d="M7.5780148054369745,0A7.5780148054369745,7.5780148054369745,0,1,1,-7.5780148054369745,0A7.5780148054369745,7.5780148054369745,0,1,1,7.5780148054369745,0" fill="rgb(183, 195, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.75; y: 0.8; val: 0.482439300237" role="graphics-symbol" aria-roledescription="point" transform="translate(300,79.99999999999999)" d="M8.055688003099666,0A8.055688003099666,8.055688003099666,0,1,1,-8.055688003099666,0A8.055688003099666,8.055688003099666,0,1,1,8.055688003099666,0" fill="rgb(163, 210, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.8; y: 0.8; val: 0.591389977359" role="graphics-symbol" aria-roledescription="point" transform="translate(320,79.99999999999999)" d="M8.435459231827926,0A8.435459231827926,8.435459231827926,0,1,1,-8.435459231827926,0A8.435459231827926,8.435459231827926,0,1,1,8.435459231827926,0" fill="rgb(143, 222, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.85; y: 0.8; val: 0.671160484703" role="graphics-symbol" aria-roledescription="point" transform="translate(340.00000000000006,79.99999999999999)" d="M8.703014317717113,0A8.703014317717113,8.703014317717113,0,1,1,-8.703014317717113,0A8.703014317717113,8.703014317717113,0,1,1,8.703014317717113,0" fill="rgb(126, 230, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.9; y: 0.8; val: 0.717816224966" role="graphics-symbol" aria-roledescription="point" transform="translate(360,79.99999999999999)" d="M8.855754749042056,0A8.855754749042056,8.855754749042056,0,1,1,-8.855754749042056,0A8.855754749042056,8.855754749042056,0,1,1,8.855754749042056,0" fill="rgb(115, 235, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.95; y: 0.8; val: 0.734376504274" role="graphics-symbol" aria-roledescription="point" transform="translate(380,79.99999999999999)" d="M8.909339736187286,0A8.909339736187286,8.909339736187286,0,1,1,-8.909339736187286,0A8.909339736187286,8.909339736187286,0,1,1,8.909339736187286,0" fill="rgb(111, 237, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0; y: 0.85; val: 0.178115236291" role="graphics-symbol" aria-roledescription="point" transform="translate(0,59.999999999999964)" d="M6.884802484645825,0A6.884802484645825,6.884802484645825,0,1,1,-6.884802484645825,0A6.884802484645825,6.884802484645825,0,1,1,6.884802484645825,0" fill="rgb(205, 174, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.05; y: 0.85; val: 0.133576104473" role="graphics-symbol" aria-roledescription="point" transform="translate(20,59.999999999999964)" d="M6.696285634217541,0A6.696285634217541,6.696285634217541,0,1,1,-6.696285634217541,0A6.696285634217541,6.696285634217541,0,1,1,6.696285634217541,0" fill="rgb(210, 168, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.1; y: 0.85; val: 0.07112497442" role="graphics-symbol" aria-roledescription="point" transform="translate(40,59.999999999999964)" d="M6.4226422506729675,0A6.4226422506729675,6.4226422506729675,0,1,1,-6.4226422506729675,0A6.4226422506729675,6.4226422506729675,0,1,1,6.4226422506729675,0" fill="rgb(216, 160, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.15; y: 0.85; val: −0.00908834098168" role="graphics-symbol" aria-roledescription="point" transform="translate(60.00000000000001,59.999999999999964)" d="M6.053048287664055,0A6.053048287664055,6.053048287664055,0,1,1,-6.053048287664055,0A6.053048287664055,6.053048287664055,0,1,1,6.053048287664055,0" fill="rgb(224, 149, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.2; y: 0.85; val: −0.0999700074353" role="graphics-symbol" aria-roledescription="point" transform="translate(80,59.999999999999964)" d="M5.604926386804709,0A5.604926386804709,5.604926386804709,0,1,1,-5.604926386804709,0A5.604926386804709,5.604926386804709,0,1,1,5.604926386804709,0" fill="rgb(231, 136, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.25; y: 0.85; val: −0.189001758198" role="graphics-symbol" aria-roledescription="point" transform="translate(100,59.999999999999964)" d="M5.128093759662577,0A5.128093759662577,5.128093759662577,0,1,1,-5.128093759662577,0A5.128093759662577,5.128093759662577,0,1,1,5.128093759662577,0" fill="rgb(238, 123, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.3; y: 0.85; val: −0.261328655642" role="graphics-symbol" aria-roledescription="point" transform="translate(120.00000000000001,59.999999999999964)" d="M4.705288980510383,0A4.705288980510383,4.705288980510383,0,1,1,-4.705288980510383,0A4.705288980510383,4.705288980510383,0,1,1,4.705288980510383,0" fill="rgb(242, 111, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.35; y: 0.85; val: −0.303330172457" role="graphics-symbol" aria-roledescription="point" transform="translate(140,59.999999999999964)" d="M4.441323153603143,0A4.441323153603143,4.441323153603143,0,1,1,-4.441323153603143,0A4.441323153603143,4.441323153603143,0,1,1,4.441323153603143,0" fill="rgb(245, 104, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.4; y: 0.85; val: −0.30579266558" role="graphics-symbol" aria-roledescription="point" transform="translate(160,59.999999999999964)" d="M4.425358595532618,0A4.425358595532618,4.425358595532618,0,1,1,-4.425358595532618,0A4.425358595532618,4.425358595532618,0,1,1,4.425358595532618,0" fill="rgb(245, 103, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.45; y: 0.85; val: −0.266004241959" role="graphics-symbol" aria-roledescription="point" transform="translate(180,59.999999999999964)" d="M4.676641471483244,0A4.676641471483244,4.676641471483244,0,1,1,-4.676641471483244,0A4.676641471483244,4.676641471483244,0,1,1,4.676641471483244,0" fill="rgb(242, 110, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.5; y: 0.85; val: −0.188295979978" role="graphics-symbol" aria-roledescription="point" transform="translate(200,59.999999999999964)" d="M5.132047952892682,0A5.132047952892682,5.132047952892682,0,1,1,-5.132047952892682,0A5.132047952892682,5.132047952892682,0,1,1,5.132047952892682,0" fill="rgb(238, 123, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.55; y: 0.85; val: −0.0827748075939" role="graphics-symbol" aria-roledescription="point" transform="translate(220.00000000000003,59.999999999999964)" d="M5.692419485433304,0A5.692419485433304,5.692419485433304,0,1,1,-5.692419485433304,0A5.692419485433304,5.692419485433304,0,1,1,5.692419485433304,0" fill="rgb(230, 139, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.6; y: 0.85; val: 0.04088323656" role="graphics-symbol" aria-roledescription="point" transform="translate(240.00000000000003,59.999999999999964)" d="M6.28585184159769,0A6.28585184159769,6.28585184159769,0,1,1,-6.28585184159769,0A6.28585184159769,6.28585184159769,0,1,1,6.28585184159769,0" fill="rgb(219, 156, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.65; y: 0.85; val: 0.178501277507" role="graphics-symbol" aria-roledescription="point" transform="translate(260,59.999999999999964)" d="M6.886413888389234,0A6.886413888389234,6.886413888389234,0,1,1,-6.886413888389234,0A6.886413888389234,6.886413888389234,0,1,1,6.886413888389234,0" fill="rgb(205, 174, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.7; y: 0.85; val: 0.324608467696" role="graphics-symbol" aria-roledescription="point" transform="translate(280,59.999999999999964)" d="M7.471375033189334,0A7.471375033189334,7.471375033189334,0,1,1,-7.471375033189334,0A7.471375033189334,7.471375033189334,0,1,1,7.471375033189334,0" fill="rgb(187, 192, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.75; y: 0.85; val: 0.469488576412" role="graphics-symbol" aria-roledescription="point" transform="translate(300,59.999999999999964)" d="M8.009348077519626,0A8.009348077519626,8.009348077519626,0,1,1,-8.009348077519626,0A8.009348077519626,8.009348077519626,0,1,1,8.009348077519626,0" fill="rgb(165, 208, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.8; y: 0.85; val: 0.600881206185" role="graphics-symbol" aria-roledescription="point" transform="translate(320,59.999999999999964)" d="M8.467736488739089,0A8.467736488739089,8.467736488739089,0,1,1,-8.467736488739089,0A8.467736488739089,8.467736488739089,0,1,1,8.467736488739089,0" fill="rgb(141, 223, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.85; y: 0.85; val: 0.707114497483" role="graphics-symbol" aria-roledescription="point" transform="translate(340.00000000000006,59.999999999999964)" d="M8.8209534472212,0A8.8209534472212,8.8209534472212,0,1,1,-8.8209534472212,0A8.8209534472212,8.8209534472212,0,1,1,8.8209534472212,0" fill="rgb(118, 234, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.9; y: 0.85; val: 0.779158934435" role="graphics-symbol" aria-roledescription="point" transform="translate(360,59.999999999999964)" d="M9.05265619174446,0A9.05265619174446,9.05265619174446,0,1,1,-9.05265619174446,0A9.05265619174446,9.05265619174446,0,1,1,9.05265619174446,0" fill="rgb(97, 241, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.95; y: 0.85; val: 0.813638889531" role="graphics-symbol" aria-roledescription="point" transform="translate(380,59.999999999999964)" d="M9.161474317779673,0A9.161474317779673,9.161474317779673,0,1,1,-9.161474317779673,0A9.161474317779673,9.161474317779673,0,1,1,9.161474317779673,0" fill="rgb(85, 244, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0; y: 0.9; val: 0.311944860506" role="graphics-symbol" aria-roledescription="point" transform="translate(0,39.99999999999999)" d="M7.422499361489962,0A7.422499361489962,7.422499361489962,0,1,1,-7.422499361489962,0A7.422499361489962,7.422499361489962,0,1,1,7.422499361489962,0" fill="rgb(188, 190, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.05; y: 0.9; val: 0.258584424858" role="graphics-symbol" aria-roledescription="point" transform="translate(20,39.99999999999999)" d="M7.212915751479902,0A7.212915751479902,7.212915751479902,0,1,1,-7.212915751479902,0A7.212915751479902,7.212915751479902,0,1,1,7.212915751479902,0" fill="rgb(195, 184, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.1; y: 0.9; val: 0.192559878429" role="graphics-symbol" aria-roledescription="point" transform="translate(40,39.99999999999999)" d="M6.944842218595461,0A6.944842218595461,6.944842218595461,0,1,1,-6.944842218595461,0A6.944842218595461,6.944842218595461,0,1,1,6.944842218595461,0" fill="rgb(203, 176, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.15; y: 0.9; val: 0.111796433923" role="graphics-symbol" aria-roledescription="point" transform="translate(60.00000000000001,39.99999999999999)" d="M6.6021413346467765,0A6.6021413346467765,6.6021413346467765,0,1,1,-6.6021413346467765,0A6.6021413346467765,6.6021413346467765,0,1,1,6.6021413346467765,0" fill="rgb(212, 165, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.2; y: 0.9; val: 0.0203577202641" role="graphics-symbol" aria-roledescription="point" transform="translate(80,39.99999999999999)" d="M6.1912886722925755,0A6.1912886722925755,6.1912886722925755,0,1,1,-6.1912886722925755,0A6.1912886722925755,6.1912886722925755,0,1,1,6.1912886722925755,0" fill="rgb(221, 153, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.25; y: 0.9; val: −0.0720863881186" role="graphics-symbol" aria-roledescription="point" transform="translate(100,39.99999999999999)" d="M5.7461332272022485,0A5.7461332272022485,5.7461332272022485,0,1,1,-5.7461332272022485,0A5.7461332272022485,5.7461332272022485,0,1,1,5.7461332272022485,0" fill="rgb(229, 140, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.3; y: 0.9; val: −0.152804299969" role="graphics-symbol" aria-roledescription="point" transform="translate(120.00000000000001,39.99999999999999)" d="M5.327110023392976,0A5.327110023392976,5.327110023392976,0,1,1,-5.327110023392976,0A5.327110023392976,5.327110023392976,0,1,1,5.327110023392976,0" fill="rgb(235, 128, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.35; y: 0.9; val: −0.209345197157" role="graphics-symbol" aria-roledescription="point" transform="translate(140,39.99999999999999)" d="M5.012777084075807,0A5.012777084075807,5.012777084075807,0,1,1,-5.012777084075807,0A5.012777084075807,5.012777084075807,0,1,1,5.012777084075807,0" fill="rgb(239, 120, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.4; y: 0.9; val: −0.23266250272" role="graphics-symbol" aria-roledescription="point" transform="translate(160,39.99999999999999)" d="M4.8772507011969894,0A4.8772507011969894,4.8772507011969894,0,1,1,-4.8772507011969894,0A4.8772507011969894,4.8772507011969894,0,1,1,4.8772507011969894,0" fill="rgb(240, 116, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.45; y: 0.9; val: −0.219198757371" role="graphics-symbol" aria-roledescription="point" transform="translate(180,39.99999999999999)" d="M4.955957751772295,0A4.955957751772295,4.955957751772295,0,1,1,-4.955957751772295,0A4.955957751772295,4.955957751772295,0,1,1,4.955957751772295,0" fill="rgb(240, 118, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.5; y: 0.9; val: −0.171310523712" role="graphics-symbol" aria-roledescription="point" transform="translate(200,39.99999999999999)" d="M5.226308371916076,0A5.226308371916076,5.226308371916076,0,1,1,-5.226308371916076,0A5.226308371916076,5.226308371916076,0,1,1,5.226308371916076,0" fill="rgb(236, 125, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.55; y: 0.9; val: −0.0947608942531" role="graphics-symbol" aria-roledescription="point" transform="translate(220.00000000000003,39.99999999999999)" d="M5.631575065262344,0A5.631575065262344,5.631575065262344,0,1,1,-5.631575065262344,0A5.631575065262344,5.631575065262344,0,1,1,5.631575065262344,0" fill="rgb(231, 137, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.6; y: 0.9; val: 0.00937058012694" role="graphics-symbol" aria-roledescription="point" transform="translate(240.00000000000003,39.99999999999999)" d="M6.140071372231766,0A6.140071372231766,6.140071372231766,0,1,1,-6.140071372231766,0A6.140071372231766,6.140071372231766,0,1,1,6.140071372231766,0" fill="rgb(222, 152, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.65; y: 0.9; val: 0.141491787461" role="graphics-symbol" aria-roledescription="point" transform="translate(260,39.99999999999999)" d="M6.730175498463649,0A6.730175498463649,6.730175498463649,0,1,1,-6.730175498463649,0A6.730175498463649,6.730175498463649,0,1,1,6.730175498463649,0" fill="rgb(209, 169, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.7; y: 0.9; val: 0.295590949704" role="graphics-symbol" aria-roledescription="point" transform="translate(280,39.99999999999999)" d="M7.358900542199995,0A7.358900542199995,7.358900542199995,0,1,1,-7.358900542199995,0A7.358900542199995,7.358900542199995,0,1,1,7.358900542199995,0" fill="rgb(190, 188, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.75; y: 0.9; val: 0.458274244806" role="graphics-symbol" aria-roledescription="point" transform="translate(300,39.99999999999999)" d="M7.969003570380501,0A7.969003570380501,7.969003570380501,0,1,1,-7.969003570380501,0A7.969003570380501,7.969003570380501,0,1,1,7.969003570380501,0" fill="rgb(167, 207, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.8; y: 0.9; val: 0.61227369153" role="graphics-symbol" aria-roledescription="point" transform="translate(320,39.99999999999999)" d="M8.506317702763921,0A8.506317702763921,8.506317702763921,0,1,1,-8.506317702763921,0A8.506317702763921,8.506317702763921,0,1,1,8.506317702763921,0" fill="rgb(139, 224, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.85; y: 0.9; val: 0.741360549753" role="graphics-symbol" aria-roledescription="point" transform="translate(340.00000000000006,39.99999999999999)" d="M8.931842011635705,0A8.931842011635705,8.931842011635705,0,1,1,-8.931842011635705,0A8.931842011635705,8.931842011635705,0,1,1,8.931842011635705,0" fill="rgb(109, 237, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.9; y: 0.9; val: 0.833869060311" role="graphics-symbol" aria-roledescription="point" transform="translate(360,39.99999999999999)" d="M9.224722876076262,0A9.224722876076262,9.224722876076262,0,1,1,-9.224722876076262,0A9.224722876076262,9.224722876076262,0,1,1,9.224722876076262,0" fill="rgb(77, 246, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.95; y: 0.9; val: 0.882838547745" role="graphics-symbol" aria-roledescription="point" transform="translate(380,39.99999999999999)" d="M9.376057184287081,0A9.376057184287081,9.376057184287081,0,1,1,-9.376057184287081,0A9.376057184287081,9.376057184287081,0,1,1,9.376057184287081,0" fill="rgb(52, 251, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0; y: 0.95; val: 0.419113652853" role="graphics-symbol" aria-roledescription="point" transform="translate(0,19.99999999999997)" d="M7.8264890656969905,0A7.8264890656969905,7.8264890656969905,0,1,1,-7.8264890656969905,0A7.8264890656969905,7.8264890656969905,0,1,1,7.8264890656969905,0" fill="rgb(173, 203, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.05; y: 0.95; val: 0.36291507807" role="graphics-symbol" aria-roledescription="point" transform="translate(20,19.99999999999997)" d="M7.617311984506017,0A7.617311984506017,7.617311984506017,0,1,1,-7.617311984506017,0A7.617311984506017,7.617311984506017,0,1,1,7.617311984506017,0" fill="rgb(181, 196, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.1; y: 0.95; val: 0.29787597405" role="graphics-symbol" aria-roledescription="point" transform="translate(40,19.99999999999997)" d="M7.367819780917363,0A7.367819780917363,7.367819780917363,0,1,1,-7.367819780917363,0A7.367819780917363,7.367819780917363,0,1,1,7.367819780917363,0" fill="rgb(190, 189, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.15; y: 0.95; val: 0.219985721446" role="graphics-symbol" aria-roledescription="point" transform="translate(60.00000000000001,19.99999999999997)" d="M7.057433395584698,0A7.057433395584698,7.057433395584698,0,1,1,-7.057433395584698,0A7.057433395584698,7.057433395584698,0,1,1,7.057433395584698,0" fill="rgb(200, 179, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.2; y: 0.95; val: 0.130312341231" role="graphics-symbol" aria-roledescription="point" transform="translate(80,19.99999999999997)" d="M6.682262255446378,0A6.682262255446378,6.682262255446378,0,1,1,-6.682262255446378,0A6.682262255446378,6.682262255446378,0,1,1,6.682262255446378,0" fill="rgb(210, 168, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.25; y: 0.95; val: 0.035601242074" role="graphics-symbol" aria-roledescription="point" transform="translate(100,19.99999999999997)" d="M6.261653614654232,0A6.261653614654232,6.261653614654232,0,1,1,-6.261653614654232,0A6.261653614654232,6.261653614654232,0,1,1,6.261653614654232,0" fill="rgb(219, 155, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.3; y: 0.95; val: −0.0536006140905" role="graphics-symbol" aria-roledescription="point" transform="translate(120.00000000000001,19.99999999999997)" d="M5.837865495806203,0A5.837865495806203,5.837865495806203,0,1,1,-5.837865495806203,0A5.837865495806203,5.837865495806203,0,1,1,5.837865495806203,0" fill="rgb(227, 143, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.35; y: 0.95; val: −0.125951187852" role="graphics-symbol" aria-roledescription="point" transform="translate(140,19.99999999999997)" d="M5.470074161507871,0A5.470074161507871,5.470074161507871,0,1,1,-5.470074161507871,0A5.470074161507871,5.470074161507871,0,1,1,5.470074161507871,0" fill="rgb(233, 132, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.4; y: 0.95; val: −0.172298440048" role="graphics-symbol" aria-roledescription="point" transform="translate(160,19.99999999999997)" d="M5.220872564700598,0A5.220872564700598,5.220872564700598,0,1,1,-5.220872564700598,0A5.220872564700598,5.220872564700598,0,1,1,5.220872564700598,0" fill="rgb(237, 125, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.45; y: 0.95; val: −0.187683873045" role="graphics-symbol" aria-roledescription="point" transform="translate(180,19.99999999999997)" d="M5.135474878021217,0A5.135474878021217,5.135474878021217,0,1,1,-5.135474878021217,0A5.135474878021217,5.135474878021217,0,1,1,5.135474878021217,0" fill="rgb(238, 123, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.5; y: 0.95; val: −0.17156280915" role="graphics-symbol" aria-roledescription="point" transform="translate(200,19.99999999999997)" d="M5.224920760677725,0A5.224920760677725,5.224920760677725,0,1,1,-5.224920760677725,0A5.224920760677725,5.224920760677725,0,1,1,5.224920760677725,0" fill="rgb(236, 125, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.55; y: 0.95; val: −0.123169725005" role="graphics-symbol" aria-roledescription="point" transform="translate(220.00000000000003,19.99999999999997)" d="M5.484669495543215,0A5.484669495543215,5.484669495543215,0,1,1,-5.484669495543215,0A5.484669495543215,5.484669495543215,0,1,1,5.484669495543215,0" fill="rgb(233, 133, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.6; y: 0.95; val: −0.0358674824741" role="graphics-symbol" aria-roledescription="point" transform="translate(240.00000000000003,19.99999999999997)" d="M5.924528296003051,0A5.924528296003051,5.924528296003051,0,1,1,-5.924528296003051,0A5.924528296003051,5.924528296003051,0,1,1,5.924528296003051,0" fill="rgb(226, 145, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.65; y: 0.95; val: 0.0933714165846" role="graphics-symbol" aria-roledescription="point" transform="translate(260,19.99999999999997)" d="M6.521436668846354,0A6.521436668846354,6.521436668846354,0,1,1,-6.521436668846354,0A6.521436668846354,6.521436668846354,0,1,1,6.521436668846354,0" fill="rgb(214, 163, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.7; y: 0.95; val: 0.257079187567" role="graphics-symbol" aria-roledescription="point" transform="translate(280,19.99999999999997)" d="M7.206915246592977,0A7.206915246592977,7.206915246592977,0,1,1,-7.206915246592977,0A7.206915246592977,7.206915246592977,0,1,1,7.206915246592977,0" fill="rgb(195, 184, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.75; y: 0.95; val: 0.437818749358" role="graphics-symbol" aria-roledescription="point" transform="translate(300,19.99999999999997)" d="M7.89488220275509,0A7.89488220275509,7.89488220275509,0,1,1,-7.89488220275509,0A7.89488220275509,7.89488220275509,0,1,1,7.89488220275509,0" fill="rgb(170, 205, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.8; y: 0.95; val: 0.613027704376" role="graphics-symbol" aria-roledescription="point" transform="translate(320,19.99999999999997)" d="M8.508865032248442,0A8.508865032248442,8.508865032248442,0,1,1,-8.508865032248442,0A8.508865032248442,8.508865032248442,0,1,1,8.508865032248442,0" fill="rgb(139, 224, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.85; y: 0.95; val: 0.761280728075" role="graphics-symbol" aria-roledescription="point" transform="translate(340.00000000000006,19.99999999999997)" d="M8.99571468772395,0A8.99571468772395,8.99571468772395,0,1,1,-8.99571468772395,0A8.99571468772395,8.99571468772395,0,1,1,8.99571468772395,0" fill="rgb(103, 239, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.9; y: 0.95; val: 0.867334841307" role="graphics-symbol" aria-roledescription="point" transform="translate(360,19.99999999999997)" d="M9.328410445560884,0A9.328410445560884,9.328410445560884,0,1,1,-9.328410445560884,0A9.328410445560884,9.328410445560884,0,1,1,9.328410445560884,0" fill="rgb(61, 250, 0)" stroke-width="2" opacity="0.7"/><path aria-label="x: 0.95; y: 0.95; val: 0.923538101488" role="graphics-symbol" aria-roledescription="point" transform="translate(380,19.99999999999997)" d="M9.5,0A9.5,9.5,0,1,1,-9.5,0A9.5,9.5,0,1,1,9.5,0" fill="rgb(0, 255, 0)" stroke-width="2" opacity="0.7"/></g></g><path class="foreground" aria-hidden="true" d="" display="none"/></g></g></g></svg>