diff --git a/Cargo.lock b/Cargo.lock index 470428c..ff7e72e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -352,13 +352,17 @@ dependencies = [ "cfg-if", "csscolorparser", "image", + "lazy_static", "lyon_extra", "lyon_path", "pyo3", "reqwest", + "resvg 0.38.0", "serde", "serde_json", "thiserror", + "tiny-skia 0.11.3", + "usvg 0.38.0", ] [[package]] @@ -772,7 +776,7 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "75acbfb314aeb4f5210d379af45ed1ec2c98c7f1790bf57b8a4c562ac0c51b71" dependencies = [ - "fontdb", + "fontdb 0.15.0", "libm", "log", "rangemap", @@ -2211,7 +2215,7 @@ version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "674e258f4b5d2dcd63888c01c68413c51f565e8af99d2f7701c7b81d79ef41c4" dependencies = [ - "roxmltree", + "roxmltree 0.18.1", ] [[package]] @@ -2228,6 +2232,20 @@ dependencies = [ "ttf-parser 0.19.2", ] +[[package]] +name = "fontdb" +version = "0.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "98b88c54a38407f7352dd2c4238830115a6377741098ffd1f997c813d0e088a6" +dependencies = [ + "fontconfig-parser", + "log", + "memmap2 0.9.4", + "slotmap", + "tinyvec", + "ttf-parser 0.20.0", +] + [[package]] name = "foreign-types" version = "0.3.2" @@ -3533,6 +3551,15 @@ dependencies = [ "libc", ] +[[package]] +name = "memmap2" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fe751422e4a8caa417e13c3ea66452215d7d63e19e604f4980461212f3ae1322" +dependencies = [ + "libc", +] + [[package]] name = "memmem" version = "0.1.1" @@ -4911,9 +4938,26 @@ dependencies = [ "pico-args", "png", "rgb", - "svgtypes", + "svgtypes 0.12.0", + "tiny-skia 0.11.3", + "usvg 0.36.0", +] + +[[package]] +name = "resvg" +version = "0.38.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c34501046959e06470ba62a2dc7f31c15f94ac250d842a45f9e012f4ee40c1e" +dependencies = [ + "gif", + "jpeg-decoder", + "log", + "pico-args", + "png", + "rgb", + "svgtypes 0.13.0", "tiny-skia 0.11.3", - "usvg", + "usvg 0.38.0", ] [[package]] @@ -4976,6 +5020,12 @@ dependencies = [ "xmlparser", ] +[[package]] +name = "roxmltree" +version = "0.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3cd14fd5e3b777a7422cca79358c57a8f6e3a703d9ac187448d0daf220c2407f" + [[package]] name = "rsa" version = "0.9.6" @@ -5184,6 +5234,22 @@ dependencies = [ "unicode-script", ] +[[package]] +name = "rustybuzz" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0ae5692c5beaad6a9e22830deeed7874eae8a4e3ba4076fb48e12c56856222c" +dependencies = [ + "bitflags 2.4.1", + "bytemuck", + "smallvec", + "ttf-parser 0.20.0", + "unicode-bidi-mirroring", + "unicode-ccc", + "unicode-properties", + "unicode-script", +] + [[package]] name = "ryu" version = "1.0.16" @@ -5723,7 +5789,7 @@ dependencies = [ "miniz_oxide", "once_cell", "pdf-writer", - "usvg", + "usvg 0.36.0", ] [[package]] @@ -5742,6 +5808,16 @@ dependencies = [ "siphasher 0.3.11", ] +[[package]] +name = "svgtypes" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e44e288cd960318917cbd540340968b90becc8bc81f171345d706e7a89d9d70" +dependencies = [ + "kurbo", + "siphasher 0.3.11", +] + [[package]] name = "swash" version = "0.1.8" @@ -6814,9 +6890,24 @@ dependencies = [ "base64 0.21.5", "log", "pico-args", - "usvg-parser", - "usvg-text-layout", - "usvg-tree", + "usvg-parser 0.36.0", + "usvg-text-layout 0.36.0", + "usvg-tree 0.36.0", + "xmlwriter", +] + +[[package]] +name = "usvg" +version = "0.38.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "377f62b4a3c173de8654c1aa80ab1dac1154e6f13a779a9943e53780120d1625" +dependencies = [ + "base64 0.21.5", + "log", + "pico-args", + "usvg-parser 0.38.0", + "usvg-text-layout 0.38.0", + "usvg-tree 0.38.0", "xmlwriter", ] @@ -6831,11 +6922,29 @@ dependencies = [ "imagesize", "kurbo", "log", - "roxmltree", + "roxmltree 0.18.1", + "simplecss", + "siphasher 0.3.11", + "svgtypes 0.12.0", + "usvg-tree 0.36.0", +] + +[[package]] +name = "usvg-parser" +version = "0.38.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "351a05e6f2023d6b4e946f734240a3927aefdcf930d7d42587a2c8a8869814b0" +dependencies = [ + "data-url", + "flate2", + "imagesize", + "kurbo", + "log", + "roxmltree 0.19.0", "simplecss", "siphasher 0.3.11", - "svgtypes", - "usvg-tree", + "svgtypes 0.13.0", + "usvg-tree 0.38.0", ] [[package]] @@ -6844,14 +6953,30 @@ version = "0.36.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4d2374378cb7a3fb8f33894e0fdb8625e1bbc4f25312db8d91f862130b541593" dependencies = [ - "fontdb", + "fontdb 0.15.0", "kurbo", "log", "rustybuzz 0.10.0", "unicode-bidi", "unicode-script", "unicode-vo", - "usvg-tree", + "usvg-tree 0.36.0", +] + +[[package]] +name = "usvg-text-layout" +version = "0.38.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8c41888b9d5cf431fe852eaf9d047bbde83251b98f1749c2f08b1071e6db46e2" +dependencies = [ + "fontdb 0.16.0", + "kurbo", + "log", + "rustybuzz 0.12.1", + "unicode-bidi", + "unicode-script", + "unicode-vo", + "usvg-tree 0.38.0", ] [[package]] @@ -6862,7 +6987,18 @@ checksum = "6cacb0c5edeaf3e80e5afcf5b0d4004cc1d36318befc9a7c6606507e5d0f4062" dependencies = [ "rctree", "strict-num", - "svgtypes", + "svgtypes 0.12.0", + "tiny-skia-path 0.11.3", +] + +[[package]] +name = "usvg-tree" +version = "0.38.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18863e0404ed153d6e56362c5b1146db9f4f262a3244e3cf2dbe7d8a85909f05" +dependencies = [ + "strict-num", + "svgtypes 0.13.0", "tiny-skia-path 0.11.3", ] @@ -6933,7 +7069,7 @@ dependencies = [ "svg2pdf", "ttf-parser 0.20.0", "unicode-bidi", - "usvg", + "usvg 0.36.0", ] [[package]] @@ -6947,7 +7083,7 @@ dependencies = [ "deno_graph", "deno_runtime", "env_logger", - "fontdb", + "fontdb 0.15.0", "futures", "futures-util", "http", @@ -6958,13 +7094,13 @@ dependencies = [ "png", "regex", "reqwest", - "resvg", + "resvg 0.36.0", "serde", "serde_json", "tempfile", "tiny-skia 0.11.3", "tokio", - "usvg", + "usvg 0.36.0", "vl-convert-pdf", ] diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/bar_chart_trellis_compact.png b/avenger-vega-test-data/vega-scenegraphs/vl-convert/bar_chart_trellis_compact.png new file mode 100644 index 0000000..17a8fca Binary files /dev/null and b/avenger-vega-test-data/vega-scenegraphs/vl-convert/bar_chart_trellis_compact.png differ diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/bar_chart_trellis_compact.sg.json b/avenger-vega-test-data/vega-scenegraphs/vl-convert/bar_chart_trellis_compact.sg.json new file mode 100644 index 0000000..9db01d2 --- /dev/null +++ b/avenger-vega-test-data/vega-scenegraphs/vl-convert/bar_chart_trellis_compact.sg.json @@ -0,0 +1,1931 @@ +{ + "width": 300, + "height": 225, + "origin": [ + 70, + 57 + ], + "scenegraph": { + "clip": false, + "interactive": true, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": true, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "text": "Factor A", + "baseline": "top", + "align": "center", + "angle": -90 + } + ], + "marktype": "text", + "role": "title-text", + "zindex": 0 + } + ], + "orient": "left", + "offset": 10, + "align": "center", + "angle": -90, + "x": -21.000000000000004, + "y": 0 + } + ], + "marktype": "group", + "role": "title", + "zindex": 0 + } + ], + "x": -44, + "y": 58 + } + ], + "marktype": "group", + "name": "row-title", + "role": "row-title", + "zindex": 0 + }, + { + "clip": false, + "interactive": true, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "text": "Factor B", + "baseline": "top", + "align": "center", + "angle": 0 + } + ], + "marktype": "text", + "role": "title-text", + "zindex": 0 + } + ], + "orient": "top", + "offset": 10, + "align": "center", + "angle": 0, + "x": 0, + "y": -21 + } + ], + "marktype": "group", + "role": "title", + "zindex": 0 + } + ], + "x": 112, + "y": -31 + } + ], + "marktype": "group", + "name": "column-title", + "role": "column-title", + "zindex": 0 + }, + { + "clip": false, + "interactive": true, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "baseline": "middle", + "text": "a1", + "align": "right", + "angle": 0 + } + ], + "marktype": "text", + "role": "title-text", + "zindex": 0 + } + ], + "orient": "left", + "offset": 10, + "align": "center", + "angle": -90, + "x": -21.123046875, + "y": 12 + } + ], + "marktype": "group", + "role": "title", + "zindex": 0 + } + ], + "height": 24, + "x": -1, + "y": 0 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "baseline": "middle", + "text": "a2", + "align": "right", + "angle": 0 + } + ], + "marktype": "text", + "role": "title-text", + "zindex": 0 + } + ], + "orient": "left", + "offset": 10, + "align": "center", + "angle": -90, + "x": -21.123046875, + "y": 12 + } + ], + "marktype": "group", + "role": "title", + "zindex": 0 + } + ], + "height": 24, + "x": -1, + "y": 46 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "baseline": "middle", + "text": "a3", + "align": "right", + "angle": 0 + } + ], + "marktype": "text", + "role": "title-text", + "zindex": 0 + } + ], + "orient": "left", + "offset": 10, + "align": "center", + "angle": -90, + "x": -21.123046875, + "y": 12 + } + ], + "marktype": "group", + "role": "title", + "zindex": 0 + } + ], + "height": 24, + "x": -1, + "y": 92 + } + ], + "marktype": "group", + "name": "row_header", + "role": "row-header", + "zindex": 0 + }, + { + "clip": false, + "interactive": true, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "baseline": "top", + "text": "b1", + "align": "center", + "angle": 0 + } + ], + "marktype": "text", + "role": "title-text", + "zindex": 0 + } + ], + "orient": "top", + "offset": 10, + "align": "center", + "angle": 0, + "x": 30, + "y": -20 + } + ], + "marktype": "group", + "role": "title", + "zindex": 0 + } + ], + "width": 60, + "x": 0, + "y": -1 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "baseline": "top", + "text": "b2", + "align": "center", + "angle": 0 + } + ], + "marktype": "text", + "role": "title-text", + "zindex": 0 + } + ], + "orient": "top", + "offset": 10, + "align": "center", + "angle": 0, + "x": 30, + "y": -20 + } + ], + "marktype": "group", + "role": "title", + "zindex": 0 + } + ], + "width": 60, + "x": 82, + "y": -1 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "baseline": "top", + "text": "b3", + "align": "center", + "angle": 0 + } + ], + "marktype": "text", + "role": "title-text", + "zindex": 0 + } + ], + "orient": "top", + "offset": 10, + "align": "center", + "angle": 0, + "x": 30, + "y": -20 + } + ], + "marktype": "group", + "role": "title", + "zindex": 0 + } + ], + "width": 60, + "x": 164, + "y": -1 + } + ], + "marktype": "group", + "name": "column_header", + "role": "column-header", + "zindex": 0 + }, + { + "clip": false, + "interactive": true, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 0 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 30 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 60 + } + ], + "marktype": "rule", + "role": "axis-tick", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 0, + "y": 7, + "angle": 0, + "limit": 180, + "text": "0%", + "align": "left", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 0, + "x": 30, + "y": 7, + "angle": 0, + "limit": 180, + "text": "50%", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 60, + "y": 7, + "angle": 0, + "limit": 180, + "text": "100%", + "align": "right", + "baseline": "top" + } + ], + "marktype": "text", + "role": "axis-label", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "x": 0, + "x2": 60, + "y": 0 + } + ], + "marktype": "rule", + "role": "axis-domain", + "zindex": 0 + } + ], + "orient": "bottom", + "offset": 0, + "x": 0.5, + "y": 0.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0 + } + ], + "width": 60, + "x": 0, + "y": 117 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 0 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 30 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 60 + } + ], + "marktype": "rule", + "role": "axis-tick", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 0, + "y": 7, + "angle": 0, + "limit": 180, + "text": "0%", + "align": "left", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 0, + "x": 30, + "y": 7, + "angle": 0, + "limit": 180, + "text": "50%", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 60, + "y": 7, + "angle": 0, + "limit": 180, + "text": "100%", + "align": "right", + "baseline": "top" + } + ], + "marktype": "text", + "role": "axis-label", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "x": 0, + "x2": 60, + "y": 0 + } + ], + "marktype": "rule", + "role": "axis-domain", + "zindex": 0 + } + ], + "orient": "bottom", + "offset": 0, + "x": 0.5, + "y": 0.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0 + } + ], + "width": 60, + "x": 82, + "y": 117 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 0 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 30 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 60 + } + ], + "marktype": "rule", + "role": "axis-tick", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 0, + "y": 7, + "angle": 0, + "limit": 180, + "text": "0%", + "align": "left", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 0, + "x": 30, + "y": 7, + "angle": 0, + "limit": 180, + "text": "50%", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 60, + "y": 7, + "angle": 0, + "limit": 180, + "text": "100%", + "align": "right", + "baseline": "top" + } + ], + "marktype": "text", + "role": "axis-label", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "x": 0, + "x2": 60, + "y": 0 + } + ], + "marktype": "rule", + "role": "axis-domain", + "zindex": 0 + } + ], + "orient": "bottom", + "offset": 0, + "x": 0.5, + "y": 0.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0 + } + ], + "width": 60, + "x": 164, + "y": 117 + } + ], + "marktype": "group", + "name": "column_footer", + "role": "column-footer", + "zindex": 0 + }, + { + "clip": false, + "interactive": true, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 0, + "y2": -24 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 30, + "y": 0, + "y2": -24 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 60, + "y": 0, + "y2": -24 + } + ], + "marktype": "rule", + "role": "axis-grid", + "zindex": 0 + } + ], + "orient": "bottom", + "offset": 0, + "x": 0.5, + "y": 24.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0, + "aria": false + }, + { + "clip": false, + "interactive": true, + "items": [ + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "p: 14.000000%; c: x; settings: x", + "x": 0, + "x2": 8.4, + "y": 0.40000000000000036, + "height": 7.2, + "width": 8.4 + }, + { + "fill": "#f58518", + "ariaRoleDescription": "bar", + "description": "p: 60.000000%; c: y; settings: y", + "x": 0, + "x2": 36, + "y": 8.4, + "height": 7.2, + "width": 36 + }, + { + "fill": "#e45756", + "ariaRoleDescription": "bar", + "description": "p: 3.000000%; c: z; settings: z", + "x": 0, + "x2": 1.7999999999999998, + "y": 16.4, + "height": 7.2, + "width": 1.7999999999999998 + } + ], + "marktype": "rect", + "name": "child_marks", + "role": "mark", + "zindex": 0 + } + ], + "fill": "transparent", + "stroke": "#ddd", + "width": 60, + "height": 24, + "x": 0, + "y": 0 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 0, + "y2": -24 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 30, + "y": 0, + "y2": -24 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 60, + "y": 0, + "y2": -24 + } + ], + "marktype": "rule", + "role": "axis-grid", + "zindex": 0 + } + ], + "orient": "bottom", + "offset": 0, + "x": 0.5, + "y": 24.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0, + "aria": false + }, + { + "clip": false, + "interactive": true, + "items": [ + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "p: 80.000000%; c: x; settings: x", + "x": 0, + "x2": 48, + "y": 0.40000000000000036, + "height": 7.2, + "width": 48 + }, + { + "fill": "#f58518", + "ariaRoleDescription": "bar", + "description": "p: 38.000000%; c: y; settings: y", + "x": 0, + "x2": 22.8, + "y": 8.4, + "height": 7.2, + "width": 22.8 + }, + { + "fill": "#e45756", + "ariaRoleDescription": "bar", + "description": "p: 55.000000%; c: z; settings: z", + "x": 0, + "x2": 33, + "y": 16.4, + "height": 7.2, + "width": 33 + } + ], + "marktype": "rect", + "name": "child_marks", + "role": "mark", + "zindex": 0 + } + ], + "fill": "transparent", + "stroke": "#ddd", + "width": 60, + "height": 24, + "x": 82, + "y": 0 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 0, + "y2": -24 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 30, + "y": 0, + "y2": -24 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 60, + "y": 0, + "y2": -24 + } + ], + "marktype": "rule", + "role": "axis-grid", + "zindex": 0 + } + ], + "orient": "bottom", + "offset": 0, + "x": 0.5, + "y": 24.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0, + "aria": false + }, + { + "clip": false, + "interactive": true, + "items": [ + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "p: 11.000000%; c: x; settings: x", + "x": 0, + "x2": 6.6, + "y": 0.40000000000000036, + "height": 7.2, + "width": 6.6 + }, + { + "fill": "#f58518", + "ariaRoleDescription": "bar", + "description": "p: 58.000000%; c: y; settings: y", + "x": 0, + "x2": 34.8, + "y": 8.4, + "height": 7.2, + "width": 34.8 + }, + { + "fill": "#e45756", + "ariaRoleDescription": "bar", + "description": "p: 79.000000%; c: z; settings: z", + "x": 0, + "x2": 47.400000000000006, + "y": 16.4, + "height": 7.2, + "width": 47.400000000000006 + } + ], + "marktype": "rect", + "name": "child_marks", + "role": "mark", + "zindex": 0 + } + ], + "fill": "transparent", + "stroke": "#ddd", + "width": 60, + "height": 24, + "x": 164, + "y": 0 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 0, + "y2": -24 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 30, + "y": 0, + "y2": -24 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 60, + "y": 0, + "y2": -24 + } + ], + "marktype": "rule", + "role": "axis-grid", + "zindex": 0 + } + ], + "orient": "bottom", + "offset": 0, + "x": 0.5, + "y": 24.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0, + "aria": false + }, + { + "clip": false, + "interactive": true, + "items": [ + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "p: 83.000000%; c: x; settings: x", + "x": 0, + "x2": 49.8, + "y": 0.40000000000000036, + "height": 7.2, + "width": 49.8 + }, + { + "fill": "#f58518", + "ariaRoleDescription": "bar", + "description": "p: 87.000000%; c: y; settings: y", + "x": 0, + "x2": 52.2, + "y": 8.4, + "height": 7.2, + "width": 52.2 + }, + { + "fill": "#e45756", + "ariaRoleDescription": "bar", + "description": "p: 67.000000%; c: z; settings: z", + "x": 0, + "x2": 40.2, + "y": 16.4, + "height": 7.2, + "width": 40.2 + } + ], + "marktype": "rect", + "name": "child_marks", + "role": "mark", + "zindex": 0 + } + ], + "fill": "transparent", + "stroke": "#ddd", + "width": 60, + "height": 24, + "x": 0, + "y": 46 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 0, + "y2": -24 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 30, + "y": 0, + "y2": -24 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 60, + "y": 0, + "y2": -24 + } + ], + "marktype": "rule", + "role": "axis-grid", + "zindex": 0 + } + ], + "orient": "bottom", + "offset": 0, + "x": 0.5, + "y": 24.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0, + "aria": false + }, + { + "clip": false, + "interactive": true, + "items": [ + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "p: 97.000000%; c: x; settings: x", + "x": 0, + "x2": 58.199999999999996, + "y": 0.40000000000000036, + "height": 7.2, + "width": 58.199999999999996 + }, + { + "fill": "#f58518", + "ariaRoleDescription": "bar", + "description": "p: 84.000000%; c: y; settings: y", + "x": 0, + "x2": 50.4, + "y": 8.4, + "height": 7.2, + "width": 50.4 + }, + { + "fill": "#e45756", + "ariaRoleDescription": "bar", + "description": "p: 90.000000%; c: z; settings: z", + "x": 0, + "x2": 54, + "y": 16.4, + "height": 7.2, + "width": 54 + } + ], + "marktype": "rect", + "name": "child_marks", + "role": "mark", + "zindex": 0 + } + ], + "fill": "transparent", + "stroke": "#ddd", + "width": 60, + "height": 24, + "x": 82, + "y": 46 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 0, + "y2": -24 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 30, + "y": 0, + "y2": -24 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 60, + "y": 0, + "y2": -24 + } + ], + "marktype": "rule", + "role": "axis-grid", + "zindex": 0 + } + ], + "orient": "bottom", + "offset": 0, + "x": 0.5, + "y": 24.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0, + "aria": false + }, + { + "clip": false, + "interactive": true, + "items": [ + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "p: 74.000000%; c: x; settings: x", + "x": 0, + "x2": 44.4, + "y": 0.40000000000000036, + "height": 7.2, + "width": 44.4 + }, + { + "fill": "#f58518", + "ariaRoleDescription": "bar", + "description": "p: 64.000000%; c: y; settings: y", + "x": 0, + "x2": 38.4, + "y": 8.4, + "height": 7.2, + "width": 38.4 + }, + { + "fill": "#e45756", + "ariaRoleDescription": "bar", + "description": "p: 19.000000%; c: z; settings: z", + "x": 0, + "x2": 11.4, + "y": 16.4, + "height": 7.2, + "width": 11.4 + } + ], + "marktype": "rect", + "name": "child_marks", + "role": "mark", + "zindex": 0 + } + ], + "fill": "transparent", + "stroke": "#ddd", + "width": 60, + "height": 24, + "x": 164, + "y": 46 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 0, + "y2": -24 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 30, + "y": 0, + "y2": -24 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 60, + "y": 0, + "y2": -24 + } + ], + "marktype": "rule", + "role": "axis-grid", + "zindex": 0 + } + ], + "orient": "bottom", + "offset": 0, + "x": 0.5, + "y": 24.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0, + "aria": false + }, + { + "clip": false, + "interactive": true, + "items": [ + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "p: 57.000000%; c: x; settings: x", + "x": 0, + "x2": 34.199999999999996, + "y": 0.40000000000000036, + "height": 7.2, + "width": 34.199999999999996 + }, + { + "fill": "#f58518", + "ariaRoleDescription": "bar", + "description": "p: 35.000000%; c: y; settings: y", + "x": 0, + "x2": 21, + "y": 8.4, + "height": 7.2, + "width": 21 + }, + { + "fill": "#e45756", + "ariaRoleDescription": "bar", + "description": "p: 49.000000%; c: z; settings: z", + "x": 0, + "x2": 29.4, + "y": 16.4, + "height": 7.2, + "width": 29.4 + } + ], + "marktype": "rect", + "name": "child_marks", + "role": "mark", + "zindex": 0 + } + ], + "fill": "transparent", + "stroke": "#ddd", + "width": 60, + "height": 24, + "x": 0, + "y": 92 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 0, + "y2": -24 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 30, + "y": 0, + "y2": -24 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 60, + "y": 0, + "y2": -24 + } + ], + "marktype": "rule", + "role": "axis-grid", + "zindex": 0 + } + ], + "orient": "bottom", + "offset": 0, + "x": 0.5, + "y": 24.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0, + "aria": false + }, + { + "clip": false, + "interactive": true, + "items": [ + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "p: 91.000000%; c: x; settings: x", + "x": 0, + "x2": 54.6, + "y": 0.40000000000000036, + "height": 7.2, + "width": 54.6 + }, + { + "fill": "#f58518", + "ariaRoleDescription": "bar", + "description": "p: 38.000000%; c: y; settings: y", + "x": 0, + "x2": 22.8, + "y": 8.4, + "height": 7.2, + "width": 22.8 + }, + { + "fill": "#e45756", + "ariaRoleDescription": "bar", + "description": "p: 91.000000%; c: z; settings: z", + "x": 0, + "x2": 54.6, + "y": 16.4, + "height": 7.2, + "width": 54.6 + } + ], + "marktype": "rect", + "name": "child_marks", + "role": "mark", + "zindex": 0 + } + ], + "fill": "transparent", + "stroke": "#ddd", + "width": 60, + "height": 24, + "x": 82, + "y": 92 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 0, + "y2": -24 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 30, + "y": 0, + "y2": -24 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 60, + "y": 0, + "y2": -24 + } + ], + "marktype": "rule", + "role": "axis-grid", + "zindex": 0 + } + ], + "orient": "bottom", + "offset": 0, + "x": 0.5, + "y": 24.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0, + "aria": false + }, + { + "clip": false, + "interactive": true, + "items": [ + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "p: 99.000000%; c: x; settings: x", + "x": 0, + "x2": 59.4, + "y": 0.40000000000000036, + "height": 7.2, + "width": 59.4 + }, + { + "fill": "#f58518", + "ariaRoleDescription": "bar", + "description": "p: 80.000000%; c: y; settings: y", + "x": 0, + "x2": 48, + "y": 8.4, + "height": 7.2, + "width": 48 + }, + { + "fill": "#e45756", + "ariaRoleDescription": "bar", + "description": "p: 37.000000%; c: z; settings: z", + "x": 0, + "x2": 22.2, + "y": 16.4, + "height": 7.2, + "width": 22.2 + } + ], + "marktype": "rect", + "name": "child_marks", + "role": "mark", + "zindex": 0 + } + ], + "fill": "transparent", + "stroke": "#ddd", + "width": 60, + "height": 24, + "x": 164, + "y": 92 + } + ], + "marktype": "group", + "name": "cell", + "role": "scope", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "x": 6, + "y": 6, + "shape": "square", + "size": 100, + "strokeWidth": 1.5, + "fill": "#4c78a8" + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 16, + "y": 6, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "x" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 21, + "height": 11, + "opacity": 1, + "x": 0, + "y": 0 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "x": 6, + "y": 6, + "shape": "square", + "size": 100, + "strokeWidth": 1.5, + "fill": "#f58518" + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 16, + "y": 6, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "y" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 21, + "height": 11, + "opacity": 1, + "x": 31, + "y": 0 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "x": 6, + "y": 6, + "shape": "square", + "size": 100, + "strokeWidth": 1.5, + "fill": "#e45756" + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 16, + "y": 6, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "z" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 21, + "height": 11, + "opacity": 1, + "x": 62, + "y": 0 + } + ], + "marktype": "group", + "role": "scope", + "zindex": 0 + } + ], + "x": 48, + "y": 0 + } + ], + "marktype": "group", + "role": "legend-entry", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "orient": "left", + "text": "settings", + "limit": 180, + "x": 0, + "y": 6, + "angle": 0, + "align": "left", + "baseline": "middle" + } + ], + "marktype": "text", + "role": "legend-title", + "zindex": 0 + } + ], + "orient": "bottom", + "x": 0, + "y": 152, + "width": 131, + "height": 11 + } + ], + "marktype": "group", + "role": "legend", + "zindex": 0 + } + ], + "x": 0, + "y": 0, + "width": 0, + "height": 0 + } + ], + "marktype": "group", + "name": "root", + "role": "frame", + "zindex": 0 + } +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/circle_binned.png b/avenger-vega-test-data/vega-scenegraphs/vl-convert/circle_binned.png new file mode 100644 index 0000000..d1c5d9f Binary files /dev/null and b/avenger-vega-test-data/vega-scenegraphs/vl-convert/circle_binned.png differ diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/circle_binned.sg.json b/avenger-vega-test-data/vega-scenegraphs/vl-convert/circle_binned.sg.json new file mode 100644 index 0000000..8b1ae02 --- /dev/null +++ b/avenger-vega-test-data/vega-scenegraphs/vl-convert/circle_binned.sg.json @@ -0,0 +1,1480 @@ +{ + "width": 360, + "height": 247, + "origin": [ + 44, + 10 + ], + "scenegraph": { + "clip": false, + "interactive": true, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 0 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 22 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 44 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 67 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 89 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 111 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 133 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 156 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 178 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 200 + } + ], + "marktype": "rule", + "role": "axis-tick", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 0, + "y": 7, + "angle": 0, + "limit": 180, + "text": "1.0", + "align": "left", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 0, + "x": 22.22222222222222, + "y": 7, + "angle": 0, + "limit": 180, + "text": "2.0", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 44.44444444444444, + "y": 7, + "angle": 0, + "limit": 180, + "text": "3.0", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 0, + "x": 66.66666666666666, + "y": 7, + "angle": 0, + "limit": 180, + "text": "4.0", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 88.88888888888889, + "y": 7, + "angle": 0, + "limit": 180, + "text": "5.0", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 0, + "x": 111.11111111111111, + "y": 7, + "angle": 0, + "limit": 180, + "text": "6.0", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 133.33333333333331, + "y": 7, + "angle": 0, + "limit": 180, + "text": "7.0", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 0, + "x": 155.55555555555557, + "y": 7, + "angle": 0, + "limit": 180, + "text": "8.0", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 177.77777777777777, + "y": 7, + "angle": 0, + "limit": 180, + "text": "9.0", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 0, + "x": 200, + "y": 7, + "angle": 0, + "limit": 180, + "text": "10.0", + "align": "right", + "baseline": "top" + } + ], + "marktype": "text", + "role": "axis-label", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "x": 0, + "x2": 200, + "y": 0 + } + ], + "marktype": "rule", + "role": "axis-domain", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "align": "center", + "angle": 0, + "baseline": "top", + "text": "IMDB Rating (binned)", + "x": 100, + "y": 21 + } + ], + "marktype": "text", + "role": "axis-title", + "zindex": 0 + } + ], + "orient": "bottom", + "offset": 0, + "x": 0.5, + "y": 200.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 200, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 180, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 160, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 140, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 120, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 100, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 80, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 60, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 40, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 20, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "x": 0, + "x2": -5 + } + ], + "marktype": "rule", + "role": "axis-tick", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 200, + "angle": 0, + "limit": 180, + "text": "0", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 180, + "angle": 0, + "limit": 180, + "text": "10", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 160, + "angle": 0, + "limit": 180, + "text": "20", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 140, + "angle": 0, + "limit": 180, + "text": "30", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 120, + "angle": 0, + "limit": 180, + "text": "40", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 100, + "angle": 0, + "limit": 180, + "text": "50", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 80, + "angle": 0, + "limit": 180, + "text": "60", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 60.00000000000001, + "angle": 0, + "limit": 180, + "text": "70", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 39.99999999999999, + "angle": 0, + "limit": 180, + "text": "80", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 19.999999999999996, + "angle": 0, + "limit": 180, + "text": "90", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 0, + "angle": 0, + "limit": 180, + "text": "100", + "align": "right", + "baseline": "middle" + } + ], + "marktype": "text", + "role": "axis-label", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "x": 0, + "y": 200, + "y2": 0 + } + ], + "marktype": "rule", + "role": "axis-domain", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "align": "center", + "angle": -90, + "baseline": "bottom", + "text": "Rotten Tomatoes Rating (binned)", + "y": 100, + "x": -27.6845703125 + } + ], + "marktype": "text", + "role": "axis-title", + "zindex": 0 + } + ], + "orient": "left", + "offset": 0, + "x": 0.5, + "y": 0.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0 + }, + { + "clip": false, + "interactive": true, + "items": [ + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 3 – 4; Rotten Tomatoes Rating (binned): 60 – 70; Count of Records: 5", + "x": 55.55555555555556, + "y": 70, + "size": 10.808383233532934, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 5 – 6; Rotten Tomatoes Rating (binned): 20 – 30; Count of Records: 101", + "x": 100, + "y": 150, + "size": 218.32934131736528, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 7 – 8; Rotten Tomatoes Rating (binned): 80 – 90; Count of Records: 167", + "x": 144.44444444444443, + "y": 30.000000000000004, + "size": 361, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 8 – 9; Rotten Tomatoes Rating (binned): 90 – 100; Count of Records: 107", + "x": 166.66666666666669, + "y": 10.000000000000009, + "size": 231.29940119760482, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 6 – 7; Rotten Tomatoes Rating (binned): 80 – 90; Count of Records: 78", + "x": 122.22222222222223, + "y": 30.000000000000004, + "size": 168.6107784431138, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 2 – 3; Rotten Tomatoes Rating (binned): 90 – 100; Count of Records: 3", + "x": 33.33333333333333, + "y": 10.000000000000009, + "size": 6.485029940119761, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 7 – 8; Rotten Tomatoes Rating (binned): 50 – 60; Count of Records: 29", + "x": 144.44444444444443, + "y": 89.99999999999999, + "size": 62.68862275449102, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 5 – 6; Rotten Tomatoes Rating (binned): 30 – 40; Count of Records: 100", + "x": 100, + "y": 130, + "size": 216.16766467065867, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 7 – 8; Rotten Tomatoes Rating (binned): 70 – 80; Count of Records: 99", + "x": 144.44444444444443, + "y": 50, + "size": 214.0059880239521, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 3 – 4; Rotten Tomatoes Rating (binned): 10 – 20; Count of Records: 23", + "x": 55.55555555555556, + "y": 170, + "size": 49.7185628742515, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 7 – 8; Rotten Tomatoes Rating (binned): 90 – 100; Count of Records: 131", + "x": 144.44444444444443, + "y": 10.000000000000009, + "size": 283.17964071856284, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 6 – 7; Rotten Tomatoes Rating (binned): 10 – 20; Count of Records: 29", + "x": 122.22222222222223, + "y": 170, + "size": 62.68862275449102, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 6 – 7; Rotten Tomatoes Rating (binned): 50 – 60; Count of Records: 131", + "x": 122.22222222222223, + "y": 89.99999999999999, + "size": 283.17964071856284, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 4 – 5; Rotten Tomatoes Rating (binned): 10 – 20; Count of Records: 76", + "x": 77.77777777777779, + "y": 170, + "size": 164.2874251497006, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 6 – 7; Rotten Tomatoes Rating (binned): 40 – 50; Count of Records: 126", + "x": 122.22222222222223, + "y": 110.00000000000001, + "size": 272.3712574850299, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 6 – 7; Rotten Tomatoes Rating (binned): 20 – 30; Count of Records: 60", + "x": 122.22222222222223, + "y": 150, + "size": 129.7005988023952, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 5 – 6; Rotten Tomatoes Rating (binned): 50 – 60; Count of Records: 44", + "x": 100, + "y": 89.99999999999999, + "size": 95.11377245508983, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 3 – 4; Rotten Tomatoes Rating (binned): 70 – 80; Count of Records: 2", + "x": 55.55555555555556, + "y": 50, + "size": 4.323353293413174, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 6 – 7; Rotten Tomatoes Rating (binned): 90 – 100; Count of Records: 24", + "x": 122.22222222222223, + "y": 10.000000000000009, + "size": 51.880239520958085, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 5 – 6; Rotten Tomatoes Rating (binned): 60 – 70; Count of Records: 27", + "x": 100, + "y": 70, + "size": 58.365269461077844, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 5 – 6; Rotten Tomatoes Rating (binned): 70 – 80; Count of Records: 8", + "x": 100, + "y": 50, + "size": 17.293413173652695, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 6 – 7; Rotten Tomatoes Rating (binned): 60 – 70; Count of Records: 130", + "x": 122.22222222222223, + "y": 70, + "size": 281.0179640718563, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 7 – 8; Rotten Tomatoes Rating (binned): 60 – 70; Count of Records: 85", + "x": 144.44444444444443, + "y": 70, + "size": 183.7425149700599, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 6 – 7; Rotten Tomatoes Rating (binned): 30 – 40; Count of Records: 72", + "x": 122.22222222222223, + "y": 130, + "size": 155.64071856287427, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 5 – 6; Rotten Tomatoes Rating (binned): 80 – 90; Count of Records: 10", + "x": 100, + "y": 30.000000000000004, + "size": 21.61676646706587, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 3 – 4; Rotten Tomatoes Rating (binned): 90 – 100; Count of Records: 2", + "x": 55.55555555555556, + "y": 10.000000000000009, + "size": 4.323353293413174, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 3 – 4; Rotten Tomatoes Rating (binned): 20 – 30; Count of Records: 11", + "x": 55.55555555555556, + "y": 150, + "size": 23.778443113772457, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 4 – 5; Rotten Tomatoes Rating (binned): 40 – 50; Count of Records: 9", + "x": 77.77777777777779, + "y": 110.00000000000001, + "size": 19.455089820359284, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 5 – 6; Rotten Tomatoes Rating (binned): 10 – 20; Count of Records: 91", + "x": 100, + "y": 170, + "size": 196.71257485029938, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 5 – 6; Rotten Tomatoes Rating (binned): 40 – 50; Count of Records: 71", + "x": 100, + "y": 110.00000000000001, + "size": 153.47904191616766, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 4 – 5; Rotten Tomatoes Rating (binned): 50 – 60; Count of Records: 4", + "x": 77.77777777777779, + "y": 89.99999999999999, + "size": 8.646706586826348, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 8 – 9; Rotten Tomatoes Rating (binned): 70 – 80; Count of Records: 14", + "x": 166.66666666666669, + "y": 50, + "size": 30.263473053892213, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 6 – 7; Rotten Tomatoes Rating (binned): 70 – 80; Count of Records: 106", + "x": 122.22222222222223, + "y": 50, + "size": 229.1377245508982, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 8 – 9; Rotten Tomatoes Rating (binned): 30 – 40; Count of Records: 1", + "x": 166.66666666666669, + "y": 130, + "size": 2.161676646706587, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 8 – 9; Rotten Tomatoes Rating (binned): 80 – 90; Count of Records: 36", + "x": 166.66666666666669, + "y": 30.000000000000004, + "size": 77.82035928143713, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 4 – 5; Rotten Tomatoes Rating (binned): 70 – 80; Count of Records: 2", + "x": 77.77777777777779, + "y": 50, + "size": 4.323353293413174, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 5 – 6; Rotten Tomatoes Rating (binned): 90 – 100; Count of Records: 8", + "x": 100, + "y": 10.000000000000009, + "size": 17.293413173652695, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 4 – 5; Rotten Tomatoes Rating (binned): 20 – 30; Count of Records: 40", + "x": 77.77777777777779, + "y": 150, + "size": 86.46706586826348, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 4 – 5; Rotten Tomatoes Rating (binned): 0 – 10; Count of Records: 43", + "x": 77.77777777777779, + "y": 190, + "size": 92.95209580838322, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 5 – 6; Rotten Tomatoes Rating (binned): 0 – 10; Count of Records: 29", + "x": 100, + "y": 190, + "size": 62.68862275449102, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 9 – 10; Rotten Tomatoes Rating (binned): 90 – 100; Count of Records: 1", + "x": 188.88888888888889, + "y": 10.000000000000009, + "size": 2.161676646706587, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 4 – 5; Rotten Tomatoes Rating (binned): 30 – 40; Count of Records: 22", + "x": 77.77777777777779, + "y": 130, + "size": 47.556886227544915, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 7 – 8; Rotten Tomatoes Rating (binned): 40 – 50; Count of Records: 16", + "x": 144.44444444444443, + "y": 110.00000000000001, + "size": 34.58682634730539, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 3 – 4; Rotten Tomatoes Rating (binned): 0 – 10; Count of Records: 18", + "x": 55.55555555555556, + "y": 190, + "size": 38.91017964071857, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 2 – 3; Rotten Tomatoes Rating (binned): 10 – 20; Count of Records: 8", + "x": 33.33333333333333, + "y": 170, + "size": 17.293413173652695, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 9 – 10; Rotten Tomatoes Rating (binned): 80 – 90; Count of Records: 2", + "x": 188.88888888888889, + "y": 30.000000000000004, + "size": 4.323353293413174, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 4 – 5; Rotten Tomatoes Rating (binned): 90 – 100; Count of Records: 2", + "x": 77.77777777777779, + "y": 10.000000000000009, + "size": 4.323353293413174, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 2 – 3; Rotten Tomatoes Rating (binned): 60 – 70; Count of Records: 3", + "x": 33.33333333333333, + "y": 70, + "size": 6.485029940119761, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 7 – 8; Rotten Tomatoes Rating (binned): 20 – 30; Count of Records: 6", + "x": 144.44444444444443, + "y": 150, + "size": 12.970059880239521, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 8 – 9; Rotten Tomatoes Rating (binned): 10 – 20; Count of Records: 1", + "x": 166.66666666666669, + "y": 170, + "size": 2.161676646706587, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 2 – 3; Rotten Tomatoes Rating (binned): 0 – 10; Count of Records: 14", + "x": 33.33333333333333, + "y": 190, + "size": 30.263473053892213, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 4 – 5; Rotten Tomatoes Rating (binned): 60 – 70; Count of Records: 2", + "x": 77.77777777777779, + "y": 70, + "size": 4.323353293413174, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 7 – 8; Rotten Tomatoes Rating (binned): 30 – 40; Count of Records: 14", + "x": 144.44444444444443, + "y": 130, + "size": 30.263473053892213, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 8 – 9; Rotten Tomatoes Rating (binned): 60 – 70; Count of Records: 2", + "x": 166.66666666666669, + "y": 70, + "size": 4.323353293413174, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 7 – 8; Rotten Tomatoes Rating (binned): 10 – 20; Count of Records: 2", + "x": 144.44444444444443, + "y": 170, + "size": 4.323353293413174, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 1 – 2; Rotten Tomatoes Rating (binned): 0 – 10; Count of Records: 3", + "x": 11.11111111111111, + "y": 190, + "size": 6.485029940119761, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 6 – 7; Rotten Tomatoes Rating (binned): 0 – 10; Count of Records: 3", + "x": 122.22222222222223, + "y": 190, + "size": 6.485029940119761, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 4 – 5; Rotten Tomatoes Rating (binned): 80 – 90; Count of Records: 1", + "x": 77.77777777777779, + "y": 30.000000000000004, + "size": 2.161676646706587, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 8 – 9; Rotten Tomatoes Rating (binned): 40 – 50; Count of Records: 1", + "x": 166.66666666666669, + "y": 110.00000000000001, + "size": 2.161676646706587, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 3 – 4; Rotten Tomatoes Rating (binned): 30 – 40; Count of Records: 1", + "x": 55.55555555555556, + "y": 130, + "size": 2.161676646706587, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 8 – 9; Rotten Tomatoes Rating (binned): 50 – 60; Count of Records: 1", + "x": 166.66666666666669, + "y": 89.99999999999999, + "size": 2.161676646706587, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 2 – 3; Rotten Tomatoes Rating (binned): 20 – 30; Count of Records: 1", + "x": 33.33333333333333, + "y": 150, + "size": 2.161676646706587, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 2 – 3; Rotten Tomatoes Rating (binned): 30 – 40; Count of Records: 1", + "x": 33.33333333333333, + "y": 130, + "size": 2.161676646706587, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 2 – 3; Rotten Tomatoes Rating (binned): 80 – 90; Count of Records: 1", + "x": 33.33333333333333, + "y": 30.000000000000004, + "size": 2.161676646706587, + "shape": "circle" + } + ], + "marktype": "symbol", + "name": "marks", + "role": "mark", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "x": 10, + "y": 6, + "fill": "#4c78a8", + "shape": "circle", + "size": 108.08383233532933, + "stroke": "transparent", + "strokeWidth": 1.5 + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 24, + "y": 6, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "50" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 40.6845703125, + "height": 12.698168724063535, + "opacity": 1, + "x": 0, + "y": 0 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "x": 10, + "y": 8.5, + "fill": "#4c78a8", + "shape": "circle", + "size": 216.16766467065867, + "stroke": "transparent", + "strokeWidth": 1.5 + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 24, + "y": 8.5, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "100" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 40.6845703125, + "height": 17.3513207090743, + "opacity": 1, + "x": 0, + "y": 16 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "x": 10, + "y": 10, + "fill": "#4c78a8", + "shape": "circle", + "size": 324.251497005988, + "stroke": "transparent", + "strokeWidth": 1.5 + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 24, + "y": 10, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "150" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 40.6845703125, + "height": 20.503492336393528, + "opacity": 1, + "x": 0, + "y": 37 + } + ], + "marktype": "group", + "role": "scope", + "zindex": 0 + } + ], + "x": 0, + "y": 16 + } + ], + "marktype": "group", + "role": "legend-entry", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "orient": "top", + "text": "Count of Records", + "limit": 180, + "x": 0, + "y": 0, + "angle": 0, + "align": "left", + "baseline": "top" + } + ], + "marktype": "text", + "role": "legend-title", + "zindex": 0 + } + ], + "orient": "right", + "x": 218, + "y": 0, + "width": 93, + "height": 74 + } + ], + "marktype": "group", + "role": "legend", + "zindex": 0 + } + ], + "fill": "transparent", + "stroke": "#ddd", + "x": 0, + "y": 0, + "width": 200, + "height": 200 + } + ], + "marktype": "group", + "name": "root", + "role": "frame", + "zindex": 0 + } +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/circle_binned_base_url.png b/avenger-vega-test-data/vega-scenegraphs/vl-convert/circle_binned_base_url.png new file mode 100644 index 0000000..d1c5d9f Binary files /dev/null and b/avenger-vega-test-data/vega-scenegraphs/vl-convert/circle_binned_base_url.png differ diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/circle_binned_base_url.sg.json b/avenger-vega-test-data/vega-scenegraphs/vl-convert/circle_binned_base_url.sg.json new file mode 100644 index 0000000..8b1ae02 --- /dev/null +++ b/avenger-vega-test-data/vega-scenegraphs/vl-convert/circle_binned_base_url.sg.json @@ -0,0 +1,1480 @@ +{ + "width": 360, + "height": 247, + "origin": [ + 44, + 10 + ], + "scenegraph": { + "clip": false, + "interactive": true, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 0 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 22 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 44 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 67 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 89 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 111 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 133 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 156 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 178 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 200 + } + ], + "marktype": "rule", + "role": "axis-tick", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 0, + "y": 7, + "angle": 0, + "limit": 180, + "text": "1.0", + "align": "left", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 0, + "x": 22.22222222222222, + "y": 7, + "angle": 0, + "limit": 180, + "text": "2.0", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 44.44444444444444, + "y": 7, + "angle": 0, + "limit": 180, + "text": "3.0", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 0, + "x": 66.66666666666666, + "y": 7, + "angle": 0, + "limit": 180, + "text": "4.0", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 88.88888888888889, + "y": 7, + "angle": 0, + "limit": 180, + "text": "5.0", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 0, + "x": 111.11111111111111, + "y": 7, + "angle": 0, + "limit": 180, + "text": "6.0", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 133.33333333333331, + "y": 7, + "angle": 0, + "limit": 180, + "text": "7.0", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 0, + "x": 155.55555555555557, + "y": 7, + "angle": 0, + "limit": 180, + "text": "8.0", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 177.77777777777777, + "y": 7, + "angle": 0, + "limit": 180, + "text": "9.0", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 0, + "x": 200, + "y": 7, + "angle": 0, + "limit": 180, + "text": "10.0", + "align": "right", + "baseline": "top" + } + ], + "marktype": "text", + "role": "axis-label", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "x": 0, + "x2": 200, + "y": 0 + } + ], + "marktype": "rule", + "role": "axis-domain", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "align": "center", + "angle": 0, + "baseline": "top", + "text": "IMDB Rating (binned)", + "x": 100, + "y": 21 + } + ], + "marktype": "text", + "role": "axis-title", + "zindex": 0 + } + ], + "orient": "bottom", + "offset": 0, + "x": 0.5, + "y": 200.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 200, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 180, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 160, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 140, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 120, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 100, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 80, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 60, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 40, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 20, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "x": 0, + "x2": -5 + } + ], + "marktype": "rule", + "role": "axis-tick", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 200, + "angle": 0, + "limit": 180, + "text": "0", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 180, + "angle": 0, + "limit": 180, + "text": "10", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 160, + "angle": 0, + "limit": 180, + "text": "20", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 140, + "angle": 0, + "limit": 180, + "text": "30", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 120, + "angle": 0, + "limit": 180, + "text": "40", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 100, + "angle": 0, + "limit": 180, + "text": "50", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 80, + "angle": 0, + "limit": 180, + "text": "60", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 60.00000000000001, + "angle": 0, + "limit": 180, + "text": "70", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 39.99999999999999, + "angle": 0, + "limit": 180, + "text": "80", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 19.999999999999996, + "angle": 0, + "limit": 180, + "text": "90", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 0, + "angle": 0, + "limit": 180, + "text": "100", + "align": "right", + "baseline": "middle" + } + ], + "marktype": "text", + "role": "axis-label", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "x": 0, + "y": 200, + "y2": 0 + } + ], + "marktype": "rule", + "role": "axis-domain", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "align": "center", + "angle": -90, + "baseline": "bottom", + "text": "Rotten Tomatoes Rating (binned)", + "y": 100, + "x": -27.6845703125 + } + ], + "marktype": "text", + "role": "axis-title", + "zindex": 0 + } + ], + "orient": "left", + "offset": 0, + "x": 0.5, + "y": 0.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0 + }, + { + "clip": false, + "interactive": true, + "items": [ + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 3 – 4; Rotten Tomatoes Rating (binned): 60 – 70; Count of Records: 5", + "x": 55.55555555555556, + "y": 70, + "size": 10.808383233532934, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 5 – 6; Rotten Tomatoes Rating (binned): 20 – 30; Count of Records: 101", + "x": 100, + "y": 150, + "size": 218.32934131736528, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 7 – 8; Rotten Tomatoes Rating (binned): 80 – 90; Count of Records: 167", + "x": 144.44444444444443, + "y": 30.000000000000004, + "size": 361, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 8 – 9; Rotten Tomatoes Rating (binned): 90 – 100; Count of Records: 107", + "x": 166.66666666666669, + "y": 10.000000000000009, + "size": 231.29940119760482, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 6 – 7; Rotten Tomatoes Rating (binned): 80 – 90; Count of Records: 78", + "x": 122.22222222222223, + "y": 30.000000000000004, + "size": 168.6107784431138, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 2 – 3; Rotten Tomatoes Rating (binned): 90 – 100; Count of Records: 3", + "x": 33.33333333333333, + "y": 10.000000000000009, + "size": 6.485029940119761, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 7 – 8; Rotten Tomatoes Rating (binned): 50 – 60; Count of Records: 29", + "x": 144.44444444444443, + "y": 89.99999999999999, + "size": 62.68862275449102, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 5 – 6; Rotten Tomatoes Rating (binned): 30 – 40; Count of Records: 100", + "x": 100, + "y": 130, + "size": 216.16766467065867, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 7 – 8; Rotten Tomatoes Rating (binned): 70 – 80; Count of Records: 99", + "x": 144.44444444444443, + "y": 50, + "size": 214.0059880239521, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 3 – 4; Rotten Tomatoes Rating (binned): 10 – 20; Count of Records: 23", + "x": 55.55555555555556, + "y": 170, + "size": 49.7185628742515, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 7 – 8; Rotten Tomatoes Rating (binned): 90 – 100; Count of Records: 131", + "x": 144.44444444444443, + "y": 10.000000000000009, + "size": 283.17964071856284, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 6 – 7; Rotten Tomatoes Rating (binned): 10 – 20; Count of Records: 29", + "x": 122.22222222222223, + "y": 170, + "size": 62.68862275449102, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 6 – 7; Rotten Tomatoes Rating (binned): 50 – 60; Count of Records: 131", + "x": 122.22222222222223, + "y": 89.99999999999999, + "size": 283.17964071856284, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 4 – 5; Rotten Tomatoes Rating (binned): 10 – 20; Count of Records: 76", + "x": 77.77777777777779, + "y": 170, + "size": 164.2874251497006, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 6 – 7; Rotten Tomatoes Rating (binned): 40 – 50; Count of Records: 126", + "x": 122.22222222222223, + "y": 110.00000000000001, + "size": 272.3712574850299, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 6 – 7; Rotten Tomatoes Rating (binned): 20 – 30; Count of Records: 60", + "x": 122.22222222222223, + "y": 150, + "size": 129.7005988023952, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 5 – 6; Rotten Tomatoes Rating (binned): 50 – 60; Count of Records: 44", + "x": 100, + "y": 89.99999999999999, + "size": 95.11377245508983, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 3 – 4; Rotten Tomatoes Rating (binned): 70 – 80; Count of Records: 2", + "x": 55.55555555555556, + "y": 50, + "size": 4.323353293413174, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 6 – 7; Rotten Tomatoes Rating (binned): 90 – 100; Count of Records: 24", + "x": 122.22222222222223, + "y": 10.000000000000009, + "size": 51.880239520958085, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 5 – 6; Rotten Tomatoes Rating (binned): 60 – 70; Count of Records: 27", + "x": 100, + "y": 70, + "size": 58.365269461077844, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 5 – 6; Rotten Tomatoes Rating (binned): 70 – 80; Count of Records: 8", + "x": 100, + "y": 50, + "size": 17.293413173652695, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 6 – 7; Rotten Tomatoes Rating (binned): 60 – 70; Count of Records: 130", + "x": 122.22222222222223, + "y": 70, + "size": 281.0179640718563, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 7 – 8; Rotten Tomatoes Rating (binned): 60 – 70; Count of Records: 85", + "x": 144.44444444444443, + "y": 70, + "size": 183.7425149700599, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 6 – 7; Rotten Tomatoes Rating (binned): 30 – 40; Count of Records: 72", + "x": 122.22222222222223, + "y": 130, + "size": 155.64071856287427, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 5 – 6; Rotten Tomatoes Rating (binned): 80 – 90; Count of Records: 10", + "x": 100, + "y": 30.000000000000004, + "size": 21.61676646706587, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 3 – 4; Rotten Tomatoes Rating (binned): 90 – 100; Count of Records: 2", + "x": 55.55555555555556, + "y": 10.000000000000009, + "size": 4.323353293413174, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 3 – 4; Rotten Tomatoes Rating (binned): 20 – 30; Count of Records: 11", + "x": 55.55555555555556, + "y": 150, + "size": 23.778443113772457, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 4 – 5; Rotten Tomatoes Rating (binned): 40 – 50; Count of Records: 9", + "x": 77.77777777777779, + "y": 110.00000000000001, + "size": 19.455089820359284, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 5 – 6; Rotten Tomatoes Rating (binned): 10 – 20; Count of Records: 91", + "x": 100, + "y": 170, + "size": 196.71257485029938, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 5 – 6; Rotten Tomatoes Rating (binned): 40 – 50; Count of Records: 71", + "x": 100, + "y": 110.00000000000001, + "size": 153.47904191616766, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 4 – 5; Rotten Tomatoes Rating (binned): 50 – 60; Count of Records: 4", + "x": 77.77777777777779, + "y": 89.99999999999999, + "size": 8.646706586826348, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 8 – 9; Rotten Tomatoes Rating (binned): 70 – 80; Count of Records: 14", + "x": 166.66666666666669, + "y": 50, + "size": 30.263473053892213, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 6 – 7; Rotten Tomatoes Rating (binned): 70 – 80; Count of Records: 106", + "x": 122.22222222222223, + "y": 50, + "size": 229.1377245508982, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 8 – 9; Rotten Tomatoes Rating (binned): 30 – 40; Count of Records: 1", + "x": 166.66666666666669, + "y": 130, + "size": 2.161676646706587, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 8 – 9; Rotten Tomatoes Rating (binned): 80 – 90; Count of Records: 36", + "x": 166.66666666666669, + "y": 30.000000000000004, + "size": 77.82035928143713, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 4 – 5; Rotten Tomatoes Rating (binned): 70 – 80; Count of Records: 2", + "x": 77.77777777777779, + "y": 50, + "size": 4.323353293413174, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 5 – 6; Rotten Tomatoes Rating (binned): 90 – 100; Count of Records: 8", + "x": 100, + "y": 10.000000000000009, + "size": 17.293413173652695, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 4 – 5; Rotten Tomatoes Rating (binned): 20 – 30; Count of Records: 40", + "x": 77.77777777777779, + "y": 150, + "size": 86.46706586826348, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 4 – 5; Rotten Tomatoes Rating (binned): 0 – 10; Count of Records: 43", + "x": 77.77777777777779, + "y": 190, + "size": 92.95209580838322, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 5 – 6; Rotten Tomatoes Rating (binned): 0 – 10; Count of Records: 29", + "x": 100, + "y": 190, + "size": 62.68862275449102, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 9 – 10; Rotten Tomatoes Rating (binned): 90 – 100; Count of Records: 1", + "x": 188.88888888888889, + "y": 10.000000000000009, + "size": 2.161676646706587, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 4 – 5; Rotten Tomatoes Rating (binned): 30 – 40; Count of Records: 22", + "x": 77.77777777777779, + "y": 130, + "size": 47.556886227544915, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 7 – 8; Rotten Tomatoes Rating (binned): 40 – 50; Count of Records: 16", + "x": 144.44444444444443, + "y": 110.00000000000001, + "size": 34.58682634730539, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 3 – 4; Rotten Tomatoes Rating (binned): 0 – 10; Count of Records: 18", + "x": 55.55555555555556, + "y": 190, + "size": 38.91017964071857, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 2 – 3; Rotten Tomatoes Rating (binned): 10 – 20; Count of Records: 8", + "x": 33.33333333333333, + "y": 170, + "size": 17.293413173652695, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 9 – 10; Rotten Tomatoes Rating (binned): 80 – 90; Count of Records: 2", + "x": 188.88888888888889, + "y": 30.000000000000004, + "size": 4.323353293413174, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 4 – 5; Rotten Tomatoes Rating (binned): 90 – 100; Count of Records: 2", + "x": 77.77777777777779, + "y": 10.000000000000009, + "size": 4.323353293413174, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 2 – 3; Rotten Tomatoes Rating (binned): 60 – 70; Count of Records: 3", + "x": 33.33333333333333, + "y": 70, + "size": 6.485029940119761, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 7 – 8; Rotten Tomatoes Rating (binned): 20 – 30; Count of Records: 6", + "x": 144.44444444444443, + "y": 150, + "size": 12.970059880239521, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 8 – 9; Rotten Tomatoes Rating (binned): 10 – 20; Count of Records: 1", + "x": 166.66666666666669, + "y": 170, + "size": 2.161676646706587, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 2 – 3; Rotten Tomatoes Rating (binned): 0 – 10; Count of Records: 14", + "x": 33.33333333333333, + "y": 190, + "size": 30.263473053892213, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 4 – 5; Rotten Tomatoes Rating (binned): 60 – 70; Count of Records: 2", + "x": 77.77777777777779, + "y": 70, + "size": 4.323353293413174, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 7 – 8; Rotten Tomatoes Rating (binned): 30 – 40; Count of Records: 14", + "x": 144.44444444444443, + "y": 130, + "size": 30.263473053892213, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 8 – 9; Rotten Tomatoes Rating (binned): 60 – 70; Count of Records: 2", + "x": 166.66666666666669, + "y": 70, + "size": 4.323353293413174, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 7 – 8; Rotten Tomatoes Rating (binned): 10 – 20; Count of Records: 2", + "x": 144.44444444444443, + "y": 170, + "size": 4.323353293413174, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 1 – 2; Rotten Tomatoes Rating (binned): 0 – 10; Count of Records: 3", + "x": 11.11111111111111, + "y": 190, + "size": 6.485029940119761, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 6 – 7; Rotten Tomatoes Rating (binned): 0 – 10; Count of Records: 3", + "x": 122.22222222222223, + "y": 190, + "size": 6.485029940119761, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 4 – 5; Rotten Tomatoes Rating (binned): 80 – 90; Count of Records: 1", + "x": 77.77777777777779, + "y": 30.000000000000004, + "size": 2.161676646706587, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 8 – 9; Rotten Tomatoes Rating (binned): 40 – 50; Count of Records: 1", + "x": 166.66666666666669, + "y": 110.00000000000001, + "size": 2.161676646706587, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 3 – 4; Rotten Tomatoes Rating (binned): 30 – 40; Count of Records: 1", + "x": 55.55555555555556, + "y": 130, + "size": 2.161676646706587, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 8 – 9; Rotten Tomatoes Rating (binned): 50 – 60; Count of Records: 1", + "x": 166.66666666666669, + "y": 89.99999999999999, + "size": 2.161676646706587, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 2 – 3; Rotten Tomatoes Rating (binned): 20 – 30; Count of Records: 1", + "x": 33.33333333333333, + "y": 150, + "size": 2.161676646706587, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 2 – 3; Rotten Tomatoes Rating (binned): 30 – 40; Count of Records: 1", + "x": 33.33333333333333, + "y": 130, + "size": 2.161676646706587, + "shape": "circle" + }, + { + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "circle", + "description": "IMDB Rating (binned): 2 – 3; Rotten Tomatoes Rating (binned): 80 – 90; Count of Records: 1", + "x": 33.33333333333333, + "y": 30.000000000000004, + "size": 2.161676646706587, + "shape": "circle" + } + ], + "marktype": "symbol", + "name": "marks", + "role": "mark", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "x": 10, + "y": 6, + "fill": "#4c78a8", + "shape": "circle", + "size": 108.08383233532933, + "stroke": "transparent", + "strokeWidth": 1.5 + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 24, + "y": 6, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "50" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 40.6845703125, + "height": 12.698168724063535, + "opacity": 1, + "x": 0, + "y": 0 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "x": 10, + "y": 8.5, + "fill": "#4c78a8", + "shape": "circle", + "size": 216.16766467065867, + "stroke": "transparent", + "strokeWidth": 1.5 + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 24, + "y": 8.5, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "100" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 40.6845703125, + "height": 17.3513207090743, + "opacity": 1, + "x": 0, + "y": 16 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "x": 10, + "y": 10, + "fill": "#4c78a8", + "shape": "circle", + "size": 324.251497005988, + "stroke": "transparent", + "strokeWidth": 1.5 + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 24, + "y": 10, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "150" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 40.6845703125, + "height": 20.503492336393528, + "opacity": 1, + "x": 0, + "y": 37 + } + ], + "marktype": "group", + "role": "scope", + "zindex": 0 + } + ], + "x": 0, + "y": 16 + } + ], + "marktype": "group", + "role": "legend-entry", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "orient": "top", + "text": "Count of Records", + "limit": 180, + "x": 0, + "y": 0, + "angle": 0, + "align": "left", + "baseline": "top" + } + ], + "marktype": "text", + "role": "legend-title", + "zindex": 0 + } + ], + "orient": "right", + "x": 218, + "y": 0, + "width": 93, + "height": 74 + } + ], + "marktype": "group", + "role": "legend", + "zindex": 0 + } + ], + "fill": "transparent", + "stroke": "#ddd", + "x": 0, + "y": 0, + "width": 200, + "height": 200 + } + ], + "marktype": "group", + "name": "root", + "role": "frame", + "zindex": 0 + } +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/custom_projection.png b/avenger-vega-test-data/vega-scenegraphs/vl-convert/custom_projection.png new file mode 100644 index 0000000..7838b7a Binary files /dev/null and b/avenger-vega-test-data/vega-scenegraphs/vl-convert/custom_projection.png differ diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/custom_projection.sg.json b/avenger-vega-test-data/vega-scenegraphs/vl-convert/custom_projection.sg.json new file mode 100644 index 0000000..fa76309 --- /dev/null +++ b/avenger-vega-test-data/vega-scenegraphs/vl-convert/custom_projection.sg.json @@ -0,0 +1,37117 @@ +{ + "width": 510, + "height": 310, + "origin": [ + 5, + 5 + ], + "scenegraph": { + "clip": false, + "interactive": true, + "items": [ + { + "items": [ + { + "clip": true, + "interactive": true, + "items": [ + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.23450472; latitude: 31.95376472", + "x": 1523.1757858260337, + "y": 1045.59499128239, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.01792778; latitude: 30.68586111", + "x": 1268.3929141958652, + "y": 1122.6382246670005, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −104.5698933; latitude: 38.94574889", + "x": 879.1041052384605, + "y": 671.5118687484232, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.05208056; latitude: 42.74134667", + "x": 1906.2567973309137, + "y": 422.12158102160174, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.90594389; latitude: 30.6880125", + "x": 1855.0181879796744, + "y": 1075.901181278956, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.20111111; latitude: 34.49166667", + "x": 1557.7715754926262, + "y": 908.7928723445159, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.61145333; latitude: 32.85048667", + "x": 1634.0802224852382, + "y": 988.7731724502798, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.17786917; latitude: 43.08751", + "x": 1521.440399229616, + "y": 456.2413502293357, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.64140639; latitude: 40.67331278", + "x": 1826.3518935992638, + "y": 547.0423985576545, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.22696056; latitude: 40.44725889", + "x": 1373.26838604623, + "y": 604.7762201200528, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.34285194; latitude: 33.93011222", + "x": 1511.109879655019, + "y": 942.0658072866306, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.35089861; latitude: 46.88384889", + "x": 1211.6705575301442, + "y": 269.45735305330027, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.40109333; latitude: 41.51961917", + "x": 1558.3395124409972, + "y": 535.9961804023746, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.79696778; latitude: 31.42127556", + "x": 1144.3009878919547, + "y": 1083.4821713245212, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −116.0050597; latitude: 39.60416667", + "x": 430.6428842108419, + "y": 568.4473900501075, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.68003611; latitude: 32.46047167", + "x": 1676.8087188531133, + "y": 1004.9778441330147, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.10124278; latitude: 41.98934083", + "x": 1529.1480657957559, + "y": 513.6647291410436, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.62087694; latitude: 48.88434111", + "x": 1098.1412094642733, + "y": 163.1594407349712, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.31256917; latitude: 33.53456583", + "x": 1513.8790977319638, + "y": 962.783656315233, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.39191722; latitude: 41.43156583", + "x": 2058.7026700425063, + "y": 460.5013857732479, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −114.6580911; latitude: 41.97602222", + "x": 507.7941552666041, + "y": 456.4887448847753, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.06433333; latitude: 41.30716667", + "x": 1650.0493295814713, + "y": 537.808330199648, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.97174556; latitude: 32.52883861", + "x": 1269.418919969417, + "y": 1025.7261778834932, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.81143139; latitude: 42.57450861", + "x": 1652.0010947322191, + "y": 470.2899638664644, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.05033639; latitude: 41.11668056", + "x": 1144.0667284224157, + "y": 571.5190426806939, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.32822139; latitude: 32.52943944", + "x": 1648.1185794630699, + "y": 1004.354920029079, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.4063514; latitude: 48.30079861", + "x": 999.1829028008348, + "y": 188.20178017764601, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.07978667; latitude: 40.65138528", + "x": 1142.3771685390666, + "y": 596.0562860581133, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.53007139; latitude: 32.76124611", + "x": 1507.2471702245443, + "y": 1004.0958653666441, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.1274625; latitude: 32.11931306", + "x": 1571.259392646042, + "y": 1033.1488121487391, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.42777778; latitude: 31.07447222", + "x": 1873.1528164220465, + "y": 1052.6201181568756, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.34038139; latitude: 41.63695083", + "x": 1094.5782756563044, + "y": 542.6480436025099, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.078145; latitude: 33.99150222", + "x": 1479.271099057536, + "y": 940.9301797184212, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.00747583; latitude: 38.86872333", + "x": 1986.0182510822347, + "y": 614.7933973385107, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.80931806; latitude: 35.98531194", + "x": 1651.259198540249, + "y": 820.6811132618866, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.08888306; latitude: 32.93679056", + "x": 1612.878057631125, + "y": 986.2527532293227, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.17374111; latitude: 36.37094306", + "x": 1799.6977749977498, + "y": 781.2852467021864, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −162.8929358; latitude: 61.93396417", + "x": 221.8986917660235, + "y": 1235.0174364511931, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −70.80784778; latitude: 44.42506444", + "x": 2152.7984859820253, + "y": 274.37149908360334, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.25263889; latitude: 42.60355556", + "x": 1176.3059222497425, + "y": 493.6481709333889, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.52275472; latitude: 42.59136361", + "x": 2114.514921894558, + "y": 384.0933898052658, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.82705806; latitude: 44.11672722", + "x": 2083.831989155206, + "y": 309.03948404587527, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.03161139; latitude: 41.25130806", + "x": 2150.3800767674447, + "y": 447.8818516635283, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.63343222; latitude: 42.40418556", + "x": 1506.9565016496774, + "y": 493.5099413659668, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.72892556; latitude: 42.11388722", + "x": 1196.1654150782576, + "y": 519.6651482354705, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.25613889; latitude: 42.35083333", + "x": 1598.1867932487205, + "y": 488.0988659037621, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.9535; latitude: 44.98730556", + "x": 1078.1145538571636, + "y": 365.61344682983463, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −106.0094661; latitude: 34.98560639", + "x": 799.3163851753118, + "y": 874.0069826030999, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −108.2015961; latitude: 35.71765889", + "x": 711.6628437035986, + "y": 824.7865195388356, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.77556; latitude: 33.60166667", + "x": 1147.3982267437825, + "y": 968.719797085528, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.99064278; latitude: 41.29028694", + "x": 1107.5779567255477, + "y": 561.3843608677353, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.60165111; latitude: 35.38898833", + "x": 1241.1357569044453, + "y": 875.0649160553899, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.15181028; latitude: 36.17528", + "x": 1217.9245315352462, + "y": 833.5491935721359, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.67555694; latitude: 34.19592833", + "x": 1195.2505804513444, + "y": 937.9875264074783, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.70334583; latitude: 43.10318389", + "x": 1878.340930693985, + "y": 407.9714575949056, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.17139694; latitude: 40.39944417", + "x": 1217.5070472068612, + "y": 610.2534487950113, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.50655556; latitude: 41.46736111", + "x": 1670.642569051427, + "y": 526.8539210030003, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.78162028; latitude: 42.88062278", + "x": 1952.4203231290194, + "y": 405.50090429119246, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.89289917; latitude: 39.0044525", + "x": 1067.441891210801, + "y": 680.7685501210124, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.28410056; latitude: 38.36674167", + "x": 1699.3813618194372, + "y": 688.3768727449531, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.23882222; latitude: 31.60016778", + "x": 1701.1888026690415, + "y": 1047.8066796280605, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.31156111; latitude: 31.04247361", + "x": 1656.804086067171, + "y": 1082.0774193554798, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.30965556; latitude: 31.364895", + "x": 1699.4510762981013, + "y": 1060.4501560706938, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.24524167; latitude: 42.7360825", + "x": 1291.3569842824993, + "y": 486.36342697877535, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.2384119; latitude: 37.71798833", + "x": 360.4084198700889, + "y": 655.0746493681493, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −115.3296378; latitude: 35.76827222", + "x": 416.1038070025776, + "y": 772.5956065368041, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −114.4638672; latitude: 36.31108972", + "x": 457.3722253391403, + "y": 751.6485711675471, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.53429111; latitude: 33.8845475", + "x": 1416.8894477312763, + "y": 949.9929007274754, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.127995; latitude: 35.63778", + "x": 1555.8836341895849, + "y": 848.2165121391877, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.12328833; latitude: 36.01122694", + "x": 1554.4479684773553, + "y": 828.5350457590155, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.73815889; latitude: 36.11659972", + "x": 1570.0681794066477, + "y": 821.6169281280966, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.90008917; latitude: 34.36677444", + "x": 1485.6576396740866, + "y": 920.6843308356324, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.187665; latitude: 32.82587917", + "x": 1434.6517665383408, + "y": 1004.9992411452467, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.6481733; latitude: 38.14611639", + "x": 230.42262082285163, + "y": 599.7631394887819, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.1713781; latitude: 39.94376806", + "x": 196.35511843795393, + "y": 491.9071887209061, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.7864906; latitude: 38.53146222", + "x": 191.08984709429978, + "y": 567.9624120202348, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −124.0733639; latitude: 40.02764333", + "x": 125.04986197969015, + "y": 466.369521024802, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.8177683; latitude: 40.52210111", + "x": 218.09591444847672, + "y": 466.2732727767584, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.81282944; latitude: 31.29700806", + "x": 1499.9099884404066, + "y": 1081.7944753825811, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.44675972; latitude: 31.01621528", + "x": 1606.3951671961215, + "y": 1088.3153290837583, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.08415167; latitude: 29.97576083", + "x": 1401.6562456453605, + "y": 1156.4577090212108, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.50011889; latitude: 31.56683278", + "x": 1424.1394243732698, + "y": 1071.854682998503, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.66026056; latitude: 31.96366222", + "x": 1371.9045073579773, + "y": 1053.1229743773072, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.30739306; latitude: 31.99071694", + "x": 1343.268216862527, + "y": 1052.6079850753922, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.4119622; latitude: 48.958965", + "x": 417.6500690905566, + "y": 61.84866697583493, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.8012792; latitude: 48.04981361", + "x": 290.6739075005896, + "y": 76.3018352820518, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −106.0458483; latitude: 38.53916389", + "x": 817.5931310560544, + "y": 687.067188698298, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.94565083; latitude: 40.5149125", + "x": 1108.0644765074644, + "y": 602.3592903978902, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.01638889; latitude: 37.14172222", + "x": 1922.5873552404264, + "y": 719.9094680662529, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.6281936; latitude: 43.30694778", + "x": 1048.8916202060752, + "y": 452.65536226735594, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −110.2367978; latitude: 36.70972139", + "x": 634.5778073280986, + "y": 761.0561439501657, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.37588917; latitude: 42.40266472", + "x": 1516.8247003975973, + "y": 492.8104994378532, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.0669175; latitude: 44.94996278", + "x": 1295.805836041942, + "y": 369.8845275624599, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.95436111; latitude: 40.53716667", + "x": 1776.3346232223307, + "y": 562.1190336701447, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.13375583; latitude: 41.62787111", + "x": 2066.134369571085, + "y": 448.1364886976826, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −116.1876014; latitude: 41.95323306", + "x": 449.65797851078514, + "y": 445.6673050430063, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.48491361; latitude: 31.88329917", + "x": 1688.6837728715411, + "y": 1034.2287638205594, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.44098972; latitude: 41.22581222", + "x": 1867.893098346403, + "y": 510.414627642092, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.05257194; latitude: 42.04808278", + "x": 1530.7635226434904, + "y": 510.42136819686675, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.89525694; latitude: 31.39698611", + "x": 1717.5915413571847, + "y": 1056.663289897198, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.37427778; latitude: 30.219", + "x": 1207.3733017703528, + "y": 1147.3266081782835, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.07829; latitude: 41.89300139", + "x": 1491.8782748311469, + "y": 521.6725571779916, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.29166667; latitude: 47.81833333", + "x": 1355.622864866264, + "y": 218.27536032559556, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.06796833; latitude: 31.05126306", + "x": 1623.0960430304958, + "y": 1084.9260937465965, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.06011111; latitude: 40.04636111", + "x": 1142.4591818455542, + "y": 628.0264090250596, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.91274083; latitude: 44.43746472", + "x": 1302.1000084869286, + "y": 396.6474026438282, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.26480333; latitude: 43.45213722", + "x": 1629.5367376024374, + "y": 426.3760068527613, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.29169806; latitude: 37.8515825", + "x": 1212.338922803347, + "y": 744.9167031421753, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.78016556; latitude: 40.96676444", + "x": 2049.394521728529, + "y": 487.80516201661885, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.08883583; latitude: 31.40988861", + "x": 1664.702133241481, + "y": 1061.8523576096202, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.83065444; latitude: 33.18262167", + "x": 1449.2217064491338, + "y": 985.4104513460859, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.87391; latitude: 45.89857556", + "x": 1265.3602528926367, + "y": 320.689825496916, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.71793056; latitude: 33.19155556", + "x": 1062.4782139583535, + "y": 987.8931476607224, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.45308333; latitude: 31.13780556", + "x": 1783.099375744944, + "y": 1062.1947456857258, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.16587444; latitude: 34.7723125", + "x": 1558.0551311974327, + "y": 893.9038542319277, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −142.9037372; latitude: 61.43706083", + "x": 394.50778977055825, + "y": 1241.1903527089034, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −162.4391158; latitude: 60.90582833", + "x": 223.36858204375008, + "y": 1254.2824226221346, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.2125; latitude: 41.09405556", + "x": 1723.2534988788307, + "y": 539.9611927758729, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.419285; latitude: 31.74328472", + "x": 1736.4203564217228, + "y": 1036.0688016472839, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −123.3095092; latitude: 42.99845056", + "x": 198.5385016776222, + "y": 324.77609174794725, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.97469444; latitude: 40.78141667", + "x": 1734.7302358819784, + "y": 555.0533094811376, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.87761111; latitude: 31.00694444", + "x": 1720.7645195766136, + "y": 1076.9241653446772, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.5104364; latitude: 36.77430028", + "x": 954.0462410710857, + "y": 792.6324970684761, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.80285361; latitude: 31.86127139", + "x": 1498.4208180825508, + "y": 1052.1625624099065, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.03300306; latitude: 39.70547583", + "x": 2054.303604833276, + "y": 555.0004120485828, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −159.0499739; latitude: 58.98896583", + "x": 250.61851203898408, + "y": 1292.4903860432717, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.13348333; latitude: 34.34010472", + "x": 1774.4863218340024, + "y": 893.1833574069817, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.39160389; latitude: 36.69591306", + "x": 1705.8064141838095, + "y": 776.5926175734282, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.56066528; latitude: 34.17402472", + "x": 1757.4689530607864, + "y": 904.3047034083011, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.02555694; latitude: 33.12546111", + "x": 1484.4011397649872, + "y": 986.3633165335493, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.94780389; latitude: 39.77842056", + "x": 2056.774259171265, + "y": 550.4941132215117, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −133.6100844; latitude: 56.32880417", + "x": 501.69296572908956, + "y": 1311.6737377189306, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.34631083; latitude: 35.01619111", + "x": 1718.5311314497947, + "y": 864.4510289725074, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.41904389; latitude: 35.222595", + "x": 1756.1977017862177, + "y": 848.6327689335938, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.73741611; latitude: 36.6106375", + "x": 1733.3759139843798, + "y": 777.6556923802411, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.64164278; latitude: 36.39728139", + "x": 1655.8887692357118, + "y": 798.2780692897074, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.51044778; latitude: 32.438775", + "x": 1640.6356825183716, + "y": 1009.9097714193003, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −69.23976722; latitude: 45.00839444", + "x": 2200.601455871989, + "y": 229.1878501468559, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.71031944; latitude: 42.29130028", + "x": 2074.009599776728, + "y": 410.3213888753976, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.27455556; latitude: 43.61534389", + "x": 2073.7956656178094, + "y": 338.653971304454, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −71.19677139; latitude: 42.00013306", + "x": 2171.720713546797, + "y": 401.43954882856224, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.12923056; latitude: 41.69597444", + "x": 1529.350226398302, + "y": 529.1747380177267, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.56596556; latitude: 45.23053806", + "x": 1203.426782932691, + "y": 355.8429325131133, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.45826833; latitude: 42.35003667", + "x": 1705.0023647008152, + "y": 475.5605160753471, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.82952972; latitude: 43.40332833", + "x": 1117.1780951011021, + "y": 450.26073540722246, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.71471333; latitude: 44.73107278", + "x": 1271.9943332711773, + "y": 381.7700662651555, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.51369889; latitude: 45.29329111", + "x": 1168.5592773921237, + "y": 352.1734376168847, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.52953972; latitude: 44.86247611", + "x": 1130.570371210685, + "y": 373.95273298137636, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.12265194; latitude: 34.14698917", + "x": 1176.0077254064793, + "y": 940.3879170593696, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.10667917; latitude: 34.07509694", + "x": 1176.6503508438088, + "y": 944.1889337264331, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.81203222; latitude: 34.14040194", + "x": 1189.3609098788784, + "y": 940.8714178432108, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.82838889; latitude: 33.17533333", + "x": 1144.6786335879253, + "y": 991.1475471698013, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.63013889; latitude: 41.391", + "x": 1705.0166692767043, + "y": 526.5774042355483, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.41658306; latitude: 41.15186167", + "x": 1792.3477579658502, + "y": 526.8595915625219, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −113.8166164; latitude: 35.99221", + "x": 480.79407184657396, + "y": 773.3382024454818, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.76491667; latitude: 41.13144444", + "x": 1779.0428415946117, + "y": 529.9825886009507, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.12777778; latitude: 43.18166667", + "x": 1973.5470323249056, + "y": 384.90315850467323, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.50830417; latitude: 38.72752", + "x": 1446.3183720903055, + "y": 692.205148864557, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.53351972; latitude: 39.07045083", + "x": 1524.5963765745933, + "y": 668.6898154325927, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.81531667; latitude: 38.47149444", + "x": 1394.1093045001126, + "y": 708.4186598385268, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.00406194; latitude: 39.30250917", + "x": 1544.8127134452602, + "y": 654.7340935500349, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.06596806; latitude: 42.36425", + "x": 2059.815596417546, + "y": 409.73295943462654, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.68167194; latitude: 40.54281417", + "x": 1591.2499303858633, + "y": 584.6829345110823, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.60138889; latitude: 30.84577778", + "x": 1689.5140528554325, + "y": 1088.995257123549, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.58642028; latitude: 34.85007333", + "x": 1156.686839712109, + "y": 902.9977346794119, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.47039389; latitude: 35.1550675", + "x": 1161.8792699771, + "y": 886.9730726155585, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.85231333; latitude: 36.56670028", + "x": 1105.4834349269358, + "y": 811.0829795862055, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.9921119; latitude: 37.45419111", + "x": 1018.8891675360767, + "y": 760.5512898564434, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.58266528; latitude: 30.08720833", + "x": 1469.2723162757884, + "y": 1147.2861992354044, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −114.4216567; latitude: 37.78746444", + "x": 474.137034295715, + "y": 675.3990613531798, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.5701653; latitude: 37.74532639", + "x": 588.7513189028405, + "y": 698.3798156867128, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.816055; latitude: 37.85969694", + "x": 539.473787609598, + "y": 683.7659581888845, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.25792778; latitude: 34.83398056", + "x": 1383.7240403941018, + "y": 901.2723746112254, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.51528472; latitude: 33.14518056", + "x": 1463.0438007510406, + "y": 986.6112688834037, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.60044139; latitude: 34.28034806", + "x": 1584.3768223684542, + "y": 917.7136552684215, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.47691028; latitude: 36.59287528", + "x": 1620.1727243930682, + "y": 791.6319096043915, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.91561611; latitude: 36.52589417", + "x": 1519.2754294423921, + "y": 804.0234236806177, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.311245; latitude: 37.12071889", + "x": 1376.76490858472, + "y": 780.6182062068001, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.74871083; latitude: 40.82787639", + "x": 2128.6506451182136, + "y": 476.4555558989441, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.794765; latitude: 39.21915", + "x": 2069.2661945273476, + "y": 577.9758916939445, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.99747556; latitude: 40.97114556", + "x": 2041.0326486723602, + "y": 489.4565353521589, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.48830556; latitude: 40.57027778", + "x": 2026.779115553376, + "y": 514.3034713234679, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.00564306; latitude: 46.6485775", + "x": 1188.0106898658807, + "y": 281.56030990307045, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.74200917; latitude: 34.23758944", + "x": 1106.5274398037009, + "y": 934.1935850440971, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.8997175; latitude: 38.99017472", + "x": 154.4302402395217, + "y": 532.3196444733917, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.2684167; latitude: 38.20241667", + "x": 206.77995378378807, + "y": 590.3253777586219, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.73063833; latitude: 35.73338222", + "x": 1109.284621166245, + "y": 855.2536807865829, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.2719528; latitude: 41.26320889", + "x": 211.52359346449373, + "y": 423.778365034967, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.15846722; latitude: 31.671005", + "x": 1394.6954618384973, + "y": 1067.6651107184039, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.40931583; latitude: 31.6058475", + "x": 1472.4154138922872, + "y": 1067.2355152225844, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.81738167; latitude: 30.87046278", + "x": 1590.5377445106892, + "y": 1097.3989885796075, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.2871944; latitude: 47.10391667", + "x": 294.68427300066367, + "y": 128.63087096065465, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −106.6239206; latitude: 46.27110639", + "x": 839.698714921891, + "y": 279.94373716334803, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.9705964; latitude: 46.32763139", + "x": 364.66934922278995, + "y": 189.52954390130117, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −116.9093644; latitude: 48.19018611", + "x": 493.70159255249007, + "y": 120.84050413222167, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.33826; latitude: 42.24714972", + "x": 636.3451623603935, + "y": 465.2031357259589, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −107.6514444; latitude: 36.80833833", + "x": 741.7063478106463, + "y": 770.4755395908942, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.7693439; latitude: 42.00942944", + "x": 1001.5478168793522, + "y": 518.5186423344489, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −105.2258217; latitude: 40.03942972", + "x": 858.3670412343924, + "y": 611.5059477191264, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −105.1054994; latitude: 38.42838111", + "x": 854.9786013288342, + "y": 696.7336717471983, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −108.0636611; latitude: 38.78539722", + "x": 737.9557322520275, + "y": 664.6561679635602, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.37942722; latitude: 33.97231972", + "x": 1638.197452256083, + "y": 928.9217439976326, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.53559806; latitude: 33.13345889", + "x": 1549.1189335245178, + "y": 981.3577126606017, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.96409722; latitude: 41.9852525", + "x": 2068.2177509777116, + "y": 428.28167957222604, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.9785389; latitude: 46.92362444", + "x": 938.0534920897762, + "y": 255.3860057932984, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −106.3689467; latitude: 40.05367972", + "x": 813.2804686163208, + "y": 606.0848145423331, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.85568111; latitude: 44.99748861", + "x": 1340.5262146347252, + "y": 366.196981808062, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.14671083; latitude: 33.228725", + "x": 1130.8855567865555, + "y": 988.0444453177479, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.01121667; latitude: 41.77287528", + "x": 2106.6950892916157, + "y": 430.51621244946864, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.44182167; latitude: 39.328125", + "x": 1766.3904731267792, + "y": 628.1388059498456, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.03839694; latitude: 34.27593833", + "x": 1522.8693160151915, + "y": 922.9284614869048, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.76149639; latitude: 40.80950889", + "x": 2013.583988569076, + "y": 504.2463867121637, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.80594722; latitude: 30.27778889", + "x": 1862.6624929889435, + "y": 1096.5192742522206, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.73893389; latitude: 32.08487111", + "x": 1544.5020991777412, + "y": 1037.101684512276, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.05372083; latitude: 40.75843139", + "x": 2117.896896216038, + "y": 482.8999117242015, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.94189028; latitude: 29.1384075", + "x": 1089.650085050431, + "y": 1201.8773612604111, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.20936806; latitude: 35.3168625", + "x": 1764.3414933611602, + "y": 842.5154638929525, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.02318778; latitude: 30.30105583", + "x": 1808.107433087819, + "y": 1103.1380207731954, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −106.8841914; latitude: 36.828535", + "x": 773.4621693482504, + "y": 773.182837476359, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.82492194; latitude: 31.70016583", + "x": 1718.831949652365, + "y": 1040.468332482678, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.01504944; latitude: 34.72226778", + "x": 1522.1390740089678, + "y": 899.3597222668573, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.12945306; latitude: 26.44201083", + "x": 1123.6729234583713, + "y": 1343.4280897361202, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.80412861; latitude: 33.28761417", + "x": 1666.7227594649141, + "y": 962.2408510379969, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.60747222; latitude: 39.26347222", + "x": 2076.0806313290777, + "y": 574.0197412865714, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.58194667; latitude: 29.00101", + "x": 1197.6013455189745, + "y": 1211.066585470609, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.7231972; latitude: 42.00211083", + "x": 392.3116797348357, + "y": 430.1731017246452, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.81586417; latitude: 34.09519722", + "x": 1789.7693046907734, + "y": 904.1213890729357, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.26309972; latitude: 44.72801889", + "x": 1214.5137440066542, + "y": 382.23938604395426, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.63972222; latitude: 34.30927778", + "x": 1838.1469610957163, + "y": 885.6458223478505, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.43468667; latitude: 38.23442528", + "x": 1694.1544075929148, + "y": 696.0690819449258, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.68855556; latitude: 29.65863889", + "x": 1872.7704136712332, + "y": 1127.8116575653594, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.16592194; latitude: 41.14597611", + "x": 1840.6826549126067, + "y": 519.3731017306541, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.25163083; latitude: 41.210195", + "x": 1798.2458697204659, + "y": 522.8259964706476, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −110.7466008; latitude: 45.04993556", + "x": 681.6130856923165, + "y": 323.1865970283138, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.93109722; latitude: 35.48624611", + "x": 1690.959794410723, + "y": 842.7567465702712, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.94664472; latitude: 36.34970833", + "x": 1685.012864828054, + "y": 797.5140462678876, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −153.9784169; latitude: 57.53510667", + "x": 298.296295044529, + "y": 1321.0232211506075, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −163.5299278; latitude: 63.03116111", + "x": 219.36209360069157, + "y": 1214.2989079011234, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −155.4403508; latitude: 61.35848528", + "x": 285.4795448843066, + "y": 1250.5729688857514, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.18925417; latitude: 43.38812944", + "x": 2116.4967852065543, + "y": 340.3056648027532, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −69.37441667; latitude: 44.76852778", + "x": 2199.2965506590085, + "y": 242.6567315181751, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.25370333; latitude: 43.884235", + "x": 2107.6813856268723, + "y": 315.6297204752691, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.09981889; latitude: 40.97089139", + "x": 1806.0781192199015, + "y": 534.382563784502, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.07987556; latitude: 46.17301972", + "x": 1148.727377204304, + "y": 305.75867766537885, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.9194722; latitude: 32.75627778", + "x": 965.3412064205361, + "y": 1005.9262686767256, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.01138556; latitude: 36.357035", + "x": 1223.8057691528209, + "y": 823.9480286896651, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.89641806; latitude: 33.29288889", + "x": 1228.78455415554, + "y": 985.7147650984657, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.88057194; latitude: 32.75607944", + "x": 1404.541334760066, + "y": 1010.0958640009546, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.70007806; latitude: 40.35944306", + "x": 1826.7290635110712, + "y": 563.7772052135106, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.65713306; latitude: 39.95893667", + "x": 1871.024080998948, + "y": 577.7910830224973, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.33941667; latitude: 39.58027778", + "x": 1886.9592361687696, + "y": 595.3124497359611, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.01455556; latitude: 40.03911111", + "x": 1895.4339007252897, + "y": 569.1645856822856, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.8454325; latitude: 39.41042861", + "x": 1510.723372035024, + "y": 651.7343870194766, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.69531111; latitude: 36.96230778", + "x": 1319.7688603543995, + "y": 790.7947237982833, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.39963889; latitude: 37.35502778", + "x": 1578.2826531685396, + "y": 755.1620903016662, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.14236111; latitude: 40.29355556", + "x": 1534.9566311357544, + "y": 603.0035085128156, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.04978917; latitude: 26.74200972", + "x": 1925.328312888027, + "y": 1273.7120877572127, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.64116667; latitude: 31.78461111", + "x": 1858.1064020733802, + "y": 1017.1659367613886, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.38568139; latitude: 32.98654083", + "x": 1816.4409858625509, + "y": 959.3779368270509, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.96511583; latitude: 32.89376972", + "x": 1835.321639476785, + "y": 961.5520335128438, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.55741667; latitude: 30.59786111", + "x": 1737.5687229841644, + "y": 1096.5492757843413, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.73281; latitude: 37.58271111", + "x": 988.8585671217401, + "y": 752.0491066847003, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.52675667; latitude: 34.89172583", + "x": 1074.1216706847981, + "y": 898.5762548112882, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −153.2689733; latitude: 63.39387278", + "x": 304.07053685757137, + "y": 1213.2604033407388, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.85556944; latitude: 37.11560444", + "x": 1560.6466418664656, + "y": 769.4273530158769, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.25793222; latitude: 35.2343025", + "x": 1594.3938100700332, + "y": 866.2374889764455, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.80277778; latitude: 35.43816667", + "x": 1274.9026594795582, + "y": 872.1835590668188, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.48867944; latitude: 32.35347778", + "x": 1510.524515502468, + "y": 1025.3938653182909, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.93147611; latitude: 35.27897583", + "x": 1481.2414215578929, + "y": 872.7050763219745, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.9468983; latitude: 39.94378056", + "x": 243.31112629872302, + "y": 504.8473919955495, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.4352572; latitude: 38.57851778", + "x": 166.44393398167358, + "y": 558.4311046778189, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.2468406; latitude: 37.11244417", + "x": 232.45744391797803, + "y": 656.810899930796, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.2050956; latitude: 36.81382111", + "x": 310.7234686621963, + "y": 692.5966985178732, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.34236111; latitude: 35.50592472", + "x": 1125.3366158453002, + "y": 867.7036050801912, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.92448056; latitude: 45.38620833", + "x": 1557.4108444392696, + "y": 331.8328936708672, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.8566322; latitude: 38.5790725", + "x": 189.02544590159368, + "y": 564.7742719365228, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.63475667; latitude: 31.64599472", + "x": 1550.874433778609, + "y": 1059.7638957064096, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.99365278; latitude: 30.63762083", + "x": 1628.4592765361608, + "y": 1106.2337590492693, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.27511667; latitude: 30.50190833", + "x": 1571.6664513143814, + "y": 1118.39485182939, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.86558333; latitude: 28.8250075", + "x": 1138.5758415440216, + "y": 1219.5102299367766, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.4773506; latitude: 47.45815333", + "x": 293.20590813927697, + "y": 109.03156924362929, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.9553783; latitude: 45.29567333", + "x": 245.24579704222708, + "y": 212.72172879898972, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.8761261; latitude: 42.58319167", + "x": 245.1195596169406, + "y": 360.91671952275647, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.7438936; latitude: 47.75320639", + "x": 425.4011681278072, + "y": 128.177977231142, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.6410981; latitude: 34.18513639", + "x": 939.0826530732786, + "y": 928.6920798642809, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −107.0558742; latitude: 37.277505", + "x": 769.1378582293777, + "y": 748.7862989987125, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −105.1630369; latitude: 40.16367139", + "x": 861.4813464162987, + "y": 605.2129690305167, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.24096; latitude: 40.10032333", + "x": 976.7526487535297, + "y": 617.9322278690154, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.7129869; latitude: 40.10415306", + "x": 958.0754602559543, + "y": 616.4546362676788, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.07296917; latitude: 38.60053667", + "x": 1986.2313236405757, + "y": 629.2159975753502, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.55011111; latitude: 38.31536111", + "x": 2010.053594060359, + "y": 639.7304455647907, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −139.7410994; latitude: 59.5624775", + "x": 428.96124470982636, + "y": 1269.6435179682562, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.61803333; latitude: 42.38748056", + "x": 1277.375234411017, + "y": 504.9645238994026, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.652685; latitude: 32.67535389", + "x": 933.0191059541032, + "y": 1008.0569360688464, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −71.37033556; latitude: 42.12787528", + "x": 2163.51446521616, + "y": 396.6530103225905, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −114.0528056; latitude: 46.52511111", + "x": 575.847494169432, + "y": 226.4275306025488, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.88033333; latitude: 31.05527778", + "x": 1675.912747228803, + "y": 1079.4027482316326, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.68619722; latitude: 34.16677639", + "x": 1495.5100837238156, + "y": 930.61668795995, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.59642667; latitude: 39.21837556", + "x": 2037.8324853438653, + "y": 585.0105006590798, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.3927539; latitude: 47.12487194", + "x": 429.87165418317795, + "y": 162.90034391495828, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.94719444; latitude: 34.50705556", + "x": 1823.562499541406, + "y": 877.2860149047674, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.64121167; latitude: 34.68680111", + "x": 1835.0847231618118, + "y": 865.9553955093181, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.82513556; latitude: 42.53098278", + "x": 1613.649561234885, + "y": 476.9263867162049, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.6741667; latitude: 45.58944444", + "x": 330.09070849662544, + "y": 220.3818588604313, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.2554472; latitude: 37.96946389", + "x": 1009.5711578840201, + "y": 732.7643890987147, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −123.3889444; latitude: 41.79067944", + "x": 177.54773311482995, + "y": 384.945490018943, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.4288056; latitude: 40.48180556", + "x": 617.8478944348752, + "y": 556.578286451941, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.14523611; latitude: 36.16565278", + "x": 1385.6706230589052, + "y": 830.7898188313695, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.73362917; latitude: 35.37880028", + "x": 1950.9195948314496, + "y": 809.4528389486984, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −161.2025369; latitude: 64.36263194", + "x": 241.14605884668305, + "y": 1192.419111035872, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.7669842; latitude: 46.38881583", + "x": 620.2848574509593, + "y": 241.89688199844022, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.5960164; latitude: 38.36247972", + "x": 593.0362293037402, + "y": 666.0137454900041, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.65760361; latitude: 40.39834833", + "x": 2060.764374216636, + "y": 516.0030699349768, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.7613875; latitude: 31.68932389", + "x": 1589.3126440574204, + "y": 1054.3154305384587, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.85833611; latitude: 34.26870833", + "x": 1616.1562590249293, + "y": 915.389567752781, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.55546167; latitude: 36.41008417", + "x": 1742.2711226791098, + "y": 787.1840671838327, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.08127333; latitude: 35.02397611", + "x": 1897.883621941303, + "y": 837.8363123600591, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.07787222; latitude: 37.67162778", + "x": 1180.045030798894, + "y": 754.1991484709915, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.03840833; latitude: 42.10092806", + "x": 2138.942299171224, + "y": 404.543295588423, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −69.55161111; latitude: 45.46302778", + "x": 2182.9774446832257, + "y": 209.46804271749397, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −70.67212083; latitude: 42.09824111", + "x": 2189.9275331705962, + "y": 391.1649374894464, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.50589444; latitude: 41.38390472", + "x": 2130.720917097852, + "y": 445.67303975945333, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.261325; latitude: 43.66291528", + "x": 1665.8678753962345, + "y": 410.89610414715116, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.32304028; latitude: 42.20680306", + "x": 1519.6811539859154, + "y": 502.93761987493554, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.89550222; latitude: 43.54691667", + "x": 1680.3309586304015, + "y": 415.2214606814846, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.24640972; latitude: 46.19424889", + "x": 1396.8476224466367, + "y": 301.1597066685149, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.18586556; latitude: 45.13535778", + "x": 1549.0613818707193, + "y": 345.8223901331994, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.20061944; latitude: 44.62506389", + "x": 1587.997539731717, + "y": 368.88810686431634, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.76551889; latitude: 32.07345972", + "x": 1322.9253152827541, + "y": 1048.7804621748467, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.01015361; latitude: 32.86133333", + "x": 1311.258886111717, + "y": 1007.5479965265727, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.42185556; latitude: 35.80685278", + "x": 1206.530401034163, + "y": 852.9843253696115, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.99478; latitude: 43.43890528", + "x": 1602.158753697413, + "y": 430.07541937814904, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.11566417; latitude: 45.03191861", + "x": 1109.1546711600356, + "y": 364.4277730286299, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.75513111; latitude: 41.00158222", + "x": 1780.4450058271304, + "y": 536.7042612936416, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.25563889; latitude: 40.90297222", + "x": 1761.792837956321, + "y": 544.7340421524827, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.12097222; latitude: 43.23472222", + "x": 1936.0554705312222, + "y": 389.8023974409439, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.1981625; latitude: 43.03404639", + "x": 1596.6985088984043, + "y": 452.07038832668604, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.09858333; latitude: 38.91463889", + "x": 1783.20334946827, + "y": 647.7810701005878, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.40030889; latitude: 39.91344194", + "x": 1684.7387371561067, + "y": 607.8031945273642, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.99233028; latitude: 32.49268694", + "x": 1880.6547417786892, + "y": 975.9442451375708, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.139; latitude: 33.59766667", + "x": 1779.5355967660762, + "y": 932.023825280555, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.84328694; latitude: 39.04327556", + "x": 1190.3156715068087, + "y": 681.7779473808966, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.7462822; latitude: 37.99167972", + "x": 989.6125643057082, + "y": 730.4313325255202, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.80656722; latitude: 38.73290861", + "x": 1474.6341427950554, + "y": 690.1768830891083, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.3532161; latitude: 38.45696333", + "x": 1007.0320438182089, + "y": 706.8064679429958, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.33497222; latitude: 40.15847222", + "x": 1488.3874881396423, + "y": 613.7256220837296, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.67489694; latitude: 39.16635306", + "x": 1478.4249617357082, + "y": 666.9626713929529, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.05828083; latitude: 36.518375", + "x": 1637.9248769683388, + "y": 793.7664898940964, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.00557806; latitude: 33.38900611", + "x": 1571.0002128133779, + "y": 966.0600212192701, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.08538861; latitude: 33.56044333", + "x": 1393.838569403867, + "y": 968.1193714382887, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.6134025; latitude: 40.79525917", + "x": 1475.1130111347218, + "y": 580.9239006172766, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.34678694; latitude: 40.32988667", + "x": 2073.5532391891143, + "y": 516.7710320487258, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.92809778; latitude: 47.25996056", + "x": 1226.8506200401537, + "y": 249.88234752120024, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.59042222; latitude: 47.72423333", + "x": 1167.8584096333907, + "y": 225.25653452538972, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.9632586; latitude: 37.26271722", + "x": 205.8819728556308, + "y": 641.554307912581, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.38586167; latitude: 34.97979444", + "x": 1165.3315096771853, + "y": 896.282297008016, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.65787361; latitude: 35.16755222", + "x": 1069.1022333329265, + "y": 883.8099046389175, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.40588583; latitude: 34.37258444", + "x": 1121.139073361278, + "y": 927.4626457639295, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.4102706; latitude: 36.89334528", + "x": 182.9193644088714, + "y": 655.5570455767672, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.86190028; latitude: 36.5775775", + "x": 1271.6819604314542, + "y": 812.0069410290653, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.79208194; latitude: 28.36455528", + "x": 1141.4985038107907, + "y": 1243.629588625093, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.86345528; latitude: 28.973255", + "x": 1230.543547974292, + "y": 1212.5953231491917, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.48396111; latitude: 30.16173611", + "x": 1383.1943512826756, + "y": 1147.42290537694, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.48645306; latitude: 31.54489667", + "x": 1335.977428108741, + "y": 1076.2629374305504, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.67344778; latitude: 30.24269333", + "x": 1374.4852413017766, + "y": 1143.4885297918, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −123.6822911; latitude: 42.10372417", + "x": 171.39457465625537, + "y": 365.884234726112, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −123.3879894; latitude: 42.51011722", + "x": 188.36264303695384, + "y": 348.5897268297131, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.1664233; latitude: 45.24651889", + "x": 343.5712656367523, + "y": 242.49284680930396, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.86245833; latitude: 43.43341028", + "x": 1682.3296158138444, + "y": 420.9851003987628, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.50011833; latitude: 38.84866139", + "x": 1446.278562235228, + "y": 685.7921695892364, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.0293475; latitude: 45.042185", + "x": 1370.9618121960373, + "y": 362.7123509524713, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.9505; latitude: 29.90930556", + "x": 1181.1805958292898, + "y": 1163.3796001118262, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.22517611; latitude: 41.83590806", + "x": 1602.1581163714395, + "y": 514.983587401, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.86784; latitude: 46.15313278", + "x": 614.5161224223926, + "y": 253.37321811694756, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.8697678; latitude: 47.48133194", + "x": 626.6766946617729, + "y": 185.1852836245812, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −110.1132631; latitude: 48.16247972", + "x": 728.7713811479168, + "y": 166.1093133117929, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.8039508; latitude: 40.33423194", + "x": 915.9002846902845, + "y": 601.0368213739523, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.56152444; latitude: 44.78777778", + "x": 1499.909655300191, + "y": 368.32654402938397, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.79060417; latitude: 42.98508917", + "x": 1384.5613956941659, + "y": 470.3188619429575, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.02106194; latitude: 41.36276778", + "x": 1301.432704757914, + "y": 558.5920442917986, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −135.4407181; latitude: 59.23495111", + "x": 469.1845890221184, + "y": 1265.707570857424, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.58058333; latitude: 30.06927778", + "x": 1784.7599728593511, + "y": 1118.538867180971, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.86547222; latitude: 39.97897222", + "x": 2018.814607347673, + "y": 547.9987386472335, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −109.6784811; latitude: 40.98607", + "x": 689.9577242613698, + "y": 540.7636727160493, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.6146397; latitude: 39.32912833", + "x": 600.6473376980703, + "y": 615.4742848879864, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.82914667; latitude: 36.07079222", + "x": 1399.1162458790284, + "y": 835.2395047879181, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.77421944; latitude: 43.55974139", + "x": 1609.7744911302534, + "y": 422.86912990007386, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.04752778; latitude: 29.84475", + "x": 1855.196788486482, + "y": 1120.585218043429, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −105.1821928; latitude: 48.11595861", + "x": 900.9813323230237, + "y": 189.75198926022404, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.79281667; latitude: 35.38819528", + "x": 1906.7077584315134, + "y": 816.8157785232618, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −69.2328225; latitude: 45.18338806", + "x": 2198.298849994261, + "y": 220.30536545295945, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.73802889; latitude: 41.70742861", + "x": 2080.118675339952, + "y": 440.51763837200815, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.75905806; latitude: 34.89107083", + "x": 1912.5799890039607, + "y": 842.4457511486639, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.82196917; latitude: 41.71932528", + "x": 1733.8353663712198, + "y": 505.19966281724055, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.25754361; latitude: 30.33633806", + "x": 1302.8801554857134, + "y": 1140.48543064553, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.996855; latitude: 34.85508722", + "x": 1734.3458475118807, + "y": 871.0459888693699, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.15111111; latitude: 47.45111111", + "x": 1112.0346870386495, + "y": 238.07246262612125, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.83596556; latitude: 41.98458333", + "x": 2073.0441096190843, + "y": 427.17502370601187, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.42391667; latitude: 34.31058333", + "x": 1719.7818838741723, + "y": 901.8275351017512, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.95794444; latitude: 34.71258333", + "x": 1905.8148759824492, + "y": 853.1673204128263, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.59839194; latitude: 40.52438417", + "x": 2061.559339376642, + "y": 508.99194658314764, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.4712539; latitude: 40.63750778", + "x": 1048.215081204208, + "y": 593.5431486967641, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.27591667; latitude: 32.39936111", + "x": 1782.0874931897347, + "y": 995.3929642698251, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.74133333; latitude: 43.83111111", + "x": 1646.8520980523124, + "y": 404.29938318158156, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.65176083; latitude: 38.68704444", + "x": 1842.8267166942194, + "y": 650.7094658555388, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.90806667; latitude: 38.47110278", + "x": 1065.6720336340588, + "y": 708.9172944530108, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −108.7729339; latitude: 48.56666472", + "x": 778.3390400493982, + "y": 151.99909805867173, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −105.047975; latitude: 40.010225", + "x": 865.2525801744553, + "y": 613.7202091901497, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.52492889; latitude: 34.62786417", + "x": 1713.4622913328517, + "y": 885.7270345032257, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.80027778; latitude: 32.77333333", + "x": 1189.259523136646, + "y": 1012.946671789193, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −114.4310697; latitude: 34.52751083", + "x": 440.56135604590906, + "y": 844.3615300056888, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.17973444; latitude: 43.67676", + "x": 1368.2904283022651, + "y": 434.57798094544387, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −162.2731389; latitude: 60.86674556", + "x": 224.7410491054915, + "y": 1255.1806912412785, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.14647222; latitude: 34.01869444", + "x": 1690.7477955553845, + "y": 920.7788595265686, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.65588611; latitude: 35.89893667", + "x": 1364.7963190013888, + "y": 845.6856883024509, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.0058125; latitude: 34.68897278", + "x": 1650.2440029414302, + "y": 889.6510789788165, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.33236111; latitude: 33.38911111", + "x": 1729.6329563279337, + "y": 949.5871761341407, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.72221722; latitude: 34.4728925", + "x": 1663.5156897044278, + "y": 899.7018924551107, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.83395639; latitude: 42.56072611", + "x": 2066.100752940282, + "y": 397.60908948924225, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.13290472; latitude: 42.75840889", + "x": 2052.5747860291476, + "y": 390.09948192854927, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.41317639; latitude: 43.87700278", + "x": 2065.473234610842, + "y": 326.5182572501749, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.74262972; latitude: 43.86256083", + "x": 2053.6065223932596, + "y": 330.1516719382935, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.8648225; latitude: 41.69037667", + "x": 2113.2522071381286, + "y": 433.37646437714875, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.77731778; latitude: 41.91676389", + "x": 2113.6587840673205, + "y": 420.969915245631, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.76297194; latitude: 40.99445361", + "x": 1351.1276337453376, + "y": 576.6766565281696, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.73309806; latitude: 42.77420167", + "x": 1653.737481790235, + "y": 459.49005081032783, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.34565306; latitude: 40.11389972", + "x": 1091.5434658248846, + "y": 623.0082137344339, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.29880556; latitude: 32.17608333", + "x": 1299.2889661541121, + "y": 1043.8684706228257, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.94886111; latitude: 32.699", + "x": 1270.3243413297403, + "y": 1016.754730414591, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.39126167; latitude: 41.44683167", + "x": 1829.3940095314988, + "y": 505.15905234801176, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.91475694; latitude: 42.7008925", + "x": 1874.2212184426394, + "y": 430.2612134150181, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.10277222; latitude: 39.77904472", + "x": 1815.7914606275326, + "y": 596.586639285305, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.6821125; latitude: 42.38214444", + "x": 1923.7671196150213, + "y": 438.01587660679706, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.16702778; latitude: 39.44816667", + "x": 1855.5118322235576, + "y": 607.8268482928245, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.26097306; latitude: 37.68760139", + "x": 1786.065674919389, + "y": 712.9301706405686, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.52377778; latitude: 40.32872222", + "x": 1755.6634727247151, + "y": 576.2598987030065, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.8138325; latitude: 39.63359556", + "x": 1590.6974337085173, + "y": 633.004250191435, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.85005556; latitude: 40.52452778", + "x": 1741.4547527993413, + "y": 567.8180378377783, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.90539083; latitude: 31.21272417", + "x": 1850.9713543082707, + "y": 1048.6445525012984, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.22627778; latitude: 31.21255556", + "x": 1792.6143362968296, + "y": 1056.9574918932342, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.58654889; latitude: 30.80575139", + "x": 1779.4602307472626, + "y": 1080.2654503500771, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.55731917; latitude: 30.75468028", + "x": 1869.9712813303936, + "y": 1070.0999706774735, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −154.1238331; latitude: 59.78960972", + "x": 296.9469453960381, + "y": 1279.56849100845, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −152.5005111; latitude: 57.92287611", + "x": 312.63355723644287, + "y": 1313.7326982783954, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.42826889; latitude: 40.73210556", + "x": 1364.7578876929615, + "y": 590.0496945449313, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −165.2731272; latitude: 60.57559667", + "x": 197.46214295111625, + "y": 1256.5501324389809, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.61685667; latitude: 36.38340333", + "x": 1323.7859387085527, + "y": 821.3067892966117, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.71205083; latitude: 34.80823", + "x": 1407.0293738509706, + "y": 901.6481080989331, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.45182472; latitude: 35.59785528", + "x": 1373.9605719973895, + "y": 861.2719668355392, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.81016667; latitude: 36.79991667", + "x": 1605.3060649838185, + "y": 782.1022717265753, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.39457111; latitude: 34.64870694", + "x": 1420.9577468808495, + "y": 909.427241175764, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.64792639; latitude: 36.40423139", + "x": 1447.5925187827113, + "y": 815.1642841652451, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.34584611; latitude: 41.12854806", + "x": 2064.0632627031473, + "y": 475.67642188695754, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.34959972; latitude: 36.74511583", + "x": 1168.198345324629, + "y": 803.0362052922169, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.85835278; latitude: 33.909325", + "x": 1273.5223801311313, + "y": 952.915911920973, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.35035083; latitude: 36.78336306", + "x": 1126.6684949810779, + "y": 800.2055037414889, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −110.4234653; latitude: 35.79167222", + "x": 619.5698480965389, + "y": 807.8531710537547, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.48256556; latitude: 31.01546028", + "x": 1515.6137231171058, + "y": 1095.5676478038451, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.89472083; latitude: 31.47210861", + "x": 1584.3921628012959, + "y": 1066.2019842180102, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.87801972; latitude: 30.4621125", + "x": 1589.6595421755667, + "y": 1118.9866291625954, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.75866944; latitude: 46.78865556", + "x": 1412.826191993988, + "y": 269.24456228389, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.42379917; latitude: 30.46628389", + "x": 1385.311296668881, + "y": 1131.3591466011128, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.12749972; latitude: 30.26048083", + "x": 1579.337504197833, + "y": 1130.4714053948796, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −124.4242742; latitude: 42.41344444", + "x": 148.8187056149775, + "y": 341.95568970603154, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.5364625; latitude: 45.67261833", + "x": 300.73923750545396, + "y": 207.9335477875884, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.2532244; latitude: 45.35709583", + "x": 449.1227031674074, + "y": 262.2430322974178, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.5900839; latitude: 45.21632417", + "x": 257.0150529849882, + "y": 220.45557965751323, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.8754169; latitude: 39.66738111", + "x": 280.9029355831875, + "y": 529.82219401678, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.91240972; latitude: 32.45609722", + "x": 1184.1921576717855, + "y": 1029.6079228738402, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −110.9908639; latitude: 48.51072222", + "x": 701.0441460442995, + "y": 143.558153977669, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −105.5619431; latitude: 47.41861972", + "x": 884.0146649297732, + "y": 224.4932865745509, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −108.7612172; latitude: 40.09469917", + "x": 719.263221722549, + "y": 592.4045247671629, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −104.7838747; latitude: 37.69640056", + "x": 864.4134872349291, + "y": 736.4989112030514, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.0386775; latitude: 42.11222889", + "x": 1145.6493324988796, + "y": 519.0170425470023, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.57973306; latitude: 34.60183722", + "x": 1964.8018715621345, + "y": 848.6129219900911, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −159.7749503; latitude: 62.18829583", + "x": 248.93099451748395, + "y": 1233.3109131846481, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −130.0067031; latitude: 55.90331972", + "x": 538.980793908626, + "y": 1306.9906426679256, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.42821917; latitude: 40.75873222", + "x": 1560.906080185613, + "y": 576.0934107310482, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.03563889; latitude: 33.18605556", + "x": 1916.0078044015727, + "y": 933.1169167374533, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.19445278; latitude: 40.11611111", + "x": 1216.5651607639209, + "y": 625.2199935210997, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.67241667; latitude: 29.85033333", + "x": 1148.3932890430017, + "y": 1166.0177529755924, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.73555556; latitude: 46.34858333", + "x": 1125.1787531533146, + "y": 295.987007066934, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −149.3699647; latitude: 65.14370889", + "x": 333.7311606492559, + "y": 1179.9466527662457, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.46044333; latitude: 33.61212528", + "x": 1765.6391260090018, + "y": 933.122598145857, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −105.6863889; latitude: 32.63388889", + "x": 800.3657180164544, + "y": 998.8180210923961, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.23729333; latitude: 34.24459889", + "x": 1898.1348582408255, + "y": 879.5156377739947, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.00747222; latitude: 32.302", + "x": 1750.837711327527, + "y": 1004.6481438582898, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.80859806; latitude: 38.63334222", + "x": 1232.0343526774752, + "y": 703.5930380317584, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.15160833; latitude: 30.7313", + "x": 1665.609582446594, + "y": 1097.5953376461046, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.72886278; latitude: 44.68032028", + "x": 1642.0410822496551, + "y": 359.95557018703084, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.462345; latitude: 30.61170083", + "x": 1875.327690002931, + "y": 1076.8698324722752, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.6778664; latitude: 46.60400083", + "x": 308.7414335110252, + "y": 159.64510005899638, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.3145325; latitude: 40.88336139", + "x": 1720.7762152298835, + "y": 551.5195987577699, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.345425; latitude: 38.34688889", + "x": 1332.217368921632, + "y": 717.2387407775334, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −123.9054167; latitude: 46.01649694", + "x": 222.63745800618926, + "y": 166.6567435744555, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −68.91058722; latitude: 44.30285556", + "x": 2222.696032054171, + "y": 261.3143510268692, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.3725; latitude: 42.79711111", + "x": 1515.2884300182382, + "y": 472.0847654549875, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −70.24728944; latitude: 45.63199111", + "x": 2156.021873773131, + "y": 207.8723326016784, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.72618944; latitude: 34.01580528", + "x": 1537.283947595191, + "y": 935.6112982181644, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.72924806; latitude: 33.46540139", + "x": 1496.1023982262318, + "y": 967.6525524933777, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −158.6176725; latitude: 59.28256167", + "x": 255.0501137174697, + "y": 1287.3994634470278, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.68881639; latitude: 32.93346222", + "x": 1717.1193276785143, + "y": 975.2974244802635, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.86119444; latitude: 43.05126111", + "x": 2059.121269973663, + "y": 372.7117720956353, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −71.90096306; latitude: 41.81974056", + "x": 2147.796051209236, + "y": 417.5714845977818, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.57956; latitude: 42.69091194", + "x": 2073.9803472537797, + "y": 388.6742815882294, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −149.5797392; latitude: 68.06543944", + "x": 328.5709205706703, + "y": 1126.8340865794823, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.1389125; latitude: 42.99297222", + "x": 1674.8370358508355, + "y": 445.30331545602667, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.340415; latitude: 33.20370556", + "x": 991.9671916049394, + "y": 983.8894279849674, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.00366083; latitude: 32.78850806", + "x": 1355.3621520743154, + "y": 1010.2284001350695, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.93751389; latitude: 42.98136667", + "x": 1908.1698402593388, + "y": 408.8839363977413, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.86863889; latitude: 40.88544444", + "x": 1699.195734812421, + "y": 554.2422244999921, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.60837583; latitude: 40.37645722", + "x": 1869.148906088123, + "y": 555.7272597492647, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.65541056; latitude: 41.7358775", + "x": 1701.683253531668, + "y": 508.66170626787243, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −149.6238389; latitude: 60.90415028", + "x": 336.9074133717046, + "y": 1257.7872758486092, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.21729889; latitude: 40.17792583", + "x": 1611.4549742456538, + "y": 602.0187553376611, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.9625; latitude: 44.40416667", + "x": 375.9954395220798, + "y": 296.2759541373716, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.86462028; latitude: 34.08848361", + "x": 1957.6822416830141, + "y": 877.4679628875563, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.7462828; latitude: 38.45418222", + "x": 991.0901260112586, + "y": 706.0218280864137, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.93295056; latitude: 34.40823444", + "x": 1612.2661110014697, + "y": 908.3659246463296, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.30984194; latitude: 34.2626", + "x": 1425.5784788126384, + "y": 929.6047300387495, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.36542861; latitude: 33.84593722", + "x": 1381.1394450692248, + "y": 953.5557073022612, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.11113611; latitude: 37.33616222", + "x": 1549.149592727288, + "y": 758.6968250384566, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.20870028; latitude: 46.85469528", + "x": 1180.8240816947098, + "y": 270.72440476067686, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.06041639; latitude: 47.35940778", + "x": 1186.448574076868, + "y": 244.49488711724825, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −154.3639608; latitude: 63.0174475", + "x": 295.06632269241584, + "y": 1220.2005370705515, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −157.0199197; latitude: 58.73288056", + "x": 269.4678734496164, + "y": 1298.3545109649017, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −154.8396944; latitude: 59.97904306", + "x": 290.41488699673243, + "y": 1276.036387203949, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.96947222; latitude: 30.498585", + "x": 1135.620098079733, + "y": 1131.7756189472839, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.70082; latitude: 30.42769722", + "x": 1597.768516980479, + "y": 1120.0966918716058, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.15438889; latitude: 29.25427778", + "x": 1217.2247152669195, + "y": 1197.892610748998, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.47349722; latitude: 30.44117222", + "x": 1338.0937377020111, + "y": 1134.1937205114518, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −162.1103692; latitude: 63.49005056", + "x": 232.0518533887127, + "y": 1207.4898276893248, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.09722722; latitude: 32.08348611", + "x": 1175.8456191577231, + "y": 1049.1329188196212, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −106.7048131; latitude: 31.88098556", + "x": 751.5210957851392, + "y": 1033.414320346885, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.5122997; latitude: 28.85719361", + "x": 1017.1292102946348, + "y": 1213.7503668770046, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −142.5219339; latitude: 63.13382361", + "x": 392.4285436986562, + "y": 1209.897417450791, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.6486389; latitude: 45.27175833", + "x": 650.6156310319292, + "y": 306.4121386793454, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −110.2660367; latitude: 47.59664", + "x": 719.0519136763634, + "y": 194.37398538022762, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −108.7011986; latitude: 36.6977775", + "x": 697.6976438942415, + "y": 770.6992257996617, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.4970881; latitude: 43.83332611", + "x": 1017.5982540503896, + "y": 423.2619915075147, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.50529972; latitude: 35.7029175", + "x": 1915.8222644313091, + "y": 798.3562525510299, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −134.4077778; latitude: 58.29888889", + "x": 483.44179679757457, + "y": 1279.4438260166169, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −150.9939547; latitude: 63.54171472", + "x": 322.5686834784671, + "y": 1210.0238113725025, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.26063056; latitude: 33.64870417", + "x": 1083.1980634269598, + "y": 964.5372395563543, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.43667222; latitude: 33.90850556", + "x": 1977.5368246450357, + "y": 883.4582095576313, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.33888056; latitude: 31.97987056", + "x": 1606.5915427611517, + "y": 1037.4325722201186, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −114.8610967; latitude: 35.94748028", + "x": 437.2994221306085, + "y": 767.2484566589874, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.81762806; latitude: 42.96320278", + "x": 1497.678725980652, + "y": 464.68605609671886, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.6709289; latitude: 45.52527778", + "x": 258.6333557349284, + "y": 204.08214532152851, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −123.0289678; latitude: 43.79984528", + "x": 220.61842961128025, + "y": 287.31778290792045, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.92897778; latitude: 41.26672278", + "x": 1810.2271892577137, + "y": 517.9101340756229, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.98001083; latitude: 30.16927167", + "x": 1179.9829769328303, + "y": 1149.7391427230148, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.6660967; latitude: 43.23653139", + "x": 298.6777146706347, + "y": 339.84540581755755, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −132.9600567; latitude: 56.81131972", + "x": 505.2090809429853, + "y": 1301.2323026638965, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.78804889; latitude: 43.96117222", + "x": 1457.3674090564298, + "y": 414.90092725102613, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.8844247; latitude: 48.54156944", + "x": 464.38131780529375, + "y": 95.43498276481023, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.38373611; latitude: 33.222645", + "x": 1814.7485894600545, + "y": 947.0510343892201, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −116.2954761; latitude: 48.72632639", + "x": 520.7079147798518, + "y": 98.33371907441233, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.3747778; latitude: 44.41761111", + "x": 949.5027638759041, + "y": 387.8783831198052, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −114.0552453; latitude: 36.83497556", + "x": 479.3666881082204, + "y": 727.715479075521, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −132.3800181; latitude: 56.466325", + "x": 512.7447475052267, + "y": 1305.4008518835549, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.1677519; latitude: 47.65404528", + "x": 444.07348431944513, + "y": 137.9759254036694, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.25074833; latitude: 32.56736694", + "x": 1738.48852302928, + "y": 992.1179828495833, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.27494444; latitude: 33.22697222", + "x": 1733.1588965677129, + "y": 957.7628974502659, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.86490194; latitude: 35.19453167", + "x": 1737.6402327354758, + "y": 852.5542211506092, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.82511528; latitude: 36.41789833", + "x": 1813.7315909198255, + "y": 776.6938598094364, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −152.6222222; latitude: 66.55194444", + "x": 308.1654716411453, + "y": 1155.3232236431213, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.09594889; latitude: 43.98478278", + "x": 2075.707697403379, + "y": 318.19017337640935, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.17043861; latitude: 43.02090306", + "x": 2010.916505426027, + "y": 385.43771725517445, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −71.51791444; latitude: 42.46045361", + "x": 2153.5461470086275, + "y": 381.1548196177264, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.01797889; latitude: 44.56911417", + "x": 2107.28375978353, + "y": 278.59397736914207, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.44076889; latitude: 42.91395583", + "x": 1964.7944808994444, + "y": 401.1484406664649, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.25380722; latitude: 43.14228139", + "x": 1631.7897942903292, + "y": 442.53092165947055, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.01762611; latitude: 46.94100778", + "x": 1151.839189698399, + "y": 265.73178410103037, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.07378583; latitude: 34.70777139", + "x": 1263.8201274833523, + "y": 910.8824167064811, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.74133111; latitude: 41.60880861", + "x": 1852.8940323800152, + "y": 492.5138428011355, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.19183; latitude: 40.00243139", + "x": 1810.4523401489896, + "y": 585.4778814630422, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.24216667; latitude: 37.63355556", + "x": 1665.0821826106246, + "y": 731.4895662292085, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.24586111; latitude: 33.79463889", + "x": 1859.0479182689141, + "y": 909.8926945446469, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.50847222; latitude: 33.1955", + "x": 1895.6240022416837, + "y": 936.0165341946481, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.79455306; latitude: 33.92680111", + "x": 1834.5829849114643, + "y": 906.5960758749011, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.88367778; latitude: 42.47083694", + "x": 1152.0014882096275, + "y": 500.2412839866106, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.47582833; latitude: 36.29014667", + "x": 1120.779359692131, + "y": 826.1352153942855, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −142.9536194; latitude: 63.32881806", + "x": 388.32064310353155, + "y": 1206.9664445798644, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.91589722; latitude: 37.85567778", + "x": 1798.7614614216022, + "y": 702.0755495368091, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.75014556; latitude: 36.21673389", + "x": 1402.080881053793, + "y": 827.3876057834011, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.67833333; latitude: 40.12916667", + "x": 1395.6820240316597, + "y": 620.6406033827109, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.81055556; latitude: 34.78027778", + "x": 1445.4958528140917, + "y": 901.2062997924684, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.40149028; latitude: 35.53341472", + "x": 1460.5723018739575, + "y": 860.509318083057, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.97208306; latitude: 40.74260167", + "x": 2082.9808105100883, + "y": 492.1785405754363, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.97291639; latitude: 40.73399083", + "x": 2083.053354495615, + "y": 492.6286379995422, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.5690139; latitude: 41.96217028", + "x": 1047.7280686336428, + "y": 523.5285741701168, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.00801472; latitude: 30.35643", + "x": 1269.0185736628803, + "y": 1139.918571439621, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −153.2697494; latitude: 57.21810306", + "x": 305.31276769164674, + "y": 1326.8077407156345, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.66025083; latitude: 30.78450278", + "x": 1104.9498090544676, + "y": 1116.0178894321207, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −109.9811111; latitude: 45.80638889", + "x": 715.3801341209066, + "y": 288.25738732216723, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −124.1095631; latitude: 43.97901", + "x": 184.39097540152488, + "y": 266.676382681228, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −109.2507167; latitude: 45.6291075", + "x": 740.4994742997621, + "y": 301.25352064018034, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −114.1255403; latitude: 46.25149444", + "x": 570.5580927142154, + "y": 239.9603252845418, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −108.7610886; latitude: 45.70308833", + "x": 758.7843942028464, + "y": 299.8630338994044, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.8435325; latitude: 43.29525056", + "x": 927.2124889136467, + "y": 445.2772426351494, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.79826944; latitude: 37.06374667", + "x": 1809.7570748740218, + "y": 742.7662196367362, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.2504367; latitude: 43.99498861", + "x": 989.8701384649669, + "y": 413.03292172261035, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −108.5632597; latitude: 38.23879833", + "x": 714.1214191580723, + "y": 690.6945563794488, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.15473528; latitude: 30.88797667", + "x": 1753.646899206135, + "y": 1079.2250893731646, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.61922222; latitude: 31.43113889", + "x": 1685.3673678708954, + "y": 1058.5145966749699, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.4210244; latitude: 47.23683778", + "x": 465.0488832599543, + "y": 165.1650388921944, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.68096028; latitude: 42.78054722", + "x": 1427.3760105843514, + "y": 478.95602002131227, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.63455083; latitude: 32.4121375", + "x": 1896.8502061127915, + "y": 977.629770979747, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.73577778; latitude: 39.88083333", + "x": 1829.379216734676, + "y": 588.9649601954684, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.6623956; latitude: 48.4989925", + "x": 301.8345307403463, + "y": 55.274482115083174, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −110.0512619; latitude: 40.27829167", + "x": 669.9944198436352, + "y": 575.6118459034287, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.63211194; latitude: 31.68545833", + "x": 1771.4360382723762, + "y": 1034.6989604187647, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.59574694; latitude: 42.72086583", + "x": 1735.1035725451966, + "y": 451.70305165768286, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.09091444; latitude: 43.31183", + "x": 1712.1385956273234, + "y": 423.48753420509547, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −123.0067483; latitude: 43.93206889", + "x": 223.36967656227034, + "y": 280.8805895630653, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.44522222; latitude: 43.45908333", + "x": 1697.8072807105586, + "y": 417.6010422241343, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.06258056; latitude: 39.16620778", + "x": 1862.1244649011023, + "y": 621.8258856905732, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.39376083; latitude: 31.30875278", + "x": 1651.735438808238, + "y": 1068.5317208537133, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −110.6336111; latitude: 47.84583333", + "x": 708.122628033096, + "y": 179.59455519112817, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.66208333; latitude: 32.68147222", + "x": 1589.1266251321017, + "y": 1001.9187696480219, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.95406389; latitude: 32.46381944", + "x": 1577.350516405647, + "y": 1014.4402695320816, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.22958111; latitude: 32.81204611", + "x": 1694.3845302009718, + "y": 984.3901160281937, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.366615; latitude: 33.12928722", + "x": 1686.5623099480492, + "y": 968.4531589263288, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.99566944; latitude: 35.94457028", + "x": 1810.3635789830996, + "y": 802.4897009628137, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.61151667; latitude: 42.32816806", + "x": 2114.596317821242, + "y": 398.37541235041954, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.17790861; latitude: 42.54294389", + "x": 1714.316588875405, + "y": 464.0529708117642, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.24313889; latitude: 33.03622222", + "x": 1213.6764169262144, + "y": 999.2305898746752, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.06355528; latitude: 33.59316472", + "x": 1264.8362863327784, + "y": 969.6864943640435, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.56696361; latitude: 31.81682333", + "x": 1154.8800035055726, + "y": 1062.8688815575272, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.600325; latitude: 31.91681306", + "x": 1109.2650929823862, + "y": 1056.6080127763553, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.91362333; latitude: 43.18118194", + "x": 1907.073750709435, + "y": 398.38257379149763, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.06292972; latitude: 41.44960972", + "x": 1803.5517578139984, + "y": 509.19934728081125, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.73686111; latitude: 40.41208333", + "x": 1707.5426692678718, + "y": 578.3718312075171, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.56660694; latitude: 37.56173889", + "x": 1774.5901505930242, + "y": 721.305209451941, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −135.3226633; latitude: 59.44689528", + "x": 469.1622619437698, + "y": 1261.6573380004602, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.84995194; latitude: 37.45832417", + "x": 1600.3156196251382, + "y": 747.6132567354216, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.47253111; latitude: 42.45416111", + "x": 1206.14407794784, + "y": 501.791269884704, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −146.6864653; latitude: 60.86890528", + "x": 362.9532329155392, + "y": 1256.139781184331, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.36484056; latitude: 33.62022111", + "x": 1424.8718491033903, + "y": 963.5673008556241, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.52713472; latitude: 34.52926056", + "x": 1330.0793624227958, + "y": 919.1221981859173, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.01012028; latitude: 35.69114639", + "x": 1476.5444810607278, + "y": 851.1855588939825, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.8393075; latitude: 35.51069583", + "x": 1315.547830351029, + "y": 867.6334118926989, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.16624167; latitude: 36.37820556", + "x": 1467.750622399936, + "y": 815.3546869953948, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.08166667; latitude: 29.95194444", + "x": 1492.34241434909, + "y": 1153.0117352520263, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.11219278; latitude: 42.17590722", + "x": 1947.393444039136, + "y": 444.41442131551185, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.39772111; latitude: 39.73556333", + "x": 2039.7524038583979, + "y": 556.6054056563185, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −114.0967783; latitude: 47.57076861", + "x": 584.5992910184912, + "y": 172.62434304654607, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.3091656; latitude: 45.53325917", + "x": 628.97316942195, + "y": 288.8473391031821, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −123.1982475; latitude: 44.86676444", + "x": 230.31933974578476, + "y": 231.77725888176428, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −110.9132667; latitude: 46.50410722", + "x": 687.4184612972821, + "y": 247.0861921921969, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.2508711; latitude: 48.29997583", + "x": 655.6187332231461, + "y": 147.09891556387674, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −106.1206939; latitude: 38.81416194", + "x": 816.1198297789227, + "y": 672.2889705528914, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.54061694; latitude: 40.08473556", + "x": 1123.433063766508, + "y": 625.5376567792246, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.95518417; latitude: 35.5623925", + "x": 2064.201276194871, + "y": 777.0398734317714, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.64985889; latitude: 34.19260083", + "x": 1239.3287698422364, + "y": 938.2385660627424, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −70.48129583; latitude: 44.15742611", + "x": 2168.2743614731867, + "y": 284.71326401833676, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.13768389; latitude: 43.83872167", + "x": 1444.6622144003215, + "y": 422.15830775688437, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −104.1302292; latitude: 41.15331528", + "x": 906.7334178966544, + "y": 556.8602649793434, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.73755083; latitude: 45.89029056", + "x": 1634.2266818300182, + "y": 297.04923891827457, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.2510417; latitude: 44.984375", + "x": 1030.176790136058, + "y": 363.4441813101148, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −132.2550183; latitude: 55.73963611", + "x": 518.229923208616, + "y": 1317.6222776634913, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.16687194; latitude: 30.03048028", + "x": 1171.447549171885, + "y": 1156.9196540633686, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −109.5103814; latitude: 35.70140278", + "x": 656.9086650141546, + "y": 818.2015404742726, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.5806175; latitude: 35.12061417", + "x": 1114.7221354260234, + "y": 887.7879325919405, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.4636475; latitude: 32.883215", + "x": 1466.0927609693206, + "y": 1000.2609298304926, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.18553833; latitude: 43.10491444", + "x": 1483.164375357843, + "y": 458.2754793650447, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.59743056; latitude: 42.88355556", + "x": 1506.3701886615656, + "y": 468.22440093416617, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.27024583; latitude: 32.99512944", + "x": 1864.5132295507258, + "y": 951.6986328869064, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −115.0704464; latitude: 48.96885444", + "x": 565.0864782307588, + "y": 94.83450482216313, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.684625; latitude: 41.60282583", + "x": 1739.9696750560765, + "y": 510.5453996959204, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.25575806; latitude: 34.22910972", + "x": 1642.1130266951632, + "y": 914.9021180043244, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.27016111; latitude: 34.39944167", + "x": 1640.5789597120868, + "y": 906.023375306298, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.31154861; latitude: 36.41217389", + "x": 1669.4975189364218, + "y": 795.9730881592875, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −70.66462472; latitude: 44.991895", + "x": 2150.118023051977, + "y": 244.27911658346875, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.1134775; latitude: 43.94424111", + "x": 1520.145834449142, + "y": 411.1284469665252, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.99619167; latitude: 45.67079278", + "x": 1187.81599107619, + "y": 332.6592005156708, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.67689778; latitude: 43.12860833", + "x": 1615.8881601808828, + "y": 445.02490458688817, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.71191361; latitude: 44.89570278", + "x": 1160.8880160212716, + "y": 372.8863393521324, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.53784778; latitude: 44.02914056", + "x": 1166.5971576297006, + "y": 418.48223384665334, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.58055556; latitude: 33.25463889", + "x": 1155.5370111514203, + "y": 987.1617587354388, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.64105083; latitude: 41.90755611", + "x": 1854.0338822840322, + "y": 476.32247877549844, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.01256917; latitude: 40.23820667", + "x": 1815.5334629875858, + "y": 572.0631153064869, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.16072889; latitude: 40.80161944", + "x": 1843.8988289680392, + "y": 537.2684204689303, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.3504222; latitude: 37.83057667", + "x": 1046.1812326094796, + "y": 741.9689055481115, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −131.7380742; latitude: 55.38965028", + "x": 525.3797920418947, + "y": 1321.9502516137445, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.64699861; latitude: 34.58981806", + "x": 1538.3436568125758, + "y": 905.1472741417333, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −114.1851178; latitude: 47.69543861", + "x": 582.7476211528389, + "y": 165.6638119292561, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.4848025; latitude: 47.51484611", + "x": 362.40287208797395, + "y": 124.98210794646093, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.78286111; latitude: 32.89783333", + "x": 1929.4337201071244, + "y": 946.2297096864866, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −105.3047083; latitude: 46.77917333", + "x": 889.8825099946328, + "y": 258.5574307003767, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.4813889; latitude: 46.33111111", + "x": 665.6795051747761, + "y": 252.73045953719839, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.03787611; latitude: 42.56250167", + "x": 1107.8795345456622, + "y": 494.266959197897, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.84330361; latitude: 45.15904694", + "x": 1303.82955902795, + "y": 358.74877893226176, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.75595639; latitude: 43.2969325", + "x": 1460.8631803047965, + "y": 449.6794829379023, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.62026389; latitude: 35.15426444", + "x": 1240.3977777063974, + "y": 887.4660029850968, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −68.67863722; latitude: 44.17508056", + "x": 2232.9118683639235, + "y": 265.30347271638766, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.29827778; latitude: 43.28333333", + "x": 1440.3837951885266, + "y": 451.6852483883372, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.70343889; latitude: 35.60393694", + "x": 1068.068165938208, + "y": 860.7010406930301, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.11698111; latitude: 41.23334583", + "x": 1180.652072501972, + "y": 565.9696401332258, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.90052778; latitude: 36.69741667", + "x": 1311.5771119669023, + "y": 804.9917051992136, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.46418833; latitude: 36.28340306", + "x": 1204.872119469911, + "y": 827.7923981337829, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.902775; latitude: 48.94057222", + "x": 1158.041195318486, + "y": 161.9905514510442, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −133.1217153; latitude: 56.11631056", + "x": 507.61586519153775, + "y": 1313.8678604064428, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −104.5375072; latitude: 45.87791444", + "x": 913.1542551692846, + "y": 308.03054790861415, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.1087353; latitude: 44.70414917", + "x": 1071.7369566517395, + "y": 380.2074895532742, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.10898917; latitude: 33.30515528", + "x": 1868.9157266114016, + "y": 934.467834501688, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.54618528; latitude: 41.55834528", + "x": 1125.2963608788232, + "y": 547.7488467768967, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.84955806; latitude: 33.6324825", + "x": 1748.7964957331174, + "y": 934.2400215227635, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −159.2359667; latitude: 61.58317306", + "x": 252.6321527569414, + "y": 1244.7844199448743, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.34883333; latitude: 34.65938889", + "x": 1593.3155321774632, + "y": 896.8223952576741, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.29023333; latitude: 34.68896917", + "x": 1680.6178961203223, + "y": 886.3298554490766, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.19577778; latitude: 34.78933333", + "x": 1853.0419457737398, + "y": 857.7010168791548, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −157.3993056; latitude: 57.5278675", + "x": 264.74248380623885, + "y": 1320.3027827286564, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.27920861; latitude: 43.8958525", + "x": 1626.3688570743047, + "y": 403.25236729878543, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.44622306; latitude: 44.54165056", + "x": 1096.0129987223997, + "y": 389.7070681945279, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.4033; latitude: 43.22174722", + "x": 1095.1261776035299, + "y": 459.0978189738671, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.5296356; latitude: 45.58055222", + "x": 948.570056344205, + "y": 326.6465890020477, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.23680389; latitude: 48.4841675", + "x": 1110.8100871382326, + "y": 184.35179244664505, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.34625944; latitude: 42.66361778", + "x": 1631.1182576066813, + "y": 467.9742536314284, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.71658528; latitude: 42.86200306", + "x": 1880.142413153473, + "y": 420.5522343608154, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.82060611; latitude: 40.60423333", + "x": 1858.842646877587, + "y": 545.3008071728632, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.48296778; latitude: 43.02108667", + "x": 1887.3724786336707, + "y": 410.6942714227075, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.55780528; latitude: 43.18200222", + "x": 1883.0256374664418, + "y": 402.8864700026602, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.77524389; latitude: 40.46121083", + "x": 1900.7676601960272, + "y": 545.5287158222836, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.02289361; latitude: 40.221155", + "x": 1460.9580413795427, + "y": 612.2335869665112, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.25212111; latitude: 37.91453139", + "x": 1744.1862915400839, + "y": 706.6877158328871, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −154.8027058; latitude: 59.43264556", + "x": 290.6312411768411, + "y": 1286.090616682263, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.80285417; latitude: 38.7842425", + "x": 1313.0872882026665, + "y": 694.5962966324507, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.23061222; latitude: 38.74750889", + "x": 1134.0774591757984, + "y": 696.5063156062085, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.12264722; latitude: 37.66660278", + "x": 1137.166454084147, + "y": 753.742853541467, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.22840028; latitude: 33.3034575", + "x": 1518.385222895194, + "y": 974.6786402932032, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.40390611; latitude: 32.84921361", + "x": 1425.1469473118268, + "y": 1004.2393337864598, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.35098583; latitude: 34.32842917", + "x": 1380.7853256491346, + "y": 928.093791312022, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −105.43947; latitude: 48.80772722", + "x": 895.5072340294575, + "y": 153.18704247265305, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −114.8537411; latitude: 47.16825944", + "x": 554.0582173658224, + "y": 187.96429332297203, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.5691389; latitude: 45.87852778", + "x": 658.6838180245828, + "y": 275.5524338904456, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −109.3776792; latitude: 47.55164778", + "x": 749.9696508333745, + "y": 201.26726157039957, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.6886361; latitude: 45.45263139", + "x": 363.2808356716307, + "y": 236.41454764222317, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −108.4090214; latitude: 48.85417361", + "x": 792.9090253585982, + "y": 138.92303514165542, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.1953703; latitude: 39.46798056", + "x": 382.59199162626294, + "y": 565.23657202605, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −107.4972869; latitude: 41.03829806", + "x": 775.0388367934548, + "y": 549.316902945704, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.4448947; latitude: 42.73748639", + "x": 978.105147412125, + "y": 478.55889922446295, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.7126953; latitude: 43.16564083", + "x": 1007.3914657141686, + "y": 457.84340406347474, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.32134; latitude: 43.76612222", + "x": 1099.2357937342788, + "y": 430.5886862821126, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.01631111; latitude: 36.39893194", + "x": 2052.4514669802156, + "y": 734.3466299558056, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.63512944; latitude: 34.15987361", + "x": 1669.0207139349222, + "y": 915.7188373255044, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −157.7141078; latitude: 58.906485", + "x": 263.07443104815303, + "y": 1294.833543164596, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −135.3462086; latitude: 57.05213778", + "x": 481.15536665416425, + "y": 1304.0153520428366, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.8553103; latitude: 41.55819444", + "x": 193.97093079841488, + "y": 402.54534846968954, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.9755614; latitude: 41.88709222", + "x": 231.54633743807267, + "y": 395.2238178879961, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −162.6670094; latitude: 60.33534556", + "x": 219.99655962147372, + "y": 1264.4277939805515, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −160.2730436; latitude: 59.07562167", + "x": 239.30373089972494, + "y": 1289.9240463430067, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −158.7753614; latitude: 56.25504722", + "x": 249.586027367803, + "y": 1342.7869512348261, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −163.1675583; latitude: 59.87644778", + "x": 214.35300418973267, + "y": 1272.1837959716945, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.02744778; latitude: 29.72754583", + "x": 1721.8366373000663, + "y": 1144.3659118214273, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.22113889; latitude: 37.74755556", + "x": 1174.2171883415413, + "y": 750.1137589708933, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.30941667; latitude: 37.35827778", + "x": 1663.9719685897094, + "y": 746.2632425441459, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.5653611; latitude: 41.483", + "x": 278.7514162080802, + "y": 430.17279269386563, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.44040167; latitude: 40.65236278", + "x": 2027.6935130095037, + "y": 509.6642894358961, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.68189722; latitude: 32.41132", + "x": 1062.4538280690508, + "y": 1029.0228530943734, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −66.67555556; latitude: 18.45111111", + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −106.6091944; latitude: 35.04022222", + "x": 774.2782448598606, + "y": 868.3791964113284, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.42183333; latitude: 45.44905556", + "x": 1135.3428948432818, + "y": 343.32531329601215, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.19447333; latitude: 31.535515", + "x": 1747.6650854140075, + "y": 1045.6861451250747, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.198355; latitude: 44.98857611", + "x": 1622.8826293005861, + "y": 345.912489760537, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.18884806; latitude: 32.11079917", + "x": 1744.1626818513334, + "y": 1015.6305856742733, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −70.06018139; latitude: 41.25305194", + "x": 2224.7018228559064, + "y": 427.8119419012387, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.55294361; latitude: 44.07346389", + "x": 1316.0036411794965, + "y": 415.4390977542762, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.23051917; latitude: 31.61128833", + "x": 1169.6403674310964, + "y": 1073.8957452824152, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −124.1086189; latitude: 40.97811528", + "x": 138.3415602440814, + "y": 417.9383957058699, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.57716667; latitude: 39.45758333", + "x": 2074.9737033090114, + "y": 563.747218470171, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.00362444; latitude: 34.71789028", + "x": 1987.8499898724872, + "y": 838.0337297585011, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.21095472; latitude: 46.45026972", + "x": 1252.8261261084035, + "y": 291.9846245606818, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.07480528; latitude: 41.86943667", + "x": 1684.6691206533521, + "y": 503.7432454161185, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.6712775; latitude: 34.80434056", + "x": 1195.6612934368125, + "y": 905.8754900739141, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −176.6460306; latitude: 51.87796389", + "x": 45.54257764723383, + "y": 1381.1478160407182, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.01952167; latitude: 34.30320667", + "x": 1180.53053760806, + "y": 932.1949280701845, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −152.4938553; latitude: 57.74996778", + "x": 312.7701896409856, + "y": 1316.9083194975835, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.83644778; latitude: 32.96855944", + "x": 1187.7671989729001, + "y": 1002.6486884222327, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.0420278; latitude: 39.84013889", + "x": 1023.5257308459403, + "y": 634.483933846557, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.92054167; latitude: 41.70137556", + "x": 1266.1646034682287, + "y": 541.2908991151053, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −106.7951617; latitude: 35.14515278", + "x": 767.0519159706436, + "y": 861.985140001442, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.36723778; latitude: 43.68151278", + "x": 1323.533312898443, + "y": 435.84789947139234, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.54855611; latitude: 31.32737167", + "x": 1378.0546178678912, + "y": 1086.3811068106497, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −133.9082694; latitude: 56.96048139", + "x": 495.35199141981207, + "y": 1301.510126905571, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.29020083; latitude: 40.13648833", + "x": 1844.6610797653807, + "y": 572.7627771693569, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.86569444; latitude: 40.60688889", + "x": 1229.5742093887368, + "y": 599.2987330017149, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −157.8536203; latitude: 67.10610472", + "x": 270.4886607387, + "y": 1144.5140323043877, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.00302194; latitude: 42.80513417", + "x": 2130.9936320523175, + "y": 368.2683691972111, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −110.9421639; latitude: 42.71124583", + "x": 655.2301487889056, + "y": 443.467231440643, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.31880556; latitude: 32.98763889", + "x": 1166.7254730743446, + "y": 1001.4047616795394, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.93016889; latitude: 40.35440139", + "x": 1856.8073051922688, + "y": 559.0378816886914, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −134.5850939; latitude: 57.50355528", + "x": 486.0253757486623, + "y": 1293.9344086320864, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.21696861; latitude: 33.22802111", + "x": 1345.3553303657534, + "y": 987.3635882334752, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.96449611; latitude: 33.369955", + "x": 1831.6559971901945, + "y": 936.7262387032436, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.29618972; latitude: 43.06332694", + "x": 1136.929406074852, + "y": 468.6943137297417, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.37539222; latitude: 45.28114833", + "x": 1357.7075382976477, + "y": 350.70883561735627, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.32634694; latitude: 33.94859528", + "x": 1769.0347662866784, + "y": 914.7658884342077, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −134.6481539; latitude: 56.24684222", + "x": 492.06254907068353, + "y": 1316.2186266183069, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.59402778; latitude: 41.24133333", + "x": 1201.0808900387995, + "y": 565.7319138836979, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.8037222; latitude: 42.05325", + "x": 961.842512046931, + "y": 513.5728110024411, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.61299472; latitude: 40.10862139", + "x": 1635.6786093681267, + "y": 603.1210660716326, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.11072222; latitude: 45.15419444", + "x": 1478.2051470518663, + "y": 350.69874389779216, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.68447222; latitude: 33.64955556", + "x": 1841.4708419733643, + "y": 920.3438040206959, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.04690639; latitude: 41.40726722", + "x": 1261.4174112118076, + "y": 556.8606686314752, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.6768; latitude: 46.5484225", + "x": 1308.1935551141516, + "y": 285.9534784895113, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.19725167; latitude: 33.10706889", + "x": 1563.924840916035, + "y": 981.5612182962886, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.45608333; latitude: 39.36002778", + "x": 2080.858329891629, + "y": 567.6849892013611, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.5494875; latitude: 38.096035", + "x": 1365.049324057286, + "y": 729.454213284946, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −158.3732369; latitude: 56.3114625", + "x": 253.73195772541624, + "y": 1342.0350605916683, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.72669417; latitude: 38.60654722", + "x": 1559.1025141439932, + "y": 690.435630819009, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.60244; latitude: 33.89765389", + "x": 300.37558514269415, + "y": 848.3757295881921, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.55487; latitude: 34.50081944", + "x": 1755.4640882047306, + "y": 887.173207396082, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −159.1585781; latitude: 55.90806056", + "x": 245.20754418950713, + "y": 1348.8439075442748, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −174.2063503; latitude: 52.22034833", + "x": 73.72178363418055, + "y": 1383.984821091974, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.1498675; latitude: 35.20265944", + "x": 1851.5794957224803, + "y": 835.8359858839244, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −161.2270189; latitude: 60.90481194", + "x": 234.05191631421462, + "y": 1255.5671841074684, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −154.1825556; latitude: 56.93869083", + "x": 296.26342115151385, + "y": 1331.9772596153625, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −156.6492175; latitude: 58.67680167", + "x": 272.9375188229532, + "y": 1299.5348311616385, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.2220278; latitude: 40.17563333", + "x": 938.2134469747359, + "y": 611.2092197410352, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −151.74168; latitude: 68.1343225", + "x": 313.62603729754755, + "y": 1126.332885433752, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.46693944; latitude: 41.0375", + "x": 1791.321119435163, + "y": 533.1267990366778, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −133.0759972; latitude: 55.57923333", + "x": 511.11255815744727, + "y": 1323.091255110406, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.38555472; latitude: 32.51235611", + "x": 1602.0002524837041, + "y": 1009.7088809838722, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.80297861; latitude: 42.74811944", + "x": 2064.9710276271635, + "y": 387.7301881425401, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.02694444; latitude: 27.74088889", + "x": 1129.9569184359925, + "y": 1275.9470134826463, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −105.9905833; latitude: 32.83994444", + "x": 788.2399982611753, + "y": 986.6467280347906, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.04604306; latitude: 38.89029083", + "x": 1464.4460077867882, + "y": 682.4913190414641, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.40034361; latitude: 42.55708139", + "x": 1362.2101854270568, + "y": 493.8007365070134, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −105.8665556; latitude: 37.43491667", + "x": 818.7749729895029, + "y": 745.8987668413479, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.2880367; latitude: 46.09456167", + "x": 421.0248641601805, + "y": 216.06876344611055, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.96295611; latitude: 32.91475167", + "x": 1661.9275925944864, + "y": 982.5140633053752, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.7059272; latitude: 35.2193725", + "x": 982.4668652915457, + "y": 876.798628577629, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.50655556; latitude: 31.53605556", + "x": 1822.0211593389126, + "y": 1035.7024694467002, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.68794917; latitude: 43.3221425", + "x": 1652.024934157033, + "y": 430.6419318306548, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.56627778; latitude: 38.85148778", + "x": 1724.9856655393364, + "y": 659.2695079582684, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.62180139; latitude: 41.99206972", + "x": 1316.1647687924064, + "y": 525.04673028148, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.85811111; latitude: 33.58816667", + "x": 1662.7015328001105, + "y": 946.7361939293651, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −149.9961856; latitude: 61.17432028", + "x": 333.308921751416, + "y": 1253.035024146822, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.70902778; latitude: 34.49494444", + "x": 1791.3814509595268, + "y": 882.5933487208044, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.21138889; latitude: 45.145", + "x": 1327.1529425345711, + "y": 358.8782866652268, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −159.5430428; latitude: 61.58159694", + "x": 249.97008974953303, + "y": 1244.5969950484764, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.08349333; latitude: 41.63969833", + "x": 1647.2956439834495, + "y": 520.4625721538177, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −160.1898889; latitude: 62.64858333", + "x": 246.19665121736597, + "y": 1224.5678409623445, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.99297222; latitude: 42.57922222", + "x": 1071.3392197810492, + "y": 492.03321818260247, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.07964667; latitude: 37.15852194", + "x": 1138.3431933743973, + "y": 780.6387432161657, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −113.3340972; latitude: 43.60343056", + "x": 573.5957613926782, + "y": 381.8277543610034, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.02666667; latitude: 40.70694444", + "x": 1694.226598306861, + "y": 564.3778703743078, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.32002306; latitude: 40.29637222", + "x": 1920.0524913024685, + "y": 550.8035963807611, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −104.8492942; latitude: 39.57012833", + "x": 870.9509905468599, + "y": 637.6190463287651, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.2806944; latitude: 38.21319444", + "x": 167.196822094975, + "y": 578.7283642495254, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.77544444; latitude: 26.15247222", + "x": 1896.1286391592068, + "y": 1309.2214898230386, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.56028583; latitude: 45.0780675", + "x": 1682.3955445127729, + "y": 333.8728901993736, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.58531667; latitude: 35.06067778", + "x": 1665.9492774095138, + "y": 868.2179609320106, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.1861792; latitude: 34.57528944", + "x": 325.78470779061763, + "y": 817.5101520923167, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −133.1016928; latitude: 55.5546575", + "x": 510.9991435582215, + "y": 1323.6021977635096, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −161.8794789; latitude: 59.75700722", + "x": 225.79775700747086, + "y": 1275.8759993396816, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −151.0055611; latitude: 70.20995278", + "x": 316.9964533208091, + "y": 1088.6218659769631, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.17038306; latitude: 42.69591417", + "x": 2089.128175225708, + "y": 384.7275031775944, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −149.1257892; latitude: 60.96609583", + "x": 341.23474705095305, + "y": 1256.3431618514833, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.88389611; latitude: 30.03775833", + "x": 1410.5809273804255, + "y": 1152.827749384852, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.74560722; latitude: 42.22298361", + "x": 1694.911682102958, + "y": 483.63894397542754, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −145.5761114; latitude: 68.11608083", + "x": 355.95449622766125, + "y": 1123.2535271200848, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.92461944; latitude: 36.12534667", + "x": 1436.845726919364, + "y": 830.5163415429245, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.47565917; latitude: 41.77192944", + "x": 1515.6345878684465, + "y": 526.2680709156934, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.02173861; latitude: 43.99192222", + "x": 1968.5942935215148, + "y": 342.3877359582707, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.73094278; latitude: 45.92792556", + "x": 1452.7100470011317, + "y": 311.861932468556, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.82078833; latitude: 30.345055", + "x": 1502.8030427472352, + "y": 1131.6915384768138, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −106.868845; latitude: 39.22316", + "x": 788.5416060403912, + "y": 647.4774511823055, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.11925833; latitude: 36.17641056", + "x": 1303.0284889381048, + "y": 832.7153626083489, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −71.51477944; latitude: 42.78176306", + "x": 2149.3494998451024, + "y": 364.7545491598421, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.17085556; latitude: 36.29752583", + "x": 2006.3066085517657, + "y": 749.3752362232442, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.30777778; latitude: 32.5205", + "x": 1298.5706241790062, + "y": 1025.7480486783982, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.05085833; latitude: 33.56991111", + "x": 1654.5006669214367, + "y": 948.5742382246544, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −123.8786944; latitude: 46.15797222", + "x": 225.70715522733667, + "y": 159.8589823543084, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.84005556; latitude: 41.2747", + "x": 1620.14982800918, + "y": 542.8643864851415, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.91896639; latitude: 46.54852806", + "x": 1407.7349349248173, + "y": 282.0686882682494, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.19532694; latitude: 33.101805", + "x": 1302.9252919096023, + "y": 995.0415666688505, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −157.4357361; latitude: 70.46727611", + "x": 276.6271891210991, + "y": 1083.8652684096874, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.42694444; latitude: 33.64044444", + "x": 1723.9470577926973, + "y": 936.934361978005, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −104.4676864; latitude: 32.85252806", + "x": 854.5743288320091, + "y": 992.4423819951046, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.51947556; latitude: 44.25740806", + "x": 1503.6533833192357, + "y": 395.95706355301854, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.15471944; latitude: 44.91398056", + "x": 1181.5316902660086, + "y": 372.239061237829, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −69.79731806; latitude: 44.32064972", + "x": 2190.6068924998035, + "y": 269.5816728811142, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.99455556; latitude: 40.89413889", + "x": 1146.002153806905, + "y": 583.3119974939555, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −164.6599253; latitude: 62.68004417", + "x": 209.07241698477486, + "y": 1219.2503016350609, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.933385; latitude: 43.66499083", + "x": 1339.9117899328828, + "y": 436.22589607010195, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.0820806; latitude: 38.95476944", + "x": 224.4834798026793, + "y": 553.9127440297689, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.43355944; latitude: 32.61635417", + "x": 1686.661946659286, + "y": 995.6328806464444, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.66987194; latitude: 30.19453278", + "x": 1148.8257299622887, + "y": 1147.9800553195748, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.62661111; latitude: 44.92847222", + "x": 1460.0131798470939, + "y": 363.8320583208533, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.05447222; latitude: 36.68827778", + "x": 1966.1790324295926, + "y": 736.189962222357, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.66994611; latitude: 36.77317", + "x": 1113.3834687031888, + "y": 800.3935897212132, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.54180556; latitude: 35.43619444", + "x": 1791.4545299728175, + "y": 832.3834094421932, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.52785333; latitude: 27.591145", + "x": 1896.3823696427032, + "y": 1233.489669189674, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.7242675; latitude: 41.33814944", + "x": 2009.1053472808585, + "y": 476.6619748692292, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.2185086; latitude: 32.40939028", + "x": 558.0659586818673, + "y": 978.8074358473846, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.4158611; latitude: 33.40494444", + "x": 260.15074735345104, + "y": 865.5859711765615, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.67344389; latitude: 41.27610083", + "x": 1393.1195614378653, + "y": 560.1257730763555, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −159.99475; latitude: 70.638", + "x": 260.9558318515016, + "y": 1079.6769959965125, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.23444639; latitude: 35.13505861", + "x": 1468.8897032040286, + "y": 881.0910193637335, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.1590208; latitude: 48.16074833", + "x": 314.03647317401783, + "y": 76.99568088663227, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.27199278; latitude: 43.07791056", + "x": 1290.007277610995, + "y": 468.3842765763434, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.39466806; latitude: 45.86629833", + "x": 1246.3745267125073, + "y": 322.5510282830719, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.3381; latitude: 34.69878194", + "x": 1081.793045567911, + "y": 909.0471827459207, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.29894444; latitude: 40.49338889", + "x": 1684.9796328468703, + "y": 576.902489244831, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −105.2892967; latitude: 36.42240972", + "x": 837.1985804589898, + "y": 801.561357839596, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.39530556; latitude: 31.24905556", + "x": 1829.0675985175556, + "y": 1049.9297434047667, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −113.0138889; latitude: 36.95994444", + "x": 523.0326141479866, + "y": 729.1435133375007, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.64738778; latitude: 31.88465639", + "x": 1813.2568647662138, + "y": 1018.4324583394391, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.5520575; latitude: 42.234875", + "x": 1625.770152561749, + "y": 491.3047449859778, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.26205306; latitude: 43.42507111", + "x": 2076.625774127473, + "y": 348.26589989555987, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.2518292; latitude: 39.40324917", + "x": 301.66080524090887, + "y": 549.4771517954878, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.53837556; latitude: 43.08027611", + "x": 1959.3703517867038, + "y": 393.33281769568566, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −70.47238889; latitude: 43.46411111", + "x": 2178.268277901645, + "y": 319.7665486249525, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −70.21617778; latitude: 45.08616639", + "x": 2164.781032798136, + "y": 235.11166172293088, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.71562028; latitude: 42.15773111", + "x": 2112.892421900325, + "y": 408.06485903072326, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.89634556; latitude: 39.26191861", + "x": 1629.2467650172212, + "y": 648.8253505039684, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −116.8743358; latitude: 40.59904583", + "x": 408.1535431639337, + "y": 509.7319744157867, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.98566667; latitude: 43.78091667", + "x": 1712.72328453843, + "y": 398.50239407548406, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.04222222; latitude: 29.7045", + "x": 1131.4510703092353, + "y": 1173.3285123791889, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.650565; latitude: 45.3319325", + "x": 1237.137803072039, + "y": 350.5692528448926, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.32463889; latitude: 31.17816667", + "x": 1075.8811758059662, + "y": 1094.417629816917, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.73435944; latitude: 34.62170861", + "x": 1916.0384624664603, + "y": 856.2803731243941, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.64216861; latitude: 41.43645056", + "x": 1082.4604201568598, + "y": 552.7891240976105, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.40832778; latitude: 37.20782361", + "x": 1865.322608694255, + "y": 726.2735233529936, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.1454725; latitude: 37.70637111", + "x": 565.1429249217516, + "y": 696.4925633317166, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.85528028; latitude: 44.25073861", + "x": 1416.5426183982468, + "y": 402.10236741232256, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.10769667; latitude: 26.37848667", + "x": 1972.2491943851278, + "y": 1285.1748965751888, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −149.50888; latitude: 61.41612444", + "x": 337.2893684606748, + "y": 1248.3233871148784, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.61030556; latitude: 48.72741667", + "x": 1272.8227669116409, + "y": 173.32921163824903, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −109.4832889; latitude: 37.58303472", + "x": 672.101482139457, + "y": 719.901104638524, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.68322833; latitude: 41.93887417", + "x": 2116.9065636271384, + "y": 418.9565690972531, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.71349722; latitude: 35.13619528", + "x": 1363.7696186671385, + "y": 886.0405895973554, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.12617861; latitude: 41.16348417", + "x": 2110.032609335276, + "y": 462.81076832601957, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −105.4172133; latitude: 45.433325", + "x": 878.8939802148299, + "y": 328.15724815087833, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −71.28903; latitude: 42.46995306", + "x": 2161.9094969813827, + "y": 378.42295444026695, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.4285; latitude: 42.12858333", + "x": 1592.7731725829594, + "y": 500.4276705686484, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −161.8379975; latitude: 60.77977639", + "x": 228.39188572823082, + "y": 1257.2373756032457, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.64012083; latitude: 41.80306778", + "x": 1893.1497202282808, + "y": 474.9090299896998, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.5956389; latitude: 41.87402778", + "x": 930.6031648731737, + "y": 520.6804098463385, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.3019561; latitude: 47.52998917", + "x": 300.23596614736755, + "y": 107.14905357328189, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.61873056; latitude: 36.86330139", + "x": 1074.1730236622352, + "y": 794.3286049004055, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.0567681; latitude: 35.43359806", + "x": 258.83919902340335, + "y": 755.0619610875328, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.06799861; latitude: 30.62646944", + "x": 1580.414238412458, + "y": 1111.1139258101239, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.44536361; latitude: 38.84003306", + "x": 1609.5561331004408, + "y": 673.2913006772442, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.41558333; latitude: 47.24902778", + "x": 1388.0580625860787, + "y": 246.50196714181948, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.3940536; latitude: 35.70004194", + "x": 997.1096363200086, + "y": 852.2191884335814, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.63744444; latitude: 30.97152778", + "x": 1731.6563845016399, + "y": 1077.5028954513598, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.06616722; latitude: 35.17753417", + "x": 1644.9895243702397, + "y": 864.2632307614435, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.97961361; latitude: 42.20848278", + "x": 1989.7700283732938, + "y": 433.86337824439215, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −149.8138975; latitude: 61.53556806", + "x": 334.4920206868634, + "y": 1246.3048392024982, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −68.82813889; latitude: 44.80744444", + "x": 2218.1829765401394, + "y": 235.03815028372674, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −68.3615; latitude: 44.44969444", + "x": 2240.154932043207, + "y": 248.10299630049713, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.39377778; latitude: 31.71383333", + "x": 1825.6494327734567, + "y": 1025.7384903302407, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −104.2594475; latitude: 46.34763639", + "x": 925.39230503517, + "y": 284.467592552327, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.75354972; latitude: 33.56294306", + "x": 1624.2502659069055, + "y": 952.0087445934862, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −71.57784167; latitude: 41.16811889", + "x": 2168.64504105775, + "y": 447.6662849685231, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.75411111; latitude: 40.30127778", + "x": 1194.4348917634072, + "y": 615.3268667773837, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −145.7216417; latitude: 63.99454722", + "x": 364.3263192257206, + "y": 1198.130140361952, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.3636089; latitude: 37.37309556", + "x": 311.215608656133, + "y": 662.314412980081, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −108.5428611; latitude: 45.8076625", + "x": 767.4181764105754, + "y": 295.49877553962006, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.7467222; latitude: 46.77411111", + "x": 1053.4755151282804, + "y": 270.9371429118196, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.10502778; latitude: 42.74316667", + "x": 1601.81630852515, + "y": 466.9391569946474, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −105.1172158; latitude: 39.90878667", + "x": 862.0000830432886, + "y": 618.793056443029, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.93372333; latitude: 47.50942417", + "x": 1262.2356632364747, + "y": 236.68647006445644, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.88825; latitude: 40.87480556", + "x": 1776.2762650413356, + "y": 544.0996015108994, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.89099972; latitude: 32.71904694", + "x": 1097.6961573165092, + "y": 1014.0281262876197, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.8090833; latitude: 44.83733333", + "x": 423.0047998834591, + "y": 284.18094575412624, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.68333333; latitude: 41.5175", + "x": 1779.1407080271476, + "y": 509.3608189677916, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.45542139; latitude: 28.47359722", + "x": 1847.0678376647566, + "y": 1194.2634017044522, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.12416417; latitude: 37.78732833", + "x": 1831.3619631305942, + "y": 700.7262990058823, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.81694444; latitude: 44.30483333", + "x": 1193.7615533191422, + "y": 404.33501240249507, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.20769056; latitude: 37.29579944", + "x": 1832.0093974479844, + "y": 726.9328397573192, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −114.7168764; latitude: 33.61916278", + "x": 419.1878225902982, + "y": 888.9848554892872, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.5375278; latitude: 48.79275", + "x": 310.2344110108114, + "y": 41.85905769568399, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.12488694; latitude: 40.18691806", + "x": 2083.8261423933563, + "y": 522.1320253174244, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.83518444; latitude: 38.54517861", + "x": 1474.1223330413063, + "y": 700.1565729293045, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.0622625; latitude: 41.55239139", + "x": 602.6888756861515, + "y": 496.7393542643649, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.61668278; latitude: 39.14602139", + "x": 1601.0762186094835, + "y": 657.8821991834373, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.91595278; latitude: 40.47798556", + "x": 1503.7046598539023, + "y": 595.6926415854246, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −71.17593167; latitude: 44.57537278", + "x": 2137.506720009679, + "y": 270.3192913527455, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.23858333; latitude: 30.73894444", + "x": 1123.804504336932, + "y": 1118.8963606176703, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.21553806; latitude: 30.07044111", + "x": 1305.036494720083, + "y": 1154.3910429595733, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.67818222; latitude: 36.12447667", + "x": 1614.2569093972747, + "y": 817.0995655298314, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −134.8331414; latitude: 57.08882583", + "x": 485.86024844682777, + "y": 1301.9361007897987, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −116.8505756; latitude: 33.92307111", + "x": 332.2964728083116, + "y": 854.2507907301415, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.38833333; latitude: 33.25777778", + "x": 1857.3016293631554, + "y": 938.812698948761, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.9549789; latitude: 43.59212778", + "x": 366.06129321358605, + "y": 337.77777664488303, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.84757222; latitude: 42.04956944", + "x": 1307.3748609318363, + "y": 522.2233425775871, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −116.2227778; latitude: 43.56444444", + "x": 466.24972185655076, + "y": 362.42921823167853, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −124.2900939; latitude: 42.07455556", + "x": 148.50505351559718, + "y": 360.54960614072206, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −71.00517917; latitude: 42.3643475", + "x": 2173.878741716083, + "y": 380.98124749132876, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.78344167; latitude: 27.9433575", + "x": 1881.865269234399, + "y": 1217.121350372066, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −110.1111531; latitude: 42.58506972", + "x": 685.654893212602, + "y": 454.8796509154604, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.47052806; latitude: 36.36894194", + "x": 1371.6591154054088, + "y": 820.5819425407908, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.02069444; latitude: 29.95083333", + "x": 1313.9834093324591, + "y": 1160.4846390834919, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.46630556; latitude: 31.25902778", + "x": 1869.9737761109059, + "y": 1043.3000512163107, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −67.12944444; latitude: 18.49486111", + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.1372275; latitude: 46.39785806", + "x": 1291.719718946929, + "y": 294.1790120195419, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.12550556; latitude: 40.783225", + "x": 1415.8183792069992, + "y": 585.077306913674, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.42586111; latitude: 25.90683333", + "x": 1156.4950479110205, + "y": 1371.8286505361716, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −156.7660019; latitude: 71.2854475", + "x": 281.4178602776132, + "y": 1069.4069681734288, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.49963806; latitude: 37.81432167", + "x": 1653.5220154276822, + "y": 723.1698880744511, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −69.01225; latitude: 44.40966667", + "x": 2217.479295176139, + "y": 256.9962809427475, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −143.5770444; latitude: 70.13390278", + "x": 363.87884852455903, + "y": 1085.2437066911073, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.25147972; latitude: 42.30727806", + "x": 1636.8413259247186, + "y": 486.22460995471056, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.49746; latitude: 45.95479528", + "x": 625.9782257135824, + "y": 265.9362323762407, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.74313889; latitude: 45.81522222", + "x": 1160.615151242573, + "y": 324.70930145071725, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.94972417; latitude: 40.77692611", + "x": 1852.2942024973545, + "y": 537.1691503697216, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.14963444; latitude: 30.53316083", + "x": 1442.4623891768679, + "y": 1125.311582716264, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −151.5280556; latitude: 66.91528667", + "x": 315.9215788403835, + "y": 1148.4633440279663, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.1503125; latitude: 44.47300361", + "x": 2067.620073093177, + "y": 293.77038887623803, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −116.7870036; latitude: 36.86105722", + "x": 368.642312593322, + "y": 703.361938892871, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.14975; latitude: 41.77669444", + "x": 1102.2217399967412, + "y": 535.5328526711842, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.73216667; latitude: 42.94052472", + "x": 1878.8105205291329, + "y": 416.5927241309332, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.34012694; latitude: 38.28977028", + "x": 1291.8305069626492, + "y": 721.1763504266069, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.3584969; latitude: 34.20061917", + "x": 272.3540172791571, + "y": 825.3560037351763, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.47488694; latitude: 36.04854333", + "x": 1913.9250178322623, + "y": 780.1468389527442, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.39142556; latitude: 40.77248083", + "x": 1835.2076366244683, + "y": 540.2795451791048, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −161.1519778; latitude: 65.98228611", + "x": 244.73327391969508, + "y": 1162.9635570153357, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.05575972; latitude: 41.72857778", + "x": 1144.552965286446, + "y": 539.2314649902783, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.01115167; latitude: 36.76247611", + "x": 1223.8180539224336, + "y": 802.5166449358558, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.4208611; latitude: 48.47088889", + "x": 309.5738889169286, + "y": 59.00892406975845, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.64736083; latitude: 35.726105", + "x": 1407.565012023731, + "y": 853.0926620760454, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −70.91651833; latitude: 42.58417111", + "x": 2174.1468336225125, + "y": 368.910855592153, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −115.5169325; latitude: 32.9931", + "x": 378.51977549852097, + "y": 914.3725072281386, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.95649528; latitude: 31.79362222", + "x": 1093.3143900941523, + "y": 1062.6241195153025, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.41967917; latitude: 36.96451667", + "x": 1620.5668938321664, + "y": 771.8461590022321, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.66819833; latitude: 39.17540167", + "x": 1996.1643175694444, + "y": 596.1720184870214, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.6056825; latitude: 46.24640083", + "x": 1202.3020508094357, + "y": 302.68105649792005, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.86496444; latitude: 30.81368639", + "x": 1499.2282681384195, + "y": 1107.2789252655157, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.00397917; latitude: 33.04093056", + "x": 1832.5042285329143, + "y": 954.1318071573066, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.6863; latitude: 33.42088556", + "x": 503.7507982170829, + "y": 915.5569498511993, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −141.113375; latitude: 64.07830278", + "x": 400.52431632679543, + "y": 1190.7568196330042, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −106.7217897; latitude: 44.38108528", + "x": 825.026226223419, + "y": 377.9183195348105, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −113.7715442; latitude: 42.54260361", + "x": 546.9826612858184, + "y": 433.66898462161316, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.1530072; latitude: 45.77690139", + "x": 672.8270211353406, + "y": 283.2448029651259, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.73708361; latitude: 41.248645", + "x": 1429.7059713399112, + "y": 559.7294757981663, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −147.9918889; latitude: 60.07730556", + "x": 352.72519617186373, + "y": 1271.804000675298, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.41869444; latitude: 41.42541667", + "x": 1519.2924421842804, + "y": 544.3168265233558, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.67591083; latitude: 40.48820611", + "x": 1473.7398826819017, + "y": 597.2685801897364, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.52934222; latitude: 42.03111083", + "x": 1396.8659457856406, + "y": 520.077849853868, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.84047222; latitude: 41.4775", + "x": 1541.503779713137, + "y": 539.7154620009173, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.50793528; latitude: 42.7419525", + "x": 1357.7316885787213, + "y": 484.2215644559028, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.53073222; latitude: 43.11424444", + "x": 1470.037773632163, + "y": 458.7019402244059, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.2672725; latitude: 40.48578389", + "x": 1529.2036353967856, + "y": 593.2878688035664, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.98322194; latitude: 43.52589944", + "x": 1451.5018841063804, + "y": 438.21237764208945, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.48309278; latitude: 43.5600925", + "x": 1470.2373072089244, + "y": 435.17277294510586, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.30464; latitude: 42.69056389", + "x": 1518.3257319359125, + "y": 477.47004933442213, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.68137528; latitude: 41.37756167", + "x": 1548.134429809873, + "y": 544.4329641942027, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.26080833; latitude: 41.47271639", + "x": 1641.447604857477, + "y": 529.9996947021027, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.30050417; latitude: 41.36513333", + "x": 1601.786646296979, + "y": 539.9908923269354, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.63110722; latitude: 40.92970444", + "x": 1434.7887318662501, + "y": 576.308308919341, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.05288167; latitude: 31.29600472", + "x": 1444.7265379144292, + "y": 1085.0833426843342, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.44621333; latitude: 41.83369889", + "x": 1477.8928620324843, + "y": 525.801325002838, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.38642222; latitude: 41.01928583", + "x": 1483.1910173629103, + "y": 568.5142241872481, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.83651833; latitude: 42.32268639", + "x": 1499.5019586647504, + "y": 498.3889586065834, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.2938139; latitude: 36.16313889", + "x": 217.8906103394968, + "y": 704.8707084080995, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.07408806; latitude: 42.32461111", + "x": 1528.7213814101062, + "y": 495.96282365483876, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.6258219; latitude: 37.8284525", + "x": 187.46908382729475, + "y": 605.5314442489178, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.1280125; latitude: 41.99293417", + "x": 1605.0421983946435, + "y": 506.3585319461613, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.41892694; latitude: 44.27531333", + "x": 1618.9354544791536, + "y": 384.0256360328067, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.11953944; latitude: 33.93884", + "x": 1863.252335031054, + "y": 901.5321354727987, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −107.5216467; latitude: 40.49522139", + "x": 770.6236621258686, + "y": 577.6694101496096, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.44246556; latitude: 40.91631194", + "x": 1793.2447331595693, + "y": 539.3040748298454, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.1546583; latitude: 36.44585972", + "x": 926.0484310655543, + "y": 808.0226997135451, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −68.01791667; latitude: 46.8715", + "x": 2215.6430656471466, + "y": 123.12615921601173, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.75890944; latitude: 42.74194389", + "x": 1309.936675541133, + "y": 485.6639850466786, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.76086361; latitude: 39.61541667", + "x": 1909.387678257477, + "y": 589.3825927367343, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.75997222; latitude: 41.25947222", + "x": 1233.6535851245387, + "y": 564.8351815881938, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.26464361; latitude: 45.55854639", + "x": 1324.5655853874443, + "y": 337.28245241936975, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.0465719; latitude: 39.42753083", + "x": 1022.1876432610334, + "y": 656.2501344522718, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.6875897; latitude: 34.11154056", + "x": 299.3496889553152, + "y": 836.5550059571608, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.77027778; latitude: 33.31208333", + "x": 1711.2345328381682, + "y": 955.9043399493557, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.0568972; latitude: 37.98965639", + "x": 172.77097318249253, + "y": 592.5851127536976, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.61077833; latitude: 43.07260861", + "x": 1353.182407959912, + "y": 466.9623771790998, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −162.7242628; latitude: 55.20559972", + "x": 207.13800987125651, + "y": 1357.798649748972, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −113.098575; latitude: 37.70097028", + "x": 526.5902389044765, + "y": 689.9705339355194, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.76339528; latitude: 33.62279917", + "x": 1364.3720293961153, + "y": 965.9380512617922, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.57759528; latitude: 39.97504417", + "x": 1795.5198210306867, + "y": 589.2567985316891, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.04984361; latitude: 29.137745", + "x": 1815.1932393489124, + "y": 1163.676081997982, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.56486111; latitude: 34.28358333", + "x": 1883.9234003942802, + "y": 879.783975976409, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.0954167; latitude: 42.83755556", + "x": 953.6942764980689, + "y": 471.5329847447001, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −145.4776503; latitude: 60.49183389", + "x": 374.50800259904105, + "y": 1261.7413930442572, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.28135667; latitude: 40.87522278", + "x": 2069.55032789487, + "y": 488.13247245488037, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −124.2365333; latitude: 41.78015722", + "x": 145.93633714078646, + "y": 376.0012482863426, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.53425833; latitude: 42.19826389", + "x": 2119.1509145655186, + "y": 404.29063811371134, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.92488889; latitude: 40.61791667", + "x": 1187.8387350676442, + "y": 598.5427296185001, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −144.7832908; latitude: 65.57380667", + "x": 367.7840948534249, + "y": 1168.4689175681938, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.88644444; latitude: 34.67205556", + "x": 1782.5739730445696, + "y": 874.3844393080658, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.13124528; latitude: 39.69803139", + "x": 1657.1535360761127, + "y": 622.5424247272872, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.52211111; latitude: 30.77883333", + "x": 1648.8142635394736, + "y": 1096.8005793530765, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.37277722; latitude: 36.66458333", + "x": 1541.2447615954447, + "y": 794.966597757224, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −108.6280658; latitude: 37.30299778", + "x": 704.9505019620968, + "y": 739.3889055251602, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.33136111; latitude: 30.71569444", + "x": 1209.402917101042, + "y": 1121.2742233218983, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.91986361; latitude: 39.97562861", + "x": 1584.7568496378644, + "y": 615.4182164772901, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −164.2856325; latitude: 60.14922556", + "x": 204.99245450288126, + "y": 1265.7309575729932, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −109.2103453; latitude: 32.95284306", + "x": 649.3316917707713, + "y": 963.6161211942965, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.57189417; latitude: 37.0940475", + "x": 1241.9888893856291, + "y": 784.9478222345085, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −133.1478011; latitude: 55.47883139", + "x": 510.97439691361893, + "y": 1325.0723822977302, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.57130556; latitude: 28.86727778", + "x": 1838.8779048638921, + "y": 1174.6509353392987, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.03036111; latitude: 38.53930556", + "x": 2028.2760696099172, + "y": 623.7967353496697, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.48635389; latitude: 41.56512389", + "x": 1786.3336207215323, + "y": 505.71941936777193, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.57075167; latitude: 37.22531694", + "x": 1489.540016285875, + "y": 769.0723610712275, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.92230556; latitude: 38.98058333", + "x": 1988.209231081643, + "y": 608.3143769020157, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.60791167; latitude: 41.85884389", + "x": 1548.7479093747388, + "y": 518.8884358907212, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.7668333; latitude: 32.95488889", + "x": 539.023011867014, + "y": 946.5599717359735, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.20378778; latitude: 35.03526833", + "x": 1682.2129138047057, + "y": 867.7458772655027, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.8111389; latitude: 33.26908333", + "x": 539.8569562533169, + "y": 929.91105454945, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.96618361; latitude: 35.09614694", + "x": 1140.7766845561325, + "y": 889.7038046489465, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.45286111; latitude: 38.13863889", + "x": 1935.8218168062685, + "y": 663.8868689778437, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −144.6107836; latitude: 65.48547222", + "x": 369.3078930657186, + "y": 1169.8872082332916, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.04050583; latitude: 32.89864639", + "x": 1918.330028751169, + "y": 948.0839699500193, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.49568056; latitude: 39.78215278", + "x": 1324.1104540961285, + "y": 641.5592015962159, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.50394639; latitude: 43.59635861", + "x": 1393.9473640891888, + "y": 437.68712691573364, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.8584231; latitude: 39.79538278", + "x": 206.2331414470341, + "y": 502.82492991055324, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.71087222; latitude: 41.88458833", + "x": 1390.2116376325828, + "y": 528.1199944072864, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.1662136; latitude: 47.82528056", + "x": 654.3809631649228, + "y": 171.8918426029718, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −143.7359492; latitude: 66.64969083", + "x": 372.6165341980467, + "y": 1147.8719018159843, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.789; latitude: 42.04619444", + "x": 1271.036471723118, + "y": 523.0443754703078, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.21961111; latitude: 37.06447222", + "x": 1504.609608326235, + "y": 776.547784416121, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.47238528; latitude: 46.25075194", + "x": 1641.5519041009798, + "y": 277.18780720643144, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.85885528; latitude: 38.5267075", + "x": 1955.7278968575577, + "y": 639.2197383271002, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −158.1371178; latitude: 61.86902194", + "x": 262.4843259913793, + "y": 1240.2109367974626, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.22808333; latitude: 39.29663889", + "x": 1854.4231077135146, + "y": 616.1309148526905, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.38313889; latitude: 47.83830556", + "x": 1423.092348981289, + "y": 213.923833244884, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.77391667; latitude: 31.98883333", + "x": 1763.1504681141948, + "y": 1019.6856372636139, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.85697222; latitude: 33.71722222", + "x": 1918.9415430075287, + "y": 904.2082988409807, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.51231611; latitude: 34.29971", + "x": 1459.6592379310946, + "y": 925.8170316052592, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.62162028; latitude: 47.84169417", + "x": 1202.2673779495879, + "y": 219.5521245775608, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.55613889; latitude: 42.73147222", + "x": 1241.24999366816, + "y": 487.185869856311, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −145.7267042; latitude: 60.54390333", + "x": 372.1673556529281, + "y": 1261.0733834486632, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.41495361; latitude: 36.62188083", + "x": 1581.1502671201995, + "y": 793.8203505014758, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −141.9522792; latitude: 64.07133833", + "x": 393.9545764211025, + "y": 1192.1349127562469, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.278727; latitude: 33.127231", + "x": 304.9678254779176, + "y": 891.1065245385419, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.84939667; latitude: 41.41089417", + "x": 1773.5870958236335, + "y": 515.887950304681, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.73126667; latitude: 44.61381306", + "x": 1494.329744723917, + "y": 377.91406538631736, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.932695; latitude: 35.53832778", + "x": 1100.4599794732096, + "y": 865.3006072216469, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.36382417; latitude: 30.58858944", + "x": 1207.9197620009631, + "y": 1127.9400181022056, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −123.4996944; latitude: 48.12019444", + "x": 268.06112579134583, + "y": 65.8528164415834, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −158.5452331; latitude: 58.84230472", + "x": 255.17043534725582, + "y": 1295.5239488165053, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.9792967; latitude: 46.67649194", + "x": 264.6203157819773, + "y": 143.16782367144924, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.94312583; latitude: 35.21401111", + "x": 1860.1454018216073, + "y": 833.8699972911286, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.75874028; latitude: 27.97668639", + "x": 1836.814704862552, + "y": 1221.9175169079813, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.0943264; latitude: 34.21375472", + "x": 241.80125935632873, + "y": 817.1944321607975, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.89188278; latitude: 39.99798528", + "x": 1743.6444501220642, + "y": 595.5979467818775, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.27805556; latitude: 40.03925", + "x": 1530.6938622790526, + "y": 616.8346411395428, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.48906083; latitude: 47.16841722", + "x": 1492.763250500424, + "y": 244.03674079688244, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.7378975; latitude: 43.95834806", + "x": 1421.7749350056388, + "y": 417.20067036327146, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.35968028; latitude: 41.01962389", + "x": 1327.714790240876, + "y": 576.0712998655572, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.36867667; latitude: 43.37043194", + "x": 2110.1424297048516, + "y": 342.8863111916653, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.65231667; latitude: 39.54925139", + "x": 1158.1971933773941, + "y": 654.608797042557, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −104.2632778; latitude: 32.33747222", + "x": 861.1210665120644, + "y": 1020.2484377895207, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.6366111; latitude: 33.97469444", + "x": 299.85666189569963, + "y": 844.0840817924309, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.4640556; latitude: 41.07747222", + "x": 971.4248777061825, + "y": 565.8522205001318, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.48506444; latitude: 37.66879722", + "x": 1245.4157114127622, + "y": 754.5424002373918, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.07413889; latitude: 31.63783139", + "x": 1176.599863580061, + "y": 1072.5844178985433, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −109.7548439; latitude: 38.75495611", + "x": 669.9936068765527, + "y": 656.9923329639448, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −109.0237961; latitude: 44.52019417", + "x": 740.7917164083987, + "y": 359.9808498661687, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −116.8196231; latitude: 47.77429167", + "x": 492.09347347426365, + "y": 142.6103612262964, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.6854975; latitude: 28.34158944", + "x": 1928.8915743616885, + "y": 1188.7187682333497, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.40361111; latitude: 31.84113889", + "x": 1073.6054203122715, + "y": 1059.4638469914382, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −71.50228556; latitude: 43.20273278", + "x": 2144.1609309216938, + "y": 343.1998811872131, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.50552861; latitude: 46.70016833", + "x": 1350.1920216191343, + "y": 276.7455025238055, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −104.70025; latitude: 38.80580556", + "x": 873.1918729523684, + "y": 678.4022857827415, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.22016389; latitude: 28.45825583", + "x": 1075.7155509575887, + "y": 1236.9993686728171, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.21962917; latitude: 38.81809306", + "x": 1376.9814402260895, + "y": 690.7959612887244, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.71499278; latitude: 34.27287278", + "x": 1962.2561857967912, + "y": 866.7392680268458, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.32066389; latitude: 36.66561833", + "x": 2037.1225765413055, + "y": 723.1830867615297, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.2436831; latitude: 33.89001611", + "x": 273.3522249118622, + "y": 842.4433295834137, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −106.4644661; latitude: 42.90835556", + "x": 826.0592777388669, + "y": 455.9646885548709, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.15622111; latitude: 38.57072444", + "x": 1461.0455655336953, + "y": 699.6304490051155, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −65.30432444; latitude: 18.31328917", + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.56011111; latitude: 40.48408333", + "x": 1674.8061785305738, + "y": 578.6423299674925, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.82027306; latitude: 35.72381556", + "x": 1189.7281127011472, + "y": 857.262106373556, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −69.98952417; latitude: 41.68840028", + "x": 2221.1498662706854, + "y": 404.94949284735685, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −144.0758128; latitude: 65.83049389", + "x": 372.39645796461895, + "y": 1163.0529758912046, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.72394444; latitude: 33.81175", + "x": 1966.2760304928656, + "y": 890.73609976138, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.51444444; latitude: 30.33633333", + "x": 1875.2060840351255, + "y": 1091.506342275916, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.5948469; latitude: 36.10245111", + "x": 245.45141287107504, + "y": 715.2766343695946, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.50121528; latitude: 27.77036083", + "x": 1154.4437590630118, + "y": 1274.8646302815152, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.2802222; latitude: 33.12822222", + "x": 304.91590916805296, + "y": 891.0411284420652, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.39803611; latitude: 32.02748861", + "x": 1206.6978773655842, + "y": 1052.3220847199693, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.88018806; latitude: 33.17833278", + "x": 1403.5940597527874, + "y": 987.8682610634587, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.59318972; latitude: 38.37315083", + "x": 1807.6931064696707, + "y": 673.0556620570705, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.60348361; latitude: 34.91496778", + "x": 1538.863927616847, + "y": 887.8883254758673, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.1620833; latitude: 40.30658333", + "x": 1059.6161274772978, + "y": 611.558963538437, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.93886111; latitude: 32.51633333", + "x": 1708.825581340409, + "y": 998.4013942153524, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.20049944; latitude: 35.33983917", + "x": 1088.8040790743798, + "y": 875.415198327428, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.36331917; latitude: 41.02146139", + "x": 1288.4010656445428, + "y": 576.8589834897343, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.08497806; latitude: 35.95129194", + "x": 1681.6851318368733, + "y": 819.0978017624077, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.3761464; latitude: 48.60835444", + "x": 654.0187392673292, + "y": 130.59933505375875, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.15202778; latitude: 33.63102778", + "x": 1692.838836979558, + "y": 941.1207767437343, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.07484; latitude: 40.56909444", + "x": 1457.758723010761, + "y": 594.0185838162263, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.10475; latitude: 29.63552778", + "x": 1809.17876854929, + "y": 1138.1989921038785, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.36461528; latitude: 34.97561194", + "x": 1970.2010268221106, + "y": 827.5308227915864, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.99525; latitude: 33.97047222", + "x": 1868.2827796118681, + "y": 899.045128421312, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.77305278; latitude: 35.949925", + "x": 1191.8143559691448, + "y": 845.3315517353278, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.12306111; latitude: 38.08947917", + "x": 1545.3623679012117, + "y": 719.0436280954084, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.6176947; latitude: 43.73331611", + "x": 937.5922999950778, + "y": 423.0035403504703, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.6621725; latitude: 39.04614278", + "x": 1679.8492009194001, + "y": 654.5722529423276, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.56264111; latitude: 36.26487139", + "x": 1409.8011143263343, + "y": 824.4877198601566, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.0792778; latitude: 34.42513889", + "x": 921.2415015753892, + "y": 914.7033049501492, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −123.2898297; latitude: 44.49719361", + "x": 221.57312410094607, + "y": 249.41547637530448, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.27477778; latitude: 45.30477778", + "x": 1618.2084126125646, + "y": 329.76537609027764, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.66677944; latitude: 44.77761917", + "x": 1459.056509921842, + "y": 371.8258059366058, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.14318944; latitude: 30.21059167", + "x": 1353.3324948568263, + "y": 1145.8611810971609, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.32913056; latitude: 41.8311125", + "x": 1443.7785187329125, + "y": 528.134975958098, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.86955556; latitude: 32.19505556", + "x": 1844.9012780060605, + "y": 997.3213272462331, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −144.4270969; latitude: 61.58285917", + "x": 380.9842469927114, + "y": 1240.5977610517534, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.50155361; latitude: 36.78833556", + "x": 1946.9396475295903, + "y": 734.4368796767221, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −150.2065672; latitude: 67.25163417", + "x": 325.0984444161933, + "y": 1141.8901119625712, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −115.5133281; latitude: 32.66950333", + "x": 375.19849902059536, + "y": 931.0930761502871, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.4144675; latitude: 30.35183333", + "x": 1250.6898982440136, + "y": 1140.3118072370296, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.7343611; latitude: 39.19222972", + "x": 280.1530691063673, + "y": 555.5537555695619, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.23680556; latitude: 31.21291667", + "x": 1747.8909886795218, + "y": 1062.7436390248997, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.85147222; latitude: 40.21713889", + "x": 1977.9294436024938, + "y": 543.713302410385, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.98215361; latitude: 39.51600611", + "x": 1743.568059289181, + "y": 621.3220595269026, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −104.8118381; latitude: 41.1557225", + "x": 880.1964749236786, + "y": 554.3612245837894, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.15721417; latitude: 39.38713889", + "x": 1177.893238600198, + "y": 663.4693017526126, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.0042222; latitude: 40.86911111", + "x": 1067.109173163761, + "y": 582.1435516074416, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.09633306; latitude: 42.07853583", + "x": 1986.7971193791852, + "y": 441.50225225147915, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.93949944; latitude: 34.45678278", + "x": 1696.9191135780013, + "y": 896.792032007879, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −142.0483742; latitude: 62.07118972", + "x": 399.77577388350323, + "y": 1228.4275618630475, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.82363444; latitude: 28.52225111", + "x": 1048.0220559925244, + "y": 1232.62750459143, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.4280806; latitude: 46.18699111", + "x": 954.7574589888239, + "y": 295.3176851576036, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.4372222; latitude: 47.65594444", + "x": 1031.2797738463928, + "y": 223.75679651751352, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.0198803; latitude: 45.03609417", + "x": 1001.9639074198666, + "y": 359.05311008077615, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.4171361; latitude: 48.83039167", + "x": 1070.2904848004823, + "y": 164.77503257414583, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.21864028; latitude: 43.62080278", + "x": 1216.0305082957273, + "y": 440.4058291349543, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.99115556; latitude: 42.66010111", + "x": 1871.7286160661927, + "y": 432.89708300405255, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.88233333; latitude: 46.12197222", + "x": 1446.5489199338574, + "y": 302.09742415601386, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.32162639; latitude: 42.90718611", + "x": 1931.9555864664012, + "y": 408.2086519994691, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.99893444; latitude: 44.23107", + "x": 1261.7202543188585, + "y": 408.1431004490282, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.2972514; latitude: 48.92851556", + "x": 970.4312090346273, + "y": 153.52743870513814, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.39333694; latitude: 48.75301778", + "x": 1140.7224303094422, + "y": 171.30661686760232, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.8601556; latitude: 46.81278306", + "x": 1013.5800059174576, + "y": 266.68863026323424, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.8979853; latitude: 48.3805325", + "x": 982.2375562062231, + "y": 182.8689879904873, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.69355389; latitude: 33.78149889", + "x": 1754.478765033669, + "y": 925.5804955912618, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.61224889; latitude: 42.92228111", + "x": 1883.4800753269126, + "y": 416.70870921796677, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.91338389; latitude: 45.42556528", + "x": 1630.6864636921096, + "y": 321.95863919505473, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.27244444; latitude: 43.06703333", + "x": 1707.0398938288365, + "y": 437.1822429362105, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.97526583; latitude: 42.79699083", + "x": 1720.1847045597385, + "y": 449.74193976945116, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.05805556; latitude: 29.17991667", + "x": 1905.033003996255, + "y": 1148.1679194200283, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −116.7866875; latitude: 34.85371333", + "x": 345.642573794132, + "y": 806.9026488133543, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.85177222; latitude: 32.84711389", + "x": 1187.0409061273533, + "y": 1009.0407232331529, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.33611111; latitude: 36.57286111", + "x": 1914.8234746317653, + "y": 751.8484881308641, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −70.92925472; latitude: 43.28406194", + "x": 2164.066517409232, + "y": 333.45814725133505, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.219375; latitude: 39.90237583", + "x": 1691.9567871644094, + "y": 607.5000937175528, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.98525556; latitude: 32.56445806", + "x": 1793.5642267647027, + "y": 985.0564932921097, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.70916722; latitude: 42.40295944", + "x": 1427.407001070484, + "y": 498.87953517755705, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.03772222; latitude: 38.85208333", + "x": 1984.9956558710646, + "y": 615.8978835623848, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −156.9046739; latitude: 66.94333806", + "x": 277.1492513579079, + "y": 1147.8256748849924, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.94536778; latitude: 34.65264667", + "x": 1610.50914821856, + "y": 895.573717713688, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.12973222; latitude: 38.70042333", + "x": 1582.7312431473117, + "y": 683.3153266818504, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.96542389; latitude: 37.76312194", + "x": 1061.7841647289035, + "y": 746.2219610638372, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.2464075; latitude: 42.8913325", + "x": 2083.862849212411, + "y": 375.41890352059545, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.86568917; latitude: 39.8345625", + "x": 1508.2328653104933, + "y": 629.4426572547884, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.28394167; latitude: 29.06698056", + "x": 1895.7358549591659, + "y": 1155.6113190858957, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −162.7666028; latitude: 66.06820583", + "x": 232.95908212961365, + "y": 1159.9632005282772, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.73937389; latitude: 43.27550139", + "x": 1385.8257039679786, + "y": 454.95994400386235, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −104.6670019; latitude: 39.85840806", + "x": 879.5964287810875, + "y": 623.1180018764974, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.39936556; latitude: 34.04699556", + "x": 1293.1952970337184, + "y": 945.3685575043446, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.00986111; latitude: 42.40919444", + "x": 1721.6595796594613, + "y": 470.16338733855946, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.4266667; latitude: 47.96663889", + "x": 473.3363090083882, + "y": 128.1266451160368, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.42880556; latitude: 41.3375", + "x": 1674.4794792104567, + "y": 533.2899421100342, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.0372; latitude: 32.89595056", + "x": 1178.9621580552862, + "y": 1006.3875338723383, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −105.3857361; latitude: 42.79725", + "x": 866.3918802053108, + "y": 466.0752533887785, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.44962889; latitude: 31.32133917", + "x": 1693.5087891080009, + "y": 1063.4202982610614, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.5472775; latitude: 36.022585", + "x": 949.7845750363845, + "y": 832.165507175433, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.8019528; latitude: 46.79738889", + "x": 979.7141840497263, + "y": 265.2340323831336, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.70829861; latitude: 41.93188111", + "x": 1505.9978138699996, + "y": 518.5585805146447, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.27204167; latitude: 42.49333528", + "x": 1862.6866863477894, + "y": 443.44585933060944, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.87365389; latitude: 35.96383361", + "x": 1732.1005518266302, + "y": 812.2889659790787, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −158.5033389; latitude: 59.0454125", + "x": 255.81846104377385, + "y": 1291.8242453389314, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.19364861; latitude: 46.84209028", + "x": 1361.1273517588884, + "y": 268.91742198747306, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.77090222; latitude: 43.52195389", + "x": 1459.5223334231302, + "y": 437.9029393301021, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.5525067; latitude: 45.25536056", + "x": 617.6581340514639, + "y": 301.64664556437856, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.2365039; latitude: 35.74558056", + "x": 255.45284281050044, + "y": 737.2368876186777, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.1673439; latitude: 45.61854556", + "x": 313.0321106098677, + "y": 214.22643878220197, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.11480167; latitude: 40.27970139", + "x": 1732.855027524344, + "y": 582.0581723994419, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −168.9530556; latitude: 65.75861111", + "x": 186.35240146277076, + "y": 1157.2989365926792, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −107.7206397; latitude: 32.26230917", + "x": 709.3445721506789, + "y": 1008.2107402313657, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.17611111; latitude: 38.70688889", + "x": 1338.5343306969405, + "y": 698.014990705773, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.00766667; latitude: 39.60827778", + "x": 1978.2507386525094, + "y": 576.4799270226613, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.03933917; latitude: 33.46663667", + "x": 1827.6946186585574, + "y": 932.1611143694508, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.86910806; latitude: 34.72174833", + "x": 1698.2790264993914, + "y": 882.5496209264418, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.38072083; latitude: 41.9864325", + "x": 1248.2119289170976, + "y": 526.4156636407411, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.59553528; latitude: 40.19946861", + "x": 1556.9614500130688, + "y": 606.1052059740916, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.46631028; latitude: 39.1301125", + "x": 2043.9400910514842, + "y": 588.4505196632476, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.24841722; latitude: 41.90688333", + "x": 1523.8345934665638, + "y": 518.4665394300087, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.981695; latitude: 35.00006444", + "x": 1985.961580800798, + "y": 823.2252153491511, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.85961556; latitude: 31.47780833", + "x": 1806.9042399859854, + "y": 1040.9267869613523, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.33963889; latitude: 30.83152778", + "x": 1343.5487850818863, + "y": 1113.5498436697808, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −107.7537692; latitude: 37.15151667", + "x": 739.7277924679668, + "y": 751.9494235569848, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.9232339; latitude: 29.37181222", + "x": 999.6739988979027, + "y": 1185.9282205454876, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.66068222; latitude: 41.53493306", + "x": 1315.2563413260189, + "y": 549.1904873479175, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.71305083; latitude: 42.57089972", + "x": 1920.6982873005895, + "y": 428.4800617244914, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.5096683; latitude: 39.38328861", + "x": 565.7458924134714, + "y": 606.6150809886642, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.8856875; latitude: 46.82520861", + "x": 1228.3932934985075, + "y": 272.53589010047335, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.7450225; latitude: 32.54021889", + "x": 1323.247122966184, + "y": 1024.19703849054, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.19797722; latitude: 33.20072167", + "x": 1172.1399550633973, + "y": 990.2465643372868, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.47147722; latitude: 30.40006111", + "x": 1653.0641477829304, + "y": 1116.3516048806496, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.34883583; latitude: 42.21205889", + "x": 1710.137455120852, + "y": 482.2134425043323, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.39451806; latitude: 33.942265", + "x": 1207.2720522657978, + "y": 951.4387077842482, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.95986111; latitude: 34.470875", + "x": 1140.3644673293195, + "y": 922.7151801641046, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −109.6036667; latitude: 31.46902778", + "x": 621.189551022592, + "y": 1038.4939382195166, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.89869778; latitude: 41.17826611", + "x": 1889.1956233516012, + "y": 509.1520331260458, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −166.5435; latitude: 53.90013889", + "x": 163.23667359257354, + "y": 1374.9171136223804, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.0130978; latitude: 35.85792833", + "x": 971.5989015503446, + "y": 842.3290266924121, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −162.8817231; latitude: 59.95950583", + "x": 217.15155826437814, + "y": 1271.024349405846, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.76969444; latitude: 37.57791667", + "x": 1684.700194916343, + "y": 732.1717067511934, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.90877833; latitude: 48.11424528", + "x": 1121.7186605039112, + "y": 203.9005689187843, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.58832528; latitude: 41.6102775", + "x": 1434.4201683418053, + "y": 540.3506429361851, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.5572167; latitude: 38.14351944", + "x": 155.34767854854863, + "y": 579.1782029255387, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.0825614; latitude: 33.68831667", + "x": 531.9415160094367, + "y": 906.1520711040939, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.55277778; latitude: 30.06186111", + "x": 1244.523469077568, + "y": 1155.551332514329, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.738; latitude: 38.5545", + "x": 1760.314206470112, + "y": 670.310565201886, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.94117333; latitude: 36.77747", + "x": 1475.7867656218195, + "y": 793.704854690857, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.48219056; latitude: 41.37153528", + "x": 2093.9302714884825, + "y": 455.42895526923667, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.17773611; latitude: 44.98624", + "x": 1217.7082065217921, + "y": 368.7036369831858, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.27933333; latitude: 33.06344444", + "x": 1906.6098009966229, + "y": 941.2504773142873, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.12233833; latitude: 40.33305028", + "x": 2043.598683630715, + "y": 523.415919265969, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.40608333; latitude: 35.99850694", + "x": 1500.8186129811438, + "y": 833.2996833042671, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.04343889; latitude: 46.72186083", + "x": 1366.785601385728, + "y": 274.9621965157494, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.9090428; latitude: 31.58246583", + "x": 917.6379453943487, + "y": 1064.6144608081142, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.2404708; latitude: 32.45679139", + "x": 906.4570162565335, + "y": 1017.6519285379461, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −107.1979339; latitude: 32.66106083", + "x": 734.6681665411202, + "y": 990.1312093230254, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.4087778; latitude: 32.95394444", + "x": 901.1229338707411, + "y": 990.9776916580649, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.2768939; latitude: 33.26122278", + "x": 908.1027311177547, + "y": 975.2765143314884, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.5295278; latitude: 32.33111111", + "x": 937.1582590074136, + "y": 1026.5135658114057, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.55527861; latitude: 33.11022222", + "x": 1112.946264351866, + "y": 993.8479244616062, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.4321894; latitude: 36.23372611", + "x": 997.1162806845173, + "y": 823.9717917413768, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −109.9867658; latitude: 33.81255056", + "x": 622.4227180471585, + "y": 913.9509522602316, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.7985128; latitude: 33.96891833", + "x": 504.03744427536947, + "y": 886.2518387539544, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.1548506; latitude: 32.13107833", + "x": 908.9188132289853, + "y": 1035.0323473433737, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −106.1471978; latitude: 31.51567306", + "x": 774.0039708074713, + "y": 1055.216807445258, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.6835833; latitude: 30.38422222", + "x": 878.2508805660161, + "y": 1124.6995108640774, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.1945; latitude: 36.221", + "x": 1007.0091873545052, + "y": 825.1990710915002, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −113.170195; latitude: 34.59585278", + "x": 494.21769938115835, + "y": 850.8582672819987, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.3990931; latitude: 35.23199833", + "x": 953.1776774700933, + "y": 874.2627111157938, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.58679; latitude: 32.80700583", + "x": 545.5054302980268, + "y": 955.53697051424, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.6782181; latitude: 32.95810083", + "x": 499.8380673487793, + "y": 939.6342441094898, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −106.8336958; latitude: 34.64519778", + "x": 762.4242354640523, + "y": 888.0271924423998, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −104.1880314; latitude: 35.36671583", + "x": 878.1669155713791, + "y": 861.3585911392759, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −109.5754222; latitude: 36.11088056", + "x": 657.2759028150906, + "y": 796.3950092148423, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −108.8672858; latitude: 33.35283972", + "x": 667.0152215727544, + "y": 944.7771022662866, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −110.3572222; latitude: 31.99972222", + "x": 592.2297254628334, + "y": 1005.9901284210569, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −141.1509206; latitude: 64.77639306", + "x": 397.7675353404362, + "y": 1178.2483516648656, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −104.9327492; latitude: 42.05552528", + "x": 879.9441849228054, + "y": 506.65690097660126, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.00677778; latitude: 40.72702778", + "x": 1106.0079329686748, + "y": 591.0867142254156, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.2068333; latitude: 47.39886111", + "x": 370.45325253436215, + "y": 133.32926651647995, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.48507194; latitude: 44.86525722", + "x": 1391.4942976441362, + "y": 371.0816134356628, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.86886111; latitude: 42.43663889", + "x": 1306.0956644966782, + "y": 501.8424831341358, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.17459778; latitude: 36.26057417", + "x": 2047.5018654897399, + "y": 742.8747596761857, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −104.3179178; latitude: 43.88545056", + "x": 912.0032069816933, + "y": 412.8271400309236, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.56709333; latitude: 36.027735", + "x": 2033.9326625732306, + "y": 758.2902454813727, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.89986111; latitude: 31.29972222", + "x": 1673.6823413113293, + "y": 1066.7254056702452, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −114.6232931; latitude: 34.76619444", + "x": 434.9452297475465, + "y": 830.4090539818008, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −162.0056092; latitude: 60.21590417", + "x": 225.66132362486405, + "y": 1267.357246684467, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.27078111; latitude: 42.89839944", + "x": 2119.8751907223223, + "y": 366.0492581589592, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −107.8859067; latitude: 40.04886222", + "x": 753.413590604207, + "y": 599.2998619964226, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.78323722; latitude: 33.17781083", + "x": 1624.9358840406785, + "y": 972.3408823836544, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.8619925; latitude: 44.7342075", + "x": 932.7625619002893, + "y": 369.86414568070495, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.15875; latitude: 29.60733333", + "x": 1262.568331122567, + "y": 1179.2458164079387, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.22915833; latitude: 44.88879722", + "x": 2095.5206811984617, + "y": 264.29740349975145, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.59075583; latitude: 42.61493972", + "x": 1469.5329410035265, + "y": 485.0921546683476, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.34258333; latitude: 42.01016667", + "x": 1288.3036414747212, + "y": 524.6837996593326, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −106.9176953; latitude: 39.64256778", + "x": 789.1326330433393, + "y": 625.2309366534414, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.704675; latitude: 43.10202056", + "x": 1273.5338128266183, + "y": 467.3769040855168, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.38732333; latitude: 37.32441028", + "x": 1167.0778623826595, + "y": 772.3908698073908, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.26906778; latitude: 45.93179639", + "x": 1469.4981088972077, + "y": 310.50910743681425, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.8821258; latitude: 37.00188194", + "x": 980.8351883465411, + "y": 782.3246369287581, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.60099722; latitude: 35.25555556", + "x": 1832.249593458699, + "y": 836.006776047828, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.68569; latitude: 37.8078425", + "x": 1564.447277026603, + "y": 732.3595829545454, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −157.3809872; latitude: 58.18837472", + "x": 265.5397568044349, + "y": 1308.188021482987, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.59971722; latitude: 36.53531083", + "x": 1490.8013146923477, + "y": 805.5477492905193, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −124.1127917; latitude: 40.80338889", + "x": 135.49583120109992, + "y": 426.7157976315739, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.00168361; latitude: 41.71935833", + "x": 1611.4119355537896, + "y": 520.1987725700674, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.85713889; latitude: 38.88944444", + "x": 1872.740987509348, + "y": 634.8588056933581, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −115.7916964; latitude: 40.82492611", + "x": 452.31704791425784, + "y": 507.12009306746586, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.85613889; latitude: 36.85527778", + "x": 1685.6418628892684, + "y": 770.5324718580587, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.92377778; latitude: 37.68694444", + "x": 1636.962821190952, + "y": 731.744025753552, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.92591889; latitude: 33.31288444", + "x": 1618.0738060768863, + "y": 965.8506781036072, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.32248444; latitude: 29.60301389", + "x": 1209.6035344873621, + "y": 1179.616576986077, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.81325167; latitude: 33.2208625", + "x": 1362.9252547422311, + "y": 987.1891055907897, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −162.2700681; latitude: 64.61400972", + "x": 233.32036306757058, + "y": 1186.8613641244413, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.39425917; latitude: 35.42941083", + "x": 1080.7745474078667, + "y": 870.4021464327461, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.89144333; latitude: 42.15991361", + "x": 1955.8996268282594, + "y": 443.5514454208378, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.5306944; latitude: 47.03302778", + "x": 354.4200785734365, + "y": 148.82189995640465, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.83073056; latitude: 47.82454639", + "x": 1371.9242164479756, + "y": 217.27628609136173, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −106.3778056; latitude: 31.80666667", + "x": 765.4785066176245, + "y": 1038.9019386182374, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −136.3473928; latitude: 58.19518417", + "x": 466.051324652836, + "y": 1286.4359695262092, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −114.8418889; latitude: 39.29969444", + "x": 472.9933867549273, + "y": 593.6595483347137, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.99194806; latitude: 42.10951194", + "x": 1914.7857186348042, + "y": 454.3917854057868, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −110.5590586; latitude: 41.82494611", + "x": 662.5756822819422, + "y": 491.9042219017965, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.19116667; latitude: 38.33211111", + "x": 1216.505888719879, + "y": 719.5196971628586, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.0348453; latitude: 34.08600889", + "x": 284.49456631285204, + "y": 834.4601140699551, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.48280556; latitude: 36.68691667", + "x": 1989.5315209758928, + "y": 731.7279951093619, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −151.2475278; latitude: 60.572", + "x": 322.76679612792583, + "y": 1264.6653745301483, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.09217944; latitude: 38.51479889", + "x": 1504.3004912283423, + "y": 699.6879049398087, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −164.4910461; latitude: 62.78518639", + "x": 210.77473707658214, + "y": 1217.5664993153853, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −149.0735053; latitude: 64.54898167", + "x": 336.8174996091796, + "y": 1190.6542794137324, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −114.03089; latitude: 40.71869528", + "x": 519.0714872113954, + "y": 526.303055791509, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.92780333; latitude: 42.5957075", + "x": 1533.1149851619398, + "y": 481.25506997654065, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.42850111; latitude: 40.45990778", + "x": 1404.743050487983, + "y": 602.7248702333288, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.39169444; latitude: 36.81080556", + "x": 1291.055296828772, + "y": 799.3968030816684, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.5158889; latitude: 47.30758333", + "x": 393.15384333091436, + "y": 144.05630801626785, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −67.01269444; latitude: 44.91011111", + "x": 2280.967670165815, + "y": 210.30166426602227, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.81762778; latitude: 37.77410833", + "x": 1190.7718832739993, + "y": 748.8872877466606, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.62023444; latitude: 35.01884306", + "x": 1875.3240576646247, + "y": 841.8595422619028, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.17621556; latitude: 42.08202139", + "x": 1832.101530472615, + "y": 470.7380038805054, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.08567972; latitude: 29.976735", + "x": 1084.4970360900097, + "y": 1157.7918232641246, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.45731639; latitude: 46.31118694", + "x": 1605.7036206063858, + "y": 278.1903065920842, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.09373139; latitude: 45.72266972", + "x": 1549.5684463600533, + "y": 314.8834922237347, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.29577194; latitude: 31.3949025", + "x": 1389.1731941963064, + "y": 1082.410773454992, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.069; latitude: 38.80416667", + "x": 2023.8282793167105, + "y": 610.4268549244641, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.74641667; latitude: 43.40744444", + "x": 1271.7347508181344, + "y": 451.3256188133114, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.12792667; latitude: 43.42219444", + "x": 1521.8761444343236, + "y": 438.5311944753512, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.54663833; latitude: 35.93710083", + "x": 1994.5730718055916, + "y": 771.1267507955877, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.54353972; latitude: 45.78046056", + "x": 1204.4177802873608, + "y": 327.0549428399154, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.80975667; latitude: 32.41349167", + "x": 1100.7768161651877, + "y": 1030.2177329075573, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.128925; latitude: 31.95131917", + "x": 1703.9302583112146, + "y": 1028.9052110130483, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −123.2186856; latitude: 44.12326", + "x": 218.56801977142004, + "y": 269.0026038043179, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −116.6357778; latitude: 43.64186111", + "x": 451.8874420455793, + "y": 355.12613170019176, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.94836111; latitude: 29.05580556", + "x": 1911.0129128238345, + "y": 1153.790958599182, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.49846944; latitude: 47.42507778", + "x": 1349.0549891409805, + "y": 238.98940332966458, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.91552722; latitude: 40.35260167", + "x": 1267.171610401527, + "y": 612.489302527516, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.53062667; latitude: 38.03799139", + "x": 1569.6918344492458, + "y": 719.6787372351384, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.0321286; latitude: 41.27494528", + "x": 639.9034079108869, + "y": 517.7210367778539, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.72044444; latitude: 39.52038889", + "x": 2029.5826395038043, + "y": 570.4672489216177, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −70.95694167; latitude: 41.67614167", + "x": 2185.120653920319, + "y": 415.53654127953723, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.27522861; latitude: 38.05710528", + "x": 1172.2193490374211, + "y": 733.7188611538438, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.04294444; latitude: 35.07297222", + "x": 2024.3677727981662, + "y": 811.7346731640596, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.16866056; latitude: 40.69249722", + "x": 2076.056083181355, + "y": 496.52329188061685, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −164.6412147; latitude: 60.93865417", + "x": 204.11824545230675, + "y": 1250.8878803653145, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −135.4490328; latitude: 58.42049861", + "x": 473.2393576414071, + "y": 1280.125736899362, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.30378194; latitude: 35.78114028", + "x": 1881.9791607086959, + "y": 799.9499531210406, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.29438056; latitude: 39.83070944", + "x": 1610.2851843046092, + "y": 620.5824528716519, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.75955556; latitude: 24.55611111", + "x": 1909.212544151585, + "y": 1390.8453462480559, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.96386; latitude: 41.20520361", + "x": 1459.994336893679, + "y": 560.2239711237753, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.12802778; latitude: 32.21425", + "x": 1789.846871581184, + "y": 1004.1745517767906, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.276375; latitude: 39.72755972", + "x": 1293.0463230844996, + "y": 645.136019603791, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.17938889; latitude: 33.61172222", + "x": 1216.5142462554052, + "y": 968.900386248722, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.75926861; latitude: 34.27708306", + "x": 1062.9439564122224, + "y": 930.6170814348925, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.28375; latitude: 34.22566806", + "x": 1083.2494692705868, + "y": 934.0848236994314, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.1959481; latitude: 34.84561083", + "x": 1045.538893590122, + "y": 899.851329635522, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.62526417; latitude: 35.29593194", + "x": 1240.1560597660232, + "y": 879.9843860174553, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.01583278; latitude: 35.40687972", + "x": 1223.6116337813883, + "y": 874.155078647675, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.85172222; latitude: 32.14172222", + "x": 1274.9335611350555, + "y": 1046.0420533372132, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.15641667; latitude: 31.83158333", + "x": 1305.91784791304, + "y": 1061.8728835540235, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.43375; latitude: 32.35376389", + "x": 1161.2058024910139, + "y": 1034.7119653058899, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.5297008; latitude: 34.73958944", + "x": 1031.0651052418525, + "y": 904.7901033787064, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.27721083; latitude: 36.38559583", + "x": 1170.9509293779147, + "y": 822.0801316560833, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.29808556; latitude: 32.64601", + "x": 1342.6989535755192, + "y": 1018.1168181588619, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.00599444; latitude: 35.47163639", + "x": 1139.5047205972564, + "y": 869.8396158960184, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.82354556; latitude: 35.4880825", + "x": 1147.2309876599809, + "y": 869.126308816788, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.98973944; latitude: 34.52453278", + "x": 1181.9301811420423, + "y": 920.5276556164467, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.64249722; latitude: 33.99287639", + "x": 1196.5988157513532, + "y": 948.7104770359947, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.47391306; latitude: 34.24925806", + "x": 1160.9883683910216, + "y": 934.7857752696227, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.96702167; latitude: 35.30421917", + "x": 1098.6251410079312, + "y": 877.6164499584838, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.88063917; latitude: 27.51364889", + "x": 1880.7186099485857, + "y": 1239.9482373363319, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.67366667; latitude: 33.71411111", + "x": 1195.1516528969983, + "y": 963.4049418838638, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.66388889; latitude: 32.32969444", + "x": 1195.0649075777035, + "y": 1036.352710415153, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.82835306; latitude: 32.16384778", + "x": 1231.851044122469, + "y": 1045.176848246994, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.22148111; latitude: 26.84537306", + "x": 1962.9331528056161, + "y": 1262.1332206952095, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.43548556; latitude: 32.93059444", + "x": 1205.2614034287296, + "y": 1004.7660526794066, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.6607158; latitude: 33.48481", + "x": 978.9317976158203, + "y": 968.2910057926149, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.27886083; latitude: 32.93884556", + "x": 1255.7738635979413, + "y": 1004.2554345065137, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.2374925; latitude: 33.21530583", + "x": 1257.4635237042473, + "y": 989.6734067433961, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.8169475; latitude: 32.44441583", + "x": 1144.4406975533489, + "y": 1029.6521840892563, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.73422972; latitude: 32.91019472", + "x": 1061.1868808720735, + "y": 1002.6800081554063, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.1279722; latitude: 33.57605556", + "x": 316.58923371940125, + "y": 869.4819703389533, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.14805972; latitude: 34.39833889", + "x": 1217.9353732916595, + "y": 927.4039579514349, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.28778361; latitude: 35.42925306", + "x": 1212.1114963734062, + "y": 872.9548340952947, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.09389722; latitude: 35.28910556", + "x": 1262.6689630098715, + "y": 880.1932657570303, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.7338183; latitude: 33.72926389", + "x": 933.4050152888829, + "y": 952.4004515985355, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.33716583; latitude: 32.72495583", + "x": 1384.6351454768997, + "y": 1012.5519863675497, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.73293028; latitude: 32.20199028", + "x": 1368.26265040533, + "y": 1040.7014650490912, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.70012472; latitude: 32.15431917", + "x": 1413.8650066620614, + "y": 1041.3959123187976, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.66849028; latitude: 35.54482944", + "x": 1111.6215400099593, + "y": 865.2859631459162, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.41666667; latitude: 35.085875", + "x": 1206.5817711658788, + "y": 891.0712562563378, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −147.8596694; latitude: 64.8136775", + "x": 345.8882742776158, + "y": 1185.0266048273995, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.42859722; latitude: 37.76107917", + "x": 1452.5310312379277, + "y": 743.0284784052626, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −169.4239058; latitude: 14.21577583", + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.81498889; latitude: 46.91934889", + "x": 1195.0079513834248, + "y": 267.5043103357216, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.7181389; latitude: 36.77619444", + "x": 249.23795303979864, + "y": 679.4950119400498, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.88; latitude: 34.99147222", + "x": 1948.4917622830226, + "y": 830.6932301600038, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.31082889; latitude: 44.32468556", + "x": 1324.7031132524507, + "y": 402.00287330073024, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −110.4067961; latitude: 41.39193583", + "x": 664.9551468229715, + "y": 515.3829898376443, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.16927778; latitude: 40.18297222", + "x": 1177.9270674481954, + "y": 621.4102284534749, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −114.2550694; latitude: 48.31140472", + "x": 586.4158354629824, + "y": 133.79428449513762, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.8198961; latitude: 36.732365", + "x": 244.56789100813648, + "y": 680.6934905228836, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.52498667; latitude: 37.4065375", + "x": 1980.4615179387915, + "y": 694.7389346228424, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.45714639; latitude: 44.82724111", + "x": 1318.5349304063145, + "y": 375.78696527765715, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.77496611; latitude: 34.94199806", + "x": 1446.5422284986316, + "y": 892.5970152246659, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.37430556; latitude: 39.41758333", + "x": 1965.846911167232, + "y": 589.2467477511004, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.98460222; latitude: 34.35219472", + "x": 1096.30260505493, + "y": 927.834670360229, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.10880556; latitude: 34.31547222", + "x": 1860.6086381600426, + "y": 881.8309606332784, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.66869444; latitude: 41.01352778", + "x": 1706.1045424841195, + "y": 546.5292442154355, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.58223944; latitude: 42.24626722", + "x": 1471.1692849020938, + "y": 504.4552117680446, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.52019444; latitude: 41.44913889", + "x": 1204.0245361686127, + "y": 554.7818183666132, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.67128694; latitude: 36.01822278", + "x": 2070.8041200540392, + "y": 750.9770157247274, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.57183333; latitude: 33.35725", + "x": 1719.5129129913787, + "y": 952.514945060047, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.97892333; latitude: 41.05332417", + "x": 1381.7033829115317, + "y": 572.3983530286287, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.15668556; latitude: 46.28439389", + "x": 1218.5987219265019, + "y": 300.7615332536743, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.90470083; latitude: 38.18248861", + "x": 1675.467298331876, + "y": 701.073129170811, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.7283333; latitude: 33.46083333", + "x": 545.0736897897795, + "y": 920.5355829177208, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.74338889; latitude: 38.54180556", + "x": 1719.9988458567043, + "y": 676.4327842448736, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −123.0243611; latitude: 48.52197222", + "x": 289.9825080022075, + "y": 50.5952186539198, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −110.3443889; latitude: 31.58847222", + "x": 589.5383839427502, + "y": 1027.4588476107097, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.41310306; latitude: 41.04861306", + "x": 1909.1222922852949, + "y": 512.4346237988548, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −71.75895639; latitude: 42.55412194", + "x": 2143.3519246828305, + "y": 378.7240487586, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.86036167; latitude: 41.37787361", + "x": 1850.3957862441052, + "y": 505.3087494611832, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.90312694; latitude: 36.69817806", + "x": 2013.0505196093548, + "y": 726.405245558672, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.56217028; latitude: 40.27343083", + "x": 1597.3513814904136, + "y": 598.3782138675385, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.48842917; latitude: 43.77117417", + "x": 1506.827740096107, + "y": 421.33713448880144, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.6712183; latitude: 35.13845472", + "x": 562.0489592425266, + "y": 833.613192121494, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.15275; latitude: 26.07258333", + "x": 1972.7844009872551, + "y": 1301.1910422656742, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.72388889; latitude: 34.18536111", + "x": 1920.4039821798121, + "y": 878.8970742618778, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.59023417; latitude: 36.29087528", + "x": 1366.8108089175594, + "y": 824.8879107858047, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −157.98907; latitude: 62.45264889", + "x": 264.40089195920814, + "y": 1229.5773904867226, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.7490197; latitude: 39.499545", + "x": 322.43187172781643, + "y": 549.3616953967407, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.75941444; latitude: 39.08538667", + "x": 1993.5289679384216, + "y": 601.5723584069112, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −108.2299444; latitude: 36.74125", + "x": 717.4203913779895, + "y": 770.9829472550582, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.86325; latitude: 26.58661111", + "x": 1888.6704878227802, + "y": 1287.5395174628586, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.57305556; latitude: 40.58569444", + "x": 1162.2732420659424, + "y": 599.9087048495023, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.59199167; latitude: 40.07878611", + "x": 1240.4802544040745, + "y": 627.1652052829479, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −105.0113356; latitude: 40.45182722", + "x": 868.9107542177617, + "y": 590.6330924849565, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −134.8979067; latitude: 58.25438583", + "x": 479.16720117784763, + "y": 1281.5797047232763, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.74345639; latitude: 42.96550333", + "x": 1689.9628374947622, + "y": 444.83190763391394, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.45299556; latitude: 38.66494528", + "x": 1529.5289343296713, + "y": 689.8044064133987, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.19255111; latitude: 42.55145611", + "x": 1293.5558038738434, + "y": 496.0506726817166, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.66361444; latitude: 38.95095194", + "x": 1237.8476502930662, + "y": 686.7853297219485, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.63178917; latitude: 40.84365472", + "x": 2132.903802950592, + "y": 474.5321689596499, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −124.1326589; latitude: 40.55393583", + "x": 130.90622224280696, + "y": 439.0891650950498, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.36827778; latitude: 27.49505556", + "x": 1950.5858720084896, + "y": 1229.9037129954615, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.93507778; latitude: 35.42822222", + "x": 1816.9033017659297, + "y": 829.0982497343894, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.41340722; latitude: 40.72878111", + "x": 2104.5247995094196, + "y": 487.7775219873761, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.63693528; latitude: 38.50622139", + "x": 1603.592400300792, + "y": 691.6231347874382, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.41561556; latitude: 43.64394111", + "x": 1284.0485509841442, + "y": 438.70028445143726, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.25351472; latitude: 38.9175325", + "x": 1936.1670403365092, + "y": 621.9208690018247, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.74170028; latitude: 43.58135111", + "x": 1196.2757735172956, + "y": 442.3809632696789, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.77349889; latitude: 47.59282028", + "x": 1232.3335401536242, + "y": 232.55185894187252, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.76938111; latitude: 37.79843056", + "x": 1274.6993675578574, + "y": 747.4189945358883, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.36744111; latitude: 35.33659028", + "x": 1293.4002793619536, + "y": 877.274419113163, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.09746; latitude: 44.94028083", + "x": 2063.682171917796, + "y": 269.49264459679216, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.9161389; latitude: 30.91566667", + "x": 914.7762766505423, + "y": 1099.5351854030139, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −104.2171967; latitude: 34.48339944", + "x": 872.9095788242217, + "y": 907.7205781314353, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.3268175; latitude: 40.6592625", + "x": 1408.236346159642, + "y": 592.013100722678, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −104.5431389; latitude: 39.78525", + "x": 884.1620284242774, + "y": 627.4144298019314, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.00421056; latitude: 38.83987472", + "x": 1385.6294307049548, + "y": 689.289474089011, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.36244444; latitude: 32.81977778", + "x": 1164.694326715305, + "y": 1010.2205259658017, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.52136111; latitude: 33.77913889", + "x": 1719.0092983656982, + "y": 930.1674549107499, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.9797842; latitude: 33.87201417", + "x": 284.2133075673039, + "y": 845.9926158472595, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −68.31275; latitude: 47.28550417", + "x": 2199.300957666032, + "y": 105.52335054315063, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.43779806; latitude: 37.35752861", + "x": 1944.013789446583, + "y": 704.3712235554883, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.19514639; latitude: 40.97846583", + "x": 1646.946670691484, + "y": 555.630173182753, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.41265222; latitude: 38.37863306", + "x": 1532.3643791039954, + "y": 704.7640614556144, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.62305056; latitude: 41.20020667", + "x": 2052.6523247204186, + "y": 474.4229924791507, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.30807778; latitude: 32.56522778", + "x": 1166.8874126664907, + "y": 1023.659255083898, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.17070833; latitude: 26.19728", + "x": 1970.8710503182383, + "y": 1294.9494849697817, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.6241025; latitude: 43.23473417", + "x": 1314.4394492480683, + "y": 459.5999871327099, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.39441667; latitude: 35.20592", + "x": 1504.215006880233, + "y": 875.0382866089826, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.56441139; latitude: 35.05836278", + "x": 1624.5833740940625, + "y": 872.6763826388096, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −145.2504169; latitude: 66.57149028", + "x": 361.8761404470579, + "y": 1150.8625850490646, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.17005694; latitude: 36.00509472", + "x": 1301.0761110249753, + "y": 841.8088622820953, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.27046056; latitude: 31.68368667", + "x": 1787.3535048217977, + "y": 1032.6790404467572, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.39453639; latitude: 41.19083111", + "x": 1715.5168301199228, + "y": 535.8464152242727, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.38805361; latitude: 43.35077528", + "x": 1962.0507451442713, + "y": 378.23083588619556, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.9590072; latitude: 38.92409111", + "x": 346.2154234062996, + "y": 586.3408969519214, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.08900139; latitude: 33.97262528", + "x": 1650.6464152531048, + "y": 927.6218795048142, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.37094444; latitude: 48.40469444", + "x": 1176.153702188121, + "y": 190.05647065438143, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.77642361; latitude: 36.29553889", + "x": 1066.4429757597577, + "y": 824.0622212839476, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.166; latitude: 39.16833611", + "x": 1976.625914969071, + "y": 600.5296833469088, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −156.9374164; latitude: 64.73617806", + "x": 275.12819235204154, + "y": 1188.1511415742343, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −171.7328236; latitude: 63.76676556", + "x": 156.40304891698236, + "y": 1187.4170404127096, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.16342306; latitude: 38.83410833", + "x": 1781.232497855181, + "y": 652.3738802312289, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.85917028; latitude: 38.34441861", + "x": 1108.024948682095, + "y": 717.1279935023331, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.43112556; latitude: 40.93800194", + "x": 1442.5952862665079, + "y": 575.4197926377951, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −149.4900214; latitude: 68.47906306", + "x": 328.67900803533047, + "y": 1119.2976350687688, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.40324056; latitude: 42.18421417", + "x": 2086.8257425623974, + "y": 413.04376128893364, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −105.5393614; latitude: 44.34889806", + "x": 868.730655607952, + "y": 384.29417709785366, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.7244147; latitude: 37.92751556", + "x": 1031.1372977199057, + "y": 736.1187318707973, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.47966667; latitude: 36.29441667", + "x": 1246.0350258792523, + "y": 827.1981439104327, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.1469647; latitude: 35.95235389", + "x": 549.4056620878883, + "y": 787.8695914036089, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.43524611; latitude: 41.68776417", + "x": 1285.004566267884, + "y": 541.7469354439718, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.81507028; latitude: 36.19299083", + "x": 1774.483378655689, + "y": 794.3935068324301, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.01602194; latitude: 42.54986639", + "x": 2133.870482887436, + "y": 381.414101993837, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −104.8071994; latitude: 47.13871861", + "x": 909.4438462236972, + "y": 241.6002022488501, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.47503861; latitude: 43.97063278", + "x": 1655.9113662506766, + "y": 395.8217830888657, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.12499083; latitude: 37.23240111", + "x": 1795.0876418481644, + "y": 735.9340343637386, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.35888889; latitude: 38.68919444", + "x": 2053.1832766965467, + "y": 610.2839903959696, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.5338425; latitude: 47.61985556", + "x": 465.5961047678195, + "y": 144.83897292778647, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.88273278; latitude: 38.88195778", + "x": 1712.107279535728, + "y": 659.3177508417205, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.2951564; latitude: 33.52726278", + "x": 521.4298024370081, + "y": 912.9614873971964, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −108.0831944; latitude: 44.51644444", + "x": 775.4895225257621, + "y": 364.7891777871537, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.80481; latitude: 39.58316583", + "x": 1631.0836721783062, + "y": 631.5512791785911, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.17611111; latitude: 47.949255", + "x": 1182.7006058324405, + "y": 213.77925396808678, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.6103075; latitude: 43.34121", + "x": 2064.845445806287, + "y": 355.65612082806456, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.44572222; latitude: 41.32702778", + "x": 1284.909324037721, + "y": 560.7857456276661, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.31958333; latitude: 33.31169444", + "x": 1945.5655553565111, + "y": 921.2692666008875, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.7328611; latitude: 40.86952778", + "x": 999.3285096486712, + "y": 578.6464645234137, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.71171; latitude: 32.38486111", + "x": 1280.9358850480742, + "y": 1033.1667173021242, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.73491278; latitude: 41.70916083", + "x": 1350.9312051200388, + "y": 538.9423931487058, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.37449917; latitude: 40.71126139", + "x": 1602.40666049102, + "y": 574.6266926670287, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −106.6148231; latitude: 48.21246417", + "x": 851.293007998999, + "y": 179.52317440736306, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.445375; latitude: 35.83742722", + "x": 1583.6157234857722, + "y": 835.2258772103164, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.32043056; latitude: 45.64389167", + "x": 1249.1671762194662, + "y": 334.16926060553806, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.75330556; latitude: 28.06291667", + "x": 1882.3172361989607, + "y": 1210.7447655650633, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −108.5267347; latitude: 39.1224125", + "x": 721.7353597263652, + "y": 644.5793776599432, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.2147275; latitude: 41.62652667", + "x": 1834.6076197131383, + "y": 494.6777797197037, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −145.4566389; latitude: 62.15488889", + "x": 370.7713325424702, + "y": 1231.38187311776, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.52870472; latitude: 35.85775889", + "x": 1747.1976537463047, + "y": 815.976884412765, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.09391139; latitude: 32.66241528", + "x": 1176.3427482353359, + "y": 1018.6602663255244, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.6989919; latitude: 39.37062194", + "x": 995.9102642222188, + "y": 657.7759146477754, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.19702778; latitude: 33.65136111", + "x": 1172.4804864450507, + "y": 966.491206867438, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.98561389; latitude: 33.48288111", + "x": 1441.6504410070681, + "y": 969.9658757710238, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.70318944; latitude: 45.01354806", + "x": 1640.9156998280005, + "y": 342.4884255383963, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.86040667; latitude: 29.26532333", + "x": 1276.3606434240867, + "y": 1197.0080851319826, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.95261111; latitude: 37.03205556", + "x": 1639.4398472211342, + "y": 766.3007301044611, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.68417694; latitude: 38.35657306", + "x": 1318.4340409062756, + "y": 717.0870236838891, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.73856667; latitude: 36.60527056", + "x": 1276.7989532275853, + "y": 810.4783669236249, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.35; latitude: 34.84794444", + "x": 1803.9291672256734, + "y": 861.9785600565149, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −105.9172367; latitude: 40.08970806", + "x": 831.3169552700667, + "y": 606.1025188328574, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.79822806; latitude: 33.83253", + "x": 1491.8541547679647, + "y": 948.5295575839825, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −114.7651575; latitude: 42.91716639", + "x": 513.4649746087604, + "y": 407.0456427257777, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −107.9006142; latitude: 35.16531472", + "x": 720.5969137270313, + "y": 855.339597583358, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −161.5813967; latitude: 59.11727556", + "x": 227.179904306193, + "y": 1287.8846197975172, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.27177778; latitude: 29.69005556", + "x": 1846.2942120039265, + "y": 1130.0820636829185, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.41560833; latitude: 35.84980556", + "x": 1164.7507671848227, + "y": 850.3107635934593, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.04513556; latitude: 41.33005778", + "x": 2148.832125124214, + "y": 443.9885567314036, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.30997361; latitude: 39.33046528", + "x": 1292.0792076650719, + "y": 666.1445545113015, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.04652778; latitude: 32.69858333", + "x": 1178.4401347268117, + "y": 1016.7789033096979, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.07009278; latitude: 30.40728028", + "x": 1536.3453647439264, + "y": 1126.1027633256294, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.50984472; latitude: 47.21110333", + "x": 1313.3173657198017, + "y": 251.2611300954004, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.72380556; latitude: 40.75338889", + "x": 1744.7049746222733, + "y": 555.1586221392135, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.12959; latitude: 44.48507333", + "x": 1517.1930184012708, + "y": 382.86788064434404, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.15908333; latitude: 34.24872222", + "x": 1816.569458728433, + "y": 892.1018590840297, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.37841111; latitude: 38.83615778", + "x": 1491.5341027439217, + "y": 683.5647696388714, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.30861111; latitude: 40.96747222", + "x": 1133.7728884892565, + "y": 579.16219244071, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.82779778; latitude: 31.06489778", + "x": 1142.5688688734858, + "y": 1102.1779437868165, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.17525; latitude: 42.80597222", + "x": 988.6241890362268, + "y": 475.64301701632303, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −145.2425353; latitude: 14.1743075", + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.52276778; latitude: 42.88081972", + "x": 1623.1468388568, + "y": 457.3524517381238, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.79210278; latitude: 41.52716028", + "x": 1620.582896565537, + "y": 529.4179339149846, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −145.7293561; latitude: 15.11900139", + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.9372975; latitude: 36.09774694", + "x": 1894.376606343898, + "y": 780.8924133494893, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.21885833; latitude: 34.89566722", + "x": 1809.095112848382, + "y": 858.6815295566757, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −135.7073814; latitude: 58.42438139", + "x": 470.843117687741, + "y": 1280.7337835360308, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.3706853; latitude: 47.48200194", + "x": 679.300000314049, + "y": 194.16187635637652, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.59136861; latitude: 33.45033444", + "x": 1545.3961662302881, + "y": 964.8954635473501, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.67938389; latitude: 30.67880889", + "x": 1148.84486544337, + "y": 1122.5698026810408, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −106.9331817; latitude: 38.53396333", + "x": 781.7915781553451, + "y": 683.3764585695742, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −144.7959825; latitude: 13.48345", + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −108.7893094; latitude: 35.51105833", + "x": 685.6529907369631, + "y": 832.3573191895557, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.5077817; latitude: 36.68507194", + "x": 995.3403851886937, + "y": 799.9730468002197, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.82681333; latitude: 34.27290389", + "x": 1745.457714399925, + "y": 900.6068853704232, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.16759972; latitude: 43.03172639", + "x": 1899.0668080117566, + "y": 407.9241147940925, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.0653325; latitude: 33.06783889", + "x": 1221.4329164157086, + "y": 997.5771534730663, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.084705; latitude: 33.49432667", + "x": 1480.6198953331445, + "y": 967.1182751386709, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.64325; latitude: 46.21872222", + "x": 1164.6278260740182, + "y": 303.6815504731221, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.96493306; latitude: 35.46055444", + "x": 1982.0740451329489, + "y": 799.2054367055928, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −104.6321156; latitude: 40.43561833", + "x": 883.7459528475424, + "y": 592.8739133878728, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.376415; latitude: 34.75831917", + "x": 1803.4911347425123, + "y": 866.8230748092938, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.3759919; latitude: 33.42281972", + "x": 517.0335476818992, + "y": 917.7873010169724, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.41278806; latitude: 41.61627306", + "x": 1557.426290074865, + "y": 530.9583578664092, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.04404333; latitude: 31.41580111", + "x": 1622.3589365811465, + "y": 1065.7567003590043, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.05681444; latitude: 35.15371972", + "x": 1603.2835489669524, + "y": 869.6825730184355, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.15136111; latitude: 36.63301806", + "x": 1259.6004468637761, + "y": 809.2024462033519, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.39469722; latitude: 34.91954278", + "x": 1250.0499046480961, + "y": 899.8116535026975, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.21925556; latitude: 39.36993361", + "x": 1415.892144060871, + "y": 659.8410511564107, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.69161528; latitude: 37.97468528", + "x": 1359.4767371765506, + "y": 736.0727848297927, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.56140194; latitude: 42.84381889", + "x": 1998.3720440062853, + "y": 397.753846879496, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.427155; latitude: 35.47069417", + "x": 1333.0102101632838, + "y": 869.3123305281879, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.81826667; latitude: 39.15751389", + "x": 1392.3944394962184, + "y": 672.1906949556842, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.67516194; latitude: 35.27467806", + "x": 1195.672124413151, + "y": 881.0366934563974, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.62525583; latitude: 36.72092222", + "x": 1239.8595067133892, + "y": 804.6826321529047, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.33006333; latitude: 36.22539389", + "x": 1252.3151366737995, + "y": 830.8069087272786, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.57157139; latitude: 38.36062611", + "x": 1363.6442392323693, + "y": 715.5060075919662, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.28731389; latitude: 37.605825", + "x": 1458.8053587616882, + "y": 750.8789602027907, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.38362861; latitude: 36.43340222", + "x": 1208.2725691065223, + "y": 819.8792994936352, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.93441528; latitude: 38.00675111", + "x": 1512.6791615869563, + "y": 726.0058222255795, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.8103125; latitude: 36.38338556", + "x": 1190.4448493974498, + "y": 822.4110527771882, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.99819583; latitude: 34.11757222", + "x": 1568.0883861686116, + "y": 927.7439064586524, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.44367944; latitude: 39.72448944", + "x": 1406.0063603872402, + "y": 641.5651070801364, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.5010892; latitude: 37.51382944", + "x": 148.384253199672, + "y": 611.8171986266047, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.59338889; latitude: 41.95975", + "x": 1625.7734240304098, + "y": 505.8984542609196, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.52457722; latitude: 39.36448861", + "x": 1683.3243492561921, + "y": 637.2031346649401, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −161.1567792; latitude: 65.20098944", + "x": 243.15942599453876, + "y": 1177.1780336795334, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.5369953; latitude: 48.76838333", + "x": 1031.102621762866, + "y": 165.93470334345648, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.2530325; latitude: 31.26506556", + "x": 1524.9269433701375, + "y": 1081.7719888520255, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.0513525; latitude: 34.9913075", + "x": 1094.5243812467343, + "y": 894.0210278480549, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.73697222; latitude: 27.34955556", + "x": 1096.3363434311304, + "y": 1295.5033724426903, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.01300944; latitude: 35.51169389", + "x": 1392.6525553416368, + "y": 865.0861163830484, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.38178917; latitude: 44.85890667", + "x": 1284.2380501273794, + "y": 374.87662817433693, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.94300306; latitude: 48.75273139", + "x": 1191.3550746617154, + "y": 172.21022111558614, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.41762056; latitude: 30.52096889", + "x": 1475.3922871680813, + "y": 1124.1431445724554, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.33733333; latitude: 40.45269444", + "x": 1092.5017489274055, + "y": 605.1328628583444, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −158.1972814; latitude: 21.57947361", + "x": 674.4764060982292, + "y": 1249.2818812904086, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.83244333; latitude: 35.22007306", + "x": 1696.748325086266, + "y": 856.2332006037711, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −107.2176597; latitude: 40.48118028", + "x": 782.4492418295436, + "y": 579.8378289006473, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.17666667; latitude: 29.35952778", + "x": 1079.2964205479248, + "y": 1189.966683677238, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.67588639; latitude: 34.57648972", + "x": 1451.832921871632, + "y": 911.6304403266902, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.51544444; latitude: 38.72141667", + "x": 1967.4112691388268, + "y": 626.4518730562565, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.6559722; latitude: 46.01494444", + "x": 982.0952651391347, + "y": 306.36434507587364, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.2726875; latitude: 40.56943056", + "x": 977.1304187519411, + "y": 593.1221562399853, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.29733639; latitude: 31.61366111", + "x": 1433.0168592383613, + "y": 1068.959641501002, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.65021389; latitude: 41.73626861", + "x": 2120.743969145824, + "y": 429.0117923163052, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.08788889; latitude: 39.62841667", + "x": 1619.5810329347155, + "y": 630.3675699160829, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.7295; latitude: 39.70794444", + "x": 1948.9495815239363, + "y": 576.9283770677084, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.4036397; latitude: 35.89530778", + "x": 1039.26579190956, + "y": 844.0627977575923, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.45941917; latitude: 40.85299", + "x": 1637.3850106152402, + "y": 563.3754939065739, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.697629; latitude: 32.224384", + "x": 1895.6974690544193, + "y": 987.8304524248176, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.3351872; latitude: 33.92283972", + "x": 269.9156600297034, + "y": 839.8420902734206, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.54190611; latitude: 34.03482556", + "x": 1244.0081576440482, + "y": 946.5433943671246, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −159.4455339; latitude: 22.20919", + "x": 613.5430343581705, + "y": 1216.1575929029275, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.83899333; latitude: 47.38659917", + "x": 1336.9920588600658, + "y": 241.41617144830434, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −71.54447111; latitude: 44.36761639", + "x": 2127.0272561033876, + "y": 284.38207393021, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.67716083; latitude: 39.07334639", + "x": 1317.7931772256102, + "y": 679.196205223484, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −114.3561783; latitude: 34.56816056", + "x": 444.1179332598963, + "y": 842.8719888484675, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.9498258; latitude: 45.54039389", + "x": 249.02764808803602, + "y": 200.47431326870037, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.58697222; latitude: 40.15225", + "x": 1161.342418440827, + "y": 622.7930485523232, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.6288675; latitude: 36.31852194", + "x": 246.8791226036907, + "y": 703.8575376576334, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.83080583; latitude: 35.94040667", + "x": 1483.2315336666206, + "y": 837.5595065857658, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.22253167; latitude: 32.3347725", + "x": 1478.3658454445429, + "y": 1028.4624752954808, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.38954889; latitude: 35.74114639", + "x": 1837.1797061996997, + "y": 809.2940163996982, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.83149444; latitude: 39.37883611", + "x": 1070.7120474290734, + "y": 661.0947270095521, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.64627778; latitude: 40.175", + "x": 1830.39631072776, + "y": 573.0526877528214, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.9827503; latitude: 46.60681806", + "x": 650.1666655973916, + "y": 235.54501322716033, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.82356556; latitude: 36.76611472", + "x": 1852.1107197712413, + "y": 752.0920536750809, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.0225258; latitude: 33.73398167", + "x": 322.87219942523495, + "y": 862.3611918376139, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.51221778; latitude: 40.08536861", + "x": 1914.614564618225, + "y": 563.1625918092514, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.95371833; latitude: 38.24902583", + "x": 1592.0908999467383, + "y": 706.4031693893251, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −135.4096975; latitude: 58.09609139", + "x": 475.248737069595, + "y": 1285.753677532, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −157.9224072; latitude: 21.31869111", + "x": 687.914564215684, + "y": 1262.892199726851, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −156.0144378; latitude: 20.79563722", + "x": 781.7381997893403, + "y": 1290.0949647764905, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.33963889; latitude: 41.58438889", + "x": 1249.946762220423, + "y": 547.6115317556068, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −135.5221086; latitude: 59.24522806", + "x": 468.4018335675313, + "y": 1265.7350632067987, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.52916639; latitude: 36.36156111", + "x": 1949.9356649755669, + "y": 756.8257953451591, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.2170278; latitude: 32.68752778", + "x": 908.4058065448769, + "y": 1005.6149620307308, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.53880694; latitude: 39.18875944", + "x": 1723.7545982494917, + "y": 641.4478854566053, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.77413889; latitude: 31.05591667", + "x": 1813.7446725119187, + "y": 1062.3555023245844, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −151.4765833; latitude: 59.64555556", + "x": 321.3612144037944, + "y": 1281.7771244617745, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.2285425; latitude: 44.38520056", + "x": 1141.1319139340146, + "y": 399.2711083530635, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.09620833; latitude: 34.47803389", + "x": 1348.5932167950882, + "y": 921.3034094454438, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.27888889; latitude: 29.64541861", + "x": 1257.0855513627216, + "y": 1177.2961194396837, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −166.1467797; latitude: 61.52418306", + "x": 192.92161617525895, + "y": 1238.0179915558388, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.70757444; latitude: 41.06695778", + "x": 2089.123159106343, + "y": 473.11751391281496, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.22634056; latitude: 42.72372361", + "x": 1330.314434561854, + "y": 486.08636782009944, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.3705267; latitude: 37.16308056", + "x": 1002.4666622817207, + "y": 775.0693807552907, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −123.9365581; latitude: 46.97120167", + "x": 235.99167359499893, + "y": 118.62590402395426, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.51678556; latitude: 33.52972639", + "x": 1806.729028161924, + "y": 931.8478686863393, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.53041722; latitude: 32.74696278", + "x": 1201.0612869535655, + "y": 1014.4183389919292, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.2591667; latitude: 45.82822222", + "x": 383.3376292765349, + "y": 221.19811971340823, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.65439389; latitude: 26.22850611", + "x": 1145.9220393557976, + "y": 1354.9618170535252, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.15472889; latitude: 36.26152056", + "x": 1343.2689147930778, + "y": 827.2151769798629, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −148.9689842; latitude: 63.86620806", + "x": 338.5858743612779, + "y": 1203.0850644639793, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.80800639; latitude: 38.68322389", + "x": 1191.5748352596895, + "y": 700.824565151112, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.3272017; latitude: 34.85761639", + "x": 954.9036841450122, + "y": 894.193829084666, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.45461083; latitude: 30.36780778", + "x": 1519.2006233464156, + "y": 1129.3960577019188, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.54913889; latitude: 37.8115", + "x": 1529.182190166493, + "y": 735.0970191953325, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.617795; latitude: 35.2327875", + "x": 2081.8283295895476, + "y": 791.0459099711502, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.42788889; latitude: 40.60525", + "x": 1128.6090665746665, + "y": 598.166988722096, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −156.3875; latitude: 65.70055556", + "x": 280.05874562786454, + "y": 1170.6692241706637, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.83389444; latitude: 37.95144444", + "x": 1882.0605828117236, + "y": 683.5782888575793, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.3881378; latitude: 43.36824528", + "x": 944.7227300687232, + "y": 442.82993953095547, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.77310944; latitude: 34.6404475", + "x": 1617.896415440664, + "y": 895.5080507389853, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.6343003; latitude: 38.54436583", + "x": 314.9814187060673, + "y": 599.5171401464813, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.67111111; latitude: 44.35980556", + "x": 1646.172110572261, + "y": 376.4056002325988, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.25185056; latitude: 40.95957778", + "x": 2145.8571928598335, + "y": 464.9402954482216, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.55802778; latitude: 38.36666667", + "x": 1768.9400942903, + "y": 679.1207023617126, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.4943225; latitude: 38.41924861", + "x": 1771.1102978689685, + "y": 676.002643009009, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.30756111; latitude: 39.45146361", + "x": 1571.939353662759, + "y": 644.4427002908674, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −67.79205556; latitude: 46.12308333", + "x": 2234.835902668384, + "y": 158.12356969772327, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.66041667; latitude: 29.5665", + "x": 1467.2918461590461, + "y": 1174.725692275301, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −154.2631903; latitude: 66.04112167", + "x": 296.1217089615067, + "y": 1164.7591974625611, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.86063361; latitude: 38.06548306", + "x": 1148.3310595323715, + "y": 732.8817133777834, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.45725; latitude: 36.85658333", + "x": 1578.2831316614502, + "y": 781.6217535708151, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −110.7040378; latitude: 38.41803722", + "x": 629.2941478416398, + "y": 668.8675787919453, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.8871; latitude: 41.26389889", + "x": 2117.832026950661, + "y": 455.4269672729597, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −109.7623419; latitude: 48.542985", + "x": 743.8517341674446, + "y": 148.39220047137405, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.11922222; latitude: 34.40308333", + "x": 1901.7444682228754, + "y": 870.4279777969291, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.1224083; latitude: 37.65926528", + "x": 165.45300331560657, + "y": 608.672963129543, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −134.7559531; latitude: 58.12744139", + "x": 481.1419469652375, + "y": 1283.4276239291585, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.24052056; latitude: 26.00142417", + "x": 1969.28642303973, + "y": 1305.5222199609486, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −109.8549061; latitude: 46.4541225", + "x": 724.8586410249195, + "y": 255.43586109565194, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.86204722; latitude: 40.81676528", + "x": 2124.4714552822643, + "y": 478.1008270043849, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.69747222; latitude: 32.22436111", + "x": 1895.7044816144012, + "y": 987.8305340147244, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.39112528; latitude: 43.34927806", + "x": 1512.2546684639701, + "y": 443.16581816771486, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −70.28035583; latitude: 41.66933639", + "x": 2210.5474166717536, + "y": 408.9523850077712, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −132.8283131; latitude: 55.20631611", + "x": 515.6917675759528, + "y": 1328.7852233112294, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.86469444; latitude: 29.89361111", + "x": 1139.713987574912, + "y": 1163.5879895691478, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −132.6460942; latitude: 55.48158833", + "x": 515.9050205003929, + "y": 1323.3974627942457, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.44424278; latitude: 46.02585722", + "x": 1390.0931707372931, + "y": 310.30278987550037, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.27403361; latitude: 38.84494167", + "x": 1092.0738941737725, + "y": 690.1364179776974, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.12216667; latitude: 33.8285", + "x": 1949.198914220954, + "y": 892.9399412601063, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.46329778; latitude: 36.08930722", + "x": 1539.89955975042, + "y": 825.5774379863642, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.5809444; latitude: 47.28986111", + "x": 1025.0661203240527, + "y": 242.4758302625478, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.99488889; latitude: 40.98677778", + "x": 2002.6616995313002, + "y": 497.0202802060644, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.47866972; latitude: 30.71832333", + "x": 1427.2110555320319, + "y": 1116.3344554637556, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.69551333; latitude: 41.77797528", + "x": 1814.9009238984754, + "y": 489.8324336724122, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.95183333; latitude: 37.54083333", + "x": 1554.7789935820533, + "y": 747.3641366039726, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.15101167; latitude: 40.24127944", + "x": 1692.430085927104, + "y": 589.3952492874514, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.55927778; latitude: 37.60044444", + "x": 1815.2395520264167, + "y": 713.2326733084055, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.81947222; latitude: 38.92977778", + "x": 1794.223790355969, + "y": 645.3318979502174, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.99023806; latitude: 39.69172639", + "x": 1702.4081197742496, + "y": 617.4048513996565, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.92585333; latitude: 40.16885083", + "x": 1662.4047987894076, + "y": 596.8882141176355, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.42052444; latitude: 39.57040167", + "x": 1725.8059044431538, + "y": 620.8272604809181, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.52899417; latitude: 37.41678056", + "x": 1817.9421036801098, + "y": 722.6426965303549, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.53796528; latitude: 38.13341472", + "x": 1731.083044255616, + "y": 696.7599353272637, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.52252694; latitude: 39.32691111", + "x": 1643.7922123879393, + "y": 643.7886186532567, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.36101639; latitude: 36.85981028", + "x": 1747.1652498972915, + "y": 762.5530326642793, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.33244444; latitude: 37.63152778", + "x": 1702.1909779359062, + "y": 727.1992250432515, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.85338194; latitude: 40.30918056", + "x": 1782.0601747423896, + "y": 573.440104364442, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.46248778; latitude: 38.58338806", + "x": 1610.227268805294, + "y": 686.8610793871403, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.57785667; latitude: 38.98135194", + "x": 1763.5678017478635, + "y": 647.0595344957692, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.84575194; latitude: 37.85008167", + "x": 1720.5458342536235, + "y": 713.2397210698525, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.928175; latitude: 39.16693333", + "x": 1748.2374308503238, + "y": 639.3036109515213, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.80416667; latitude: 39.9875", + "x": 1430.7295145590945, + "y": 626.3788899587278, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.86305556; latitude: 39.50286111", + "x": 1708.715246135113, + "y": 626.662234201084, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.77430556; latitude: 39.25894444", + "x": 1674.039068921653, + "y": 643.9362896439575, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.25184722; latitude: 39.46217306", + "x": 1693.5426029155738, + "y": 630.7464660738137, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.21020722; latitude: 39.07839722", + "x": 1697.7073075065136, + "y": 650.670904946172, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.7548775; latitude: 40.12928306", + "x": 1708.756129881208, + "y": 593.2795869405231, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.68966222; latitude: 41.05221889", + "x": 1314.7487887649104, + "y": 574.6876795847452, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.14638306; latitude: 40.78631889", + "x": 1610.9259558936951, + "y": 569.7660715778852, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.35161111; latitude: 40.22469444", + "x": 1723.9496077721333, + "y": 586.1940615950175, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.13997889; latitude: 38.60200167", + "x": 1623.1299507206677, + "y": 684.5505661787834, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.19778583; latitude: 39.69159667", + "x": 1773.2998991304905, + "y": 607.7257524351605, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.6255; latitude: 40.92372222", + "x": 1513.3141283884263, + "y": 571.3526357289229, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.44192194; latitude: 37.78505944", + "x": 1615.2944342285873, + "y": 728.7746465342661, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.64359694; latitude: 40.61072", + "x": 1709.837164684193, + "y": 567.4925873033908, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.45580972; latitude: 38.94453194", + "x": 1967.4914000500848, + "y": 614.4130514359861, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.94538139; latitude: 43.10725861", + "x": 1869.249411855848, + "y": 409.41448297961324, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.33972222; latitude: 29.98047222", + "x": 1254.1962617613576, + "y": 1159.7613441849985, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −160.4358597; latitude: 66.97937611", + "x": 251.81980924199212, + "y": 1145.382693055859, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.6773889; latitude: 41.18805556", + "x": 924.5286577967602, + "y": 556.503376086147, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.02642667; latitude: 40.72178361", + "x": 1262.5860298782218, + "y": 593.0384598413909, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.43304583; latitude: 37.64995889", + "x": 1165.4522457390465, + "y": 755.1521924199778, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.0701667; latitude: 43.51455556", + "x": 619.7833458854576, + "y": 394.77664353868795, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.10552778; latitude: 40.63222222", + "x": 1886.3372265918954, + "y": 538.9672098629044, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.67887611; latitude: 33.48574611", + "x": 1454.9252971283547, + "y": 969.0920988662424, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.77838333; latitude: 37.15837222", + "x": 1233.4400796709483, + "y": 781.5762244364985, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −148.7215775; latitude: 60.7772125", + "x": 345.08175228415735, + "y": 1259.5332540876277, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.5110728; latitude: 43.02257694", + "x": 976.6090006987922, + "y": 463.4081039543871, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.09913639; latitude: 31.73572", + "x": 1352.877681906476, + "y": 1065.743803561146, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.26995361; latitude: 42.47078639", + "x": 1329.030373726415, + "y": 499.45571551917783, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −114.5595278; latitude: 35.15738889", + "x": 441.62164609296724, + "y": 810.6729197198949, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −155.9032733; latitude: 59.32373528", + "x": 280.35680779493833, + "y": 1287.8848285755716, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −113.9380556; latitude: 35.25947222", + "x": 468.52343392488126, + "y": 810.4099903020494, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.53216667; latitude: 41.53988889", + "x": 1553.1658783898838, + "y": 535.3880861956836, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −164.6856414; latitude: 60.47032722", + "x": 202.34912774169095, + "y": 1259.3287753951086, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.94761833; latitude: 42.45359833", + "x": 1379.7798631301307, + "y": 498.550510524919, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −164.0305131; latitude: 59.93295111", + "x": 206.68504325594205, + "y": 1270.0173792807082, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.81661639; latitude: 33.77987528", + "x": 1792.0371377470879, + "y": 920.6000892651857, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.18023583; latitude: 41.74404028", + "x": 2138.310530668271, + "y": 424.1380506930582, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.23856583; latitude: 39.77429694", + "x": 1453.8591127073637, + "y": 636.329133114027, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.84626861; latitude: 41.07140417", + "x": 1543.115520755662, + "y": 561.0897617541164, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.56630333; latitude: 41.69128556", + "x": 1318.7147010905633, + "y": 540.8519349521357, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.6865; latitude: 31.08583333", + "x": 1148.9044700446152, + "y": 1101.1952053054931, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.60652778; latitude: 39.67872222", + "x": 2032.2550244367967, + "y": 561.32310270993, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −154.9109597; latitude: 59.75380028", + "x": 289.707166017415, + "y": 1280.1708078447527, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.90255556; latitude: 34.27061111", + "x": 1996.5547396029306, + "y": 860.4016811206639, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.6205278; latitude: 40.50930556", + "x": 1002.6068557946592, + "y": 597.9001017032099, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.40102778; latitude: 26.43316667", + "x": 1911.4452280752753, + "y": 1292.1354655723399, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.46552778; latitude: 38.75888889", + "x": 1649.3865368000686, + "y": 673.3801036100947, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.1145425; latitude: 45.81835417", + "x": 1511.9612420406393, + "y": 313.1885236571893, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.148875; latitude: 39.76587639", + "x": 1616.4060059603771, + "y": 623.3948529652569, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.29438417; latitude: 39.71732917", + "x": 1610.89584064306, + "y": 626.542998554112, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.2013619; latitude: 31.77962833", + "x": 905.4730969595505, + "y": 1053.3135648617883, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.40306667; latitude: 48.56618722", + "x": 1315.2111430079444, + "y": 180.79183800982946, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.222; latitude: 36.13372222", + "x": 1882.2956718903952, + "y": 781.0069566635357, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −110.7225278; latitude: 35.02191667", + "x": 600.8574243976267, + "y": 846.1058219227473, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.97958333; latitude: 38.05813889", + "x": 1713.7231487135227, + "y": 703.0216479357305, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.54650333; latitude: 41.63924389", + "x": 1397.1720860430942, + "y": 540.7552119888924, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.16125833; latitude: 35.48332889", + "x": 1848.7969812555673, + "y": 821.2658828813126, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −115.5787456; latitude: 32.83422028", + "x": 374.1669261151943, + "y": 922.0151009453318, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.92109556; latitude: 41.24183583", + "x": 1964.436545857407, + "y": 491.23859780170324, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.54496917; latitude: 40.09364444", + "x": 1361.395828031792, + "y": 623.9224485464435, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.43906111; latitude: 41.8128725", + "x": 1632.5621180641178, + "y": 512.9404645351515, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.43708333; latitude: 28.28980556", + "x": 1895.0023971561384, + "y": 1196.8272781651128, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.6423467; latitude: 48.17793861", + "x": 955.3281234149758, + "y": 191.34570089041063, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.61552611; latitude: 35.32807944", + "x": 1997.9187364437903, + "y": 803.26030541059, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.10021194; latitude: 40.7952425", + "x": 2115.6577252398615, + "y": 481.4488719230667, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.17183056; latitude: 45.97464056", + "x": 1581.7644505937558, + "y": 298.45576106682347, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.83897056; latitude: 44.36033833", + "x": 1454.1010572101904, + "y": 394.10001508653295, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.38897222; latitude: 39.24669444", + "x": 1689.4807727143975, + "y": 642.7244114795608, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.45844444; latitude: 42.49102778", + "x": 1968.6832710592098, + "y": 423.0959820310495, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −155.0484703; latitude: 19.72026306", + "x": 829.7161684825994, + "y": 1345.880769074536, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.2853889; latitude: 39.2425", + "x": 971.9971710200991, + "y": 663.052112821423, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.6554722; latitude: 33.30783333", + "x": 546.8689421868426, + "y": 929.0116659624769, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.13139667; latitude: 46.52747472", + "x": 1436.2046752330452, + "y": 281.5276844257023, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.79873417; latitude: 40.76195972", + "x": 1624.6535718842479, + "y": 569.6058813741743, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −69.71255556; latitude: 43.96141667", + "x": 2198.806329231296, + "y": 286.8736068977846, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −168.0991719; latitude: 65.62394028", + "x": 192.1143575655572, + "y": 1161.104420477314, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.67261111; latitude: 29.81819444", + "x": 1239.1436080388762, + "y": 1168.3438607658377, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.89030333; latitude: 38.83090472", + "x": 1269.1081123679062, + "y": 692.894174275277, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.8295122; latitude: 35.65884306", + "x": 312.00352041533995, + "y": 755.6155141481108, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −149.5405556; latitude: 61.57196083", + "x": 336.820961511059, + "y": 1245.4822804222413, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.0755617; latitude: 34.60682028", + "x": 206.13444492787573, + "y": 786.7566535553028, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −70.94787444; latitude: 43.99114472", + "x": 2153.6963862280368, + "y": 297.7411951304048, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −110.7377389; latitude: 43.60732417", + "x": 670.236994471044, + "y": 398.0820296229208, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.07588889; latitude: 32.31116667", + "x": 1484.8841272144145, + "y": 1029.3056484514277, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.03483333; latitude: 30.89058333", + "x": 1312.3234418206505, + "y": 1111.2081180502475, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.16234472; latitude: 36.33457556", + "x": 1717.640236555713, + "y": 794.3714937400457, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.68786111; latitude: 30.49405556", + "x": 1866.2314865922995, + "y": 1084.506336825452, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.64616667; latitude: 35.83186111", + "x": 1449.3688884979442, + "y": 845.3609917107954, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.76345528; latitude: 30.51126", + "x": 1054.9174322661513, + "y": 1128.67559595329, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −106.9339564; latitude: 47.33333417", + "x": 834.8832896606416, + "y": 223.63998773369576, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.15614389; latitude: 38.59117917", + "x": 1380.0294639288963, + "y": 702.6801377663753, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −114.4571506; latitude: 42.72663639", + "x": 523.0473518832257, + "y": 419.1767542392854, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.88344444; latitude: 31.55408333", + "x": 1849.2850724635225, + "y": 1030.7564889430896, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.77892556; latitude: 40.63975111", + "x": 2091.6318224252227, + "y": 495.70973212399576, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.31416639; latitude: 33.90199528", + "x": 1598.4378129157801, + "y": 936.4897019190348, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −156.6730317; latitude: 20.96293639", + "x": 749.3071198697729, + "y": 1281.469615510031, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.258035; latitude: 42.15336861", + "x": 1866.3559065259242, + "y": 460.99382665961866, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.67371472; latitude: 30.28951667", + "x": 1599.6193879873283, + "y": 1127.210473893676, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.66313028; latitude: 46.83919194", + "x": 1200.433271962369, + "y": 271.725967558486, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.31725; latitude: 37.59386111", + "x": 1743.8017359484966, + "y": 723.8475038833844, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.49826833; latitude: 37.15181361", + "x": 1286.3460830841655, + "y": 781.4433179703433, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.27177833; latitude: 45.88609722", + "x": 1323.812152383038, + "y": 320.1572089642973, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.67819528; latitude: 46.92971944", + "x": 1128.1106007522253, + "y": 265.73411795650645, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −134.5762764; latitude: 58.35496194", + "x": 481.596366453628, + "y": 1278.9250286168356, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.39032944; latitude: 35.54094139", + "x": 1963.625035815347, + "y": 798.3836143762915, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.17525583; latitude: 41.51805833", + "x": 1528.3422715396043, + "y": 538.6770962283654, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.70971389; latitude: 35.38520694", + "x": 1868.4695662612453, + "y": 823.3705324310215, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.00708389; latitude: 40.75454583", + "x": 2081.496201687002, + "y": 491.8805827976803, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.00902833; latitude: 40.70121361", + "x": 2082.067630003775, + "y": 494.6394897206137, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −158.0703017; latitude: 21.30735389", + "x": 680.647613317876, + "y": 1263.4533679651474, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.21739028; latitude: 31.86933667", + "x": 1258.9218675774252, + "y": 1060.5362612339093, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.83394444; latitude: 40.31611111", + "x": 1899.8642572593803, + "y": 553.4859212978236, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.04034028; latitude: 42.61958222", + "x": 1490.5406897707903, + "y": 483.36703213300007, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.73829639; latitude: 38.36562278", + "x": 1640.6632505412367, + "y": 695.2557449869519, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.42075; latitude: 35.86469444", + "x": 1122.5088028265188, + "y": 848.671228190676, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.88672278; latitude: 36.18236194", + "x": 1605.2668525388935, + "y": 814.9005349803647, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.45940361; latitude: 42.25978556", + "x": 1667.4023818493315, + "y": 485.145317663842, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.55793722; latitude: 43.98631833", + "x": 1278.407147963412, + "y": 420.7886193110962, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.59649722; latitude: 32.64544861", + "x": 1853.2234680317872, + "y": 972.0813459510625, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.5857625; latitude: 41.92126083", + "x": 1664.7125545264357, + "y": 503.4519869087417, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.5575; latitude: 39.07797222", + "x": 1962.1070399285363, + "y": 608.284161842811, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.62277778; latitude: 40.89675", + "x": 1160.5938842630896, + "y": 583.4518163212965, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.00291667; latitude: 32.70086111", + "x": 1921.6945710126074, + "y": 958.080456171177, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.45659278; latitude: 34.45147972", + "x": 1717.4891846369296, + "y": 894.6162723304392, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −157.2594722; latitude: 59.72664194", + "x": 268.09632179950404, + "y": 1279.9917867626032, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.78916167; latitude: 40.38750167", + "x": 1232.6159847247068, + "y": 610.8811633408689, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.86213889; latitude: 37.86866667", + "x": 1475.3398488479852, + "y": 735.9222866695645, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.40373556; latitude: 39.97338139", + "x": 1446.6661742692872, + "y": 626.2203468587088, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.51765083; latitude: 43.45340222", + "x": 2030.0533277080615, + "y": 357.7681554373844, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.68054583; latitude: 38.11045", + "x": 1359.67823922953, + "y": 728.8829204998374, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.26205889; latitude: 37.38783833", + "x": 1747.5045312967507, + "y": 734.3404983879641, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.63669444; latitude: 37.75102778", + "x": 1770.335388485686, + "y": 711.8003095322247, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.10277778; latitude: 37.00888889", + "x": 1674.5471423697045, + "y": 763.648959390024, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −163.7034472; latitude: 64.89788278", + "x": 222.92709751850845, + "y": 1180.1941664368262, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.60444167; latitude: 37.61523333", + "x": 1404.7544053148263, + "y": 753.2577900350909, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.95602778; latitude: 38.80708333", + "x": 1266.4670842639994, + "y": 694.1835694312313, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.97073944; latitude: 38.37594333", + "x": 1428.6228669839224, + "y": 711.8023158685658, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.1136275; latitude: 41.41805139", + "x": 1219.8546340757068, + "y": 556.4751203218816, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −166.3360067; latitude: 65.24089806", + "x": 203.90719878616056, + "y": 1170.6373694308536, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.36275806; latitude: 40.44583139", + "x": 1249.4512424233583, + "y": 607.7248758075827, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.18033139; latitude: 39.57052472", + "x": 1257.0554554864382, + "y": 653.9175657894602, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.12878389; latitude: 39.47115222", + "x": 1139.051334248359, + "y": 658.3565644163568, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.39160417; latitude: 38.70423611", + "x": 1692.8697184430016, + "y": 671.200920323143, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.04246222; latitude: 37.15978667", + "x": 1263.8519539651236, + "y": 781.3127877444292, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.21691833; latitude: 38.27918833", + "x": 1256.1550337066624, + "y": 722.1944128466257, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.23585389; latitude: 38.90405583", + "x": 1174.4090085637486, + "y": 688.964314241595, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.92524194; latitude: 38.53751389", + "x": 1267.8722126242224, + "y": 708.4209165110976, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.79343639; latitude: 39.76112278", + "x": 1112.8977799254883, + "y": 642.3488853474366, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.7794325; latitude: 39.90416667", + "x": 1233.0598482122552, + "y": 636.4165626053968, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.38638889; latitude: 37.87008333", + "x": 1249.3968584737886, + "y": 743.8757346762857, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.464455; latitude: 39.72870694", + "x": 1365.306796637428, + "y": 643.0756191174808, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.30616; latitude: 39.78086528", + "x": 1530.6851584443457, + "y": 630.5339521173939, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −133.9456147; latitude: 56.97299639", + "x": 494.9281879052479, + "y": 1301.4015012725458, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −158.7441475; latitude: 64.32571917", + "x": 260.4904551421096, + "y": 1194.8435419012412, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −132.8419689; latitude: 56.00324444", + "x": 510.97823912509017, + "y": 1314.9498587605212, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −158.5359264; latitude: 56.31116306", + "x": 252.08413496576136, + "y": 1341.9298756922055, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −151.9251558; latitude: 59.35214833", + "x": 317.3935358050749, + "y": 1287.3146203629053, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −157.4744092; latitude: 59.35399444", + "x": 265.76214442501976, + "y": 1286.7366344420952, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −163.4103222; latitude: 54.84744583", + "x": 199.10536934542233, + "y": 1363.3203858544734, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −160.0649042; latitude: 62.89456056", + "x": 247.6536834688116, + "y": 1220.162618581112, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −159.4886689; latitude: 55.89753333", + "x": 241.81554334589754, + "y": 1348.7651777480114, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.1218614; latitude: 36.22802139", + "x": 185.27287899786802, + "y": 692.6466953659888, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −161.158145; latitude: 64.93404056", + "x": 242.62278286289506, + "y": 1182.0400050436044, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −152.3704875; latitude: 58.19094611", + "x": 313.7739936388409, + "y": 1308.7768528658446, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −160.3413306; latitude: 61.53627389", + "x": 242.98109703591768, + "y": 1244.8068963174683, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −156.8652169; latitude: 59.11816472", + "x": 271.2384917751156, + "y": 1291.340589232719, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.8983889; latitude: 46.118", + "x": 259.27654195000946, + "y": 171.98848976263116, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.5311936; latitude: 37.01110583", + "x": 543.1915771626325, + "y": 729.990978285877, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −157.3271908; latitude: 59.44955333", + "x": 267.2185644671232, + "y": 1285.0513255507037, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −156.0456314; latitude: 19.73876583", + "x": 780.4083225088483, + "y": 1345.1952441545566, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −133.6225864; latitude: 56.35185972", + "x": 501.44424803610707, + "y": 1311.3086326493083, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −162.6936406; latitude: 54.45912028", + "x": 205.67015978240613, + "y": 1371.4003042049396, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −165.7853111; latitude: 54.13246694", + "x": 172.04951664369258, + "y": 1372.225682018574, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −163.3021108; latitude: 62.06048639", + "x": 218.74053352571838, + "y": 1232.233575193074, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −132.5366758; latitude: 55.68796194", + "x": 515.7801143251613, + "y": 1319.448849864753, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −131.71374; latitude: 55.35556861", + "x": 525.824633963771, + "y": 1322.4569482180552, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −166.4631667; latitude: 65.33136111", + "x": 203.25690384183144, + "y": 1168.82828596557, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −162.2662272; latitude: 55.1163475", + "x": 211.6843514714945, + "y": 1360.032840516284, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −164.5518019; latitude: 67.73125333", + "x": 224.5998236290961, + "y": 1128.0768063673288, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −161.44535; latitude: 60.80425194", + "x": 231.9185092468477, + "y": 1257.191729975491, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −132.3975144; latitude: 55.53741389", + "x": 518.0239820828955, + "y": 1321.6075464211483, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −154.4503714; latitude: 57.56706389", + "x": 293.6700721748612, + "y": 1320.421064407094, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −157.7158358; latitude: 64.87714278", + "x": 269.19492275779135, + "y": 1185.2663033989177, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −115.2674806; latitude: 32.84032361", + "x": 387.5596892937434, + "y": 924.4624479000358, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.4198069; latitude: 35.72828472", + "x": 288.64503090619826, + "y": 746.3069775549382, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −116.8814425; latitude: 36.46383694", + "x": 360.24135333212007, + "y": 723.0027853906277, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −116.3209722; latitude: 33.25902778", + "x": 347.17228592796323, + "y": 893.3772088851115, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.1463789; latitude: 34.08526167", + "x": 321.738147146683, + "y": 843.1096306529714, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −115.1327708; latitude: 35.97636444", + "x": 426.4213994465448, + "y": 763.4874188108813, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.4412294; latitude: 35.14107806", + "x": 239.29362857925696, + "y": 766.1080745211625, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.2508686; latitude: 33.35419806", + "x": 308.8038292065015, + "y": 879.7106993831931, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.3537242; latitude: 35.61967889", + "x": 249.04583159589197, + "y": 742.4912395274321, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.3158783; latitude: 34.37722333", + "x": 318.0514144420764, + "y": 826.4729440945669, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.98887889; latitude: 30.44505417", + "x": 1494.9052210967905, + "y": 1126.9420745311954, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −116.854475; latitude: 34.26361944", + "x": 336.04328906733474, + "y": 836.6771533311642, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.94039583; latitude: 30.17135306", + "x": 1452.8755612579405, + "y": 1143.7723965894413, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.34245833; latitude: 31.16819444", + "x": 1342.9280766706318, + "y": 1095.8784714359756, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.68847222; latitude: 30.75016667", + "x": 1372.8795686921776, + "y": 1116.9015761066546, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.9958333; latitude: 35.32483333", + "x": 259.9640664574455, + "y": 761.2581319911394, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.26111667; latitude: 29.44482222", + "x": 1485.8275838069694, + "y": 1180.0261204908848, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.6221153; latitude: 35.10136472", + "x": 190.22365695985604, + "y": 755.5956509389387, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.4016303; latitude: 34.12934361", + "x": 311.54677304315055, + "y": 838.4042042896765, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.3128561; latitude: 34.50415889", + "x": 277.9877131394545, + "y": 810.2325198626047, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.0166667; latitude: 35.15125306", + "x": 298.16610621162147, + "y": 779.908542794461, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.3272783; latitude: 35.81245333", + "x": 334.4406576680917, + "y": 752.4689475560901, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.37611111; latitude: 30.13138889", + "x": 1342.9281202254406, + "y": 1150.315970433223, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.83289889; latitude: 29.74779194", + "x": 1458.9338648238565, + "y": 1165.6779168749922, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.6862383; latitude: 35.62357083", + "x": 235.497566046242, + "y": 738.8562738960541, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −115.1944622; latitude: 37.36246083", + "x": 438.5805909886502, + "y": 691.1879685051854, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.6885; latitude: 38.06969444", + "x": 951.4830275875988, + "y": 723.799708332899, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.93689889; latitude: 40.41231694", + "x": 1581.8859521208194, + "y": 592.5165313691489, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.01855556; latitude: 27.98891667", + "x": 1870.720979024598, + "y": 1216.3836131013318, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −106.2694153; latitude: 35.87980194", + "x": 793.4162526679712, + "y": 825.8690034165581, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.58735806; latitude: 42.7787", + "x": 1659.2376608436612, + "y": 458.5920525269644, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −105.6749864; latitude: 41.31205", + "x": 847.4420147927174, + "y": 542.8751690097788, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −115.1523333; latitude: 36.08036111", + "x": 426.7166709579377, + "y": 757.9385181993384, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.41663667; latitude: 34.56771444", + "x": 1120.9401254197592, + "y": 917.1548988973695, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.4080744; latitude: 33.94253611", + "x": 267.10177346881164, + "y": 838.0987491439807, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.8227778; latitude: 33.66363889", + "x": 972.4936314957013, + "y": 958.4547295316584, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.40479722; latitude: 40.27594", + "x": 1877.9993551812458, + "y": 559.5667560204815, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.6836542; latitude: 41.12621194", + "x": 1041.1290224655272, + "y": 567.3674465591257, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.9598611; latitude: 37.04420944", + "x": 1019.0842143692385, + "y": 782.2672301646137, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.65375778; latitude: 37.64718056", + "x": 1361.6326743024597, + "y": 753.3244632016999, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.05944444; latitude: 34.60991667", + "x": 1944.5536550150428, + "y": 851.8798847844175, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.46208056; latitude: 29.10863889", + "x": 1248.9110800233805, + "y": 1205.4488116167815, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.98141667; latitude: 42.24188889", + "x": 1186.4963661168654, + "y": 512.829580744577, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.22340361; latitude: 30.1260975", + "x": 1349.8394259984555, + "y": 1150.3971051659632, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −71.41890028; latitude: 43.57272806", + "x": 2142.243093549898, + "y": 323.57151034495564, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.92786472; latitude: 39.81375917", + "x": 1743.562512726462, + "y": 605.437286345898, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.57686111; latitude: 30.18205556", + "x": 1828.9346543870129, + "y": 1106.5280614126495, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.24459417; latitude: 40.61744722", + "x": 2074.04482139244, + "y": 501.06283583284494, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.40791528; latitude: 43.96253278", + "x": 1583.8355016420585, + "y": 404.29020689742265, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.30426722; latitude: 43.62637222", + "x": 2109.1847652878637, + "y": 329.23786484120956, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.80900722; latitude: 28.82274417", + "x": 1873.8600637816708, + "y": 1171.8850057074385, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.1061778; latitude: 45.91869722", + "x": 1001.7483533377913, + "y": 312.7299383190052, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −70.2835075; latitude: 44.04847278", + "x": 2176.9423128667504, + "y": 288.25745152835816, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.60538889; latitude: 38.03697222", + "x": 1688.5013205687173, + "y": 707.2720075436112, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.75; latitude: 31.23401389", + "x": 1280.0481623476596, + "y": 1093.7124758452417, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.987655; latitude: 30.20527972", + "x": 1405.5168327479234, + "y": 1144.2533108438931, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.87260917; latitude: 40.77724306", + "x": 2086.3663274592736, + "y": 489.4978485370275, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.1516111; latitude: 33.81772222", + "x": 276.3359309955948, + "y": 847.0728694742206, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.07260556; latitude: 33.00884694", + "x": 1700.0166987707762, + "y": 973.3082211678818, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.0071108; latitude: 45.29020944", + "x": 421.30699945616266, + "y": 259.3976346625459, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.8526822; latitude: 41.78773083", + "x": 612.7848017719944, + "y": 485.8579255270188, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −149.9719322; latitude: 61.18000361", + "x": 333.5156983320865, + "y": 1252.917773728187, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.3513361; latitude: 38.90916111", + "x": 213.3694880788147, + "y": 553.3913813451486, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.65711; latitude: 39.75564722", + "x": 1754.6777340805884, + "y": 606.9835453641019, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.42053556; latitude: 41.13618028", + "x": 1946.3951686946161, + "y": 500.5485828396327, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.5106908; latitude: 38.05134111", + "x": 917.9384022825275, + "y": 722.2624344203266, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.33027139; latitude: 36.02334528", + "x": 1961.40599745954, + "y": 772.8655625091271, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.6663392; latitude: 39.272765", + "x": 916.8066180583842, + "y": 657.3899440996825, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −159.3389581; latitude: 21.97598306", + "x": 618.6478213360687, + "y": 1228.3050757639194, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.22424556; latitude: 34.72939611", + "x": 1385.3777301032144, + "y": 906.7330801012349, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.50726833; latitude: 45.09712889", + "x": 1279.393129132557, + "y": 362.463803789813, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.96186639; latitude: 44.26447361", + "x": 2040.7323218130227, + "y": 311.5025350607275, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.85458333; latitude: 34.72291667", + "x": 1867.9680074900434, + "y": 858.8801905253886, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.97013889; latitude: 38.00983333", + "x": 1956.448367372038, + "y": 666.9121830577203, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.3990703; latitude: 42.16111111", + "x": 294.09175119245003, + "y": 397.2264766394678, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −114.2175642; latitude: 44.52297806", + "x": 550.0337951745568, + "y": 328.1958042491542, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.75101833; latitude: 33.6385525", + "x": 1408.1281169804363, + "y": 963.3826938682082, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.31150444; latitude: 37.4894925", + "x": 1293.7468758972316, + "y": 763.463045568395, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.06247917; latitude: 33.14620944", + "x": 1526.1832823324764, + "y": 982.4248685180039, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.7332081; latitude: 42.15614361", + "x": 244.3746029135525, + "y": 384.07297857748426, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.08505556; latitude: 26.593", + "x": 1971.4471700646802, + "y": 1274.0066295041293, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.71905111; latitude: 32.57919111", + "x": 1192.7367475574881, + "y": 1023.1996007119246, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −108.7298392; latitude: 42.81523611", + "x": 739.6661835520586, + "y": 450.31092022923167, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.75925; latitude: 40.85097222", + "x": 1194.4634299176507, + "y": 586.293584505675, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.21194417; latitude: 46.15387722", + "x": 1470.747184343019, + "y": 298.7806800334479, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.39030556; latitude: 41.68391667", + "x": 1789.064317833136, + "y": 498.9560854410197, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.53017361; latitude: 36.98743194", + "x": 1780.361559022171, + "y": 751.1535982337612, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.29609778; latitude: 40.12171528", + "x": 2000.5160445867223, + "y": 544.1800424239536, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −156.9514181; latitude: 20.78561111", + "x": 735.6144625197924, + "y": 1290.7102584688844, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.5651664; latitude: 40.066405", + "x": 336.62797161847527, + "y": 521.9833986052868, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.09094444; latitude: 41.60844444", + "x": 1531.2145967641986, + "y": 533.6533991158904, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.66372222; latitude: 38.228", + "x": 1644.4670894191163, + "y": 702.1614473222223, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.07677778; latitude: 37.08727778", + "x": 1716.209239470135, + "y": 754.4488856280611, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.4667883; latitude: 34.66561028", + "x": 190.7438256261387, + "y": 779.531066519912, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.17763889; latitude: 41.34427778", + "x": 1761.4457344555299, + "y": 521.2417004970653, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.70288889; latitude: 34.80997222", + "x": 1789.3225248941294, + "y": 866.0884532033542, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.08607306; latitude: 38.20809667", + "x": 1098.5680044778471, + "y": 724.0434553377843, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.46154361; latitude: 27.54373861", + "x": 1062.8466364446867, + "y": 1284.289144563634, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −68.53474694; latitude: 45.36216083", + "x": 2220.330004159714, + "y": 204.08276409738846, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.19368944; latitude: 42.77801778", + "x": 1216.8816828444033, + "y": 484.76621134525294, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −106.9219722; latitude: 32.28941667", + "x": 744.436700405473, + "y": 1010.9737210632031, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −108.6909742; latitude: 32.33278083", + "x": 667.4514452053673, + "y": 999.0607658293295, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.25653778; latitude: 43.87937972", + "x": 1402.5338013817948, + "y": 422.3707236259402, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −104.4045536; latitude: 42.75380806", + "x": 903.5001918238391, + "y": 471.85661316087726, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.8692511; latitude: 37.06290556", + "x": 206.89624328282844, + "y": 652.764151125142, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.80388611; latitude: 35.506975", + "x": 1612.1667384782359, + "y": 850.0875033321024, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.41861417; latitude: 39.10334417", + "x": 1689.2201422675807, + "y": 650.390877549685, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.17222417; latitude: 31.67255139", + "x": 1526.9842001000072, + "y": 1060.1507005846984, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −156.9735972; latitude: 21.21104028", + "x": 734.5203388161718, + "y": 1268.571922157763, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.24216667; latitude: 29.52130556", + "x": 1258.8078784258078, + "y": 1183.782653029903, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.8203519; latitude: 37.69339944", + "x": 177.8761302724613, + "y": 610.280425152082, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −110.4483056; latitude: 45.69938889", + "x": 697.655881214775, + "y": 291.2483258261318, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.22810806; latitude: 44.62785361", + "x": 1327.3272093001187, + "y": 386.0059071847968, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −105.1423889; latitude: 35.65422222", + "x": 839.4022188863826, + "y": 842.5628334220505, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.39947222; latitude: 37.85830556", + "x": 1860.0634682483774, + "y": 692.283191154281, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.21657694; latitude: 39.01115222", + "x": 1255.84994610161, + "y": 683.4967135134684, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.90217028; latitude: 40.63333306", + "x": 1306.9170585941654, + "y": 596.993830976287, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −114.9222661; latitude: 41.11853306", + "x": 488.83479609397557, + "y": 498.83352876263734, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −71.12343; latitude: 42.71720944", + "x": 2164.678379282634, + "y": 364.2002717482783, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.0153944; latitude: 46.37449806", + "x": 469.32519885305464, + "y": 212.25269190640665, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −109.4666006; latitude: 47.04913944", + "x": 743.1434726871444, + "y": 226.72197514845993, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.60549556; latitude: 38.76429639", + "x": 1563.2590909981755, + "y": 681.6978886360243, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.34708472; latitude: 45.94943778", + "x": 1284.5305402816352, + "y": 317.7493371273349, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.77727778; latitude: 40.791", + "x": 1075.8483987809213, + "y": 586.6295458827958, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.37158333; latitude: 38.95975", + "x": 1289.9436357774712, + "y": 685.7816979392514, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −106.3166906; latitude: 39.2202675", + "x": 810.5719564489034, + "y": 650.0968422361732, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.51472222; latitude: 31.63983472", + "x": 1201.4328173566391, + "y": 1072.6866523932852, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.20043056; latitude: 37.32668528", + "x": 1913.3800910888851, + "y": 711.6276852613303, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.22709639; latitude: 38.34261472", + "x": 1133.7180326030855, + "y": 717.9110525434739, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.96237722; latitude: 33.97807611", + "x": 1741.6499726083373, + "y": 916.7776380139694, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.05397694; latitude: 35.20069278", + "x": 1476.3197029131215, + "y": 877.1596027673022, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.43007056; latitude: 36.12931722", + "x": 1582.8678940092298, + "y": 819.8058260926286, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.42496167; latitude: 35.08080778", + "x": 1376.1203235781838, + "y": 888.521633284884, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.58722167; latitude: 35.583365", + "x": 1494.7125902099972, + "y": 855.7050265978755, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.67508; latitude: 36.17506917", + "x": 1488.9338896324214, + "y": 824.7561683971983, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.04336222; latitude: 35.21445944", + "x": 1519.0332226896655, + "y": 873.5270719843134, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.7128975; latitude: 37.12671694", + "x": 1442.760952709069, + "y": 777.1821196763447, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.36870222; latitude: 31.90293639", + "x": 1473.2907062529657, + "y": 1051.532447685348, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.50450694; latitude: 30.78602056", + "x": 1515.4572102090192, + "y": 1107.6546668239641, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.87669361; latitude: 35.59590306", + "x": 1566.63299407495, + "y": 849.5301616306713, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.40848333; latitude: 32.30334111", + "x": 1470.2948418113972, + "y": 1030.603235991182, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.34765; latitude: 37.59693194", + "x": 1333.233370337133, + "y": 756.8790941758994, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.65884556; latitude: 33.72008889", + "x": 1325.4970333466495, + "y": 961.9462584588646, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.17637556; latitude: 35.63771778", + "x": 1427.6182594652382, + "y": 856.7992153584485, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.15752778; latitude: 37.22561111", + "x": 1588.8555375717253, + "y": 761.0604756291086, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.71030833; latitude: 34.44953972", + "x": 1578.90094143459, + "y": 909.2317781198385, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.13589194; latitude: 32.31181111", + "x": 1526.165338095359, + "y": 1026.4902357895025, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.15977333; latitude: 30.84324389", + "x": 1530.6686597359508, + "y": 1103.5739990312516, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.58472222; latitude: 36.76911111", + "x": 1532.0244581530474, + "y": 790.1548053237434, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.10993056; latitude: 34.87509944", + "x": 1304.786009126956, + "y": 901.4399599140143, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.96752833; latitude: 35.38507528", + "x": 1563.754149893159, + "y": 860.9533657685924, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.75061; latitude: 37.18588722", + "x": 1523.4744415967905, + "y": 768.716269597503, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.31569833; latitude: 33.3459775", + "x": 1427.7091534929468, + "y": 977.9046866715457, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.40875861; latitude: 36.37684472", + "x": 1624.1466927919785, + "y": 802.7078371925511, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.29586639; latitude: 37.00950028", + "x": 1542.957556180446, + "y": 776.5347086053116, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.1764375; latitude: 34.88000194", + "x": 1429.6459088183472, + "y": 896.769241403799, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.52500833; latitude: 33.77639167", + "x": 1460.7050044094146, + "y": 953.4119698626473, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.20265278; latitude: 34.54539444", + "x": 1301.1662810655005, + "y": 918.9199784760149, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.48967833; latitude: 33.87374861", + "x": 1548.0320551248826, + "y": 942.2902830894845, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.5211075; latitude: 34.80434611", + "x": 1500.2989230651303, + "y": 896.5648944177126, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.90619056; latitude: 31.59544583", + "x": 1494.7515646759973, + "y": 1066.408719270871, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.02367194; latitude: 33.89177944", + "x": 1524.9861539238968, + "y": 943.0961562849611, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −106.7092722; latitude: 45.85285", + "x": 834.1636257278891, + "y": 301.3227902737376, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.97316944; latitude: 37.33009167", + "x": 1390.2632004257143, + "y": 768.9912783628761, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.37893444; latitude: 35.65131944", + "x": 1545.2787412499963, + "y": 848.3650656632583, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.87494944; latitude: 35.80218", + "x": 1523.8302425526992, + "y": 842.0373501826746, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.31569444; latitude: 36.19041667", + "x": 1629.0154760717423, + "y": 812.116580854617, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.01275833; latitude: 36.90621528", + "x": 1306.680508241876, + "y": 794.0564596295494, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.93504778; latitude: 31.31739944", + "x": 1538.8666229512262, + "y": 1078.000003436708, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.27040417; latitude: 35.27175278", + "x": 1424.6194888330444, + "y": 876.307140040554, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.76155111; latitude: 35.23160167", + "x": 1446.269749374589, + "y": 877.2944083425223, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.95520444; latitude: 36.24551111", + "x": 1435.2290581004913, + "y": 824.2427435142065, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.02416667; latitude: 34.54722222", + "x": 1522.428615747399, + "y": 908.6041487174359, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.46634722; latitude: 34.41232833", + "x": 1418.4898195570659, + "y": 922.0377291850011, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −107.9193444; latitude: 48.36694167", + "x": 806.6836543480194, + "y": 166.14125150289465, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.65119306; latitude: 30.48748472", + "x": 1509.9374038779492, + "y": 1123.7323785428723, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.83813583; latitude: 33.99673833", + "x": 1317.4152333706897, + "y": 947.5410463112821, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.76149944; latitude: 34.33331583", + "x": 1363.1771126734398, + "y": 928.4740159167604, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.77087528; latitude: 32.48633611", + "x": 1409.9702490076552, + "y": 1024.076300765519, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.55621472; latitude: 34.85645028", + "x": 1625.9876496877923, + "y": 883.2514193138161, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.66668694; latitude: 33.58403556", + "x": 1541.5947471116322, + "y": 958.1200623268448, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.06611694; latitude: 34.09984639", + "x": 1350.4970057282349, + "y": 941.2122126861818, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.92068917; latitude: 36.53726194", + "x": 1602.061993840579, + "y": 796.363777150345, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.81504639; latitude: 33.71221972", + "x": 1577.7775374467515, + "y": 948.377337376902, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.35065389; latitude: 34.69232306", + "x": 1465.3541385301892, + "y": 904.7239121625275, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.60693972; latitude: 34.55656472", + "x": 1369.3826837039528, + "y": 916.4670010556192, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.56202778; latitude: 32.82213889", + "x": 1766.711989737607, + "y": 974.979638870991, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.1119844; latitude: 36.9857175", + "x": 236.17304824583687, + "y": 664.6997231353441, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.2019139; latitude: 31.94252778", + "x": 950.2100486373242, + "y": 1047.883533080126, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.18188889; latitude: 30.83780556", + "x": 1708.250436224874, + "y": 1087.3164522214745, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.32894972; latitude: 44.85365722", + "x": 2020.381492861483, + "y": 284.50701456274237, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.33472222; latitude: 34.18116667", + "x": 1936.918183740351, + "y": 876.2309195579414, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.99220278; latitude: 36.60055694", + "x": 1474.262093707408, + "y": 803.1726517654818, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −67.14847222; latitude: 18.25569444", + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.4079192; latitude: 45.54650361", + "x": 1062.6837038223734, + "y": 335.60815973855506, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.2490025; latitude: 44.27319722", + "x": 1588.0999371645962, + "y": 387.44827121526623, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.10309222; latitude: 32.43866444", + "x": 1483.2728218001212, + "y": 1022.6811204729681, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.07964722; latitude: 43.53291472", + "x": 1673.5219334776157, + "y": 416.82908312280415, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.37753222; latitude: 35.87748444", + "x": 1628.1113833608767, + "y": 828.8316282720293, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.42759778; latitude: 39.46392583", + "x": 1367.3021371143811, + "y": 657.0048691696143, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.47187528; latitude: 31.17845444", + "x": 1470.9477479790678, + "y": 1089.822718421112, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.63734444; latitude: 45.86493444", + "x": 1638.0149834482372, + "y": 297.9318692242691, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.5138858; latitude: 37.28472861", + "x": 224.09920364125412, + "y": 645.2017491165984, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −155.6057625; latitude: 62.95287361", + "x": 284.74095139006903, + "y": 1221.2340472618666, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.71390556; latitude: 39.29760528", + "x": 1275.899544906907, + "y": 668.1350431109568, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.5918056; latitude: 40.20638889", + "x": 1042.3719269590792, + "y": 616.0631039287564, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.64921083; latitude: 32.69284944", + "x": 1763.8138310253569, + "y": 982.228089925492, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.31602778; latitude: 28.42888889", + "x": 1899.415933139009, + "y": 1188.7930334704504, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.33126056; latitude: 43.1577925", + "x": 1325.6628474221513, + "y": 463.3532374712481, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.76676139; latitude: 40.70881639", + "x": 1587.0592151009005, + "y": 576.2841019002185, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.17820278; latitude: 35.86219306", + "x": 2010.5317296231738, + "y": 771.9922114064088, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.1010278; latitude: 32.03652444", + "x": 954.9793993837811, + "y": 1043.2370142542172, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.19415778; latitude: 36.48475778", + "x": 1091.1052579661741, + "y": 814.9590369590269, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.25203111; latitude: 37.77809583", + "x": 1500.594913327806, + "y": 739.007515628512, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −154.7189806; latitude: 63.10577694", + "x": 292.139899014859, + "y": 1218.553664721694, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.08593333; latitude: 44.01597222", + "x": 1183.5395376856345, + "y": 419.4081473604906, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.76340361; latitude: 40.19349528", + "x": 1981.599397622986, + "y": 544.2370087981553, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.75242444; latitude: 41.7859825", + "x": 1543.507787927815, + "y": 523.2062182416316, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.30341; latitude: 45.10097556", + "x": 1434.4705308619257, + "y": 356.39407241871004, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.36584778; latitude: 34.79193917", + "x": 1929.987370473604, + "y": 844.7182706422172, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.75120556; latitude: 32.33313333", + "x": 1542.9664104764063, + "y": 1024.1150804357837, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.3563056; latitude: 37.27938889", + "x": 1044.6052460381898, + "y": 771.0702732373795, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.97666667; latitude: 35.04241667", + "x": 1480.1217442013283, + "y": 885.2955300792382, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.5681889; latitude: 37.38048056", + "x": 223.22723028572182, + "y": 639.7353198048249, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.7508064; latitude: 39.00030889", + "x": 277.00354809816156, + "y": 565.220782345822, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.79364528; latitude: 42.178295", + "x": 1232.2335411840781, + "y": 516.3685750370323, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.51663889; latitude: 40.82141667", + "x": 1752.2638157286233, + "y": 550.4592622842838, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.23861111; latitude: 26.17583333", + "x": 1118.1910023499984, + "y": 1357.1289224856769, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.18932667; latitude: 44.63687972", + "x": 1440.1618584797718, + "y": 380.43379938797625, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.8734978; latitude: 42.37422778", + "x": 205.29813040587544, + "y": 361.0231517913653, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.76105556; latitude: 37.64688889", + "x": 2048.9273468506617, + "y": 667.6230873117886, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.82124167; latitude: 41.70331694", + "x": 1579.863735862827, + "y": 524.2429292273364, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.26465056; latitude: 41.50998278", + "x": 2062.5934302773, + "y": 455.3506179488004, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.39397611; latitude: 32.30064417", + "x": 1646.4622570009572, + "y": 1016.6308777153565, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.80325528; latitude: 31.08490917", + "x": 1767.9458761786268, + "y": 1066.9809076053996, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.91631417; latitude: 39.6429075", + "x": 1863.6790015391373, + "y": 596.003060782874, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.22486111; latitude: 39.58897222", + "x": 1693.7868301611836, + "y": 623.962654619769, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.03861111; latitude: 43.77483333", + "x": 1147.5295128897844, + "y": 431.49263298196274, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.67083278; latitude: 39.14096722", + "x": 1197.2980573301559, + "y": 676.6690857647377, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.20287889; latitude: 39.09575472", + "x": 1336.84670181915, + "y": 677.4978668394251, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −152.3006756; latitude: 63.880565", + "x": 311.76952249004523, + "y": 1204.1812248770805, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.07919444; latitude: 32.37388889", + "x": 1834.3864400179123, + "y": 989.3679377029382, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.2975908; latitude: 38.55389694", + "x": 210.5212402308406, + "y": 572.0835530370841, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −71.43705583; latitude: 42.93451639", + "x": 2150.1643795548193, + "y": 356.21929788769467, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.1518561; latitude: 35.05936472", + "x": 291.46163969829274, + "y": 783.308903290276, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.29055556; latitude: 25.79325", + "x": 1968.7193240350043, + "y": 1316.5644205740161, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.358039; latitude: 48.415769", + "x": 1036.3102552535593, + "y": 184.52966357212017, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.3539375; latitude: 45.06198611", + "x": 1322.0168584089813, + "y": 363.37813686784784, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.39586; latitude: 40.24234806", + "x": 1643.4566664199915, + "y": 595.1502032710052, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.88750028; latitude: 36.90922083", + "x": 1270.4105914183494, + "y": 794.4890526452709, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.1915236; latitude: 35.50592944", + "x": 254.23191085454778, + "y": 749.9813389213668, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.07222222; latitude: 39.36780556", + "x": 2056.674298137629, + "y": 572.7586525793399, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.91778778; latitude: 42.11272639", + "x": 1343.1501032872343, + "y": 517.9065760799413, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.98654611; latitude: 43.65004111", + "x": 1262.5091638655958, + "y": 438.67384960660365, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.29237917; latitude: 39.92749806", + "x": 2080.463594022556, + "y": 536.9920872270977, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.95811444; latitude: 44.52524444", + "x": 1114.14724643433, + "y": 391.1798930828136, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.592735; latitude: 39.12324111", + "x": 1280.8989258048468, + "y": 677.2821998989748, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.89658333; latitude: 42.94722222", + "x": 1532.729849019206, + "y": 462.70553739766, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.23822306; latitude: 43.16948806", + "x": 1594.4507610540843, + "y": 445.1345715415464, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.349955; latitude: 36.8948525", + "x": 1829.465664137731, + "y": 748.7844119943591, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −157.0962561; latitude: 21.15288583", + "x": 728.4915419918937, + "y": 1271.5959087497915, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.91561611; latitude: 35.59987944", + "x": 1522.919701011009, + "y": 852.8241205817778, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.36164889; latitude: 35.65773028", + "x": 1251.1949181916987, + "y": 860.8124567189514, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.91874333; latitude: 44.22164528", + "x": 1302.124412566778, + "y": 407.98297114291563, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.06906861; latitude: 31.09466", + "x": 1399.9114819963315, + "y": 1097.7678449372925, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.67252778; latitude: 25.99502778", + "x": 1902.1798618476628, + "y": 1316.5694953763084, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.64580556; latitude: 28.10275", + "x": 1932.7073174557981, + "y": 1200.7297487401916, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.78346278; latitude: 34.88240194", + "x": 1233.5041682356855, + "y": 901.8443630353611, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.11227778; latitude: 41.196", + "x": 1219.8933723141552, + "y": 568.1946734531043, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −113.0124564; latitude: 38.4266325", + "x": 536.8977523114754, + "y": 652.8455229199649, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.50753917; latitude: 41.44852639", + "x": 1438.0466185713412, + "y": 548.6912291090857, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.24061111; latitude: 33.15419444", + "x": 1778.3042655866914, + "y": 955.7831876569262, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −162.0690456; latitude: 61.8659225", + "x": 228.76876167967703, + "y": 1237.1610390461308, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −105.8862397; latitude: 46.42795972", + "x": 867.1531579094133, + "y": 274.6773797150563, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −68.68556194; latitude: 45.64783611", + "x": 2210.7726866150488, + "y": 191.3148336380582, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.03768778; latitude: 32.51086556", + "x": 1398.208456851927, + "y": 1023.2907227480225, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −150.6441297; latitude: 64.99756472", + "x": 324.0665697092279, + "y": 1183.2110366319348, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.8377722; latitude: 37.62404861", + "x": 295.38411014185635, + "y": 644.8244362402081, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.56256861; latitude: 35.39730333", + "x": 1706.987600167704, + "y": 845.5817516053439, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.82947833; latitude: 41.50871472", + "x": 2116.8968485029473, + "y": 442.3467900699402, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.82234028; latitude: 44.45006611", + "x": 1230.9042970029236, + "y": 396.8341694205724, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.41487472; latitude: 40.79935", + "x": 2065.3459397237166, + "y": 493.2198160041512, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −123.1359444; latitude: 45.19444444", + "x": 237.37223644208677, + "y": 215.94492970959345, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.71445611; latitude: 36.99282694", + "x": 1401.7238246115137, + "y": 786.3378996652948, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.20866667; latitude: 33.58711111", + "x": 1905.083433595616, + "y": 913.5179572898669, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.63844056; latitude: 45.12665028", + "x": 1532.4693769003975, + "y": 347.7839275110405, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.06347222; latitude: 40.61625", + "x": 1732.456281910997, + "y": 564.1703393720554, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.380235; latitude: 35.54537222", + "x": 1713.6908233854617, + "y": 836.8846929555491, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.1486375; latitude: 31.66592639", + "x": 1128.9418737029807, + "y": 1070.2988720600372, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.99761444; latitude: 38.59163472", + "x": 1426.931986920399, + "y": 700.4717082495056, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.34213056; latitude: 38.61102222", + "x": 1291.452713262353, + "y": 704.1950578558838, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.24283333; latitude: 30.69141667", + "x": 1572.304192816269, + "y": 1108.3643479973177, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.9544214; latitude: 37.62581722", + "x": 211.2170355649646, + "y": 623.108925809576, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.737485; latitude: 43.62166833", + "x": 1648.2977934933008, + "y": 415.21771634669176, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.37544944; latitude: 36.17939639", + "x": 1751.3348995339768, + "y": 798.2811409572219, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.2803339; latitude: 48.25937778", + "x": 1038.5831520484624, + "y": 192.77967931938792, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −163.6820594; latitude: 62.09536222", + "x": 215.61539082681045, + "y": 1231.1359607809152, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.96763611; latitude: 45.56651667", + "x": 1225.4679263285109, + "y": 338.30819037566425, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.12589472; latitude: 32.7995775", + "x": 1524.7482237960749, + "y": 1000.8412091132855, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.90919694; latitude: 35.13886306", + "x": 1355.4620224449964, + "y": 886.1784340854215, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.37887833; latitude: 41.1374775", + "x": 2024.5459667754678, + "y": 484.12960728464714, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.69133028; latitude: 38.35243722", + "x": 1155.5111696460247, + "y": 717.8409026112515, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.56232944; latitude: 44.203505", + "x": 2092.3400200764054, + "y": 302.21115243260556, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.511075; latitude: 40.94661389", + "x": 1400.2723559401675, + "y": 577.2059282641617, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.65246389; latitude: 40.52034556", + "x": 1435.1679167857558, + "y": 597.9391703237793, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.69553944; latitude: 35.91898806", + "x": 2070.921409467496, + "y": 756.3176629184031, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.89706389; latitude: 39.84348556", + "x": 1625.9569164671177, + "y": 618.2645709950359, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.395361; latitude: 46.353639", + "x": 1535.6002667851947, + "y": 283.04719627730356, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.88002778; latitude: 32.09577778", + "x": 1801.5326965732374, + "y": 1008.8599672358557, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.52007667; latitude: 36.00897944", + "x": 1621.4572349611979, + "y": 822.518709381035, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.98458139; latitude: 39.40193278", + "x": 1942.00190403562, + "y": 594.7437271534438, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.17891667; latitude: 35.55413889", + "x": 1596.1637195185135, + "y": 849.1060198987138, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −104.0166944; latitude: 30.37147222", + "x": 863.2277128179996, + "y": 1124.1269550651373, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.66059611; latitude: 34.73355028", + "x": 2043.9055507558871, + "y": 826.036870172815, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −149.8461614; latitude: 61.21437861", + "x": 334.581043508863, + "y": 1252.2185693838192, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.23198583; latitude: 42.88532917", + "x": 1444.164074702301, + "y": 472.4477674576824, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.61073639; latitude: 35.82149222", + "x": 1827.3323197812024, + "y": 806.5128851857407, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.8429478; latitude: 36.5869825", + "x": 161.27323640471263, + "y": 666.3772448800307, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.97563889; latitude: 33.12936111", + "x": 1268.907078406024, + "y": 994.0955649378834, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.61023222; latitude: 34.74532028", + "x": 1581.7944858760975, + "y": 893.3030701757004, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.33751361; latitude: 43.13985778", + "x": 1477.2715281606174, + "y": 456.8498917259262, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −114.0905556; latitude: 46.91630556", + "x": 578.3688883673873, + "y": 206.13084825910573, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.2169225; latitude: 44.88054694", + "x": 1327.3547924813058, + "y": 372.74288936836456, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.84554583; latitude: 44.93582722", + "x": 2000.7711181370996, + "y": 284.580471745066, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.79501389; latitude: 41.70164917", + "x": 2040.245242185652, + "y": 450.11078771665643, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.25802778; latitude: 29.99338889", + "x": 1484.233147869147, + "y": 1151.3334628922203, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.05137806; latitude: 24.72614083", + "x": 1941.6236180699436, + "y": 1376.9397962920898, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −107.8938333; latitude: 38.50886722", + "x": 742.9411993120455, + "y": 680.0249526827224, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −131.5780675; latitude: 55.13104528", + "x": 528.5214927706888, + "y": 1325.8738876094123, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.41376556; latitude: 39.32566333", + "x": 2004.5548070736897, + "y": 586.3174698059552, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.27923833; latitude: 39.47793722", + "x": 1533.0540679394715, + "y": 646.4041644821546, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −71.92039972; latitude: 41.07694333", + "x": 2156.892018039307, + "y": 455.7060330915474, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.01834917; latitude: 36.63074861", + "x": 1886.312540331723, + "y": 753.6880417575212, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.68058472; latitude: 44.1287725", + "x": 1535.4977947235016, + "y": 400.08453062970057, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −155.6681072; latitude: 20.00132694", + "x": 799.0021924832932, + "y": 1331.412226065205, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.14821639; latitude: 41.36786333", + "x": 1413.3519173812917, + "y": 554.2994701774423, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.35104028; latitude: 31.45805306", + "x": 1608.5499671078019, + "y": 1064.8088885371594, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.71025; latitude: 44.96905556", + "x": 1234.9998549854415, + "y": 369.59446006835196, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −106.0460533; latitude: 37.52855833", + "x": 811.9473834798266, + "y": 740.202527805408, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.61400444; latitude: 44.53460806", + "x": 2086.230145795225, + "y": 285.82052734644094, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −67.47861111; latitude: 44.70311111", + "x": 2267.7103776068607, + "y": 225.8141402550291, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.85847917; latitude: 38.32335444", + "x": 1514.5162049406335, + "y": 709.0813346996272, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −70.6143325; latitude: 41.39302583", + "x": 2201.8965329754665, + "y": 426.4585948023855, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.01159694; latitude: 37.75313528", + "x": 1510.5196404796077, + "y": 739.6122905946745, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.03442194; latitude: 43.11092694", + "x": 1526.7740464390363, + "y": 454.5603365415668, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.3201897; latitude: 47.20770806", + "x": 398.6672458268499, + "y": 150.8055265067942, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.55295722; latitude: 36.459735", + "x": 1865.828169678166, + "y": 766.2706837501157, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.060175; latitude: 32.78160556", + "x": 1134.139192768045, + "y": 1011.6813785853008, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.10940833; latitude: 43.91340167", + "x": 1257.74516680463, + "y": 424.87471776109714, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.39527778; latitude: 39.53102778", + "x": 1687.3989257908597, + "y": 627.838151872498, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.15456944; latitude: 35.89444444", + "x": 1469.8085447230828, + "y": 840.8426693100819, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.16708333; latitude: 42.22611111", + "x": 1410.3163596569066, + "y": 509.12549887559, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.1395664; latitude: 32.81573306", + "x": 307.259818269972, + "y": 908.4563197264742, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −142.686775; latitude: 61.33567417", + "x": 396.69116603742503, + "y": 1242.710113635811, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −116.1017497; latitude: 44.88879556", + "x": 485.32081000138237, + "y": 295.38168155866606, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.92833333; latitude: 33.67975", + "x": 1958.836611224178, + "y": 899.1721855873757, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −166.2706083; latitude: 60.37142", + "x": 187.96608257993796, + "y": 1258.6647580928643, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.569825; latitude: 39.09777278", + "x": 207.51756851794119, + "y": 541.4453973503446, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.63021389; latitude: 39.85416833", + "x": 1199.181820030964, + "y": 638.985601896873, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.3253339; latitude: 32.50984389", + "x": 554.2790736570313, + "y": 972.8357804575376, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.67914389; latitude: 40.49037278", + "x": 1630.8833281205882, + "y": 583.3582074138917, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.39403667; latitude: 42.27230778", + "x": 2048.628379551372, + "y": 417.3174068432895, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.2148825; latitude: 42.59264528", + "x": 1976.7211886024609, + "y": 415.93781302076604, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.54972972; latitude: 41.27118222", + "x": 2130.5171772758413, + "y": 451.8597248343467, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.31450139; latitude: 40.94752444", + "x": 2067.4193634739913, + "y": 484.7084339792855, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.43026306; latitude: 40.20404833", + "x": 2033.168735737676, + "y": 532.7071704834334, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.17764167; latitude: 40.0667825", + "x": 2083.2344297642844, + "y": 528.7892847520975, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.43605583; latitude: 40.99778111", + "x": 1985.623487981534, + "y": 500.0253872346534, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.80725; latitude: 39.93427778", + "x": 2060.418947120552, + "y": 541.2267569136188, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.41595639; latitude: 42.30258", + "x": 2009.9225351914372, + "y": 424.41629057880255, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −105.5975; latitude: 36.80030556", + "x": 826.4125269167437, + "y": 780.4113722155805, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.43290444; latitude: 44.15838611", + "x": 2061.274387455384, + "y": 312.32120108734534, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.44457083; latitude: 41.74324028", + "x": 1977.2593039513904, + "y": 461.58238014199924, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −107.2978142; latitude: 34.09450778", + "x": 739.2828496090636, + "y": 914.5822655862742, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.25148139; latitude: 41.51533861", + "x": 2025.0924059417448, + "y": 463.5845652189714, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.93000528; latitude: 40.96667472", + "x": 1889.986912440778, + "y": 520.3614110199178, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.70141111; latitude: 41.62249167", + "x": 2044.7147158078778, + "y": 453.3771005383651, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.39651139; latitude: 41.72790028", + "x": 1941.2439461563768, + "y": 469.7367512698661, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.97864139; latitude: 40.56626889", + "x": 2046.4434514498885, + "y": 510.1541032569676, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.67085306; latitude: 40.26040083", + "x": 2023.2213940232868, + "y": 531.833682536876, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.73656222; latitude: 40.58286278", + "x": 2055.5593464414906, + "y": 507.19358718133344, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.16067889; latitude: 41.03587167", + "x": 2034.0451253436952, + "y": 487.5182376218281, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.76974472; latitude: 39.83052639", + "x": 2024.1921301002048, + "y": 554.8638028679984, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.06446167; latitude: 42.52476694", + "x": 2020.563858299079, + "y": 410.05957764568575, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.26702972; latitude: 40.13647333", + "x": 2040.2586598362316, + "y": 534.7980882394636, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.64326778; latitude: 39.97295167", + "x": 1949.6393272100943, + "y": 562.5256194394583, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.73235278; latitude: 41.57698222", + "x": 2081.9305588434254, + "y": 447.1605567940478, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.28709472; latitude: 41.28759361", + "x": 2064.4007805711594, + "y": 466.9796731197889, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.74954917; latitude: 39.90415167", + "x": 2063.0104362070124, + "y": 542.2707520918952, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.55245611; latitude: 40.83692306", + "x": 1982.883056376913, + "y": 509.27114468958007, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.75773444; latitude: 39.66746889", + "x": 2065.465042639037, + "y": 554.5396242086472, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.45840722; latitude: 41.59720444", + "x": 2054.2152530038165, + "y": 452.56771234376356, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.01942056; latitude: 40.58757389", + "x": 2044.6281799563503, + "y": 509.4085805202849, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.60179472; latitude: 40.21394333", + "x": 2065.0894525841204, + "y": 525.0070746617253, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.37737583; latitude: 41.72787111", + "x": 2055.7284149686993, + "y": 445.1429476777171, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −163.0088889; latitude: 64.55305556", + "x": 227.41743597759893, + "y": 1187.2164398202303, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.58333333; latitude: 39.99472222", + "x": 2029.6001846864228, + "y": 544.8107812974254, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.85101; latitude: 36.43722083", + "x": 1894.9077758797243, + "y": 762.5987525308926, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.41968472; latitude: 36.43243111", + "x": 1830.343087894761, + "y": 773.3846068718512, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.62981028; latitude: 48.78388139", + "x": 1167.403723806867, + "y": 170.27346210560245, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.51287889; latitude: 46.01247194", + "x": 1132.7795068018736, + "y": 313.76762941300194, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.93174222; latitude: 47.79123306", + "x": 1084.9733444691105, + "y": 219.3644306747624, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.0475944; latitude: 48.66758278", + "x": 1012.9796452278483, + "y": 170.0574262691557, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.32788111; latitude: 48.0313875", + "x": 1142.0909863750019, + "y": 208.76488143392953, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.28371; latitude: 46.34663556", + "x": 1141.5421282341651, + "y": 296.5209503172928, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.2450028; latitude: 46.21830472", + "x": 1070.221125254761, + "y": 300.77803935287056, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.3229389; latitude: 46.359725", + "x": 995.3924619009376, + "y": 289.2149572609187, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.0273681; latitude: 47.35305", + "x": 1044.980841005652, + "y": 240.29369007777677, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.02825694; latitude: 30.04242056", + "x": 1494.4605722522258, + "y": 1148.1273764509529, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −71.75369056; latitude: 43.77923806", + "x": 2127.2745552156784, + "y": 316.2753842969091, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.64890417; latitude: 43.13472111", + "x": 1991.8541877270552, + "y": 383.4978761453108, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.87027778; latitude: 35.35666667", + "x": 1483.564690522737, + "y": 868.4435925090406, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.89320583; latitude: 39.84914444", + "x": 1069.2578646864495, + "y": 636.1587936872697, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −158.0731889; latitude: 64.72981944", + "x": 266.2543901972795, + "y": 1187.7990779203244, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.30486472; latitude: 37.85206528", + "x": 1293.6781119062796, + "y": 744.2906287671394, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.32955111; latitude: 42.99821222", + "x": 2042.4016866790562, + "y": 379.5037020141872, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.3543767; latitude: 39.82073556", + "x": 264.443885714055, + "y": 517.1817439477823, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.2411683; latitude: 40.28235278", + "x": 236.70649762976893, + "y": 484.5313542317381, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.9933611; latitude: 39.17903", + "x": 192.25461053182676, + "y": 532.7420419369419, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −123.2664025; latitude: 39.79015444", + "x": 152.21090502221978, + "y": 487.6086769155281, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.64994417; latitude: 35.75703083", + "x": 1281.1251181216178, + "y": 855.2524951967539, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.6968669; latitude: 37.48743556", + "x": 219.5552976912303, + "y": 632.9114089706131, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −123.8136397; latitude: 40.08597806", + "x": 135.81531157131394, + "y": 466.4086879490319, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.0030833; latitude: 39.22402778", + "x": 231.26077138957373, + "y": 540.9982395571233, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −123.9275531; latitude: 40.7193", + "x": 141.1754760216429, + "y": 433.0812323169198, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −123.6683894; latitude: 41.04290778", + "x": 155.84387465348686, + "y": 419.65329309197523, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.4145556; latitude: 38.03042306", + "x": 238.07922358068595, + "y": 608.1112118707233, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.1065375; latitude: 37.95825861", + "x": 288.92127372279117, + "y": 625.0311033462149, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.0520314; latitude: 36.58826667", + "x": 314.1652907422599, + "y": 705.6668177261295, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.8002089; latitude: 37.75634472", + "x": 219.1148223919223, + "y": 618.0798215654804, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −123.3722844; latitude: 39.45129778", + "x": 143.0766060973774, + "y": 503.58339214776424, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.8994397; latitude: 38.65352083", + "x": 149.4706880379008, + "y": 549.4128808448249, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.4498483; latitude: 36.66633917", + "x": 258.62292097744614, + "y": 687.8635305699836, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.90871194; latitude: 34.70839417", + "x": 1057.4698076086684, + "y": 907.6116086631525, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.1466508; latitude: 39.72124194", + "x": 194.1073349101364, + "y": 503.49162289975175, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.8720772; latitude: 38.67387639", + "x": 189.77003254696206, + "y": 559.7782193682742, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.1073289; latitude: 36.39883833", + "x": 269.0426908519297, + "y": 705.042637820266, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.1579303; latitude: 39.00408444", + "x": 300.2219934098571, + "y": 570.8638970138977, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.2270903; latitude: 36.85708306", + "x": 1007.4955947013782, + "y": 791.5525666884248, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.4530739; latitude: 41.47487", + "x": 207.79114799239449, + "y": 411.10143411096396, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.71862944; latitude: 35.48201417", + "x": 1193.913080391503, + "y": 870.0712593166702, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −123.7537347; latitude: 39.26203778", + "x": 125.55707088640224, + "y": 508.7950442956608, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.6091328; latitude: 39.12655889", + "x": 206.39758452415276, + "y": 539.5577560610886, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.74899722; latitude: 36.79058417", + "x": 1151.647149213638, + "y": 800.362443749327, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.92197; latitude: 40.7457", + "x": 179.49533171808525, + "y": 443.001599189412, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.2257094; latitude: 38.26241917", + "x": 288.0843142790952, + "y": 608.250897333131, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.1663339; latitude: 41.55267139", + "x": 294.69957898411565, + "y": 430.5528803851971, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.9922217; latitude: 38.7743525", + "x": 147.6534428722764, + "y": 542.2294751068043, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.9871642; latitude: 38.68407028", + "x": 224.45991681722512, + "y": 568.7289413971625, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.3086825; latitude: 36.11253667", + "x": 1127.5374765130396, + "y": 835.6951593762506, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.0418439; latitude: 37.51077", + "x": 245.9331034023901, + "y": 638.5514958030101, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.6055406; latitude: 38.2578325", + "x": 155.1235900027184, + "y": 572.8253311101516, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.7939075; latitude: 38.37680111", + "x": 227.8257383972276, + "y": 586.4503683221651, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.3594331; latitude: 41.88738", + "x": 254.52903638398197, + "y": 401.5702109564663, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.4080642; latitude: 40.57487278", + "x": 196.44327200760722, + "y": 457.27407059629604, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.6941889; latitude: 40.98320111", + "x": 191.57640759051674, + "y": 433.44599064748263, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.7023889; latitude: 38.1935", + "x": 189.60328276193582, + "y": 586.0948206536682, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.4333136; latitude: 41.01877417", + "x": 239.65192796530448, + "y": 445.0195008775281, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.61213778; latitude: 34.82916444", + "x": 2003.1253341548472, + "y": 829.0894105769182, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.2207167; latitude: 37.72129083", + "x": 162.4629779858003, + "y": 604.4202312007799, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.7624492; latitude: 36.68190278", + "x": 165.84626192920427, + "y": 662.4418219559266, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.84978306; latitude: 27.26282306", + "x": 1930.326387512409, + "y": 1245.470313154658, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −156.8610575; latitude: 66.90917056", + "x": 277.43657239826223, + "y": 1148.4620988385493, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.22416667; latitude: 29.17261111", + "x": 1852.3489525104847, + "y": 1156.5750129828411, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.70954167; latitude: 31.57802778", + "x": 1281.6075498287369, + "y": 1075.6090026815762, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.9090525; latitude: 44.8735825", + "x": 1523.6478815675646, + "y": 361.8672924503712, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.04981306; latitude: 35.57046806", + "x": 2018.8768915094024, + "y": 786.0347398698127, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.3870892; latitude: 31.92056722", + "x": 941.9614572866653, + "y": 1048.4942451000497, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.95236111; latitude: 41.62425", + "x": 1109.6186723688222, + "y": 543.8165732832026, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.052585; latitude: 41.93344861", + "x": 1646.7072528572571, + "y": 504.93269974290706, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.8164444; latitude: 39.10994444", + "x": 1030.5448274059102, + "y": 673.494299587393, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.69008056; latitude: 45.30858944", + "x": 1346.0783336932714, + "y": 349.69470063572317, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.43511111; latitude: 41.98546389", + "x": 1168.825894707682, + "y": 526.1260224692592, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.43601028; latitude: 37.7080325", + "x": 1980.9631404288737, + "y": 678.3914321176414, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.7689444; latitude: 41.11961111", + "x": 998.7152847696611, + "y": 565.3817985069754, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.85891667; latitude: 33.46094444", + "x": 1878.3476116553911, + "y": 924.648794877709, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.012175; latitude: 41.19594417", + "x": 601.4546085322935, + "y": 515.61134918376, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −156.4304578; latitude: 20.89864972", + "x": 761.2472775103128, + "y": 1284.7946226709332, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.36708806; latitude: 46.84547028", + "x": 1462.6057735118432, + "y": 263.1622902536101, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.46549917; latitude: 44.68185361", + "x": 1981.231851454019, + "y": 302.5845777319014, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.06791667; latitude: 41.37427778", + "x": 1688.2047538363458, + "y": 529.6282890244611, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.55122722; latitude: 41.24476583", + "x": 1747.7664472433428, + "y": 528.5244537508652, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.82833333; latitude: 41.63674333", + "x": 1734.192699017822, + "y": 509.54865001260487, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.52411167; latitude: 42.56655417", + "x": 2002.884820561568, + "y": 411.71802197070247, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.5394236; latitude: 39.83378278", + "x": 1043.5055463339734, + "y": 635.8281930655221, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.73758583; latitude: 38.84760194", + "x": 1275.265144900573, + "y": 691.934523235522, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.3515075; latitude: 33.21797639", + "x": 302.9418259349891, + "y": 885.7389939118152, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.60073389; latitude: 35.39308833", + "x": 1156.5599985403553, + "y": 874.3133586376503, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.05899; latitude: 40.5281775", + "x": 1615.7660399896363, + "y": 582.9675243013266, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.94869444; latitude: 35.66813889", + "x": 1226.4441878190644, + "y": 860.3523241140765, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.3550278; latitude: 41.40097222", + "x": 976.8242010606268, + "y": 549.1029561688852, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.14444444; latitude: 39.14352139", + "x": 1938.259637902798, + "y": 609.3648414042293, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.83816667; latitude: 32.96672222", + "x": 1797.0322786944662, + "y": 963.1847892591368, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −68.67433333; latitude: 44.9525", + "x": 2221.4963337191098, + "y": 226.13016732117148, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.371685; latitude: 42.24006611", + "x": 1899.124888957479, + "y": 450.3570329098925, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −105.5750536; latitude: 48.09451778", + "x": 887.0828513606873, + "y": 189.49439351906358, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.9022083; latitude: 46.9705", + "x": 271.5707445696296, + "y": 129.2229285711901, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −110.8478889; latitude: 31.41772222", + "x": 566.040261562823, + "y": 1032.9043739286114, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.34263889; latitude: 41.448", + "x": 1171.9984427295199, + "y": 554.5280575196252, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.78683333; latitude: 34.97875", + "x": 1488.3932112731322, + "y": 888.1314365448807, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.17643278; latitude: 38.72182722", + "x": 1540.442745580111, + "y": 685.902791008835, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.97447833; latitude: 42.68084472", + "x": 1378.2428239927087, + "y": 486.6314893943945, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.89417306; latitude: 41.30251861", + "x": 1228.4110039510222, + "y": 562.5727342981181, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −165.4452458; latitude: 64.51220222", + "x": 208.34696373012196, + "y": 1185.0143798050938, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.04561028; latitude: 38.24721639", + "x": 1951.0632306055322, + "y": 655.1642462286368, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.5180503; latitude: 48.46440222", + "x": 407.79799098986007, + "y": 85.77260604502408, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.11380556; latitude: 29.30113889", + "x": 1901.5243986070175, + "y": 1142.3006540277813, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.70831694; latitude: 44.07721306", + "x": 1385.099435423797, + "y": 412.79146440386603, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.68805556; latitude: 42.46988889", + "x": 1121.1417454299108, + "y": 499.5489157283373, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −106.9031389; latitude: 34.02247222", + "x": 755.7149012007562, + "y": 920.3368222997372, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.013635; latitude: 44.02052417", + "x": 442.33876285901965, + "y": 332.60613513616954, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −124.0579167; latitude: 44.58036111", + "x": 195.43431145655995, + "y": 237.0249145876037, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.6011944; latitude: 34.056", + "x": 302.3101937159877, + "y": 840.249147304881, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.81916667; latitude: 33.35088056", + "x": 1101.8278950267509, + "y": 980.8440602225835, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.16105861; latitude: 42.09860472", + "x": 1718.1108289898411, + "y": 487.17350533453464, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.49388278; latitude: 41.22614944", + "x": 1361.2164707492807, + "y": 564.0798356723176, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −135.451805; latitude: 58.11215944", + "x": 474.77653139881687, + "y": 1285.581957819585, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −165.1139636; latitude: 60.53337639", + "x": 198.74006219772536, + "y": 1257.555426796337, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.27838889; latitude: 25.907", + "x": 1968.3192309254805, + "y": 1310.6503549234496, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.099375; latitude: 30.55840556", + "x": 1399.7133528461698, + "y": 1125.9549041910527, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.26315222; latitude: 32.95458861", + "x": 1735.4361275125907, + "y": 971.9442601063381, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −71.41215333; latitude: 41.5971525", + "x": 2169.116546014008, + "y": 424.12625947993774, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.73880472; latitude: 42.050075", + "x": 1427.2995723736528, + "y": 517.5170892606493, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.8205006; latitude: 45.814825", + "x": 363.2901375746809, + "y": 216.8516901409157, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.85605139; latitude: 48.01592194", + "x": 1335.3020277440858, + "y": 208.73807857787506, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.06279667; latitude: 42.99026444", + "x": 1221.8896794353748, + "y": 473.59548696328284, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.90446417; latitude: 41.979595", + "x": 1536.7686596528251, + "y": 513.5377664928169, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.28860667; latitude: 42.57011889", + "x": 2123.4859176227287, + "y": 382.97421381512413, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.20122222; latitude: 36.89461111", + "x": 2039.4811641893523, + "y": 710.3147903085928, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.80091667; latitude: 30.06916667", + "x": 1323.7985353018396, + "y": 1154.0646260224169, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −71.87570944; latitude: 42.26733944", + "x": 2142.816340875336, + "y": 394.48024898991844, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −152.8461011; latitude: 57.8853775", + "x": 309.2927824856581, + "y": 1314.4888029240901, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.33294444; latitude: 28.54547222", + "x": 1897.70826834634, + "y": 1182.895596165541, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.9137961; latitude: 48.70816", + "x": 296.39663593764965, + "y": 42.42004328041912, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −141.9291369; latitude: 62.96133361", + "x": 397.8214941826666, + "y": 1212.1509450090716, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −161.0277908; latitude: 66.82852667", + "x": 247.289176818811, + "y": 1147.6883337831428, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.38036389; latitude: 44.45260972", + "x": 1693.3265592677583, + "y": 365.5216978836529, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.55705944; latitude: 43.98436639", + "x": 1503.3748460876448, + "y": 410.36821398011534, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.07302778; latitude: 40.07977778", + "x": 1735.9258494306675, + "y": 592.299198037281, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.54201722; latitude: 33.09025889", + "x": 1505.5486126214969, + "y": 986.8372845398453, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.57920917; latitude: 43.65506611", + "x": 1240.1528107707702, + "y": 438.578271829203, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −124.2460278; latitude: 43.41713889", + "x": 170.83984707826653, + "y": 293.4298014939577, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.44793972; latitude: 41.10659611", + "x": 1363.2457931353445, + "y": 570.319588588874, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −162.5985497; latitude: 66.88467694", + "x": 236.12602684924894, + "y": 1145.337256902986, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.47212861; latitude: 35.24556444", + "x": 1161.8796861674325, + "y": 882.192780327355, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.622; latitude: 39.48775", + "x": 210.9833782567249, + "y": 521.0173293209014, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.60533; latitude: 39.04563667", + "x": 1642.1130171521636, + "y": 658.9324254251808, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.67421833; latitude: 43.16063056", + "x": 1426.5123086421177, + "y": 458.959788962557, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.26061667; latitude: 44.12339722", + "x": 1326.8823652220608, + "y": 412.51772828046023, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.16683333; latitude: 37.74011111", + "x": 1585.9484220320662, + "y": 734.0105717407571, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −71.17310389; latitude: 42.19079694", + "x": 2170.0078723637043, + "y": 391.4915064158554, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.25297222; latitude: 38.53866667", + "x": 1254.5797379802343, + "y": 708.4873629497802, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −69.86647222; latitude: 44.7155", + "x": 2182.493931346829, + "y": 250.3365717111369, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.98202444; latitude: 41.0355825", + "x": 1693.7810862317815, + "y": 546.9425370062995, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.12397222; latitude: 38.31044444", + "x": 2066.8288783038556, + "y": 627.7678003042224, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.13525; latitude: 41.47855556", + "x": 2105.726234644867, + "y": 446.7454960190621, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.7841425; latitude: 39.50203917", + "x": 1672.1339854465643, + "y": 631.2228765289035, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.66473194; latitude: 41.3301875", + "x": 1587.838235230331, + "y": 543.245914610703, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.2072164; latitude: 34.20080083", + "x": 236.9290216066314, + "y": 816.6879500556056, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.11381556; latitude: 41.29888556", + "x": 1336.8960229643494, + "y": 561.0567672940474, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.50263139; latitude: 41.41247778", + "x": 1902.1597913989172, + "y": 494.19689711009096, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.2029719; latitude: 30.73528028", + "x": 990.8350142526808, + "y": 1113.8806644307888, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.98417361; latitude: 42.62950694", + "x": 1683.0975517337206, + "y": 463.55558524031267, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.8673778; latitude: 32.45005694", + "x": 486.98373799853357, + "y": 964.5220204454008, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −109.8831286; latitude: 31.36399028", + "x": 608.0839414695723, + "y": 1042.164524234721, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.4265278; latitude: 32.93594444", + "x": 553.5205165309786, + "y": 949.9723155776505, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −110.6673611; latitude: 33.35314722", + "x": 589.6401409965755, + "y": 933.4736737086214, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −110.1395656; latitude: 34.93891389", + "x": 624.7070433538266, + "y": 854.1892579172791, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −114.2712222; latitude: 34.15063889", + "x": 443.4739739007281, + "y": 865.1970547691781, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.1940575; latitude: 35.30223222", + "x": 541.6323643238779, + "y": 821.3850021626506, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −109.8946319; latitude: 32.24540278", + "x": 614.3300122505951, + "y": 996.2268638384892, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.54142694; latitude: 40.10840556", + "x": 1874.1964718663316, + "y": 569.2214815013344, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.0351569; latitude: 34.73002111", + "x": 543.1927531173075, + "y": 852.3092253542932, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.83144444; latitude: 40.20972222", + "x": 1861.9497403916541, + "y": 565.9117187429329, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.2815892; latitude: 47.90762861", + "x": 306.29260594935397, + "y": 88.46187377992965, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.77375; latitude: 37.06083333", + "x": 1523.0234577203125, + "y": 775.3813975755702, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −159.6033217; latitude: 21.89686833", + "x": 605.6564501120425, + "y": 1232.2861825399016, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.3392558; latitude: 34.25683639", + "x": 568.4744761905722, + "y": 881.8405288400133, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.1150444; latitude: 37.46111944", + "x": 162.90136758500034, + "y": 618.8386139812981, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −149.0888242; latitude: 61.59474194", + "x": 340.7070894001471, + "y": 1244.78763543028, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.93472028; latitude: 34.17498722", + "x": 1398.9746000472612, + "y": 935.4590662159144, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.40248472; latitude: 45.70895028", + "x": 1428.945002126474, + "y": 324.8249498601813, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.09559417; latitude: 26.68316194", + "x": 1970.1764207284891, + "y": 1269.4681634782278, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −169.6637361; latitude: 56.57735278", + "x": 141.7212327332839, + "y": 1320.0893244700667, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −150.2860608; latitude: 67.23789833", + "x": 324.546942445836, + "y": 1142.172076362683, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.16424167; latitude: 28.00021667", + "x": 1863.9474858890226, + "y": 1216.7860618489565, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.86869444; latitude: 41.51627778", + "x": 1733.5155389034635, + "y": 516.0602887921991, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.01549861; latitude: 44.33368778", + "x": 1484.8690393622587, + "y": 393.3716404569691, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.12374722; latitude: 43.01928889", + "x": 1409.840024578538, + "y": 467.30695661412665, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.30196778; latitude: 33.87560444", + "x": 1727.793104883111, + "y": 923.9649303226934, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.8414444; latitude: 45.69505556", + "x": 396.4875081331222, + "y": 231.62881049582347, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.5975; latitude: 45.58872222", + "x": 262.1394575621549, + "y": 201.6349765111786, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.94588333; latitude: 41.40006667", + "x": 1343.274734179022, + "y": 555.5148390844665, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −136.2362733; latitude: 57.95517222", + "x": 468.24944808055307, + "y": 1290.4090878276602, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.05306083; latitude: 42.63813556", + "x": 1944.8030754250012, + "y": 420.085660311257, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.5107017; latitude: 31.3823575", + "x": 890.1575686482843, + "y": 1073.075023022829, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.51998917; latitude: 28.95419444", + "x": 1108.6974211250968, + "y": 1212.0642243430848, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.68280556; latitude: 30.21208333", + "x": 1689.4883118104324, + "y": 1122.4481518682562, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.4483611; latitude: 36.92611111", + "x": 586.6698813836653, + "y": 741.933101100941, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.99052778; latitude: 26.92019444", + "x": 1880.1848251979222, + "y": 1271.2675405649666, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −151.8315389; latitude: 59.34825944", + "x": 318.2667888357137, + "y": 1287.3582784132245, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.50986028; latitude: 36.06352944", + "x": 1454.3864591243405, + "y": 832.8123327990954, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.38532028; latitude: 35.63523944", + "x": 2004.3248803518704, + "y": 785.4586024122261, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.41975; latitude: 40.47091667", + "x": 1797.719784937994, + "y": 562.4133204961208, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.4929875; latitude: 37.13189556", + "x": 2025.0817311548676, + "y": 700.517735409938, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.31741667; latitude: 39.73530556", + "x": 1091.9651470366928, + "y": 643.0407878277317, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.52620111; latitude: 33.45169472", + "x": 1935.4484938924372, + "y": 915.5578301297046, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.69335528; latitude: 26.78503861", + "x": 1941.5404127080767, + "y": 1268.8433878814437, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.24114083; latitude: 39.87195278", + "x": 2044.289864985624, + "y": 548.2205905815817, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.52886139; latitude: 42.91095778", + "x": 1736.221159313509, + "y": 441.4311834037999, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −166.7993086; latitude: 68.34877417", + "x": 211.27471338492114, + "y": 1114.3106268505012, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.5990603; latitude: 44.04862722", + "x": 1014.4348611393244, + "y": 411.74209514815357, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.38287861; latitude: 36.33822472", + "x": 1542.20693263989, + "y": 812.1956151850738, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.0080556; latitude: 33.43416667", + "x": 532.8719951029232, + "y": 919.905015654565, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.69330556; latitude: 40.66424333", + "x": 1472.4382462042458, + "y": 588.0370409077009, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.33705778; latitude: 31.46714944", + "x": 1520.4450064178611, + "y": 1071.4416368884922, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.68743944; latitude: 27.91076333", + "x": 1840.571609624094, + "y": 1224.8619996879445, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.5958611; latitude: 42.91130556", + "x": 594.6909893747144, + "y": 422.64651068506146, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.34588611; latitude: 26.16621", + "x": 1160.4874330918444, + "y": 1358.4262483119069, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.88244444; latitude: 32.84069444", + "x": 1709.292011577298, + "y": 981.1467434902943, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.285965; latitude: 44.38267694", + "x": 1064.4007076258235, + "y": 396.7729878628943, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.23287083; latitude: 40.49146583", + "x": 1843.8076064542342, + "y": 553.8928785230855, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −163.0053417; latitude: 69.732875", + "x": 240.20240663412898, + "y": 1093.7154619439964, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.36044889; latitude: 37.97788417", + "x": 1495.4253842758867, + "y": 728.7822608902504, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −161.7767367; latitude: 60.70369056", + "x": 228.77057172041197, + "y": 1258.6914711085753, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.43920194; latitude: 39.34510333", + "x": 1806.0389845770824, + "y": 621.3232291694535, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.07313278; latitude: 46.90062583", + "x": 1257.5827286911997, + "y": 268.44355017587577, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.42441806; latitude: 45.95502361", + "x": 1427.389269189243, + "y": 312.0219418183806, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.52452306; latitude: 44.68751861", + "x": 2051.43170695727, + "y": 286.1191116837372, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.99007917; latitude: 40.45076167", + "x": 1658.1539428652836, + "y": 582.3906212642978, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.796715; latitude: 45.5709275", + "x": 1634.0484105603805, + "y": 313.89878562727245, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.24905556; latitude: 33.55883333", + "x": 1646.0204728804806, + "y": 950.0435355848051, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.24083333; latitude: 48.9425", + "x": 1181.0846213329087, + "y": 162.27194627811332, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.0845528; latitude: 34.62938889", + "x": 289.016550288339, + "y": 806.0613102275013, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.84731361; latitude: 38.84047", + "x": 1753.8386488669194, + "y": 655.949963585326, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.11105556; latitude: 26.24713889", + "x": 1973.2276265183164, + "y": 1291.9274870725496, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.91788889; latitude: 40.95025", + "x": 1227.5016188213717, + "y": 581.1693733930533, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.31138694; latitude: 42.22328722", + "x": 2127.1488806717257, + "y": 400.90404740846134, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.75927694; latitude: 35.80843944", + "x": 2028.3657056365264, + "y": 771.2709225991211, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −109.8070944; latitude: 42.79549917", + "x": 698.7829460575393, + "y": 445.6158184225246, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.09976833; latitude: 36.73058417", + "x": 1178.570760191581, + "y": 803.9381184914905, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.01058667; latitude: 40.08194417", + "x": 2050.818873365734, + "y": 535.3941384039763, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.60821611; latitude: 45.55986778", + "x": 1311.9705674590787, + "y": 337.55305338275366, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −67.56438889; latitude: 45.20066667", + "x": 2256.9769803446484, + "y": 201.82400932377004, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −157.5674444; latitude: 57.58038056", + "x": 263.1466534244955, + "y": 1319.2527308629424, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.18744444; latitude: 30.47330556", + "x": 1620.5860469153529, + "y": 1115.6345327516992, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.7817803; latitude: 34.09164833", + "x": 295.1646363108739, + "y": 836.6585319348767, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.32484722; latitude: 36.77394444", + "x": 1459.890936795669, + "y": 794.8740740019698, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.64730556; latitude: 42.74280556", + "x": 1275.9842498794367, + "y": 486.2605695280581, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.88411111; latitude: 41.62661111", + "x": 2075.5879571465275, + "y": 445.97753620223557, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −108.793; latitude: 44.86797222", + "x": 751.7561310789647, + "y": 343.0622033772679, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.9962608; latitude: 35.61298806", + "x": 1013.6050458411888, + "y": 857.7280092756903, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −150.6437925; latitude: 66.81288139", + "x": 322.391911733646, + "y": 1150.0496392237235, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.50900667; latitude: 37.33125778", + "x": 1244.5252621432169, + "y": 772.394041100732, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −170.7105258; latitude: 14.33102278", + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.73413139; latitude: 41.57276194", + "x": 1583.8981502461743, + "y": 530.7706006534563, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.77843111; latitude: 39.63885556", + "x": 1432.7627400291094, + "y": 644.7192213169051, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −68.04479972; latitude: 46.68896", + "x": 2217.4784042690335, + "y": 132.51826487248582, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.52922778; latitude: 30.46278111", + "x": 1560.4243183917938, + "y": 1121.3549759630669, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.30031083; latitude: 43.98330333", + "x": 1213.0087186730436, + "y": 421.33988051440156, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −65.62460583; latitude: 18.339675", + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.6270558; latitude: 35.67288611", + "x": 197.7562039505276, + "y": 726.3597870632373, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.4195833; latitude: 34.65447222", + "x": 526.3395675940699, + "y": 853.4508109957453, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.66961861; latitude: 39.70015944", + "x": 1556.3460298047553, + "y": 632.6458944140993, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.61044583; latitude: 31.84540222", + "x": 1639.3424405552823, + "y": 1041.418754166788, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.15990361; latitude: 41.82801306", + "x": 1295.545287083738, + "y": 534.1587824559106, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.45073194; latitude: 33.63660667", + "x": 1248.0557155680665, + "y": 967.5267836477963, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.08734167; latitude: 40.88439139", + "x": 1923.2828547834533, + "y": 518.5827497874288, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.1190292; latitude: 46.26468028", + "x": 393.79930052230077, + "y": 200.2890977623997, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −66.56301194; latitude: 18.00830278", + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.29292806; latitude: 42.42684667", + "x": 2087.9297368996276, + "y": 399.61420075113165, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −132.9452781; latitude: 56.80165194", + "x": 505.4050073784637, + "y": 1301.354883876807, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.67848167; latitude: 37.13734528", + "x": 1854.9107341128079, + "y": 731.7578524688029, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −70.82327333; latitude: 43.07795889", + "x": 2170.786303367762, + "y": 342.87798056891825, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.70630556; latitude: 31.77969444", + "x": 1237.2958057601538, + "y": 1065.3736634213578, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −116.5062531; latitude: 33.82921556", + "x": 345.7354077757119, + "y": 862.2919817079833, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.2509675; latitude: 28.72751778", + "x": 1212.73765731291, + "y": 1225.4322330245523, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.50738889; latitude: 37.18375833", + "x": 1983.4500115741944, + "y": 706.1552012541745, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.94844639; latitude: 44.67666917", + "x": 2000.0426211512233, + "y": 298.6810118454664, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −158.6318208; latitude: 56.95943333", + "x": 251.94265300476144, + "y": 1329.9891031401826, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.41870917; latitude: 42.66520389", + "x": 1704.3178030876102, + "y": 458.8977988684801, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.33971778; latitude: 29.71081917", + "x": 1436.0321886743272, + "y": 1168.8024204423457, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.73133333; latitude: 37.44855556", + "x": 1276.5050038612546, + "y": 765.8960009968416, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.7462025; latitude: 37.7000175", + "x": 1111.6326670298806, + "y": 751.3213554230365, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −161.8196661; latitude: 59.01135611", + "x": 224.73281489593705, + "y": 1289.5607602016178, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.0627311; latitude: 36.02960778", + "x": 266.1610819682336, + "y": 724.4329914807088, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.55662528; latitude: 40.23957167", + "x": 2027.8761928443084, + "y": 531.9458663359001, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −104.4965722; latitude: 38.28908722", + "x": 878.9498866933441, + "y": 706.3563123913693, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −110.7514183; latitude: 39.61391556", + "x": 637.164968256073, + "y": 606.1116628337998, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.1095833; latitude: 46.74386111", + "x": 470.2440219329716, + "y": 192.69772684982854, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.44439278; latitude: 42.68935583", + "x": 1436.6793210377455, + "y": 483.2346459093819, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −70.22137667; latitude: 42.07199833", + "x": 2207.0635816706836, + "y": 387.8787214525423, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −71.42822111; latitude: 41.72399917", + "x": 2166.8020493782114, + "y": 417.8163460872888, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.753325; latitude: 38.72421806", + "x": 234.14964983421078, + "y": 569.1265770322461, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.44883472; latitude: 36.78014889", + "x": 2030.6670330011057, + "y": 718.348960575805, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.22321694; latitude: 34.71105361", + "x": 1172.0668410557923, + "y": 910.565784664057, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.7233611; latitude: 40.21919444", + "x": 604.0905786084941, + "y": 568.3642956391182, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.7173361; latitude: 34.16814722", + "x": 978.6475315748543, + "y": 932.1663468122281, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.64721556; latitude: 35.53455", + "x": 1154.7232270424026, + "y": 866.8078971278042, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.3817; latitude: 46.7247875", + "x": 1282.579419291181, + "y": 277.27976862652304, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −104.533845; latitude: 48.79030583", + "x": 926.8797219571404, + "y": 157.06798006466124, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.31652778; latitude: 31.48491667", + "x": 1165.7293818540934, + "y": 1080.4875545931843, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.90148083; latitude: 42.11418083", + "x": 1536.2795686931615, + "y": 506.4569877762283, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −70.30875; latitude: 43.64616667", + "x": 2181.6773600880733, + "y": 308.89075121230235, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.7624286; latitude: 47.49275361", + "x": 283.9462805544405, + "y": 104.49485473782397, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.76733333; latitude: 32.51058333", + "x": 1759.9143736335222, + "y": 992.4143467796575, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.34519444; latitude: 34.74213889", + "x": 1889.2579431556476, + "y": 854.3717171985288, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −70.72878778; latitude: 41.90902444", + "x": 2190.4401783990807, + "y": 401.36739586728754, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.7517883; latitude: 36.41200333", + "x": 1026.0150060754218, + "y": 816.0853922459983, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.81288556; latitude: 45.40709667", + "x": 1670.9401377804968, + "y": 317.97983125831433, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.3866831; latitude: 33.92395306", + "x": 949.0663294194578, + "y": 943.1896525890686, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.7814611; latitude: 34.56682472", + "x": 977.1750282755856, + "y": 910.9977378283168, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −106.0464114; latitude: 36.02502306", + "x": 803.5470341082699, + "y": 819.2378379499389, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −108.8506214; latitude: 33.70005472", + "x": 670.2003129238714, + "y": 926.7343092015303, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −123.3827864; latitude: 39.0126775", + "x": 136.08537319440916, + "y": 525.6939428951509, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.2913511; latitude: 39.45544417", + "x": 223.2986224900459, + "y": 526.1677363891044, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.3727333; latitude: 33.54980833", + "x": 948.3444696351148, + "y": 962.9181151138573, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −123.5997589; latitude: 40.49291944", + "x": 150.10325092655444, + "y": 448.2510828058312, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.1926208; latitude: 33.173675", + "x": 954.8410682060472, + "y": 983.2197646214643, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.3190056; latitude: 36.44856139", + "x": 261.1059923391796, + "y": 700.3561472219465, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.4103333; latitude: 34.14547222", + "x": 905.9486896142009, + "y": 928.3369328067113, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −109.3114756; latitude: 34.1286575", + "x": 653.6136841464541, + "y": 901.6119458405778, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −105.895685; latitude: 33.64886139", + "x": 796.7979434202548, + "y": 944.6748890303816, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.330435; latitude: 34.00230056", + "x": 994.7614005500651, + "y": 941.8689626698135, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −104.6197117; latitude: 36.32697806", + "x": 864.5636736396141, + "y": 809.2137140370621, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.5298708; latitude: 36.79891472", + "x": 1036.2416437741977, + "y": 796.1084560597192, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.4644675; latitude: 36.85998861", + "x": 220.3542792579417, + "y": 667.4368190563769, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.4296736; latitude: 38.30491306", + "x": 201.8744443300102, + "y": 583.3671132726031, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.3226947; latitude: 34.56673556", + "x": 954.0744353901484, + "y": 909.52948880283, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −104.643065; latitude: 34.93442472", + "x": 856.9105857008574, + "y": 882.3923862650522, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.8647944; latitude: 38.92111389", + "x": 232.4851486886895, + "y": 557.9074851472124, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.1778889; latitude: 37.86166667", + "x": 245.18551676004893, + "y": 619.1910359560193, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −123.1816953; latitude: 40.54708833", + "x": 166.73175748143126, + "y": 450.19631799937906, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.3712794; latitude: 36.75800528", + "x": 222.72666264718237, + "y": 673.6343270560194, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.6163617; latitude: 39.70960639", + "x": 214.32308442309522, + "y": 509.775289072119, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.4455092; latitude: 38.67601389", + "x": 206.44348927245414, + "y": 564.2749168376859, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −123.2975231; latitude: 40.21125917", + "x": 157.3242471266467, + "y": 465.918176910845, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.5968056; latitude: 37.08158611", + "x": 178.10772210680557, + "y": 643.9128660890904, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.81389806; latitude: 42.76119139", + "x": 1536.7122389902875, + "y": 472.1968847704111, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.4451017; latitude: 33.95187528", + "x": 307.62961943404207, + "y": 847.1119508506104, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.0573708; latitude: 44.04532139", + "x": 959.8562140962968, + "y": 408.27683431228024, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.86819444; latitude: 32.68086111", + "x": 1186.2429353095777, + "y": 1017.7909370614834, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.56836111; latitude: 42.56966667", + "x": 1087.5760329914574, + "y": 493.18330276597226, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −123.3558617; latitude: 43.23878306", + "x": 200.4371250871992, + "y": 312.14444132839753, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.2522903; latitude: 40.15065667", + "x": 196.23941868155612, + "y": 480.5136871687955, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.64125; latitude: 32.92052778", + "x": 1892.2516214821385, + "y": 951.2512611320335, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −155.4698886; latitude: 64.72721556", + "x": 286.59070044023423, + "y": 1188.6960270983504, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.103567; latitude: 44.145094", + "x": 958.5199814250847, + "y": 402.9204277586746, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.18170444; latitude: 41.06554833", + "x": 1608.0246287050695, + "y": 555.2450120333788, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.00186361; latitude: 45.49825694", + "x": 1407.6308595332691, + "y": 337.0600556258223, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.2934019; latitude: 40.50898361", + "x": 199.84086773729314, + "y": 461.85923553225484, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.96525; latitude: 40.3785", + "x": 2010.5192966458203, + "y": 528.1900143112257, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.25986111; latitude: 41.01052778", + "x": 1253.2831796330113, + "y": 577.8753886841469, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.1499633; latitude: 44.25406722", + "x": 294.93428054031733, + "y": 283.45019521315317, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.401167; latitude: 47.961167", + "x": 1174.7535279228166, + "y": 213.05277797649705, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.78747222; latitude: 35.87763889", + "x": 1943.9316406834037, + "y": 783.9398231854941, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −157.3479344; latitude: 61.78764333", + "x": 269.1934673899992, + "y": 1242.088308308018, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −109.2673778; latitude: 45.18744472", + "x": 736.6766769778085, + "y": 324.0747782376261, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.09721111; latitude: 42.19536389", + "x": 1489.991133227788, + "y": 505.8241618711595, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.32304833; latitude: 28.29361694", + "x": 1163.11168569346, + "y": 1247.6884306959882, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.48496889; latitude: 44.58935611", + "x": 1355.0170469968373, + "y": 387.1111782759899, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.46745361; latitude: 45.63119306", + "x": 1463.3623140669297, + "y": 326.70336561589465, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.8197947; latitude: 37.33287306", + "x": 172.7831542001834, + "y": 628.6495704464476, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.31966667; latitude: 37.50516667", + "x": 1987.7390041054143, + "y": 687.9820353164794, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.84282; latitude: 39.75721528", + "x": 1668.2222586838682, + "y": 618.1052351586138, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.0989444; latitude: 38.73643611", + "x": 576.2053110665756, + "y": 643.131530520455, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −107.7269403; latitude: 39.526315", + "x": 756.2803703859126, + "y": 627.4866944736407, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.1024447; latitude: 38.4887975", + "x": 217.2594543937654, + "y": 577.4797561188248, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.2594836; latitude: 33.88057333", + "x": 314.5960134701712, + "y": 852.5620951888955, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −108.4598411; latitude: 43.064235", + "x": 751.5991828247339, + "y": 438.6738955063115, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −69.09925; latitude: 44.06008333", + "x": 2219.491526958562, + "y": 275.5350425656043, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.04461111; latitude: 28.08677778", + "x": 1175.8656757776025, + "y": 1258.6447317509378, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.6212525; latitude: 35.02162639", + "x": 1282.896600142097, + "y": 894.0778760123742, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −109.0651928; latitude: 41.5942175", + "x": 718.1583868081254, + "y": 512.3400659709546, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.68966278; latitude: 35.922295", + "x": 1698.3561906545453, + "y": 818.6824790727239, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.3041853; latitude: 46.305635", + "x": 387.800747945844, + "y": 196.58939430705095, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.40703333; latitude: 43.23379861", + "x": 1999.7132757315521, + "y": 376.44006610650376, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.15801389; latitude: 34.35060111", + "x": 1688.260393570611, + "y": 903.4356913397241, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −150.1428047; latitude: 65.50786222", + "x": 327.4012983724353, + "y": 1173.6687968800356, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.9554525; latitude: 42.25118111", + "x": 1648.4960728743029, + "y": 487.8590940726667, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.84381722; latitude: 35.69870944", + "x": 1651.4344338346662, + "y": 835.8935750150797, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.53806139; latitude: 45.14831139", + "x": 1351.9756857325908, + "y": 357.8881166742649, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −116.9136392; latitude: 33.038905", + "x": 319.46724673247274, + "y": 899.1503133810875, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.7680647; latitude: 39.49857611", + "x": 282.8477812745076, + "y": 539.5295626663947, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.21575; latitude: 47.49313889", + "x": 302.6651388270333, + "y": 109.83045241210266, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.75787528; latitude: 33.76114056", + "x": 1450.704004319991, + "y": 954.7820815236394, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.97542833; latitude: 37.32546833", + "x": 1881.9105809262214, + "y": 717.1817997512521, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.67238389; latitude: 43.11886611", + "x": 1916.6971769866523, + "y": 399.85750311627, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.10686972; latitude: 36.37229667", + "x": 1303.3409291964256, + "y": 822.353998939938, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: 101.378334; latitude: 14.078333", + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: 134.544167; latitude: 7.367222", + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.95298972; latitude: 45.69801389", + "x": 1335.753803570734, + "y": 329.6387404452548, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −104.5305556; latitude: 33.30155556", + "x": 853.9576610057976, + "y": 968.6301727726043, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.69703861; latitude: 48.85603806", + "x": 1234.842815022114, + "y": 167.01008860623597, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.659625; latitude: 39.81790861", + "x": 1158.1528415965638, + "y": 640.4075705320879, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.77365194; latitude: 45.41809056", + "x": 1379.5258897877038, + "y": 342.6278914331647, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −108.5576333; latitude: 46.47357528", + "x": 771.4681343648449, + "y": 260.92873738078197, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.50407333; latitude: 43.72263278", + "x": 1618.9735133975914, + "y": 413.24477176127493, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −109.0673889; latitude: 35.65205556", + "x": 675.0355593006615, + "y": 823.3855988576959, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.71143389; latitude: 45.19927083", + "x": 1455.9419056608565, + "y": 349.87671129672435, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.34838889; latitude: 48.94138889", + "x": 1246.9665720212113, + "y": 162.533632862348, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −161.3194772; latitude: 61.77967583", + "x": 235.00591564031507, + "y": 1239.4836458387203, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.81177611; latitude: 38.87212222", + "x": 1110.7767458821133, + "y": 689.2977118616438, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.58833333; latitude: 32.51444444", + "x": 1374.0421353267545, + "y": 1024.0400851491597, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.49798722; latitude: 43.90882639", + "x": 1355.8497746059284, + "y": 422.84779896548434, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.649775; latitude: 39.01604222", + "x": 1560.3078768223218, + "y": 668.5977000419189, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.75516667; latitude: 26.53616667", + "x": 1894.10361539311, + "y": 1289.3733226836384, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −104.5021833; latitude: 36.74152778", + "x": 871.4127815800982, + "y": 787.8304951826262, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.09326611; latitude: 35.25914667", + "x": 1347.457962002218, + "y": 880.07495287096, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.0242739; latitude: 48.39035917", + "x": 1083.0131346817043, + "y": 188.15559088964528, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.52029306; latitude: 35.64588583", + "x": 1874.1466864493627, + "y": 808.4896797944946, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.949615; latitude: 43.52990694", + "x": 2086.7843003162225, + "y": 340.09144789632, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.15172222; latitude: 32.05897222", + "x": 1833.6367427196246, + "y": 1006.2307532466903, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.62682833; latitude: 40.67737417", + "x": 1943.1319401643423, + "y": 525.8811040587907, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.88503722; latitude: 36.45757917", + "x": 1769.6586935641856, + "y": 780.9458437013457, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.984635; latitude: 36.0396275", + "x": 1224.925919791298, + "y": 840.7232138010727, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.082255; latitude: 44.54720389", + "x": 1258.4439695967285, + "y": 391.57637173840885, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.89295611; latitude: 35.85498861", + "x": 1981.1155258496678, + "y": 778.1679747822066, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −107.19994; latitude: 41.8055975", + "x": 791.3632095131807, + "y": 510.49388368891186, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.61287111; latitude: 41.09226306", + "x": 1591.0897238602429, + "y": 555.5443459067369, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.805105; latitude: 43.83391139", + "x": 632.4409218064064, + "y": 379.8866585235637, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.1728611; latitude: 32.14308333", + "x": 557.8190181417654, + "y": 992.9657450028096, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.72321222; latitude: 43.16963222", + "x": 1500.4344415340988, + "y": 453.57680026310754, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.59854472; latitude: 34.01315611", + "x": 1714.221432704846, + "y": 918.3121905644546, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.18257944; latitude: 40.94789861", + "x": 1569.6000284581803, + "y": 565.2653933083857, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.37250083; latitude: 45.8227275", + "x": 1356.732051938544, + "y": 322.3726186897552, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.02251556; latitude: 39.44136778", + "x": 1742.505027299909, + "y": 625.4505201769282, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.70934139; latitude: 36.43945583", + "x": 1982.7879866465173, + "y": 746.3801450947524, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.9764722; latitude: 48.16863889", + "x": 663.9893544251685, + "y": 155.44451235240194, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.6606283; latitude: 42.19028361", + "x": 210.47162928232808, + "y": 372.61374673771115, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −124.4095578; latitude: 43.08733083", + "x": 159.81176311157878, + "y": 308.1998588090237, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.2006389; latitude: 44.09483333", + "x": 290.91373968386074, + "y": 291.0266516862589, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.9427053; latitude: 47.86597139", + "x": 385.6249675471166, + "y": 112.16635288998077, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −123.0594486; latitude: 44.63781639", + "x": 231.8800270052069, + "y": 244.75260857251715, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −124.3929867; latitude: 47.94146583", + "x": 235.18273889353304, + "y": 65.5924976502638, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.4530556; latitude: 43.87633333", + "x": 278.7497828462957, + "y": 299.6091518451685, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.4126036; latitude: 48.70727528", + "x": 482.4005587295385, + "y": 90.8015299667345, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.03723056; latitude: 41.29570556", + "x": 1728.603176677854, + "y": 528.4895726500176, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.2536992; latitude: 47.79569972", + "x": 967.4648804518872, + "y": 212.20930636371168, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −114.3037408; latitude: 48.17856944", + "x": 583.4173136378768, + "y": 140.2308319643389, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.0434589; latitude: 48.99778194", + "x": 1083.677730725451, + "y": 156.7035621230034, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.9295336; latitude: 44.529845", + "x": 234.9319569039775, + "y": 251.54661640327504, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.9368444; latitude: 48.48259944", + "x": 292.35602999151683, + "y": 53.41313450956659, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.10587139; latitude: 47.42277361", + "x": 1149.2272125048921, + "y": 240.57646701414933, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.1631; latitude: 44.66623139", + "x": 300.12217454443623, + "y": 262.43804411867177, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −114.900135; latitude: 47.47243611", + "x": 555.5590036853864, + "y": 172.11352603174646, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.9038328; latitude: 44.28699389", + "x": 304.267133956497, + "y": 284.17509476786654, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.7928122; latitude: 46.212355", + "x": 369.41873062467585, + "y": 196.96624119335092, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.1054072; latitude: 47.90815306", + "x": 312.2977688559952, + "y": 90.13176677047795, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −124.0284472; latitude: 44.87761139", + "x": 201.01600451866102, + "y": 222.42198238743458, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −123.8143839; latitude: 45.41824194", + "x": 216.77978160488817, + "y": 197.58891135303702, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.2265092; latitude: 47.32815583", + "x": 299.95722090404377, + "y": 117.98742638417025, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.1470264; latitude: 48.42070056", + "x": 385.85782685119625, + "y": 82.49111410308387, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −115.4902453; latitude: 48.28384528", + "x": 543.5525668194223, + "y": 126.62733188644461, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.2592931; latitude: 47.75482", + "x": 304.8855200668986, + "y": 96.31609523828229, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −110.2299289; latitude: 47.14718944", + "x": 716.8316379240301, + "y": 217.69774899921094, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −116.9215372; latitude: 43.61488056", + "x": 441.05379292567955, + "y": 354.1727170724812, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −116.5230556; latitude: 43.58133333", + "x": 455.35859402734343, + "y": 359.1491351409568, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −116.2768061; latitude: 46.49129139", + "x": 496.73813029128576, + "y": 212.0578447762009, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.6447606; latitude: 46.97494083", + "x": 629.9705414843254, + "y": 212.55839369348587, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.0802875; latitude: 46.79486278", + "x": 401.81823763910006, + "y": 173.76421183894627, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −109.2488889; latitude: 48.59194444", + "x": 762.0097768668919, + "y": 148.4276711195198, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −116.5773906; latitude: 47.32768722", + "x": 495.4877182002476, + "y": 167.1538684301686, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −116.0134736; latitude: 46.21934028", + "x": 503.0768308666503, + "y": 227.9505467168583, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −116.1234158; latitude: 45.94255806", + "x": 496.1337118609657, + "y": 241.25900560234504, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −116.1885008; latitude: 47.54769889", + "x": 511.46492842873033, + "y": 158.9165926360174, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −104.5038889; latitude: 48.15333333", + "x": 924.9710498389359, + "y": 190.04236287063713, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −116.9623869; latitude: 44.20683056", + "x": 446.3560918174245, + "y": 323.4761429146565, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −116.4801447; latitude: 46.24710917", + "x": 486.8281720385944, + "y": 222.95139648648365, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.884525; latitude: 47.18317583", + "x": 344.1838964234088, + "y": 138.00481931261857, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.4137964; latitude: 46.8584975", + "x": 460.89629348463086, + "y": 184.4395767006963, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.7206128; latitude: 48.10486806", + "x": 396.30553800758446, + "y": 102.09565715544159, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −106.8235264; latitude: 41.44485944", + "x": 803.686217876405, + "y": 531.0885544214625, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.4934689; latitude: 38.51252389", + "x": 202.28041929975484, + "y": 572.095606064729, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −109.6349708; latitude: 32.85331278", + "x": 630.2261405867996, + "y": 966.1961625902907, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −106.0881389; latitude: 35.61677778", + "x": 799.5207347139095, + "y": 840.5027781752665, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.1896567; latitude: 32.73355611", + "x": 304.16593753902714, + "y": 912.1939262610408, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.69870972; latitude: 38.14893833", + "x": 1481.0331864516868, + "y": 720.6982235676473, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.46977778; latitude: 29.53369444", + "x": 1111.7878652386298, + "y": 1181.8098872709963, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.20213889; latitude: 32.12758333", + "x": 1874.5334952297703, + "y": 996.3688815294631, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.39583222; latitude: 46.35361111", + "x": 1535.5833961688022, + "y": 283.050190428326, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.80660167; latitude: 46.38087944", + "x": 1267.4989883955182, + "y": 295.45524112197427, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.8403733; latitude: 34.42621194", + "x": 213.50362872518724, + "y": 798.4990358592454, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.2348742; latitude: 34.09535361", + "x": 318.14200181243166, + "y": 841.748311018634, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.85158944; latitude: 43.76949444", + "x": 1530.7334951493683, + "y": 419.45184875718815, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.31847417; latitude: 41.70895361", + "x": 1599.2449068723909, + "y": 522.0147875598136, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.36869444; latitude: 32.60825", + "x": 1820.0229071937265, + "y": 978.9941787857381, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.6423931; latitude: 35.23705806", + "x": 191.228594027619, + "y": 748.4478192287654, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −106.8663006; latitude: 40.51625944", + "x": 796.4383343470631, + "y": 579.6049703299232, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.09284833; latitude: 43.59534389", + "x": 1296.2739719927938, + "y": 441.031955937799, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.8720722; latitude: 48.54125278", + "x": 670.8280494813455, + "y": 137.00558537538018, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.51028806; latitude: 38.34052611", + "x": 2051.141729486032, + "y": 629.6075524697828, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.62986111; latitude: 41.61033333", + "x": 1199.8104406096616, + "y": 546.2507628120616, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −148.4651608; latitude: 70.19475583", + "x": 333.03494888316783, + "y": 1087.864579543376, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.30553778; latitude: 33.17183583", + "x": 1645.6633560653268, + "y": 970.5883999511475, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.846302; latitude: 40.851206", + "x": 1932.907656744219, + "y": 518.5186259692568, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −73.9288675; latitude: 42.85245556", + "x": 2059.024673763462, + "y": 383.49273393136536, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.2386203; latitude: 37.89426694", + "x": 203.67548017739966, + "y": 606.3662825696254, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −165.5737492; latitude: 61.84454111", + "x": 198.8527058860094, + "y": 1233.1017477096532, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.58575; latitude: 36.45569444", + "x": 1699.313465530956, + "y": 790.1745047035222, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.4671042; latitude: 45.51859778", + "x": 987.1910402009943, + "y": 332.7477743147315, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.571; latitude: 43.30888889", + "x": 1202.6349801961808, + "y": 456.75938060835597, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.56118861; latitude: 44.43080278", + "x": 1166.0682564593333, + "y": 397.3735686191926, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.6420625; latitude: 45.79998111", + "x": 1091.2536157089903, + "y": 323.5413630512644, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.59310139; latitude: 44.00386056", + "x": 1202.025198960882, + "y": 420.20792596032834, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.79783944; latitude: 45.25755861", + "x": 1084.432285815467, + "y": 351.6947747470995, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.7842503; latitude: 45.79680833", + "x": 1049.5574395676344, + "y": 321.8579618611925, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.7120811; latitude: 43.85165639", + "x": 1047.1350109675038, + "y": 423.8848963730775, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.97118278; latitude: 43.37915361", + "x": 1149.6361674988282, + "y": 452.35299835682736, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.0370669; latitude: 43.90637833", + "x": 1072.6171517090306, + "y": 422.1791310494759, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.41347222; latitude: 40.75148167", + "x": 1247.348534400135, + "y": 591.595157500961, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.736; latitude: 38.17438889", + "x": 1641.845881110447, + "y": 705.297986556744, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.9105333; latitude: 33.622875", + "x": 538.7024604499724, + "y": 910.8013940571793, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −116.98025; latitude: 32.57230556", + "x": 311.25062442092235, + "y": 922.4975029695759, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −160.5176944; latitude: 55.31502778", + "x": 230.2505742739765, + "y": 1358.443528058287, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −104.1925544; latitude: 47.70685778", + "x": 933.9048929396769, + "y": 214.1092008866308, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.3093131; latitude: 47.44898194", + "x": 298.832314294606, + "y": 111.13168786271535, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −116.9724497; latitude: 32.82623111", + "x": 314.5117531720739, + "y": 909.5228627628533, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.3424; latitude: 27.45640278", + "x": 1906.0055764966578, + "y": 1239.1077605239389, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.86377611; latitude: 40.82052917", + "x": 1971.0782417975042, + "y": 512.5845461466392, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.98780333; latitude: 32.34394667", + "x": 1620.2288333314143, + "y": 1016.9182227429844, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.17766722; latitude: 32.21532333", + "x": 1128.3161410318628, + "y": 1041.375195645586, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.90736556; latitude: 38.92355361", + "x": 1630.70259085815, + "y": 666.6586382459759, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.42996111; latitude: 38.92969444", + "x": 1448.8562464676606, + "y": 681.3506378326313, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.7884614; latitude: 34.84862889", + "x": 554.6092444507234, + "y": 847.8875326826726, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.23748944; latitude: 28.77764", + "x": 1900.1788917919241, + "y": 1170.2303767963565, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.84256194; latitude: 43.39058278", + "x": 1078.823862631408, + "y": 449.584947677773, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.3225583; latitude: 47.68281806", + "x": 473.6424954159478, + "y": 143.32563028296727, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −70.70800028; latitude: 43.39386111", + "x": 2170.6450885787126, + "y": 325.6866721001161, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.3748433; latitude: 37.61900194", + "x": 154.90045368565984, + "y": 607.8949107372937, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.60187333; latitude: 36.68235361", + "x": 2025.4910362517953, + "y": 724.704837300802, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.10760056; latitude: 42.04581972", + "x": 1451.640744574674, + "y": 516.311966269629, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −71.49138139; latitude: 41.92076333", + "x": 2161.7866599327413, + "y": 408.406577921126, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.38685806; latitude: 37.24432611", + "x": 1332.135719524797, + "y": 775.5597303313907, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.84015056; latitude: 39.84028194", + "x": 1707.349220379518, + "y": 608.8586233381375, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.33975; latitude: 29.95925", + "x": 1886.0318068667475, + "y": 1109.839409733277, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.65652889; latitude: 29.62225306", + "x": 1239.9107715028367, + "y": 1178.6056267098813, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.03285389; latitude: 44.85713278", + "x": 1334.2080992122173, + "y": 373.7640582738868, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.57457417; latitude: 34.60054", + "x": 1413.3946777457268, + "y": 912.3324327113573, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −113.5930556; latitude: 37.09058333", + "x": 500.7013879181071, + "y": 718.0097748895112, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −135.3156636; latitude: 59.46006194", + "x": 469.15743635127654, + "y": 1261.4066425472056, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.89643806; latitude: 38.26384333", + "x": 1916.8469283540958, + "y": 660.6530453241976, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −157.1505119; latitude: 66.88916556", + "x": 275.33179437687016, + "y": 1148.7321480065084, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −166.0895589; latitude: 66.24956861", + "x": 209.10897785020228, + "y": 1152.8313623261217, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.83343306; latitude: 43.20839361", + "x": 1230.6051658281926, + "y": 462.10773641754486, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −123.1475556; latitude: 47.23355556", + "x": 266.9801402278009, + "y": 113.60284870531223, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −106.9802794; latitude: 44.76919556", + "x": 817.7910284365832, + "y": 356.5858601786481, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.82559833; latitude: 32.4466275", + "x": 1319.8241928509228, + "y": 1029.2059634466157, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −159.5690614; latitude: 62.69511944", + "x": 251.4596079315754, + "y": 1224.1762988136197, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −66.09883333; latitude: 18.45675", + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.56175; latitude: 36.89888889", + "x": 1491.0789834285642, + "y": 786.2653489033485, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −135.3615983; latitude: 57.04713806", + "x": 481.0337538845243, + "y": 1304.1459984441553, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.44832917; latitude: 39.1147125", + "x": 1567.9240597313546, + "y": 662.6819183361554, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.4681094; latitude: 41.78144167", + "x": 211.67468493097613, + "y": 395.3894401412467, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.9290089; latitude: 37.36186194", + "x": 168.85908096883531, + "y": 625.9627977978714, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −109.37875; latitude: 34.51855556", + "x": 653.6355293218519, + "y": 880.8339193251215, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.4963056; latitude: 31.35775", + "x": 1024.0622737047852, + "y": 1082.8401744413322, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −66.00183333; latitude: 18.43941667", + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.56630556; latitude: 45.69227778", + "x": 1605.321663652417, + "y": 310.7899708207833, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.655803; latitude: 47.615058", + "x": 461.3172127473638, + "y": 144.10575342412312, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.97958333; latitude: 42.37908333", + "x": 1263.4902027469818, + "y": 505.5826242838898, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −151.1913661; latitude: 61.965295", + "x": 322.1866444472446, + "y": 1239.040052516125, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −105.6724289; latitude: 36.45819", + "x": 821.4797443272876, + "y": 798.0874603997811, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.24066667; latitude: 42.59719444", + "x": 1253.366674393863, + "y": 494.18328705893646, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.9777731; latitude: 40.78838778", + "x": 599.1798529914353, + "y": 537.0504324904146, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −123.0025; latitude: 44.90952778", + "x": 237.90732447314758, + "y": 231.6644441794151, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.49088306; latitude: 36.19060778", + "x": 1287.4580255007702, + "y": 832.2426168614047, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.20618472; latitude: 44.38531", + "x": 2030.3987812555574, + "y": 307.41038681391046, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.65060333; latitude: 38.7914825", + "x": 1157.5700874196093, + "y": 694.6607530754125, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.96418528; latitude: 38.64287222", + "x": 1508.9787281376161, + "y": 692.5544924328462, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −157.1557008; latitude: 61.70931139", + "x": 270.78263980511593, + "y": 1243.608472799715, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.62113889; latitude: 33.15983333", + "x": 1240.780114679333, + "y": 992.6972513789483, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.15277694; latitude: 41.14335389", + "x": 1647.6055810414125, + "y": 546.7932229981288, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.61494139; latitude: 37.05419722", + "x": 1694.3235357023386, + "y": 758.9081623109773, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.5907669; latitude: 38.69542167", + "x": 201.04671406537705, + "y": 561.725878045846, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −113.8820103; latitude: 45.12047778", + "x": 568.1664131907132, + "y": 299.76755041252363, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.4512961; latitude: 34.01582194", + "x": 266.1947627081977, + "y": 833.9042321299819, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.67024333; latitude: 40.62599083", + "x": 2057.6015235572304, + "y": 504.3919741278846, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.3615; latitude: 33.99569444", + "x": 1895.0244030356853, + "y": 893.3484005038342, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.4575825; latitude: 34.89924833", + "x": 194.26347270903284, + "y": 767.70177049823, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.8682225; latitude: 33.67565861", + "x": 286.5381746713034, + "y": 857.1766754519858, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.21587; latitude: 35.17036", + "x": 1554.21026119498, + "y": 873.1298616251822, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.9504525; latitude: 32.69338667", + "x": 1007.5152485241402, + "y": 1011.6584519498329, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.94282833; latitude: 35.35730333", + "x": 1184.3736668408071, + "y": 876.5760037572857, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −170.2204444; latitude: 57.16733333", + "x": 138.89293017629043, + "y": 1308.2425005426182, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.6063603; latitude: 36.66279222", + "x": 171.83378608898715, + "y": 665.1487173599348, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.9852778; latitude: 41.10133333", + "x": 951.1639104289893, + "y": 563.1534914385852, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.39116944; latitude: 35.23735278", + "x": 1924.8345671646039, + "y": 821.7428244658822, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −151.7040503; latitude: 59.44243917", + "x": 319.39301256668455, + "y": 1285.5871547688498, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −110.0054075; latitude: 34.26527194", + "x": 625.1332538448515, + "y": 890.2068688236222, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.9565; latitude: 34.91572222", + "x": 1819.9922178269308, + "y": 856.0045170934641, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.8623611; latitude: 45.77250444", + "x": 255.49580508704082, + "y": 189.7043797121687, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.7768889; latitude: 44.48022222", + "x": 934.8216532958936, + "y": 383.4081982503608, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.62697222; latitude: 27.76511111", + "x": 1844.4176757984285, + "y": 1231.9899076493748, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.41081028; latitude: 32.98316472", + "x": 1337.2760150094423, + "y": 1000.5006246685346, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.67761861; latitude: 39.84395194", + "x": 1475.9351661292555, + "y": 631.2354897672501, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: 145.621384; latitude: 14.996111", + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.49189333; latitude: 33.98879611", + "x": 1116.9217992685967, + "y": 947.6118220011142, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.20280556; latitude: 43.16552778", + "x": 1254.5658232981284, + "y": 464.24250891940574, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.05133333; latitude: 29.50836111", + "x": 1267.5086549690407, + "y": 1184.3823590738054, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.67629028; latitude: 41.74284139", + "x": 1469.3216066185562, + "y": 531.1864525393448, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.2495236; latitude: 37.511855", + "x": 158.30659877556104, + "y": 614.7522025464457, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.5307475; latitude: 36.05593278", + "x": 1662.4741131153933, + "y": 815.7032219841487, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.737165; latitude: 35.21194639", + "x": 1405.0038644207439, + "y": 880.3981789505849, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.55411111; latitude: 27.39533333", + "x": 1850.4911446303463, + "y": 1250.592057305314, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −105.5347508; latitude: 33.46285", + "x": 811.3542920193267, + "y": 956.0276127392776, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −156.5881861; latitude: 61.789875", + "x": 275.74752552327146, + "y": 1242.3403330639053, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.47114056; latitude: 29.3370075", + "x": 1111.4581140408131, + "y": 1192.101815037802, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.39134667; latitude: 31.1515925", + "x": 1874.1419963073386, + "y": 1048.367623175685, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.92066194; latitude: 45.73138139", + "x": 1373.425511669315, + "y": 326.4784981481589, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.05833667; latitude: 45.54532417", + "x": 1295.486059381037, + "y": 338.6905053256896, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.53028444; latitude: 44.54513556", + "x": 1464.9384631884277, + "y": 383.65581666085836, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.84863806; latitude: 33.43381667", + "x": 1534.3321442015408, + "y": 966.6179874855632, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.90970556; latitude: 39.77194444", + "x": 1267.7537815543785, + "y": 643.1646081601816, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.2646556; latitude: 40.6152625", + "x": 938.3015324845937, + "y": 587.9254649773984, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.35998972; latitude: 38.74768694", + "x": 1452.2447534169892, + "y": 690.7896562385617, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.05999861; latitude: 44.9344725", + "x": 1333.0773225376645, + "y": 369.74133936251746, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.8128803; latitude: 38.50897694", + "x": 150.70944682122922, + "y": 557.7303007034766, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −64.97336111; latitude: 18.33730556", + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −64.79855556; latitude: 17.70188889", + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.22108333; latitude: 27.18169444", + "x": 1960.059471006813, + "y": 1244.8698505860718, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.65862861; latitude: 35.78756833", + "x": 1196.5604593523767, + "y": 853.9466357129425, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.42154111; latitude: 44.84366222", + "x": 1541.779724194609, + "y": 361.8484553745602, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −114.2965903; latitude: 43.50484139", + "x": 536.9091257347936, + "y": 380.14743364833566, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.65123; latitude: 38.66187028", + "x": 1440.74109083661, + "y": 696.0000941883657, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.07499167; latitude: 33.92925694", + "x": 1992.6608788959602, + "y": 879.487333979693, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.094655; latitude: 46.6897175", + "x": 1365.010870731765, + "y": 276.71398262927187, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.38436694; latitude: 42.40260333", + "x": 1209.517099164934, + "y": 504.5236521055972, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −170.4926361; latitude: 63.68639444", + "x": 165.7367003701939, + "y": 1191.4027704110213, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −108.1563853; latitude: 32.63654694", + "x": 692.816301713125, + "y": 986.2640135327224, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.5730033; latitude: 40.37684111", + "x": 263.53170294134225, + "y": 486.5587199696238, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.95673611; latitude: 35.76526389", + "x": 1854.9853916375218, + "y": 805.2035994837981, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −149.0959153; latitude: 66.00900528", + "x": 334.66877282077337, + "y": 1163.9990431842773, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −149.4188122; latitude: 60.12693833", + "x": 339.70894442413964, + "y": 1271.9280252416333, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.10483833; latitude: 41.50409361", + "x": 2068.7191773083737, + "y": 454.2384769720843, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.08577028; latitude: 36.16025194", + "x": 1178.808170542027, + "y": 834.0887583341605, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.10931306; latitude: 40.86525806", + "x": 1180.7247711592772, + "y": 585.4041627167712, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.4665508; latitude: 32.46736806", + "x": 1028.1283460870347, + "y": 1024.5970102288443, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.87080556; latitude: 38.23163889", + "x": 1837.8909340560956, + "y": 675.8987450315863, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −164.8477778; latitude: 62.52055556", + "x": 207.04095164708258, + "y": 1221.8888847579258, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −151.0324444; latitude: 60.47613889", + "x": 324.7730482204704, + "y": 1266.3440081803965, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.7958414; latitude: 39.76104833", + "x": 993.2916227896991, + "y": 636.9446179057877, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.44249333; latitude: 35.56009889", + "x": 1627.0778378712498, + "y": 845.7913931526373, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.10631056; latitude: 43.11118694", + "x": 1975.1154672912483, + "y": 388.36282614864876, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.89573389; latitude: 31.55851111", + "x": 1760.684995786995, + "y": 1042.8211886318493, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.061215; latitude: 34.34722167", + "x": 244.87437399120165, + "y": 810.699463031417, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −116.5597681; latitude: 48.29965139", + "x": 506.9426575174201, + "y": 117.95934724614563, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.49836139; latitude: 35.20295", + "x": 1542.126544144724, + "y": 872.3768204004148, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.66361194; latitude: 29.77", + "x": 1284.9820333683, + "y": 1170.4677749308764, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.3826419; latitude: 36.09276972", + "x": 582.2604485116277, + "y": 785.846140145954, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.80569444; latitude: 45.46913889", + "x": 1451.5537787671294, + "y": 335.99815783706117, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.12117083; latitude: 27.20683333", + "x": 1124.951834569726, + "y": 1303.6693788710697, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.19600194; latitude: 31.10672694", + "x": 1126.1615865228976, + "y": 1099.6328606605873, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.97109694; latitude: 30.87935556", + "x": 1180.7665773547521, + "y": 1112.4856038382245, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.168145; latitude: 31.14601111", + "x": 1484.5882224504792, + "y": 1090.7140552606563, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.06419444; latitude: 29.66925", + "x": 1266.8396807645645, + "y": 1175.962807785255, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −152.3913889; latitude: 57.78083333", + "x": 313.75535913897386, + "y": 1316.3178041424926, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.4904425; latitude: 33.86122222", + "x": 1116.8079715317624, + "y": 954.3408896455442, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.5216389; latitude: 32.21261111", + "x": 981.0616013588337, + "y": 1035.5503597511456, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.69052389; latitude: 27.77854306", + "x": 1145.6454514453512, + "y": 1274.2901813044116, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.40383056; latitude: 31.30696111", + "x": 1250.855086373742, + "y": 1090.1627469486966, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.6836075; latitude: 32.887625", + "x": 1194.4084698270403, + "y": 1006.965999948949, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.1976044; latitude: 33.17231861", + "x": 1041.5709963810868, + "y": 988.0367667159562, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.97305556; latitude: 26.17763889", + "x": 1130.7760031562846, + "y": 1357.3140544458354, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.54244444; latitude: 28.03925", + "x": 1152.7535193977046, + "y": 1260.8104446107432, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.26693417; latitude: 29.08358806", + "x": 1166.2562223827779, + "y": 1206.4422274957572, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.62222639; latitude: 30.87182917", + "x": 1196.3965725414582, + "y": 1113.011827961963, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.44316667; latitude: 30.57194444", + "x": 1159.369503059749, + "y": 1128.3520042996847, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.69855556; latitude: 30.07780556", + "x": 1283.1740614241726, + "y": 1154.3598653909166, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.03091833; latitude: 27.55086111", + "x": 1129.560378847478, + "y": 1285.8460283709362, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.90952778; latitude: 30.24369444", + "x": 1092.9027187609709, + "y": 1144.053810381839, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −98.85090056; latitude: 29.34192083", + "x": 1094.1322251809202, + "y": 1191.3593302087158, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.43102306; latitude: 29.80411", + "x": 1295.516164729435, + "y": 1168.5194332617216, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.6813125; latitude: 28.65405111", + "x": 1192.915849830554, + "y": 1229.1745863153099, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −104.340675; latitude: 37.25937778", + "x": 880.4979783063321, + "y": 761.1524391555399, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −152.1093886; latitude: 65.17439528", + "x": 312.6341814270596, + "y": 1180.4204323285785, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −71.01687583; latitude: 41.87460139", + "x": 2180.1542260716496, + "y": 406.032779344514, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.32781222; latitude: 39.53418583", + "x": 1490.984764039151, + "y": 646.6141880033401, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.14073611; latitude: 37.74163111", + "x": 1382.4768526471669, + "y": 747.5364094837055, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.73727778; latitude: 32.48316667", + "x": 1848.400165164141, + "y": 981.4578266758463, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −103.6031853; latitude: 35.18277806", + "x": 902.0576406463283, + "y": 873.0969304543141, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.61140139; latitude: 33.2206275", + "x": 1588.834672893112, + "y": 973.4277372792722, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −107.27175; latitude: 33.23694444", + "x": 735.0456972279126, + "y": 959.6213613300224, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −156.0681903; latitude: 62.99270417", + "x": 280.9221522801906, + "y": 1220.3962099843025, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.4418172; latitude: 37.68910778", + "x": 192.78573980663168, + "y": 614.6370258214376, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.98422694; latitude: 36.28489194", + "x": 1931.9613760184404, + "y": 764.2429204387995, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.80686; latitude: 46.47709083", + "x": 267.693347171832, + "y": 154.8993662462749, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.48226139; latitude: 41.56487194", + "x": 1709.5257357913608, + "y": 516.7295571546902, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.06083611; latitude: 40.85010139", + "x": 2078.2840680577033, + "y": 487.4527825606342, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.69093; latitude: 38.01769694", + "x": 1603.9378966397298, + "y": 717.5441604877374, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.42321861; latitude: 42.56576833", + "x": 1666.8255292725028, + "y": 468.9698552395839, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −107.90848; latitude: 37.95375861", + "x": 738.6836934139367, + "y": 709.0711935157119, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.84894028; latitude: 35.93245472", + "x": 1524.4041993672058, + "y": 835.0908569388496, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.99777778; latitude: 37.82513889", + "x": 2037.4567931792656, + "y": 660.4483120260941, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.24602333; latitude: 35.38015694", + "x": 1636.3030112878323, + "y": 854.4060256964776, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −115.2843164; latitude: 47.57493556", + "x": 543.2255733360216, + "y": 164.16058610745495, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −108.2131542; latitude: 43.65828917", + "x": 764.9111219917258, + "y": 408.8885574039, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.87302611; latitude: 39.916995", + "x": 1980.2625666720523, + "y": 559.42265874648, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.5780997; latitude: 47.26793111", + "x": 287.0228370422286, + "y": 117.55951009882529, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.7992275; latitude: 28.51479944", + "x": 1922.2630910460066, + "y": 1180.6276877397413, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −150.0936944; latitude: 62.3205", + "x": 331.21297121364523, + "y": 1232.0441485311987, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −135.2184439; latitude: 57.77965833", + "x": 478.645764299133, + "y": 1290.826045292038, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.5905275; latitude: 33.17794778", + "x": 1198.570957192045, + "y": 991.6955821490003, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.03466806; latitude: 36.23087083", + "x": 1473.7230883685288, + "y": 822.7856719335718, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.35033333; latitude: 30.39652778", + "x": 1748.103437377587, + "y": 1105.905456959796, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.3261667; latitude: 36.15630556", + "x": 257.06308480888003, + "y": 715.2674126561783, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −160.9684167; latitude: 61.09676222", + "x": 236.7044107818351, + "y": 1252.3005983474063, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.48787167; latitude: 31.42879528", + "x": 1779.5517718861524, + "y": 1047.240529276546, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.43277778; latitude: 25.64788889", + "x": 1963.2691285099118, + "y": 1325.1082398486299, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −145.6180383; latitude: 14.99685028", + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −115.9458319; latitude: 34.13208528", + "x": 372.71540900680475, + "y": 851.7752575707327, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.897; latitude: 25.86180556", + "x": 1939.6658424339307, + "y": 1317.7132081065058, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.02172917; latitude: 41.67442972", + "x": 1339.8670741951257, + "y": 541.1391318638957, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.3396; latitude: 33.8033775", + "x": 268.2630733932848, + "y": 845.9259010856956, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.8315; latitude: 44.018", + "x": 1343.1335550382296, + "y": 417.55305079945447, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.2958; latitude: 34.59376444", + "x": 1765.802603540977, + "y": 880.84788073703, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −160.3969339; latitude: 59.05284222", + "x": 238.10609796165468, + "y": 1290.2303140832612, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.01213889; latitude: 31.86041667", + "x": 1665.612996143434, + "y": 1037.9375619541179, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.80783333; latitude: 41.58680556", + "x": 1696.82727915742, + "y": 517.222515743922, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.62248361; latitude: 39.0686575", + "x": 1239.4817138823598, + "y": 680.5566483944708, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −104.1526986; latitude: 42.0645475", + "x": 909.9767924379769, + "y": 508.88593269980447, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.53325; latitude: 27.97547222", + "x": 1847.1853971591004, + "y": 1220.5147012903717, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.44926083; latitude: 27.91557833", + "x": 1851.4879881083903, + "y": 1223.0552476032788, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.0871536; latitude: 38.06020222", + "x": 370.4409026242015, + "y": 638.7938460666453, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.40777778; latitude: 31.1525", + "x": 1161.4126290253073, + "y": 1097.8962465199747, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −154.3188728; latitude: 60.20433333", + "x": 295.1918372051872, + "y": 1271.93355407341, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.17794444; latitude: 41.76352778", + "x": 1217.3830818097645, + "y": 538.2436447515774, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.00452778; latitude: 35.92891667", + "x": 1266.1009849095683, + "y": 846.3547311495197, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.8849444; latitude: 38.47427778", + "x": 1026.065383909385, + "y": 706.9158239861201, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.40742056; latitude: 36.47521417", + "x": 1789.2540313067605, + "y": 777.2329919876347, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.1395628; latitude: 39.32004222", + "x": 266.0772204182889, + "y": 544.9555642293153, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.26742306; latitude: 32.71004667", + "x": 1212.5688716486582, + "y": 1016.4110479872988, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −116.1601194; latitude: 33.62789944", + "x": 358.1044821634264, + "y": 875.8443122595079, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.59063472; latitude: 40.08351333", + "x": 1319.9225071465305, + "y": 625.7378850849707, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.07748611; latitude: 40.56186833", + "x": 1810.3202892134416, + "y": 555.5793912296722, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.43925; latitude: 35.13497222", + "x": 280.5176240107695, + "y": 776.5880527257605, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −145.7686111; latitude: 18.12444444", + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.10136111; latitude: 35.58247222", + "x": 1933.7062207087374, + "y": 801.6447837377598, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.4012519; latitude: 45.54936889", + "x": 268.4893821652172, + "y": 205.59566016736198, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.43468306; latitude: 41.93990639", + "x": 1708.751505126315, + "y": 496.87560590310204, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.81346833; latitude: 40.27669111", + "x": 2056.178161632347, + "y": 523.6376062094587, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.88824167; latitude: 36.19837222", + "x": 1228.9596611257518, + "y": 832.3310855956211, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.769895; latitude: 34.26810833", + "x": 1534.3951422563587, + "y": 922.4807082588736, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −110.9410278; latitude: 32.11608333", + "x": 567.6950925574456, + "y": 995.9823831031135, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.08396167; latitude: 37.13244083", + "x": 1386.129520106661, + "y": 779.6231311251713, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.582235; latitude: 44.74144472", + "x": 1610.1924000246281, + "y": 360.37740365350555, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.18336083; latitude: 48.06550028", + "x": 1217.8102342765203, + "y": 207.99418642509227, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.88133556; latitude: 30.90155194", + "x": 1765.7089694983092, + "y": 1076.977800681837, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.90103333; latitude: 40.68390306", + "x": 1346.254096867061, + "y": 593.2464464111338, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.9953347; latitude: 38.89388167", + "x": 266.0523476736911, + "y": 568.2193684018662, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.02768917; latitude: 32.35160639", + "x": 1442.944807476274, + "y": 1029.580184723395, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.3507719; latitude: 40.6122725", + "x": 583.1373670695311, + "y": 543.7322776322499, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −114.4877356; latitude: 42.48180389", + "x": 519.4066487331329, + "y": 431.60705584278503, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.74514167; latitude: 47.049225", + "x": 1376.7586585547363, + "y": 257.44698088021823, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −93.99102; latitude: 33.45370806", + "x": 1311.4352604356448, + "y": 976.3182246033241, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −110.1148056; latitude: 34.45283333", + "x": 621.9522100576, + "y": 879.7247208085998, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.2514375; latitude: 40.03064972", + "x": 1610.905340412048, + "y": 609.8980660688901, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.40238611; latitude: 32.35413889", + "x": 1250.5731533748144, + "y": 1035.0853283806157, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.99285583; latitude: 35.81248722", + "x": 1728.14305897756, + "y": 820.8564098998074, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.13719361; latitude: 39.90081778", + "x": 1734.6776056203375, + "y": 602.0134342830902, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.28456944; latitude: 41.87877778", + "x": 1368.0416015155447, + "y": 529.3608545672864, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.65191556; latitude: 36.72978", + "x": 1653.5526026963414, + "y": 780.853042668572, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.3495861; latitude: 43.20925", + "x": 606.6257924415027, + "y": 408.8116307301607, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −114.7967178; latitude: 42.59157139", + "x": 508.9153436666519, + "y": 423.62547997133424, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −113.3050642; latitude: 46.31936972", + "x": 600.4561430224442, + "y": 241.99025426265143, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −114.4433133; latitude: 36.56803", + "x": 460.83410405142604, + "y": 738.4881919743486, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.9125389; latitude: 42.10690806", + "x": 613.3024863534908, + "y": 468.8749853673844, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.8716011; latitude: 39.73884333", + "x": 594.0787412043785, + "y": 592.4209464939379, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −109.6902611; latitude: 43.54834722", + "x": 708.8869029283825, + "y": 407.0426409420038, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −114.3352461; latitude: 36.02054056", + "x": 459.70396601383766, + "y": 767.7534726077349, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −110.2273619; latitude: 38.96136167", + "x": 652.7196729863047, + "y": 643.3995462343319, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.8811053; latitude: 42.92102222", + "x": 584.073255524525, + "y": 420.2372895340254, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.9928858; latitude: 40.61954", + "x": 597.1008202076654, + "y": 545.7419297866445, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −109.3465053; latitude: 37.937215", + "x": 680.28721210652, + "y": 702.1491453882354, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.6753497; latitude: 38.23071", + "x": 548.5687930115175, + "y": 665.4596886091053, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −112.3918731; latitude: 37.84523333", + "x": 556.4428261954926, + "y": 687.5375267114816, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.0978608; latitude: 43.74193056", + "x": 657.931116631338, + "y": 388.9679767710677, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −108.4455092; latitude: 44.91167028", + "x": 764.815883897754, + "y": 342.49442444773695, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −110.3809886; latitude: 40.19190167", + "x": 656.3978462151267, + "y": 578.1783827270997, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −116.0162422; latitude: 44.4937825", + "x": 484.0847442369368, + "y": 316.31308426969736, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −115.7295944; latitude: 43.13125278", + "x": 479.7687097512538, + "y": 388.6202794088499, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.6613125; latitude: 40.14162139", + "x": 605.8435015917318, + "y": 572.8112543970333, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −116.4468092; latitude: 44.7498875", + "x": 471.27527553309005, + "y": 299.79432700284406, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −110.5695836; latitude: 37.44221444", + "x": 626.8135265468067, + "y": 720.695898091702, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.7700556; latitude: 45.24713889", + "x": 251.09045833556456, + "y": 217.06696157642773, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.98108694; latitude: 45.50597028", + "x": 1371.7164026465923, + "y": 338.36067055013837, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.38031639; latitude: 33.46539667", + "x": 1554.460942476717, + "y": 963.3807004213418, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.42885694; latitude: 38.06877667", + "x": 1410.8052026619443, + "y": 728.9646968363345, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.38385889; latitude: 43.14511944", + "x": 2001.5767322176873, + "y": 380.80911069342983, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.41337194; latitude: 41.02533778", + "x": 1832.1766763752453, + "y": 527.2486509063015, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.98547778; latitude: 36.38025", + "x": 1516.9393427463508, + "y": 811.916568719766, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −116.2748133; latitude: 33.7484375", + "x": 354.59722039612564, + "y": 868.5833761249617, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.89036111; latitude: 34.44919444", + "x": 1911.003985411215, + "y": 866.3861680377101, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.23705556; latitude: 43.04102778", + "x": 1519.3966110461, + "y": 458.8646647563214, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.86790694; latitude: 42.42216", + "x": 1536.1824912950751, + "y": 490.17127661756285, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −124.5612497; latitude: 47.93714444", + "x": 229.43165717557144, + "y": 64.05077898583431, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.19445611; latitude: 39.94262417", + "x": 1415.3555841352384, + "y": 629.5630631943245, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.96542583; latitude: 42.66389361", + "x": 1721.515506368327, + "y": 456.6357891979296, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.0983375; latitude: 36.22284028", + "x": 1845.3218743610996, + "y": 782.2549358401607, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −123.200855; latitude: 39.12595722", + "x": 144.806726326829, + "y": 522.0253979024424, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.7249575; latitude: 38.30248472", + "x": 1235.4729347760303, + "y": 721.0777670467687, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.38192861; latitude: 40.43521194", + "x": 2032.4111871358314, + "y": 520.369868336421, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.50230778; latitude: 44.31957306", + "x": 1280.2190851746052, + "y": 403.2513764486789, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −101.3733889; latitude: 37.60375278", + "x": 1003.6651151825232, + "y": 751.8007460526414, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.04495333; latitude: 39.9352025", + "x": 1619.5920504638207, + "y": 614.0650102588738, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.23142583; latitude: 39.21096222", + "x": 1775.6384960229225, + "y": 633.0578322089304, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −160.7989517; latitude: 63.88835917", + "x": 243.43557894732322, + "y": 1201.4134452025005, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.90269444; latitude: 36.87813889", + "x": 1394.196078473129, + "y": 792.7391456123216, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.70322222; latitude: 43.42658333", + "x": 1500.154476853603, + "y": 440.03661681915946, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.84869444; latitude: 40.84927778", + "x": 1932.834733219389, + "y": 518.6364272117585, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.89858889; latitude: 35.20397028", + "x": 1651.9120041936662, + "y": 862.1268433975231, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.53530972; latitude: 34.38431528", + "x": 1501.2017951665882, + "y": 918.727595536767, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −155.8599875; latitude: 20.26525583", + "x": 789.4643371532272, + "y": 1317.6951085044611, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.12552778; latitude: 41.61033333", + "x": 1684.4243399609381, + "y": 517.549925055981, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.58716667; latitude: 30.74688667", + "x": 1242.8108824404471, + "y": 1119.6225247189404, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −150.0516639; latitude: 61.75441667", + "x": 332.1874755736096, + "y": 1242.413689519843, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −71.28154389; latitude: 41.53243972", + "x": 2174.9001308912584, + "y": 426.1240864352467, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.16433333; latitude: 38.23343056", + "x": 1421.147179904588, + "y": 719.7359069063468, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.74358306; latitude: 29.21135028", + "x": 1053.1290194160795, + "y": 1196.7735565248383, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.32646806; latitude: 39.87585167", + "x": 1648.358281011372, + "y": 614.0857050192737, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.46200361; latitude: 39.93272694", + "x": 1721.6431827773717, + "y": 602.0643242116173, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.05716667; latitude: 34.98783333", + "x": 1857.2395326131332, + "y": 846.4277115199293, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −165.5837322; latitude: 61.53363583", + "x": 197.77571560884422, + "y": 1238.7179085084022, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.84571944; latitude: 39.94289056", + "x": 2058.825884269211, + "y": 541.1210036509929, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.219345; latitude: 36.34571528", + "x": 1298.670704258883, + "y": 823.8494899497341, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.962455; latitude: 38.37675167", + "x": 182.0083116639944, + "y": 573.919788396588, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.91848722; latitude: 28.85255556", + "x": 1182.0976233533079, + "y": 1218.7073402653339, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.3794667; latitude: 34.593225", + "x": 317.9367364905578, + "y": 814.7517782254167, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.37194444; latitude: 32.19255556", + "x": 1823.009023182336, + "y": 1000.6741676837275, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −146.24836; latitude: 61.13395028", + "x": 366.2541514152022, + "y": 1250.8568076747176, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −146.4137753; latitude: 67.02269444", + "x": 352.495470459403, + "y": 1143.7249764199862, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −109.5099203; latitude: 40.44090167", + "x": 692.4189583911806, + "y": 570.2052178161807, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.68277139; latitude: 38.94577556", + "x": 1358.0463704406186, + "y": 684.7484091913241, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.53191667; latitude: 40.20441667", + "x": 1677.6894305590044, + "y": 593.1747707140169, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −115.19575; latitude: 36.21166667", + "x": 426.3253113595065, + "y": 750.7754194035062, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −104.7838056; latitude: 31.05784417", + "x": 832.097876064097, + "y": 1085.1987211014593, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.7695225; latitude: 38.12743222", + "x": 1396.7760206673306, + "y": 726.5100664093334, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.51224694; latitude: 44.55812861", + "x": 1428.4168217651336, + "y": 385.2729512213846, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.3928889; latitude: 36.31866667", + "x": 256.44324730994936, + "y": 706.2649889445672, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.03333583; latitude: 36.68711028", + "x": 1803.0521713762203, + "y": 763.8988146471538, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.16622222; latitude: 38.99130556", + "x": 1499.494447854655, + "y": 674.7776316825045, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.27672222; latitude: 30.7825", + "x": 1793.3979797144739, + "y": 1079.6429782545401, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.93425472; latitude: 42.76528917", + "x": 1188.5831683603162, + "y": 485.2687459265776, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.44033333; latitude: 27.07161111", + "x": 1858.1508048658884, + "y": 1266.5234720042033, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.60944444; latitude: 40.86472222", + "x": 1670.4692820632417, + "y": 558.9177656882475, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.4899733; latitude: 34.20980972", + "x": 266.9745682042935, + "y": 823.5639247870895, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.84869444; latitude: 34.12313889", + "x": 1702.8427379410832, + "y": 913.8247990955863, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −86.5254; latitude: 30.48325", + "x": 1650.2113394084504, + "y": 1112.2514521076544, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −87.00707139; latitude: 41.45396667", + "x": 1573.9294338153118, + "y": 538.0284634082345, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.87666444; latitude: 30.21867306", + "x": 1859.9644682073945, + "y": 1100.0591510502804, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −65.49182583; latitude: 18.13551806", + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.41794444; latitude: 27.65555556", + "x": 1946.933731691382, + "y": 1222.0302911231145, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −72.5173125; latitude: 43.34362889", + "x": 2105.0296930110158, + "y": 345.6349244080261, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.46182194; latitude: 40.024675", + "x": 1760.3703502785502, + "y": 591.8136258319455, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −92.02592806; latitude: 42.21862611", + "x": 1377.2944255473562, + "y": 511.0515515412035, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.547355; latitude: 42.85767194", + "x": 1050.821522440956, + "y": 476.42810286417716, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.15079556; latitude: 35.41669472", + "x": 1891.5262445471317, + "y": 817.8734141188424, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.6564883; latitude: 45.6204525", + "x": 260.5215337188524, + "y": 199.44116896786954, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.42442278; latitude: 45.30566472", + "x": 1208.659860341729, + "y": 351.9340605257689, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.15308417; latitude: 41.35186806", + "x": 1491.046648382471, + "y": 550.3574978599463, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −124.143785; latitude: 47.00369806", + "x": 229.36971317753853, + "y": 114.84333390257143, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.27415139; latitude: 39.84092833", + "x": 1965.4031161477283, + "y": 566.5220520187931, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −91.86777944; latitude: 44.89234639", + "x": 1377.268105754288, + "y": 370.30705569722113, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.27392778; latitude: 39.00035833", + "x": 1855.1879011027766, + "y": 631.8825912406055, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.32963889; latitude: 38.97638889", + "x": 2011.6523465821638, + "y": 603.6947669630722, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.18499861; latitude: 36.96015", + "x": 1958.168211423302, + "y": 723.0844865786994, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −123.0096236; latitude: 48.53732194", + "x": 290.70122111640524, + "y": 49.97659712116274, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.03779444; latitude: 35.22224722", + "x": 1981.4140264274192, + "y": 812.1489757739355, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.82882056; latitude: 38.01679028", + "x": 2042.0881018025734, + "y": 649.0906342143767, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.8950425; latitude: 35.6538825", + "x": 1900.0777950776828, + "y": 803.712509010081, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.50058333; latitude: 38.66705556", + "x": 1928.793561116561, + "y": 636.7771915062833, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.71138389; latitude: 38.58704667", + "x": 1960.9905499161077, + "y": 634.9489257750206, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −78.84802028; latitude: 36.710045", + "x": 1933.5312257609492, + "y": 741.1169178844882, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.96595278; latitude: 35.10117083", + "x": 2068.8541327828343, + "y": 800.9582802987745, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −77.12552694; latitude: 37.50320139", + "x": 1995.5898850694384, + "y": 686.5164368239043, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.7646825; latitude: 37.52122778", + "x": 2009.9443222462246, + "y": 682.6267970604965, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −79.14438889; latitude: 38.99419444", + "x": 1900.1008910944188, + "y": 624.4387368456848, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.4041667; latitude: 45.62777778", + "x": 269.51224516883735, + "y": 201.61924717472357, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −119.0805789; latitude: 47.92348361", + "x": 415.9342220767554, + "y": 116.7395265404516, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.4384789; latitude: 48.01814917", + "x": 302.5304067579292, + "y": 81.42293856516153, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.6733264; latitude: 47.3582025", + "x": 422.97751712575916, + "y": 148.73441079577105, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.13311667; latitude: 39.900075", + "x": 1852.8826157030658, + "y": 584.0503875142604, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −162.2827394; latitude: 63.51591972", + "x": 230.7147640760826, + "y": 1206.8452156060412, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −147.4012186; latitude: 66.36155056", + "x": 346.6355726644426, + "y": 1156.4918168355998, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −75.85120556; latitude: 41.29717222", + "x": 2004.7210043085638, + "y": 479.82120544254485, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −148.4832222; latitude: 67.50451667", + "x": 336.964674765976, + "y": 1136.4387645260592, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.79111222; latitude: 36.37920333", + "x": 1149.4885823410739, + "y": 822.0715849456426, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.66808333; latitude: 33.98227778", + "x": 1754.1996330856732, + "y": 914.9363815501808, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.4134331; latitude: 34.25932528", + "x": 270.78233587480906, + "y": 821.7929795642933, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −118.2189489; latitude: 34.74095944", + "x": 284.7931843676263, + "y": 799.0049215591735, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.03752194; latitude: 37.16861556", + "x": 1181.4106402284945, + "y": 780.8113429996661, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −159.9861944; latitude: 66.60002778", + "x": 254.41995531785614, + "y": 1152.5804715188115, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −122.2175106; latitude: 39.51635389", + "x": 188.43725884703076, + "y": 513.1417249741917, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −117.8058889; latitude: 40.89661111", + "x": 375.9334046983463, + "y": 486.2552852639619, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −163.4125556; latitude: 64.68919444", + "x": 224.62442507550418, + "y": 1184.305893470748, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −161.9695161; latitude: 60.69118917", + "x": 227.03295536363922, + "y": 1258.7161040310975, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −132.3698242; latitude: 56.48432583", + "x": 512.7366224850289, + "y": 1305.0548142897228, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −107.9508308; latitude: 43.96571306", + "x": 776.7520354381579, + "y": 394.1087053187889, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −150.1227417; latitude: 67.40457333", + "x": 325.53210508690586, + "y": 1139.0735364803231, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −157.0082511; latitude: 58.70343611", + "x": 269.55385187626683, + "y": 1298.9004155046691, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −71.80337778; latitude: 41.34961694", + "x": 2157.701506410539, + "y": 440.6262181694856, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −162.9752778; latitude: 67.56208333", + "x": 235.09127218770965, + "y": 1132.743167938875, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −121.7896178; latitude: 36.93573", + "x": 168.35407847045417, + "y": 649.2116542091007, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −69.67552778; latitude: 44.53325", + "x": 2191.9310595982, + "y": 257.60415240068824, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −74.90827389; latitude: 39.00850694", + "x": 2067.2686560928296, + "y": 589.8445483151659, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −99.5209975; latitude: 36.4367025", + "x": 1077.3899818660666, + "y": 817.0159751618, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −111.1176375; latitude: 44.68839917", + "x": 665.06974624248, + "y": 339.76350217126446, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.39007944; latitude: 25.84871167", + "x": 1916.6014978018557, + "y": 1322.0355568156647, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.83730472; latitude: 27.19199444", + "x": 1885.205614628418, + "y": 1256.2160291124487, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.62038889; latitude: 27.89380556", + "x": 1889.7395045960045, + "y": 1218.542014147526, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.66227972; latitude: 26.70089833", + "x": 1943.686907200698, + "y": 1272.926830443539, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.43257556; latitude: 26.74423278", + "x": 1907.503652405698, + "y": 1276.385450393573, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.34527917; latitude: 28.01398389", + "x": 1855.5328227518814, + "y": 1217.2856822838596, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.835695; latitude: 28.62234556", + "x": 1919.710134367766, + "y": 1175.347601580477, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.65174111; latitude: 28.922765", + "x": 1880.2178097853607, + "y": 1165.6341577625526, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.49560833; latitude: 27.81280389", + "x": 1942.0324945275702, + "y": 1214.529697152483, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.37658333; latitude: 29.06177778", + "x": 1846.2761640188696, + "y": 1163.3154229306376, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.31648167; latitude: 28.80859639", + "x": 1850.9007648427496, + "y": 1176.0237516338573, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.17027778; latitude: 25.77833333", + "x": 1974.4946664708514, + "y": 1316.3815090647379, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.42338694; latitude: 25.94898194", + "x": 1961.1636048873888, + "y": 1309.6316901225944, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.20633333; latitude: 29.46738889", + "x": 1895.9999263934055, + "y": 1134.3605620830147, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.55422528; latitude: 25.49872139", + "x": 1958.805597121408, + "y": 1333.6765791362732, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.55977556; latitude: 27.96196472", + "x": 1937.8298797159086, + "y": 1207.3357997178402, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.47288194; latitude: 29.35422", + "x": 1839.7388152972107, + "y": 1148.7959610711632, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −65.8007175; latitude: 18.13801667", + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −64.94070111; latitude: 18.33856722", + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −64.70486444; latitude: 17.74719528", + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −65.66182806; latitude: 18.30800972", + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −64.79958306; latitude: 18.33689833", + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.30681111; latitude: 36.28186944", + "x": 1295.0771957909585, + "y": 827.2902256619452, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −94.20400222; latitude: 46.99016361", + "x": 1288.7186573012586, + "y": 263.3296797466851, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.90117972; latitude: 42.87999833", + "x": 1151.7611373375157, + "y": 478.67734140648236, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −96.80199528; latitude: 43.45747694", + "x": 1193.9441847502242, + "y": 448.87830900116614, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.51927306; latitude: 45.65371028", + "x": 1643.625069853994, + "y": 308.38632216739734, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.8943433; latitude: 46.76823667", + "x": 1048.1523774869001, + "y": 270.9737217128959, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −100.6348492; latitude: 46.06638556", + "x": 1055.6964783832655, + "y": 308.0473931169813, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.17980472; latitude: 44.244825", + "x": 1665.125070689683, + "y": 380.1694129567736, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.78147889; latitude: 48.39443778", + "x": 1161.7332178689721, + "y": 190.34911327361579, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.62371667; latitude: 42.50311694", + "x": 1697.6493427049993, + "y": 468.3926396990687, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −89.30448694; latitude: 44.04162556", + "x": 1475.1851800645718, + "y": 409.45153148906456, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −90.90096333; latitude: 43.57913917", + "x": 1416.7299455849047, + "y": 437.4429579985567, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −88.93344694; latitude: 45.51662972", + "x": 1483.3169502762548, + "y": 331.28599421431227, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.99199861; latitude: 45.98607111", + "x": 1224.5728789267048, + "y": 316.3576794031542, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.74393417; latitude: 46.00931139", + "x": 1669.400771229715, + "y": 286.4031914614102, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −95.60445389; latitude: 44.24995694", + "x": 1239.0705162477022, + "y": 407.31748155170726, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −85.06066722; latitude: 42.93769972", + "x": 1640.3187888176349, + "y": 452.395079447007, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −102.1421142; latitude: 47.93640083", + "x": 1007.2327371559564, + "y": 207.68841608208686, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.84938028; latitude: 43.45418694", + "x": 1720.1757371053238, + "y": 414.8175559594715, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −84.13333667; latitude: 45.00000833", + "x": 1661.913993008215, + "y": 340.6320560147269, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −139.6602261; latitude: 59.50336056", + "x": 429.9249810028914, + "y": 1270.5458448929649, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: 138.1; latitude: 9.5167", + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −83.53040889; latitude: 42.2379275", + "x": 1703.0262576375333, + "y": 481.7830173499651, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −120.5440594; latitude: 46.56816972", + "x": 347.76537310011406, + "y": 172.13941991934962, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −97.38594444; latitude: 42.91669444", + "x": 1171.4412419230339, + "y": 477.08494616775806, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.67909667; latitude: 41.26073556", + "x": 1819.9094298150233, + "y": 516.6688628318138, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −114.6059722; latitude: 32.65658333", + "x": 414.02968660278486, + "y": 939.6805624349488, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −169.6700236; latitude: 14.18435056", + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −162.5248094; latitude: 60.87202194", + "x": 222.53443525656203, + "y": 1254.802287516579, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −161.42091; latitude: 60.90453167", + "x": 232.34049469754842, + "y": 1255.3828660532236, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −156.529865; latitude: 63.1460375", + "x": 277.20003176042536, + "y": 1217.4483123742684, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −149.8455556; latitude: 61.39445139", + "x": 334.37930021760525, + "y": 1248.9125474267014, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −146.5794219; latitude: 62.29368944", + "x": 360.97697802850524, + "y": 1229.994322395095, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −161.1603672; latitude: 56.00753611", + "x": 224.9533946841217, + "y": 1345.1272104025084, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −149.1201436; latitude: 64.30120361", + "x": 336.7851503327873, + "y": 1195.2141853623227, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −145.8240381; latitude: 66.27399583", + "x": 358.3832810715028, + "y": 1156.7894662581198, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −110.4441667; latitude: 34.00333333", + "x": 604.4134003132389, + "y": 901.0595536942719, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −80.78606861; latitude: 36.28002361", + "x": 1857.7440581965961, + "y": 777.2096605852321, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −76.37314667; latitude: 40.70644889", + "x": 1991.1909499881758, + "y": 514.5770163522498, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −82.15591639; latitude: 28.22806472", + "x": 1862.603739213012, + "y": 1204.9649827751687, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −108.7917769; latitude: 35.08322694", + "x": 682.5174158487292, + "y": 854.73715315699, + "size": 10, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.7, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "longitude: −81.89210528; latitude: 39.94445833", + "x": 1783.3944738220362, + "y": 592.725032919783, + "size": 10, + "shape": "circle" + } + ], + "marktype": "symbol", + "name": "layer_0_marks", + "role": "mark", + "zindex": 0 + } + ], + "fill": "transparent", + "x": 0, + "y": 0, + "width": 500, + "height": 300 + } + ], + "marktype": "group", + "name": "root", + "role": "frame", + "zindex": 0 + } +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/float_font_size.png b/avenger-vega-test-data/vega-scenegraphs/vl-convert/float_font_size.png new file mode 100644 index 0000000..6e911d4 Binary files /dev/null and b/avenger-vega-test-data/vega-scenegraphs/vl-convert/float_font_size.png differ diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/float_font_size.sg.json b/avenger-vega-test-data/vega-scenegraphs/vl-convert/float_font_size.sg.json new file mode 100644 index 0000000..4ffe602 --- /dev/null +++ b/avenger-vega-test-data/vega-scenegraphs/vl-convert/float_font_size.sg.json @@ -0,0 +1,705 @@ +{ + "width": 229, + "height": 264, + "origin": [ + 44, + 27 + ], + "scenegraph": { + "clip": false, + "interactive": true, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 200, + "x2": 180 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 160, + "x2": 180 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 120, + "x2": 180 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 80, + "x2": 180 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 40, + "x2": 180 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 0, + "x2": 180 + } + ], + "marktype": "rule", + "role": "axis-grid", + "zindex": 0 + } + ], + "orient": "left", + "offset": 0, + "x": 0.5, + "y": 0.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0, + "aria": false + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 10 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 30 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 50 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 70 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 90 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 110 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 130 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 150 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 170 + } + ], + "marktype": "rule", + "role": "axis-tick", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 9.5, + "y": 7, + "angle": 0, + "limit": 180, + "text": "A", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 29.5, + "y": 7, + "angle": 0, + "limit": 180, + "text": "B", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 49.5, + "y": 7, + "angle": 0, + "limit": 180, + "text": "C", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 69.5, + "y": 7, + "angle": 0, + "limit": 180, + "text": "D", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 89.5, + "y": 7, + "angle": 0, + "limit": 180, + "text": "E", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 109.5, + "y": 7, + "angle": 0, + "limit": 180, + "text": "F", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 129.5, + "y": 7, + "angle": 0, + "limit": 180, + "text": "G", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 149.5, + "y": 7, + "angle": 0, + "limit": 180, + "text": "H", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 169.5, + "y": 7, + "angle": 0, + "limit": 180, + "text": "I", + "align": "center", + "baseline": "top" + } + ], + "marktype": "text", + "role": "axis-label", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "x": 0, + "x2": 180, + "y": 0 + } + ], + "marktype": "rule", + "role": "axis-domain", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "align": "center", + "angle": 0, + "baseline": "top", + "text": "a", + "x": 90, + "y": 21 + } + ], + "marktype": "text", + "role": "axis-title", + "zindex": 0 + } + ], + "orient": "bottom", + "offset": 0, + "x": 0.5, + "y": 200.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 200, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 160, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 120, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 80, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 40, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "x": 0, + "x2": -5 + } + ], + "marktype": "rule", + "role": "axis-tick", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 200, + "angle": 0, + "limit": 180, + "text": "0", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 160, + "angle": 0, + "limit": 180, + "text": "20", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 120, + "angle": 0, + "limit": 180, + "text": "40", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 80, + "angle": 0, + "limit": 180, + "text": "60", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 39.99999999999999, + "angle": 0, + "limit": 180, + "text": "80", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 0, + "angle": 0, + "limit": 180, + "text": "100", + "align": "right", + "baseline": "middle" + } + ], + "marktype": "text", + "role": "axis-label", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "x": 0, + "y": 200, + "y2": 0 + } + ], + "marktype": "rule", + "role": "axis-domain", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "align": "center", + "angle": -90, + "baseline": "bottom", + "text": "b", + "y": 100, + "x": -27.6845703125 + } + ], + "marktype": "text", + "role": "axis-title", + "zindex": 0 + } + ], + "orient": "left", + "offset": 0, + "x": 0.5, + "y": 0.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0 + }, + { + "clip": false, + "interactive": true, + "items": [ + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "a: A; b: 28", + "x": 1, + "width": 18, + "y": 144, + "y2": 200, + "height": 56 + }, + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "a: B; b: 55", + "x": 21, + "width": 18, + "y": 89.99999999999999, + "y2": 200, + "height": 110.00000000000001 + }, + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "a: C; b: 43", + "x": 41, + "width": 18, + "y": 114.00000000000001, + "y2": 200, + "height": 85.99999999999999 + }, + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "a: D; b: 91", + "x": 61, + "width": 18, + "y": 17.999999999999993, + "y2": 200, + "height": 182 + }, + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "a: E; b: 81", + "x": 81, + "width": 18, + "y": 37.999999999999986, + "y2": 200, + "height": 162 + }, + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "a: F; b: 53", + "x": 101, + "width": 18, + "y": 94, + "y2": 200, + "height": 106 + }, + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "a: G; b: 19", + "x": 121, + "width": 18, + "y": 162, + "y2": 200, + "height": 38 + }, + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "a: H; b: 87", + "x": 141, + "width": 18, + "y": 26, + "y2": 200, + "height": 174 + }, + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "a: I; b: 52", + "x": 161, + "width": 18, + "y": 96, + "y2": 200, + "height": 104 + } + ], + "marktype": "rect", + "name": "marks", + "role": "mark", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 12.75, + "fontWeight": "bold", + "opacity": 1, + "text": "Some title", + "baseline": "top", + "align": "center", + "angle": 0 + } + ], + "marktype": "text", + "role": "title-text", + "zindex": 0 + } + ], + "orient": "top", + "offset": 4, + "align": "center", + "angle": 0, + "x": 90, + "y": -21.75 + } + ], + "marktype": "group", + "role": "title", + "zindex": 0 + } + ], + "fill": "transparent", + "stroke": "#ddd", + "x": 0, + "y": 0, + "width": 180, + "height": 200 + } + ], + "marktype": "group", + "name": "root", + "role": "frame", + "zindex": 0 + } +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/font_with_quotes.png b/avenger-vega-test-data/vega-scenegraphs/vl-convert/font_with_quotes.png new file mode 100644 index 0000000..aa9b7db Binary files /dev/null and b/avenger-vega-test-data/vega-scenegraphs/vl-convert/font_with_quotes.png differ diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/font_with_quotes.sg.json b/avenger-vega-test-data/vega-scenegraphs/vl-convert/font_with_quotes.sg.json new file mode 100644 index 0000000..505d9b3 --- /dev/null +++ b/avenger-vega-test-data/vega-scenegraphs/vl-convert/font_with_quotes.sg.json @@ -0,0 +1,612 @@ +{ + "width": 248, + "height": 247, + "origin": [ + 41, + 10 + ], + "scenegraph": { + "clip": false, + "interactive": true, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": -200, + "y2": 0 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 50, + "y": -200, + "y2": 0 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 100, + "y": -200, + "y2": 0 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 150, + "y": -200, + "y2": 0 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 200, + "y": -200, + "y2": 0 + } + ], + "marktype": "rule", + "role": "axis-grid", + "zindex": 0 + } + ], + "orient": "bottom", + "offset": 0, + "x": 0.5, + "y": 200.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0, + "aria": false + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 200, + "x2": 200 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 167, + "x2": 200 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 133, + "x2": 200 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 100, + "x2": 200 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 67, + "x2": 200 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 33, + "x2": 200 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 0, + "x2": 200 + } + ], + "marktype": "rule", + "role": "axis-grid", + "zindex": 0 + } + ], + "orient": "left", + "offset": 0, + "x": 0.5, + "y": 0.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0, + "aria": false + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 0 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 50 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 100 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 150 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 200 + } + ], + "marktype": "rule", + "role": "axis-tick", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "\"Liberation Sans\", sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 0, + "y": 7, + "angle": 0, + "limit": 180, + "text": "1.0", + "align": "left", + "baseline": "top" + }, + { + "fill": "#000", + "font": "\"Liberation Sans\", sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 50, + "y": 7, + "angle": 0, + "limit": 180, + "text": "1.5", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "\"Liberation Sans\", sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 100, + "y": 7, + "angle": 0, + "limit": 180, + "text": "2.0", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "\"Liberation Sans\", sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 150, + "y": 7, + "angle": 0, + "limit": 180, + "text": "2.5", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "\"Liberation Sans\", sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 200, + "y": 7, + "angle": 0, + "limit": 180, + "text": "3.0", + "align": "right", + "baseline": "top" + } + ], + "marktype": "text", + "role": "axis-label", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "x": 0, + "x2": 200, + "y": 0 + } + ], + "marktype": "rule", + "role": "axis-domain", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "\"Liberation Sans\", sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "align": "center", + "angle": 0, + "baseline": "top", + "text": "a", + "x": 100, + "y": 21 + } + ], + "marktype": "text", + "role": "axis-title", + "zindex": 0 + } + ], + "orient": "bottom", + "offset": 0, + "x": 0.5, + "y": 200.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 200, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 167, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 133, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 100, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 67, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 33, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "x": 0, + "x2": -5 + } + ], + "marktype": "rule", + "role": "axis-tick", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "\"Liberation Sans\", sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 200, + "angle": 0, + "limit": 180, + "text": "0.0", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "\"Liberation Sans\", sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 166.66666666666669, + "angle": 0, + "limit": 180, + "text": "0.5", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "\"Liberation Sans\", sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 133.33333333333334, + "angle": 0, + "limit": 180, + "text": "1.0", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "\"Liberation Sans\", sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 100, + "angle": 0, + "limit": 180, + "text": "1.5", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "\"Liberation Sans\", sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 66.66666666666667, + "angle": 0, + "limit": 180, + "text": "2.0", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "\"Liberation Sans\", sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 33.33333333333333, + "angle": 0, + "limit": 180, + "text": "2.5", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "\"Liberation Sans\", sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 0, + "angle": 0, + "limit": 180, + "text": "3.0", + "align": "right", + "baseline": "middle" + } + ], + "marktype": "text", + "role": "axis-label", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "x": 0, + "y": 200, + "y2": 0 + } + ], + "marktype": "rule", + "role": "axis-domain", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "\"Liberation Sans\", sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "align": "center", + "angle": -90, + "baseline": "bottom", + "text": "b", + "y": 100, + "x": -24.9013671875 + } + ], + "marktype": "text", + "role": "axis-title", + "zindex": 0 + } + ], + "orient": "left", + "offset": 0, + "x": 0.5, + "y": 0.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0 + }, + { + "clip": false, + "interactive": true, + "items": [ + { + "strokeWidth": 2, + "stroke": "#4c78a8", + "description": "a: 1; b: 1", + "x": 0, + "y": 133.33333333333334, + "defined": true + }, + { + "strokeWidth": 2, + "stroke": "#4c78a8", + "description": "a: 2; b: 3", + "x": 100, + "y": 0, + "defined": true + }, + { + "strokeWidth": 2, + "stroke": "#4c78a8", + "description": "a: 3; b: 2", + "x": 200, + "y": 66.66666666666667, + "defined": true + } + ], + "marktype": "line", + "name": "layer_0_layer_0_layer_0_marks", + "role": "mark", + "zindex": 0 + } + ], + "fill": "transparent", + "stroke": "#ddd", + "x": 0, + "y": 0, + "width": 200, + "height": 200 + } + ], + "marktype": "group", + "name": "root", + "role": "frame", + "zindex": 0 + } +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/geoScale.png b/avenger-vega-test-data/vega-scenegraphs/vl-convert/geoScale.png new file mode 100644 index 0000000..1f2a74b Binary files /dev/null and b/avenger-vega-test-data/vega-scenegraphs/vl-convert/geoScale.png differ diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/geoScale.sg.json b/avenger-vega-test-data/vega-scenegraphs/vl-convert/geoScale.sg.json new file mode 100644 index 0000000..c0d288a --- /dev/null +++ b/avenger-vega-test-data/vega-scenegraphs/vl-convert/geoScale.sg.json @@ -0,0 +1,526 @@ +{ + "width": 610, + "height": 414, + "origin": [ + 5, + 7 + ], + "scenegraph": { + "clip": false, + "interactive": true, + "items": [ + { + "items": [ + { + "clip": true, + "interactive": true, + "items": [ + { + "description": "x: 97.3983955777; y: 92.1279885517; url: https://tile.openstreetmap.org/3/3/3.png", + "width": 233.25597710331436, + "height": 233.25597710331436, + "url": "https://tile.openstreetmap.org/3/3/3.png", + "x": -19.229592973940072, + "y": -24.5 + }, + { + "description": "x: 97.3983955777; y: 324.383965655; url: https://tile.openstreetmap.org/3/3/4.png", + "width": 233.25597710331436, + "height": 233.25597710331436, + "url": "https://tile.openstreetmap.org/3/3/4.png", + "x": -19.229592973940072, + "y": 207.7559771033144 + }, + { + "description": "x: 329.654372681; y: 92.1279885517; url: https://tile.openstreetmap.org/3/4/3.png", + "width": 233.25597710331436, + "height": 233.25597710331436, + "url": "https://tile.openstreetmap.org/3/4/3.png", + "x": 213.0263841293743, + "y": -24.5 + }, + { + "description": "x: 329.654372681; y: 324.383965655; url: https://tile.openstreetmap.org/3/4/4.png", + "width": 233.25597710331436, + "height": 233.25597710331436, + "url": "https://tile.openstreetmap.org/3/4/4.png", + "x": 213.0263841293743, + "y": 207.7559771033144 + }, + { + "description": "x: 561.910349784; y: 92.1279885517; url: https://tile.openstreetmap.org/3/5/3.png", + "width": 233.25597710331436, + "height": 233.25597710331436, + "url": "https://tile.openstreetmap.org/3/5/3.png", + "x": 445.2823612326887, + "y": -24.5 + }, + { + "description": "x: 561.910349784; y: 324.383965655; url: https://tile.openstreetmap.org/3/5/4.png", + "width": 233.25597710331436, + "height": 233.25597710331436, + "url": "https://tile.openstreetmap.org/3/5/4.png", + "x": 445.2823612326887, + "y": 207.7559771033144 + } + ], + "marktype": "image", + "name": "layer_0_marks", + "role": "mark", + "zindex": 0 + }, + { + "clip": false, + "interactive": true, + "items": [ + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M388.512,212.986L389.383,213.553L408.099,224.075L408.451,227.074L415.859,232.248L413.476,238.635L413.781,241.577L417.086,243.47L417.241,244.822L415.82,247.965L416.116,249.548L415.778,252.04L417.58,255.314L419.716,260.475L421.61,261.622L421.61,261.622L417.504,264.667L411.86,266.709L408.764,266.623L406.925,268.202L403.332,268.338L401.984,269.004L395.782,267.519L391.899,267.945L390.454,260.798L388.703,258.355L387.665,256.907L382.606,255.932L379.676,254.362L376.396,253.483L374.339,252.609L372.183,251.281L372.183,251.281L369.396,244.718L366.403,241.807L365.37,238.796L365.886,236.099L364.957,231.332L367.092,231.086L368.964,229.211L370.973,226.513L372.246,225.431L372.199,223.751L371.087,222.58L370.788,220.545L370.788,220.545L372.278,219.891L372.576,216.853L370.527,213.94L372.337,213.32L377.995,213.386Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M168.801,59.452L168.804,59.842L168.704,60.969L168.689,69.715L151.749,69.415L151.915,83.948L147.079,84.453L145.817,87.333L146.796,95.375L126.584,95.34L125.458,97.187L125.68,94.847L125.77,94.856L137.393,94.413L138.013,92.412L140.127,89.91L141.831,82.167L149.006,76.059L151.433,68.856L153.046,68.435L154.727,63.94L159.069,63.319L160.936,64.071L163.28,64.071L164.943,62.753L168.134,62.566L168.015,59.452Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M364.957,231.332L365.886,236.099L365.37,238.796L366.403,241.807L369.396,244.718L372.183,251.281L372.183,251.281L370.15,250.75L363.217,251.63L361.834,252.254L360.363,255.588L361.518,257.895L360.602,264.104L359.963,269.387L361.357,270.326L364.965,272.38L366.382,271.42L366.813,277.126L362.863,277.082L360.743,274.167L358.842,271.914L354.887,271.176L353.729,268.413L350.573,270.077L346.44,269.341L344.715,266.95L341.438,266.464L339.02,266.591L338.723,264.956L336.943,264.824L334.593,264.514L331.395,265.301L329.153,265.172L327.875,265.655L328.151,259.408L326.43,257.465L326.051,254.249L326.811,251.103L325.765,249.091L325.67,245.815L319.408,245.86L319.857,243.986L317.224,244.006L316.946,244.907L313.745,245.11L312.45,248.144L311.676,249.446L308.824,248.71L307.122,249.443L303.709,249.865L301.732,247.141L300.546,245.458L299.065,242.34L297.792,238.471L282.561,238.403L280.751,239.026L279.256,238.929L277.125,239.627L276.402,238.017L277.715,237.469L277.877,235.209L278.721,233.877L280.599,232.788L281.955,233.316L283.721,231.333L286.532,231.384L286.863,232.85L288.791,233.768L291.828,230.522L294.834,227.995L296.139,226.34L295.966,222.087L298.207,217.07L300.572,214.41L303.971,211.922L304.564,210.276L304.692,208.383L305.534,206.592L305.263,203.667L305.907,199.092L306.915,195.869L308.461,193.107L308.767,189.985L309.231,186.377L311.241,183.749L314.004,182.081L318.252,183.841L321.539,185.751L325.314,186.26L329.165,187.27L330.708,184.145L331.417,183.745L333.769,184.265L339.515,181.68L341.551,182.776L343.222,182.621L343.996,181.361L345.915,180.917L349.797,181.462L353.107,181.581L354.811,181.032L357.938,185.308L360.255,185.935L361.637,185.066L364.024,185.407L366.898,184.311L368.124,186.522L372.667,189.96L372.667,189.96L372.355,196.003L374.424,196.702L372.765,198.536L370.782,199.907L368.808,202.6L367.723,205L367.432,209.143L366.236,211.115L366.193,215.006L364.709,216.446L364.518,219.519L363.809,219.917L363.331,222.743L364.629,225.093Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M428.157,216.772L425.101,212.513L425.04,193.706L429.551,187.841L430.962,186.21L434.271,186.114L438.871,182.464L445.594,182.235L460.179,166.643L463.778,162.288L466.108,159.077L466.109,156.345L466.11,151.05L466.128,148.883L466.16,148.797L466.16,148.797L467.809,148.693L470.188,147.91L472.924,147.38L475.367,145.575L477.324,145.56L477.441,147.018L476.964,150.081L476.984,152.844L475.894,154.74L474.44,160.401L471.955,166.232L468.764,172.88L464.335,180.487L459.928,186.286L453.858,193.34L448.693,197.522L440.973,202.649L436.162,206.575L430.513,212.827L429.323,215.549Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M415.859,232.248L408.451,227.074L408.099,224.075L389.383,213.553L388.512,212.986L388.459,207.516L389.938,205.425L392.478,202.008L394.356,198.245L392.085,192.314L391.482,189.72L389.034,186.128L392.21,183.036L395.708,179.621L398.389,180.491L398.389,183.399L400.152,185.103L403.745,185.103L410.278,189.497L411.909,189.55L413.118,189.407L414.26,190.004L417.702,190.41L419.227,188.255L423.942,186.091L426.024,187.84L429.551,187.841L425.04,193.706L425.101,212.513L428.157,216.772L424.543,218.834L423.268,220.989L421.334,221.368L420.602,225.009L418.944,227.095L417.937,230.538Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M340.325,165.463L336.394,163.182L334.604,161.678L334.273,160.054L335.111,157.876L335.096,155.739L332.119,152.458L331.534,150.208L331.596,148.934L329.699,147.381L329.642,144.316L328.56,142.277L326.748,142.583L327.268,140.639L328.604,138.43L328.02,136.231L329.716,134.6L328.64,133.356L330.005,130.062L332.362,126.121L336.812,126.496L336.558,104.997L336.622,102.696L342.557,102.679L342.557,91.638L363.306,91.638L383.331,91.638L403.802,91.638L405.466,97.081L404.335,98.084L405.084,103.75L406.979,110.275L408.945,111.615L411.77,113.623L409.158,116.715L405.357,117.604L403.731,119.26L403.222,122.84L400.999,130.713L401.548,132.848L400.726,137.416L398.627,142.636L395.514,145.253L393.301,149.279L392.782,151.429L390.337,152.901L388.811,158.387L388.88,163.087L388.82,159.012L388.105,158.908L388.194,156.301L387.574,154.501L384.915,152.428L384.295,148.636L384.915,144.744L382.523,144.381L382.169,145.559L379.068,145.831L380.308,147.37L380.751,150.533L377.916,153.42L375.346,157.201L372.688,157.74L368.346,154.681L366.397,155.761L365.865,157.291L363.207,158.279L363.03,159.357L357.891,159.357L357.182,158.279L353.461,158.1L351.6,158.998L350.182,158.549L347.524,155.491L346.638,154.051L342.917,154.771L341.499,157.201L340.17,161.87L338.398,162.857L336.813,163.426Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M336.558,104.997L336.812,126.496L332.362,126.121L330.005,130.062L328.64,133.356L329.716,134.6L328.02,136.231L328.604,138.43L327.268,140.639L326.748,142.583L328.56,142.277L329.642,144.316L329.699,147.381L331.596,148.934L331.534,150.208L328.267,151.105L325.648,153.232L321.917,158.951L317.059,161.373L312.075,161.048L310.62,161.529L311.131,163.367L308.439,165.192L306.248,167.227L299.75,169.219L298.461,168.04L297.606,167.938L296.655,169.278L292.387,169.669L293.196,168.259L291.569,164.665L290.842,162.505L288.594,161.618L285.548,158.566L286.669,156.094L289.021,156.621L290.477,156.248L293.36,156.299L290.551,151.529L290.739,148.033L290.395,144.534L288.343,141.148L288.859,138.652L285.549,138.53L285.56,135.113L283.412,133.141L285.64,126.102L292.224,121.035L292.496,114.004L294.484,102.931L295.607,100.564L293.459,98.674L293.376,96.917L291.445,95.478L290.178,86.819L295.388,83.751L315.973,94.444Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M297.887,362.099L300.359,359.2L302.397,360.803L303.267,363.316L305.583,363.745L308.828,364.861L311.601,364.43L316.208,361.42L316.213,340.094L317.607,340.948L320.667,346.376L320.191,349.88L321.343,351.908L325.04,351.318L327.621,348.744L330.065,347.015L331.328,344.271L333.846,342.946L336.021,343.64L338.487,345.242L342.687,345.525L345.988,344.193L346.51,342.411L347.418,339.688L350.226,339.233L351.778,337.104L353.496,333.342L358.13,329.149L365.433,325.036L367.533,325.097L370.03,326.041L371.769,325.372L374.513,325.929L376.985,333.818L378.328,337.833L377.408,344.178L377.849,346.234L375.244,345.185L373.752,345.593L373.265,347.263L371.856,349.423L371.904,351.418L374.984,354.558L378.005,353.932L379.056,351.36L382.971,351.409L381.681,355.63L381.071,360.481L379.736,363.133L376.214,366.113L375.205,366.969L373.018,369.986L371.578,373.053L368.651,377.358L362.818,383.614L359.175,387.284L355.278,390.084L349.884,392.484L347.252,392.806L346.586,394.531L343.45,393.612L340.895,394.795L335.301,393.597L332.174,394.355L330.037,394.03L324.714,396.489L320.308,397.479L317.119,399.849L314.771,400L312.588,397.763L310.843,397.649L308.62,394.862L308.377,395.726L307.691,394.053L307.719,390.42L306.043,386.299L307.708,385.184L307.573,380.51L304.194,374.863L301.6,369.8L301.592,369.784ZM363.09,364.33L360.837,362.516L358.425,363.716L355.628,366.026L352.876,369.784L356.748,374.38L358.595,373.784L359.543,371.872L362.42,370.94L363.298,368.997L364.881,366.113Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M363.09,364.33L364.881,366.113L363.298,368.997L362.42,370.94L359.543,371.872L358.595,373.784L356.748,374.38L352.876,369.784L355.628,366.026L358.425,363.716L360.837,362.516Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M374.513,325.929L371.769,325.372L370.03,326.041L367.533,325.097L365.433,325.036L362.143,322.523L358.152,321.672L356.633,318.162L356.621,316.216L354.41,315.623L348.569,309.596L346.947,306.437L345.908,305.466L343.921,301.124L349.69,301.717L351.367,302.342L353.109,302.216L355.968,298.711L360.456,294.275L362.304,293.852L362.931,291.989L365.87,289.851L369.779,289.118L370.113,291.118L374.418,291.011L376.81,292.144L377.923,293.474L380.38,293.865L383.061,295.595L383.073,302.439L382.066,306.207L381.845,310.287L382.674,311.91L382.091,315.143L381.312,315.644L379.951,319.625Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M365.433,325.036L358.13,329.149L353.496,333.342L351.778,337.104L350.226,339.233L347.418,339.688L346.51,342.411L345.988,344.193L342.687,345.525L338.487,345.242L336.021,343.64L333.846,342.946L331.328,344.271L330.065,347.015L327.621,348.744L325.04,351.318L321.343,351.908L320.191,349.88L320.667,346.376L317.607,340.948L316.213,340.094L316.212,323.689L321.299,323.495L321.451,303.922L325.293,303.742L333.251,301.842L335.223,304.08L338.518,301.952L340.084,301.94L342.993,300.719L343.921,301.124L345.908,305.466L346.947,306.437L348.569,309.596L354.41,315.623L356.621,316.216L356.633,318.162L358.152,321.672L362.143,322.523Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M316.213,340.094L316.208,361.42L311.601,364.43L308.828,364.861L305.583,363.745L303.267,363.316L302.397,360.803L300.359,359.2L297.887,362.099L294.051,357.675L292.031,353.427L290.892,347.807L289.62,343.656L287.89,334.913L287.775,328.192L287.114,325.147L285.106,322.854L282.442,318.278L279.729,311.677L278.602,308.242L274.403,302.928L274.089,298.771L276.573,297.743L279.663,296.824L283.009,296.985L286.086,299.428L286.866,299.048L307.788,298.815L311.364,301.408L323.859,302.176L333.345,299.968L337.571,298.738L340.918,299.05L342.955,300.269L342.993,300.719L340.084,301.94L338.518,301.952L335.223,304.08L333.251,301.842L325.293,303.742L321.451,303.922L321.299,323.495L316.212,323.689Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M127.263,137.248L125.134,133.107L122.559,131.209L124.83,130.195L127.33,126.439L128.556,123.683L130.324,121.959L132.889,122.423L135.407,121.25L138.289,121.191L140.755,122.773L144.181,124.197L147.304,128.141L150.71,131.81L150.947,135.124L151.965,138.166L153.896,139.655L154.338,141.703L154.1,143.351L153.355,143.649L150.541,143.231L150.154,143.819L149.016,143.937L145.306,142.648L142.815,142.594L133.277,142.372L131.893,142.967L130.184,142.797L127.45,143.658L126.603,139.601L131.301,139.713L132.541,138.971L133.466,138.927L135.379,137.702L137.593,138.823L139.836,138.916L142.069,137.726L141.026,136.19L139.325,137.085L137.723,137.06L135.686,135.752L134.05,135.838L132.884,137.096Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M154.1,143.351L154.338,141.703L153.896,139.655L151.965,138.166L150.947,135.124L150.71,131.81L152.447,130.837L153.315,127.688L154.951,127.565L158.555,129.055L161.466,127.997L163.461,128.352L164.235,127.162L184.945,127.081L186.093,123.324L185.199,122.661L182.708,99.169L180.217,74.998L188.116,74.896L205.526,87.213L222.937,99.334L224.164,101.914L227.377,103.485L229.767,104.377L229.826,107.858L235.552,107.323L235.566,119.823L232.744,123.418L232.304,126.725L227.72,127.574L220.677,128.034L218.769,129.934L215.461,130.144L212.152,130.169L210.864,129.144L208.023,129.904L203.199,132.118L202.214,133.784L198.209,136.169L197.507,137.533L195.344,138.614L192.848,137.898L191.434,139.193L190.677,142.824L186.58,147.199L186.699,148.984L185.291,151.213L185.633,154.262L183.504,155.04L182.299,155.701L181.5,153.458L180.009,154.049L179.119,153.947L178.169,155.478L174.183,155.435L172.755,154.647L172.082,155.124L170.505,153.611L170.779,152.047L170.134,151.434L169.035,151.951L169.236,150.241L170.294,148.886L168.179,146.679L167.564,145.224L166.417,144.064L165.384,143.925L164.144,144.665L162.477,145.371L161.061,146.513L158.852,146.091L157.419,144.751L156.564,144.575L155.217,145.279L154.398,145.285Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M125.458,97.187L126.584,95.34L146.796,95.375L145.817,87.333L147.079,84.453L151.915,83.948L151.749,69.415L168.689,69.715L168.704,60.969L188.116,74.896L180.217,74.998L182.708,99.169L185.199,122.661L186.093,123.324L184.945,127.081L164.235,127.162L163.461,128.352L161.466,127.997L158.555,129.055L154.951,127.565L153.315,127.688L152.447,130.837L150.71,131.81L147.304,128.141L144.181,124.197L140.755,122.773L138.289,121.191L135.407,121.25L132.889,122.423L130.324,121.959L128.556,123.683L128.109,120.784L129.55,118.124L130.191,113.025L129.621,107.643L128.997,104.924L129.512,102.187L128.178,99.571Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M227.419,175.715L223.153,176.321L221.882,172.737L222.117,160.767L221.078,159.69L220.881,157.121L219.089,155.286L217.513,153.737L218.169,150.971L219.944,150.376L220.996,148.075L223.518,147.582L224.646,146.006L226.379,144.46L228.229,144.446L232.165,147.482L231.963,149.232L233.124,152.351L232.107,154.465L232.651,155.875L230.147,159.117L228.558,160.72L227.585,164.015L227.715,167.332Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M290.178,86.819L291.445,95.478L293.376,96.917L293.459,98.674L295.607,100.564L294.484,102.931L292.496,114.004L292.224,121.035L285.64,126.102L283.412,133.141L285.56,135.113L285.549,138.53L288.859,138.652L288.343,141.148L286.886,141.452L286.72,143.136L285.76,143.253L282.267,137.453L281.056,137.242L277.02,140.207L273.024,138.66L270.246,138.35L268.757,139.095L265.731,138.934L262.687,141.192L260.055,141.321L253.808,138.583L251.362,139.884L248.728,139.794L246.793,137.791L241.619,135.809L236.072,136.438L234.728,137.587L234.002,140.636L232.523,142.77L232.165,147.482L228.229,144.446L226.379,144.46L224.646,146.006L224.763,142.388L218.812,141.188L218.652,138.624L215.745,135.156L215.052,132.73L215.461,130.144L218.769,129.934L220.677,128.034L227.72,127.574L232.304,126.725L232.744,123.418L235.566,119.823L235.552,107.323L242.83,104.883L257.773,94.052L275.459,83.402L283.623,85.824L286.526,88.898Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M227.419,175.715L227.715,167.332L227.585,164.015L228.558,160.72L230.147,159.117L232.651,155.875L232.107,154.465L233.124,152.351L231.963,149.232L232.165,147.482L232.523,142.77L234.002,140.636L234.728,137.587L236.072,136.438L241.619,135.809L246.793,137.791L248.728,139.794L251.362,139.884L253.808,138.583L260.055,141.321L262.687,141.192L265.731,138.934L268.757,139.095L270.246,138.35L273.024,138.66L277.02,140.207L281.056,137.242L282.267,137.453L285.76,143.253L286.72,143.136L288.763,145.24L288.2,146.193L287.928,147.945L283.58,152.016L282.216,155.366L281.488,158.089L280.393,159.255L279.351,162.914L276.591,165.064L275.791,167.701L274.632,169.798L274.149,171.961L270.603,173.712L267.706,171.576L265.749,171.662L262.675,174.704L261.181,174.751L258.726,179.758L257.398,183.425L252.04,185.288L250.081,185.016L248.097,186.176L243.968,186.063L241.205,182.824L239.506,179.073L235.852,175.654L231.974,175.718Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M288.343,141.148L290.395,144.534L290.739,148.033L290.551,151.529L293.36,156.299L290.477,156.248L289.021,156.621L286.669,156.094L285.548,158.566L288.594,161.618L290.842,162.505L291.569,164.665L293.196,168.259L292.387,169.669L289.792,174.938L288.553,175.881L288.155,179.903L288.669,182.085L288.253,183.629L290.692,186.332L291.132,188.19L293.037,190.859L295.398,192.522L295.628,194.879L296.173,196.376L295.801,199.165L291.7,197.944L287.527,196.581L281.014,196.379L280.371,196.097L277.316,196.763L274.18,196.071L271.727,196.41L263.328,196.292L264.082,192.213L262.065,188.794L259.71,187.917L258.661,185.598L257.339,184.856L257.398,183.425L258.726,179.758L261.181,174.751L262.675,174.704L265.749,171.662L267.706,171.576L270.603,173.712L274.149,171.961L274.632,169.798L275.791,167.701L276.591,165.064L279.351,162.914L280.393,159.255L281.488,158.089L282.216,155.366L283.58,152.016L287.928,147.945L288.2,146.193L288.763,145.24L286.72,143.136L286.886,141.452Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M218.169,150.971L217.513,153.737L219.089,155.286L220.881,157.121L221.078,159.69L222.117,160.767L221.882,172.737L223.153,176.321L218.998,177.428L217.846,175.605L216.47,172.309L216.06,169.722L217.201,165.029L215.907,163.125L215.415,159.008L215.424,155.204L213.269,152.497L213.649,150.859Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M213.649,150.859L213.269,152.497L215.424,155.204L215.415,159.008L215.907,163.125L217.201,165.029L216.06,169.722L216.47,172.309L217.846,175.605L218.998,177.428L210.906,180.464L208.037,182.241L203.386,183.744L198.785,182.273L199.02,180.228L196.781,175.759L198.127,169.889L200.302,165.513L198.933,158.079L198.229,154.133L198.35,151.153L207.316,150.906L209.596,151.289L211.262,150.44Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M172.082,155.124L172.755,154.647L174.183,155.435L178.169,155.478L179.119,153.947L180.009,154.049L181.5,153.458L182.299,155.701L183.504,155.04L185.633,154.262L187.954,155.406L188.856,157.139L191.177,158.245L192.982,156.928L195.401,156.729L198.933,158.079L200.302,165.513L198.127,169.889L196.781,175.759L199.02,180.228L198.785,182.273L196.437,182.325L192.836,181.312L189.527,181.372L183.413,182.277L179.83,183.771L174.719,185.671L173.722,185.535L174.118,181.269L174.612,180.62L174.455,178.577L172.269,176.404L170.629,176.057L169.125,174.631L170.247,172.323L169.731,169.808L169.969,168.294L170.788,168.288L171.092,166.015L170.693,165.008L171.186,164.283L173.103,163.655L171.828,159.472L170.638,157.309L171.053,155.53Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M142.815,142.594L145.306,142.648L149.016,143.937L150.154,143.819L150.541,143.231L153.355,143.649L154.1,143.351L154.398,145.285L155.217,145.279L156.564,144.575L157.419,144.751L158.852,146.091L161.061,146.513L162.477,145.371L164.144,144.665L165.384,143.925L166.417,144.064L167.564,145.224L168.179,146.679L170.294,148.886L169.236,150.241L169.035,151.951L170.134,151.434L170.779,152.047L170.505,153.611L172.082,155.124L171.053,155.53L170.638,157.309L171.828,159.472L173.103,163.655L171.186,164.283L170.693,165.008L171.092,166.015L170.788,168.288L169.969,168.294L168.509,168.16L167.457,170.256L165.998,170.231L164.993,169.123L165.334,167.031L163.177,163.836L161.828,164.424L160.726,164.54L159.305,164.839L159.363,162.925L158.535,161.559L158.702,160.039L157.583,157.84L156.146,155.966L152.018,155.96L150.816,156.947L149.393,157.067L148.512,158.196L147.917,159.648L145.158,161.946L142.894,158.852L140.887,156.803L139.565,156.124L138.277,155.082L137.691,152.763L136.936,151.606L135.435,150.745L137.73,148.179L139.296,148.277L140.642,147.393L141.781,147.384L142.595,146.686L142.155,144.937L142.721,144.385Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M127.45,143.658L130.184,142.797L131.893,142.967L133.277,142.372L142.815,142.594L142.721,144.385L142.155,144.937L142.595,146.686L141.781,147.384L140.642,147.393L139.296,148.277L137.73,148.179L135.435,150.745L132.68,148.545L130.507,148.196L129.322,146.711L129.352,145.908L127.778,144.788Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M169.969,168.294L169.731,169.808L170.247,172.323L169.125,174.631L170.629,176.057L172.269,176.404L174.455,178.577L174.612,180.62L174.118,181.269L173.722,185.535L172.37,185.58L167.05,183.112L162.361,179.167L157.964,176.328L154.488,172.977L155.721,171.314L155.996,169.8L158.324,166.974L160.726,164.54L161.828,164.424L163.177,163.836L165.334,167.031L164.993,169.123L165.998,170.231L167.457,170.256L168.509,168.16Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M145.158,161.946L147.917,159.648L148.512,158.196L149.393,157.067L150.816,156.947L152.018,155.96L156.146,155.966L157.583,157.84L158.702,160.039L158.535,161.559L159.363,162.925L159.305,164.839L160.726,164.54L158.324,166.974L155.996,169.8L155.721,171.314L154.488,172.977L153.098,172.591L149.382,170.496L146.693,167.707L145.79,165.804Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M185.633,154.262L185.291,151.213L186.699,148.984L186.58,147.199L190.677,142.824L191.434,139.193L192.848,137.898L195.344,138.614L197.507,137.533L198.209,136.169L202.214,133.784L203.199,132.118L208.023,129.904L210.864,129.144L212.152,130.169L215.461,130.144L215.052,132.73L215.745,135.156L218.652,138.624L218.812,141.188L224.763,142.388L224.646,146.006L223.518,147.582L220.996,148.075L219.944,150.376L218.169,150.971L213.649,150.859L211.262,150.44L209.596,151.289L207.316,150.906L198.35,151.153L198.229,154.133L198.933,158.079L195.401,156.729L192.982,156.928L191.177,158.245L188.856,157.139L187.954,155.406Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M354.811,181.032L353.107,181.581L349.797,181.462L345.915,180.917L343.996,181.361L343.222,182.621L341.551,182.776L339.515,181.68L333.769,184.265L331.417,183.745L330.708,184.145L329.165,187.27L325.314,186.26L321.539,185.751L318.252,183.841L314.004,182.081L311.241,183.749L309.231,186.377L308.767,189.985L305.448,189.696L301.954,188.827L298.878,191.567L296.173,196.376L295.628,194.879L295.398,192.522L293.037,190.859L291.132,188.19L290.692,186.332L288.253,183.629L288.669,182.085L288.155,179.903L288.553,175.881L289.792,174.938L292.387,169.669L296.655,169.278L297.606,167.938L298.461,168.04L299.75,169.219L306.248,167.227L308.439,165.192L311.131,163.367L310.62,161.529L312.075,161.048L317.059,161.373L321.917,158.951L325.648,153.232L328.267,151.105L331.534,150.208L332.119,152.458L335.096,155.739L335.111,157.876L334.273,160.054L334.604,161.678L336.394,163.182L340.325,165.463L343.151,167.57L343.198,169.262L346.669,171.972L348.82,174.221L350.123,177.335L353.981,179.388Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M308.767,189.985L308.461,193.107L306.915,195.869L305.907,199.092L305.263,203.667L305.534,206.592L304.692,208.383L304.564,210.276L303.971,211.922L300.572,214.41L298.207,217.07L295.966,222.087L296.139,226.34L294.834,227.995L291.828,230.522L288.791,233.768L286.863,232.85L286.532,231.384L283.721,231.333L281.955,233.316L280.599,232.788L278.665,231.012L277.106,231.882L275.022,234.119L270.784,228.635L274.714,225.78L272.767,222.363L274.537,221.063L278.02,220.431L278.43,218.142L281.188,220.622L285.745,220.839L287.328,218.399L287.98,214.966L287.417,210.935L284.975,207.883L287.21,201.905L285.921,200.879L282.081,201.3L280.639,198.632L281.014,196.379L287.527,196.581L291.7,197.944L295.801,199.165L296.173,196.376L298.878,191.567L301.954,188.827L305.448,189.696Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M271.727,196.41L274.18,196.071L277.316,196.763L280.371,196.097L281.014,196.379L280.639,198.632L282.081,201.3L285.921,200.879L287.21,201.905L284.975,207.883L287.417,210.935L287.98,214.966L287.328,218.399L285.745,220.839L281.188,220.622L278.43,218.142L278.02,220.431L274.537,221.063L272.767,222.363L274.714,225.78L270.784,228.635L265.48,223.416L262.069,219.153L258.935,213.819L259.101,212.104L260.227,210.454L261.481,206.696L262.521,202.869L264.263,202.571L271.771,202.624Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M263.328,196.292L271.727,196.41L271.771,202.624L264.263,202.571L262.521,202.869L261.555,202.091Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M372.183,251.281L374.339,252.609L376.396,253.483L379.676,254.362L382.606,255.932L385.042,258.266L386.354,262.716L385.475,264.139L384.437,268.405L385.429,272.777L383.805,274.618L382.238,279.544L384.952,280.921L369.29,285.312L369.779,289.118L365.87,289.851L362.931,291.989L362.304,293.852L360.456,294.275L355.968,298.711L353.109,302.216L351.367,302.342L349.69,301.717L343.921,301.124L342.993,300.719L342.955,300.269L340.918,299.05L337.571,298.738L333.345,299.968L329.977,296.593L326.495,292.189L326.733,275.224L337.48,275.291L337.04,273.465L337.809,271.485L336.902,269.011L337.489,266.457L336.943,264.824L338.723,264.956L339.02,266.591L341.438,266.464L344.715,266.95L346.44,269.341L350.573,270.077L353.729,268.413L354.887,271.176L358.842,271.914L360.743,274.167L362.863,277.082L366.813,277.126L366.382,271.42L364.965,272.38L361.357,270.326L359.963,269.387L360.602,264.104L361.518,257.895L360.363,255.588L361.834,252.254L363.217,251.63L370.15,250.75Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M382.606,255.932L387.665,256.907L388.703,258.355L390.454,260.798L391.899,267.945L390.454,271.954L391.899,278.838L393.691,278.761L395.553,280.474L397.715,284.325L398.154,291.204L395.92,292.335L394.344,296.069L390.977,292.744L390.595,288.962L391.68,286.475L391.381,284.335L389.343,282.986L387.923,283.476L384.952,280.921L382.238,279.544L383.805,274.618L385.429,272.777L384.437,268.405L385.475,264.139L386.354,262.716L385.042,258.266Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M391.899,267.945L395.782,267.519L401.984,269.004L403.332,268.338L406.925,268.202L408.764,266.623L411.86,266.709L417.504,264.667L421.61,261.622L421.61,261.622L421.61,261.622L422.445,263.976L422.233,269.219L422.871,273.852L423.071,282.145L423.979,284.756L422.439,288.574L420.437,292.299L417.151,295.635L412.432,297.686L406.614,300.31L400.783,306.139L398.797,307.134L395.194,311.018L393.067,312.285L392.631,316.205L395.079,320.388L396.097,323.642L396.161,325.308L397.073,325.029L396.926,330.511L396.089,333.122L397.305,334.087L396.538,336.436L394.38,338.45L390.123,340.369L383.916,343.454L381.652,345.569L382.094,347.987L383.414,348.374L382.971,351.409L379.056,351.36L378.613,348.811L377.849,346.234L377.408,344.178L378.328,337.833L376.985,333.818L374.513,325.929L379.951,319.625L381.312,315.644L382.091,315.143L382.674,311.91L381.845,310.287L382.066,306.207L383.073,302.439L383.061,295.595L380.38,293.865L377.923,293.474L376.81,292.144L374.418,291.011L370.113,291.118L369.779,289.118L369.29,285.312L384.952,280.921L387.923,283.476L389.343,282.986L391.381,284.335L391.68,286.475L390.595,288.962L390.977,292.744L394.344,296.069L395.92,292.335L398.154,291.204L397.715,284.325L395.553,280.474L393.691,278.761L391.899,278.838L390.454,271.954Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M379.056,351.36L378.005,353.932L374.984,354.558L371.904,351.418L371.856,349.423L373.265,347.263L373.752,345.593L375.244,345.185L377.849,346.234L378.613,348.811Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M280.599,232.788L278.721,233.877L277.877,235.209L277.715,237.469L276.402,238.017L275.022,234.119L277.106,231.882L278.665,231.012ZM277.125,239.627L279.256,238.929L280.751,239.026L282.561,238.403L297.792,238.471L299.065,242.34L300.546,245.458L301.732,247.141L303.709,249.865L307.122,249.443L308.824,248.71L311.676,249.446L312.45,248.144L313.745,245.11L316.946,244.907L317.224,244.006L319.857,243.986L319.408,245.86L325.67,245.815L325.765,249.091L326.811,251.103L326.051,254.249L326.43,257.465L328.151,259.408L327.875,265.655L329.153,265.172L331.395,265.301L334.593,264.514L336.943,264.824L337.489,266.457L336.902,269.011L337.809,271.485L337.04,273.465L337.48,275.291L326.733,275.224L326.495,292.189L329.977,296.593L333.345,299.968L323.859,302.176L311.364,301.408L307.788,298.815L286.866,299.048L286.086,299.428L283.009,296.985L279.663,296.824L276.573,297.743L274.089,298.771L273.604,295.378L274.318,290.651L276.099,285.751L276.368,283.462L278.042,278.667L279.273,276.493L282.238,273.03L283.893,270.68L284.435,266.776L284.165,263.795L282.622,261.918L281.247,258.738L279.979,255.599L280.256,254.513L281.843,252.442L280.277,247.406L279.22,243.923L276.635,240.636Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M370.788,220.545L371.087,222.58L372.199,223.751L372.246,225.431L370.973,226.513L368.964,229.211L367.092,231.086L364.957,231.332L364.629,225.093L363.331,222.743L366.465,223.149L368.046,220.207Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M469.233,272.957L470.603,275.208L471.88,278.71L472.711,285.113L474.048,287.612L473.535,290.181L472.622,291.759L470.869,288.617L469.899,290.203L470.883,294.182L470.425,296.466L469.001,297.713L468.676,302.298L466.643,308.644L464.097,316.204L460.909,326.71L458.932,334.512L456.599,341.082L452.402,342.432L447.896,344.848L444.923,343.388L440.826,341.348L439.402,338.35L439.061,333.34L437.244,328.865L436.772,324.848L437.696,320.843L440.072,319.884L440.086,318.044L442.553,313.868L443.018,310.375L441.821,307.787L440.843,304.352L440.431,299.355L442.234,296.334L442.926,292.919L445.498,292.721L448.377,291.62L450.288,290.649L452.555,290.577L455.497,287.525L459.744,284.236L461.293,281.556L460.59,279.284L462.783,279.922L465.628,276.235L465.723,273.052L467.432,270.69Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M127.263,137.248L132.884,137.096L134.05,135.838L135.686,135.752L137.723,137.06L139.325,137.085L141.026,136.19L142.069,137.726L139.836,138.916L137.593,138.823L135.379,137.702L133.466,138.927L132.541,138.971L131.301,139.713L126.603,139.601Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M262.466,43.808L260.265,32.975L257.083,30.51L257.038,29.027L252.817,25.358L252.362,20.684L255.544,17.196L256.759,11.995L255.941,5.917L256.989,2.613L262.61,0L266.223,0.778L266.071,4.047L270.449,1.672L270.816,2.913L268.236,6.065L268.201,9.023L269.988,10.605L269.308,16.076L265.911,19.227L266.892,22.623L269.561,22.728L270.86,25.672L272.823,26.636L272.531,31.35L270.015,33.102L268.426,35.05L264.882,37.384L265.431,39.883L264.984,42.42Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M168.704,60.969L168.804,59.842L168.801,59.452L168.757,52.51L177.092,48.146L182.246,47.24L186.47,45.641L188.445,42.649L194.479,40.273L194.701,35.803L197.687,35.274L200.021,33.025L206.776,31.998L207.722,29.62L206.362,28.316L204.58,21.79L204.272,17.994L202.327,13.966L207.288,10.504L212.869,9.398L216.127,6.762L221.098,4.809L229.845,3.662L238.382,3.139L240.985,4.096L245.845,1.551L251.36,1.501L253.459,3.005L256.989,2.613L255.941,5.917L256.759,11.995L255.544,17.196L252.362,20.684L252.817,25.358L257.038,29.027L257.083,30.51L260.265,32.975L262.466,43.808L264.136,49.063L264.416,51.81L263.507,56.603L263.88,59.266L263.224,62.449L263.675,66.085L261.626,68.491L264.678,72.667L264.872,75.11L266.707,78.277L269.12,77.238L273.194,79.87L275.459,83.402L257.773,94.052L242.83,104.883L235.552,107.323L229.826,107.858L229.767,104.377L227.377,103.485L224.164,101.914L222.937,99.334L205.526,87.213L188.116,74.896Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M401.548,132.848L400.999,130.713L403.222,122.84L403.731,119.26L405.357,117.604L409.158,116.715L411.77,113.623L414.767,119.885L416.188,124.823L419.018,127.434L426.063,132.481L428.931,135.516L431.727,138.58L433.342,140.401L435.879,141.994L434.323,143.285L432.113,142.826L430.349,141.114L428.227,138.007L425.938,136.301L424.604,134.464L420.112,132.329L416.573,132.265L415.328,131.149L412.301,132.404L409.169,129.981L407.557,133.962Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M202.327,13.966L204.272,17.994L204.58,21.79L206.362,28.316L207.722,29.62L206.776,31.998L200.021,33.025L197.687,35.274L194.701,35.803L194.479,40.273L188.445,42.649L186.47,45.641L182.246,47.24L177.092,48.146L168.757,52.51L168.801,59.452L168.015,59.452L168.134,62.566L164.943,62.753L163.28,64.071L160.936,64.071L159.069,63.319L154.727,63.94L153.046,68.435L151.433,68.856L149.006,76.059L141.831,82.167L140.127,89.91L138.013,92.412L137.393,94.413L125.77,94.856L125.68,94.847L125.923,92.274L127.906,90.757L129.595,87.847L129.262,85.952L131.036,81.985L133.909,78.391L135.647,77.478L137.013,74.161L137.135,71.118L138.998,67.57L142.436,65.469L145.708,59.547L145.803,59.465L148.397,57.223L153.197,56.577L157.264,52.563L159.852,50.992L164.16,46.039L162.87,38.582L164.831,33.368L165.523,30.153L168.843,26L174.021,23.173L177.849,20.602L181.298,14.108L182.92,10.217L186.72,10.247L189.831,12.94L194.739,12.502L200.085,13.898Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M403.802,91.638L383.331,91.638L363.306,91.638L342.557,91.638L342.557,70.854L342.557,50.164L341.009,45.38L342.339,41.687L341.54,39.115L343.408,36.216L350.275,36.116L355.242,37.716L360.366,39.498L362.756,40.435L366.73,38.527L368.854,36.796L373.406,36.296L377.076,37.061L378.482,40.053L379.68,38.084L383.816,39.508L387.839,39.849L390.379,38.331L390.379,38.331L393.258,47.066L393.77,48.608L392.321,50.987L391.21,55.433L389.806,58.479L388.603,59.497L386.883,57.614L384.553,55.001L380.871,46.53L380.34,47.07L382.479,53.311L385.647,59.199L389.548,68.215L391.454,71.334L393.112,74.559L397.744,80.837L396.718,81.821L396.885,85.477L402.896,90.497Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M342.557,91.638L342.557,102.679L336.622,102.696L336.558,104.997L315.973,94.444L295.388,83.751L290.178,86.819L286.526,88.898L283.623,85.824L275.459,83.402L273.194,79.87L269.12,77.238L266.707,78.277L264.872,75.11L264.678,72.667L261.626,68.491L263.675,66.085L263.224,62.449L263.88,59.266L263.507,56.603L264.416,51.81L264.136,49.063L262.466,43.808L264.984,42.42L265.431,39.883L264.882,37.384L268.426,35.05L270.015,33.102L272.531,31.35L272.823,26.636L278.885,28.754L281.052,28.225L285.364,29.25L292.213,31.984L294.63,37.383L299.263,38.555L306.538,41.075L312.036,44.054L314.553,42.501L317.027,39.739L315.824,35.108L317.443,32.148L321.162,29.282L324.715,28.444L331.697,29.7L333.457,32.433L335.379,32.459L337.022,33.498L342.15,34.212L343.408,36.216L341.54,39.115L342.339,41.687L341.009,45.38L342.557,50.164L342.557,70.854Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M460.179,166.643L445.594,182.235L438.871,182.464L434.271,186.114L430.962,186.21L429.551,187.841L426.024,187.84L423.942,186.091L419.227,188.255L417.702,190.41L414.26,190.004L413.118,189.407L411.909,189.55L410.278,189.497L403.745,185.103L400.152,185.103L398.389,183.399L398.389,180.491L395.708,179.621L392.658,173.973L390.301,172.768L389.396,170.689L386.781,168.152L383.611,167.779L385.369,164.809L388.108,164.681L388.88,163.087L388.811,158.387L390.337,152.901L392.782,151.429L393.301,149.279L395.514,145.253L398.627,142.636L400.726,137.416L401.548,132.848L407.557,133.962L409.169,129.981L412.301,132.404L415.328,131.149L416.573,132.265L420.112,132.329L424.604,134.464L425.938,136.301L428.227,138.007L430.349,141.114L432.113,142.826L430.299,145.162L428.553,147.635L428.955,149.089L429.037,150.69L431.92,150.777L433.163,150.404L434.308,151.342L433.183,153.203L435.089,156.091L436.993,158.613L438.963,160.48L455.838,166.674Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M432.113,142.826L434.323,143.285L435.879,141.994L437.1,143.63L436.938,145.822L433.993,147.084L436.21,148.526L434.308,151.342L433.163,150.404L431.92,150.777L429.037,150.69L428.955,149.089L428.553,147.635L430.299,145.162Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M466.16,148.797L466.16,148.797L466.128,148.883L466.11,151.05L466.109,156.345L466.108,159.077L463.778,162.288L460.179,166.643L455.838,166.674L438.963,160.48L436.993,158.613L435.089,156.091L433.183,153.203L434.308,151.342L436.21,148.526L437.889,149.496L438.901,151.671L441.229,153.87L443.791,153.887L448.657,152.544L454.275,151.921L458.818,150.288L461.378,149.942L463.221,148.982L466.16,148.797Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M388.512,212.986L377.995,213.386L372.337,213.32L370.527,213.94L367.443,215.533L366.193,215.006L366.236,211.115L367.432,209.143L367.723,205L368.808,202.6L370.782,199.907L372.765,198.536L374.424,196.702L372.355,196.003L372.667,189.96L372.667,189.96L374.792,188.549L378.074,189.706L382.229,188.496L385.86,188.508L389.034,186.128L391.482,189.72L392.085,192.314L394.356,198.245L392.478,202.008L389.938,205.425L388.459,207.516Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M370.527,213.94L372.576,216.853L372.278,219.891L370.788,220.545L370.788,220.545L368.046,220.207L366.465,223.149L363.331,222.743L363.809,219.917L364.518,219.519L364.709,216.446L366.193,215.006L367.443,215.533Z" + }, + { + "fillOpacity": 0.1, + "stroke": "green", + "strokeWidth": 2, + "fill": "#4c78a8", + "ariaRoleDescription": "geoshape", + "shape": "M372.667,189.96L368.124,186.522L366.898,184.311L364.024,185.407L361.637,185.066L360.255,185.935L357.938,185.308L354.811,181.032L353.981,179.388L350.123,177.335L348.82,174.221L346.669,171.972L343.198,169.262L343.151,167.57L340.325,165.463L336.813,163.426L338.398,162.857L340.17,161.87L341.499,157.201L342.917,154.771L346.638,154.051L347.524,155.491L350.182,158.549L351.6,158.998L353.461,158.1L357.182,158.279L357.891,159.357L363.03,159.357L363.207,158.279L365.865,157.291L366.397,155.761L368.346,154.681L372.688,157.74L375.346,157.201L377.916,153.42L380.751,150.533L380.308,147.37L379.068,145.831L382.169,145.559L382.523,144.381L384.915,144.744L384.295,148.636L384.915,152.428L387.574,154.501L388.194,156.301L388.105,158.908L388.82,159.012L388.88,163.087L388.108,164.681L385.369,164.809L383.611,167.779L386.781,168.152L389.396,170.689L390.301,172.768L392.658,173.973L395.708,179.621L392.21,183.036L389.034,186.128L385.86,188.508L382.229,188.496L378.074,189.706L374.792,188.549Z" + } + ], + "marktype": "shape", + "name": "layer_1_marks", + "role": "mark", + "zindex": 0 + }, + { + "clip": false, + "interactive": true, + "items": [ + { + "font": "sans-serif", + "fontSize": 11, + "align": "left", + "text": "(C) OpenStreetMap contributors", + "dx": 3, + "dy": -8, + "fill": "black", + "x": 0, + "y": 400, + "baseline": "middle" + } + ], + "marktype": "text", + "name": "layer_2_marks", + "role": "mark", + "zindex": 0 + } + ], + "fill": "transparent", + "stroke": "#ddd", + "x": 0, + "y": 0, + "width": 600, + "height": 400 + } + ], + "marktype": "group", + "name": "root", + "role": "frame", + "zindex": 0 + } +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/line_with_log_scale.png b/avenger-vega-test-data/vega-scenegraphs/vl-convert/line_with_log_scale.png new file mode 100644 index 0000000..27e5d62 Binary files /dev/null and b/avenger-vega-test-data/vega-scenegraphs/vl-convert/line_with_log_scale.png differ diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/line_with_log_scale.sg.json b/avenger-vega-test-data/vega-scenegraphs/vl-convert/line_with_log_scale.sg.json new file mode 100644 index 0000000..fb903bb --- /dev/null +++ b/avenger-vega-test-data/vega-scenegraphs/vl-convert/line_with_log_scale.sg.json @@ -0,0 +1,1199 @@ +{ + "width": 396, + "height": 360, + "origin": [ + 91, + 10 + ], + "scenegraph": { + "clip": false, + "interactive": true, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 300, + "x2": 300 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 255, + "x2": 300 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 228, + "x2": 300 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 210, + "x2": 300 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 195, + "x2": 300 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 183, + "x2": 300 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 173, + "x2": 300 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 165, + "x2": 300 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 157, + "x2": 300 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 150, + "x2": 300 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 105, + "x2": 300 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 78, + "x2": 300 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 60, + "x2": 300 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 45, + "x2": 300 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 33, + "x2": 300 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 23, + "x2": 300 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 15, + "x2": 300 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 7, + "x2": 300 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 0, + "x2": 300 + } + ], + "marktype": "rule", + "role": "axis-grid", + "zindex": 0 + } + ], + "orient": "left", + "offset": 0, + "x": 0.5, + "y": 0.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0, + "aria": false + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 10 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 30 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 50 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 70 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 90 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 110 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 130 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 150 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 170 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 190 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 210 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 230 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 250 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 270 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 290 + } + ], + "marktype": "rule", + "role": "axis-tick", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 10, + "y": 7, + "angle": 270, + "limit": 180, + "text": "1850", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 30, + "y": 7, + "angle": 270, + "limit": 180, + "text": "1860", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 50, + "y": 7, + "angle": 270, + "limit": 180, + "text": "1870", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 70, + "y": 7, + "angle": 270, + "limit": 180, + "text": "1880", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 90, + "y": 7, + "angle": 270, + "limit": 180, + "text": "1900", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 110, + "y": 7, + "angle": 270, + "limit": 180, + "text": "1910", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 130, + "y": 7, + "angle": 270, + "limit": 180, + "text": "1920", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 150, + "y": 7, + "angle": 270, + "limit": 180, + "text": "1930", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 170, + "y": 7, + "angle": 270, + "limit": 180, + "text": "1940", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 190, + "y": 7, + "angle": 270, + "limit": 180, + "text": "1950", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 210, + "y": 7, + "angle": 270, + "limit": 180, + "text": "1960", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 230, + "y": 7, + "angle": 270, + "limit": 180, + "text": "1970", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 250, + "y": 7, + "angle": 270, + "limit": 180, + "text": "1980", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 270, + "y": 7, + "angle": 270, + "limit": 180, + "text": "1990", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 290, + "y": 7, + "angle": 270, + "limit": 180, + "text": "2000", + "align": "right", + "baseline": "middle" + } + ], + "marktype": "text", + "role": "axis-label", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "x": 0, + "x2": 300, + "y": 0 + } + ], + "marktype": "rule", + "role": "axis-domain", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "align": "center", + "angle": 0, + "baseline": "top", + "text": "year", + "x": 150, + "y": 33.24609375 + } + ], + "marktype": "text", + "role": "axis-title", + "zindex": 0 + } + ], + "orient": "bottom", + "offset": 0, + "x": 0.5, + "y": 300.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 300, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 255, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 228, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 210, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 195, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 183, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 173, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 165, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 157, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 150, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 105, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 78, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 60, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 45, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 33, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 23, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 15, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 7, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "x": 0, + "x2": -5 + } + ], + "marktype": "rule", + "role": "axis-tick", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 300, + "angle": 0, + "limit": 180, + "text": "10,000,000", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 254.84550065040293, + "angle": 0, + "limit": 180, + "text": "20,000,000", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 228.43181179205078, + "angle": 0, + "limit": 180, + "text": "30,000,000", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 209.69100130080562, + "angle": 0, + "limit": 180, + "text": "40,000,000", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 195.1544993495972, + "angle": 0, + "limit": 180, + "text": "50,000,000", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 183.27731244245345, + "angle": 0, + "limit": 180, + "text": "", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 173.23529399786153, + "angle": 0, + "limit": 180, + "text": "", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 164.5365019512085, + "angle": 0, + "limit": 180, + "text": "", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 156.86362358410128, + "angle": 0, + "limit": 180, + "text": "", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 149.9999999999999, + "angle": 0, + "limit": 180, + "text": "100,000,000", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 104.84550065040281, + "angle": 0, + "limit": 180, + "text": "200,000,000", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 78.43181179205064, + "angle": 0, + "limit": 180, + "text": "300,000,000", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 59.69100130080572, + "angle": 0, + "limit": 180, + "text": "400,000,000", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 45.15449934959709, + "angle": 0, + "limit": 180, + "text": "500,000,000", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 33.27731244245332, + "angle": 0, + "limit": 180, + "text": "", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 23.23529399786143, + "angle": 0, + "limit": 180, + "text": "", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 14.536501951208402, + "angle": 0, + "limit": 180, + "text": "", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 6.863623584101186, + "angle": 0, + "limit": 180, + "text": "", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 0, + "angle": 0, + "limit": 180, + "text": "1,000,000,000", + "align": "right", + "baseline": "middle" + } + ], + "marktype": "text", + "role": "axis-label", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "x": 0, + "y": 300, + "y2": 0 + } + ], + "marktype": "rule", + "role": "axis-domain", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "align": "center", + "angle": -90, + "baseline": "bottom", + "text": "Sum of people", + "y": 150, + "x": -74.9501953125 + } + ], + "marktype": "text", + "role": "axis-title", + "zindex": 0 + } + ], + "orient": "left", + "offset": 0, + "x": 0.5, + "y": 0.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0 + }, + { + "clip": false, + "interactive": true, + "items": [ + { + "strokeWidth": 2, + "stroke": "#4c78a8", + "description": "year: 1850; Sum of people: 19987559", + "x": 10, + "y": 254.88603619164715, + "defined": true + }, + { + "strokeWidth": 2, + "stroke": "#4c78a8", + "description": "year: 1860; Sum of people: 27488452", + "x": 30, + "y": 234.12745748539743, + "defined": true + }, + { + "strokeWidth": 2, + "stroke": "#4c78a8", + "description": "year: 1870; Sum of people: 38522729", + "x": 50, + "y": 212.14244317114444, + "defined": true + }, + { + "strokeWidth": 2, + "stroke": "#4c78a8", + "description": "year: 1880; Sum of people: 50155048", + "x": 70, + "y": 194.95280244275128, + "defined": true + }, + { + "strokeWidth": 2, + "stroke": "#4c78a8", + "description": "year: 1900; Sum of people: 76262821", + "x": 90, + "y": 167.65307009917566, + "defined": true + }, + { + "strokeWidth": 2, + "stroke": "#4c78a8", + "description": "year: 1910; Sum of people: 92253350", + "x": 110, + "y": 155.252678149159, + "defined": true + }, + { + "strokeWidth": 2, + "stroke": "#4c78a8", + "description": "year: 1920; Sum of people: 106021560", + "x": 130, + "y": 146.190871478794, + "defined": true + }, + { + "strokeWidth": 2, + "stroke": "#4c78a8", + "description": "year: 1930; Sum of people: 122285173", + "x": 150, + "y": 136.89392965548979, + "defined": true + }, + { + "strokeWidth": 2, + "stroke": "#4c78a8", + "description": "year: 1940; Sum of people: 131668991", + "x": 170, + "y": 132.07747387333745, + "defined": true + }, + { + "strokeWidth": 2, + "stroke": "#4c78a8", + "description": "year: 1950; Sum of people: 150694834", + "x": 190, + "y": 123.2852453350373, + "defined": true + }, + { + "strokeWidth": 2, + "stroke": "#4c78a8", + "description": "year: 1960; Sum of people: 179301542", + "x": 210, + "y": 111.96239632093355, + "defined": true + }, + { + "strokeWidth": 2, + "stroke": "#4c78a8", + "description": "year: 1970; Sum of people: 203302006", + "x": 230, + "y": 103.77875041745263, + "defined": true + }, + { + "strokeWidth": 2, + "stroke": "#4c78a8", + "description": "year: 1980; Sum of people: 227021768", + "x": 250, + "y": 96.589874767486, + "defined": true + }, + { + "strokeWidth": 2, + "stroke": "#4c78a8", + "description": "year: 1990; Sum of people: 248107628", + "x": 270, + "y": 90.80398248892556, + "defined": true + }, + { + "strokeWidth": 2, + "stroke": "#4c78a8", + "description": "year: 2000; Sum of people: 281420717", + "x": 290, + "y": 82.59659022090369, + "defined": true + } + ], + "marktype": "line", + "name": "marks", + "role": "mark", + "zindex": 0 + } + ], + "fill": "transparent", + "stroke": "#ddd", + "x": 0, + "y": 0, + "width": 300, + "height": 300 + } + ], + "marktype": "group", + "name": "root", + "role": "frame", + "zindex": 0 + } +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/long_legend_label.png b/avenger-vega-test-data/vega-scenegraphs/vl-convert/long_legend_label.png new file mode 100644 index 0000000..17b01be Binary files /dev/null and b/avenger-vega-test-data/vega-scenegraphs/vl-convert/long_legend_label.png differ diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/long_legend_label.sg.json b/avenger-vega-test-data/vega-scenegraphs/vl-convert/long_legend_label.sg.json new file mode 100644 index 0000000..ef9236a --- /dev/null +++ b/avenger-vega-test-data/vega-scenegraphs/vl-convert/long_legend_label.sg.json @@ -0,0 +1,828 @@ +{ + "width": 394, + "height": 245, + "origin": [ + 44, + 10 + ], + "scenegraph": { + "clip": false, + "interactive": true, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 200, + "x2": 180 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 160, + "x2": 180 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 120, + "x2": 180 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 80, + "x2": 180 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 40, + "x2": 180 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 0, + "x2": 180 + } + ], + "marktype": "rule", + "role": "axis-grid", + "zindex": 0 + } + ], + "orient": "left", + "offset": 0, + "x": 0.5, + "y": 0.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0, + "aria": false + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 10 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 30 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 50 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 70 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 90 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 110 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 130 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 150 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 170 + } + ], + "marktype": "rule", + "role": "axis-tick", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 9.5, + "y": 7, + "angle": 270, + "limit": 180, + "text": "B", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 29.5, + "y": 7, + "angle": 270, + "limit": 180, + "text": "C", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 49.5, + "y": 7, + "angle": 270, + "limit": 180, + "text": "D", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 69.5, + "y": 7, + "angle": 270, + "limit": 180, + "text": "E", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 89.5, + "y": 7, + "angle": 270, + "limit": 180, + "text": "F", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 109.5, + "y": 7, + "angle": 270, + "limit": 180, + "text": "G", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 129.5, + "y": 7, + "angle": 270, + "limit": 180, + "text": "H", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 149.5, + "y": 7, + "angle": 270, + "limit": 180, + "text": "I", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 169.5, + "y": 7, + "angle": 270, + "limit": 180, + "text": "J", + "align": "right", + "baseline": "middle" + } + ], + "marktype": "text", + "role": "axis-label", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "x": 0, + "x2": 180, + "y": 0 + } + ], + "marktype": "rule", + "role": "axis-domain", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "align": "center", + "angle": 0, + "baseline": "top", + "text": "a", + "x": 90, + "y": 18.7783203125 + } + ], + "marktype": "text", + "role": "axis-title", + "zindex": 0 + } + ], + "orient": "bottom", + "offset": 0, + "x": 0.5, + "y": 200.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 200, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 160, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 120, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 80, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 40, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "x": 0, + "x2": -5 + } + ], + "marktype": "rule", + "role": "axis-tick", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 200, + "angle": 0, + "limit": 180, + "text": "0", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 160, + "angle": 0, + "limit": 180, + "text": "20", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 120, + "angle": 0, + "limit": 180, + "text": "40", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 80, + "angle": 0, + "limit": 180, + "text": "60", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 39.99999999999999, + "angle": 0, + "limit": 180, + "text": "80", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 0, + "angle": 0, + "limit": 180, + "text": "100", + "align": "right", + "baseline": "middle" + } + ], + "marktype": "text", + "role": "axis-label", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "x": 0, + "y": 200, + "y2": 0 + } + ], + "marktype": "rule", + "role": "axis-domain", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "align": "center", + "angle": -90, + "baseline": "bottom", + "text": "b", + "y": 100, + "x": -27.6845703125 + } + ], + "marktype": "text", + "role": "axis-title", + "zindex": 0 + } + ], + "orient": "left", + "offset": 0, + "x": 0.5, + "y": 0.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0 + }, + { + "clip": false, + "interactive": true, + "items": [ + { + "fill": "#f58518", + "ariaRoleDescription": "bar", + "description": "a: J; b: 28; c: I am more than 18 characters", + "x": 161, + "width": 18, + "y": 144, + "y2": 200, + "height": 56 + }, + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "a: B; b: 55; c: undefined", + "x": 1, + "width": 18, + "y": 89.99999999999999, + "y2": 200, + "height": 110.00000000000001 + }, + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "a: C; b: 43; c: undefined", + "x": 21, + "width": 18, + "y": 114.00000000000001, + "y2": 200, + "height": 85.99999999999999 + }, + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "a: D; b: 91; c: undefined", + "x": 41, + "width": 18, + "y": 17.999999999999993, + "y2": 200, + "height": 182 + }, + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "a: E; b: 81; c: undefined", + "x": 61, + "width": 18, + "y": 37.999999999999986, + "y2": 200, + "height": 162 + }, + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "a: F; b: 53; c: undefined", + "x": 81, + "width": 18, + "y": 94, + "y2": 200, + "height": 106 + }, + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "a: G; b: 19; c: undefined", + "x": 101, + "width": 18, + "y": 162, + "y2": 200, + "height": 38 + }, + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "a: H; b: 87; c: undefined", + "x": 121, + "width": 18, + "y": 26, + "y2": 200, + "height": 174 + }, + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "a: I; b: 52; c: undefined", + "x": 141, + "width": 18, + "y": 96, + "y2": 200, + "height": 104 + } + ], + "marktype": "rect", + "name": "marks", + "role": "mark", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "x": 6, + "y": 6, + "shape": "square", + "size": 100, + "strokeWidth": 1.5, + "fill": "#4c78a8" + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 16, + "y": 6, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "undefined" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 146.615234375, + "height": 11, + "opacity": 1, + "x": 0, + "y": 0 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "x": 6, + "y": 6, + "shape": "square", + "size": 100, + "strokeWidth": 1.5, + "fill": "#f58518" + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 16, + "y": 6, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "I am more than 18 characters" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 146.615234375, + "height": 11, + "opacity": 1, + "x": 0, + "y": 13 + } + ], + "marktype": "group", + "role": "scope", + "zindex": 0 + } + ], + "x": 0, + "y": 16 + } + ], + "marktype": "group", + "role": "legend-entry", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "orient": "top", + "text": "c", + "limit": 180, + "x": 0, + "y": 0, + "angle": 0, + "align": "left", + "baseline": "top" + } + ], + "marktype": "text", + "role": "legend-title", + "zindex": 0 + } + ], + "orient": "right", + "x": 198, + "y": 0, + "width": 147, + "height": 40 + } + ], + "marktype": "group", + "role": "legend", + "zindex": 0 + } + ], + "fill": "transparent", + "stroke": "#ddd", + "x": 0, + "y": 0, + "width": 180, + "height": 200 + } + ], + "marktype": "group", + "name": "root", + "role": "frame", + "zindex": 0 + } +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/lookup_urls.png b/avenger-vega-test-data/vega-scenegraphs/vl-convert/lookup_urls.png new file mode 100644 index 0000000..560d39b Binary files /dev/null and b/avenger-vega-test-data/vega-scenegraphs/vl-convert/lookup_urls.png differ diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/lookup_urls.sg.json b/avenger-vega-test-data/vega-scenegraphs/vl-convert/lookup_urls.sg.json new file mode 100644 index 0000000..456bdf8 --- /dev/null +++ b/avenger-vega-test-data/vega-scenegraphs/vl-convert/lookup_urls.sg.json @@ -0,0 +1,3336 @@ +{ + "width": 360, + "height": 201, + "origin": [ + 5, + 5 + ], + "scenegraph": { + "clip": false, + "interactive": true, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": true, + "items": [ + { + "fill": "rgb(131, 207, 187)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.102; geo: [object Object]; name: Alabama", + "shape": "M214.165,108.963L214.437,108.936L216.967,108.684L216.987,108.682L219.42,108.446L220.823,108.319L221.052,109.142L221.481,110.707L221.546,110.937L221.672,111.358L222.124,112.931L222.513,114.283L222.719,115.053L222.825,115.465L223.29,117.107L223.596,118.227L223.697,118.588L224.243,120.556L224.279,120.698L224.74,122.262L225.095,123.06L225.522,123.953L226.039,124.557L226.303,125.427L226.141,125.781L226.854,126.132L226.68,126.382L225.99,127.119L226.064,127.588L226.059,128.077L225.772,128.777L225.817,129.533L225.912,129.646L226.405,130.536L226.548,131.237L226.485,132.657L226.516,133.644L226.992,134.179L227.193,134.665L224.436,135L224.374,135.007L221.329,135.361L220.448,135.45L219.302,135.567L217.602,135.73L217.047,135.769L214.875,135.965L212.397,136.202L212.269,137.098L212.94,137.887L213.699,138.262L213.649,139.55L213.691,140.01L213.285,140.819L212.488,141.237L211.467,141.482L211.969,141.022L210.969,140.289L210.624,138.187L210.365,138.307L210.14,138.098L210.127,137.947L210.219,137.808L209.784,139.791L209.768,140.843L208.37,140.541L208.172,140.673L207.882,138.348L207.68,136.588L207.577,135.813L207.282,133.671L207.081,131.912L206.916,130.6L206.98,128.342L206.997,127.789L207.033,125.961L207.064,123.584L207.07,123.161L207.108,121.15L207.133,119.484L207.176,118.046L207.22,115.919L207.225,115.729L207.272,114.133L207.29,113.166L207.283,112.361L207.363,110.247L206.74,109.598L207.884,109.433L209.97,109.267L212.037,109.109L212.115,109.102Z" + }, + { + "fill": "rgb(175, 224, 182)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.072; geo: [object Object]; name: Alabama", + "shape": "M214.165,108.963L214.437,108.936L216.967,108.684L216.987,108.682L219.42,108.446L220.823,108.319L221.052,109.142L221.481,110.707L221.546,110.937L221.672,111.358L222.124,112.931L222.513,114.283L222.719,115.053L222.825,115.465L223.29,117.107L223.596,118.227L223.697,118.588L224.243,120.556L224.279,120.698L224.74,122.262L225.095,123.06L225.522,123.953L226.039,124.557L226.303,125.427L226.141,125.781L226.854,126.132L226.68,126.382L225.99,127.119L226.064,127.588L226.059,128.077L225.772,128.777L225.817,129.533L225.912,129.646L226.405,130.536L226.548,131.237L226.485,132.657L226.516,133.644L226.992,134.179L227.193,134.665L224.436,135L224.374,135.007L221.329,135.361L220.448,135.45L219.302,135.567L217.602,135.73L217.047,135.769L214.875,135.965L212.397,136.202L212.269,137.098L212.94,137.887L213.699,138.262L213.649,139.55L213.691,140.01L213.285,140.819L212.488,141.237L211.467,141.482L211.969,141.022L210.969,140.289L210.624,138.187L210.365,138.307L210.14,138.098L210.127,137.947L210.219,137.808L209.784,139.791L209.768,140.843L208.37,140.541L208.172,140.673L207.882,138.348L207.68,136.588L207.577,135.813L207.282,133.671L207.081,131.912L206.916,130.6L206.98,128.342L206.997,127.789L207.033,125.961L207.064,123.584L207.07,123.161L207.108,121.15L207.133,119.484L207.176,118.046L207.22,115.919L207.225,115.729L207.272,114.133L207.29,113.166L207.283,112.361L207.363,110.247L206.74,109.598L207.884,109.433L209.97,109.267L212.037,109.109L212.115,109.102Z" + }, + { + "fill": "rgb(91, 191, 192)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.13; geo: [object Object]; name: Alabama", + "shape": "M214.165,108.963L214.437,108.936L216.967,108.684L216.987,108.682L219.42,108.446L220.823,108.319L221.052,109.142L221.481,110.707L221.546,110.937L221.672,111.358L222.124,112.931L222.513,114.283L222.719,115.053L222.825,115.465L223.29,117.107L223.596,118.227L223.697,118.588L224.243,120.556L224.279,120.698L224.74,122.262L225.095,123.06L225.522,123.953L226.039,124.557L226.303,125.427L226.141,125.781L226.854,126.132L226.68,126.382L225.99,127.119L226.064,127.588L226.059,128.077L225.772,128.777L225.817,129.533L225.912,129.646L226.405,130.536L226.548,131.237L226.485,132.657L226.516,133.644L226.992,134.179L227.193,134.665L224.436,135L224.374,135.007L221.329,135.361L220.448,135.45L219.302,135.567L217.602,135.73L217.047,135.769L214.875,135.965L212.397,136.202L212.269,137.098L212.94,137.887L213.699,138.262L213.649,139.55L213.691,140.01L213.285,140.819L212.488,141.237L211.467,141.482L211.969,141.022L210.969,140.289L210.624,138.187L210.365,138.307L210.14,138.098L210.127,137.947L210.219,137.808L209.784,139.791L209.768,140.843L208.37,140.541L208.172,140.673L207.882,138.348L207.68,136.588L207.577,135.813L207.282,133.671L207.081,131.912L206.916,130.6L206.98,128.342L206.997,127.789L207.033,125.961L207.064,123.584L207.07,123.161L207.108,121.15L207.133,119.484L207.176,118.046L207.22,115.919L207.225,115.729L207.272,114.133L207.29,113.166L207.283,112.361L207.363,110.247L206.74,109.598L207.884,109.433L209.97,109.267L212.037,109.109L212.115,109.102Z" + }, + { + "fill": "rgb(111, 199, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.115; geo: [object Object]; name: Alabama", + "shape": "M214.165,108.963L214.437,108.936L216.967,108.684L216.987,108.682L219.42,108.446L220.823,108.319L221.052,109.142L221.481,110.707L221.546,110.937L221.672,111.358L222.124,112.931L222.513,114.283L222.719,115.053L222.825,115.465L223.29,117.107L223.596,118.227L223.697,118.588L224.243,120.556L224.279,120.698L224.74,122.262L225.095,123.06L225.522,123.953L226.039,124.557L226.303,125.427L226.141,125.781L226.854,126.132L226.68,126.382L225.99,127.119L226.064,127.588L226.059,128.077L225.772,128.777L225.817,129.533L225.912,129.646L226.405,130.536L226.548,131.237L226.485,132.657L226.516,133.644L226.992,134.179L227.193,134.665L224.436,135L224.374,135.007L221.329,135.361L220.448,135.45L219.302,135.567L217.602,135.73L217.047,135.769L214.875,135.965L212.397,136.202L212.269,137.098L212.94,137.887L213.699,138.262L213.649,139.55L213.691,140.01L213.285,140.819L212.488,141.237L211.467,141.482L211.969,141.022L210.969,140.289L210.624,138.187L210.365,138.307L210.14,138.098L210.127,137.947L210.219,137.808L209.784,139.791L209.768,140.843L208.37,140.541L208.172,140.673L207.882,138.348L207.68,136.588L207.577,135.813L207.282,133.671L207.081,131.912L206.916,130.6L206.98,128.342L206.997,127.789L207.033,125.961L207.064,123.584L207.07,123.161L207.108,121.15L207.133,119.484L207.176,118.046L207.22,115.919L207.225,115.729L207.272,114.133L207.29,113.166L207.283,112.361L207.363,110.247L206.74,109.598L207.884,109.433L209.97,109.267L212.037,109.109L212.115,109.102Z" + }, + { + "fill": "rgb(75, 183, 193)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.143; geo: [object Object]; name: Alabama", + "shape": "M214.165,108.963L214.437,108.936L216.967,108.684L216.987,108.682L219.42,108.446L220.823,108.319L221.052,109.142L221.481,110.707L221.546,110.937L221.672,111.358L222.124,112.931L222.513,114.283L222.719,115.053L222.825,115.465L223.29,117.107L223.596,118.227L223.697,118.588L224.243,120.556L224.279,120.698L224.74,122.262L225.095,123.06L225.522,123.953L226.039,124.557L226.303,125.427L226.141,125.781L226.854,126.132L226.68,126.382L225.99,127.119L226.064,127.588L226.059,128.077L225.772,128.777L225.817,129.533L225.912,129.646L226.405,130.536L226.548,131.237L226.485,132.657L226.516,133.644L226.992,134.179L227.193,134.665L224.436,135L224.374,135.007L221.329,135.361L220.448,135.45L219.302,135.567L217.602,135.73L217.047,135.769L214.875,135.965L212.397,136.202L212.269,137.098L212.94,137.887L213.699,138.262L213.649,139.55L213.691,140.01L213.285,140.819L212.488,141.237L211.467,141.482L211.969,141.022L210.969,140.289L210.624,138.187L210.365,138.307L210.14,138.098L210.127,137.947L210.219,137.808L209.784,139.791L209.768,140.843L208.37,140.541L208.172,140.673L207.882,138.348L207.68,136.588L207.577,135.813L207.282,133.671L207.081,131.912L206.916,130.6L206.98,128.342L206.997,127.789L207.033,125.961L207.064,123.584L207.07,123.161L207.108,121.15L207.133,119.484L207.176,118.046L207.22,115.919L207.225,115.729L207.272,114.133L207.29,113.166L207.283,112.361L207.363,110.247L206.74,109.598L207.884,109.433L209.97,109.267L212.037,109.109L212.115,109.102Z" + }, + { + "fill": "rgb(122, 203, 188)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.108; geo: [object Object]; name: Alabama", + "shape": "M214.165,108.963L214.437,108.936L216.967,108.684L216.987,108.682L219.42,108.446L220.823,108.319L221.052,109.142L221.481,110.707L221.546,110.937L221.672,111.358L222.124,112.931L222.513,114.283L222.719,115.053L222.825,115.465L223.29,117.107L223.596,118.227L223.697,118.588L224.243,120.556L224.279,120.698L224.74,122.262L225.095,123.06L225.522,123.953L226.039,124.557L226.303,125.427L226.141,125.781L226.854,126.132L226.68,126.382L225.99,127.119L226.064,127.588L226.059,128.077L225.772,128.777L225.817,129.533L225.912,129.646L226.405,130.536L226.548,131.237L226.485,132.657L226.516,133.644L226.992,134.179L227.193,134.665L224.436,135L224.374,135.007L221.329,135.361L220.448,135.45L219.302,135.567L217.602,135.73L217.047,135.769L214.875,135.965L212.397,136.202L212.269,137.098L212.94,137.887L213.699,138.262L213.649,139.55L213.691,140.01L213.285,140.819L212.488,141.237L211.467,141.482L211.969,141.022L210.969,140.289L210.624,138.187L210.365,138.307L210.14,138.098L210.127,137.947L210.219,137.808L209.784,139.791L209.768,140.843L208.37,140.541L208.172,140.673L207.882,138.348L207.68,136.588L207.577,135.813L207.282,133.671L207.081,131.912L206.916,130.6L206.98,128.342L206.997,127.789L207.033,125.961L207.064,123.584L207.07,123.161L207.108,121.15L207.133,119.484L207.176,118.046L207.22,115.919L207.225,115.729L207.272,114.133L207.29,113.166L207.283,112.361L207.363,110.247L206.74,109.598L207.884,109.433L209.97,109.267L212.037,109.109L212.115,109.102Z" + }, + { + "fill": "rgb(46, 159, 192)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.174; geo: [object Object]; name: Alabama", + "shape": "M214.165,108.963L214.437,108.936L216.967,108.684L216.987,108.682L219.42,108.446L220.823,108.319L221.052,109.142L221.481,110.707L221.546,110.937L221.672,111.358L222.124,112.931L222.513,114.283L222.719,115.053L222.825,115.465L223.29,117.107L223.596,118.227L223.697,118.588L224.243,120.556L224.279,120.698L224.74,122.262L225.095,123.06L225.522,123.953L226.039,124.557L226.303,125.427L226.141,125.781L226.854,126.132L226.68,126.382L225.99,127.119L226.064,127.588L226.059,128.077L225.772,128.777L225.817,129.533L225.912,129.646L226.405,130.536L226.548,131.237L226.485,132.657L226.516,133.644L226.992,134.179L227.193,134.665L224.436,135L224.374,135.007L221.329,135.361L220.448,135.45L219.302,135.567L217.602,135.73L217.047,135.769L214.875,135.965L212.397,136.202L212.269,137.098L212.94,137.887L213.699,138.262L213.649,139.55L213.691,140.01L213.285,140.819L212.488,141.237L211.467,141.482L211.969,141.022L210.969,140.289L210.624,138.187L210.365,138.307L210.14,138.098L210.127,137.947L210.219,137.808L209.784,139.791L209.768,140.843L208.37,140.541L208.172,140.673L207.882,138.348L207.68,136.588L207.577,135.813L207.282,133.671L207.081,131.912L206.916,130.6L206.98,128.342L206.997,127.789L207.033,125.961L207.064,123.584L207.07,123.161L207.108,121.15L207.133,119.484L207.176,118.046L207.22,115.919L207.225,115.729L207.272,114.133L207.29,113.166L207.283,112.361L207.363,110.247L206.74,109.598L207.884,109.433L209.97,109.267L212.037,109.109L212.115,109.102Z" + }, + { + "fill": "rgb(134, 208, 187)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.1; geo: [object Object]; name: Alabama", + "shape": "M214.165,108.963L214.437,108.936L216.967,108.684L216.987,108.682L219.42,108.446L220.823,108.319L221.052,109.142L221.481,110.707L221.546,110.937L221.672,111.358L222.124,112.931L222.513,114.283L222.719,115.053L222.825,115.465L223.29,117.107L223.596,118.227L223.697,118.588L224.243,120.556L224.279,120.698L224.74,122.262L225.095,123.06L225.522,123.953L226.039,124.557L226.303,125.427L226.141,125.781L226.854,126.132L226.68,126.382L225.99,127.119L226.064,127.588L226.059,128.077L225.772,128.777L225.817,129.533L225.912,129.646L226.405,130.536L226.548,131.237L226.485,132.657L226.516,133.644L226.992,134.179L227.193,134.665L224.436,135L224.374,135.007L221.329,135.361L220.448,135.45L219.302,135.567L217.602,135.73L217.047,135.769L214.875,135.965L212.397,136.202L212.269,137.098L212.94,137.887L213.699,138.262L213.649,139.55L213.691,140.01L213.285,140.819L212.488,141.237L211.467,141.482L211.969,141.022L210.969,140.289L210.624,138.187L210.365,138.307L210.14,138.098L210.127,137.947L210.219,137.808L209.784,139.791L209.768,140.843L208.37,140.541L208.172,140.673L207.882,138.348L207.68,136.588L207.577,135.813L207.282,133.671L207.081,131.912L206.916,130.6L206.98,128.342L206.997,127.789L207.033,125.961L207.064,123.584L207.07,123.161L207.108,121.15L207.133,119.484L207.176,118.046L207.22,115.919L207.225,115.729L207.272,114.133L207.29,113.166L207.283,112.361L207.363,110.247L206.74,109.598L207.884,109.433L209.97,109.267L212.037,109.109L212.115,109.102Z" + }, + { + "fill": "rgb(221, 242, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.031; geo: [object Object]; name: Alabama", + "shape": "M214.165,108.963L214.437,108.936L216.967,108.684L216.987,108.682L219.42,108.446L220.823,108.319L221.052,109.142L221.481,110.707L221.546,110.937L221.672,111.358L222.124,112.931L222.513,114.283L222.719,115.053L222.825,115.465L223.29,117.107L223.596,118.227L223.697,118.588L224.243,120.556L224.279,120.698L224.74,122.262L225.095,123.06L225.522,123.953L226.039,124.557L226.303,125.427L226.141,125.781L226.854,126.132L226.68,126.382L225.99,127.119L226.064,127.588L226.059,128.077L225.772,128.777L225.817,129.533L225.912,129.646L226.405,130.536L226.548,131.237L226.485,132.657L226.516,133.644L226.992,134.179L227.193,134.665L224.436,135L224.374,135.007L221.329,135.361L220.448,135.45L219.302,135.567L217.602,135.73L217.047,135.769L214.875,135.965L212.397,136.202L212.269,137.098L212.94,137.887L213.699,138.262L213.649,139.55L213.691,140.01L213.285,140.819L212.488,141.237L211.467,141.482L211.969,141.022L210.969,140.289L210.624,138.187L210.365,138.307L210.14,138.098L210.127,137.947L210.219,137.808L209.784,139.791L209.768,140.843L208.37,140.541L208.172,140.673L207.882,138.348L207.68,136.588L207.577,135.813L207.282,133.671L207.081,131.912L206.916,130.6L206.98,128.342L206.997,127.789L207.033,125.961L207.064,123.584L207.07,123.161L207.108,121.15L207.133,119.484L207.176,118.046L207.22,115.919L207.225,115.729L207.272,114.133L207.29,113.166L207.283,112.361L207.363,110.247L206.74,109.598L207.884,109.433L209.97,109.267L212.037,109.109L212.115,109.102Z" + }, + { + "fill": "rgb(226, 244, 183)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.025; geo: [object Object]; name: Alabama", + "shape": "M214.165,108.963L214.437,108.936L216.967,108.684L216.987,108.682L219.42,108.446L220.823,108.319L221.052,109.142L221.481,110.707L221.546,110.937L221.672,111.358L222.124,112.931L222.513,114.283L222.719,115.053L222.825,115.465L223.29,117.107L223.596,118.227L223.697,118.588L224.243,120.556L224.279,120.698L224.74,122.262L225.095,123.06L225.522,123.953L226.039,124.557L226.303,125.427L226.141,125.781L226.854,126.132L226.68,126.382L225.99,127.119L226.064,127.588L226.059,128.077L225.772,128.777L225.817,129.533L225.912,129.646L226.405,130.536L226.548,131.237L226.485,132.657L226.516,133.644L226.992,134.179L227.193,134.665L224.436,135L224.374,135.007L221.329,135.361L220.448,135.45L219.302,135.567L217.602,135.73L217.047,135.769L214.875,135.965L212.397,136.202L212.269,137.098L212.94,137.887L213.699,138.262L213.649,139.55L213.691,140.01L213.285,140.819L212.488,141.237L211.467,141.482L211.969,141.022L210.969,140.289L210.624,138.187L210.365,138.307L210.14,138.098L210.127,137.947L210.219,137.808L209.784,139.791L209.768,140.843L208.37,140.541L208.172,140.673L207.882,138.348L207.68,136.588L207.577,135.813L207.282,133.671L207.081,131.912L206.916,130.6L206.98,128.342L206.997,127.789L207.033,125.961L207.064,123.584L207.07,123.161L207.108,121.15L207.133,119.484L207.176,118.046L207.22,115.919L207.225,115.729L207.272,114.133L207.29,113.166L207.283,112.361L207.363,110.247L206.74,109.598L207.884,109.433L209.97,109.267L212.037,109.109L212.115,109.102Z" + }, + { + "fill": "rgb(216, 240, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.037; geo: [object Object]; name: Alaska", + "shape": "M7.208,172.472L6.987,171.876L6.674,171.551L6.701,171.463L7.065,171.8L7.304,172.409ZM13.561,173.982L13.569,173.658L13.763,173.703L13.721,173.904ZM13.865,173.986L13.799,173.825L13.929,173.737ZM14.185,173.908L14.026,173.744L14.196,173.748ZM11.312,173.492L11.102,173.228L11.356,173.195L11.099,172.734L11.178,172.674L11.511,172.769L11.507,172.929L11.841,173.14L11.597,173.121ZM12.369,173.603L12.137,173.459L11.697,173.347L12.33,173.405L12.458,173.36L12.556,173.121L12.697,173.16L12.446,173.639ZM6.725,170.86L6.726,170.662L6.887,170.815ZM12.64,173.999L12.636,173.823L12.846,173.752L12.856,173.537L13.063,173.627L13.168,173.256L13.484,173.302L13.266,173.619L13.504,173.651L13.479,173.914L13.351,173.835L13.222,173.963L12.829,173.953L12.893,173.76ZM8.188,171.56L8.059,171.381L8.116,171.247L8.371,171.245L8.487,171.426ZM14.134,173.59L14.009,173.316L14.264,173.295ZM5.075,170.306L4.995,170.095L5.305,170.021L5.453,170.072L5.695,169.832L5.822,169.917L5.548,170.116L5.478,170.269L5.306,170.143ZM17.731,174.618L17.501,174.425L17.279,174.437L17.043,174.181L17.264,174.187L17.972,174.539L18.218,174.553L18.527,174.682L18.246,174.676L17.783,174.572ZM19.21,174.508L19.1,174.457L19.216,174.262L19.422,174.217L19.586,174.415ZM15.503,173.971L15.469,173.891L15.861,173.847L16.001,173.938L16.399,173.923L16.879,173.75L16.731,173.599L16.826,173.471L17.091,173.452L17.244,173.796L17.085,173.925L16.926,173.858L16.992,174.135L16.548,174.055L16.469,174.185L16.266,174.051L16.139,174.121L15.636,173.934ZM0.869,166.844L0.863,166.746L0.55,166.543L1.077,166.54L0.967,166.892ZM21.821,174.509L21.844,174.278L22.126,174.208L22.105,174.435ZM23.437,174.349L23.277,174.183L23.102,174.231L23.105,174.07L23.513,174.097ZM0.359,165.533L0.25,165.294L0.317,165.161L0.137,165.097L0.215,164.976L0,164.859L0.322,164.823L0.669,165.101L0.885,165.161L0.882,165.371L1.052,165.442L0.935,165.65L0.746,165.624L0.642,165.461ZM24.339,174.42L24.92,173.939L24.922,173.765L25.243,173.562L25.587,173.67L25.492,173.49L25.569,173.301L25.872,173.097L26.199,173.077L26.48,173.253L26.343,173.537L25.686,173.737L25.329,174.108L24.904,174.283ZM28.723,173.248L28.621,173.034L28.914,172.927L28.886,173.11ZM26.524,173.926L26.343,173.708L26.546,173.576L26.683,173.634L26.87,173.503L27.064,173.632L27.142,173.476L27.461,173.468L27.377,173.226L27.607,173.225L27.574,173.03L28.051,173.064L27.656,172.923L27.495,172.715L27.642,172.512L27.924,172.417L28.219,172.407L28.309,172.566L28.219,172.85L28.749,172.592L28.835,172.73L28.202,173.125L28.595,173.037L28.622,173.274L28.292,173.296L28.007,173.637L27.842,173.537L27.506,173.604ZM30.463,172.696L30.238,172.602L30.631,172.557ZM29.308,172.571L29.093,172.508L29.033,172.312L29.255,172.116L29.554,172.349L29.61,172.484ZM29.771,172.483L29.68,172.092L29.96,172.06L29.849,172.237L30.018,172.274ZM33.865,172.488L33.588,172.259L33.66,172.17L33.901,172.29ZM74.081,167.735L73.738,167.425L74.01,167.461ZM34.409,171.47L34.277,171.318L34.441,171.103L34.554,171.17ZM75.662,166.938L75.407,166.799L75.671,166.574L75.8,166.777ZM31.122,172.033L30.865,171.928L30.819,171.49L31.141,171.393L31.418,170.93L31.611,170.825L31.831,170.926L32.367,170.688L32.854,170.725L33.036,171.472L33.227,171.439L33.273,171.639L32.875,171.532L32.87,171.674L32.632,171.75L32.352,171.642L31.965,171.621L31.6,171.774L31.452,171.989ZM38.285,171.606L38.386,171.371L38.461,171.527ZM35.242,171.036L35.067,170.757L35.401,170.884ZM73.762,167.251L73.575,167.223L73.618,167.062L73.458,166.946L73.512,166.819L73.814,167.101ZM38.058,171.36L38.167,171.221L38.16,170.957L38.265,171.137ZM74.023,167.962L73.872,167.956L73.261,167.524L73.074,167.198L72.995,166.877L73.097,166.801L73.494,167.286L73.548,167.451L73.861,167.611ZM75.233,166.742L75.143,166.675L75.199,166.369L75.03,166.12L75.438,166.234L75.507,166.531ZM37.226,171.694L37.486,171.198L37.52,170.929L37.726,171.064L37.589,171.291L37.299,171.538ZM72.854,167.019L72.715,167.04L72.642,166.781L72.763,166.704L72.949,166.844ZM37.166,170.793L36.93,170.594L37.179,170.514ZM36.491,171.021L36.515,170.503L36.68,170.352L36.788,170.428L36.991,170.909L36.887,171.032L36.596,170.851ZM74.938,166.512L74.789,166.407L74.58,165.905L74.907,166.043ZM72.477,167.054L72.372,166.959L72.363,166.646L72.573,166.69L72.462,166.817ZM37.444,170.505L37.221,170.325L37.474,170.335ZM72.448,166.599L72.328,166.584L72.392,166.373L72.569,166.506ZM72.086,166.688L72.161,166.467L72.312,166.375L72.272,166.627ZM72.656,166.481L72.479,166.333L72.602,166.203ZM72.272,165.998L71.997,165.868L72.141,165.695L72.466,165.749ZM43.521,170.008L43.326,169.856L43.586,169.674ZM72.554,165.713L72.404,165.617L72.384,165.416L72.528,165.494ZM71.232,166.005L71.174,165.767L71.372,165.735ZM75.569,166.131L75.372,166.022L75.191,166.055L75.296,165.636L75.237,165.597L75.059,166.057L74.582,165.838L74.721,165.411L74.581,165.384L74.436,164.925L74.644,164.862L74.53,164.736L74.9,164.424L75.245,164.66L75.563,165.054L75.701,165.915ZM71.882,165.613L71.723,165.531L71.837,165.112L72.059,164.912L72.239,164.888L72.335,165.188L72.224,165.18ZM73.587,165.027L73.345,164.738L73.092,164.839L72.901,164.502L73.031,164.404L73.033,164.174L73.255,164.161L73.267,164.403L73.5,164.362L73.75,164.499L73.655,164.672L73.826,164.838ZM72.792,165.04L72.79,165.034L72.848,164.986L73.227,165.127L73.531,165.363L73.588,165.637L73.772,165.62L73.928,165.828L74.187,165.954L73.71,165.866L73.534,165.761L73.634,166.031L73.81,165.94L74.232,166.16L74.387,166.361L74.22,166.541L74.44,166.514L74.475,166.305L74.605,166.536L74.545,166.999L74.705,166.855L74.831,167.133L74.905,167.586L74.533,167.66L74.479,167.392L74.073,167.113L74.103,167.279L73.839,166.781L73.722,166.886L73.317,166.703L72.924,166.796L72.899,166.564L73.187,166.567L73.089,166.343L72.917,166.37L72.898,165.973L72.674,166.161L72.502,166.11L72.495,165.901L72.667,165.571L72.49,165.453L72.269,164.876L71.856,164.937L71.693,164.734L71.683,164.549L71.92,164.555L72.211,164.438L72.534,164.72L72.597,165.051ZM72.699,164.533L72.381,164.387L72.439,164.071L72.7,163.972L72.896,164.073L72.929,164.351ZM73.583,164.359L73.287,164.214L73.107,163.753L73.256,163.772L73.517,163.99L73.655,163.918L73.898,164.208L73.77,164.454ZM45.565,168.253L45.542,168.135L45.783,168.09ZM41.497,168.094L41.439,167.948L41.656,167.967ZM44.643,168.468L44.735,168.179L44.931,168.025L45.022,168.214ZM45.528,168.049L45.421,168.226L45.185,168.22L45.343,167.978ZM25.67,165.804L25.49,165.559L25.853,165.696ZM72.925,163.531L72.795,163.376L73.04,163.351ZM72.576,163.923L72.402,163.944L72.354,163.634L72.152,163.3L72.347,163.258L72.849,163.61ZM71.103,163.771L71.031,163.648L71.25,163.653L71.291,164.075L71.234,164.314L71.424,164.687L71.372,164.848L71.445,165.272L71.385,165.316L71.167,165.024L71.296,165.553L71.127,165.438L70.855,164.821L70.918,164.565L71.153,164.76L70.983,164.429L70.669,164.355L70.694,164.247L70.458,164.026L70.358,163.778L70.54,163.491L70.842,163.567ZM71.316,163.755L71.051,163.419L70.687,163.208L70.836,162.993L71.484,163.01L71.847,162.897L72.052,163.024L72.307,163.594L72.268,163.757L71.663,163.359L71.955,163.737L72.129,163.763L72.22,163.968L72.129,164.186L71.802,164.154L71.845,164.26L71.583,164.385ZM46.514,167.086L46.407,166.815L46.628,166.571L47.067,166.699L46.667,166.844ZM25.105,164.277L25.002,164.053L25.411,164.032ZM68.541,163.942L68.445,163.718L68.54,163.498L68.407,163.516L68.288,163.158L68.481,163.141L68.755,163.487L68.763,163.818ZM69.656,164.245L69.462,164.32L69.445,164.112L69.197,164.168L69.109,163.894L69.209,163.645L68.985,163.546L68.931,163.194L68.729,163.281L68.463,163.027L68.717,162.991L68.534,162.913L68.635,162.524L68.805,162.676L68.961,162.597L69.268,162.728L69.456,162.645L69.573,162.88L69.42,162.828L69.654,163.152L70.177,164.102L70.458,165.183L70.516,165.378L70.283,165.268L69.578,164.404ZM47.667,164.962L47.464,164.879L47.577,164.748ZM46.616,165.184L46.238,164.926L46.281,164.765L46.514,164.936ZM45.455,167.675L45.543,167.433L45.818,167.156L45.672,167.171L45.772,166.792L45.53,167.138L45.447,167.077L45.53,166.784L45.339,166.689L45.033,166.772L45.141,166.954L45.247,166.81L45.489,166.77L45.474,167.171L45.3,167.22L44.962,167.085L44.956,166.634L44.849,166.434L44.694,166.413L44.624,166.242L44.84,165.864L45.181,165.559L45.621,165.548L45.644,165.774L45.903,166.316L45.856,165.808L45.964,165.772L45.779,165.587L46.017,165.482L45.756,165.401L45.707,165.154L45.983,164.983L46.163,165.103L46.187,165.366L46.279,165.085L46.616,165.197L46.582,164.959L46.825,165.138L46.535,164.807L46.95,164.816L47.121,164.902L46.999,165.103L47.21,165.128L47.326,164.889L47.542,164.946L47.703,165.13L47.524,165.353L47.553,165.637L47.944,165.584L47.717,166.052L47.531,166.052L47.206,165.863L47.031,165.913L47.374,166.105L47.266,166.403L47.126,166.428L46.878,166.259L46.963,166.469L46.6,166.531L46.32,166.803L46.165,166.847L46.088,167.028L46.212,167.079L45.759,167.612ZM67.232,162.207L67.057,162.091L66.989,161.666L67.268,161.795ZM46.927,164.748L46.577,164.591L46.35,164.572L46.539,164.368L46.754,164.498ZM68.03,161.496L67.948,161.664L68.11,161.663L68.304,161.178L68.401,161.211L68.888,161.246L68.995,161.39L68.955,161.614L68.643,161.55L69.071,161.788L68.749,161.948L68.513,161.839L67.806,161.671L68.012,161.809L68.268,161.829L68.794,162.118L68.908,161.947L69.113,161.883L69.321,162.221L69.388,162.528L69.119,162.606L68.34,162.261L68.016,162.186L68.468,162.482L68.566,162.744L68.435,163.043L67.72,162.566L67.59,162.294L67.443,162.286L67.366,162.206L67.314,162.221L67.285,162.231L67.267,161.808L67.756,162.089L67.762,162.076L67.653,162.037L67.076,161.581L67.214,161.293L67.307,161.432L67.379,161.243L67.592,161.217L67.744,160.987L68.047,161.084L68.167,161.33ZM69.593,160.679L69.226,160.702L69.055,160.547L69.193,160.425ZM69.075,160.755L69.127,160.897L69.269,160.771L69.577,160.839L69.585,160.834L69.747,160.712L69.709,160.814L70.316,161.405L70.417,161.683L70.316,161.691L69.89,161.085L69.616,160.904L69.807,161.165L69.678,161.137L70.119,161.662L70.421,161.861L70.526,162.122L70.282,162.158L70.672,162.392L70.575,162.568L70.279,162.44L70.432,162.844L70.139,163.322L69.992,163.373L69.827,162.937L69.927,162.732L69.788,162.569L69.951,162.562L69.738,162.405L69.385,161.9L69.347,161.648L69.065,161.17L69.098,161.065L69.056,160.846L69.058,160.85L69.068,161.073L68.759,160.731L68.66,160.424ZM47.698,163.699L47.844,163.894L48.127,163.909L48.104,164.186L48.002,164.316L47.69,164.106L47.76,164.391L47.401,164.426L47.137,164.547L47.14,164.714L46.84,164.599L46.583,164.327L46.653,164.198L47.049,164.329L46.735,164.1L46.8,164.005L47.128,164.05L46.995,163.76L47.273,163.564L47.489,163.61L47.62,163.956ZM47.273,163.356L47.646,163.199L47.488,163.586L47.307,163.53ZM37.008,162.966L37.068,162.615L37.525,162.432L37.246,162.923ZM46.205,161.603L46.203,161.443L46.418,161.51ZM49.54,161.585L49.568,161.28L49.663,161.391ZM56.651,159.7L56.825,159.341L57.034,159.174ZM52.603,159.836L52.755,159.52L52.754,159.742ZM52.564,159.593L52.449,159.673L52.635,159.307L52.739,159.442ZM52.319,159.682L52.275,159.507L52.535,159.27L52.425,159.646ZM52.837,160.224L52.807,159.991L53.278,159.397L53.532,158.85L53.789,158.824L53.739,159.027L53.531,159.242L53.243,159.77L53.317,159.92ZM31.343,159.276L31.112,158.973L30.893,158.95L30.524,158.533L30.39,158.518L30.095,157.909L30.506,157.942L30.776,158.078L30.835,157.929L31.277,157.724L31.381,157.822L31.69,157.794L31.709,157.966L31.95,157.965L32.153,158.126L32.051,158.414L32.11,159.043L31.591,159.047ZM54.166,158.979L54.075,158.882L54.305,158.656L54.038,158.735L54.13,158.393L54.376,158.364L54.435,158.517L54.752,158.548L54.513,158.68ZM47.861,159.169L48.019,158.752L48.12,158.819ZM52.684,159.07L52.846,158.476L52.995,158.647L52.885,159.293ZM24.697,156.405L24.378,156.266L24.095,155.785L23.983,155.711L24.166,155.496L24.172,155.727L24.309,155.965L24.607,156.144ZM54.582,158.417L54.486,158.272L55.025,158.02L55.014,158.127ZM52.578,158.139L52.457,157.986L52.668,158.039ZM52.309,158.23L52.233,157.93L52.356,157.962ZM33.232,158.311L32.996,158.157L32.843,157.913L33.07,157.69L32.801,157.745L32.601,157.685L33.145,157.263L33.081,157.1L33.314,156.947L33.58,156.914L33.493,157.063L33.963,157.238L33.987,157.51L33.576,157.763L33.667,157.903L33.467,157.972L33.493,158.128ZM52.432,157.851L52.316,157.842L52.357,157.514L52.562,157.74ZM34.066,152.913L34.042,152.489L34.423,152.586ZM35.013,153.321L34.839,152.867L34.365,152.562L34.077,152.438L34.311,151.985L34.695,152.046L34.875,152.326L34.961,152.678L34.942,152.985ZM34.898,152.358L34.673,152.014L34.456,151.876L34.489,151.715L34.767,151.534L35.08,151.521L35.402,151.694L35.578,151.932L35.281,152.121L35.114,152.389ZM36.714,151.094L36.581,150.987L36.903,150.884L36.905,151.074ZM29.125,151.127L28.962,150.584L28.617,150.398L28.695,150.211L28.406,149.844L28.162,149.629L27.742,149.675L27.498,149.816L27.222,149.591L27.183,149.295L27.4,148.943L27.48,148.65L27.615,149.149L27.877,149.168L28.113,149.356L28.695,149.178L28.883,149.256L29.034,149.469L29.019,149.796L29.386,150.004L29.441,150.178L29.994,150.349L30.296,150.535L30.05,150.833L29.603,150.644L29.266,150.879ZM48.345,135.536L48.216,135.37L48.444,135.35ZM67.55,160.543L67.257,160.061L67.068,159.885L67.401,159.624L67.149,159.625L67.096,159.791L66.932,159.473L67.028,159.984L66.923,160.079L66.584,159.96L66.452,159.673L66.385,159.889L66.09,159.808L65.933,159.981L66.267,159.953L66.61,160.056L66.549,160.133L67.065,160.384L67.348,160.749L67.346,160.958L67.036,161.16L66.744,161.079L66.839,161.28L66.716,161.434L66.388,161.216L66.124,161.163L65.413,160.845L64.901,160.485L64.811,160.268L64.449,160.026L64.054,159.951L64.077,159.751L63.841,159.875L62.869,159.493L62.804,159.515L62.267,159.293L62.434,159.144L62.59,158.886L62.366,158.417L62.525,158.201L62.414,158.033L62.218,158.628L61.674,159.056L61.016,159.095L60.274,158.888L60.443,158.587L60.215,158.224L60.08,158.361L60.301,158.537L60.074,158.734L58.878,158.654L58.502,158.713L57.675,158.977L57.411,159.113L56.931,158.823L56.948,158.736L56.531,158.8L56.386,158.61L56.099,158.595L56.21,158.098L56.156,157.829L55.958,158.056L55.857,158.326L55.632,158.555L55.43,158.39L55.134,158.294L54.894,158.369L55.223,157.843L54.777,157.996L54.858,157.77L54.571,158.002L54.478,157.952L54.687,157.73L54.385,157.685L54.28,157.887L54.009,157.905L54.53,157.48L54.449,157.388L54.335,157.574L54.113,157.617L53.872,157.411L53.961,156.992L54.384,156.936L54.285,156.825L53.926,156.935L53.688,157.305L53.437,157.211L53.3,157.269L53.164,157.546L52.994,157.534L52.983,157.125L52.903,157.143L52.745,157.715L52.364,157.504L52.479,157.146L52.646,156.883L52.677,156.659L52.408,157.126L52.341,157.335L52.2,157.082L51.981,157.378L52.218,157.189L52.108,157.48L52.099,157.759L51.901,157.841L51.732,158.043L51.744,158.184L51.9,157.931L52.025,157.894L52.053,158.134L52.157,157.945L52.292,158.268L52.144,158.475L51.967,158.386L51.776,158.58L51.775,158.676L52.001,158.451L52.222,158.562L52.415,158.299L52.588,158.706L52.296,158.885L52.267,159.129L52.467,159.212L52.257,159.445L52.218,159.335L52.132,159.863L51.986,159.68L51.868,159.938L51.336,159.867L51.431,159.683L51.274,159.715L51.165,160.009L51.058,159.631L50.942,159.536L50.985,159.858L50.747,160.076L50.625,159.953L50.625,160.543L50.344,160.379L50.417,160.674L50.248,160.688L50.266,160.859L49.899,161.158L50.015,160.713L49.814,161.168L49.647,160.989L49.669,161.252L49.507,161.263L49.21,161.785L49.159,161.52L49.089,161.772L48.747,161.714L48.325,161.938L48.047,161.724L48.146,161.318L48.427,161.164L48.654,161.2L48.66,161.034L48.97,160.899L48.936,160.794L49.241,160.41L49.08,160.414L48.58,160.809L48.187,160.62L48.14,160.484L48.314,159.876L48.628,159.442L48.656,159.089L48.75,159.034L48.775,158.649L48.59,158.244L48.985,158.072L49.369,157.699L49.706,157.45L49.855,157.631L50.105,157.719L50.427,157.57L50.576,157.663L51.028,157.696L51.274,157.808L51.081,157.577L50.897,157.63L50.456,157.45L50.06,157.152L50.206,157.02L50.43,156.598L50.942,156.327L50.781,156.262L50.489,156.34L50.248,156.588L50.145,156.949L49.623,156.964L49.374,156.821L49.324,156.963L49.04,157.115L48.859,157.433L48.486,157.566L48.14,157.926L48.257,158.23L48.087,158.185L47.807,158.574L47.573,158.784L47.671,159.046L47.302,159.459L46.864,159.415L47.167,159.593L47.298,159.862L47.15,160.188L47.029,160.276L46.545,160.317L46.479,160.443L46.778,160.385L46.745,160.721L46.56,160.859L46.38,160.72L46.268,160.48L46.267,160.811L46.12,161.058L45.873,161.103L45.955,161.325L45.506,161.548L45.415,162.068L45.436,162.321L45.557,162.188L45.993,162.184L46.176,162.395L46.437,162.54L46.469,162.697L46.534,162.694L46.438,162.696L46.307,163.041L46.037,163.268L45.757,163.286L45.679,163.565L45.525,163.57L45.644,163.792L45.198,164.049L45.45,163.974L45.449,164.169L45.164,164.484L44.876,164.422L44.927,164.65L44.362,164.644L44.263,165.02L44.071,164.988L44.026,165.267L43.894,165.361L43.606,165.189L43.635,165.487L43.494,165.53L43.452,165.746L43.066,165.701L43.079,165.994L42.942,165.914L42.68,166.033L42.396,166.347L42.64,166.258L42.636,166.639L42.297,166.899L42.378,167.038L42.128,167.004L42.045,167.214L41.94,167.098L41.674,167.401L41.554,167.306L41.521,167.517L41.306,167.284L41.178,167.364L41.072,167.71L41.167,167.833L40.888,167.856L40.818,167.695L40.597,167.757L40.303,168.01L40.664,167.951L40.638,168.156L40.288,168.023L40.288,168.17L40.032,168.099L39.593,168.584L40.008,168.471L40.166,168.559L39.932,168.694L39.816,169.242L39.715,169.268L39.624,169.018L39.695,168.803L39.516,168.952L39.552,169.24L39.259,169.176L39.051,169.429L38.968,169.342L38.597,169.424L38.505,169.624L38.469,169.369L38.337,169.414L38.386,169.686L38.272,169.962L38.082,169.896L38.236,169.548L37.976,169.423L37.765,169.503L37.637,169.763L37.166,169.946L36.952,170.226L36.877,169.97L36.777,170.244L36.619,170.248L36.528,170.061L36.335,170.246L35.996,170.407L35.64,170.353L35.703,170.059L35.892,169.868L35.83,169.737L35.6,169.74L35.398,169.992L35.415,170.22L35.108,170.611L34.907,170.558L34.96,170.879L34.821,170.941L34.687,170.733L34.65,170.949L34.345,170.976L34.216,170.765L34.268,170.443L34.002,170.4L34.119,170.617L34.01,171.004L33.82,171.148L33.639,171.077L33.557,170.75L33.324,170.607L33.26,170.818L33.495,171.063L33.013,171.326L33.143,170.955L33.156,170.693L33.33,170.529L33.783,170.55L33.787,170.346L33.966,170.306L34.125,170.128L34.308,170.166L34.28,169.934L34.744,169.456L35.382,169.072L36.041,168.956L36.356,169.062L36.629,168.951L36.635,169.113L36.402,169.171L36.675,169.608L36.712,169.248L37.081,169.309L37.141,169.515L37.382,169.581L37.44,169.418L37.083,169.14L37.032,168.985L37.396,168.342L38.108,167.811L38.779,167.57L39.369,167.121L39.367,167.142L39.355,167.302L39.702,167.43L39.646,166.908L40.173,166.214L40.441,166.076L40.68,165.801L40.958,165.605L41.153,165.853L41.119,165.481L41,165.501L41.001,165.24L41.2,164.31L41.428,164.202L41.264,163.938L41.373,163.47L41.651,163.18L41.93,162.929L42.021,162.54L41.977,162.38L41.806,162.597L41.324,162.823L40.586,163.108L40.382,163.008L40.35,162.828L40.097,162.633L40.175,162.516L40.217,162.091L40.054,162.369L39.872,162.423L39.817,162.765L39.479,162.502L39.681,162.706L39.818,163.176L39.889,163.355L39.756,163.542L39.447,163.496L39.091,162.653L38.799,162.439L38.888,162.321L38.691,162.232L38.615,162.505L38.474,162.565L38.319,162.295L38.088,162.259L38.105,162.03L37.969,161.859L37.365,162.244L37.125,162.285L37.077,162.322L36.735,162.49L36.653,162.668L36.178,162.863L36.247,162.717L35.823,162.656L35.706,162.573L36.122,162.548L36.257,162.26L36.26,161.904L36.579,161.586L36.273,161.53L36.155,161.608L36.047,161.249L36.18,160.896L36.497,160.651L36.352,160.318L36.281,159.917L36.155,159.694L36.048,159.191L36.125,159.047L35.85,158.658L36.031,158.52L36.205,158.065L36.166,157.979L35.932,158.411L35.719,158.604L35.717,158.845L35.829,158.922L35.709,159.367L35.407,159.342L35.383,159.459L34.841,159.629L34.419,159.662L33.99,159.592L33.804,159.496L33.716,159.205L33.833,159.164L33.564,158.877L33.32,158.314L33.483,157.98L33.664,157.925L33.581,157.76L33.771,157.749L33.912,157.569L34.081,157.552L34.347,157.303L34.493,157.462L34.407,157.706L34.526,157.834L34.898,157.53L34.772,157.311L34.363,157.143L34.522,157.073L34.673,157.169L34.824,157.096L34.552,156.983L34.344,157.131L34.354,156.686L34.133,156.886L34.193,157.063L33.673,157.055L33.572,156.834L33.373,156.888L33.343,156.768L33.028,156.774L32.983,156.623L33.27,156.565L33.501,156.408L33.252,156.372L33.212,156.49L32.914,156.162L32.838,156.36L32.634,156.302L32.595,155.964L32.665,155.847L32.387,155.709L32.392,155.473L32.585,155.356L32.431,155.151L32.232,155.17L32.216,154.925L32.619,154.891L32.396,154.74L32.335,154.541L32.887,154.541L32.79,154.276L32.931,153.84L33.516,153.214L33.765,153.025L33.98,153.079L34.398,152.695L34.709,152.801L35.028,153.406L34.961,152.988L35.009,152.776L34.864,152.524L34.895,152.376L35.225,152.344L35.291,152.133L35.595,151.95L35.749,152.161L36.073,152.132L36.331,151.839L36.615,151.708L36.909,151.315L36.979,151.118L37.276,151.287L37.114,151.399L37.579,151.374L37.774,151.422L38.179,151.349L38.635,150.766L38.64,150.571L38.526,150.093L38.535,149.653L38.282,149.275L38.04,149.212L38.209,148.912L38.49,149.041L38.813,148.776L38.843,148.549L38.751,148.29L38.562,148.134L38.667,148.024L38.507,148.014L38.28,148.342L38.091,148.409L37.963,148.302L37.727,148.456L37.449,148.478L37.375,148.609L37.04,148.78L36.889,149.118L36.724,149.226L36.72,148.82L36.424,148.42L36.243,148.546L36.446,148.763L36.434,148.987L35.992,148.559L35.232,148.461L34.899,148.568L34.885,148.496L34.527,148.637L34.233,148.459L33.418,148.103L33.236,147.895L33.227,147.539L33.357,147.352L33.107,147.065L33.026,146.737L33.287,146.77L33.546,146.488L33.842,146.611L33.993,147.009L34.145,147.109L34.407,146.952L34.292,146.826L34.011,146.752L33.939,146.831L33.841,146.561L33.603,146.375L33.132,146.14L32.61,145.973L32.35,145.674L32.051,145.434L32.381,145.189L32.578,145.228L32.619,145.032L32.967,144.848L33.036,145.01L33.359,144.857L33.619,144.564L34.071,144.417L34.219,144.595L34.615,144.654L34.737,144.574L34.422,144.336L34.571,144.159L34.899,144.017L35.318,144.057L35.64,143.802L35.929,143.763L36.409,143.808L36.514,143.923L36.346,144.298L36.355,144.554L36.241,144.676L36.355,145.047L36.597,145.043L36.974,145.144L37.311,145.132L37.65,145.316L37.886,145.225L38.068,145.35L38.098,145.527L38.483,144.917L39.019,144.998L38.908,144.753L38.552,144.556L38.188,144.606L38.248,144.246L38.006,143.782L37.733,143.651L37.663,143.386L37.811,143.176L37.96,143.19L38.196,143.61L38.111,143.916L38.233,144.173L38.516,144.453L38.913,144.264L39.231,144.696L39.744,144.705L39.804,144.392L39.693,144.177L39.411,144.196L39.276,144.026L38.976,144.027L38.795,144.291L38.623,144.259L38.307,143.778L38.428,143.405L38.584,143.245L38.743,143.252L38.462,143.007L37.845,143.091L37.614,142.894L37.42,142.922L36.775,142.656L36.704,141.909L36.573,141.472L36.24,141.117L35.619,140.288L35.134,139.934L34.903,139.537L34.508,139.31L34.934,139.288L35.218,138.443L35.222,138.22L35.959,138.391L36.87,138.375L37.163,138.285L37.587,137.98L37.959,137.512L38.141,137.139L38.078,137.003L38.276,136.789L38.186,136.695L38.726,136.171L38.759,136.033L39.024,135.814L39.307,135.488L39.455,135.666L39.273,135.649L39.28,135.831L39.1,135.818L39.271,135.858L39.482,135.664L39.647,135.698L40.221,135.443L40.764,134.963L40.938,135.011L40.915,135.262L40.713,135.61L40.915,135.495L40.994,135.258L40.938,134.944L40.782,134.925L41.178,134.553L41.579,134.436L41.42,134.548L41.692,134.661L42.397,134.573L42.666,134.472L43.097,134.09L43.458,133.568L43.605,133.447L43.775,133.623L44.026,133.69L43.987,133.878L44.281,133.806L44.453,134.073L44.274,134.296L44.02,134.34L44.056,134.635L44.463,134.653L44.452,134.387L44.991,134.053L45.187,134.282L45.109,134.531L45.495,134.802L45.69,134.544L46.31,134.443L46.616,134.58L46.748,134.525L47.031,134.65L46.84,134.983L46.884,135.155L47.174,135.212L46.745,135.308L47.468,135.27L47.328,135.552L47.575,135.525L47.87,135.693L47.931,135.511L48.301,135.46L48.287,135.716L48.754,135.486L48.93,135.292L49.494,135.307L49.765,135.499L50.055,135.542L50.083,135.665L50.281,135.571L50.646,135.811L51.152,135.943L51.668,135.806L52.113,135.882L52.228,135.789L52.757,136.126L53.275,136.103L53.364,135.976L54.359,135.601L54.758,135.7L55.114,135.897L55.249,136.067L55.719,136.161L56.042,136.426L56.154,136.286L56.337,136.341L56.855,138.951L58.06,145.031L59.862,154.123L60.554,157.615L60.593,157.812L61.181,157.901L61.208,157.683L61.816,157.859L62.065,157.435L62.753,157.24L62.749,157.88L62.966,158.056L63.41,158.167L63.575,158.462L65.043,159.377L65.314,159.937L65.33,160.124L65.996,159.335L66.275,159.246L66.325,159.003L66.211,158.531L66.414,158.479L66.425,158.244L66.272,158.187L66.692,157.92L66.915,157.694L67.142,157.459L67.489,157.61L67.809,157.841L67.814,158.175L67.945,158.335L68.075,158.458L68.393,158.441L68.452,158.564L68.72,158.633L69.002,158.954L69.162,159.164L69.74,159.309L69.981,159.523L70.491,159.81L70.421,159.938L70.931,160.356L71.165,160.657L71.516,160.94L72.146,161.583L72.484,161.835L72.73,162.094L72.678,162.41L73.102,162.38L73.133,162.796L73.494,162.84L73.697,163.285L73.997,163.148L74.787,163.387L75.167,163.342L75.44,163.492L75.648,163.475L75.779,163.681L76.036,163.699L76.195,163.573L76.413,163.78L76.497,164.001L76.423,164.383L76.603,164.766L77.047,165.363L76.965,165.619L76.928,166.181L76.703,166.719L76.527,166.847L76.378,166.707L76.387,166.901L76.235,166.867L76.12,166.594L75.724,166.065L75.898,165.712L75.541,164.84L74.915,164.329L74.739,164.508L74.672,164.417L74.351,164.854L74.173,164.931L74.381,165.012L74.372,165.785L74.034,165.682L73.827,165.382L73.874,165.358L73.936,164.795L74.028,164.73L73.865,164.284L74.083,164.128L73.845,164.126L73.675,163.906L73.537,163.918L73.106,163.648L73.133,163.308L72.889,163.381L72.79,163.232L72.38,163.138L72.049,162.866L72.244,162.771L71.685,162.738L71.632,162.547L71.521,162.751L71.227,162.672L71.186,162.391L71.586,162.228L71.221,162.262L71.226,162.102L71.001,162.006L71.022,161.715L70.877,161.826L70.723,161.728L70.762,161.462L71.35,161.633L70.946,161.403L70.734,161.375L70.658,161.105L70.68,161.028L70.7,160.987L70.621,161.224L70.573,161.355L70.534,161.351L70.279,161.061L69.921,160.81L69.784,160.41L69.878,160.281L69.77,160.112L69.684,160.371L69.775,160.487L69.666,160.628L69.206,160.393L68.945,160.427L68.8,160.173L68.5,159.851L68.294,159.153L68.281,159.156L68.385,159.433L68.365,159.719L68.133,159.483L68.026,159.225L67.583,158.454L67.538,158.438L67.546,158.761L67.402,158.741L67.702,159.006L67.768,159.315L68.074,159.686L68.214,159.996L68.577,160.598L68.61,160.865L68.391,160.935L68.2,160.77L67.963,160.407L68.034,160.685L67.853,160.613L67.544,160.814Z" + }, + { + "fill": "rgb(216, 240, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.037; geo: [object Object]; name: Alaska", + "shape": "M7.208,172.472L6.987,171.876L6.674,171.551L6.701,171.463L7.065,171.8L7.304,172.409ZM13.561,173.982L13.569,173.658L13.763,173.703L13.721,173.904ZM13.865,173.986L13.799,173.825L13.929,173.737ZM14.185,173.908L14.026,173.744L14.196,173.748ZM11.312,173.492L11.102,173.228L11.356,173.195L11.099,172.734L11.178,172.674L11.511,172.769L11.507,172.929L11.841,173.14L11.597,173.121ZM12.369,173.603L12.137,173.459L11.697,173.347L12.33,173.405L12.458,173.36L12.556,173.121L12.697,173.16L12.446,173.639ZM6.725,170.86L6.726,170.662L6.887,170.815ZM12.64,173.999L12.636,173.823L12.846,173.752L12.856,173.537L13.063,173.627L13.168,173.256L13.484,173.302L13.266,173.619L13.504,173.651L13.479,173.914L13.351,173.835L13.222,173.963L12.829,173.953L12.893,173.76ZM8.188,171.56L8.059,171.381L8.116,171.247L8.371,171.245L8.487,171.426ZM14.134,173.59L14.009,173.316L14.264,173.295ZM5.075,170.306L4.995,170.095L5.305,170.021L5.453,170.072L5.695,169.832L5.822,169.917L5.548,170.116L5.478,170.269L5.306,170.143ZM17.731,174.618L17.501,174.425L17.279,174.437L17.043,174.181L17.264,174.187L17.972,174.539L18.218,174.553L18.527,174.682L18.246,174.676L17.783,174.572ZM19.21,174.508L19.1,174.457L19.216,174.262L19.422,174.217L19.586,174.415ZM15.503,173.971L15.469,173.891L15.861,173.847L16.001,173.938L16.399,173.923L16.879,173.75L16.731,173.599L16.826,173.471L17.091,173.452L17.244,173.796L17.085,173.925L16.926,173.858L16.992,174.135L16.548,174.055L16.469,174.185L16.266,174.051L16.139,174.121L15.636,173.934ZM0.869,166.844L0.863,166.746L0.55,166.543L1.077,166.54L0.967,166.892ZM21.821,174.509L21.844,174.278L22.126,174.208L22.105,174.435ZM23.437,174.349L23.277,174.183L23.102,174.231L23.105,174.07L23.513,174.097ZM0.359,165.533L0.25,165.294L0.317,165.161L0.137,165.097L0.215,164.976L0,164.859L0.322,164.823L0.669,165.101L0.885,165.161L0.882,165.371L1.052,165.442L0.935,165.65L0.746,165.624L0.642,165.461ZM24.339,174.42L24.92,173.939L24.922,173.765L25.243,173.562L25.587,173.67L25.492,173.49L25.569,173.301L25.872,173.097L26.199,173.077L26.48,173.253L26.343,173.537L25.686,173.737L25.329,174.108L24.904,174.283ZM28.723,173.248L28.621,173.034L28.914,172.927L28.886,173.11ZM26.524,173.926L26.343,173.708L26.546,173.576L26.683,173.634L26.87,173.503L27.064,173.632L27.142,173.476L27.461,173.468L27.377,173.226L27.607,173.225L27.574,173.03L28.051,173.064L27.656,172.923L27.495,172.715L27.642,172.512L27.924,172.417L28.219,172.407L28.309,172.566L28.219,172.85L28.749,172.592L28.835,172.73L28.202,173.125L28.595,173.037L28.622,173.274L28.292,173.296L28.007,173.637L27.842,173.537L27.506,173.604ZM30.463,172.696L30.238,172.602L30.631,172.557ZM29.308,172.571L29.093,172.508L29.033,172.312L29.255,172.116L29.554,172.349L29.61,172.484ZM29.771,172.483L29.68,172.092L29.96,172.06L29.849,172.237L30.018,172.274ZM33.865,172.488L33.588,172.259L33.66,172.17L33.901,172.29ZM74.081,167.735L73.738,167.425L74.01,167.461ZM34.409,171.47L34.277,171.318L34.441,171.103L34.554,171.17ZM75.662,166.938L75.407,166.799L75.671,166.574L75.8,166.777ZM31.122,172.033L30.865,171.928L30.819,171.49L31.141,171.393L31.418,170.93L31.611,170.825L31.831,170.926L32.367,170.688L32.854,170.725L33.036,171.472L33.227,171.439L33.273,171.639L32.875,171.532L32.87,171.674L32.632,171.75L32.352,171.642L31.965,171.621L31.6,171.774L31.452,171.989ZM38.285,171.606L38.386,171.371L38.461,171.527ZM35.242,171.036L35.067,170.757L35.401,170.884ZM73.762,167.251L73.575,167.223L73.618,167.062L73.458,166.946L73.512,166.819L73.814,167.101ZM38.058,171.36L38.167,171.221L38.16,170.957L38.265,171.137ZM74.023,167.962L73.872,167.956L73.261,167.524L73.074,167.198L72.995,166.877L73.097,166.801L73.494,167.286L73.548,167.451L73.861,167.611ZM75.233,166.742L75.143,166.675L75.199,166.369L75.03,166.12L75.438,166.234L75.507,166.531ZM37.226,171.694L37.486,171.198L37.52,170.929L37.726,171.064L37.589,171.291L37.299,171.538ZM72.854,167.019L72.715,167.04L72.642,166.781L72.763,166.704L72.949,166.844ZM37.166,170.793L36.93,170.594L37.179,170.514ZM36.491,171.021L36.515,170.503L36.68,170.352L36.788,170.428L36.991,170.909L36.887,171.032L36.596,170.851ZM74.938,166.512L74.789,166.407L74.58,165.905L74.907,166.043ZM72.477,167.054L72.372,166.959L72.363,166.646L72.573,166.69L72.462,166.817ZM37.444,170.505L37.221,170.325L37.474,170.335ZM72.448,166.599L72.328,166.584L72.392,166.373L72.569,166.506ZM72.086,166.688L72.161,166.467L72.312,166.375L72.272,166.627ZM72.656,166.481L72.479,166.333L72.602,166.203ZM72.272,165.998L71.997,165.868L72.141,165.695L72.466,165.749ZM43.521,170.008L43.326,169.856L43.586,169.674ZM72.554,165.713L72.404,165.617L72.384,165.416L72.528,165.494ZM71.232,166.005L71.174,165.767L71.372,165.735ZM75.569,166.131L75.372,166.022L75.191,166.055L75.296,165.636L75.237,165.597L75.059,166.057L74.582,165.838L74.721,165.411L74.581,165.384L74.436,164.925L74.644,164.862L74.53,164.736L74.9,164.424L75.245,164.66L75.563,165.054L75.701,165.915ZM71.882,165.613L71.723,165.531L71.837,165.112L72.059,164.912L72.239,164.888L72.335,165.188L72.224,165.18ZM73.587,165.027L73.345,164.738L73.092,164.839L72.901,164.502L73.031,164.404L73.033,164.174L73.255,164.161L73.267,164.403L73.5,164.362L73.75,164.499L73.655,164.672L73.826,164.838ZM72.792,165.04L72.79,165.034L72.848,164.986L73.227,165.127L73.531,165.363L73.588,165.637L73.772,165.62L73.928,165.828L74.187,165.954L73.71,165.866L73.534,165.761L73.634,166.031L73.81,165.94L74.232,166.16L74.387,166.361L74.22,166.541L74.44,166.514L74.475,166.305L74.605,166.536L74.545,166.999L74.705,166.855L74.831,167.133L74.905,167.586L74.533,167.66L74.479,167.392L74.073,167.113L74.103,167.279L73.839,166.781L73.722,166.886L73.317,166.703L72.924,166.796L72.899,166.564L73.187,166.567L73.089,166.343L72.917,166.37L72.898,165.973L72.674,166.161L72.502,166.11L72.495,165.901L72.667,165.571L72.49,165.453L72.269,164.876L71.856,164.937L71.693,164.734L71.683,164.549L71.92,164.555L72.211,164.438L72.534,164.72L72.597,165.051ZM72.699,164.533L72.381,164.387L72.439,164.071L72.7,163.972L72.896,164.073L72.929,164.351ZM73.583,164.359L73.287,164.214L73.107,163.753L73.256,163.772L73.517,163.99L73.655,163.918L73.898,164.208L73.77,164.454ZM45.565,168.253L45.542,168.135L45.783,168.09ZM41.497,168.094L41.439,167.948L41.656,167.967ZM44.643,168.468L44.735,168.179L44.931,168.025L45.022,168.214ZM45.528,168.049L45.421,168.226L45.185,168.22L45.343,167.978ZM25.67,165.804L25.49,165.559L25.853,165.696ZM72.925,163.531L72.795,163.376L73.04,163.351ZM72.576,163.923L72.402,163.944L72.354,163.634L72.152,163.3L72.347,163.258L72.849,163.61ZM71.103,163.771L71.031,163.648L71.25,163.653L71.291,164.075L71.234,164.314L71.424,164.687L71.372,164.848L71.445,165.272L71.385,165.316L71.167,165.024L71.296,165.553L71.127,165.438L70.855,164.821L70.918,164.565L71.153,164.76L70.983,164.429L70.669,164.355L70.694,164.247L70.458,164.026L70.358,163.778L70.54,163.491L70.842,163.567ZM71.316,163.755L71.051,163.419L70.687,163.208L70.836,162.993L71.484,163.01L71.847,162.897L72.052,163.024L72.307,163.594L72.268,163.757L71.663,163.359L71.955,163.737L72.129,163.763L72.22,163.968L72.129,164.186L71.802,164.154L71.845,164.26L71.583,164.385ZM46.514,167.086L46.407,166.815L46.628,166.571L47.067,166.699L46.667,166.844ZM25.105,164.277L25.002,164.053L25.411,164.032ZM68.541,163.942L68.445,163.718L68.54,163.498L68.407,163.516L68.288,163.158L68.481,163.141L68.755,163.487L68.763,163.818ZM69.656,164.245L69.462,164.32L69.445,164.112L69.197,164.168L69.109,163.894L69.209,163.645L68.985,163.546L68.931,163.194L68.729,163.281L68.463,163.027L68.717,162.991L68.534,162.913L68.635,162.524L68.805,162.676L68.961,162.597L69.268,162.728L69.456,162.645L69.573,162.88L69.42,162.828L69.654,163.152L70.177,164.102L70.458,165.183L70.516,165.378L70.283,165.268L69.578,164.404ZM47.667,164.962L47.464,164.879L47.577,164.748ZM46.616,165.184L46.238,164.926L46.281,164.765L46.514,164.936ZM45.455,167.675L45.543,167.433L45.818,167.156L45.672,167.171L45.772,166.792L45.53,167.138L45.447,167.077L45.53,166.784L45.339,166.689L45.033,166.772L45.141,166.954L45.247,166.81L45.489,166.77L45.474,167.171L45.3,167.22L44.962,167.085L44.956,166.634L44.849,166.434L44.694,166.413L44.624,166.242L44.84,165.864L45.181,165.559L45.621,165.548L45.644,165.774L45.903,166.316L45.856,165.808L45.964,165.772L45.779,165.587L46.017,165.482L45.756,165.401L45.707,165.154L45.983,164.983L46.163,165.103L46.187,165.366L46.279,165.085L46.616,165.197L46.582,164.959L46.825,165.138L46.535,164.807L46.95,164.816L47.121,164.902L46.999,165.103L47.21,165.128L47.326,164.889L47.542,164.946L47.703,165.13L47.524,165.353L47.553,165.637L47.944,165.584L47.717,166.052L47.531,166.052L47.206,165.863L47.031,165.913L47.374,166.105L47.266,166.403L47.126,166.428L46.878,166.259L46.963,166.469L46.6,166.531L46.32,166.803L46.165,166.847L46.088,167.028L46.212,167.079L45.759,167.612ZM67.232,162.207L67.057,162.091L66.989,161.666L67.268,161.795ZM46.927,164.748L46.577,164.591L46.35,164.572L46.539,164.368L46.754,164.498ZM68.03,161.496L67.948,161.664L68.11,161.663L68.304,161.178L68.401,161.211L68.888,161.246L68.995,161.39L68.955,161.614L68.643,161.55L69.071,161.788L68.749,161.948L68.513,161.839L67.806,161.671L68.012,161.809L68.268,161.829L68.794,162.118L68.908,161.947L69.113,161.883L69.321,162.221L69.388,162.528L69.119,162.606L68.34,162.261L68.016,162.186L68.468,162.482L68.566,162.744L68.435,163.043L67.72,162.566L67.59,162.294L67.443,162.286L67.366,162.206L67.314,162.221L67.285,162.231L67.267,161.808L67.756,162.089L67.762,162.076L67.653,162.037L67.076,161.581L67.214,161.293L67.307,161.432L67.379,161.243L67.592,161.217L67.744,160.987L68.047,161.084L68.167,161.33ZM69.593,160.679L69.226,160.702L69.055,160.547L69.193,160.425ZM69.075,160.755L69.127,160.897L69.269,160.771L69.577,160.839L69.585,160.834L69.747,160.712L69.709,160.814L70.316,161.405L70.417,161.683L70.316,161.691L69.89,161.085L69.616,160.904L69.807,161.165L69.678,161.137L70.119,161.662L70.421,161.861L70.526,162.122L70.282,162.158L70.672,162.392L70.575,162.568L70.279,162.44L70.432,162.844L70.139,163.322L69.992,163.373L69.827,162.937L69.927,162.732L69.788,162.569L69.951,162.562L69.738,162.405L69.385,161.9L69.347,161.648L69.065,161.17L69.098,161.065L69.056,160.846L69.058,160.85L69.068,161.073L68.759,160.731L68.66,160.424ZM47.698,163.699L47.844,163.894L48.127,163.909L48.104,164.186L48.002,164.316L47.69,164.106L47.76,164.391L47.401,164.426L47.137,164.547L47.14,164.714L46.84,164.599L46.583,164.327L46.653,164.198L47.049,164.329L46.735,164.1L46.8,164.005L47.128,164.05L46.995,163.76L47.273,163.564L47.489,163.61L47.62,163.956ZM47.273,163.356L47.646,163.199L47.488,163.586L47.307,163.53ZM37.008,162.966L37.068,162.615L37.525,162.432L37.246,162.923ZM46.205,161.603L46.203,161.443L46.418,161.51ZM49.54,161.585L49.568,161.28L49.663,161.391ZM56.651,159.7L56.825,159.341L57.034,159.174ZM52.603,159.836L52.755,159.52L52.754,159.742ZM52.564,159.593L52.449,159.673L52.635,159.307L52.739,159.442ZM52.319,159.682L52.275,159.507L52.535,159.27L52.425,159.646ZM52.837,160.224L52.807,159.991L53.278,159.397L53.532,158.85L53.789,158.824L53.739,159.027L53.531,159.242L53.243,159.77L53.317,159.92ZM31.343,159.276L31.112,158.973L30.893,158.95L30.524,158.533L30.39,158.518L30.095,157.909L30.506,157.942L30.776,158.078L30.835,157.929L31.277,157.724L31.381,157.822L31.69,157.794L31.709,157.966L31.95,157.965L32.153,158.126L32.051,158.414L32.11,159.043L31.591,159.047ZM54.166,158.979L54.075,158.882L54.305,158.656L54.038,158.735L54.13,158.393L54.376,158.364L54.435,158.517L54.752,158.548L54.513,158.68ZM47.861,159.169L48.019,158.752L48.12,158.819ZM52.684,159.07L52.846,158.476L52.995,158.647L52.885,159.293ZM24.697,156.405L24.378,156.266L24.095,155.785L23.983,155.711L24.166,155.496L24.172,155.727L24.309,155.965L24.607,156.144ZM54.582,158.417L54.486,158.272L55.025,158.02L55.014,158.127ZM52.578,158.139L52.457,157.986L52.668,158.039ZM52.309,158.23L52.233,157.93L52.356,157.962ZM33.232,158.311L32.996,158.157L32.843,157.913L33.07,157.69L32.801,157.745L32.601,157.685L33.145,157.263L33.081,157.1L33.314,156.947L33.58,156.914L33.493,157.063L33.963,157.238L33.987,157.51L33.576,157.763L33.667,157.903L33.467,157.972L33.493,158.128ZM52.432,157.851L52.316,157.842L52.357,157.514L52.562,157.74ZM34.066,152.913L34.042,152.489L34.423,152.586ZM35.013,153.321L34.839,152.867L34.365,152.562L34.077,152.438L34.311,151.985L34.695,152.046L34.875,152.326L34.961,152.678L34.942,152.985ZM34.898,152.358L34.673,152.014L34.456,151.876L34.489,151.715L34.767,151.534L35.08,151.521L35.402,151.694L35.578,151.932L35.281,152.121L35.114,152.389ZM36.714,151.094L36.581,150.987L36.903,150.884L36.905,151.074ZM29.125,151.127L28.962,150.584L28.617,150.398L28.695,150.211L28.406,149.844L28.162,149.629L27.742,149.675L27.498,149.816L27.222,149.591L27.183,149.295L27.4,148.943L27.48,148.65L27.615,149.149L27.877,149.168L28.113,149.356L28.695,149.178L28.883,149.256L29.034,149.469L29.019,149.796L29.386,150.004L29.441,150.178L29.994,150.349L30.296,150.535L30.05,150.833L29.603,150.644L29.266,150.879ZM48.345,135.536L48.216,135.37L48.444,135.35ZM67.55,160.543L67.257,160.061L67.068,159.885L67.401,159.624L67.149,159.625L67.096,159.791L66.932,159.473L67.028,159.984L66.923,160.079L66.584,159.96L66.452,159.673L66.385,159.889L66.09,159.808L65.933,159.981L66.267,159.953L66.61,160.056L66.549,160.133L67.065,160.384L67.348,160.749L67.346,160.958L67.036,161.16L66.744,161.079L66.839,161.28L66.716,161.434L66.388,161.216L66.124,161.163L65.413,160.845L64.901,160.485L64.811,160.268L64.449,160.026L64.054,159.951L64.077,159.751L63.841,159.875L62.869,159.493L62.804,159.515L62.267,159.293L62.434,159.144L62.59,158.886L62.366,158.417L62.525,158.201L62.414,158.033L62.218,158.628L61.674,159.056L61.016,159.095L60.274,158.888L60.443,158.587L60.215,158.224L60.08,158.361L60.301,158.537L60.074,158.734L58.878,158.654L58.502,158.713L57.675,158.977L57.411,159.113L56.931,158.823L56.948,158.736L56.531,158.8L56.386,158.61L56.099,158.595L56.21,158.098L56.156,157.829L55.958,158.056L55.857,158.326L55.632,158.555L55.43,158.39L55.134,158.294L54.894,158.369L55.223,157.843L54.777,157.996L54.858,157.77L54.571,158.002L54.478,157.952L54.687,157.73L54.385,157.685L54.28,157.887L54.009,157.905L54.53,157.48L54.449,157.388L54.335,157.574L54.113,157.617L53.872,157.411L53.961,156.992L54.384,156.936L54.285,156.825L53.926,156.935L53.688,157.305L53.437,157.211L53.3,157.269L53.164,157.546L52.994,157.534L52.983,157.125L52.903,157.143L52.745,157.715L52.364,157.504L52.479,157.146L52.646,156.883L52.677,156.659L52.408,157.126L52.341,157.335L52.2,157.082L51.981,157.378L52.218,157.189L52.108,157.48L52.099,157.759L51.901,157.841L51.732,158.043L51.744,158.184L51.9,157.931L52.025,157.894L52.053,158.134L52.157,157.945L52.292,158.268L52.144,158.475L51.967,158.386L51.776,158.58L51.775,158.676L52.001,158.451L52.222,158.562L52.415,158.299L52.588,158.706L52.296,158.885L52.267,159.129L52.467,159.212L52.257,159.445L52.218,159.335L52.132,159.863L51.986,159.68L51.868,159.938L51.336,159.867L51.431,159.683L51.274,159.715L51.165,160.009L51.058,159.631L50.942,159.536L50.985,159.858L50.747,160.076L50.625,159.953L50.625,160.543L50.344,160.379L50.417,160.674L50.248,160.688L50.266,160.859L49.899,161.158L50.015,160.713L49.814,161.168L49.647,160.989L49.669,161.252L49.507,161.263L49.21,161.785L49.159,161.52L49.089,161.772L48.747,161.714L48.325,161.938L48.047,161.724L48.146,161.318L48.427,161.164L48.654,161.2L48.66,161.034L48.97,160.899L48.936,160.794L49.241,160.41L49.08,160.414L48.58,160.809L48.187,160.62L48.14,160.484L48.314,159.876L48.628,159.442L48.656,159.089L48.75,159.034L48.775,158.649L48.59,158.244L48.985,158.072L49.369,157.699L49.706,157.45L49.855,157.631L50.105,157.719L50.427,157.57L50.576,157.663L51.028,157.696L51.274,157.808L51.081,157.577L50.897,157.63L50.456,157.45L50.06,157.152L50.206,157.02L50.43,156.598L50.942,156.327L50.781,156.262L50.489,156.34L50.248,156.588L50.145,156.949L49.623,156.964L49.374,156.821L49.324,156.963L49.04,157.115L48.859,157.433L48.486,157.566L48.14,157.926L48.257,158.23L48.087,158.185L47.807,158.574L47.573,158.784L47.671,159.046L47.302,159.459L46.864,159.415L47.167,159.593L47.298,159.862L47.15,160.188L47.029,160.276L46.545,160.317L46.479,160.443L46.778,160.385L46.745,160.721L46.56,160.859L46.38,160.72L46.268,160.48L46.267,160.811L46.12,161.058L45.873,161.103L45.955,161.325L45.506,161.548L45.415,162.068L45.436,162.321L45.557,162.188L45.993,162.184L46.176,162.395L46.437,162.54L46.469,162.697L46.534,162.694L46.438,162.696L46.307,163.041L46.037,163.268L45.757,163.286L45.679,163.565L45.525,163.57L45.644,163.792L45.198,164.049L45.45,163.974L45.449,164.169L45.164,164.484L44.876,164.422L44.927,164.65L44.362,164.644L44.263,165.02L44.071,164.988L44.026,165.267L43.894,165.361L43.606,165.189L43.635,165.487L43.494,165.53L43.452,165.746L43.066,165.701L43.079,165.994L42.942,165.914L42.68,166.033L42.396,166.347L42.64,166.258L42.636,166.639L42.297,166.899L42.378,167.038L42.128,167.004L42.045,167.214L41.94,167.098L41.674,167.401L41.554,167.306L41.521,167.517L41.306,167.284L41.178,167.364L41.072,167.71L41.167,167.833L40.888,167.856L40.818,167.695L40.597,167.757L40.303,168.01L40.664,167.951L40.638,168.156L40.288,168.023L40.288,168.17L40.032,168.099L39.593,168.584L40.008,168.471L40.166,168.559L39.932,168.694L39.816,169.242L39.715,169.268L39.624,169.018L39.695,168.803L39.516,168.952L39.552,169.24L39.259,169.176L39.051,169.429L38.968,169.342L38.597,169.424L38.505,169.624L38.469,169.369L38.337,169.414L38.386,169.686L38.272,169.962L38.082,169.896L38.236,169.548L37.976,169.423L37.765,169.503L37.637,169.763L37.166,169.946L36.952,170.226L36.877,169.97L36.777,170.244L36.619,170.248L36.528,170.061L36.335,170.246L35.996,170.407L35.64,170.353L35.703,170.059L35.892,169.868L35.83,169.737L35.6,169.74L35.398,169.992L35.415,170.22L35.108,170.611L34.907,170.558L34.96,170.879L34.821,170.941L34.687,170.733L34.65,170.949L34.345,170.976L34.216,170.765L34.268,170.443L34.002,170.4L34.119,170.617L34.01,171.004L33.82,171.148L33.639,171.077L33.557,170.75L33.324,170.607L33.26,170.818L33.495,171.063L33.013,171.326L33.143,170.955L33.156,170.693L33.33,170.529L33.783,170.55L33.787,170.346L33.966,170.306L34.125,170.128L34.308,170.166L34.28,169.934L34.744,169.456L35.382,169.072L36.041,168.956L36.356,169.062L36.629,168.951L36.635,169.113L36.402,169.171L36.675,169.608L36.712,169.248L37.081,169.309L37.141,169.515L37.382,169.581L37.44,169.418L37.083,169.14L37.032,168.985L37.396,168.342L38.108,167.811L38.779,167.57L39.369,167.121L39.367,167.142L39.355,167.302L39.702,167.43L39.646,166.908L40.173,166.214L40.441,166.076L40.68,165.801L40.958,165.605L41.153,165.853L41.119,165.481L41,165.501L41.001,165.24L41.2,164.31L41.428,164.202L41.264,163.938L41.373,163.47L41.651,163.18L41.93,162.929L42.021,162.54L41.977,162.38L41.806,162.597L41.324,162.823L40.586,163.108L40.382,163.008L40.35,162.828L40.097,162.633L40.175,162.516L40.217,162.091L40.054,162.369L39.872,162.423L39.817,162.765L39.479,162.502L39.681,162.706L39.818,163.176L39.889,163.355L39.756,163.542L39.447,163.496L39.091,162.653L38.799,162.439L38.888,162.321L38.691,162.232L38.615,162.505L38.474,162.565L38.319,162.295L38.088,162.259L38.105,162.03L37.969,161.859L37.365,162.244L37.125,162.285L37.077,162.322L36.735,162.49L36.653,162.668L36.178,162.863L36.247,162.717L35.823,162.656L35.706,162.573L36.122,162.548L36.257,162.26L36.26,161.904L36.579,161.586L36.273,161.53L36.155,161.608L36.047,161.249L36.18,160.896L36.497,160.651L36.352,160.318L36.281,159.917L36.155,159.694L36.048,159.191L36.125,159.047L35.85,158.658L36.031,158.52L36.205,158.065L36.166,157.979L35.932,158.411L35.719,158.604L35.717,158.845L35.829,158.922L35.709,159.367L35.407,159.342L35.383,159.459L34.841,159.629L34.419,159.662L33.99,159.592L33.804,159.496L33.716,159.205L33.833,159.164L33.564,158.877L33.32,158.314L33.483,157.98L33.664,157.925L33.581,157.76L33.771,157.749L33.912,157.569L34.081,157.552L34.347,157.303L34.493,157.462L34.407,157.706L34.526,157.834L34.898,157.53L34.772,157.311L34.363,157.143L34.522,157.073L34.673,157.169L34.824,157.096L34.552,156.983L34.344,157.131L34.354,156.686L34.133,156.886L34.193,157.063L33.673,157.055L33.572,156.834L33.373,156.888L33.343,156.768L33.028,156.774L32.983,156.623L33.27,156.565L33.501,156.408L33.252,156.372L33.212,156.49L32.914,156.162L32.838,156.36L32.634,156.302L32.595,155.964L32.665,155.847L32.387,155.709L32.392,155.473L32.585,155.356L32.431,155.151L32.232,155.17L32.216,154.925L32.619,154.891L32.396,154.74L32.335,154.541L32.887,154.541L32.79,154.276L32.931,153.84L33.516,153.214L33.765,153.025L33.98,153.079L34.398,152.695L34.709,152.801L35.028,153.406L34.961,152.988L35.009,152.776L34.864,152.524L34.895,152.376L35.225,152.344L35.291,152.133L35.595,151.95L35.749,152.161L36.073,152.132L36.331,151.839L36.615,151.708L36.909,151.315L36.979,151.118L37.276,151.287L37.114,151.399L37.579,151.374L37.774,151.422L38.179,151.349L38.635,150.766L38.64,150.571L38.526,150.093L38.535,149.653L38.282,149.275L38.04,149.212L38.209,148.912L38.49,149.041L38.813,148.776L38.843,148.549L38.751,148.29L38.562,148.134L38.667,148.024L38.507,148.014L38.28,148.342L38.091,148.409L37.963,148.302L37.727,148.456L37.449,148.478L37.375,148.609L37.04,148.78L36.889,149.118L36.724,149.226L36.72,148.82L36.424,148.42L36.243,148.546L36.446,148.763L36.434,148.987L35.992,148.559L35.232,148.461L34.899,148.568L34.885,148.496L34.527,148.637L34.233,148.459L33.418,148.103L33.236,147.895L33.227,147.539L33.357,147.352L33.107,147.065L33.026,146.737L33.287,146.77L33.546,146.488L33.842,146.611L33.993,147.009L34.145,147.109L34.407,146.952L34.292,146.826L34.011,146.752L33.939,146.831L33.841,146.561L33.603,146.375L33.132,146.14L32.61,145.973L32.35,145.674L32.051,145.434L32.381,145.189L32.578,145.228L32.619,145.032L32.967,144.848L33.036,145.01L33.359,144.857L33.619,144.564L34.071,144.417L34.219,144.595L34.615,144.654L34.737,144.574L34.422,144.336L34.571,144.159L34.899,144.017L35.318,144.057L35.64,143.802L35.929,143.763L36.409,143.808L36.514,143.923L36.346,144.298L36.355,144.554L36.241,144.676L36.355,145.047L36.597,145.043L36.974,145.144L37.311,145.132L37.65,145.316L37.886,145.225L38.068,145.35L38.098,145.527L38.483,144.917L39.019,144.998L38.908,144.753L38.552,144.556L38.188,144.606L38.248,144.246L38.006,143.782L37.733,143.651L37.663,143.386L37.811,143.176L37.96,143.19L38.196,143.61L38.111,143.916L38.233,144.173L38.516,144.453L38.913,144.264L39.231,144.696L39.744,144.705L39.804,144.392L39.693,144.177L39.411,144.196L39.276,144.026L38.976,144.027L38.795,144.291L38.623,144.259L38.307,143.778L38.428,143.405L38.584,143.245L38.743,143.252L38.462,143.007L37.845,143.091L37.614,142.894L37.42,142.922L36.775,142.656L36.704,141.909L36.573,141.472L36.24,141.117L35.619,140.288L35.134,139.934L34.903,139.537L34.508,139.31L34.934,139.288L35.218,138.443L35.222,138.22L35.959,138.391L36.87,138.375L37.163,138.285L37.587,137.98L37.959,137.512L38.141,137.139L38.078,137.003L38.276,136.789L38.186,136.695L38.726,136.171L38.759,136.033L39.024,135.814L39.307,135.488L39.455,135.666L39.273,135.649L39.28,135.831L39.1,135.818L39.271,135.858L39.482,135.664L39.647,135.698L40.221,135.443L40.764,134.963L40.938,135.011L40.915,135.262L40.713,135.61L40.915,135.495L40.994,135.258L40.938,134.944L40.782,134.925L41.178,134.553L41.579,134.436L41.42,134.548L41.692,134.661L42.397,134.573L42.666,134.472L43.097,134.09L43.458,133.568L43.605,133.447L43.775,133.623L44.026,133.69L43.987,133.878L44.281,133.806L44.453,134.073L44.274,134.296L44.02,134.34L44.056,134.635L44.463,134.653L44.452,134.387L44.991,134.053L45.187,134.282L45.109,134.531L45.495,134.802L45.69,134.544L46.31,134.443L46.616,134.58L46.748,134.525L47.031,134.65L46.84,134.983L46.884,135.155L47.174,135.212L46.745,135.308L47.468,135.27L47.328,135.552L47.575,135.525L47.87,135.693L47.931,135.511L48.301,135.46L48.287,135.716L48.754,135.486L48.93,135.292L49.494,135.307L49.765,135.499L50.055,135.542L50.083,135.665L50.281,135.571L50.646,135.811L51.152,135.943L51.668,135.806L52.113,135.882L52.228,135.789L52.757,136.126L53.275,136.103L53.364,135.976L54.359,135.601L54.758,135.7L55.114,135.897L55.249,136.067L55.719,136.161L56.042,136.426L56.154,136.286L56.337,136.341L56.855,138.951L58.06,145.031L59.862,154.123L60.554,157.615L60.593,157.812L61.181,157.901L61.208,157.683L61.816,157.859L62.065,157.435L62.753,157.24L62.749,157.88L62.966,158.056L63.41,158.167L63.575,158.462L65.043,159.377L65.314,159.937L65.33,160.124L65.996,159.335L66.275,159.246L66.325,159.003L66.211,158.531L66.414,158.479L66.425,158.244L66.272,158.187L66.692,157.92L66.915,157.694L67.142,157.459L67.489,157.61L67.809,157.841L67.814,158.175L67.945,158.335L68.075,158.458L68.393,158.441L68.452,158.564L68.72,158.633L69.002,158.954L69.162,159.164L69.74,159.309L69.981,159.523L70.491,159.81L70.421,159.938L70.931,160.356L71.165,160.657L71.516,160.94L72.146,161.583L72.484,161.835L72.73,162.094L72.678,162.41L73.102,162.38L73.133,162.796L73.494,162.84L73.697,163.285L73.997,163.148L74.787,163.387L75.167,163.342L75.44,163.492L75.648,163.475L75.779,163.681L76.036,163.699L76.195,163.573L76.413,163.78L76.497,164.001L76.423,164.383L76.603,164.766L77.047,165.363L76.965,165.619L76.928,166.181L76.703,166.719L76.527,166.847L76.378,166.707L76.387,166.901L76.235,166.867L76.12,166.594L75.724,166.065L75.898,165.712L75.541,164.84L74.915,164.329L74.739,164.508L74.672,164.417L74.351,164.854L74.173,164.931L74.381,165.012L74.372,165.785L74.034,165.682L73.827,165.382L73.874,165.358L73.936,164.795L74.028,164.73L73.865,164.284L74.083,164.128L73.845,164.126L73.675,163.906L73.537,163.918L73.106,163.648L73.133,163.308L72.889,163.381L72.79,163.232L72.38,163.138L72.049,162.866L72.244,162.771L71.685,162.738L71.632,162.547L71.521,162.751L71.227,162.672L71.186,162.391L71.586,162.228L71.221,162.262L71.226,162.102L71.001,162.006L71.022,161.715L70.877,161.826L70.723,161.728L70.762,161.462L71.35,161.633L70.946,161.403L70.734,161.375L70.658,161.105L70.68,161.028L70.7,160.987L70.621,161.224L70.573,161.355L70.534,161.351L70.279,161.061L69.921,160.81L69.784,160.41L69.878,160.281L69.77,160.112L69.684,160.371L69.775,160.487L69.666,160.628L69.206,160.393L68.945,160.427L68.8,160.173L68.5,159.851L68.294,159.153L68.281,159.156L68.385,159.433L68.365,159.719L68.133,159.483L68.026,159.225L67.583,158.454L67.538,158.438L67.546,158.761L67.402,158.741L67.702,159.006L67.768,159.315L68.074,159.686L68.214,159.996L68.577,160.598L68.61,160.865L68.391,160.935L68.2,160.77L67.963,160.407L68.034,160.685L67.853,160.613L67.544,160.814Z" + }, + { + "fill": "rgb(168, 221, 183)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.077; geo: [object Object]; name: Alaska", + "shape": "M7.208,172.472L6.987,171.876L6.674,171.551L6.701,171.463L7.065,171.8L7.304,172.409ZM13.561,173.982L13.569,173.658L13.763,173.703L13.721,173.904ZM13.865,173.986L13.799,173.825L13.929,173.737ZM14.185,173.908L14.026,173.744L14.196,173.748ZM11.312,173.492L11.102,173.228L11.356,173.195L11.099,172.734L11.178,172.674L11.511,172.769L11.507,172.929L11.841,173.14L11.597,173.121ZM12.369,173.603L12.137,173.459L11.697,173.347L12.33,173.405L12.458,173.36L12.556,173.121L12.697,173.16L12.446,173.639ZM6.725,170.86L6.726,170.662L6.887,170.815ZM12.64,173.999L12.636,173.823L12.846,173.752L12.856,173.537L13.063,173.627L13.168,173.256L13.484,173.302L13.266,173.619L13.504,173.651L13.479,173.914L13.351,173.835L13.222,173.963L12.829,173.953L12.893,173.76ZM8.188,171.56L8.059,171.381L8.116,171.247L8.371,171.245L8.487,171.426ZM14.134,173.59L14.009,173.316L14.264,173.295ZM5.075,170.306L4.995,170.095L5.305,170.021L5.453,170.072L5.695,169.832L5.822,169.917L5.548,170.116L5.478,170.269L5.306,170.143ZM17.731,174.618L17.501,174.425L17.279,174.437L17.043,174.181L17.264,174.187L17.972,174.539L18.218,174.553L18.527,174.682L18.246,174.676L17.783,174.572ZM19.21,174.508L19.1,174.457L19.216,174.262L19.422,174.217L19.586,174.415ZM15.503,173.971L15.469,173.891L15.861,173.847L16.001,173.938L16.399,173.923L16.879,173.75L16.731,173.599L16.826,173.471L17.091,173.452L17.244,173.796L17.085,173.925L16.926,173.858L16.992,174.135L16.548,174.055L16.469,174.185L16.266,174.051L16.139,174.121L15.636,173.934ZM0.869,166.844L0.863,166.746L0.55,166.543L1.077,166.54L0.967,166.892ZM21.821,174.509L21.844,174.278L22.126,174.208L22.105,174.435ZM23.437,174.349L23.277,174.183L23.102,174.231L23.105,174.07L23.513,174.097ZM0.359,165.533L0.25,165.294L0.317,165.161L0.137,165.097L0.215,164.976L0,164.859L0.322,164.823L0.669,165.101L0.885,165.161L0.882,165.371L1.052,165.442L0.935,165.65L0.746,165.624L0.642,165.461ZM24.339,174.42L24.92,173.939L24.922,173.765L25.243,173.562L25.587,173.67L25.492,173.49L25.569,173.301L25.872,173.097L26.199,173.077L26.48,173.253L26.343,173.537L25.686,173.737L25.329,174.108L24.904,174.283ZM28.723,173.248L28.621,173.034L28.914,172.927L28.886,173.11ZM26.524,173.926L26.343,173.708L26.546,173.576L26.683,173.634L26.87,173.503L27.064,173.632L27.142,173.476L27.461,173.468L27.377,173.226L27.607,173.225L27.574,173.03L28.051,173.064L27.656,172.923L27.495,172.715L27.642,172.512L27.924,172.417L28.219,172.407L28.309,172.566L28.219,172.85L28.749,172.592L28.835,172.73L28.202,173.125L28.595,173.037L28.622,173.274L28.292,173.296L28.007,173.637L27.842,173.537L27.506,173.604ZM30.463,172.696L30.238,172.602L30.631,172.557ZM29.308,172.571L29.093,172.508L29.033,172.312L29.255,172.116L29.554,172.349L29.61,172.484ZM29.771,172.483L29.68,172.092L29.96,172.06L29.849,172.237L30.018,172.274ZM33.865,172.488L33.588,172.259L33.66,172.17L33.901,172.29ZM74.081,167.735L73.738,167.425L74.01,167.461ZM34.409,171.47L34.277,171.318L34.441,171.103L34.554,171.17ZM75.662,166.938L75.407,166.799L75.671,166.574L75.8,166.777ZM31.122,172.033L30.865,171.928L30.819,171.49L31.141,171.393L31.418,170.93L31.611,170.825L31.831,170.926L32.367,170.688L32.854,170.725L33.036,171.472L33.227,171.439L33.273,171.639L32.875,171.532L32.87,171.674L32.632,171.75L32.352,171.642L31.965,171.621L31.6,171.774L31.452,171.989ZM38.285,171.606L38.386,171.371L38.461,171.527ZM35.242,171.036L35.067,170.757L35.401,170.884ZM73.762,167.251L73.575,167.223L73.618,167.062L73.458,166.946L73.512,166.819L73.814,167.101ZM38.058,171.36L38.167,171.221L38.16,170.957L38.265,171.137ZM74.023,167.962L73.872,167.956L73.261,167.524L73.074,167.198L72.995,166.877L73.097,166.801L73.494,167.286L73.548,167.451L73.861,167.611ZM75.233,166.742L75.143,166.675L75.199,166.369L75.03,166.12L75.438,166.234L75.507,166.531ZM37.226,171.694L37.486,171.198L37.52,170.929L37.726,171.064L37.589,171.291L37.299,171.538ZM72.854,167.019L72.715,167.04L72.642,166.781L72.763,166.704L72.949,166.844ZM37.166,170.793L36.93,170.594L37.179,170.514ZM36.491,171.021L36.515,170.503L36.68,170.352L36.788,170.428L36.991,170.909L36.887,171.032L36.596,170.851ZM74.938,166.512L74.789,166.407L74.58,165.905L74.907,166.043ZM72.477,167.054L72.372,166.959L72.363,166.646L72.573,166.69L72.462,166.817ZM37.444,170.505L37.221,170.325L37.474,170.335ZM72.448,166.599L72.328,166.584L72.392,166.373L72.569,166.506ZM72.086,166.688L72.161,166.467L72.312,166.375L72.272,166.627ZM72.656,166.481L72.479,166.333L72.602,166.203ZM72.272,165.998L71.997,165.868L72.141,165.695L72.466,165.749ZM43.521,170.008L43.326,169.856L43.586,169.674ZM72.554,165.713L72.404,165.617L72.384,165.416L72.528,165.494ZM71.232,166.005L71.174,165.767L71.372,165.735ZM75.569,166.131L75.372,166.022L75.191,166.055L75.296,165.636L75.237,165.597L75.059,166.057L74.582,165.838L74.721,165.411L74.581,165.384L74.436,164.925L74.644,164.862L74.53,164.736L74.9,164.424L75.245,164.66L75.563,165.054L75.701,165.915ZM71.882,165.613L71.723,165.531L71.837,165.112L72.059,164.912L72.239,164.888L72.335,165.188L72.224,165.18ZM73.587,165.027L73.345,164.738L73.092,164.839L72.901,164.502L73.031,164.404L73.033,164.174L73.255,164.161L73.267,164.403L73.5,164.362L73.75,164.499L73.655,164.672L73.826,164.838ZM72.792,165.04L72.79,165.034L72.848,164.986L73.227,165.127L73.531,165.363L73.588,165.637L73.772,165.62L73.928,165.828L74.187,165.954L73.71,165.866L73.534,165.761L73.634,166.031L73.81,165.94L74.232,166.16L74.387,166.361L74.22,166.541L74.44,166.514L74.475,166.305L74.605,166.536L74.545,166.999L74.705,166.855L74.831,167.133L74.905,167.586L74.533,167.66L74.479,167.392L74.073,167.113L74.103,167.279L73.839,166.781L73.722,166.886L73.317,166.703L72.924,166.796L72.899,166.564L73.187,166.567L73.089,166.343L72.917,166.37L72.898,165.973L72.674,166.161L72.502,166.11L72.495,165.901L72.667,165.571L72.49,165.453L72.269,164.876L71.856,164.937L71.693,164.734L71.683,164.549L71.92,164.555L72.211,164.438L72.534,164.72L72.597,165.051ZM72.699,164.533L72.381,164.387L72.439,164.071L72.7,163.972L72.896,164.073L72.929,164.351ZM73.583,164.359L73.287,164.214L73.107,163.753L73.256,163.772L73.517,163.99L73.655,163.918L73.898,164.208L73.77,164.454ZM45.565,168.253L45.542,168.135L45.783,168.09ZM41.497,168.094L41.439,167.948L41.656,167.967ZM44.643,168.468L44.735,168.179L44.931,168.025L45.022,168.214ZM45.528,168.049L45.421,168.226L45.185,168.22L45.343,167.978ZM25.67,165.804L25.49,165.559L25.853,165.696ZM72.925,163.531L72.795,163.376L73.04,163.351ZM72.576,163.923L72.402,163.944L72.354,163.634L72.152,163.3L72.347,163.258L72.849,163.61ZM71.103,163.771L71.031,163.648L71.25,163.653L71.291,164.075L71.234,164.314L71.424,164.687L71.372,164.848L71.445,165.272L71.385,165.316L71.167,165.024L71.296,165.553L71.127,165.438L70.855,164.821L70.918,164.565L71.153,164.76L70.983,164.429L70.669,164.355L70.694,164.247L70.458,164.026L70.358,163.778L70.54,163.491L70.842,163.567ZM71.316,163.755L71.051,163.419L70.687,163.208L70.836,162.993L71.484,163.01L71.847,162.897L72.052,163.024L72.307,163.594L72.268,163.757L71.663,163.359L71.955,163.737L72.129,163.763L72.22,163.968L72.129,164.186L71.802,164.154L71.845,164.26L71.583,164.385ZM46.514,167.086L46.407,166.815L46.628,166.571L47.067,166.699L46.667,166.844ZM25.105,164.277L25.002,164.053L25.411,164.032ZM68.541,163.942L68.445,163.718L68.54,163.498L68.407,163.516L68.288,163.158L68.481,163.141L68.755,163.487L68.763,163.818ZM69.656,164.245L69.462,164.32L69.445,164.112L69.197,164.168L69.109,163.894L69.209,163.645L68.985,163.546L68.931,163.194L68.729,163.281L68.463,163.027L68.717,162.991L68.534,162.913L68.635,162.524L68.805,162.676L68.961,162.597L69.268,162.728L69.456,162.645L69.573,162.88L69.42,162.828L69.654,163.152L70.177,164.102L70.458,165.183L70.516,165.378L70.283,165.268L69.578,164.404ZM47.667,164.962L47.464,164.879L47.577,164.748ZM46.616,165.184L46.238,164.926L46.281,164.765L46.514,164.936ZM45.455,167.675L45.543,167.433L45.818,167.156L45.672,167.171L45.772,166.792L45.53,167.138L45.447,167.077L45.53,166.784L45.339,166.689L45.033,166.772L45.141,166.954L45.247,166.81L45.489,166.77L45.474,167.171L45.3,167.22L44.962,167.085L44.956,166.634L44.849,166.434L44.694,166.413L44.624,166.242L44.84,165.864L45.181,165.559L45.621,165.548L45.644,165.774L45.903,166.316L45.856,165.808L45.964,165.772L45.779,165.587L46.017,165.482L45.756,165.401L45.707,165.154L45.983,164.983L46.163,165.103L46.187,165.366L46.279,165.085L46.616,165.197L46.582,164.959L46.825,165.138L46.535,164.807L46.95,164.816L47.121,164.902L46.999,165.103L47.21,165.128L47.326,164.889L47.542,164.946L47.703,165.13L47.524,165.353L47.553,165.637L47.944,165.584L47.717,166.052L47.531,166.052L47.206,165.863L47.031,165.913L47.374,166.105L47.266,166.403L47.126,166.428L46.878,166.259L46.963,166.469L46.6,166.531L46.32,166.803L46.165,166.847L46.088,167.028L46.212,167.079L45.759,167.612ZM67.232,162.207L67.057,162.091L66.989,161.666L67.268,161.795ZM46.927,164.748L46.577,164.591L46.35,164.572L46.539,164.368L46.754,164.498ZM68.03,161.496L67.948,161.664L68.11,161.663L68.304,161.178L68.401,161.211L68.888,161.246L68.995,161.39L68.955,161.614L68.643,161.55L69.071,161.788L68.749,161.948L68.513,161.839L67.806,161.671L68.012,161.809L68.268,161.829L68.794,162.118L68.908,161.947L69.113,161.883L69.321,162.221L69.388,162.528L69.119,162.606L68.34,162.261L68.016,162.186L68.468,162.482L68.566,162.744L68.435,163.043L67.72,162.566L67.59,162.294L67.443,162.286L67.366,162.206L67.314,162.221L67.285,162.231L67.267,161.808L67.756,162.089L67.762,162.076L67.653,162.037L67.076,161.581L67.214,161.293L67.307,161.432L67.379,161.243L67.592,161.217L67.744,160.987L68.047,161.084L68.167,161.33ZM69.593,160.679L69.226,160.702L69.055,160.547L69.193,160.425ZM69.075,160.755L69.127,160.897L69.269,160.771L69.577,160.839L69.585,160.834L69.747,160.712L69.709,160.814L70.316,161.405L70.417,161.683L70.316,161.691L69.89,161.085L69.616,160.904L69.807,161.165L69.678,161.137L70.119,161.662L70.421,161.861L70.526,162.122L70.282,162.158L70.672,162.392L70.575,162.568L70.279,162.44L70.432,162.844L70.139,163.322L69.992,163.373L69.827,162.937L69.927,162.732L69.788,162.569L69.951,162.562L69.738,162.405L69.385,161.9L69.347,161.648L69.065,161.17L69.098,161.065L69.056,160.846L69.058,160.85L69.068,161.073L68.759,160.731L68.66,160.424ZM47.698,163.699L47.844,163.894L48.127,163.909L48.104,164.186L48.002,164.316L47.69,164.106L47.76,164.391L47.401,164.426L47.137,164.547L47.14,164.714L46.84,164.599L46.583,164.327L46.653,164.198L47.049,164.329L46.735,164.1L46.8,164.005L47.128,164.05L46.995,163.76L47.273,163.564L47.489,163.61L47.62,163.956ZM47.273,163.356L47.646,163.199L47.488,163.586L47.307,163.53ZM37.008,162.966L37.068,162.615L37.525,162.432L37.246,162.923ZM46.205,161.603L46.203,161.443L46.418,161.51ZM49.54,161.585L49.568,161.28L49.663,161.391ZM56.651,159.7L56.825,159.341L57.034,159.174ZM52.603,159.836L52.755,159.52L52.754,159.742ZM52.564,159.593L52.449,159.673L52.635,159.307L52.739,159.442ZM52.319,159.682L52.275,159.507L52.535,159.27L52.425,159.646ZM52.837,160.224L52.807,159.991L53.278,159.397L53.532,158.85L53.789,158.824L53.739,159.027L53.531,159.242L53.243,159.77L53.317,159.92ZM31.343,159.276L31.112,158.973L30.893,158.95L30.524,158.533L30.39,158.518L30.095,157.909L30.506,157.942L30.776,158.078L30.835,157.929L31.277,157.724L31.381,157.822L31.69,157.794L31.709,157.966L31.95,157.965L32.153,158.126L32.051,158.414L32.11,159.043L31.591,159.047ZM54.166,158.979L54.075,158.882L54.305,158.656L54.038,158.735L54.13,158.393L54.376,158.364L54.435,158.517L54.752,158.548L54.513,158.68ZM47.861,159.169L48.019,158.752L48.12,158.819ZM52.684,159.07L52.846,158.476L52.995,158.647L52.885,159.293ZM24.697,156.405L24.378,156.266L24.095,155.785L23.983,155.711L24.166,155.496L24.172,155.727L24.309,155.965L24.607,156.144ZM54.582,158.417L54.486,158.272L55.025,158.02L55.014,158.127ZM52.578,158.139L52.457,157.986L52.668,158.039ZM52.309,158.23L52.233,157.93L52.356,157.962ZM33.232,158.311L32.996,158.157L32.843,157.913L33.07,157.69L32.801,157.745L32.601,157.685L33.145,157.263L33.081,157.1L33.314,156.947L33.58,156.914L33.493,157.063L33.963,157.238L33.987,157.51L33.576,157.763L33.667,157.903L33.467,157.972L33.493,158.128ZM52.432,157.851L52.316,157.842L52.357,157.514L52.562,157.74ZM34.066,152.913L34.042,152.489L34.423,152.586ZM35.013,153.321L34.839,152.867L34.365,152.562L34.077,152.438L34.311,151.985L34.695,152.046L34.875,152.326L34.961,152.678L34.942,152.985ZM34.898,152.358L34.673,152.014L34.456,151.876L34.489,151.715L34.767,151.534L35.08,151.521L35.402,151.694L35.578,151.932L35.281,152.121L35.114,152.389ZM36.714,151.094L36.581,150.987L36.903,150.884L36.905,151.074ZM29.125,151.127L28.962,150.584L28.617,150.398L28.695,150.211L28.406,149.844L28.162,149.629L27.742,149.675L27.498,149.816L27.222,149.591L27.183,149.295L27.4,148.943L27.48,148.65L27.615,149.149L27.877,149.168L28.113,149.356L28.695,149.178L28.883,149.256L29.034,149.469L29.019,149.796L29.386,150.004L29.441,150.178L29.994,150.349L30.296,150.535L30.05,150.833L29.603,150.644L29.266,150.879ZM48.345,135.536L48.216,135.37L48.444,135.35ZM67.55,160.543L67.257,160.061L67.068,159.885L67.401,159.624L67.149,159.625L67.096,159.791L66.932,159.473L67.028,159.984L66.923,160.079L66.584,159.96L66.452,159.673L66.385,159.889L66.09,159.808L65.933,159.981L66.267,159.953L66.61,160.056L66.549,160.133L67.065,160.384L67.348,160.749L67.346,160.958L67.036,161.16L66.744,161.079L66.839,161.28L66.716,161.434L66.388,161.216L66.124,161.163L65.413,160.845L64.901,160.485L64.811,160.268L64.449,160.026L64.054,159.951L64.077,159.751L63.841,159.875L62.869,159.493L62.804,159.515L62.267,159.293L62.434,159.144L62.59,158.886L62.366,158.417L62.525,158.201L62.414,158.033L62.218,158.628L61.674,159.056L61.016,159.095L60.274,158.888L60.443,158.587L60.215,158.224L60.08,158.361L60.301,158.537L60.074,158.734L58.878,158.654L58.502,158.713L57.675,158.977L57.411,159.113L56.931,158.823L56.948,158.736L56.531,158.8L56.386,158.61L56.099,158.595L56.21,158.098L56.156,157.829L55.958,158.056L55.857,158.326L55.632,158.555L55.43,158.39L55.134,158.294L54.894,158.369L55.223,157.843L54.777,157.996L54.858,157.77L54.571,158.002L54.478,157.952L54.687,157.73L54.385,157.685L54.28,157.887L54.009,157.905L54.53,157.48L54.449,157.388L54.335,157.574L54.113,157.617L53.872,157.411L53.961,156.992L54.384,156.936L54.285,156.825L53.926,156.935L53.688,157.305L53.437,157.211L53.3,157.269L53.164,157.546L52.994,157.534L52.983,157.125L52.903,157.143L52.745,157.715L52.364,157.504L52.479,157.146L52.646,156.883L52.677,156.659L52.408,157.126L52.341,157.335L52.2,157.082L51.981,157.378L52.218,157.189L52.108,157.48L52.099,157.759L51.901,157.841L51.732,158.043L51.744,158.184L51.9,157.931L52.025,157.894L52.053,158.134L52.157,157.945L52.292,158.268L52.144,158.475L51.967,158.386L51.776,158.58L51.775,158.676L52.001,158.451L52.222,158.562L52.415,158.299L52.588,158.706L52.296,158.885L52.267,159.129L52.467,159.212L52.257,159.445L52.218,159.335L52.132,159.863L51.986,159.68L51.868,159.938L51.336,159.867L51.431,159.683L51.274,159.715L51.165,160.009L51.058,159.631L50.942,159.536L50.985,159.858L50.747,160.076L50.625,159.953L50.625,160.543L50.344,160.379L50.417,160.674L50.248,160.688L50.266,160.859L49.899,161.158L50.015,160.713L49.814,161.168L49.647,160.989L49.669,161.252L49.507,161.263L49.21,161.785L49.159,161.52L49.089,161.772L48.747,161.714L48.325,161.938L48.047,161.724L48.146,161.318L48.427,161.164L48.654,161.2L48.66,161.034L48.97,160.899L48.936,160.794L49.241,160.41L49.08,160.414L48.58,160.809L48.187,160.62L48.14,160.484L48.314,159.876L48.628,159.442L48.656,159.089L48.75,159.034L48.775,158.649L48.59,158.244L48.985,158.072L49.369,157.699L49.706,157.45L49.855,157.631L50.105,157.719L50.427,157.57L50.576,157.663L51.028,157.696L51.274,157.808L51.081,157.577L50.897,157.63L50.456,157.45L50.06,157.152L50.206,157.02L50.43,156.598L50.942,156.327L50.781,156.262L50.489,156.34L50.248,156.588L50.145,156.949L49.623,156.964L49.374,156.821L49.324,156.963L49.04,157.115L48.859,157.433L48.486,157.566L48.14,157.926L48.257,158.23L48.087,158.185L47.807,158.574L47.573,158.784L47.671,159.046L47.302,159.459L46.864,159.415L47.167,159.593L47.298,159.862L47.15,160.188L47.029,160.276L46.545,160.317L46.479,160.443L46.778,160.385L46.745,160.721L46.56,160.859L46.38,160.72L46.268,160.48L46.267,160.811L46.12,161.058L45.873,161.103L45.955,161.325L45.506,161.548L45.415,162.068L45.436,162.321L45.557,162.188L45.993,162.184L46.176,162.395L46.437,162.54L46.469,162.697L46.534,162.694L46.438,162.696L46.307,163.041L46.037,163.268L45.757,163.286L45.679,163.565L45.525,163.57L45.644,163.792L45.198,164.049L45.45,163.974L45.449,164.169L45.164,164.484L44.876,164.422L44.927,164.65L44.362,164.644L44.263,165.02L44.071,164.988L44.026,165.267L43.894,165.361L43.606,165.189L43.635,165.487L43.494,165.53L43.452,165.746L43.066,165.701L43.079,165.994L42.942,165.914L42.68,166.033L42.396,166.347L42.64,166.258L42.636,166.639L42.297,166.899L42.378,167.038L42.128,167.004L42.045,167.214L41.94,167.098L41.674,167.401L41.554,167.306L41.521,167.517L41.306,167.284L41.178,167.364L41.072,167.71L41.167,167.833L40.888,167.856L40.818,167.695L40.597,167.757L40.303,168.01L40.664,167.951L40.638,168.156L40.288,168.023L40.288,168.17L40.032,168.099L39.593,168.584L40.008,168.471L40.166,168.559L39.932,168.694L39.816,169.242L39.715,169.268L39.624,169.018L39.695,168.803L39.516,168.952L39.552,169.24L39.259,169.176L39.051,169.429L38.968,169.342L38.597,169.424L38.505,169.624L38.469,169.369L38.337,169.414L38.386,169.686L38.272,169.962L38.082,169.896L38.236,169.548L37.976,169.423L37.765,169.503L37.637,169.763L37.166,169.946L36.952,170.226L36.877,169.97L36.777,170.244L36.619,170.248L36.528,170.061L36.335,170.246L35.996,170.407L35.64,170.353L35.703,170.059L35.892,169.868L35.83,169.737L35.6,169.74L35.398,169.992L35.415,170.22L35.108,170.611L34.907,170.558L34.96,170.879L34.821,170.941L34.687,170.733L34.65,170.949L34.345,170.976L34.216,170.765L34.268,170.443L34.002,170.4L34.119,170.617L34.01,171.004L33.82,171.148L33.639,171.077L33.557,170.75L33.324,170.607L33.26,170.818L33.495,171.063L33.013,171.326L33.143,170.955L33.156,170.693L33.33,170.529L33.783,170.55L33.787,170.346L33.966,170.306L34.125,170.128L34.308,170.166L34.28,169.934L34.744,169.456L35.382,169.072L36.041,168.956L36.356,169.062L36.629,168.951L36.635,169.113L36.402,169.171L36.675,169.608L36.712,169.248L37.081,169.309L37.141,169.515L37.382,169.581L37.44,169.418L37.083,169.14L37.032,168.985L37.396,168.342L38.108,167.811L38.779,167.57L39.369,167.121L39.367,167.142L39.355,167.302L39.702,167.43L39.646,166.908L40.173,166.214L40.441,166.076L40.68,165.801L40.958,165.605L41.153,165.853L41.119,165.481L41,165.501L41.001,165.24L41.2,164.31L41.428,164.202L41.264,163.938L41.373,163.47L41.651,163.18L41.93,162.929L42.021,162.54L41.977,162.38L41.806,162.597L41.324,162.823L40.586,163.108L40.382,163.008L40.35,162.828L40.097,162.633L40.175,162.516L40.217,162.091L40.054,162.369L39.872,162.423L39.817,162.765L39.479,162.502L39.681,162.706L39.818,163.176L39.889,163.355L39.756,163.542L39.447,163.496L39.091,162.653L38.799,162.439L38.888,162.321L38.691,162.232L38.615,162.505L38.474,162.565L38.319,162.295L38.088,162.259L38.105,162.03L37.969,161.859L37.365,162.244L37.125,162.285L37.077,162.322L36.735,162.49L36.653,162.668L36.178,162.863L36.247,162.717L35.823,162.656L35.706,162.573L36.122,162.548L36.257,162.26L36.26,161.904L36.579,161.586L36.273,161.53L36.155,161.608L36.047,161.249L36.18,160.896L36.497,160.651L36.352,160.318L36.281,159.917L36.155,159.694L36.048,159.191L36.125,159.047L35.85,158.658L36.031,158.52L36.205,158.065L36.166,157.979L35.932,158.411L35.719,158.604L35.717,158.845L35.829,158.922L35.709,159.367L35.407,159.342L35.383,159.459L34.841,159.629L34.419,159.662L33.99,159.592L33.804,159.496L33.716,159.205L33.833,159.164L33.564,158.877L33.32,158.314L33.483,157.98L33.664,157.925L33.581,157.76L33.771,157.749L33.912,157.569L34.081,157.552L34.347,157.303L34.493,157.462L34.407,157.706L34.526,157.834L34.898,157.53L34.772,157.311L34.363,157.143L34.522,157.073L34.673,157.169L34.824,157.096L34.552,156.983L34.344,157.131L34.354,156.686L34.133,156.886L34.193,157.063L33.673,157.055L33.572,156.834L33.373,156.888L33.343,156.768L33.028,156.774L32.983,156.623L33.27,156.565L33.501,156.408L33.252,156.372L33.212,156.49L32.914,156.162L32.838,156.36L32.634,156.302L32.595,155.964L32.665,155.847L32.387,155.709L32.392,155.473L32.585,155.356L32.431,155.151L32.232,155.17L32.216,154.925L32.619,154.891L32.396,154.74L32.335,154.541L32.887,154.541L32.79,154.276L32.931,153.84L33.516,153.214L33.765,153.025L33.98,153.079L34.398,152.695L34.709,152.801L35.028,153.406L34.961,152.988L35.009,152.776L34.864,152.524L34.895,152.376L35.225,152.344L35.291,152.133L35.595,151.95L35.749,152.161L36.073,152.132L36.331,151.839L36.615,151.708L36.909,151.315L36.979,151.118L37.276,151.287L37.114,151.399L37.579,151.374L37.774,151.422L38.179,151.349L38.635,150.766L38.64,150.571L38.526,150.093L38.535,149.653L38.282,149.275L38.04,149.212L38.209,148.912L38.49,149.041L38.813,148.776L38.843,148.549L38.751,148.29L38.562,148.134L38.667,148.024L38.507,148.014L38.28,148.342L38.091,148.409L37.963,148.302L37.727,148.456L37.449,148.478L37.375,148.609L37.04,148.78L36.889,149.118L36.724,149.226L36.72,148.82L36.424,148.42L36.243,148.546L36.446,148.763L36.434,148.987L35.992,148.559L35.232,148.461L34.899,148.568L34.885,148.496L34.527,148.637L34.233,148.459L33.418,148.103L33.236,147.895L33.227,147.539L33.357,147.352L33.107,147.065L33.026,146.737L33.287,146.77L33.546,146.488L33.842,146.611L33.993,147.009L34.145,147.109L34.407,146.952L34.292,146.826L34.011,146.752L33.939,146.831L33.841,146.561L33.603,146.375L33.132,146.14L32.61,145.973L32.35,145.674L32.051,145.434L32.381,145.189L32.578,145.228L32.619,145.032L32.967,144.848L33.036,145.01L33.359,144.857L33.619,144.564L34.071,144.417L34.219,144.595L34.615,144.654L34.737,144.574L34.422,144.336L34.571,144.159L34.899,144.017L35.318,144.057L35.64,143.802L35.929,143.763L36.409,143.808L36.514,143.923L36.346,144.298L36.355,144.554L36.241,144.676L36.355,145.047L36.597,145.043L36.974,145.144L37.311,145.132L37.65,145.316L37.886,145.225L38.068,145.35L38.098,145.527L38.483,144.917L39.019,144.998L38.908,144.753L38.552,144.556L38.188,144.606L38.248,144.246L38.006,143.782L37.733,143.651L37.663,143.386L37.811,143.176L37.96,143.19L38.196,143.61L38.111,143.916L38.233,144.173L38.516,144.453L38.913,144.264L39.231,144.696L39.744,144.705L39.804,144.392L39.693,144.177L39.411,144.196L39.276,144.026L38.976,144.027L38.795,144.291L38.623,144.259L38.307,143.778L38.428,143.405L38.584,143.245L38.743,143.252L38.462,143.007L37.845,143.091L37.614,142.894L37.42,142.922L36.775,142.656L36.704,141.909L36.573,141.472L36.24,141.117L35.619,140.288L35.134,139.934L34.903,139.537L34.508,139.31L34.934,139.288L35.218,138.443L35.222,138.22L35.959,138.391L36.87,138.375L37.163,138.285L37.587,137.98L37.959,137.512L38.141,137.139L38.078,137.003L38.276,136.789L38.186,136.695L38.726,136.171L38.759,136.033L39.024,135.814L39.307,135.488L39.455,135.666L39.273,135.649L39.28,135.831L39.1,135.818L39.271,135.858L39.482,135.664L39.647,135.698L40.221,135.443L40.764,134.963L40.938,135.011L40.915,135.262L40.713,135.61L40.915,135.495L40.994,135.258L40.938,134.944L40.782,134.925L41.178,134.553L41.579,134.436L41.42,134.548L41.692,134.661L42.397,134.573L42.666,134.472L43.097,134.09L43.458,133.568L43.605,133.447L43.775,133.623L44.026,133.69L43.987,133.878L44.281,133.806L44.453,134.073L44.274,134.296L44.02,134.34L44.056,134.635L44.463,134.653L44.452,134.387L44.991,134.053L45.187,134.282L45.109,134.531L45.495,134.802L45.69,134.544L46.31,134.443L46.616,134.58L46.748,134.525L47.031,134.65L46.84,134.983L46.884,135.155L47.174,135.212L46.745,135.308L47.468,135.27L47.328,135.552L47.575,135.525L47.87,135.693L47.931,135.511L48.301,135.46L48.287,135.716L48.754,135.486L48.93,135.292L49.494,135.307L49.765,135.499L50.055,135.542L50.083,135.665L50.281,135.571L50.646,135.811L51.152,135.943L51.668,135.806L52.113,135.882L52.228,135.789L52.757,136.126L53.275,136.103L53.364,135.976L54.359,135.601L54.758,135.7L55.114,135.897L55.249,136.067L55.719,136.161L56.042,136.426L56.154,136.286L56.337,136.341L56.855,138.951L58.06,145.031L59.862,154.123L60.554,157.615L60.593,157.812L61.181,157.901L61.208,157.683L61.816,157.859L62.065,157.435L62.753,157.24L62.749,157.88L62.966,158.056L63.41,158.167L63.575,158.462L65.043,159.377L65.314,159.937L65.33,160.124L65.996,159.335L66.275,159.246L66.325,159.003L66.211,158.531L66.414,158.479L66.425,158.244L66.272,158.187L66.692,157.92L66.915,157.694L67.142,157.459L67.489,157.61L67.809,157.841L67.814,158.175L67.945,158.335L68.075,158.458L68.393,158.441L68.452,158.564L68.72,158.633L69.002,158.954L69.162,159.164L69.74,159.309L69.981,159.523L70.491,159.81L70.421,159.938L70.931,160.356L71.165,160.657L71.516,160.94L72.146,161.583L72.484,161.835L72.73,162.094L72.678,162.41L73.102,162.38L73.133,162.796L73.494,162.84L73.697,163.285L73.997,163.148L74.787,163.387L75.167,163.342L75.44,163.492L75.648,163.475L75.779,163.681L76.036,163.699L76.195,163.573L76.413,163.78L76.497,164.001L76.423,164.383L76.603,164.766L77.047,165.363L76.965,165.619L76.928,166.181L76.703,166.719L76.527,166.847L76.378,166.707L76.387,166.901L76.235,166.867L76.12,166.594L75.724,166.065L75.898,165.712L75.541,164.84L74.915,164.329L74.739,164.508L74.672,164.417L74.351,164.854L74.173,164.931L74.381,165.012L74.372,165.785L74.034,165.682L73.827,165.382L73.874,165.358L73.936,164.795L74.028,164.73L73.865,164.284L74.083,164.128L73.845,164.126L73.675,163.906L73.537,163.918L73.106,163.648L73.133,163.308L72.889,163.381L72.79,163.232L72.38,163.138L72.049,162.866L72.244,162.771L71.685,162.738L71.632,162.547L71.521,162.751L71.227,162.672L71.186,162.391L71.586,162.228L71.221,162.262L71.226,162.102L71.001,162.006L71.022,161.715L70.877,161.826L70.723,161.728L70.762,161.462L71.35,161.633L70.946,161.403L70.734,161.375L70.658,161.105L70.68,161.028L70.7,160.987L70.621,161.224L70.573,161.355L70.534,161.351L70.279,161.061L69.921,160.81L69.784,160.41L69.878,160.281L69.77,160.112L69.684,160.371L69.775,160.487L69.666,160.628L69.206,160.393L68.945,160.427L68.8,160.173L68.5,159.851L68.294,159.153L68.281,159.156L68.385,159.433L68.365,159.719L68.133,159.483L68.026,159.225L67.583,158.454L67.538,158.438L67.546,158.761L67.402,158.741L67.702,159.006L67.768,159.315L68.074,159.686L68.214,159.996L68.577,160.598L68.61,160.865L68.391,160.935L68.2,160.77L67.963,160.407L68.034,160.685L67.853,160.613L67.544,160.814Z" + }, + { + "fill": "rgb(171, 222, 183)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.075; geo: [object Object]; name: Alaska", + "shape": "M7.208,172.472L6.987,171.876L6.674,171.551L6.701,171.463L7.065,171.8L7.304,172.409ZM13.561,173.982L13.569,173.658L13.763,173.703L13.721,173.904ZM13.865,173.986L13.799,173.825L13.929,173.737ZM14.185,173.908L14.026,173.744L14.196,173.748ZM11.312,173.492L11.102,173.228L11.356,173.195L11.099,172.734L11.178,172.674L11.511,172.769L11.507,172.929L11.841,173.14L11.597,173.121ZM12.369,173.603L12.137,173.459L11.697,173.347L12.33,173.405L12.458,173.36L12.556,173.121L12.697,173.16L12.446,173.639ZM6.725,170.86L6.726,170.662L6.887,170.815ZM12.64,173.999L12.636,173.823L12.846,173.752L12.856,173.537L13.063,173.627L13.168,173.256L13.484,173.302L13.266,173.619L13.504,173.651L13.479,173.914L13.351,173.835L13.222,173.963L12.829,173.953L12.893,173.76ZM8.188,171.56L8.059,171.381L8.116,171.247L8.371,171.245L8.487,171.426ZM14.134,173.59L14.009,173.316L14.264,173.295ZM5.075,170.306L4.995,170.095L5.305,170.021L5.453,170.072L5.695,169.832L5.822,169.917L5.548,170.116L5.478,170.269L5.306,170.143ZM17.731,174.618L17.501,174.425L17.279,174.437L17.043,174.181L17.264,174.187L17.972,174.539L18.218,174.553L18.527,174.682L18.246,174.676L17.783,174.572ZM19.21,174.508L19.1,174.457L19.216,174.262L19.422,174.217L19.586,174.415ZM15.503,173.971L15.469,173.891L15.861,173.847L16.001,173.938L16.399,173.923L16.879,173.75L16.731,173.599L16.826,173.471L17.091,173.452L17.244,173.796L17.085,173.925L16.926,173.858L16.992,174.135L16.548,174.055L16.469,174.185L16.266,174.051L16.139,174.121L15.636,173.934ZM0.869,166.844L0.863,166.746L0.55,166.543L1.077,166.54L0.967,166.892ZM21.821,174.509L21.844,174.278L22.126,174.208L22.105,174.435ZM23.437,174.349L23.277,174.183L23.102,174.231L23.105,174.07L23.513,174.097ZM0.359,165.533L0.25,165.294L0.317,165.161L0.137,165.097L0.215,164.976L0,164.859L0.322,164.823L0.669,165.101L0.885,165.161L0.882,165.371L1.052,165.442L0.935,165.65L0.746,165.624L0.642,165.461ZM24.339,174.42L24.92,173.939L24.922,173.765L25.243,173.562L25.587,173.67L25.492,173.49L25.569,173.301L25.872,173.097L26.199,173.077L26.48,173.253L26.343,173.537L25.686,173.737L25.329,174.108L24.904,174.283ZM28.723,173.248L28.621,173.034L28.914,172.927L28.886,173.11ZM26.524,173.926L26.343,173.708L26.546,173.576L26.683,173.634L26.87,173.503L27.064,173.632L27.142,173.476L27.461,173.468L27.377,173.226L27.607,173.225L27.574,173.03L28.051,173.064L27.656,172.923L27.495,172.715L27.642,172.512L27.924,172.417L28.219,172.407L28.309,172.566L28.219,172.85L28.749,172.592L28.835,172.73L28.202,173.125L28.595,173.037L28.622,173.274L28.292,173.296L28.007,173.637L27.842,173.537L27.506,173.604ZM30.463,172.696L30.238,172.602L30.631,172.557ZM29.308,172.571L29.093,172.508L29.033,172.312L29.255,172.116L29.554,172.349L29.61,172.484ZM29.771,172.483L29.68,172.092L29.96,172.06L29.849,172.237L30.018,172.274ZM33.865,172.488L33.588,172.259L33.66,172.17L33.901,172.29ZM74.081,167.735L73.738,167.425L74.01,167.461ZM34.409,171.47L34.277,171.318L34.441,171.103L34.554,171.17ZM75.662,166.938L75.407,166.799L75.671,166.574L75.8,166.777ZM31.122,172.033L30.865,171.928L30.819,171.49L31.141,171.393L31.418,170.93L31.611,170.825L31.831,170.926L32.367,170.688L32.854,170.725L33.036,171.472L33.227,171.439L33.273,171.639L32.875,171.532L32.87,171.674L32.632,171.75L32.352,171.642L31.965,171.621L31.6,171.774L31.452,171.989ZM38.285,171.606L38.386,171.371L38.461,171.527ZM35.242,171.036L35.067,170.757L35.401,170.884ZM73.762,167.251L73.575,167.223L73.618,167.062L73.458,166.946L73.512,166.819L73.814,167.101ZM38.058,171.36L38.167,171.221L38.16,170.957L38.265,171.137ZM74.023,167.962L73.872,167.956L73.261,167.524L73.074,167.198L72.995,166.877L73.097,166.801L73.494,167.286L73.548,167.451L73.861,167.611ZM75.233,166.742L75.143,166.675L75.199,166.369L75.03,166.12L75.438,166.234L75.507,166.531ZM37.226,171.694L37.486,171.198L37.52,170.929L37.726,171.064L37.589,171.291L37.299,171.538ZM72.854,167.019L72.715,167.04L72.642,166.781L72.763,166.704L72.949,166.844ZM37.166,170.793L36.93,170.594L37.179,170.514ZM36.491,171.021L36.515,170.503L36.68,170.352L36.788,170.428L36.991,170.909L36.887,171.032L36.596,170.851ZM74.938,166.512L74.789,166.407L74.58,165.905L74.907,166.043ZM72.477,167.054L72.372,166.959L72.363,166.646L72.573,166.69L72.462,166.817ZM37.444,170.505L37.221,170.325L37.474,170.335ZM72.448,166.599L72.328,166.584L72.392,166.373L72.569,166.506ZM72.086,166.688L72.161,166.467L72.312,166.375L72.272,166.627ZM72.656,166.481L72.479,166.333L72.602,166.203ZM72.272,165.998L71.997,165.868L72.141,165.695L72.466,165.749ZM43.521,170.008L43.326,169.856L43.586,169.674ZM72.554,165.713L72.404,165.617L72.384,165.416L72.528,165.494ZM71.232,166.005L71.174,165.767L71.372,165.735ZM75.569,166.131L75.372,166.022L75.191,166.055L75.296,165.636L75.237,165.597L75.059,166.057L74.582,165.838L74.721,165.411L74.581,165.384L74.436,164.925L74.644,164.862L74.53,164.736L74.9,164.424L75.245,164.66L75.563,165.054L75.701,165.915ZM71.882,165.613L71.723,165.531L71.837,165.112L72.059,164.912L72.239,164.888L72.335,165.188L72.224,165.18ZM73.587,165.027L73.345,164.738L73.092,164.839L72.901,164.502L73.031,164.404L73.033,164.174L73.255,164.161L73.267,164.403L73.5,164.362L73.75,164.499L73.655,164.672L73.826,164.838ZM72.792,165.04L72.79,165.034L72.848,164.986L73.227,165.127L73.531,165.363L73.588,165.637L73.772,165.62L73.928,165.828L74.187,165.954L73.71,165.866L73.534,165.761L73.634,166.031L73.81,165.94L74.232,166.16L74.387,166.361L74.22,166.541L74.44,166.514L74.475,166.305L74.605,166.536L74.545,166.999L74.705,166.855L74.831,167.133L74.905,167.586L74.533,167.66L74.479,167.392L74.073,167.113L74.103,167.279L73.839,166.781L73.722,166.886L73.317,166.703L72.924,166.796L72.899,166.564L73.187,166.567L73.089,166.343L72.917,166.37L72.898,165.973L72.674,166.161L72.502,166.11L72.495,165.901L72.667,165.571L72.49,165.453L72.269,164.876L71.856,164.937L71.693,164.734L71.683,164.549L71.92,164.555L72.211,164.438L72.534,164.72L72.597,165.051ZM72.699,164.533L72.381,164.387L72.439,164.071L72.7,163.972L72.896,164.073L72.929,164.351ZM73.583,164.359L73.287,164.214L73.107,163.753L73.256,163.772L73.517,163.99L73.655,163.918L73.898,164.208L73.77,164.454ZM45.565,168.253L45.542,168.135L45.783,168.09ZM41.497,168.094L41.439,167.948L41.656,167.967ZM44.643,168.468L44.735,168.179L44.931,168.025L45.022,168.214ZM45.528,168.049L45.421,168.226L45.185,168.22L45.343,167.978ZM25.67,165.804L25.49,165.559L25.853,165.696ZM72.925,163.531L72.795,163.376L73.04,163.351ZM72.576,163.923L72.402,163.944L72.354,163.634L72.152,163.3L72.347,163.258L72.849,163.61ZM71.103,163.771L71.031,163.648L71.25,163.653L71.291,164.075L71.234,164.314L71.424,164.687L71.372,164.848L71.445,165.272L71.385,165.316L71.167,165.024L71.296,165.553L71.127,165.438L70.855,164.821L70.918,164.565L71.153,164.76L70.983,164.429L70.669,164.355L70.694,164.247L70.458,164.026L70.358,163.778L70.54,163.491L70.842,163.567ZM71.316,163.755L71.051,163.419L70.687,163.208L70.836,162.993L71.484,163.01L71.847,162.897L72.052,163.024L72.307,163.594L72.268,163.757L71.663,163.359L71.955,163.737L72.129,163.763L72.22,163.968L72.129,164.186L71.802,164.154L71.845,164.26L71.583,164.385ZM46.514,167.086L46.407,166.815L46.628,166.571L47.067,166.699L46.667,166.844ZM25.105,164.277L25.002,164.053L25.411,164.032ZM68.541,163.942L68.445,163.718L68.54,163.498L68.407,163.516L68.288,163.158L68.481,163.141L68.755,163.487L68.763,163.818ZM69.656,164.245L69.462,164.32L69.445,164.112L69.197,164.168L69.109,163.894L69.209,163.645L68.985,163.546L68.931,163.194L68.729,163.281L68.463,163.027L68.717,162.991L68.534,162.913L68.635,162.524L68.805,162.676L68.961,162.597L69.268,162.728L69.456,162.645L69.573,162.88L69.42,162.828L69.654,163.152L70.177,164.102L70.458,165.183L70.516,165.378L70.283,165.268L69.578,164.404ZM47.667,164.962L47.464,164.879L47.577,164.748ZM46.616,165.184L46.238,164.926L46.281,164.765L46.514,164.936ZM45.455,167.675L45.543,167.433L45.818,167.156L45.672,167.171L45.772,166.792L45.53,167.138L45.447,167.077L45.53,166.784L45.339,166.689L45.033,166.772L45.141,166.954L45.247,166.81L45.489,166.77L45.474,167.171L45.3,167.22L44.962,167.085L44.956,166.634L44.849,166.434L44.694,166.413L44.624,166.242L44.84,165.864L45.181,165.559L45.621,165.548L45.644,165.774L45.903,166.316L45.856,165.808L45.964,165.772L45.779,165.587L46.017,165.482L45.756,165.401L45.707,165.154L45.983,164.983L46.163,165.103L46.187,165.366L46.279,165.085L46.616,165.197L46.582,164.959L46.825,165.138L46.535,164.807L46.95,164.816L47.121,164.902L46.999,165.103L47.21,165.128L47.326,164.889L47.542,164.946L47.703,165.13L47.524,165.353L47.553,165.637L47.944,165.584L47.717,166.052L47.531,166.052L47.206,165.863L47.031,165.913L47.374,166.105L47.266,166.403L47.126,166.428L46.878,166.259L46.963,166.469L46.6,166.531L46.32,166.803L46.165,166.847L46.088,167.028L46.212,167.079L45.759,167.612ZM67.232,162.207L67.057,162.091L66.989,161.666L67.268,161.795ZM46.927,164.748L46.577,164.591L46.35,164.572L46.539,164.368L46.754,164.498ZM68.03,161.496L67.948,161.664L68.11,161.663L68.304,161.178L68.401,161.211L68.888,161.246L68.995,161.39L68.955,161.614L68.643,161.55L69.071,161.788L68.749,161.948L68.513,161.839L67.806,161.671L68.012,161.809L68.268,161.829L68.794,162.118L68.908,161.947L69.113,161.883L69.321,162.221L69.388,162.528L69.119,162.606L68.34,162.261L68.016,162.186L68.468,162.482L68.566,162.744L68.435,163.043L67.72,162.566L67.59,162.294L67.443,162.286L67.366,162.206L67.314,162.221L67.285,162.231L67.267,161.808L67.756,162.089L67.762,162.076L67.653,162.037L67.076,161.581L67.214,161.293L67.307,161.432L67.379,161.243L67.592,161.217L67.744,160.987L68.047,161.084L68.167,161.33ZM69.593,160.679L69.226,160.702L69.055,160.547L69.193,160.425ZM69.075,160.755L69.127,160.897L69.269,160.771L69.577,160.839L69.585,160.834L69.747,160.712L69.709,160.814L70.316,161.405L70.417,161.683L70.316,161.691L69.89,161.085L69.616,160.904L69.807,161.165L69.678,161.137L70.119,161.662L70.421,161.861L70.526,162.122L70.282,162.158L70.672,162.392L70.575,162.568L70.279,162.44L70.432,162.844L70.139,163.322L69.992,163.373L69.827,162.937L69.927,162.732L69.788,162.569L69.951,162.562L69.738,162.405L69.385,161.9L69.347,161.648L69.065,161.17L69.098,161.065L69.056,160.846L69.058,160.85L69.068,161.073L68.759,160.731L68.66,160.424ZM47.698,163.699L47.844,163.894L48.127,163.909L48.104,164.186L48.002,164.316L47.69,164.106L47.76,164.391L47.401,164.426L47.137,164.547L47.14,164.714L46.84,164.599L46.583,164.327L46.653,164.198L47.049,164.329L46.735,164.1L46.8,164.005L47.128,164.05L46.995,163.76L47.273,163.564L47.489,163.61L47.62,163.956ZM47.273,163.356L47.646,163.199L47.488,163.586L47.307,163.53ZM37.008,162.966L37.068,162.615L37.525,162.432L37.246,162.923ZM46.205,161.603L46.203,161.443L46.418,161.51ZM49.54,161.585L49.568,161.28L49.663,161.391ZM56.651,159.7L56.825,159.341L57.034,159.174ZM52.603,159.836L52.755,159.52L52.754,159.742ZM52.564,159.593L52.449,159.673L52.635,159.307L52.739,159.442ZM52.319,159.682L52.275,159.507L52.535,159.27L52.425,159.646ZM52.837,160.224L52.807,159.991L53.278,159.397L53.532,158.85L53.789,158.824L53.739,159.027L53.531,159.242L53.243,159.77L53.317,159.92ZM31.343,159.276L31.112,158.973L30.893,158.95L30.524,158.533L30.39,158.518L30.095,157.909L30.506,157.942L30.776,158.078L30.835,157.929L31.277,157.724L31.381,157.822L31.69,157.794L31.709,157.966L31.95,157.965L32.153,158.126L32.051,158.414L32.11,159.043L31.591,159.047ZM54.166,158.979L54.075,158.882L54.305,158.656L54.038,158.735L54.13,158.393L54.376,158.364L54.435,158.517L54.752,158.548L54.513,158.68ZM47.861,159.169L48.019,158.752L48.12,158.819ZM52.684,159.07L52.846,158.476L52.995,158.647L52.885,159.293ZM24.697,156.405L24.378,156.266L24.095,155.785L23.983,155.711L24.166,155.496L24.172,155.727L24.309,155.965L24.607,156.144ZM54.582,158.417L54.486,158.272L55.025,158.02L55.014,158.127ZM52.578,158.139L52.457,157.986L52.668,158.039ZM52.309,158.23L52.233,157.93L52.356,157.962ZM33.232,158.311L32.996,158.157L32.843,157.913L33.07,157.69L32.801,157.745L32.601,157.685L33.145,157.263L33.081,157.1L33.314,156.947L33.58,156.914L33.493,157.063L33.963,157.238L33.987,157.51L33.576,157.763L33.667,157.903L33.467,157.972L33.493,158.128ZM52.432,157.851L52.316,157.842L52.357,157.514L52.562,157.74ZM34.066,152.913L34.042,152.489L34.423,152.586ZM35.013,153.321L34.839,152.867L34.365,152.562L34.077,152.438L34.311,151.985L34.695,152.046L34.875,152.326L34.961,152.678L34.942,152.985ZM34.898,152.358L34.673,152.014L34.456,151.876L34.489,151.715L34.767,151.534L35.08,151.521L35.402,151.694L35.578,151.932L35.281,152.121L35.114,152.389ZM36.714,151.094L36.581,150.987L36.903,150.884L36.905,151.074ZM29.125,151.127L28.962,150.584L28.617,150.398L28.695,150.211L28.406,149.844L28.162,149.629L27.742,149.675L27.498,149.816L27.222,149.591L27.183,149.295L27.4,148.943L27.48,148.65L27.615,149.149L27.877,149.168L28.113,149.356L28.695,149.178L28.883,149.256L29.034,149.469L29.019,149.796L29.386,150.004L29.441,150.178L29.994,150.349L30.296,150.535L30.05,150.833L29.603,150.644L29.266,150.879ZM48.345,135.536L48.216,135.37L48.444,135.35ZM67.55,160.543L67.257,160.061L67.068,159.885L67.401,159.624L67.149,159.625L67.096,159.791L66.932,159.473L67.028,159.984L66.923,160.079L66.584,159.96L66.452,159.673L66.385,159.889L66.09,159.808L65.933,159.981L66.267,159.953L66.61,160.056L66.549,160.133L67.065,160.384L67.348,160.749L67.346,160.958L67.036,161.16L66.744,161.079L66.839,161.28L66.716,161.434L66.388,161.216L66.124,161.163L65.413,160.845L64.901,160.485L64.811,160.268L64.449,160.026L64.054,159.951L64.077,159.751L63.841,159.875L62.869,159.493L62.804,159.515L62.267,159.293L62.434,159.144L62.59,158.886L62.366,158.417L62.525,158.201L62.414,158.033L62.218,158.628L61.674,159.056L61.016,159.095L60.274,158.888L60.443,158.587L60.215,158.224L60.08,158.361L60.301,158.537L60.074,158.734L58.878,158.654L58.502,158.713L57.675,158.977L57.411,159.113L56.931,158.823L56.948,158.736L56.531,158.8L56.386,158.61L56.099,158.595L56.21,158.098L56.156,157.829L55.958,158.056L55.857,158.326L55.632,158.555L55.43,158.39L55.134,158.294L54.894,158.369L55.223,157.843L54.777,157.996L54.858,157.77L54.571,158.002L54.478,157.952L54.687,157.73L54.385,157.685L54.28,157.887L54.009,157.905L54.53,157.48L54.449,157.388L54.335,157.574L54.113,157.617L53.872,157.411L53.961,156.992L54.384,156.936L54.285,156.825L53.926,156.935L53.688,157.305L53.437,157.211L53.3,157.269L53.164,157.546L52.994,157.534L52.983,157.125L52.903,157.143L52.745,157.715L52.364,157.504L52.479,157.146L52.646,156.883L52.677,156.659L52.408,157.126L52.341,157.335L52.2,157.082L51.981,157.378L52.218,157.189L52.108,157.48L52.099,157.759L51.901,157.841L51.732,158.043L51.744,158.184L51.9,157.931L52.025,157.894L52.053,158.134L52.157,157.945L52.292,158.268L52.144,158.475L51.967,158.386L51.776,158.58L51.775,158.676L52.001,158.451L52.222,158.562L52.415,158.299L52.588,158.706L52.296,158.885L52.267,159.129L52.467,159.212L52.257,159.445L52.218,159.335L52.132,159.863L51.986,159.68L51.868,159.938L51.336,159.867L51.431,159.683L51.274,159.715L51.165,160.009L51.058,159.631L50.942,159.536L50.985,159.858L50.747,160.076L50.625,159.953L50.625,160.543L50.344,160.379L50.417,160.674L50.248,160.688L50.266,160.859L49.899,161.158L50.015,160.713L49.814,161.168L49.647,160.989L49.669,161.252L49.507,161.263L49.21,161.785L49.159,161.52L49.089,161.772L48.747,161.714L48.325,161.938L48.047,161.724L48.146,161.318L48.427,161.164L48.654,161.2L48.66,161.034L48.97,160.899L48.936,160.794L49.241,160.41L49.08,160.414L48.58,160.809L48.187,160.62L48.14,160.484L48.314,159.876L48.628,159.442L48.656,159.089L48.75,159.034L48.775,158.649L48.59,158.244L48.985,158.072L49.369,157.699L49.706,157.45L49.855,157.631L50.105,157.719L50.427,157.57L50.576,157.663L51.028,157.696L51.274,157.808L51.081,157.577L50.897,157.63L50.456,157.45L50.06,157.152L50.206,157.02L50.43,156.598L50.942,156.327L50.781,156.262L50.489,156.34L50.248,156.588L50.145,156.949L49.623,156.964L49.374,156.821L49.324,156.963L49.04,157.115L48.859,157.433L48.486,157.566L48.14,157.926L48.257,158.23L48.087,158.185L47.807,158.574L47.573,158.784L47.671,159.046L47.302,159.459L46.864,159.415L47.167,159.593L47.298,159.862L47.15,160.188L47.029,160.276L46.545,160.317L46.479,160.443L46.778,160.385L46.745,160.721L46.56,160.859L46.38,160.72L46.268,160.48L46.267,160.811L46.12,161.058L45.873,161.103L45.955,161.325L45.506,161.548L45.415,162.068L45.436,162.321L45.557,162.188L45.993,162.184L46.176,162.395L46.437,162.54L46.469,162.697L46.534,162.694L46.438,162.696L46.307,163.041L46.037,163.268L45.757,163.286L45.679,163.565L45.525,163.57L45.644,163.792L45.198,164.049L45.45,163.974L45.449,164.169L45.164,164.484L44.876,164.422L44.927,164.65L44.362,164.644L44.263,165.02L44.071,164.988L44.026,165.267L43.894,165.361L43.606,165.189L43.635,165.487L43.494,165.53L43.452,165.746L43.066,165.701L43.079,165.994L42.942,165.914L42.68,166.033L42.396,166.347L42.64,166.258L42.636,166.639L42.297,166.899L42.378,167.038L42.128,167.004L42.045,167.214L41.94,167.098L41.674,167.401L41.554,167.306L41.521,167.517L41.306,167.284L41.178,167.364L41.072,167.71L41.167,167.833L40.888,167.856L40.818,167.695L40.597,167.757L40.303,168.01L40.664,167.951L40.638,168.156L40.288,168.023L40.288,168.17L40.032,168.099L39.593,168.584L40.008,168.471L40.166,168.559L39.932,168.694L39.816,169.242L39.715,169.268L39.624,169.018L39.695,168.803L39.516,168.952L39.552,169.24L39.259,169.176L39.051,169.429L38.968,169.342L38.597,169.424L38.505,169.624L38.469,169.369L38.337,169.414L38.386,169.686L38.272,169.962L38.082,169.896L38.236,169.548L37.976,169.423L37.765,169.503L37.637,169.763L37.166,169.946L36.952,170.226L36.877,169.97L36.777,170.244L36.619,170.248L36.528,170.061L36.335,170.246L35.996,170.407L35.64,170.353L35.703,170.059L35.892,169.868L35.83,169.737L35.6,169.74L35.398,169.992L35.415,170.22L35.108,170.611L34.907,170.558L34.96,170.879L34.821,170.941L34.687,170.733L34.65,170.949L34.345,170.976L34.216,170.765L34.268,170.443L34.002,170.4L34.119,170.617L34.01,171.004L33.82,171.148L33.639,171.077L33.557,170.75L33.324,170.607L33.26,170.818L33.495,171.063L33.013,171.326L33.143,170.955L33.156,170.693L33.33,170.529L33.783,170.55L33.787,170.346L33.966,170.306L34.125,170.128L34.308,170.166L34.28,169.934L34.744,169.456L35.382,169.072L36.041,168.956L36.356,169.062L36.629,168.951L36.635,169.113L36.402,169.171L36.675,169.608L36.712,169.248L37.081,169.309L37.141,169.515L37.382,169.581L37.44,169.418L37.083,169.14L37.032,168.985L37.396,168.342L38.108,167.811L38.779,167.57L39.369,167.121L39.367,167.142L39.355,167.302L39.702,167.43L39.646,166.908L40.173,166.214L40.441,166.076L40.68,165.801L40.958,165.605L41.153,165.853L41.119,165.481L41,165.501L41.001,165.24L41.2,164.31L41.428,164.202L41.264,163.938L41.373,163.47L41.651,163.18L41.93,162.929L42.021,162.54L41.977,162.38L41.806,162.597L41.324,162.823L40.586,163.108L40.382,163.008L40.35,162.828L40.097,162.633L40.175,162.516L40.217,162.091L40.054,162.369L39.872,162.423L39.817,162.765L39.479,162.502L39.681,162.706L39.818,163.176L39.889,163.355L39.756,163.542L39.447,163.496L39.091,162.653L38.799,162.439L38.888,162.321L38.691,162.232L38.615,162.505L38.474,162.565L38.319,162.295L38.088,162.259L38.105,162.03L37.969,161.859L37.365,162.244L37.125,162.285L37.077,162.322L36.735,162.49L36.653,162.668L36.178,162.863L36.247,162.717L35.823,162.656L35.706,162.573L36.122,162.548L36.257,162.26L36.26,161.904L36.579,161.586L36.273,161.53L36.155,161.608L36.047,161.249L36.18,160.896L36.497,160.651L36.352,160.318L36.281,159.917L36.155,159.694L36.048,159.191L36.125,159.047L35.85,158.658L36.031,158.52L36.205,158.065L36.166,157.979L35.932,158.411L35.719,158.604L35.717,158.845L35.829,158.922L35.709,159.367L35.407,159.342L35.383,159.459L34.841,159.629L34.419,159.662L33.99,159.592L33.804,159.496L33.716,159.205L33.833,159.164L33.564,158.877L33.32,158.314L33.483,157.98L33.664,157.925L33.581,157.76L33.771,157.749L33.912,157.569L34.081,157.552L34.347,157.303L34.493,157.462L34.407,157.706L34.526,157.834L34.898,157.53L34.772,157.311L34.363,157.143L34.522,157.073L34.673,157.169L34.824,157.096L34.552,156.983L34.344,157.131L34.354,156.686L34.133,156.886L34.193,157.063L33.673,157.055L33.572,156.834L33.373,156.888L33.343,156.768L33.028,156.774L32.983,156.623L33.27,156.565L33.501,156.408L33.252,156.372L33.212,156.49L32.914,156.162L32.838,156.36L32.634,156.302L32.595,155.964L32.665,155.847L32.387,155.709L32.392,155.473L32.585,155.356L32.431,155.151L32.232,155.17L32.216,154.925L32.619,154.891L32.396,154.74L32.335,154.541L32.887,154.541L32.79,154.276L32.931,153.84L33.516,153.214L33.765,153.025L33.98,153.079L34.398,152.695L34.709,152.801L35.028,153.406L34.961,152.988L35.009,152.776L34.864,152.524L34.895,152.376L35.225,152.344L35.291,152.133L35.595,151.95L35.749,152.161L36.073,152.132L36.331,151.839L36.615,151.708L36.909,151.315L36.979,151.118L37.276,151.287L37.114,151.399L37.579,151.374L37.774,151.422L38.179,151.349L38.635,150.766L38.64,150.571L38.526,150.093L38.535,149.653L38.282,149.275L38.04,149.212L38.209,148.912L38.49,149.041L38.813,148.776L38.843,148.549L38.751,148.29L38.562,148.134L38.667,148.024L38.507,148.014L38.28,148.342L38.091,148.409L37.963,148.302L37.727,148.456L37.449,148.478L37.375,148.609L37.04,148.78L36.889,149.118L36.724,149.226L36.72,148.82L36.424,148.42L36.243,148.546L36.446,148.763L36.434,148.987L35.992,148.559L35.232,148.461L34.899,148.568L34.885,148.496L34.527,148.637L34.233,148.459L33.418,148.103L33.236,147.895L33.227,147.539L33.357,147.352L33.107,147.065L33.026,146.737L33.287,146.77L33.546,146.488L33.842,146.611L33.993,147.009L34.145,147.109L34.407,146.952L34.292,146.826L34.011,146.752L33.939,146.831L33.841,146.561L33.603,146.375L33.132,146.14L32.61,145.973L32.35,145.674L32.051,145.434L32.381,145.189L32.578,145.228L32.619,145.032L32.967,144.848L33.036,145.01L33.359,144.857L33.619,144.564L34.071,144.417L34.219,144.595L34.615,144.654L34.737,144.574L34.422,144.336L34.571,144.159L34.899,144.017L35.318,144.057L35.64,143.802L35.929,143.763L36.409,143.808L36.514,143.923L36.346,144.298L36.355,144.554L36.241,144.676L36.355,145.047L36.597,145.043L36.974,145.144L37.311,145.132L37.65,145.316L37.886,145.225L38.068,145.35L38.098,145.527L38.483,144.917L39.019,144.998L38.908,144.753L38.552,144.556L38.188,144.606L38.248,144.246L38.006,143.782L37.733,143.651L37.663,143.386L37.811,143.176L37.96,143.19L38.196,143.61L38.111,143.916L38.233,144.173L38.516,144.453L38.913,144.264L39.231,144.696L39.744,144.705L39.804,144.392L39.693,144.177L39.411,144.196L39.276,144.026L38.976,144.027L38.795,144.291L38.623,144.259L38.307,143.778L38.428,143.405L38.584,143.245L38.743,143.252L38.462,143.007L37.845,143.091L37.614,142.894L37.42,142.922L36.775,142.656L36.704,141.909L36.573,141.472L36.24,141.117L35.619,140.288L35.134,139.934L34.903,139.537L34.508,139.31L34.934,139.288L35.218,138.443L35.222,138.22L35.959,138.391L36.87,138.375L37.163,138.285L37.587,137.98L37.959,137.512L38.141,137.139L38.078,137.003L38.276,136.789L38.186,136.695L38.726,136.171L38.759,136.033L39.024,135.814L39.307,135.488L39.455,135.666L39.273,135.649L39.28,135.831L39.1,135.818L39.271,135.858L39.482,135.664L39.647,135.698L40.221,135.443L40.764,134.963L40.938,135.011L40.915,135.262L40.713,135.61L40.915,135.495L40.994,135.258L40.938,134.944L40.782,134.925L41.178,134.553L41.579,134.436L41.42,134.548L41.692,134.661L42.397,134.573L42.666,134.472L43.097,134.09L43.458,133.568L43.605,133.447L43.775,133.623L44.026,133.69L43.987,133.878L44.281,133.806L44.453,134.073L44.274,134.296L44.02,134.34L44.056,134.635L44.463,134.653L44.452,134.387L44.991,134.053L45.187,134.282L45.109,134.531L45.495,134.802L45.69,134.544L46.31,134.443L46.616,134.58L46.748,134.525L47.031,134.65L46.84,134.983L46.884,135.155L47.174,135.212L46.745,135.308L47.468,135.27L47.328,135.552L47.575,135.525L47.87,135.693L47.931,135.511L48.301,135.46L48.287,135.716L48.754,135.486L48.93,135.292L49.494,135.307L49.765,135.499L50.055,135.542L50.083,135.665L50.281,135.571L50.646,135.811L51.152,135.943L51.668,135.806L52.113,135.882L52.228,135.789L52.757,136.126L53.275,136.103L53.364,135.976L54.359,135.601L54.758,135.7L55.114,135.897L55.249,136.067L55.719,136.161L56.042,136.426L56.154,136.286L56.337,136.341L56.855,138.951L58.06,145.031L59.862,154.123L60.554,157.615L60.593,157.812L61.181,157.901L61.208,157.683L61.816,157.859L62.065,157.435L62.753,157.24L62.749,157.88L62.966,158.056L63.41,158.167L63.575,158.462L65.043,159.377L65.314,159.937L65.33,160.124L65.996,159.335L66.275,159.246L66.325,159.003L66.211,158.531L66.414,158.479L66.425,158.244L66.272,158.187L66.692,157.92L66.915,157.694L67.142,157.459L67.489,157.61L67.809,157.841L67.814,158.175L67.945,158.335L68.075,158.458L68.393,158.441L68.452,158.564L68.72,158.633L69.002,158.954L69.162,159.164L69.74,159.309L69.981,159.523L70.491,159.81L70.421,159.938L70.931,160.356L71.165,160.657L71.516,160.94L72.146,161.583L72.484,161.835L72.73,162.094L72.678,162.41L73.102,162.38L73.133,162.796L73.494,162.84L73.697,163.285L73.997,163.148L74.787,163.387L75.167,163.342L75.44,163.492L75.648,163.475L75.779,163.681L76.036,163.699L76.195,163.573L76.413,163.78L76.497,164.001L76.423,164.383L76.603,164.766L77.047,165.363L76.965,165.619L76.928,166.181L76.703,166.719L76.527,166.847L76.378,166.707L76.387,166.901L76.235,166.867L76.12,166.594L75.724,166.065L75.898,165.712L75.541,164.84L74.915,164.329L74.739,164.508L74.672,164.417L74.351,164.854L74.173,164.931L74.381,165.012L74.372,165.785L74.034,165.682L73.827,165.382L73.874,165.358L73.936,164.795L74.028,164.73L73.865,164.284L74.083,164.128L73.845,164.126L73.675,163.906L73.537,163.918L73.106,163.648L73.133,163.308L72.889,163.381L72.79,163.232L72.38,163.138L72.049,162.866L72.244,162.771L71.685,162.738L71.632,162.547L71.521,162.751L71.227,162.672L71.186,162.391L71.586,162.228L71.221,162.262L71.226,162.102L71.001,162.006L71.022,161.715L70.877,161.826L70.723,161.728L70.762,161.462L71.35,161.633L70.946,161.403L70.734,161.375L70.658,161.105L70.68,161.028L70.7,160.987L70.621,161.224L70.573,161.355L70.534,161.351L70.279,161.061L69.921,160.81L69.784,160.41L69.878,160.281L69.77,160.112L69.684,160.371L69.775,160.487L69.666,160.628L69.206,160.393L68.945,160.427L68.8,160.173L68.5,159.851L68.294,159.153L68.281,159.156L68.385,159.433L68.365,159.719L68.133,159.483L68.026,159.225L67.583,158.454L67.538,158.438L67.546,158.761L67.402,158.741L67.702,159.006L67.768,159.315L68.074,159.686L68.214,159.996L68.577,160.598L68.61,160.865L68.391,160.935L68.2,160.77L67.963,160.407L68.034,160.685L67.853,160.613L67.544,160.814Z" + }, + { + "fill": "rgb(104, 197, 190)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.12; geo: [object Object]; name: Alaska", + "shape": "M7.208,172.472L6.987,171.876L6.674,171.551L6.701,171.463L7.065,171.8L7.304,172.409ZM13.561,173.982L13.569,173.658L13.763,173.703L13.721,173.904ZM13.865,173.986L13.799,173.825L13.929,173.737ZM14.185,173.908L14.026,173.744L14.196,173.748ZM11.312,173.492L11.102,173.228L11.356,173.195L11.099,172.734L11.178,172.674L11.511,172.769L11.507,172.929L11.841,173.14L11.597,173.121ZM12.369,173.603L12.137,173.459L11.697,173.347L12.33,173.405L12.458,173.36L12.556,173.121L12.697,173.16L12.446,173.639ZM6.725,170.86L6.726,170.662L6.887,170.815ZM12.64,173.999L12.636,173.823L12.846,173.752L12.856,173.537L13.063,173.627L13.168,173.256L13.484,173.302L13.266,173.619L13.504,173.651L13.479,173.914L13.351,173.835L13.222,173.963L12.829,173.953L12.893,173.76ZM8.188,171.56L8.059,171.381L8.116,171.247L8.371,171.245L8.487,171.426ZM14.134,173.59L14.009,173.316L14.264,173.295ZM5.075,170.306L4.995,170.095L5.305,170.021L5.453,170.072L5.695,169.832L5.822,169.917L5.548,170.116L5.478,170.269L5.306,170.143ZM17.731,174.618L17.501,174.425L17.279,174.437L17.043,174.181L17.264,174.187L17.972,174.539L18.218,174.553L18.527,174.682L18.246,174.676L17.783,174.572ZM19.21,174.508L19.1,174.457L19.216,174.262L19.422,174.217L19.586,174.415ZM15.503,173.971L15.469,173.891L15.861,173.847L16.001,173.938L16.399,173.923L16.879,173.75L16.731,173.599L16.826,173.471L17.091,173.452L17.244,173.796L17.085,173.925L16.926,173.858L16.992,174.135L16.548,174.055L16.469,174.185L16.266,174.051L16.139,174.121L15.636,173.934ZM0.869,166.844L0.863,166.746L0.55,166.543L1.077,166.54L0.967,166.892ZM21.821,174.509L21.844,174.278L22.126,174.208L22.105,174.435ZM23.437,174.349L23.277,174.183L23.102,174.231L23.105,174.07L23.513,174.097ZM0.359,165.533L0.25,165.294L0.317,165.161L0.137,165.097L0.215,164.976L0,164.859L0.322,164.823L0.669,165.101L0.885,165.161L0.882,165.371L1.052,165.442L0.935,165.65L0.746,165.624L0.642,165.461ZM24.339,174.42L24.92,173.939L24.922,173.765L25.243,173.562L25.587,173.67L25.492,173.49L25.569,173.301L25.872,173.097L26.199,173.077L26.48,173.253L26.343,173.537L25.686,173.737L25.329,174.108L24.904,174.283ZM28.723,173.248L28.621,173.034L28.914,172.927L28.886,173.11ZM26.524,173.926L26.343,173.708L26.546,173.576L26.683,173.634L26.87,173.503L27.064,173.632L27.142,173.476L27.461,173.468L27.377,173.226L27.607,173.225L27.574,173.03L28.051,173.064L27.656,172.923L27.495,172.715L27.642,172.512L27.924,172.417L28.219,172.407L28.309,172.566L28.219,172.85L28.749,172.592L28.835,172.73L28.202,173.125L28.595,173.037L28.622,173.274L28.292,173.296L28.007,173.637L27.842,173.537L27.506,173.604ZM30.463,172.696L30.238,172.602L30.631,172.557ZM29.308,172.571L29.093,172.508L29.033,172.312L29.255,172.116L29.554,172.349L29.61,172.484ZM29.771,172.483L29.68,172.092L29.96,172.06L29.849,172.237L30.018,172.274ZM33.865,172.488L33.588,172.259L33.66,172.17L33.901,172.29ZM74.081,167.735L73.738,167.425L74.01,167.461ZM34.409,171.47L34.277,171.318L34.441,171.103L34.554,171.17ZM75.662,166.938L75.407,166.799L75.671,166.574L75.8,166.777ZM31.122,172.033L30.865,171.928L30.819,171.49L31.141,171.393L31.418,170.93L31.611,170.825L31.831,170.926L32.367,170.688L32.854,170.725L33.036,171.472L33.227,171.439L33.273,171.639L32.875,171.532L32.87,171.674L32.632,171.75L32.352,171.642L31.965,171.621L31.6,171.774L31.452,171.989ZM38.285,171.606L38.386,171.371L38.461,171.527ZM35.242,171.036L35.067,170.757L35.401,170.884ZM73.762,167.251L73.575,167.223L73.618,167.062L73.458,166.946L73.512,166.819L73.814,167.101ZM38.058,171.36L38.167,171.221L38.16,170.957L38.265,171.137ZM74.023,167.962L73.872,167.956L73.261,167.524L73.074,167.198L72.995,166.877L73.097,166.801L73.494,167.286L73.548,167.451L73.861,167.611ZM75.233,166.742L75.143,166.675L75.199,166.369L75.03,166.12L75.438,166.234L75.507,166.531ZM37.226,171.694L37.486,171.198L37.52,170.929L37.726,171.064L37.589,171.291L37.299,171.538ZM72.854,167.019L72.715,167.04L72.642,166.781L72.763,166.704L72.949,166.844ZM37.166,170.793L36.93,170.594L37.179,170.514ZM36.491,171.021L36.515,170.503L36.68,170.352L36.788,170.428L36.991,170.909L36.887,171.032L36.596,170.851ZM74.938,166.512L74.789,166.407L74.58,165.905L74.907,166.043ZM72.477,167.054L72.372,166.959L72.363,166.646L72.573,166.69L72.462,166.817ZM37.444,170.505L37.221,170.325L37.474,170.335ZM72.448,166.599L72.328,166.584L72.392,166.373L72.569,166.506ZM72.086,166.688L72.161,166.467L72.312,166.375L72.272,166.627ZM72.656,166.481L72.479,166.333L72.602,166.203ZM72.272,165.998L71.997,165.868L72.141,165.695L72.466,165.749ZM43.521,170.008L43.326,169.856L43.586,169.674ZM72.554,165.713L72.404,165.617L72.384,165.416L72.528,165.494ZM71.232,166.005L71.174,165.767L71.372,165.735ZM75.569,166.131L75.372,166.022L75.191,166.055L75.296,165.636L75.237,165.597L75.059,166.057L74.582,165.838L74.721,165.411L74.581,165.384L74.436,164.925L74.644,164.862L74.53,164.736L74.9,164.424L75.245,164.66L75.563,165.054L75.701,165.915ZM71.882,165.613L71.723,165.531L71.837,165.112L72.059,164.912L72.239,164.888L72.335,165.188L72.224,165.18ZM73.587,165.027L73.345,164.738L73.092,164.839L72.901,164.502L73.031,164.404L73.033,164.174L73.255,164.161L73.267,164.403L73.5,164.362L73.75,164.499L73.655,164.672L73.826,164.838ZM72.792,165.04L72.79,165.034L72.848,164.986L73.227,165.127L73.531,165.363L73.588,165.637L73.772,165.62L73.928,165.828L74.187,165.954L73.71,165.866L73.534,165.761L73.634,166.031L73.81,165.94L74.232,166.16L74.387,166.361L74.22,166.541L74.44,166.514L74.475,166.305L74.605,166.536L74.545,166.999L74.705,166.855L74.831,167.133L74.905,167.586L74.533,167.66L74.479,167.392L74.073,167.113L74.103,167.279L73.839,166.781L73.722,166.886L73.317,166.703L72.924,166.796L72.899,166.564L73.187,166.567L73.089,166.343L72.917,166.37L72.898,165.973L72.674,166.161L72.502,166.11L72.495,165.901L72.667,165.571L72.49,165.453L72.269,164.876L71.856,164.937L71.693,164.734L71.683,164.549L71.92,164.555L72.211,164.438L72.534,164.72L72.597,165.051ZM72.699,164.533L72.381,164.387L72.439,164.071L72.7,163.972L72.896,164.073L72.929,164.351ZM73.583,164.359L73.287,164.214L73.107,163.753L73.256,163.772L73.517,163.99L73.655,163.918L73.898,164.208L73.77,164.454ZM45.565,168.253L45.542,168.135L45.783,168.09ZM41.497,168.094L41.439,167.948L41.656,167.967ZM44.643,168.468L44.735,168.179L44.931,168.025L45.022,168.214ZM45.528,168.049L45.421,168.226L45.185,168.22L45.343,167.978ZM25.67,165.804L25.49,165.559L25.853,165.696ZM72.925,163.531L72.795,163.376L73.04,163.351ZM72.576,163.923L72.402,163.944L72.354,163.634L72.152,163.3L72.347,163.258L72.849,163.61ZM71.103,163.771L71.031,163.648L71.25,163.653L71.291,164.075L71.234,164.314L71.424,164.687L71.372,164.848L71.445,165.272L71.385,165.316L71.167,165.024L71.296,165.553L71.127,165.438L70.855,164.821L70.918,164.565L71.153,164.76L70.983,164.429L70.669,164.355L70.694,164.247L70.458,164.026L70.358,163.778L70.54,163.491L70.842,163.567ZM71.316,163.755L71.051,163.419L70.687,163.208L70.836,162.993L71.484,163.01L71.847,162.897L72.052,163.024L72.307,163.594L72.268,163.757L71.663,163.359L71.955,163.737L72.129,163.763L72.22,163.968L72.129,164.186L71.802,164.154L71.845,164.26L71.583,164.385ZM46.514,167.086L46.407,166.815L46.628,166.571L47.067,166.699L46.667,166.844ZM25.105,164.277L25.002,164.053L25.411,164.032ZM68.541,163.942L68.445,163.718L68.54,163.498L68.407,163.516L68.288,163.158L68.481,163.141L68.755,163.487L68.763,163.818ZM69.656,164.245L69.462,164.32L69.445,164.112L69.197,164.168L69.109,163.894L69.209,163.645L68.985,163.546L68.931,163.194L68.729,163.281L68.463,163.027L68.717,162.991L68.534,162.913L68.635,162.524L68.805,162.676L68.961,162.597L69.268,162.728L69.456,162.645L69.573,162.88L69.42,162.828L69.654,163.152L70.177,164.102L70.458,165.183L70.516,165.378L70.283,165.268L69.578,164.404ZM47.667,164.962L47.464,164.879L47.577,164.748ZM46.616,165.184L46.238,164.926L46.281,164.765L46.514,164.936ZM45.455,167.675L45.543,167.433L45.818,167.156L45.672,167.171L45.772,166.792L45.53,167.138L45.447,167.077L45.53,166.784L45.339,166.689L45.033,166.772L45.141,166.954L45.247,166.81L45.489,166.77L45.474,167.171L45.3,167.22L44.962,167.085L44.956,166.634L44.849,166.434L44.694,166.413L44.624,166.242L44.84,165.864L45.181,165.559L45.621,165.548L45.644,165.774L45.903,166.316L45.856,165.808L45.964,165.772L45.779,165.587L46.017,165.482L45.756,165.401L45.707,165.154L45.983,164.983L46.163,165.103L46.187,165.366L46.279,165.085L46.616,165.197L46.582,164.959L46.825,165.138L46.535,164.807L46.95,164.816L47.121,164.902L46.999,165.103L47.21,165.128L47.326,164.889L47.542,164.946L47.703,165.13L47.524,165.353L47.553,165.637L47.944,165.584L47.717,166.052L47.531,166.052L47.206,165.863L47.031,165.913L47.374,166.105L47.266,166.403L47.126,166.428L46.878,166.259L46.963,166.469L46.6,166.531L46.32,166.803L46.165,166.847L46.088,167.028L46.212,167.079L45.759,167.612ZM67.232,162.207L67.057,162.091L66.989,161.666L67.268,161.795ZM46.927,164.748L46.577,164.591L46.35,164.572L46.539,164.368L46.754,164.498ZM68.03,161.496L67.948,161.664L68.11,161.663L68.304,161.178L68.401,161.211L68.888,161.246L68.995,161.39L68.955,161.614L68.643,161.55L69.071,161.788L68.749,161.948L68.513,161.839L67.806,161.671L68.012,161.809L68.268,161.829L68.794,162.118L68.908,161.947L69.113,161.883L69.321,162.221L69.388,162.528L69.119,162.606L68.34,162.261L68.016,162.186L68.468,162.482L68.566,162.744L68.435,163.043L67.72,162.566L67.59,162.294L67.443,162.286L67.366,162.206L67.314,162.221L67.285,162.231L67.267,161.808L67.756,162.089L67.762,162.076L67.653,162.037L67.076,161.581L67.214,161.293L67.307,161.432L67.379,161.243L67.592,161.217L67.744,160.987L68.047,161.084L68.167,161.33ZM69.593,160.679L69.226,160.702L69.055,160.547L69.193,160.425ZM69.075,160.755L69.127,160.897L69.269,160.771L69.577,160.839L69.585,160.834L69.747,160.712L69.709,160.814L70.316,161.405L70.417,161.683L70.316,161.691L69.89,161.085L69.616,160.904L69.807,161.165L69.678,161.137L70.119,161.662L70.421,161.861L70.526,162.122L70.282,162.158L70.672,162.392L70.575,162.568L70.279,162.44L70.432,162.844L70.139,163.322L69.992,163.373L69.827,162.937L69.927,162.732L69.788,162.569L69.951,162.562L69.738,162.405L69.385,161.9L69.347,161.648L69.065,161.17L69.098,161.065L69.056,160.846L69.058,160.85L69.068,161.073L68.759,160.731L68.66,160.424ZM47.698,163.699L47.844,163.894L48.127,163.909L48.104,164.186L48.002,164.316L47.69,164.106L47.76,164.391L47.401,164.426L47.137,164.547L47.14,164.714L46.84,164.599L46.583,164.327L46.653,164.198L47.049,164.329L46.735,164.1L46.8,164.005L47.128,164.05L46.995,163.76L47.273,163.564L47.489,163.61L47.62,163.956ZM47.273,163.356L47.646,163.199L47.488,163.586L47.307,163.53ZM37.008,162.966L37.068,162.615L37.525,162.432L37.246,162.923ZM46.205,161.603L46.203,161.443L46.418,161.51ZM49.54,161.585L49.568,161.28L49.663,161.391ZM56.651,159.7L56.825,159.341L57.034,159.174ZM52.603,159.836L52.755,159.52L52.754,159.742ZM52.564,159.593L52.449,159.673L52.635,159.307L52.739,159.442ZM52.319,159.682L52.275,159.507L52.535,159.27L52.425,159.646ZM52.837,160.224L52.807,159.991L53.278,159.397L53.532,158.85L53.789,158.824L53.739,159.027L53.531,159.242L53.243,159.77L53.317,159.92ZM31.343,159.276L31.112,158.973L30.893,158.95L30.524,158.533L30.39,158.518L30.095,157.909L30.506,157.942L30.776,158.078L30.835,157.929L31.277,157.724L31.381,157.822L31.69,157.794L31.709,157.966L31.95,157.965L32.153,158.126L32.051,158.414L32.11,159.043L31.591,159.047ZM54.166,158.979L54.075,158.882L54.305,158.656L54.038,158.735L54.13,158.393L54.376,158.364L54.435,158.517L54.752,158.548L54.513,158.68ZM47.861,159.169L48.019,158.752L48.12,158.819ZM52.684,159.07L52.846,158.476L52.995,158.647L52.885,159.293ZM24.697,156.405L24.378,156.266L24.095,155.785L23.983,155.711L24.166,155.496L24.172,155.727L24.309,155.965L24.607,156.144ZM54.582,158.417L54.486,158.272L55.025,158.02L55.014,158.127ZM52.578,158.139L52.457,157.986L52.668,158.039ZM52.309,158.23L52.233,157.93L52.356,157.962ZM33.232,158.311L32.996,158.157L32.843,157.913L33.07,157.69L32.801,157.745L32.601,157.685L33.145,157.263L33.081,157.1L33.314,156.947L33.58,156.914L33.493,157.063L33.963,157.238L33.987,157.51L33.576,157.763L33.667,157.903L33.467,157.972L33.493,158.128ZM52.432,157.851L52.316,157.842L52.357,157.514L52.562,157.74ZM34.066,152.913L34.042,152.489L34.423,152.586ZM35.013,153.321L34.839,152.867L34.365,152.562L34.077,152.438L34.311,151.985L34.695,152.046L34.875,152.326L34.961,152.678L34.942,152.985ZM34.898,152.358L34.673,152.014L34.456,151.876L34.489,151.715L34.767,151.534L35.08,151.521L35.402,151.694L35.578,151.932L35.281,152.121L35.114,152.389ZM36.714,151.094L36.581,150.987L36.903,150.884L36.905,151.074ZM29.125,151.127L28.962,150.584L28.617,150.398L28.695,150.211L28.406,149.844L28.162,149.629L27.742,149.675L27.498,149.816L27.222,149.591L27.183,149.295L27.4,148.943L27.48,148.65L27.615,149.149L27.877,149.168L28.113,149.356L28.695,149.178L28.883,149.256L29.034,149.469L29.019,149.796L29.386,150.004L29.441,150.178L29.994,150.349L30.296,150.535L30.05,150.833L29.603,150.644L29.266,150.879ZM48.345,135.536L48.216,135.37L48.444,135.35ZM67.55,160.543L67.257,160.061L67.068,159.885L67.401,159.624L67.149,159.625L67.096,159.791L66.932,159.473L67.028,159.984L66.923,160.079L66.584,159.96L66.452,159.673L66.385,159.889L66.09,159.808L65.933,159.981L66.267,159.953L66.61,160.056L66.549,160.133L67.065,160.384L67.348,160.749L67.346,160.958L67.036,161.16L66.744,161.079L66.839,161.28L66.716,161.434L66.388,161.216L66.124,161.163L65.413,160.845L64.901,160.485L64.811,160.268L64.449,160.026L64.054,159.951L64.077,159.751L63.841,159.875L62.869,159.493L62.804,159.515L62.267,159.293L62.434,159.144L62.59,158.886L62.366,158.417L62.525,158.201L62.414,158.033L62.218,158.628L61.674,159.056L61.016,159.095L60.274,158.888L60.443,158.587L60.215,158.224L60.08,158.361L60.301,158.537L60.074,158.734L58.878,158.654L58.502,158.713L57.675,158.977L57.411,159.113L56.931,158.823L56.948,158.736L56.531,158.8L56.386,158.61L56.099,158.595L56.21,158.098L56.156,157.829L55.958,158.056L55.857,158.326L55.632,158.555L55.43,158.39L55.134,158.294L54.894,158.369L55.223,157.843L54.777,157.996L54.858,157.77L54.571,158.002L54.478,157.952L54.687,157.73L54.385,157.685L54.28,157.887L54.009,157.905L54.53,157.48L54.449,157.388L54.335,157.574L54.113,157.617L53.872,157.411L53.961,156.992L54.384,156.936L54.285,156.825L53.926,156.935L53.688,157.305L53.437,157.211L53.3,157.269L53.164,157.546L52.994,157.534L52.983,157.125L52.903,157.143L52.745,157.715L52.364,157.504L52.479,157.146L52.646,156.883L52.677,156.659L52.408,157.126L52.341,157.335L52.2,157.082L51.981,157.378L52.218,157.189L52.108,157.48L52.099,157.759L51.901,157.841L51.732,158.043L51.744,158.184L51.9,157.931L52.025,157.894L52.053,158.134L52.157,157.945L52.292,158.268L52.144,158.475L51.967,158.386L51.776,158.58L51.775,158.676L52.001,158.451L52.222,158.562L52.415,158.299L52.588,158.706L52.296,158.885L52.267,159.129L52.467,159.212L52.257,159.445L52.218,159.335L52.132,159.863L51.986,159.68L51.868,159.938L51.336,159.867L51.431,159.683L51.274,159.715L51.165,160.009L51.058,159.631L50.942,159.536L50.985,159.858L50.747,160.076L50.625,159.953L50.625,160.543L50.344,160.379L50.417,160.674L50.248,160.688L50.266,160.859L49.899,161.158L50.015,160.713L49.814,161.168L49.647,160.989L49.669,161.252L49.507,161.263L49.21,161.785L49.159,161.52L49.089,161.772L48.747,161.714L48.325,161.938L48.047,161.724L48.146,161.318L48.427,161.164L48.654,161.2L48.66,161.034L48.97,160.899L48.936,160.794L49.241,160.41L49.08,160.414L48.58,160.809L48.187,160.62L48.14,160.484L48.314,159.876L48.628,159.442L48.656,159.089L48.75,159.034L48.775,158.649L48.59,158.244L48.985,158.072L49.369,157.699L49.706,157.45L49.855,157.631L50.105,157.719L50.427,157.57L50.576,157.663L51.028,157.696L51.274,157.808L51.081,157.577L50.897,157.63L50.456,157.45L50.06,157.152L50.206,157.02L50.43,156.598L50.942,156.327L50.781,156.262L50.489,156.34L50.248,156.588L50.145,156.949L49.623,156.964L49.374,156.821L49.324,156.963L49.04,157.115L48.859,157.433L48.486,157.566L48.14,157.926L48.257,158.23L48.087,158.185L47.807,158.574L47.573,158.784L47.671,159.046L47.302,159.459L46.864,159.415L47.167,159.593L47.298,159.862L47.15,160.188L47.029,160.276L46.545,160.317L46.479,160.443L46.778,160.385L46.745,160.721L46.56,160.859L46.38,160.72L46.268,160.48L46.267,160.811L46.12,161.058L45.873,161.103L45.955,161.325L45.506,161.548L45.415,162.068L45.436,162.321L45.557,162.188L45.993,162.184L46.176,162.395L46.437,162.54L46.469,162.697L46.534,162.694L46.438,162.696L46.307,163.041L46.037,163.268L45.757,163.286L45.679,163.565L45.525,163.57L45.644,163.792L45.198,164.049L45.45,163.974L45.449,164.169L45.164,164.484L44.876,164.422L44.927,164.65L44.362,164.644L44.263,165.02L44.071,164.988L44.026,165.267L43.894,165.361L43.606,165.189L43.635,165.487L43.494,165.53L43.452,165.746L43.066,165.701L43.079,165.994L42.942,165.914L42.68,166.033L42.396,166.347L42.64,166.258L42.636,166.639L42.297,166.899L42.378,167.038L42.128,167.004L42.045,167.214L41.94,167.098L41.674,167.401L41.554,167.306L41.521,167.517L41.306,167.284L41.178,167.364L41.072,167.71L41.167,167.833L40.888,167.856L40.818,167.695L40.597,167.757L40.303,168.01L40.664,167.951L40.638,168.156L40.288,168.023L40.288,168.17L40.032,168.099L39.593,168.584L40.008,168.471L40.166,168.559L39.932,168.694L39.816,169.242L39.715,169.268L39.624,169.018L39.695,168.803L39.516,168.952L39.552,169.24L39.259,169.176L39.051,169.429L38.968,169.342L38.597,169.424L38.505,169.624L38.469,169.369L38.337,169.414L38.386,169.686L38.272,169.962L38.082,169.896L38.236,169.548L37.976,169.423L37.765,169.503L37.637,169.763L37.166,169.946L36.952,170.226L36.877,169.97L36.777,170.244L36.619,170.248L36.528,170.061L36.335,170.246L35.996,170.407L35.64,170.353L35.703,170.059L35.892,169.868L35.83,169.737L35.6,169.74L35.398,169.992L35.415,170.22L35.108,170.611L34.907,170.558L34.96,170.879L34.821,170.941L34.687,170.733L34.65,170.949L34.345,170.976L34.216,170.765L34.268,170.443L34.002,170.4L34.119,170.617L34.01,171.004L33.82,171.148L33.639,171.077L33.557,170.75L33.324,170.607L33.26,170.818L33.495,171.063L33.013,171.326L33.143,170.955L33.156,170.693L33.33,170.529L33.783,170.55L33.787,170.346L33.966,170.306L34.125,170.128L34.308,170.166L34.28,169.934L34.744,169.456L35.382,169.072L36.041,168.956L36.356,169.062L36.629,168.951L36.635,169.113L36.402,169.171L36.675,169.608L36.712,169.248L37.081,169.309L37.141,169.515L37.382,169.581L37.44,169.418L37.083,169.14L37.032,168.985L37.396,168.342L38.108,167.811L38.779,167.57L39.369,167.121L39.367,167.142L39.355,167.302L39.702,167.43L39.646,166.908L40.173,166.214L40.441,166.076L40.68,165.801L40.958,165.605L41.153,165.853L41.119,165.481L41,165.501L41.001,165.24L41.2,164.31L41.428,164.202L41.264,163.938L41.373,163.47L41.651,163.18L41.93,162.929L42.021,162.54L41.977,162.38L41.806,162.597L41.324,162.823L40.586,163.108L40.382,163.008L40.35,162.828L40.097,162.633L40.175,162.516L40.217,162.091L40.054,162.369L39.872,162.423L39.817,162.765L39.479,162.502L39.681,162.706L39.818,163.176L39.889,163.355L39.756,163.542L39.447,163.496L39.091,162.653L38.799,162.439L38.888,162.321L38.691,162.232L38.615,162.505L38.474,162.565L38.319,162.295L38.088,162.259L38.105,162.03L37.969,161.859L37.365,162.244L37.125,162.285L37.077,162.322L36.735,162.49L36.653,162.668L36.178,162.863L36.247,162.717L35.823,162.656L35.706,162.573L36.122,162.548L36.257,162.26L36.26,161.904L36.579,161.586L36.273,161.53L36.155,161.608L36.047,161.249L36.18,160.896L36.497,160.651L36.352,160.318L36.281,159.917L36.155,159.694L36.048,159.191L36.125,159.047L35.85,158.658L36.031,158.52L36.205,158.065L36.166,157.979L35.932,158.411L35.719,158.604L35.717,158.845L35.829,158.922L35.709,159.367L35.407,159.342L35.383,159.459L34.841,159.629L34.419,159.662L33.99,159.592L33.804,159.496L33.716,159.205L33.833,159.164L33.564,158.877L33.32,158.314L33.483,157.98L33.664,157.925L33.581,157.76L33.771,157.749L33.912,157.569L34.081,157.552L34.347,157.303L34.493,157.462L34.407,157.706L34.526,157.834L34.898,157.53L34.772,157.311L34.363,157.143L34.522,157.073L34.673,157.169L34.824,157.096L34.552,156.983L34.344,157.131L34.354,156.686L34.133,156.886L34.193,157.063L33.673,157.055L33.572,156.834L33.373,156.888L33.343,156.768L33.028,156.774L32.983,156.623L33.27,156.565L33.501,156.408L33.252,156.372L33.212,156.49L32.914,156.162L32.838,156.36L32.634,156.302L32.595,155.964L32.665,155.847L32.387,155.709L32.392,155.473L32.585,155.356L32.431,155.151L32.232,155.17L32.216,154.925L32.619,154.891L32.396,154.74L32.335,154.541L32.887,154.541L32.79,154.276L32.931,153.84L33.516,153.214L33.765,153.025L33.98,153.079L34.398,152.695L34.709,152.801L35.028,153.406L34.961,152.988L35.009,152.776L34.864,152.524L34.895,152.376L35.225,152.344L35.291,152.133L35.595,151.95L35.749,152.161L36.073,152.132L36.331,151.839L36.615,151.708L36.909,151.315L36.979,151.118L37.276,151.287L37.114,151.399L37.579,151.374L37.774,151.422L38.179,151.349L38.635,150.766L38.64,150.571L38.526,150.093L38.535,149.653L38.282,149.275L38.04,149.212L38.209,148.912L38.49,149.041L38.813,148.776L38.843,148.549L38.751,148.29L38.562,148.134L38.667,148.024L38.507,148.014L38.28,148.342L38.091,148.409L37.963,148.302L37.727,148.456L37.449,148.478L37.375,148.609L37.04,148.78L36.889,149.118L36.724,149.226L36.72,148.82L36.424,148.42L36.243,148.546L36.446,148.763L36.434,148.987L35.992,148.559L35.232,148.461L34.899,148.568L34.885,148.496L34.527,148.637L34.233,148.459L33.418,148.103L33.236,147.895L33.227,147.539L33.357,147.352L33.107,147.065L33.026,146.737L33.287,146.77L33.546,146.488L33.842,146.611L33.993,147.009L34.145,147.109L34.407,146.952L34.292,146.826L34.011,146.752L33.939,146.831L33.841,146.561L33.603,146.375L33.132,146.14L32.61,145.973L32.35,145.674L32.051,145.434L32.381,145.189L32.578,145.228L32.619,145.032L32.967,144.848L33.036,145.01L33.359,144.857L33.619,144.564L34.071,144.417L34.219,144.595L34.615,144.654L34.737,144.574L34.422,144.336L34.571,144.159L34.899,144.017L35.318,144.057L35.64,143.802L35.929,143.763L36.409,143.808L36.514,143.923L36.346,144.298L36.355,144.554L36.241,144.676L36.355,145.047L36.597,145.043L36.974,145.144L37.311,145.132L37.65,145.316L37.886,145.225L38.068,145.35L38.098,145.527L38.483,144.917L39.019,144.998L38.908,144.753L38.552,144.556L38.188,144.606L38.248,144.246L38.006,143.782L37.733,143.651L37.663,143.386L37.811,143.176L37.96,143.19L38.196,143.61L38.111,143.916L38.233,144.173L38.516,144.453L38.913,144.264L39.231,144.696L39.744,144.705L39.804,144.392L39.693,144.177L39.411,144.196L39.276,144.026L38.976,144.027L38.795,144.291L38.623,144.259L38.307,143.778L38.428,143.405L38.584,143.245L38.743,143.252L38.462,143.007L37.845,143.091L37.614,142.894L37.42,142.922L36.775,142.656L36.704,141.909L36.573,141.472L36.24,141.117L35.619,140.288L35.134,139.934L34.903,139.537L34.508,139.31L34.934,139.288L35.218,138.443L35.222,138.22L35.959,138.391L36.87,138.375L37.163,138.285L37.587,137.98L37.959,137.512L38.141,137.139L38.078,137.003L38.276,136.789L38.186,136.695L38.726,136.171L38.759,136.033L39.024,135.814L39.307,135.488L39.455,135.666L39.273,135.649L39.28,135.831L39.1,135.818L39.271,135.858L39.482,135.664L39.647,135.698L40.221,135.443L40.764,134.963L40.938,135.011L40.915,135.262L40.713,135.61L40.915,135.495L40.994,135.258L40.938,134.944L40.782,134.925L41.178,134.553L41.579,134.436L41.42,134.548L41.692,134.661L42.397,134.573L42.666,134.472L43.097,134.09L43.458,133.568L43.605,133.447L43.775,133.623L44.026,133.69L43.987,133.878L44.281,133.806L44.453,134.073L44.274,134.296L44.02,134.34L44.056,134.635L44.463,134.653L44.452,134.387L44.991,134.053L45.187,134.282L45.109,134.531L45.495,134.802L45.69,134.544L46.31,134.443L46.616,134.58L46.748,134.525L47.031,134.65L46.84,134.983L46.884,135.155L47.174,135.212L46.745,135.308L47.468,135.27L47.328,135.552L47.575,135.525L47.87,135.693L47.931,135.511L48.301,135.46L48.287,135.716L48.754,135.486L48.93,135.292L49.494,135.307L49.765,135.499L50.055,135.542L50.083,135.665L50.281,135.571L50.646,135.811L51.152,135.943L51.668,135.806L52.113,135.882L52.228,135.789L52.757,136.126L53.275,136.103L53.364,135.976L54.359,135.601L54.758,135.7L55.114,135.897L55.249,136.067L55.719,136.161L56.042,136.426L56.154,136.286L56.337,136.341L56.855,138.951L58.06,145.031L59.862,154.123L60.554,157.615L60.593,157.812L61.181,157.901L61.208,157.683L61.816,157.859L62.065,157.435L62.753,157.24L62.749,157.88L62.966,158.056L63.41,158.167L63.575,158.462L65.043,159.377L65.314,159.937L65.33,160.124L65.996,159.335L66.275,159.246L66.325,159.003L66.211,158.531L66.414,158.479L66.425,158.244L66.272,158.187L66.692,157.92L66.915,157.694L67.142,157.459L67.489,157.61L67.809,157.841L67.814,158.175L67.945,158.335L68.075,158.458L68.393,158.441L68.452,158.564L68.72,158.633L69.002,158.954L69.162,159.164L69.74,159.309L69.981,159.523L70.491,159.81L70.421,159.938L70.931,160.356L71.165,160.657L71.516,160.94L72.146,161.583L72.484,161.835L72.73,162.094L72.678,162.41L73.102,162.38L73.133,162.796L73.494,162.84L73.697,163.285L73.997,163.148L74.787,163.387L75.167,163.342L75.44,163.492L75.648,163.475L75.779,163.681L76.036,163.699L76.195,163.573L76.413,163.78L76.497,164.001L76.423,164.383L76.603,164.766L77.047,165.363L76.965,165.619L76.928,166.181L76.703,166.719L76.527,166.847L76.378,166.707L76.387,166.901L76.235,166.867L76.12,166.594L75.724,166.065L75.898,165.712L75.541,164.84L74.915,164.329L74.739,164.508L74.672,164.417L74.351,164.854L74.173,164.931L74.381,165.012L74.372,165.785L74.034,165.682L73.827,165.382L73.874,165.358L73.936,164.795L74.028,164.73L73.865,164.284L74.083,164.128L73.845,164.126L73.675,163.906L73.537,163.918L73.106,163.648L73.133,163.308L72.889,163.381L72.79,163.232L72.38,163.138L72.049,162.866L72.244,162.771L71.685,162.738L71.632,162.547L71.521,162.751L71.227,162.672L71.186,162.391L71.586,162.228L71.221,162.262L71.226,162.102L71.001,162.006L71.022,161.715L70.877,161.826L70.723,161.728L70.762,161.462L71.35,161.633L70.946,161.403L70.734,161.375L70.658,161.105L70.68,161.028L70.7,160.987L70.621,161.224L70.573,161.355L70.534,161.351L70.279,161.061L69.921,160.81L69.784,160.41L69.878,160.281L69.77,160.112L69.684,160.371L69.775,160.487L69.666,160.628L69.206,160.393L68.945,160.427L68.8,160.173L68.5,159.851L68.294,159.153L68.281,159.156L68.385,159.433L68.365,159.719L68.133,159.483L68.026,159.225L67.583,158.454L67.538,158.438L67.546,158.761L67.402,158.741L67.702,159.006L67.768,159.315L68.074,159.686L68.214,159.996L68.577,160.598L68.61,160.865L68.391,160.935L68.2,160.77L67.963,160.407L68.034,160.685L67.853,160.613L67.544,160.814Z" + }, + { + "fill": "rgb(65, 177, 194)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.152; geo: [object Object]; name: Alaska", + "shape": "M7.208,172.472L6.987,171.876L6.674,171.551L6.701,171.463L7.065,171.8L7.304,172.409ZM13.561,173.982L13.569,173.658L13.763,173.703L13.721,173.904ZM13.865,173.986L13.799,173.825L13.929,173.737ZM14.185,173.908L14.026,173.744L14.196,173.748ZM11.312,173.492L11.102,173.228L11.356,173.195L11.099,172.734L11.178,172.674L11.511,172.769L11.507,172.929L11.841,173.14L11.597,173.121ZM12.369,173.603L12.137,173.459L11.697,173.347L12.33,173.405L12.458,173.36L12.556,173.121L12.697,173.16L12.446,173.639ZM6.725,170.86L6.726,170.662L6.887,170.815ZM12.64,173.999L12.636,173.823L12.846,173.752L12.856,173.537L13.063,173.627L13.168,173.256L13.484,173.302L13.266,173.619L13.504,173.651L13.479,173.914L13.351,173.835L13.222,173.963L12.829,173.953L12.893,173.76ZM8.188,171.56L8.059,171.381L8.116,171.247L8.371,171.245L8.487,171.426ZM14.134,173.59L14.009,173.316L14.264,173.295ZM5.075,170.306L4.995,170.095L5.305,170.021L5.453,170.072L5.695,169.832L5.822,169.917L5.548,170.116L5.478,170.269L5.306,170.143ZM17.731,174.618L17.501,174.425L17.279,174.437L17.043,174.181L17.264,174.187L17.972,174.539L18.218,174.553L18.527,174.682L18.246,174.676L17.783,174.572ZM19.21,174.508L19.1,174.457L19.216,174.262L19.422,174.217L19.586,174.415ZM15.503,173.971L15.469,173.891L15.861,173.847L16.001,173.938L16.399,173.923L16.879,173.75L16.731,173.599L16.826,173.471L17.091,173.452L17.244,173.796L17.085,173.925L16.926,173.858L16.992,174.135L16.548,174.055L16.469,174.185L16.266,174.051L16.139,174.121L15.636,173.934ZM0.869,166.844L0.863,166.746L0.55,166.543L1.077,166.54L0.967,166.892ZM21.821,174.509L21.844,174.278L22.126,174.208L22.105,174.435ZM23.437,174.349L23.277,174.183L23.102,174.231L23.105,174.07L23.513,174.097ZM0.359,165.533L0.25,165.294L0.317,165.161L0.137,165.097L0.215,164.976L0,164.859L0.322,164.823L0.669,165.101L0.885,165.161L0.882,165.371L1.052,165.442L0.935,165.65L0.746,165.624L0.642,165.461ZM24.339,174.42L24.92,173.939L24.922,173.765L25.243,173.562L25.587,173.67L25.492,173.49L25.569,173.301L25.872,173.097L26.199,173.077L26.48,173.253L26.343,173.537L25.686,173.737L25.329,174.108L24.904,174.283ZM28.723,173.248L28.621,173.034L28.914,172.927L28.886,173.11ZM26.524,173.926L26.343,173.708L26.546,173.576L26.683,173.634L26.87,173.503L27.064,173.632L27.142,173.476L27.461,173.468L27.377,173.226L27.607,173.225L27.574,173.03L28.051,173.064L27.656,172.923L27.495,172.715L27.642,172.512L27.924,172.417L28.219,172.407L28.309,172.566L28.219,172.85L28.749,172.592L28.835,172.73L28.202,173.125L28.595,173.037L28.622,173.274L28.292,173.296L28.007,173.637L27.842,173.537L27.506,173.604ZM30.463,172.696L30.238,172.602L30.631,172.557ZM29.308,172.571L29.093,172.508L29.033,172.312L29.255,172.116L29.554,172.349L29.61,172.484ZM29.771,172.483L29.68,172.092L29.96,172.06L29.849,172.237L30.018,172.274ZM33.865,172.488L33.588,172.259L33.66,172.17L33.901,172.29ZM74.081,167.735L73.738,167.425L74.01,167.461ZM34.409,171.47L34.277,171.318L34.441,171.103L34.554,171.17ZM75.662,166.938L75.407,166.799L75.671,166.574L75.8,166.777ZM31.122,172.033L30.865,171.928L30.819,171.49L31.141,171.393L31.418,170.93L31.611,170.825L31.831,170.926L32.367,170.688L32.854,170.725L33.036,171.472L33.227,171.439L33.273,171.639L32.875,171.532L32.87,171.674L32.632,171.75L32.352,171.642L31.965,171.621L31.6,171.774L31.452,171.989ZM38.285,171.606L38.386,171.371L38.461,171.527ZM35.242,171.036L35.067,170.757L35.401,170.884ZM73.762,167.251L73.575,167.223L73.618,167.062L73.458,166.946L73.512,166.819L73.814,167.101ZM38.058,171.36L38.167,171.221L38.16,170.957L38.265,171.137ZM74.023,167.962L73.872,167.956L73.261,167.524L73.074,167.198L72.995,166.877L73.097,166.801L73.494,167.286L73.548,167.451L73.861,167.611ZM75.233,166.742L75.143,166.675L75.199,166.369L75.03,166.12L75.438,166.234L75.507,166.531ZM37.226,171.694L37.486,171.198L37.52,170.929L37.726,171.064L37.589,171.291L37.299,171.538ZM72.854,167.019L72.715,167.04L72.642,166.781L72.763,166.704L72.949,166.844ZM37.166,170.793L36.93,170.594L37.179,170.514ZM36.491,171.021L36.515,170.503L36.68,170.352L36.788,170.428L36.991,170.909L36.887,171.032L36.596,170.851ZM74.938,166.512L74.789,166.407L74.58,165.905L74.907,166.043ZM72.477,167.054L72.372,166.959L72.363,166.646L72.573,166.69L72.462,166.817ZM37.444,170.505L37.221,170.325L37.474,170.335ZM72.448,166.599L72.328,166.584L72.392,166.373L72.569,166.506ZM72.086,166.688L72.161,166.467L72.312,166.375L72.272,166.627ZM72.656,166.481L72.479,166.333L72.602,166.203ZM72.272,165.998L71.997,165.868L72.141,165.695L72.466,165.749ZM43.521,170.008L43.326,169.856L43.586,169.674ZM72.554,165.713L72.404,165.617L72.384,165.416L72.528,165.494ZM71.232,166.005L71.174,165.767L71.372,165.735ZM75.569,166.131L75.372,166.022L75.191,166.055L75.296,165.636L75.237,165.597L75.059,166.057L74.582,165.838L74.721,165.411L74.581,165.384L74.436,164.925L74.644,164.862L74.53,164.736L74.9,164.424L75.245,164.66L75.563,165.054L75.701,165.915ZM71.882,165.613L71.723,165.531L71.837,165.112L72.059,164.912L72.239,164.888L72.335,165.188L72.224,165.18ZM73.587,165.027L73.345,164.738L73.092,164.839L72.901,164.502L73.031,164.404L73.033,164.174L73.255,164.161L73.267,164.403L73.5,164.362L73.75,164.499L73.655,164.672L73.826,164.838ZM72.792,165.04L72.79,165.034L72.848,164.986L73.227,165.127L73.531,165.363L73.588,165.637L73.772,165.62L73.928,165.828L74.187,165.954L73.71,165.866L73.534,165.761L73.634,166.031L73.81,165.94L74.232,166.16L74.387,166.361L74.22,166.541L74.44,166.514L74.475,166.305L74.605,166.536L74.545,166.999L74.705,166.855L74.831,167.133L74.905,167.586L74.533,167.66L74.479,167.392L74.073,167.113L74.103,167.279L73.839,166.781L73.722,166.886L73.317,166.703L72.924,166.796L72.899,166.564L73.187,166.567L73.089,166.343L72.917,166.37L72.898,165.973L72.674,166.161L72.502,166.11L72.495,165.901L72.667,165.571L72.49,165.453L72.269,164.876L71.856,164.937L71.693,164.734L71.683,164.549L71.92,164.555L72.211,164.438L72.534,164.72L72.597,165.051ZM72.699,164.533L72.381,164.387L72.439,164.071L72.7,163.972L72.896,164.073L72.929,164.351ZM73.583,164.359L73.287,164.214L73.107,163.753L73.256,163.772L73.517,163.99L73.655,163.918L73.898,164.208L73.77,164.454ZM45.565,168.253L45.542,168.135L45.783,168.09ZM41.497,168.094L41.439,167.948L41.656,167.967ZM44.643,168.468L44.735,168.179L44.931,168.025L45.022,168.214ZM45.528,168.049L45.421,168.226L45.185,168.22L45.343,167.978ZM25.67,165.804L25.49,165.559L25.853,165.696ZM72.925,163.531L72.795,163.376L73.04,163.351ZM72.576,163.923L72.402,163.944L72.354,163.634L72.152,163.3L72.347,163.258L72.849,163.61ZM71.103,163.771L71.031,163.648L71.25,163.653L71.291,164.075L71.234,164.314L71.424,164.687L71.372,164.848L71.445,165.272L71.385,165.316L71.167,165.024L71.296,165.553L71.127,165.438L70.855,164.821L70.918,164.565L71.153,164.76L70.983,164.429L70.669,164.355L70.694,164.247L70.458,164.026L70.358,163.778L70.54,163.491L70.842,163.567ZM71.316,163.755L71.051,163.419L70.687,163.208L70.836,162.993L71.484,163.01L71.847,162.897L72.052,163.024L72.307,163.594L72.268,163.757L71.663,163.359L71.955,163.737L72.129,163.763L72.22,163.968L72.129,164.186L71.802,164.154L71.845,164.26L71.583,164.385ZM46.514,167.086L46.407,166.815L46.628,166.571L47.067,166.699L46.667,166.844ZM25.105,164.277L25.002,164.053L25.411,164.032ZM68.541,163.942L68.445,163.718L68.54,163.498L68.407,163.516L68.288,163.158L68.481,163.141L68.755,163.487L68.763,163.818ZM69.656,164.245L69.462,164.32L69.445,164.112L69.197,164.168L69.109,163.894L69.209,163.645L68.985,163.546L68.931,163.194L68.729,163.281L68.463,163.027L68.717,162.991L68.534,162.913L68.635,162.524L68.805,162.676L68.961,162.597L69.268,162.728L69.456,162.645L69.573,162.88L69.42,162.828L69.654,163.152L70.177,164.102L70.458,165.183L70.516,165.378L70.283,165.268L69.578,164.404ZM47.667,164.962L47.464,164.879L47.577,164.748ZM46.616,165.184L46.238,164.926L46.281,164.765L46.514,164.936ZM45.455,167.675L45.543,167.433L45.818,167.156L45.672,167.171L45.772,166.792L45.53,167.138L45.447,167.077L45.53,166.784L45.339,166.689L45.033,166.772L45.141,166.954L45.247,166.81L45.489,166.77L45.474,167.171L45.3,167.22L44.962,167.085L44.956,166.634L44.849,166.434L44.694,166.413L44.624,166.242L44.84,165.864L45.181,165.559L45.621,165.548L45.644,165.774L45.903,166.316L45.856,165.808L45.964,165.772L45.779,165.587L46.017,165.482L45.756,165.401L45.707,165.154L45.983,164.983L46.163,165.103L46.187,165.366L46.279,165.085L46.616,165.197L46.582,164.959L46.825,165.138L46.535,164.807L46.95,164.816L47.121,164.902L46.999,165.103L47.21,165.128L47.326,164.889L47.542,164.946L47.703,165.13L47.524,165.353L47.553,165.637L47.944,165.584L47.717,166.052L47.531,166.052L47.206,165.863L47.031,165.913L47.374,166.105L47.266,166.403L47.126,166.428L46.878,166.259L46.963,166.469L46.6,166.531L46.32,166.803L46.165,166.847L46.088,167.028L46.212,167.079L45.759,167.612ZM67.232,162.207L67.057,162.091L66.989,161.666L67.268,161.795ZM46.927,164.748L46.577,164.591L46.35,164.572L46.539,164.368L46.754,164.498ZM68.03,161.496L67.948,161.664L68.11,161.663L68.304,161.178L68.401,161.211L68.888,161.246L68.995,161.39L68.955,161.614L68.643,161.55L69.071,161.788L68.749,161.948L68.513,161.839L67.806,161.671L68.012,161.809L68.268,161.829L68.794,162.118L68.908,161.947L69.113,161.883L69.321,162.221L69.388,162.528L69.119,162.606L68.34,162.261L68.016,162.186L68.468,162.482L68.566,162.744L68.435,163.043L67.72,162.566L67.59,162.294L67.443,162.286L67.366,162.206L67.314,162.221L67.285,162.231L67.267,161.808L67.756,162.089L67.762,162.076L67.653,162.037L67.076,161.581L67.214,161.293L67.307,161.432L67.379,161.243L67.592,161.217L67.744,160.987L68.047,161.084L68.167,161.33ZM69.593,160.679L69.226,160.702L69.055,160.547L69.193,160.425ZM69.075,160.755L69.127,160.897L69.269,160.771L69.577,160.839L69.585,160.834L69.747,160.712L69.709,160.814L70.316,161.405L70.417,161.683L70.316,161.691L69.89,161.085L69.616,160.904L69.807,161.165L69.678,161.137L70.119,161.662L70.421,161.861L70.526,162.122L70.282,162.158L70.672,162.392L70.575,162.568L70.279,162.44L70.432,162.844L70.139,163.322L69.992,163.373L69.827,162.937L69.927,162.732L69.788,162.569L69.951,162.562L69.738,162.405L69.385,161.9L69.347,161.648L69.065,161.17L69.098,161.065L69.056,160.846L69.058,160.85L69.068,161.073L68.759,160.731L68.66,160.424ZM47.698,163.699L47.844,163.894L48.127,163.909L48.104,164.186L48.002,164.316L47.69,164.106L47.76,164.391L47.401,164.426L47.137,164.547L47.14,164.714L46.84,164.599L46.583,164.327L46.653,164.198L47.049,164.329L46.735,164.1L46.8,164.005L47.128,164.05L46.995,163.76L47.273,163.564L47.489,163.61L47.62,163.956ZM47.273,163.356L47.646,163.199L47.488,163.586L47.307,163.53ZM37.008,162.966L37.068,162.615L37.525,162.432L37.246,162.923ZM46.205,161.603L46.203,161.443L46.418,161.51ZM49.54,161.585L49.568,161.28L49.663,161.391ZM56.651,159.7L56.825,159.341L57.034,159.174ZM52.603,159.836L52.755,159.52L52.754,159.742ZM52.564,159.593L52.449,159.673L52.635,159.307L52.739,159.442ZM52.319,159.682L52.275,159.507L52.535,159.27L52.425,159.646ZM52.837,160.224L52.807,159.991L53.278,159.397L53.532,158.85L53.789,158.824L53.739,159.027L53.531,159.242L53.243,159.77L53.317,159.92ZM31.343,159.276L31.112,158.973L30.893,158.95L30.524,158.533L30.39,158.518L30.095,157.909L30.506,157.942L30.776,158.078L30.835,157.929L31.277,157.724L31.381,157.822L31.69,157.794L31.709,157.966L31.95,157.965L32.153,158.126L32.051,158.414L32.11,159.043L31.591,159.047ZM54.166,158.979L54.075,158.882L54.305,158.656L54.038,158.735L54.13,158.393L54.376,158.364L54.435,158.517L54.752,158.548L54.513,158.68ZM47.861,159.169L48.019,158.752L48.12,158.819ZM52.684,159.07L52.846,158.476L52.995,158.647L52.885,159.293ZM24.697,156.405L24.378,156.266L24.095,155.785L23.983,155.711L24.166,155.496L24.172,155.727L24.309,155.965L24.607,156.144ZM54.582,158.417L54.486,158.272L55.025,158.02L55.014,158.127ZM52.578,158.139L52.457,157.986L52.668,158.039ZM52.309,158.23L52.233,157.93L52.356,157.962ZM33.232,158.311L32.996,158.157L32.843,157.913L33.07,157.69L32.801,157.745L32.601,157.685L33.145,157.263L33.081,157.1L33.314,156.947L33.58,156.914L33.493,157.063L33.963,157.238L33.987,157.51L33.576,157.763L33.667,157.903L33.467,157.972L33.493,158.128ZM52.432,157.851L52.316,157.842L52.357,157.514L52.562,157.74ZM34.066,152.913L34.042,152.489L34.423,152.586ZM35.013,153.321L34.839,152.867L34.365,152.562L34.077,152.438L34.311,151.985L34.695,152.046L34.875,152.326L34.961,152.678L34.942,152.985ZM34.898,152.358L34.673,152.014L34.456,151.876L34.489,151.715L34.767,151.534L35.08,151.521L35.402,151.694L35.578,151.932L35.281,152.121L35.114,152.389ZM36.714,151.094L36.581,150.987L36.903,150.884L36.905,151.074ZM29.125,151.127L28.962,150.584L28.617,150.398L28.695,150.211L28.406,149.844L28.162,149.629L27.742,149.675L27.498,149.816L27.222,149.591L27.183,149.295L27.4,148.943L27.48,148.65L27.615,149.149L27.877,149.168L28.113,149.356L28.695,149.178L28.883,149.256L29.034,149.469L29.019,149.796L29.386,150.004L29.441,150.178L29.994,150.349L30.296,150.535L30.05,150.833L29.603,150.644L29.266,150.879ZM48.345,135.536L48.216,135.37L48.444,135.35ZM67.55,160.543L67.257,160.061L67.068,159.885L67.401,159.624L67.149,159.625L67.096,159.791L66.932,159.473L67.028,159.984L66.923,160.079L66.584,159.96L66.452,159.673L66.385,159.889L66.09,159.808L65.933,159.981L66.267,159.953L66.61,160.056L66.549,160.133L67.065,160.384L67.348,160.749L67.346,160.958L67.036,161.16L66.744,161.079L66.839,161.28L66.716,161.434L66.388,161.216L66.124,161.163L65.413,160.845L64.901,160.485L64.811,160.268L64.449,160.026L64.054,159.951L64.077,159.751L63.841,159.875L62.869,159.493L62.804,159.515L62.267,159.293L62.434,159.144L62.59,158.886L62.366,158.417L62.525,158.201L62.414,158.033L62.218,158.628L61.674,159.056L61.016,159.095L60.274,158.888L60.443,158.587L60.215,158.224L60.08,158.361L60.301,158.537L60.074,158.734L58.878,158.654L58.502,158.713L57.675,158.977L57.411,159.113L56.931,158.823L56.948,158.736L56.531,158.8L56.386,158.61L56.099,158.595L56.21,158.098L56.156,157.829L55.958,158.056L55.857,158.326L55.632,158.555L55.43,158.39L55.134,158.294L54.894,158.369L55.223,157.843L54.777,157.996L54.858,157.77L54.571,158.002L54.478,157.952L54.687,157.73L54.385,157.685L54.28,157.887L54.009,157.905L54.53,157.48L54.449,157.388L54.335,157.574L54.113,157.617L53.872,157.411L53.961,156.992L54.384,156.936L54.285,156.825L53.926,156.935L53.688,157.305L53.437,157.211L53.3,157.269L53.164,157.546L52.994,157.534L52.983,157.125L52.903,157.143L52.745,157.715L52.364,157.504L52.479,157.146L52.646,156.883L52.677,156.659L52.408,157.126L52.341,157.335L52.2,157.082L51.981,157.378L52.218,157.189L52.108,157.48L52.099,157.759L51.901,157.841L51.732,158.043L51.744,158.184L51.9,157.931L52.025,157.894L52.053,158.134L52.157,157.945L52.292,158.268L52.144,158.475L51.967,158.386L51.776,158.58L51.775,158.676L52.001,158.451L52.222,158.562L52.415,158.299L52.588,158.706L52.296,158.885L52.267,159.129L52.467,159.212L52.257,159.445L52.218,159.335L52.132,159.863L51.986,159.68L51.868,159.938L51.336,159.867L51.431,159.683L51.274,159.715L51.165,160.009L51.058,159.631L50.942,159.536L50.985,159.858L50.747,160.076L50.625,159.953L50.625,160.543L50.344,160.379L50.417,160.674L50.248,160.688L50.266,160.859L49.899,161.158L50.015,160.713L49.814,161.168L49.647,160.989L49.669,161.252L49.507,161.263L49.21,161.785L49.159,161.52L49.089,161.772L48.747,161.714L48.325,161.938L48.047,161.724L48.146,161.318L48.427,161.164L48.654,161.2L48.66,161.034L48.97,160.899L48.936,160.794L49.241,160.41L49.08,160.414L48.58,160.809L48.187,160.62L48.14,160.484L48.314,159.876L48.628,159.442L48.656,159.089L48.75,159.034L48.775,158.649L48.59,158.244L48.985,158.072L49.369,157.699L49.706,157.45L49.855,157.631L50.105,157.719L50.427,157.57L50.576,157.663L51.028,157.696L51.274,157.808L51.081,157.577L50.897,157.63L50.456,157.45L50.06,157.152L50.206,157.02L50.43,156.598L50.942,156.327L50.781,156.262L50.489,156.34L50.248,156.588L50.145,156.949L49.623,156.964L49.374,156.821L49.324,156.963L49.04,157.115L48.859,157.433L48.486,157.566L48.14,157.926L48.257,158.23L48.087,158.185L47.807,158.574L47.573,158.784L47.671,159.046L47.302,159.459L46.864,159.415L47.167,159.593L47.298,159.862L47.15,160.188L47.029,160.276L46.545,160.317L46.479,160.443L46.778,160.385L46.745,160.721L46.56,160.859L46.38,160.72L46.268,160.48L46.267,160.811L46.12,161.058L45.873,161.103L45.955,161.325L45.506,161.548L45.415,162.068L45.436,162.321L45.557,162.188L45.993,162.184L46.176,162.395L46.437,162.54L46.469,162.697L46.534,162.694L46.438,162.696L46.307,163.041L46.037,163.268L45.757,163.286L45.679,163.565L45.525,163.57L45.644,163.792L45.198,164.049L45.45,163.974L45.449,164.169L45.164,164.484L44.876,164.422L44.927,164.65L44.362,164.644L44.263,165.02L44.071,164.988L44.026,165.267L43.894,165.361L43.606,165.189L43.635,165.487L43.494,165.53L43.452,165.746L43.066,165.701L43.079,165.994L42.942,165.914L42.68,166.033L42.396,166.347L42.64,166.258L42.636,166.639L42.297,166.899L42.378,167.038L42.128,167.004L42.045,167.214L41.94,167.098L41.674,167.401L41.554,167.306L41.521,167.517L41.306,167.284L41.178,167.364L41.072,167.71L41.167,167.833L40.888,167.856L40.818,167.695L40.597,167.757L40.303,168.01L40.664,167.951L40.638,168.156L40.288,168.023L40.288,168.17L40.032,168.099L39.593,168.584L40.008,168.471L40.166,168.559L39.932,168.694L39.816,169.242L39.715,169.268L39.624,169.018L39.695,168.803L39.516,168.952L39.552,169.24L39.259,169.176L39.051,169.429L38.968,169.342L38.597,169.424L38.505,169.624L38.469,169.369L38.337,169.414L38.386,169.686L38.272,169.962L38.082,169.896L38.236,169.548L37.976,169.423L37.765,169.503L37.637,169.763L37.166,169.946L36.952,170.226L36.877,169.97L36.777,170.244L36.619,170.248L36.528,170.061L36.335,170.246L35.996,170.407L35.64,170.353L35.703,170.059L35.892,169.868L35.83,169.737L35.6,169.74L35.398,169.992L35.415,170.22L35.108,170.611L34.907,170.558L34.96,170.879L34.821,170.941L34.687,170.733L34.65,170.949L34.345,170.976L34.216,170.765L34.268,170.443L34.002,170.4L34.119,170.617L34.01,171.004L33.82,171.148L33.639,171.077L33.557,170.75L33.324,170.607L33.26,170.818L33.495,171.063L33.013,171.326L33.143,170.955L33.156,170.693L33.33,170.529L33.783,170.55L33.787,170.346L33.966,170.306L34.125,170.128L34.308,170.166L34.28,169.934L34.744,169.456L35.382,169.072L36.041,168.956L36.356,169.062L36.629,168.951L36.635,169.113L36.402,169.171L36.675,169.608L36.712,169.248L37.081,169.309L37.141,169.515L37.382,169.581L37.44,169.418L37.083,169.14L37.032,168.985L37.396,168.342L38.108,167.811L38.779,167.57L39.369,167.121L39.367,167.142L39.355,167.302L39.702,167.43L39.646,166.908L40.173,166.214L40.441,166.076L40.68,165.801L40.958,165.605L41.153,165.853L41.119,165.481L41,165.501L41.001,165.24L41.2,164.31L41.428,164.202L41.264,163.938L41.373,163.47L41.651,163.18L41.93,162.929L42.021,162.54L41.977,162.38L41.806,162.597L41.324,162.823L40.586,163.108L40.382,163.008L40.35,162.828L40.097,162.633L40.175,162.516L40.217,162.091L40.054,162.369L39.872,162.423L39.817,162.765L39.479,162.502L39.681,162.706L39.818,163.176L39.889,163.355L39.756,163.542L39.447,163.496L39.091,162.653L38.799,162.439L38.888,162.321L38.691,162.232L38.615,162.505L38.474,162.565L38.319,162.295L38.088,162.259L38.105,162.03L37.969,161.859L37.365,162.244L37.125,162.285L37.077,162.322L36.735,162.49L36.653,162.668L36.178,162.863L36.247,162.717L35.823,162.656L35.706,162.573L36.122,162.548L36.257,162.26L36.26,161.904L36.579,161.586L36.273,161.53L36.155,161.608L36.047,161.249L36.18,160.896L36.497,160.651L36.352,160.318L36.281,159.917L36.155,159.694L36.048,159.191L36.125,159.047L35.85,158.658L36.031,158.52L36.205,158.065L36.166,157.979L35.932,158.411L35.719,158.604L35.717,158.845L35.829,158.922L35.709,159.367L35.407,159.342L35.383,159.459L34.841,159.629L34.419,159.662L33.99,159.592L33.804,159.496L33.716,159.205L33.833,159.164L33.564,158.877L33.32,158.314L33.483,157.98L33.664,157.925L33.581,157.76L33.771,157.749L33.912,157.569L34.081,157.552L34.347,157.303L34.493,157.462L34.407,157.706L34.526,157.834L34.898,157.53L34.772,157.311L34.363,157.143L34.522,157.073L34.673,157.169L34.824,157.096L34.552,156.983L34.344,157.131L34.354,156.686L34.133,156.886L34.193,157.063L33.673,157.055L33.572,156.834L33.373,156.888L33.343,156.768L33.028,156.774L32.983,156.623L33.27,156.565L33.501,156.408L33.252,156.372L33.212,156.49L32.914,156.162L32.838,156.36L32.634,156.302L32.595,155.964L32.665,155.847L32.387,155.709L32.392,155.473L32.585,155.356L32.431,155.151L32.232,155.17L32.216,154.925L32.619,154.891L32.396,154.74L32.335,154.541L32.887,154.541L32.79,154.276L32.931,153.84L33.516,153.214L33.765,153.025L33.98,153.079L34.398,152.695L34.709,152.801L35.028,153.406L34.961,152.988L35.009,152.776L34.864,152.524L34.895,152.376L35.225,152.344L35.291,152.133L35.595,151.95L35.749,152.161L36.073,152.132L36.331,151.839L36.615,151.708L36.909,151.315L36.979,151.118L37.276,151.287L37.114,151.399L37.579,151.374L37.774,151.422L38.179,151.349L38.635,150.766L38.64,150.571L38.526,150.093L38.535,149.653L38.282,149.275L38.04,149.212L38.209,148.912L38.49,149.041L38.813,148.776L38.843,148.549L38.751,148.29L38.562,148.134L38.667,148.024L38.507,148.014L38.28,148.342L38.091,148.409L37.963,148.302L37.727,148.456L37.449,148.478L37.375,148.609L37.04,148.78L36.889,149.118L36.724,149.226L36.72,148.82L36.424,148.42L36.243,148.546L36.446,148.763L36.434,148.987L35.992,148.559L35.232,148.461L34.899,148.568L34.885,148.496L34.527,148.637L34.233,148.459L33.418,148.103L33.236,147.895L33.227,147.539L33.357,147.352L33.107,147.065L33.026,146.737L33.287,146.77L33.546,146.488L33.842,146.611L33.993,147.009L34.145,147.109L34.407,146.952L34.292,146.826L34.011,146.752L33.939,146.831L33.841,146.561L33.603,146.375L33.132,146.14L32.61,145.973L32.35,145.674L32.051,145.434L32.381,145.189L32.578,145.228L32.619,145.032L32.967,144.848L33.036,145.01L33.359,144.857L33.619,144.564L34.071,144.417L34.219,144.595L34.615,144.654L34.737,144.574L34.422,144.336L34.571,144.159L34.899,144.017L35.318,144.057L35.64,143.802L35.929,143.763L36.409,143.808L36.514,143.923L36.346,144.298L36.355,144.554L36.241,144.676L36.355,145.047L36.597,145.043L36.974,145.144L37.311,145.132L37.65,145.316L37.886,145.225L38.068,145.35L38.098,145.527L38.483,144.917L39.019,144.998L38.908,144.753L38.552,144.556L38.188,144.606L38.248,144.246L38.006,143.782L37.733,143.651L37.663,143.386L37.811,143.176L37.96,143.19L38.196,143.61L38.111,143.916L38.233,144.173L38.516,144.453L38.913,144.264L39.231,144.696L39.744,144.705L39.804,144.392L39.693,144.177L39.411,144.196L39.276,144.026L38.976,144.027L38.795,144.291L38.623,144.259L38.307,143.778L38.428,143.405L38.584,143.245L38.743,143.252L38.462,143.007L37.845,143.091L37.614,142.894L37.42,142.922L36.775,142.656L36.704,141.909L36.573,141.472L36.24,141.117L35.619,140.288L35.134,139.934L34.903,139.537L34.508,139.31L34.934,139.288L35.218,138.443L35.222,138.22L35.959,138.391L36.87,138.375L37.163,138.285L37.587,137.98L37.959,137.512L38.141,137.139L38.078,137.003L38.276,136.789L38.186,136.695L38.726,136.171L38.759,136.033L39.024,135.814L39.307,135.488L39.455,135.666L39.273,135.649L39.28,135.831L39.1,135.818L39.271,135.858L39.482,135.664L39.647,135.698L40.221,135.443L40.764,134.963L40.938,135.011L40.915,135.262L40.713,135.61L40.915,135.495L40.994,135.258L40.938,134.944L40.782,134.925L41.178,134.553L41.579,134.436L41.42,134.548L41.692,134.661L42.397,134.573L42.666,134.472L43.097,134.09L43.458,133.568L43.605,133.447L43.775,133.623L44.026,133.69L43.987,133.878L44.281,133.806L44.453,134.073L44.274,134.296L44.02,134.34L44.056,134.635L44.463,134.653L44.452,134.387L44.991,134.053L45.187,134.282L45.109,134.531L45.495,134.802L45.69,134.544L46.31,134.443L46.616,134.58L46.748,134.525L47.031,134.65L46.84,134.983L46.884,135.155L47.174,135.212L46.745,135.308L47.468,135.27L47.328,135.552L47.575,135.525L47.87,135.693L47.931,135.511L48.301,135.46L48.287,135.716L48.754,135.486L48.93,135.292L49.494,135.307L49.765,135.499L50.055,135.542L50.083,135.665L50.281,135.571L50.646,135.811L51.152,135.943L51.668,135.806L52.113,135.882L52.228,135.789L52.757,136.126L53.275,136.103L53.364,135.976L54.359,135.601L54.758,135.7L55.114,135.897L55.249,136.067L55.719,136.161L56.042,136.426L56.154,136.286L56.337,136.341L56.855,138.951L58.06,145.031L59.862,154.123L60.554,157.615L60.593,157.812L61.181,157.901L61.208,157.683L61.816,157.859L62.065,157.435L62.753,157.24L62.749,157.88L62.966,158.056L63.41,158.167L63.575,158.462L65.043,159.377L65.314,159.937L65.33,160.124L65.996,159.335L66.275,159.246L66.325,159.003L66.211,158.531L66.414,158.479L66.425,158.244L66.272,158.187L66.692,157.92L66.915,157.694L67.142,157.459L67.489,157.61L67.809,157.841L67.814,158.175L67.945,158.335L68.075,158.458L68.393,158.441L68.452,158.564L68.72,158.633L69.002,158.954L69.162,159.164L69.74,159.309L69.981,159.523L70.491,159.81L70.421,159.938L70.931,160.356L71.165,160.657L71.516,160.94L72.146,161.583L72.484,161.835L72.73,162.094L72.678,162.41L73.102,162.38L73.133,162.796L73.494,162.84L73.697,163.285L73.997,163.148L74.787,163.387L75.167,163.342L75.44,163.492L75.648,163.475L75.779,163.681L76.036,163.699L76.195,163.573L76.413,163.78L76.497,164.001L76.423,164.383L76.603,164.766L77.047,165.363L76.965,165.619L76.928,166.181L76.703,166.719L76.527,166.847L76.378,166.707L76.387,166.901L76.235,166.867L76.12,166.594L75.724,166.065L75.898,165.712L75.541,164.84L74.915,164.329L74.739,164.508L74.672,164.417L74.351,164.854L74.173,164.931L74.381,165.012L74.372,165.785L74.034,165.682L73.827,165.382L73.874,165.358L73.936,164.795L74.028,164.73L73.865,164.284L74.083,164.128L73.845,164.126L73.675,163.906L73.537,163.918L73.106,163.648L73.133,163.308L72.889,163.381L72.79,163.232L72.38,163.138L72.049,162.866L72.244,162.771L71.685,162.738L71.632,162.547L71.521,162.751L71.227,162.672L71.186,162.391L71.586,162.228L71.221,162.262L71.226,162.102L71.001,162.006L71.022,161.715L70.877,161.826L70.723,161.728L70.762,161.462L71.35,161.633L70.946,161.403L70.734,161.375L70.658,161.105L70.68,161.028L70.7,160.987L70.621,161.224L70.573,161.355L70.534,161.351L70.279,161.061L69.921,160.81L69.784,160.41L69.878,160.281L69.77,160.112L69.684,160.371L69.775,160.487L69.666,160.628L69.206,160.393L68.945,160.427L68.8,160.173L68.5,159.851L68.294,159.153L68.281,159.156L68.385,159.433L68.365,159.719L68.133,159.483L68.026,159.225L67.583,158.454L67.538,158.438L67.546,158.761L67.402,158.741L67.702,159.006L67.768,159.315L68.074,159.686L68.214,159.996L68.577,160.598L68.61,160.865L68.391,160.935L68.2,160.77L67.963,160.407L68.034,160.685L67.853,160.613L67.544,160.814Z" + }, + { + "fill": "rgb(40, 147, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.187; geo: [object Object]; name: Alaska", + "shape": "M7.208,172.472L6.987,171.876L6.674,171.551L6.701,171.463L7.065,171.8L7.304,172.409ZM13.561,173.982L13.569,173.658L13.763,173.703L13.721,173.904ZM13.865,173.986L13.799,173.825L13.929,173.737ZM14.185,173.908L14.026,173.744L14.196,173.748ZM11.312,173.492L11.102,173.228L11.356,173.195L11.099,172.734L11.178,172.674L11.511,172.769L11.507,172.929L11.841,173.14L11.597,173.121ZM12.369,173.603L12.137,173.459L11.697,173.347L12.33,173.405L12.458,173.36L12.556,173.121L12.697,173.16L12.446,173.639ZM6.725,170.86L6.726,170.662L6.887,170.815ZM12.64,173.999L12.636,173.823L12.846,173.752L12.856,173.537L13.063,173.627L13.168,173.256L13.484,173.302L13.266,173.619L13.504,173.651L13.479,173.914L13.351,173.835L13.222,173.963L12.829,173.953L12.893,173.76ZM8.188,171.56L8.059,171.381L8.116,171.247L8.371,171.245L8.487,171.426ZM14.134,173.59L14.009,173.316L14.264,173.295ZM5.075,170.306L4.995,170.095L5.305,170.021L5.453,170.072L5.695,169.832L5.822,169.917L5.548,170.116L5.478,170.269L5.306,170.143ZM17.731,174.618L17.501,174.425L17.279,174.437L17.043,174.181L17.264,174.187L17.972,174.539L18.218,174.553L18.527,174.682L18.246,174.676L17.783,174.572ZM19.21,174.508L19.1,174.457L19.216,174.262L19.422,174.217L19.586,174.415ZM15.503,173.971L15.469,173.891L15.861,173.847L16.001,173.938L16.399,173.923L16.879,173.75L16.731,173.599L16.826,173.471L17.091,173.452L17.244,173.796L17.085,173.925L16.926,173.858L16.992,174.135L16.548,174.055L16.469,174.185L16.266,174.051L16.139,174.121L15.636,173.934ZM0.869,166.844L0.863,166.746L0.55,166.543L1.077,166.54L0.967,166.892ZM21.821,174.509L21.844,174.278L22.126,174.208L22.105,174.435ZM23.437,174.349L23.277,174.183L23.102,174.231L23.105,174.07L23.513,174.097ZM0.359,165.533L0.25,165.294L0.317,165.161L0.137,165.097L0.215,164.976L0,164.859L0.322,164.823L0.669,165.101L0.885,165.161L0.882,165.371L1.052,165.442L0.935,165.65L0.746,165.624L0.642,165.461ZM24.339,174.42L24.92,173.939L24.922,173.765L25.243,173.562L25.587,173.67L25.492,173.49L25.569,173.301L25.872,173.097L26.199,173.077L26.48,173.253L26.343,173.537L25.686,173.737L25.329,174.108L24.904,174.283ZM28.723,173.248L28.621,173.034L28.914,172.927L28.886,173.11ZM26.524,173.926L26.343,173.708L26.546,173.576L26.683,173.634L26.87,173.503L27.064,173.632L27.142,173.476L27.461,173.468L27.377,173.226L27.607,173.225L27.574,173.03L28.051,173.064L27.656,172.923L27.495,172.715L27.642,172.512L27.924,172.417L28.219,172.407L28.309,172.566L28.219,172.85L28.749,172.592L28.835,172.73L28.202,173.125L28.595,173.037L28.622,173.274L28.292,173.296L28.007,173.637L27.842,173.537L27.506,173.604ZM30.463,172.696L30.238,172.602L30.631,172.557ZM29.308,172.571L29.093,172.508L29.033,172.312L29.255,172.116L29.554,172.349L29.61,172.484ZM29.771,172.483L29.68,172.092L29.96,172.06L29.849,172.237L30.018,172.274ZM33.865,172.488L33.588,172.259L33.66,172.17L33.901,172.29ZM74.081,167.735L73.738,167.425L74.01,167.461ZM34.409,171.47L34.277,171.318L34.441,171.103L34.554,171.17ZM75.662,166.938L75.407,166.799L75.671,166.574L75.8,166.777ZM31.122,172.033L30.865,171.928L30.819,171.49L31.141,171.393L31.418,170.93L31.611,170.825L31.831,170.926L32.367,170.688L32.854,170.725L33.036,171.472L33.227,171.439L33.273,171.639L32.875,171.532L32.87,171.674L32.632,171.75L32.352,171.642L31.965,171.621L31.6,171.774L31.452,171.989ZM38.285,171.606L38.386,171.371L38.461,171.527ZM35.242,171.036L35.067,170.757L35.401,170.884ZM73.762,167.251L73.575,167.223L73.618,167.062L73.458,166.946L73.512,166.819L73.814,167.101ZM38.058,171.36L38.167,171.221L38.16,170.957L38.265,171.137ZM74.023,167.962L73.872,167.956L73.261,167.524L73.074,167.198L72.995,166.877L73.097,166.801L73.494,167.286L73.548,167.451L73.861,167.611ZM75.233,166.742L75.143,166.675L75.199,166.369L75.03,166.12L75.438,166.234L75.507,166.531ZM37.226,171.694L37.486,171.198L37.52,170.929L37.726,171.064L37.589,171.291L37.299,171.538ZM72.854,167.019L72.715,167.04L72.642,166.781L72.763,166.704L72.949,166.844ZM37.166,170.793L36.93,170.594L37.179,170.514ZM36.491,171.021L36.515,170.503L36.68,170.352L36.788,170.428L36.991,170.909L36.887,171.032L36.596,170.851ZM74.938,166.512L74.789,166.407L74.58,165.905L74.907,166.043ZM72.477,167.054L72.372,166.959L72.363,166.646L72.573,166.69L72.462,166.817ZM37.444,170.505L37.221,170.325L37.474,170.335ZM72.448,166.599L72.328,166.584L72.392,166.373L72.569,166.506ZM72.086,166.688L72.161,166.467L72.312,166.375L72.272,166.627ZM72.656,166.481L72.479,166.333L72.602,166.203ZM72.272,165.998L71.997,165.868L72.141,165.695L72.466,165.749ZM43.521,170.008L43.326,169.856L43.586,169.674ZM72.554,165.713L72.404,165.617L72.384,165.416L72.528,165.494ZM71.232,166.005L71.174,165.767L71.372,165.735ZM75.569,166.131L75.372,166.022L75.191,166.055L75.296,165.636L75.237,165.597L75.059,166.057L74.582,165.838L74.721,165.411L74.581,165.384L74.436,164.925L74.644,164.862L74.53,164.736L74.9,164.424L75.245,164.66L75.563,165.054L75.701,165.915ZM71.882,165.613L71.723,165.531L71.837,165.112L72.059,164.912L72.239,164.888L72.335,165.188L72.224,165.18ZM73.587,165.027L73.345,164.738L73.092,164.839L72.901,164.502L73.031,164.404L73.033,164.174L73.255,164.161L73.267,164.403L73.5,164.362L73.75,164.499L73.655,164.672L73.826,164.838ZM72.792,165.04L72.79,165.034L72.848,164.986L73.227,165.127L73.531,165.363L73.588,165.637L73.772,165.62L73.928,165.828L74.187,165.954L73.71,165.866L73.534,165.761L73.634,166.031L73.81,165.94L74.232,166.16L74.387,166.361L74.22,166.541L74.44,166.514L74.475,166.305L74.605,166.536L74.545,166.999L74.705,166.855L74.831,167.133L74.905,167.586L74.533,167.66L74.479,167.392L74.073,167.113L74.103,167.279L73.839,166.781L73.722,166.886L73.317,166.703L72.924,166.796L72.899,166.564L73.187,166.567L73.089,166.343L72.917,166.37L72.898,165.973L72.674,166.161L72.502,166.11L72.495,165.901L72.667,165.571L72.49,165.453L72.269,164.876L71.856,164.937L71.693,164.734L71.683,164.549L71.92,164.555L72.211,164.438L72.534,164.72L72.597,165.051ZM72.699,164.533L72.381,164.387L72.439,164.071L72.7,163.972L72.896,164.073L72.929,164.351ZM73.583,164.359L73.287,164.214L73.107,163.753L73.256,163.772L73.517,163.99L73.655,163.918L73.898,164.208L73.77,164.454ZM45.565,168.253L45.542,168.135L45.783,168.09ZM41.497,168.094L41.439,167.948L41.656,167.967ZM44.643,168.468L44.735,168.179L44.931,168.025L45.022,168.214ZM45.528,168.049L45.421,168.226L45.185,168.22L45.343,167.978ZM25.67,165.804L25.49,165.559L25.853,165.696ZM72.925,163.531L72.795,163.376L73.04,163.351ZM72.576,163.923L72.402,163.944L72.354,163.634L72.152,163.3L72.347,163.258L72.849,163.61ZM71.103,163.771L71.031,163.648L71.25,163.653L71.291,164.075L71.234,164.314L71.424,164.687L71.372,164.848L71.445,165.272L71.385,165.316L71.167,165.024L71.296,165.553L71.127,165.438L70.855,164.821L70.918,164.565L71.153,164.76L70.983,164.429L70.669,164.355L70.694,164.247L70.458,164.026L70.358,163.778L70.54,163.491L70.842,163.567ZM71.316,163.755L71.051,163.419L70.687,163.208L70.836,162.993L71.484,163.01L71.847,162.897L72.052,163.024L72.307,163.594L72.268,163.757L71.663,163.359L71.955,163.737L72.129,163.763L72.22,163.968L72.129,164.186L71.802,164.154L71.845,164.26L71.583,164.385ZM46.514,167.086L46.407,166.815L46.628,166.571L47.067,166.699L46.667,166.844ZM25.105,164.277L25.002,164.053L25.411,164.032ZM68.541,163.942L68.445,163.718L68.54,163.498L68.407,163.516L68.288,163.158L68.481,163.141L68.755,163.487L68.763,163.818ZM69.656,164.245L69.462,164.32L69.445,164.112L69.197,164.168L69.109,163.894L69.209,163.645L68.985,163.546L68.931,163.194L68.729,163.281L68.463,163.027L68.717,162.991L68.534,162.913L68.635,162.524L68.805,162.676L68.961,162.597L69.268,162.728L69.456,162.645L69.573,162.88L69.42,162.828L69.654,163.152L70.177,164.102L70.458,165.183L70.516,165.378L70.283,165.268L69.578,164.404ZM47.667,164.962L47.464,164.879L47.577,164.748ZM46.616,165.184L46.238,164.926L46.281,164.765L46.514,164.936ZM45.455,167.675L45.543,167.433L45.818,167.156L45.672,167.171L45.772,166.792L45.53,167.138L45.447,167.077L45.53,166.784L45.339,166.689L45.033,166.772L45.141,166.954L45.247,166.81L45.489,166.77L45.474,167.171L45.3,167.22L44.962,167.085L44.956,166.634L44.849,166.434L44.694,166.413L44.624,166.242L44.84,165.864L45.181,165.559L45.621,165.548L45.644,165.774L45.903,166.316L45.856,165.808L45.964,165.772L45.779,165.587L46.017,165.482L45.756,165.401L45.707,165.154L45.983,164.983L46.163,165.103L46.187,165.366L46.279,165.085L46.616,165.197L46.582,164.959L46.825,165.138L46.535,164.807L46.95,164.816L47.121,164.902L46.999,165.103L47.21,165.128L47.326,164.889L47.542,164.946L47.703,165.13L47.524,165.353L47.553,165.637L47.944,165.584L47.717,166.052L47.531,166.052L47.206,165.863L47.031,165.913L47.374,166.105L47.266,166.403L47.126,166.428L46.878,166.259L46.963,166.469L46.6,166.531L46.32,166.803L46.165,166.847L46.088,167.028L46.212,167.079L45.759,167.612ZM67.232,162.207L67.057,162.091L66.989,161.666L67.268,161.795ZM46.927,164.748L46.577,164.591L46.35,164.572L46.539,164.368L46.754,164.498ZM68.03,161.496L67.948,161.664L68.11,161.663L68.304,161.178L68.401,161.211L68.888,161.246L68.995,161.39L68.955,161.614L68.643,161.55L69.071,161.788L68.749,161.948L68.513,161.839L67.806,161.671L68.012,161.809L68.268,161.829L68.794,162.118L68.908,161.947L69.113,161.883L69.321,162.221L69.388,162.528L69.119,162.606L68.34,162.261L68.016,162.186L68.468,162.482L68.566,162.744L68.435,163.043L67.72,162.566L67.59,162.294L67.443,162.286L67.366,162.206L67.314,162.221L67.285,162.231L67.267,161.808L67.756,162.089L67.762,162.076L67.653,162.037L67.076,161.581L67.214,161.293L67.307,161.432L67.379,161.243L67.592,161.217L67.744,160.987L68.047,161.084L68.167,161.33ZM69.593,160.679L69.226,160.702L69.055,160.547L69.193,160.425ZM69.075,160.755L69.127,160.897L69.269,160.771L69.577,160.839L69.585,160.834L69.747,160.712L69.709,160.814L70.316,161.405L70.417,161.683L70.316,161.691L69.89,161.085L69.616,160.904L69.807,161.165L69.678,161.137L70.119,161.662L70.421,161.861L70.526,162.122L70.282,162.158L70.672,162.392L70.575,162.568L70.279,162.44L70.432,162.844L70.139,163.322L69.992,163.373L69.827,162.937L69.927,162.732L69.788,162.569L69.951,162.562L69.738,162.405L69.385,161.9L69.347,161.648L69.065,161.17L69.098,161.065L69.056,160.846L69.058,160.85L69.068,161.073L68.759,160.731L68.66,160.424ZM47.698,163.699L47.844,163.894L48.127,163.909L48.104,164.186L48.002,164.316L47.69,164.106L47.76,164.391L47.401,164.426L47.137,164.547L47.14,164.714L46.84,164.599L46.583,164.327L46.653,164.198L47.049,164.329L46.735,164.1L46.8,164.005L47.128,164.05L46.995,163.76L47.273,163.564L47.489,163.61L47.62,163.956ZM47.273,163.356L47.646,163.199L47.488,163.586L47.307,163.53ZM37.008,162.966L37.068,162.615L37.525,162.432L37.246,162.923ZM46.205,161.603L46.203,161.443L46.418,161.51ZM49.54,161.585L49.568,161.28L49.663,161.391ZM56.651,159.7L56.825,159.341L57.034,159.174ZM52.603,159.836L52.755,159.52L52.754,159.742ZM52.564,159.593L52.449,159.673L52.635,159.307L52.739,159.442ZM52.319,159.682L52.275,159.507L52.535,159.27L52.425,159.646ZM52.837,160.224L52.807,159.991L53.278,159.397L53.532,158.85L53.789,158.824L53.739,159.027L53.531,159.242L53.243,159.77L53.317,159.92ZM31.343,159.276L31.112,158.973L30.893,158.95L30.524,158.533L30.39,158.518L30.095,157.909L30.506,157.942L30.776,158.078L30.835,157.929L31.277,157.724L31.381,157.822L31.69,157.794L31.709,157.966L31.95,157.965L32.153,158.126L32.051,158.414L32.11,159.043L31.591,159.047ZM54.166,158.979L54.075,158.882L54.305,158.656L54.038,158.735L54.13,158.393L54.376,158.364L54.435,158.517L54.752,158.548L54.513,158.68ZM47.861,159.169L48.019,158.752L48.12,158.819ZM52.684,159.07L52.846,158.476L52.995,158.647L52.885,159.293ZM24.697,156.405L24.378,156.266L24.095,155.785L23.983,155.711L24.166,155.496L24.172,155.727L24.309,155.965L24.607,156.144ZM54.582,158.417L54.486,158.272L55.025,158.02L55.014,158.127ZM52.578,158.139L52.457,157.986L52.668,158.039ZM52.309,158.23L52.233,157.93L52.356,157.962ZM33.232,158.311L32.996,158.157L32.843,157.913L33.07,157.69L32.801,157.745L32.601,157.685L33.145,157.263L33.081,157.1L33.314,156.947L33.58,156.914L33.493,157.063L33.963,157.238L33.987,157.51L33.576,157.763L33.667,157.903L33.467,157.972L33.493,158.128ZM52.432,157.851L52.316,157.842L52.357,157.514L52.562,157.74ZM34.066,152.913L34.042,152.489L34.423,152.586ZM35.013,153.321L34.839,152.867L34.365,152.562L34.077,152.438L34.311,151.985L34.695,152.046L34.875,152.326L34.961,152.678L34.942,152.985ZM34.898,152.358L34.673,152.014L34.456,151.876L34.489,151.715L34.767,151.534L35.08,151.521L35.402,151.694L35.578,151.932L35.281,152.121L35.114,152.389ZM36.714,151.094L36.581,150.987L36.903,150.884L36.905,151.074ZM29.125,151.127L28.962,150.584L28.617,150.398L28.695,150.211L28.406,149.844L28.162,149.629L27.742,149.675L27.498,149.816L27.222,149.591L27.183,149.295L27.4,148.943L27.48,148.65L27.615,149.149L27.877,149.168L28.113,149.356L28.695,149.178L28.883,149.256L29.034,149.469L29.019,149.796L29.386,150.004L29.441,150.178L29.994,150.349L30.296,150.535L30.05,150.833L29.603,150.644L29.266,150.879ZM48.345,135.536L48.216,135.37L48.444,135.35ZM67.55,160.543L67.257,160.061L67.068,159.885L67.401,159.624L67.149,159.625L67.096,159.791L66.932,159.473L67.028,159.984L66.923,160.079L66.584,159.96L66.452,159.673L66.385,159.889L66.09,159.808L65.933,159.981L66.267,159.953L66.61,160.056L66.549,160.133L67.065,160.384L67.348,160.749L67.346,160.958L67.036,161.16L66.744,161.079L66.839,161.28L66.716,161.434L66.388,161.216L66.124,161.163L65.413,160.845L64.901,160.485L64.811,160.268L64.449,160.026L64.054,159.951L64.077,159.751L63.841,159.875L62.869,159.493L62.804,159.515L62.267,159.293L62.434,159.144L62.59,158.886L62.366,158.417L62.525,158.201L62.414,158.033L62.218,158.628L61.674,159.056L61.016,159.095L60.274,158.888L60.443,158.587L60.215,158.224L60.08,158.361L60.301,158.537L60.074,158.734L58.878,158.654L58.502,158.713L57.675,158.977L57.411,159.113L56.931,158.823L56.948,158.736L56.531,158.8L56.386,158.61L56.099,158.595L56.21,158.098L56.156,157.829L55.958,158.056L55.857,158.326L55.632,158.555L55.43,158.39L55.134,158.294L54.894,158.369L55.223,157.843L54.777,157.996L54.858,157.77L54.571,158.002L54.478,157.952L54.687,157.73L54.385,157.685L54.28,157.887L54.009,157.905L54.53,157.48L54.449,157.388L54.335,157.574L54.113,157.617L53.872,157.411L53.961,156.992L54.384,156.936L54.285,156.825L53.926,156.935L53.688,157.305L53.437,157.211L53.3,157.269L53.164,157.546L52.994,157.534L52.983,157.125L52.903,157.143L52.745,157.715L52.364,157.504L52.479,157.146L52.646,156.883L52.677,156.659L52.408,157.126L52.341,157.335L52.2,157.082L51.981,157.378L52.218,157.189L52.108,157.48L52.099,157.759L51.901,157.841L51.732,158.043L51.744,158.184L51.9,157.931L52.025,157.894L52.053,158.134L52.157,157.945L52.292,158.268L52.144,158.475L51.967,158.386L51.776,158.58L51.775,158.676L52.001,158.451L52.222,158.562L52.415,158.299L52.588,158.706L52.296,158.885L52.267,159.129L52.467,159.212L52.257,159.445L52.218,159.335L52.132,159.863L51.986,159.68L51.868,159.938L51.336,159.867L51.431,159.683L51.274,159.715L51.165,160.009L51.058,159.631L50.942,159.536L50.985,159.858L50.747,160.076L50.625,159.953L50.625,160.543L50.344,160.379L50.417,160.674L50.248,160.688L50.266,160.859L49.899,161.158L50.015,160.713L49.814,161.168L49.647,160.989L49.669,161.252L49.507,161.263L49.21,161.785L49.159,161.52L49.089,161.772L48.747,161.714L48.325,161.938L48.047,161.724L48.146,161.318L48.427,161.164L48.654,161.2L48.66,161.034L48.97,160.899L48.936,160.794L49.241,160.41L49.08,160.414L48.58,160.809L48.187,160.62L48.14,160.484L48.314,159.876L48.628,159.442L48.656,159.089L48.75,159.034L48.775,158.649L48.59,158.244L48.985,158.072L49.369,157.699L49.706,157.45L49.855,157.631L50.105,157.719L50.427,157.57L50.576,157.663L51.028,157.696L51.274,157.808L51.081,157.577L50.897,157.63L50.456,157.45L50.06,157.152L50.206,157.02L50.43,156.598L50.942,156.327L50.781,156.262L50.489,156.34L50.248,156.588L50.145,156.949L49.623,156.964L49.374,156.821L49.324,156.963L49.04,157.115L48.859,157.433L48.486,157.566L48.14,157.926L48.257,158.23L48.087,158.185L47.807,158.574L47.573,158.784L47.671,159.046L47.302,159.459L46.864,159.415L47.167,159.593L47.298,159.862L47.15,160.188L47.029,160.276L46.545,160.317L46.479,160.443L46.778,160.385L46.745,160.721L46.56,160.859L46.38,160.72L46.268,160.48L46.267,160.811L46.12,161.058L45.873,161.103L45.955,161.325L45.506,161.548L45.415,162.068L45.436,162.321L45.557,162.188L45.993,162.184L46.176,162.395L46.437,162.54L46.469,162.697L46.534,162.694L46.438,162.696L46.307,163.041L46.037,163.268L45.757,163.286L45.679,163.565L45.525,163.57L45.644,163.792L45.198,164.049L45.45,163.974L45.449,164.169L45.164,164.484L44.876,164.422L44.927,164.65L44.362,164.644L44.263,165.02L44.071,164.988L44.026,165.267L43.894,165.361L43.606,165.189L43.635,165.487L43.494,165.53L43.452,165.746L43.066,165.701L43.079,165.994L42.942,165.914L42.68,166.033L42.396,166.347L42.64,166.258L42.636,166.639L42.297,166.899L42.378,167.038L42.128,167.004L42.045,167.214L41.94,167.098L41.674,167.401L41.554,167.306L41.521,167.517L41.306,167.284L41.178,167.364L41.072,167.71L41.167,167.833L40.888,167.856L40.818,167.695L40.597,167.757L40.303,168.01L40.664,167.951L40.638,168.156L40.288,168.023L40.288,168.17L40.032,168.099L39.593,168.584L40.008,168.471L40.166,168.559L39.932,168.694L39.816,169.242L39.715,169.268L39.624,169.018L39.695,168.803L39.516,168.952L39.552,169.24L39.259,169.176L39.051,169.429L38.968,169.342L38.597,169.424L38.505,169.624L38.469,169.369L38.337,169.414L38.386,169.686L38.272,169.962L38.082,169.896L38.236,169.548L37.976,169.423L37.765,169.503L37.637,169.763L37.166,169.946L36.952,170.226L36.877,169.97L36.777,170.244L36.619,170.248L36.528,170.061L36.335,170.246L35.996,170.407L35.64,170.353L35.703,170.059L35.892,169.868L35.83,169.737L35.6,169.74L35.398,169.992L35.415,170.22L35.108,170.611L34.907,170.558L34.96,170.879L34.821,170.941L34.687,170.733L34.65,170.949L34.345,170.976L34.216,170.765L34.268,170.443L34.002,170.4L34.119,170.617L34.01,171.004L33.82,171.148L33.639,171.077L33.557,170.75L33.324,170.607L33.26,170.818L33.495,171.063L33.013,171.326L33.143,170.955L33.156,170.693L33.33,170.529L33.783,170.55L33.787,170.346L33.966,170.306L34.125,170.128L34.308,170.166L34.28,169.934L34.744,169.456L35.382,169.072L36.041,168.956L36.356,169.062L36.629,168.951L36.635,169.113L36.402,169.171L36.675,169.608L36.712,169.248L37.081,169.309L37.141,169.515L37.382,169.581L37.44,169.418L37.083,169.14L37.032,168.985L37.396,168.342L38.108,167.811L38.779,167.57L39.369,167.121L39.367,167.142L39.355,167.302L39.702,167.43L39.646,166.908L40.173,166.214L40.441,166.076L40.68,165.801L40.958,165.605L41.153,165.853L41.119,165.481L41,165.501L41.001,165.24L41.2,164.31L41.428,164.202L41.264,163.938L41.373,163.47L41.651,163.18L41.93,162.929L42.021,162.54L41.977,162.38L41.806,162.597L41.324,162.823L40.586,163.108L40.382,163.008L40.35,162.828L40.097,162.633L40.175,162.516L40.217,162.091L40.054,162.369L39.872,162.423L39.817,162.765L39.479,162.502L39.681,162.706L39.818,163.176L39.889,163.355L39.756,163.542L39.447,163.496L39.091,162.653L38.799,162.439L38.888,162.321L38.691,162.232L38.615,162.505L38.474,162.565L38.319,162.295L38.088,162.259L38.105,162.03L37.969,161.859L37.365,162.244L37.125,162.285L37.077,162.322L36.735,162.49L36.653,162.668L36.178,162.863L36.247,162.717L35.823,162.656L35.706,162.573L36.122,162.548L36.257,162.26L36.26,161.904L36.579,161.586L36.273,161.53L36.155,161.608L36.047,161.249L36.18,160.896L36.497,160.651L36.352,160.318L36.281,159.917L36.155,159.694L36.048,159.191L36.125,159.047L35.85,158.658L36.031,158.52L36.205,158.065L36.166,157.979L35.932,158.411L35.719,158.604L35.717,158.845L35.829,158.922L35.709,159.367L35.407,159.342L35.383,159.459L34.841,159.629L34.419,159.662L33.99,159.592L33.804,159.496L33.716,159.205L33.833,159.164L33.564,158.877L33.32,158.314L33.483,157.98L33.664,157.925L33.581,157.76L33.771,157.749L33.912,157.569L34.081,157.552L34.347,157.303L34.493,157.462L34.407,157.706L34.526,157.834L34.898,157.53L34.772,157.311L34.363,157.143L34.522,157.073L34.673,157.169L34.824,157.096L34.552,156.983L34.344,157.131L34.354,156.686L34.133,156.886L34.193,157.063L33.673,157.055L33.572,156.834L33.373,156.888L33.343,156.768L33.028,156.774L32.983,156.623L33.27,156.565L33.501,156.408L33.252,156.372L33.212,156.49L32.914,156.162L32.838,156.36L32.634,156.302L32.595,155.964L32.665,155.847L32.387,155.709L32.392,155.473L32.585,155.356L32.431,155.151L32.232,155.17L32.216,154.925L32.619,154.891L32.396,154.74L32.335,154.541L32.887,154.541L32.79,154.276L32.931,153.84L33.516,153.214L33.765,153.025L33.98,153.079L34.398,152.695L34.709,152.801L35.028,153.406L34.961,152.988L35.009,152.776L34.864,152.524L34.895,152.376L35.225,152.344L35.291,152.133L35.595,151.95L35.749,152.161L36.073,152.132L36.331,151.839L36.615,151.708L36.909,151.315L36.979,151.118L37.276,151.287L37.114,151.399L37.579,151.374L37.774,151.422L38.179,151.349L38.635,150.766L38.64,150.571L38.526,150.093L38.535,149.653L38.282,149.275L38.04,149.212L38.209,148.912L38.49,149.041L38.813,148.776L38.843,148.549L38.751,148.29L38.562,148.134L38.667,148.024L38.507,148.014L38.28,148.342L38.091,148.409L37.963,148.302L37.727,148.456L37.449,148.478L37.375,148.609L37.04,148.78L36.889,149.118L36.724,149.226L36.72,148.82L36.424,148.42L36.243,148.546L36.446,148.763L36.434,148.987L35.992,148.559L35.232,148.461L34.899,148.568L34.885,148.496L34.527,148.637L34.233,148.459L33.418,148.103L33.236,147.895L33.227,147.539L33.357,147.352L33.107,147.065L33.026,146.737L33.287,146.77L33.546,146.488L33.842,146.611L33.993,147.009L34.145,147.109L34.407,146.952L34.292,146.826L34.011,146.752L33.939,146.831L33.841,146.561L33.603,146.375L33.132,146.14L32.61,145.973L32.35,145.674L32.051,145.434L32.381,145.189L32.578,145.228L32.619,145.032L32.967,144.848L33.036,145.01L33.359,144.857L33.619,144.564L34.071,144.417L34.219,144.595L34.615,144.654L34.737,144.574L34.422,144.336L34.571,144.159L34.899,144.017L35.318,144.057L35.64,143.802L35.929,143.763L36.409,143.808L36.514,143.923L36.346,144.298L36.355,144.554L36.241,144.676L36.355,145.047L36.597,145.043L36.974,145.144L37.311,145.132L37.65,145.316L37.886,145.225L38.068,145.35L38.098,145.527L38.483,144.917L39.019,144.998L38.908,144.753L38.552,144.556L38.188,144.606L38.248,144.246L38.006,143.782L37.733,143.651L37.663,143.386L37.811,143.176L37.96,143.19L38.196,143.61L38.111,143.916L38.233,144.173L38.516,144.453L38.913,144.264L39.231,144.696L39.744,144.705L39.804,144.392L39.693,144.177L39.411,144.196L39.276,144.026L38.976,144.027L38.795,144.291L38.623,144.259L38.307,143.778L38.428,143.405L38.584,143.245L38.743,143.252L38.462,143.007L37.845,143.091L37.614,142.894L37.42,142.922L36.775,142.656L36.704,141.909L36.573,141.472L36.24,141.117L35.619,140.288L35.134,139.934L34.903,139.537L34.508,139.31L34.934,139.288L35.218,138.443L35.222,138.22L35.959,138.391L36.87,138.375L37.163,138.285L37.587,137.98L37.959,137.512L38.141,137.139L38.078,137.003L38.276,136.789L38.186,136.695L38.726,136.171L38.759,136.033L39.024,135.814L39.307,135.488L39.455,135.666L39.273,135.649L39.28,135.831L39.1,135.818L39.271,135.858L39.482,135.664L39.647,135.698L40.221,135.443L40.764,134.963L40.938,135.011L40.915,135.262L40.713,135.61L40.915,135.495L40.994,135.258L40.938,134.944L40.782,134.925L41.178,134.553L41.579,134.436L41.42,134.548L41.692,134.661L42.397,134.573L42.666,134.472L43.097,134.09L43.458,133.568L43.605,133.447L43.775,133.623L44.026,133.69L43.987,133.878L44.281,133.806L44.453,134.073L44.274,134.296L44.02,134.34L44.056,134.635L44.463,134.653L44.452,134.387L44.991,134.053L45.187,134.282L45.109,134.531L45.495,134.802L45.69,134.544L46.31,134.443L46.616,134.58L46.748,134.525L47.031,134.65L46.84,134.983L46.884,135.155L47.174,135.212L46.745,135.308L47.468,135.27L47.328,135.552L47.575,135.525L47.87,135.693L47.931,135.511L48.301,135.46L48.287,135.716L48.754,135.486L48.93,135.292L49.494,135.307L49.765,135.499L50.055,135.542L50.083,135.665L50.281,135.571L50.646,135.811L51.152,135.943L51.668,135.806L52.113,135.882L52.228,135.789L52.757,136.126L53.275,136.103L53.364,135.976L54.359,135.601L54.758,135.7L55.114,135.897L55.249,136.067L55.719,136.161L56.042,136.426L56.154,136.286L56.337,136.341L56.855,138.951L58.06,145.031L59.862,154.123L60.554,157.615L60.593,157.812L61.181,157.901L61.208,157.683L61.816,157.859L62.065,157.435L62.753,157.24L62.749,157.88L62.966,158.056L63.41,158.167L63.575,158.462L65.043,159.377L65.314,159.937L65.33,160.124L65.996,159.335L66.275,159.246L66.325,159.003L66.211,158.531L66.414,158.479L66.425,158.244L66.272,158.187L66.692,157.92L66.915,157.694L67.142,157.459L67.489,157.61L67.809,157.841L67.814,158.175L67.945,158.335L68.075,158.458L68.393,158.441L68.452,158.564L68.72,158.633L69.002,158.954L69.162,159.164L69.74,159.309L69.981,159.523L70.491,159.81L70.421,159.938L70.931,160.356L71.165,160.657L71.516,160.94L72.146,161.583L72.484,161.835L72.73,162.094L72.678,162.41L73.102,162.38L73.133,162.796L73.494,162.84L73.697,163.285L73.997,163.148L74.787,163.387L75.167,163.342L75.44,163.492L75.648,163.475L75.779,163.681L76.036,163.699L76.195,163.573L76.413,163.78L76.497,164.001L76.423,164.383L76.603,164.766L77.047,165.363L76.965,165.619L76.928,166.181L76.703,166.719L76.527,166.847L76.378,166.707L76.387,166.901L76.235,166.867L76.12,166.594L75.724,166.065L75.898,165.712L75.541,164.84L74.915,164.329L74.739,164.508L74.672,164.417L74.351,164.854L74.173,164.931L74.381,165.012L74.372,165.785L74.034,165.682L73.827,165.382L73.874,165.358L73.936,164.795L74.028,164.73L73.865,164.284L74.083,164.128L73.845,164.126L73.675,163.906L73.537,163.918L73.106,163.648L73.133,163.308L72.889,163.381L72.79,163.232L72.38,163.138L72.049,162.866L72.244,162.771L71.685,162.738L71.632,162.547L71.521,162.751L71.227,162.672L71.186,162.391L71.586,162.228L71.221,162.262L71.226,162.102L71.001,162.006L71.022,161.715L70.877,161.826L70.723,161.728L70.762,161.462L71.35,161.633L70.946,161.403L70.734,161.375L70.658,161.105L70.68,161.028L70.7,160.987L70.621,161.224L70.573,161.355L70.534,161.351L70.279,161.061L69.921,160.81L69.784,160.41L69.878,160.281L69.77,160.112L69.684,160.371L69.775,160.487L69.666,160.628L69.206,160.393L68.945,160.427L68.8,160.173L68.5,159.851L68.294,159.153L68.281,159.156L68.385,159.433L68.365,159.719L68.133,159.483L68.026,159.225L67.583,158.454L67.538,158.438L67.546,158.761L67.402,158.741L67.702,159.006L67.768,159.315L68.074,159.686L68.214,159.996L68.577,160.598L68.61,160.865L68.391,160.935L68.2,160.77L67.963,160.407L68.034,160.685L67.853,160.613L67.544,160.814Z" + }, + { + "fill": "rgb(42, 152, 190)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.182; geo: [object Object]; name: Alaska", + "shape": "M7.208,172.472L6.987,171.876L6.674,171.551L6.701,171.463L7.065,171.8L7.304,172.409ZM13.561,173.982L13.569,173.658L13.763,173.703L13.721,173.904ZM13.865,173.986L13.799,173.825L13.929,173.737ZM14.185,173.908L14.026,173.744L14.196,173.748ZM11.312,173.492L11.102,173.228L11.356,173.195L11.099,172.734L11.178,172.674L11.511,172.769L11.507,172.929L11.841,173.14L11.597,173.121ZM12.369,173.603L12.137,173.459L11.697,173.347L12.33,173.405L12.458,173.36L12.556,173.121L12.697,173.16L12.446,173.639ZM6.725,170.86L6.726,170.662L6.887,170.815ZM12.64,173.999L12.636,173.823L12.846,173.752L12.856,173.537L13.063,173.627L13.168,173.256L13.484,173.302L13.266,173.619L13.504,173.651L13.479,173.914L13.351,173.835L13.222,173.963L12.829,173.953L12.893,173.76ZM8.188,171.56L8.059,171.381L8.116,171.247L8.371,171.245L8.487,171.426ZM14.134,173.59L14.009,173.316L14.264,173.295ZM5.075,170.306L4.995,170.095L5.305,170.021L5.453,170.072L5.695,169.832L5.822,169.917L5.548,170.116L5.478,170.269L5.306,170.143ZM17.731,174.618L17.501,174.425L17.279,174.437L17.043,174.181L17.264,174.187L17.972,174.539L18.218,174.553L18.527,174.682L18.246,174.676L17.783,174.572ZM19.21,174.508L19.1,174.457L19.216,174.262L19.422,174.217L19.586,174.415ZM15.503,173.971L15.469,173.891L15.861,173.847L16.001,173.938L16.399,173.923L16.879,173.75L16.731,173.599L16.826,173.471L17.091,173.452L17.244,173.796L17.085,173.925L16.926,173.858L16.992,174.135L16.548,174.055L16.469,174.185L16.266,174.051L16.139,174.121L15.636,173.934ZM0.869,166.844L0.863,166.746L0.55,166.543L1.077,166.54L0.967,166.892ZM21.821,174.509L21.844,174.278L22.126,174.208L22.105,174.435ZM23.437,174.349L23.277,174.183L23.102,174.231L23.105,174.07L23.513,174.097ZM0.359,165.533L0.25,165.294L0.317,165.161L0.137,165.097L0.215,164.976L0,164.859L0.322,164.823L0.669,165.101L0.885,165.161L0.882,165.371L1.052,165.442L0.935,165.65L0.746,165.624L0.642,165.461ZM24.339,174.42L24.92,173.939L24.922,173.765L25.243,173.562L25.587,173.67L25.492,173.49L25.569,173.301L25.872,173.097L26.199,173.077L26.48,173.253L26.343,173.537L25.686,173.737L25.329,174.108L24.904,174.283ZM28.723,173.248L28.621,173.034L28.914,172.927L28.886,173.11ZM26.524,173.926L26.343,173.708L26.546,173.576L26.683,173.634L26.87,173.503L27.064,173.632L27.142,173.476L27.461,173.468L27.377,173.226L27.607,173.225L27.574,173.03L28.051,173.064L27.656,172.923L27.495,172.715L27.642,172.512L27.924,172.417L28.219,172.407L28.309,172.566L28.219,172.85L28.749,172.592L28.835,172.73L28.202,173.125L28.595,173.037L28.622,173.274L28.292,173.296L28.007,173.637L27.842,173.537L27.506,173.604ZM30.463,172.696L30.238,172.602L30.631,172.557ZM29.308,172.571L29.093,172.508L29.033,172.312L29.255,172.116L29.554,172.349L29.61,172.484ZM29.771,172.483L29.68,172.092L29.96,172.06L29.849,172.237L30.018,172.274ZM33.865,172.488L33.588,172.259L33.66,172.17L33.901,172.29ZM74.081,167.735L73.738,167.425L74.01,167.461ZM34.409,171.47L34.277,171.318L34.441,171.103L34.554,171.17ZM75.662,166.938L75.407,166.799L75.671,166.574L75.8,166.777ZM31.122,172.033L30.865,171.928L30.819,171.49L31.141,171.393L31.418,170.93L31.611,170.825L31.831,170.926L32.367,170.688L32.854,170.725L33.036,171.472L33.227,171.439L33.273,171.639L32.875,171.532L32.87,171.674L32.632,171.75L32.352,171.642L31.965,171.621L31.6,171.774L31.452,171.989ZM38.285,171.606L38.386,171.371L38.461,171.527ZM35.242,171.036L35.067,170.757L35.401,170.884ZM73.762,167.251L73.575,167.223L73.618,167.062L73.458,166.946L73.512,166.819L73.814,167.101ZM38.058,171.36L38.167,171.221L38.16,170.957L38.265,171.137ZM74.023,167.962L73.872,167.956L73.261,167.524L73.074,167.198L72.995,166.877L73.097,166.801L73.494,167.286L73.548,167.451L73.861,167.611ZM75.233,166.742L75.143,166.675L75.199,166.369L75.03,166.12L75.438,166.234L75.507,166.531ZM37.226,171.694L37.486,171.198L37.52,170.929L37.726,171.064L37.589,171.291L37.299,171.538ZM72.854,167.019L72.715,167.04L72.642,166.781L72.763,166.704L72.949,166.844ZM37.166,170.793L36.93,170.594L37.179,170.514ZM36.491,171.021L36.515,170.503L36.68,170.352L36.788,170.428L36.991,170.909L36.887,171.032L36.596,170.851ZM74.938,166.512L74.789,166.407L74.58,165.905L74.907,166.043ZM72.477,167.054L72.372,166.959L72.363,166.646L72.573,166.69L72.462,166.817ZM37.444,170.505L37.221,170.325L37.474,170.335ZM72.448,166.599L72.328,166.584L72.392,166.373L72.569,166.506ZM72.086,166.688L72.161,166.467L72.312,166.375L72.272,166.627ZM72.656,166.481L72.479,166.333L72.602,166.203ZM72.272,165.998L71.997,165.868L72.141,165.695L72.466,165.749ZM43.521,170.008L43.326,169.856L43.586,169.674ZM72.554,165.713L72.404,165.617L72.384,165.416L72.528,165.494ZM71.232,166.005L71.174,165.767L71.372,165.735ZM75.569,166.131L75.372,166.022L75.191,166.055L75.296,165.636L75.237,165.597L75.059,166.057L74.582,165.838L74.721,165.411L74.581,165.384L74.436,164.925L74.644,164.862L74.53,164.736L74.9,164.424L75.245,164.66L75.563,165.054L75.701,165.915ZM71.882,165.613L71.723,165.531L71.837,165.112L72.059,164.912L72.239,164.888L72.335,165.188L72.224,165.18ZM73.587,165.027L73.345,164.738L73.092,164.839L72.901,164.502L73.031,164.404L73.033,164.174L73.255,164.161L73.267,164.403L73.5,164.362L73.75,164.499L73.655,164.672L73.826,164.838ZM72.792,165.04L72.79,165.034L72.848,164.986L73.227,165.127L73.531,165.363L73.588,165.637L73.772,165.62L73.928,165.828L74.187,165.954L73.71,165.866L73.534,165.761L73.634,166.031L73.81,165.94L74.232,166.16L74.387,166.361L74.22,166.541L74.44,166.514L74.475,166.305L74.605,166.536L74.545,166.999L74.705,166.855L74.831,167.133L74.905,167.586L74.533,167.66L74.479,167.392L74.073,167.113L74.103,167.279L73.839,166.781L73.722,166.886L73.317,166.703L72.924,166.796L72.899,166.564L73.187,166.567L73.089,166.343L72.917,166.37L72.898,165.973L72.674,166.161L72.502,166.11L72.495,165.901L72.667,165.571L72.49,165.453L72.269,164.876L71.856,164.937L71.693,164.734L71.683,164.549L71.92,164.555L72.211,164.438L72.534,164.72L72.597,165.051ZM72.699,164.533L72.381,164.387L72.439,164.071L72.7,163.972L72.896,164.073L72.929,164.351ZM73.583,164.359L73.287,164.214L73.107,163.753L73.256,163.772L73.517,163.99L73.655,163.918L73.898,164.208L73.77,164.454ZM45.565,168.253L45.542,168.135L45.783,168.09ZM41.497,168.094L41.439,167.948L41.656,167.967ZM44.643,168.468L44.735,168.179L44.931,168.025L45.022,168.214ZM45.528,168.049L45.421,168.226L45.185,168.22L45.343,167.978ZM25.67,165.804L25.49,165.559L25.853,165.696ZM72.925,163.531L72.795,163.376L73.04,163.351ZM72.576,163.923L72.402,163.944L72.354,163.634L72.152,163.3L72.347,163.258L72.849,163.61ZM71.103,163.771L71.031,163.648L71.25,163.653L71.291,164.075L71.234,164.314L71.424,164.687L71.372,164.848L71.445,165.272L71.385,165.316L71.167,165.024L71.296,165.553L71.127,165.438L70.855,164.821L70.918,164.565L71.153,164.76L70.983,164.429L70.669,164.355L70.694,164.247L70.458,164.026L70.358,163.778L70.54,163.491L70.842,163.567ZM71.316,163.755L71.051,163.419L70.687,163.208L70.836,162.993L71.484,163.01L71.847,162.897L72.052,163.024L72.307,163.594L72.268,163.757L71.663,163.359L71.955,163.737L72.129,163.763L72.22,163.968L72.129,164.186L71.802,164.154L71.845,164.26L71.583,164.385ZM46.514,167.086L46.407,166.815L46.628,166.571L47.067,166.699L46.667,166.844ZM25.105,164.277L25.002,164.053L25.411,164.032ZM68.541,163.942L68.445,163.718L68.54,163.498L68.407,163.516L68.288,163.158L68.481,163.141L68.755,163.487L68.763,163.818ZM69.656,164.245L69.462,164.32L69.445,164.112L69.197,164.168L69.109,163.894L69.209,163.645L68.985,163.546L68.931,163.194L68.729,163.281L68.463,163.027L68.717,162.991L68.534,162.913L68.635,162.524L68.805,162.676L68.961,162.597L69.268,162.728L69.456,162.645L69.573,162.88L69.42,162.828L69.654,163.152L70.177,164.102L70.458,165.183L70.516,165.378L70.283,165.268L69.578,164.404ZM47.667,164.962L47.464,164.879L47.577,164.748ZM46.616,165.184L46.238,164.926L46.281,164.765L46.514,164.936ZM45.455,167.675L45.543,167.433L45.818,167.156L45.672,167.171L45.772,166.792L45.53,167.138L45.447,167.077L45.53,166.784L45.339,166.689L45.033,166.772L45.141,166.954L45.247,166.81L45.489,166.77L45.474,167.171L45.3,167.22L44.962,167.085L44.956,166.634L44.849,166.434L44.694,166.413L44.624,166.242L44.84,165.864L45.181,165.559L45.621,165.548L45.644,165.774L45.903,166.316L45.856,165.808L45.964,165.772L45.779,165.587L46.017,165.482L45.756,165.401L45.707,165.154L45.983,164.983L46.163,165.103L46.187,165.366L46.279,165.085L46.616,165.197L46.582,164.959L46.825,165.138L46.535,164.807L46.95,164.816L47.121,164.902L46.999,165.103L47.21,165.128L47.326,164.889L47.542,164.946L47.703,165.13L47.524,165.353L47.553,165.637L47.944,165.584L47.717,166.052L47.531,166.052L47.206,165.863L47.031,165.913L47.374,166.105L47.266,166.403L47.126,166.428L46.878,166.259L46.963,166.469L46.6,166.531L46.32,166.803L46.165,166.847L46.088,167.028L46.212,167.079L45.759,167.612ZM67.232,162.207L67.057,162.091L66.989,161.666L67.268,161.795ZM46.927,164.748L46.577,164.591L46.35,164.572L46.539,164.368L46.754,164.498ZM68.03,161.496L67.948,161.664L68.11,161.663L68.304,161.178L68.401,161.211L68.888,161.246L68.995,161.39L68.955,161.614L68.643,161.55L69.071,161.788L68.749,161.948L68.513,161.839L67.806,161.671L68.012,161.809L68.268,161.829L68.794,162.118L68.908,161.947L69.113,161.883L69.321,162.221L69.388,162.528L69.119,162.606L68.34,162.261L68.016,162.186L68.468,162.482L68.566,162.744L68.435,163.043L67.72,162.566L67.59,162.294L67.443,162.286L67.366,162.206L67.314,162.221L67.285,162.231L67.267,161.808L67.756,162.089L67.762,162.076L67.653,162.037L67.076,161.581L67.214,161.293L67.307,161.432L67.379,161.243L67.592,161.217L67.744,160.987L68.047,161.084L68.167,161.33ZM69.593,160.679L69.226,160.702L69.055,160.547L69.193,160.425ZM69.075,160.755L69.127,160.897L69.269,160.771L69.577,160.839L69.585,160.834L69.747,160.712L69.709,160.814L70.316,161.405L70.417,161.683L70.316,161.691L69.89,161.085L69.616,160.904L69.807,161.165L69.678,161.137L70.119,161.662L70.421,161.861L70.526,162.122L70.282,162.158L70.672,162.392L70.575,162.568L70.279,162.44L70.432,162.844L70.139,163.322L69.992,163.373L69.827,162.937L69.927,162.732L69.788,162.569L69.951,162.562L69.738,162.405L69.385,161.9L69.347,161.648L69.065,161.17L69.098,161.065L69.056,160.846L69.058,160.85L69.068,161.073L68.759,160.731L68.66,160.424ZM47.698,163.699L47.844,163.894L48.127,163.909L48.104,164.186L48.002,164.316L47.69,164.106L47.76,164.391L47.401,164.426L47.137,164.547L47.14,164.714L46.84,164.599L46.583,164.327L46.653,164.198L47.049,164.329L46.735,164.1L46.8,164.005L47.128,164.05L46.995,163.76L47.273,163.564L47.489,163.61L47.62,163.956ZM47.273,163.356L47.646,163.199L47.488,163.586L47.307,163.53ZM37.008,162.966L37.068,162.615L37.525,162.432L37.246,162.923ZM46.205,161.603L46.203,161.443L46.418,161.51ZM49.54,161.585L49.568,161.28L49.663,161.391ZM56.651,159.7L56.825,159.341L57.034,159.174ZM52.603,159.836L52.755,159.52L52.754,159.742ZM52.564,159.593L52.449,159.673L52.635,159.307L52.739,159.442ZM52.319,159.682L52.275,159.507L52.535,159.27L52.425,159.646ZM52.837,160.224L52.807,159.991L53.278,159.397L53.532,158.85L53.789,158.824L53.739,159.027L53.531,159.242L53.243,159.77L53.317,159.92ZM31.343,159.276L31.112,158.973L30.893,158.95L30.524,158.533L30.39,158.518L30.095,157.909L30.506,157.942L30.776,158.078L30.835,157.929L31.277,157.724L31.381,157.822L31.69,157.794L31.709,157.966L31.95,157.965L32.153,158.126L32.051,158.414L32.11,159.043L31.591,159.047ZM54.166,158.979L54.075,158.882L54.305,158.656L54.038,158.735L54.13,158.393L54.376,158.364L54.435,158.517L54.752,158.548L54.513,158.68ZM47.861,159.169L48.019,158.752L48.12,158.819ZM52.684,159.07L52.846,158.476L52.995,158.647L52.885,159.293ZM24.697,156.405L24.378,156.266L24.095,155.785L23.983,155.711L24.166,155.496L24.172,155.727L24.309,155.965L24.607,156.144ZM54.582,158.417L54.486,158.272L55.025,158.02L55.014,158.127ZM52.578,158.139L52.457,157.986L52.668,158.039ZM52.309,158.23L52.233,157.93L52.356,157.962ZM33.232,158.311L32.996,158.157L32.843,157.913L33.07,157.69L32.801,157.745L32.601,157.685L33.145,157.263L33.081,157.1L33.314,156.947L33.58,156.914L33.493,157.063L33.963,157.238L33.987,157.51L33.576,157.763L33.667,157.903L33.467,157.972L33.493,158.128ZM52.432,157.851L52.316,157.842L52.357,157.514L52.562,157.74ZM34.066,152.913L34.042,152.489L34.423,152.586ZM35.013,153.321L34.839,152.867L34.365,152.562L34.077,152.438L34.311,151.985L34.695,152.046L34.875,152.326L34.961,152.678L34.942,152.985ZM34.898,152.358L34.673,152.014L34.456,151.876L34.489,151.715L34.767,151.534L35.08,151.521L35.402,151.694L35.578,151.932L35.281,152.121L35.114,152.389ZM36.714,151.094L36.581,150.987L36.903,150.884L36.905,151.074ZM29.125,151.127L28.962,150.584L28.617,150.398L28.695,150.211L28.406,149.844L28.162,149.629L27.742,149.675L27.498,149.816L27.222,149.591L27.183,149.295L27.4,148.943L27.48,148.65L27.615,149.149L27.877,149.168L28.113,149.356L28.695,149.178L28.883,149.256L29.034,149.469L29.019,149.796L29.386,150.004L29.441,150.178L29.994,150.349L30.296,150.535L30.05,150.833L29.603,150.644L29.266,150.879ZM48.345,135.536L48.216,135.37L48.444,135.35ZM67.55,160.543L67.257,160.061L67.068,159.885L67.401,159.624L67.149,159.625L67.096,159.791L66.932,159.473L67.028,159.984L66.923,160.079L66.584,159.96L66.452,159.673L66.385,159.889L66.09,159.808L65.933,159.981L66.267,159.953L66.61,160.056L66.549,160.133L67.065,160.384L67.348,160.749L67.346,160.958L67.036,161.16L66.744,161.079L66.839,161.28L66.716,161.434L66.388,161.216L66.124,161.163L65.413,160.845L64.901,160.485L64.811,160.268L64.449,160.026L64.054,159.951L64.077,159.751L63.841,159.875L62.869,159.493L62.804,159.515L62.267,159.293L62.434,159.144L62.59,158.886L62.366,158.417L62.525,158.201L62.414,158.033L62.218,158.628L61.674,159.056L61.016,159.095L60.274,158.888L60.443,158.587L60.215,158.224L60.08,158.361L60.301,158.537L60.074,158.734L58.878,158.654L58.502,158.713L57.675,158.977L57.411,159.113L56.931,158.823L56.948,158.736L56.531,158.8L56.386,158.61L56.099,158.595L56.21,158.098L56.156,157.829L55.958,158.056L55.857,158.326L55.632,158.555L55.43,158.39L55.134,158.294L54.894,158.369L55.223,157.843L54.777,157.996L54.858,157.77L54.571,158.002L54.478,157.952L54.687,157.73L54.385,157.685L54.28,157.887L54.009,157.905L54.53,157.48L54.449,157.388L54.335,157.574L54.113,157.617L53.872,157.411L53.961,156.992L54.384,156.936L54.285,156.825L53.926,156.935L53.688,157.305L53.437,157.211L53.3,157.269L53.164,157.546L52.994,157.534L52.983,157.125L52.903,157.143L52.745,157.715L52.364,157.504L52.479,157.146L52.646,156.883L52.677,156.659L52.408,157.126L52.341,157.335L52.2,157.082L51.981,157.378L52.218,157.189L52.108,157.48L52.099,157.759L51.901,157.841L51.732,158.043L51.744,158.184L51.9,157.931L52.025,157.894L52.053,158.134L52.157,157.945L52.292,158.268L52.144,158.475L51.967,158.386L51.776,158.58L51.775,158.676L52.001,158.451L52.222,158.562L52.415,158.299L52.588,158.706L52.296,158.885L52.267,159.129L52.467,159.212L52.257,159.445L52.218,159.335L52.132,159.863L51.986,159.68L51.868,159.938L51.336,159.867L51.431,159.683L51.274,159.715L51.165,160.009L51.058,159.631L50.942,159.536L50.985,159.858L50.747,160.076L50.625,159.953L50.625,160.543L50.344,160.379L50.417,160.674L50.248,160.688L50.266,160.859L49.899,161.158L50.015,160.713L49.814,161.168L49.647,160.989L49.669,161.252L49.507,161.263L49.21,161.785L49.159,161.52L49.089,161.772L48.747,161.714L48.325,161.938L48.047,161.724L48.146,161.318L48.427,161.164L48.654,161.2L48.66,161.034L48.97,160.899L48.936,160.794L49.241,160.41L49.08,160.414L48.58,160.809L48.187,160.62L48.14,160.484L48.314,159.876L48.628,159.442L48.656,159.089L48.75,159.034L48.775,158.649L48.59,158.244L48.985,158.072L49.369,157.699L49.706,157.45L49.855,157.631L50.105,157.719L50.427,157.57L50.576,157.663L51.028,157.696L51.274,157.808L51.081,157.577L50.897,157.63L50.456,157.45L50.06,157.152L50.206,157.02L50.43,156.598L50.942,156.327L50.781,156.262L50.489,156.34L50.248,156.588L50.145,156.949L49.623,156.964L49.374,156.821L49.324,156.963L49.04,157.115L48.859,157.433L48.486,157.566L48.14,157.926L48.257,158.23L48.087,158.185L47.807,158.574L47.573,158.784L47.671,159.046L47.302,159.459L46.864,159.415L47.167,159.593L47.298,159.862L47.15,160.188L47.029,160.276L46.545,160.317L46.479,160.443L46.778,160.385L46.745,160.721L46.56,160.859L46.38,160.72L46.268,160.48L46.267,160.811L46.12,161.058L45.873,161.103L45.955,161.325L45.506,161.548L45.415,162.068L45.436,162.321L45.557,162.188L45.993,162.184L46.176,162.395L46.437,162.54L46.469,162.697L46.534,162.694L46.438,162.696L46.307,163.041L46.037,163.268L45.757,163.286L45.679,163.565L45.525,163.57L45.644,163.792L45.198,164.049L45.45,163.974L45.449,164.169L45.164,164.484L44.876,164.422L44.927,164.65L44.362,164.644L44.263,165.02L44.071,164.988L44.026,165.267L43.894,165.361L43.606,165.189L43.635,165.487L43.494,165.53L43.452,165.746L43.066,165.701L43.079,165.994L42.942,165.914L42.68,166.033L42.396,166.347L42.64,166.258L42.636,166.639L42.297,166.899L42.378,167.038L42.128,167.004L42.045,167.214L41.94,167.098L41.674,167.401L41.554,167.306L41.521,167.517L41.306,167.284L41.178,167.364L41.072,167.71L41.167,167.833L40.888,167.856L40.818,167.695L40.597,167.757L40.303,168.01L40.664,167.951L40.638,168.156L40.288,168.023L40.288,168.17L40.032,168.099L39.593,168.584L40.008,168.471L40.166,168.559L39.932,168.694L39.816,169.242L39.715,169.268L39.624,169.018L39.695,168.803L39.516,168.952L39.552,169.24L39.259,169.176L39.051,169.429L38.968,169.342L38.597,169.424L38.505,169.624L38.469,169.369L38.337,169.414L38.386,169.686L38.272,169.962L38.082,169.896L38.236,169.548L37.976,169.423L37.765,169.503L37.637,169.763L37.166,169.946L36.952,170.226L36.877,169.97L36.777,170.244L36.619,170.248L36.528,170.061L36.335,170.246L35.996,170.407L35.64,170.353L35.703,170.059L35.892,169.868L35.83,169.737L35.6,169.74L35.398,169.992L35.415,170.22L35.108,170.611L34.907,170.558L34.96,170.879L34.821,170.941L34.687,170.733L34.65,170.949L34.345,170.976L34.216,170.765L34.268,170.443L34.002,170.4L34.119,170.617L34.01,171.004L33.82,171.148L33.639,171.077L33.557,170.75L33.324,170.607L33.26,170.818L33.495,171.063L33.013,171.326L33.143,170.955L33.156,170.693L33.33,170.529L33.783,170.55L33.787,170.346L33.966,170.306L34.125,170.128L34.308,170.166L34.28,169.934L34.744,169.456L35.382,169.072L36.041,168.956L36.356,169.062L36.629,168.951L36.635,169.113L36.402,169.171L36.675,169.608L36.712,169.248L37.081,169.309L37.141,169.515L37.382,169.581L37.44,169.418L37.083,169.14L37.032,168.985L37.396,168.342L38.108,167.811L38.779,167.57L39.369,167.121L39.367,167.142L39.355,167.302L39.702,167.43L39.646,166.908L40.173,166.214L40.441,166.076L40.68,165.801L40.958,165.605L41.153,165.853L41.119,165.481L41,165.501L41.001,165.24L41.2,164.31L41.428,164.202L41.264,163.938L41.373,163.47L41.651,163.18L41.93,162.929L42.021,162.54L41.977,162.38L41.806,162.597L41.324,162.823L40.586,163.108L40.382,163.008L40.35,162.828L40.097,162.633L40.175,162.516L40.217,162.091L40.054,162.369L39.872,162.423L39.817,162.765L39.479,162.502L39.681,162.706L39.818,163.176L39.889,163.355L39.756,163.542L39.447,163.496L39.091,162.653L38.799,162.439L38.888,162.321L38.691,162.232L38.615,162.505L38.474,162.565L38.319,162.295L38.088,162.259L38.105,162.03L37.969,161.859L37.365,162.244L37.125,162.285L37.077,162.322L36.735,162.49L36.653,162.668L36.178,162.863L36.247,162.717L35.823,162.656L35.706,162.573L36.122,162.548L36.257,162.26L36.26,161.904L36.579,161.586L36.273,161.53L36.155,161.608L36.047,161.249L36.18,160.896L36.497,160.651L36.352,160.318L36.281,159.917L36.155,159.694L36.048,159.191L36.125,159.047L35.85,158.658L36.031,158.52L36.205,158.065L36.166,157.979L35.932,158.411L35.719,158.604L35.717,158.845L35.829,158.922L35.709,159.367L35.407,159.342L35.383,159.459L34.841,159.629L34.419,159.662L33.99,159.592L33.804,159.496L33.716,159.205L33.833,159.164L33.564,158.877L33.32,158.314L33.483,157.98L33.664,157.925L33.581,157.76L33.771,157.749L33.912,157.569L34.081,157.552L34.347,157.303L34.493,157.462L34.407,157.706L34.526,157.834L34.898,157.53L34.772,157.311L34.363,157.143L34.522,157.073L34.673,157.169L34.824,157.096L34.552,156.983L34.344,157.131L34.354,156.686L34.133,156.886L34.193,157.063L33.673,157.055L33.572,156.834L33.373,156.888L33.343,156.768L33.028,156.774L32.983,156.623L33.27,156.565L33.501,156.408L33.252,156.372L33.212,156.49L32.914,156.162L32.838,156.36L32.634,156.302L32.595,155.964L32.665,155.847L32.387,155.709L32.392,155.473L32.585,155.356L32.431,155.151L32.232,155.17L32.216,154.925L32.619,154.891L32.396,154.74L32.335,154.541L32.887,154.541L32.79,154.276L32.931,153.84L33.516,153.214L33.765,153.025L33.98,153.079L34.398,152.695L34.709,152.801L35.028,153.406L34.961,152.988L35.009,152.776L34.864,152.524L34.895,152.376L35.225,152.344L35.291,152.133L35.595,151.95L35.749,152.161L36.073,152.132L36.331,151.839L36.615,151.708L36.909,151.315L36.979,151.118L37.276,151.287L37.114,151.399L37.579,151.374L37.774,151.422L38.179,151.349L38.635,150.766L38.64,150.571L38.526,150.093L38.535,149.653L38.282,149.275L38.04,149.212L38.209,148.912L38.49,149.041L38.813,148.776L38.843,148.549L38.751,148.29L38.562,148.134L38.667,148.024L38.507,148.014L38.28,148.342L38.091,148.409L37.963,148.302L37.727,148.456L37.449,148.478L37.375,148.609L37.04,148.78L36.889,149.118L36.724,149.226L36.72,148.82L36.424,148.42L36.243,148.546L36.446,148.763L36.434,148.987L35.992,148.559L35.232,148.461L34.899,148.568L34.885,148.496L34.527,148.637L34.233,148.459L33.418,148.103L33.236,147.895L33.227,147.539L33.357,147.352L33.107,147.065L33.026,146.737L33.287,146.77L33.546,146.488L33.842,146.611L33.993,147.009L34.145,147.109L34.407,146.952L34.292,146.826L34.011,146.752L33.939,146.831L33.841,146.561L33.603,146.375L33.132,146.14L32.61,145.973L32.35,145.674L32.051,145.434L32.381,145.189L32.578,145.228L32.619,145.032L32.967,144.848L33.036,145.01L33.359,144.857L33.619,144.564L34.071,144.417L34.219,144.595L34.615,144.654L34.737,144.574L34.422,144.336L34.571,144.159L34.899,144.017L35.318,144.057L35.64,143.802L35.929,143.763L36.409,143.808L36.514,143.923L36.346,144.298L36.355,144.554L36.241,144.676L36.355,145.047L36.597,145.043L36.974,145.144L37.311,145.132L37.65,145.316L37.886,145.225L38.068,145.35L38.098,145.527L38.483,144.917L39.019,144.998L38.908,144.753L38.552,144.556L38.188,144.606L38.248,144.246L38.006,143.782L37.733,143.651L37.663,143.386L37.811,143.176L37.96,143.19L38.196,143.61L38.111,143.916L38.233,144.173L38.516,144.453L38.913,144.264L39.231,144.696L39.744,144.705L39.804,144.392L39.693,144.177L39.411,144.196L39.276,144.026L38.976,144.027L38.795,144.291L38.623,144.259L38.307,143.778L38.428,143.405L38.584,143.245L38.743,143.252L38.462,143.007L37.845,143.091L37.614,142.894L37.42,142.922L36.775,142.656L36.704,141.909L36.573,141.472L36.24,141.117L35.619,140.288L35.134,139.934L34.903,139.537L34.508,139.31L34.934,139.288L35.218,138.443L35.222,138.22L35.959,138.391L36.87,138.375L37.163,138.285L37.587,137.98L37.959,137.512L38.141,137.139L38.078,137.003L38.276,136.789L38.186,136.695L38.726,136.171L38.759,136.033L39.024,135.814L39.307,135.488L39.455,135.666L39.273,135.649L39.28,135.831L39.1,135.818L39.271,135.858L39.482,135.664L39.647,135.698L40.221,135.443L40.764,134.963L40.938,135.011L40.915,135.262L40.713,135.61L40.915,135.495L40.994,135.258L40.938,134.944L40.782,134.925L41.178,134.553L41.579,134.436L41.42,134.548L41.692,134.661L42.397,134.573L42.666,134.472L43.097,134.09L43.458,133.568L43.605,133.447L43.775,133.623L44.026,133.69L43.987,133.878L44.281,133.806L44.453,134.073L44.274,134.296L44.02,134.34L44.056,134.635L44.463,134.653L44.452,134.387L44.991,134.053L45.187,134.282L45.109,134.531L45.495,134.802L45.69,134.544L46.31,134.443L46.616,134.58L46.748,134.525L47.031,134.65L46.84,134.983L46.884,135.155L47.174,135.212L46.745,135.308L47.468,135.27L47.328,135.552L47.575,135.525L47.87,135.693L47.931,135.511L48.301,135.46L48.287,135.716L48.754,135.486L48.93,135.292L49.494,135.307L49.765,135.499L50.055,135.542L50.083,135.665L50.281,135.571L50.646,135.811L51.152,135.943L51.668,135.806L52.113,135.882L52.228,135.789L52.757,136.126L53.275,136.103L53.364,135.976L54.359,135.601L54.758,135.7L55.114,135.897L55.249,136.067L55.719,136.161L56.042,136.426L56.154,136.286L56.337,136.341L56.855,138.951L58.06,145.031L59.862,154.123L60.554,157.615L60.593,157.812L61.181,157.901L61.208,157.683L61.816,157.859L62.065,157.435L62.753,157.24L62.749,157.88L62.966,158.056L63.41,158.167L63.575,158.462L65.043,159.377L65.314,159.937L65.33,160.124L65.996,159.335L66.275,159.246L66.325,159.003L66.211,158.531L66.414,158.479L66.425,158.244L66.272,158.187L66.692,157.92L66.915,157.694L67.142,157.459L67.489,157.61L67.809,157.841L67.814,158.175L67.945,158.335L68.075,158.458L68.393,158.441L68.452,158.564L68.72,158.633L69.002,158.954L69.162,159.164L69.74,159.309L69.981,159.523L70.491,159.81L70.421,159.938L70.931,160.356L71.165,160.657L71.516,160.94L72.146,161.583L72.484,161.835L72.73,162.094L72.678,162.41L73.102,162.38L73.133,162.796L73.494,162.84L73.697,163.285L73.997,163.148L74.787,163.387L75.167,163.342L75.44,163.492L75.648,163.475L75.779,163.681L76.036,163.699L76.195,163.573L76.413,163.78L76.497,164.001L76.423,164.383L76.603,164.766L77.047,165.363L76.965,165.619L76.928,166.181L76.703,166.719L76.527,166.847L76.378,166.707L76.387,166.901L76.235,166.867L76.12,166.594L75.724,166.065L75.898,165.712L75.541,164.84L74.915,164.329L74.739,164.508L74.672,164.417L74.351,164.854L74.173,164.931L74.381,165.012L74.372,165.785L74.034,165.682L73.827,165.382L73.874,165.358L73.936,164.795L74.028,164.73L73.865,164.284L74.083,164.128L73.845,164.126L73.675,163.906L73.537,163.918L73.106,163.648L73.133,163.308L72.889,163.381L72.79,163.232L72.38,163.138L72.049,162.866L72.244,162.771L71.685,162.738L71.632,162.547L71.521,162.751L71.227,162.672L71.186,162.391L71.586,162.228L71.221,162.262L71.226,162.102L71.001,162.006L71.022,161.715L70.877,161.826L70.723,161.728L70.762,161.462L71.35,161.633L70.946,161.403L70.734,161.375L70.658,161.105L70.68,161.028L70.7,160.987L70.621,161.224L70.573,161.355L70.534,161.351L70.279,161.061L69.921,160.81L69.784,160.41L69.878,160.281L69.77,160.112L69.684,160.371L69.775,160.487L69.666,160.628L69.206,160.393L68.945,160.427L68.8,160.173L68.5,159.851L68.294,159.153L68.281,159.156L68.385,159.433L68.365,159.719L68.133,159.483L68.026,159.225L67.583,158.454L67.538,158.438L67.546,158.761L67.402,158.741L67.702,159.006L67.768,159.315L68.074,159.686L68.214,159.996L68.577,160.598L68.61,160.865L68.391,160.935L68.2,160.77L67.963,160.407L68.034,160.685L67.853,160.613L67.544,160.814Z" + }, + { + "fill": "rgb(168, 221, 183)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.077; geo: [object Object]; name: Alaska", + "shape": "M7.208,172.472L6.987,171.876L6.674,171.551L6.701,171.463L7.065,171.8L7.304,172.409ZM13.561,173.982L13.569,173.658L13.763,173.703L13.721,173.904ZM13.865,173.986L13.799,173.825L13.929,173.737ZM14.185,173.908L14.026,173.744L14.196,173.748ZM11.312,173.492L11.102,173.228L11.356,173.195L11.099,172.734L11.178,172.674L11.511,172.769L11.507,172.929L11.841,173.14L11.597,173.121ZM12.369,173.603L12.137,173.459L11.697,173.347L12.33,173.405L12.458,173.36L12.556,173.121L12.697,173.16L12.446,173.639ZM6.725,170.86L6.726,170.662L6.887,170.815ZM12.64,173.999L12.636,173.823L12.846,173.752L12.856,173.537L13.063,173.627L13.168,173.256L13.484,173.302L13.266,173.619L13.504,173.651L13.479,173.914L13.351,173.835L13.222,173.963L12.829,173.953L12.893,173.76ZM8.188,171.56L8.059,171.381L8.116,171.247L8.371,171.245L8.487,171.426ZM14.134,173.59L14.009,173.316L14.264,173.295ZM5.075,170.306L4.995,170.095L5.305,170.021L5.453,170.072L5.695,169.832L5.822,169.917L5.548,170.116L5.478,170.269L5.306,170.143ZM17.731,174.618L17.501,174.425L17.279,174.437L17.043,174.181L17.264,174.187L17.972,174.539L18.218,174.553L18.527,174.682L18.246,174.676L17.783,174.572ZM19.21,174.508L19.1,174.457L19.216,174.262L19.422,174.217L19.586,174.415ZM15.503,173.971L15.469,173.891L15.861,173.847L16.001,173.938L16.399,173.923L16.879,173.75L16.731,173.599L16.826,173.471L17.091,173.452L17.244,173.796L17.085,173.925L16.926,173.858L16.992,174.135L16.548,174.055L16.469,174.185L16.266,174.051L16.139,174.121L15.636,173.934ZM0.869,166.844L0.863,166.746L0.55,166.543L1.077,166.54L0.967,166.892ZM21.821,174.509L21.844,174.278L22.126,174.208L22.105,174.435ZM23.437,174.349L23.277,174.183L23.102,174.231L23.105,174.07L23.513,174.097ZM0.359,165.533L0.25,165.294L0.317,165.161L0.137,165.097L0.215,164.976L0,164.859L0.322,164.823L0.669,165.101L0.885,165.161L0.882,165.371L1.052,165.442L0.935,165.65L0.746,165.624L0.642,165.461ZM24.339,174.42L24.92,173.939L24.922,173.765L25.243,173.562L25.587,173.67L25.492,173.49L25.569,173.301L25.872,173.097L26.199,173.077L26.48,173.253L26.343,173.537L25.686,173.737L25.329,174.108L24.904,174.283ZM28.723,173.248L28.621,173.034L28.914,172.927L28.886,173.11ZM26.524,173.926L26.343,173.708L26.546,173.576L26.683,173.634L26.87,173.503L27.064,173.632L27.142,173.476L27.461,173.468L27.377,173.226L27.607,173.225L27.574,173.03L28.051,173.064L27.656,172.923L27.495,172.715L27.642,172.512L27.924,172.417L28.219,172.407L28.309,172.566L28.219,172.85L28.749,172.592L28.835,172.73L28.202,173.125L28.595,173.037L28.622,173.274L28.292,173.296L28.007,173.637L27.842,173.537L27.506,173.604ZM30.463,172.696L30.238,172.602L30.631,172.557ZM29.308,172.571L29.093,172.508L29.033,172.312L29.255,172.116L29.554,172.349L29.61,172.484ZM29.771,172.483L29.68,172.092L29.96,172.06L29.849,172.237L30.018,172.274ZM33.865,172.488L33.588,172.259L33.66,172.17L33.901,172.29ZM74.081,167.735L73.738,167.425L74.01,167.461ZM34.409,171.47L34.277,171.318L34.441,171.103L34.554,171.17ZM75.662,166.938L75.407,166.799L75.671,166.574L75.8,166.777ZM31.122,172.033L30.865,171.928L30.819,171.49L31.141,171.393L31.418,170.93L31.611,170.825L31.831,170.926L32.367,170.688L32.854,170.725L33.036,171.472L33.227,171.439L33.273,171.639L32.875,171.532L32.87,171.674L32.632,171.75L32.352,171.642L31.965,171.621L31.6,171.774L31.452,171.989ZM38.285,171.606L38.386,171.371L38.461,171.527ZM35.242,171.036L35.067,170.757L35.401,170.884ZM73.762,167.251L73.575,167.223L73.618,167.062L73.458,166.946L73.512,166.819L73.814,167.101ZM38.058,171.36L38.167,171.221L38.16,170.957L38.265,171.137ZM74.023,167.962L73.872,167.956L73.261,167.524L73.074,167.198L72.995,166.877L73.097,166.801L73.494,167.286L73.548,167.451L73.861,167.611ZM75.233,166.742L75.143,166.675L75.199,166.369L75.03,166.12L75.438,166.234L75.507,166.531ZM37.226,171.694L37.486,171.198L37.52,170.929L37.726,171.064L37.589,171.291L37.299,171.538ZM72.854,167.019L72.715,167.04L72.642,166.781L72.763,166.704L72.949,166.844ZM37.166,170.793L36.93,170.594L37.179,170.514ZM36.491,171.021L36.515,170.503L36.68,170.352L36.788,170.428L36.991,170.909L36.887,171.032L36.596,170.851ZM74.938,166.512L74.789,166.407L74.58,165.905L74.907,166.043ZM72.477,167.054L72.372,166.959L72.363,166.646L72.573,166.69L72.462,166.817ZM37.444,170.505L37.221,170.325L37.474,170.335ZM72.448,166.599L72.328,166.584L72.392,166.373L72.569,166.506ZM72.086,166.688L72.161,166.467L72.312,166.375L72.272,166.627ZM72.656,166.481L72.479,166.333L72.602,166.203ZM72.272,165.998L71.997,165.868L72.141,165.695L72.466,165.749ZM43.521,170.008L43.326,169.856L43.586,169.674ZM72.554,165.713L72.404,165.617L72.384,165.416L72.528,165.494ZM71.232,166.005L71.174,165.767L71.372,165.735ZM75.569,166.131L75.372,166.022L75.191,166.055L75.296,165.636L75.237,165.597L75.059,166.057L74.582,165.838L74.721,165.411L74.581,165.384L74.436,164.925L74.644,164.862L74.53,164.736L74.9,164.424L75.245,164.66L75.563,165.054L75.701,165.915ZM71.882,165.613L71.723,165.531L71.837,165.112L72.059,164.912L72.239,164.888L72.335,165.188L72.224,165.18ZM73.587,165.027L73.345,164.738L73.092,164.839L72.901,164.502L73.031,164.404L73.033,164.174L73.255,164.161L73.267,164.403L73.5,164.362L73.75,164.499L73.655,164.672L73.826,164.838ZM72.792,165.04L72.79,165.034L72.848,164.986L73.227,165.127L73.531,165.363L73.588,165.637L73.772,165.62L73.928,165.828L74.187,165.954L73.71,165.866L73.534,165.761L73.634,166.031L73.81,165.94L74.232,166.16L74.387,166.361L74.22,166.541L74.44,166.514L74.475,166.305L74.605,166.536L74.545,166.999L74.705,166.855L74.831,167.133L74.905,167.586L74.533,167.66L74.479,167.392L74.073,167.113L74.103,167.279L73.839,166.781L73.722,166.886L73.317,166.703L72.924,166.796L72.899,166.564L73.187,166.567L73.089,166.343L72.917,166.37L72.898,165.973L72.674,166.161L72.502,166.11L72.495,165.901L72.667,165.571L72.49,165.453L72.269,164.876L71.856,164.937L71.693,164.734L71.683,164.549L71.92,164.555L72.211,164.438L72.534,164.72L72.597,165.051ZM72.699,164.533L72.381,164.387L72.439,164.071L72.7,163.972L72.896,164.073L72.929,164.351ZM73.583,164.359L73.287,164.214L73.107,163.753L73.256,163.772L73.517,163.99L73.655,163.918L73.898,164.208L73.77,164.454ZM45.565,168.253L45.542,168.135L45.783,168.09ZM41.497,168.094L41.439,167.948L41.656,167.967ZM44.643,168.468L44.735,168.179L44.931,168.025L45.022,168.214ZM45.528,168.049L45.421,168.226L45.185,168.22L45.343,167.978ZM25.67,165.804L25.49,165.559L25.853,165.696ZM72.925,163.531L72.795,163.376L73.04,163.351ZM72.576,163.923L72.402,163.944L72.354,163.634L72.152,163.3L72.347,163.258L72.849,163.61ZM71.103,163.771L71.031,163.648L71.25,163.653L71.291,164.075L71.234,164.314L71.424,164.687L71.372,164.848L71.445,165.272L71.385,165.316L71.167,165.024L71.296,165.553L71.127,165.438L70.855,164.821L70.918,164.565L71.153,164.76L70.983,164.429L70.669,164.355L70.694,164.247L70.458,164.026L70.358,163.778L70.54,163.491L70.842,163.567ZM71.316,163.755L71.051,163.419L70.687,163.208L70.836,162.993L71.484,163.01L71.847,162.897L72.052,163.024L72.307,163.594L72.268,163.757L71.663,163.359L71.955,163.737L72.129,163.763L72.22,163.968L72.129,164.186L71.802,164.154L71.845,164.26L71.583,164.385ZM46.514,167.086L46.407,166.815L46.628,166.571L47.067,166.699L46.667,166.844ZM25.105,164.277L25.002,164.053L25.411,164.032ZM68.541,163.942L68.445,163.718L68.54,163.498L68.407,163.516L68.288,163.158L68.481,163.141L68.755,163.487L68.763,163.818ZM69.656,164.245L69.462,164.32L69.445,164.112L69.197,164.168L69.109,163.894L69.209,163.645L68.985,163.546L68.931,163.194L68.729,163.281L68.463,163.027L68.717,162.991L68.534,162.913L68.635,162.524L68.805,162.676L68.961,162.597L69.268,162.728L69.456,162.645L69.573,162.88L69.42,162.828L69.654,163.152L70.177,164.102L70.458,165.183L70.516,165.378L70.283,165.268L69.578,164.404ZM47.667,164.962L47.464,164.879L47.577,164.748ZM46.616,165.184L46.238,164.926L46.281,164.765L46.514,164.936ZM45.455,167.675L45.543,167.433L45.818,167.156L45.672,167.171L45.772,166.792L45.53,167.138L45.447,167.077L45.53,166.784L45.339,166.689L45.033,166.772L45.141,166.954L45.247,166.81L45.489,166.77L45.474,167.171L45.3,167.22L44.962,167.085L44.956,166.634L44.849,166.434L44.694,166.413L44.624,166.242L44.84,165.864L45.181,165.559L45.621,165.548L45.644,165.774L45.903,166.316L45.856,165.808L45.964,165.772L45.779,165.587L46.017,165.482L45.756,165.401L45.707,165.154L45.983,164.983L46.163,165.103L46.187,165.366L46.279,165.085L46.616,165.197L46.582,164.959L46.825,165.138L46.535,164.807L46.95,164.816L47.121,164.902L46.999,165.103L47.21,165.128L47.326,164.889L47.542,164.946L47.703,165.13L47.524,165.353L47.553,165.637L47.944,165.584L47.717,166.052L47.531,166.052L47.206,165.863L47.031,165.913L47.374,166.105L47.266,166.403L47.126,166.428L46.878,166.259L46.963,166.469L46.6,166.531L46.32,166.803L46.165,166.847L46.088,167.028L46.212,167.079L45.759,167.612ZM67.232,162.207L67.057,162.091L66.989,161.666L67.268,161.795ZM46.927,164.748L46.577,164.591L46.35,164.572L46.539,164.368L46.754,164.498ZM68.03,161.496L67.948,161.664L68.11,161.663L68.304,161.178L68.401,161.211L68.888,161.246L68.995,161.39L68.955,161.614L68.643,161.55L69.071,161.788L68.749,161.948L68.513,161.839L67.806,161.671L68.012,161.809L68.268,161.829L68.794,162.118L68.908,161.947L69.113,161.883L69.321,162.221L69.388,162.528L69.119,162.606L68.34,162.261L68.016,162.186L68.468,162.482L68.566,162.744L68.435,163.043L67.72,162.566L67.59,162.294L67.443,162.286L67.366,162.206L67.314,162.221L67.285,162.231L67.267,161.808L67.756,162.089L67.762,162.076L67.653,162.037L67.076,161.581L67.214,161.293L67.307,161.432L67.379,161.243L67.592,161.217L67.744,160.987L68.047,161.084L68.167,161.33ZM69.593,160.679L69.226,160.702L69.055,160.547L69.193,160.425ZM69.075,160.755L69.127,160.897L69.269,160.771L69.577,160.839L69.585,160.834L69.747,160.712L69.709,160.814L70.316,161.405L70.417,161.683L70.316,161.691L69.89,161.085L69.616,160.904L69.807,161.165L69.678,161.137L70.119,161.662L70.421,161.861L70.526,162.122L70.282,162.158L70.672,162.392L70.575,162.568L70.279,162.44L70.432,162.844L70.139,163.322L69.992,163.373L69.827,162.937L69.927,162.732L69.788,162.569L69.951,162.562L69.738,162.405L69.385,161.9L69.347,161.648L69.065,161.17L69.098,161.065L69.056,160.846L69.058,160.85L69.068,161.073L68.759,160.731L68.66,160.424ZM47.698,163.699L47.844,163.894L48.127,163.909L48.104,164.186L48.002,164.316L47.69,164.106L47.76,164.391L47.401,164.426L47.137,164.547L47.14,164.714L46.84,164.599L46.583,164.327L46.653,164.198L47.049,164.329L46.735,164.1L46.8,164.005L47.128,164.05L46.995,163.76L47.273,163.564L47.489,163.61L47.62,163.956ZM47.273,163.356L47.646,163.199L47.488,163.586L47.307,163.53ZM37.008,162.966L37.068,162.615L37.525,162.432L37.246,162.923ZM46.205,161.603L46.203,161.443L46.418,161.51ZM49.54,161.585L49.568,161.28L49.663,161.391ZM56.651,159.7L56.825,159.341L57.034,159.174ZM52.603,159.836L52.755,159.52L52.754,159.742ZM52.564,159.593L52.449,159.673L52.635,159.307L52.739,159.442ZM52.319,159.682L52.275,159.507L52.535,159.27L52.425,159.646ZM52.837,160.224L52.807,159.991L53.278,159.397L53.532,158.85L53.789,158.824L53.739,159.027L53.531,159.242L53.243,159.77L53.317,159.92ZM31.343,159.276L31.112,158.973L30.893,158.95L30.524,158.533L30.39,158.518L30.095,157.909L30.506,157.942L30.776,158.078L30.835,157.929L31.277,157.724L31.381,157.822L31.69,157.794L31.709,157.966L31.95,157.965L32.153,158.126L32.051,158.414L32.11,159.043L31.591,159.047ZM54.166,158.979L54.075,158.882L54.305,158.656L54.038,158.735L54.13,158.393L54.376,158.364L54.435,158.517L54.752,158.548L54.513,158.68ZM47.861,159.169L48.019,158.752L48.12,158.819ZM52.684,159.07L52.846,158.476L52.995,158.647L52.885,159.293ZM24.697,156.405L24.378,156.266L24.095,155.785L23.983,155.711L24.166,155.496L24.172,155.727L24.309,155.965L24.607,156.144ZM54.582,158.417L54.486,158.272L55.025,158.02L55.014,158.127ZM52.578,158.139L52.457,157.986L52.668,158.039ZM52.309,158.23L52.233,157.93L52.356,157.962ZM33.232,158.311L32.996,158.157L32.843,157.913L33.07,157.69L32.801,157.745L32.601,157.685L33.145,157.263L33.081,157.1L33.314,156.947L33.58,156.914L33.493,157.063L33.963,157.238L33.987,157.51L33.576,157.763L33.667,157.903L33.467,157.972L33.493,158.128ZM52.432,157.851L52.316,157.842L52.357,157.514L52.562,157.74ZM34.066,152.913L34.042,152.489L34.423,152.586ZM35.013,153.321L34.839,152.867L34.365,152.562L34.077,152.438L34.311,151.985L34.695,152.046L34.875,152.326L34.961,152.678L34.942,152.985ZM34.898,152.358L34.673,152.014L34.456,151.876L34.489,151.715L34.767,151.534L35.08,151.521L35.402,151.694L35.578,151.932L35.281,152.121L35.114,152.389ZM36.714,151.094L36.581,150.987L36.903,150.884L36.905,151.074ZM29.125,151.127L28.962,150.584L28.617,150.398L28.695,150.211L28.406,149.844L28.162,149.629L27.742,149.675L27.498,149.816L27.222,149.591L27.183,149.295L27.4,148.943L27.48,148.65L27.615,149.149L27.877,149.168L28.113,149.356L28.695,149.178L28.883,149.256L29.034,149.469L29.019,149.796L29.386,150.004L29.441,150.178L29.994,150.349L30.296,150.535L30.05,150.833L29.603,150.644L29.266,150.879ZM48.345,135.536L48.216,135.37L48.444,135.35ZM67.55,160.543L67.257,160.061L67.068,159.885L67.401,159.624L67.149,159.625L67.096,159.791L66.932,159.473L67.028,159.984L66.923,160.079L66.584,159.96L66.452,159.673L66.385,159.889L66.09,159.808L65.933,159.981L66.267,159.953L66.61,160.056L66.549,160.133L67.065,160.384L67.348,160.749L67.346,160.958L67.036,161.16L66.744,161.079L66.839,161.28L66.716,161.434L66.388,161.216L66.124,161.163L65.413,160.845L64.901,160.485L64.811,160.268L64.449,160.026L64.054,159.951L64.077,159.751L63.841,159.875L62.869,159.493L62.804,159.515L62.267,159.293L62.434,159.144L62.59,158.886L62.366,158.417L62.525,158.201L62.414,158.033L62.218,158.628L61.674,159.056L61.016,159.095L60.274,158.888L60.443,158.587L60.215,158.224L60.08,158.361L60.301,158.537L60.074,158.734L58.878,158.654L58.502,158.713L57.675,158.977L57.411,159.113L56.931,158.823L56.948,158.736L56.531,158.8L56.386,158.61L56.099,158.595L56.21,158.098L56.156,157.829L55.958,158.056L55.857,158.326L55.632,158.555L55.43,158.39L55.134,158.294L54.894,158.369L55.223,157.843L54.777,157.996L54.858,157.77L54.571,158.002L54.478,157.952L54.687,157.73L54.385,157.685L54.28,157.887L54.009,157.905L54.53,157.48L54.449,157.388L54.335,157.574L54.113,157.617L53.872,157.411L53.961,156.992L54.384,156.936L54.285,156.825L53.926,156.935L53.688,157.305L53.437,157.211L53.3,157.269L53.164,157.546L52.994,157.534L52.983,157.125L52.903,157.143L52.745,157.715L52.364,157.504L52.479,157.146L52.646,156.883L52.677,156.659L52.408,157.126L52.341,157.335L52.2,157.082L51.981,157.378L52.218,157.189L52.108,157.48L52.099,157.759L51.901,157.841L51.732,158.043L51.744,158.184L51.9,157.931L52.025,157.894L52.053,158.134L52.157,157.945L52.292,158.268L52.144,158.475L51.967,158.386L51.776,158.58L51.775,158.676L52.001,158.451L52.222,158.562L52.415,158.299L52.588,158.706L52.296,158.885L52.267,159.129L52.467,159.212L52.257,159.445L52.218,159.335L52.132,159.863L51.986,159.68L51.868,159.938L51.336,159.867L51.431,159.683L51.274,159.715L51.165,160.009L51.058,159.631L50.942,159.536L50.985,159.858L50.747,160.076L50.625,159.953L50.625,160.543L50.344,160.379L50.417,160.674L50.248,160.688L50.266,160.859L49.899,161.158L50.015,160.713L49.814,161.168L49.647,160.989L49.669,161.252L49.507,161.263L49.21,161.785L49.159,161.52L49.089,161.772L48.747,161.714L48.325,161.938L48.047,161.724L48.146,161.318L48.427,161.164L48.654,161.2L48.66,161.034L48.97,160.899L48.936,160.794L49.241,160.41L49.08,160.414L48.58,160.809L48.187,160.62L48.14,160.484L48.314,159.876L48.628,159.442L48.656,159.089L48.75,159.034L48.775,158.649L48.59,158.244L48.985,158.072L49.369,157.699L49.706,157.45L49.855,157.631L50.105,157.719L50.427,157.57L50.576,157.663L51.028,157.696L51.274,157.808L51.081,157.577L50.897,157.63L50.456,157.45L50.06,157.152L50.206,157.02L50.43,156.598L50.942,156.327L50.781,156.262L50.489,156.34L50.248,156.588L50.145,156.949L49.623,156.964L49.374,156.821L49.324,156.963L49.04,157.115L48.859,157.433L48.486,157.566L48.14,157.926L48.257,158.23L48.087,158.185L47.807,158.574L47.573,158.784L47.671,159.046L47.302,159.459L46.864,159.415L47.167,159.593L47.298,159.862L47.15,160.188L47.029,160.276L46.545,160.317L46.479,160.443L46.778,160.385L46.745,160.721L46.56,160.859L46.38,160.72L46.268,160.48L46.267,160.811L46.12,161.058L45.873,161.103L45.955,161.325L45.506,161.548L45.415,162.068L45.436,162.321L45.557,162.188L45.993,162.184L46.176,162.395L46.437,162.54L46.469,162.697L46.534,162.694L46.438,162.696L46.307,163.041L46.037,163.268L45.757,163.286L45.679,163.565L45.525,163.57L45.644,163.792L45.198,164.049L45.45,163.974L45.449,164.169L45.164,164.484L44.876,164.422L44.927,164.65L44.362,164.644L44.263,165.02L44.071,164.988L44.026,165.267L43.894,165.361L43.606,165.189L43.635,165.487L43.494,165.53L43.452,165.746L43.066,165.701L43.079,165.994L42.942,165.914L42.68,166.033L42.396,166.347L42.64,166.258L42.636,166.639L42.297,166.899L42.378,167.038L42.128,167.004L42.045,167.214L41.94,167.098L41.674,167.401L41.554,167.306L41.521,167.517L41.306,167.284L41.178,167.364L41.072,167.71L41.167,167.833L40.888,167.856L40.818,167.695L40.597,167.757L40.303,168.01L40.664,167.951L40.638,168.156L40.288,168.023L40.288,168.17L40.032,168.099L39.593,168.584L40.008,168.471L40.166,168.559L39.932,168.694L39.816,169.242L39.715,169.268L39.624,169.018L39.695,168.803L39.516,168.952L39.552,169.24L39.259,169.176L39.051,169.429L38.968,169.342L38.597,169.424L38.505,169.624L38.469,169.369L38.337,169.414L38.386,169.686L38.272,169.962L38.082,169.896L38.236,169.548L37.976,169.423L37.765,169.503L37.637,169.763L37.166,169.946L36.952,170.226L36.877,169.97L36.777,170.244L36.619,170.248L36.528,170.061L36.335,170.246L35.996,170.407L35.64,170.353L35.703,170.059L35.892,169.868L35.83,169.737L35.6,169.74L35.398,169.992L35.415,170.22L35.108,170.611L34.907,170.558L34.96,170.879L34.821,170.941L34.687,170.733L34.65,170.949L34.345,170.976L34.216,170.765L34.268,170.443L34.002,170.4L34.119,170.617L34.01,171.004L33.82,171.148L33.639,171.077L33.557,170.75L33.324,170.607L33.26,170.818L33.495,171.063L33.013,171.326L33.143,170.955L33.156,170.693L33.33,170.529L33.783,170.55L33.787,170.346L33.966,170.306L34.125,170.128L34.308,170.166L34.28,169.934L34.744,169.456L35.382,169.072L36.041,168.956L36.356,169.062L36.629,168.951L36.635,169.113L36.402,169.171L36.675,169.608L36.712,169.248L37.081,169.309L37.141,169.515L37.382,169.581L37.44,169.418L37.083,169.14L37.032,168.985L37.396,168.342L38.108,167.811L38.779,167.57L39.369,167.121L39.367,167.142L39.355,167.302L39.702,167.43L39.646,166.908L40.173,166.214L40.441,166.076L40.68,165.801L40.958,165.605L41.153,165.853L41.119,165.481L41,165.501L41.001,165.24L41.2,164.31L41.428,164.202L41.264,163.938L41.373,163.47L41.651,163.18L41.93,162.929L42.021,162.54L41.977,162.38L41.806,162.597L41.324,162.823L40.586,163.108L40.382,163.008L40.35,162.828L40.097,162.633L40.175,162.516L40.217,162.091L40.054,162.369L39.872,162.423L39.817,162.765L39.479,162.502L39.681,162.706L39.818,163.176L39.889,163.355L39.756,163.542L39.447,163.496L39.091,162.653L38.799,162.439L38.888,162.321L38.691,162.232L38.615,162.505L38.474,162.565L38.319,162.295L38.088,162.259L38.105,162.03L37.969,161.859L37.365,162.244L37.125,162.285L37.077,162.322L36.735,162.49L36.653,162.668L36.178,162.863L36.247,162.717L35.823,162.656L35.706,162.573L36.122,162.548L36.257,162.26L36.26,161.904L36.579,161.586L36.273,161.53L36.155,161.608L36.047,161.249L36.18,160.896L36.497,160.651L36.352,160.318L36.281,159.917L36.155,159.694L36.048,159.191L36.125,159.047L35.85,158.658L36.031,158.52L36.205,158.065L36.166,157.979L35.932,158.411L35.719,158.604L35.717,158.845L35.829,158.922L35.709,159.367L35.407,159.342L35.383,159.459L34.841,159.629L34.419,159.662L33.99,159.592L33.804,159.496L33.716,159.205L33.833,159.164L33.564,158.877L33.32,158.314L33.483,157.98L33.664,157.925L33.581,157.76L33.771,157.749L33.912,157.569L34.081,157.552L34.347,157.303L34.493,157.462L34.407,157.706L34.526,157.834L34.898,157.53L34.772,157.311L34.363,157.143L34.522,157.073L34.673,157.169L34.824,157.096L34.552,156.983L34.344,157.131L34.354,156.686L34.133,156.886L34.193,157.063L33.673,157.055L33.572,156.834L33.373,156.888L33.343,156.768L33.028,156.774L32.983,156.623L33.27,156.565L33.501,156.408L33.252,156.372L33.212,156.49L32.914,156.162L32.838,156.36L32.634,156.302L32.595,155.964L32.665,155.847L32.387,155.709L32.392,155.473L32.585,155.356L32.431,155.151L32.232,155.17L32.216,154.925L32.619,154.891L32.396,154.74L32.335,154.541L32.887,154.541L32.79,154.276L32.931,153.84L33.516,153.214L33.765,153.025L33.98,153.079L34.398,152.695L34.709,152.801L35.028,153.406L34.961,152.988L35.009,152.776L34.864,152.524L34.895,152.376L35.225,152.344L35.291,152.133L35.595,151.95L35.749,152.161L36.073,152.132L36.331,151.839L36.615,151.708L36.909,151.315L36.979,151.118L37.276,151.287L37.114,151.399L37.579,151.374L37.774,151.422L38.179,151.349L38.635,150.766L38.64,150.571L38.526,150.093L38.535,149.653L38.282,149.275L38.04,149.212L38.209,148.912L38.49,149.041L38.813,148.776L38.843,148.549L38.751,148.29L38.562,148.134L38.667,148.024L38.507,148.014L38.28,148.342L38.091,148.409L37.963,148.302L37.727,148.456L37.449,148.478L37.375,148.609L37.04,148.78L36.889,149.118L36.724,149.226L36.72,148.82L36.424,148.42L36.243,148.546L36.446,148.763L36.434,148.987L35.992,148.559L35.232,148.461L34.899,148.568L34.885,148.496L34.527,148.637L34.233,148.459L33.418,148.103L33.236,147.895L33.227,147.539L33.357,147.352L33.107,147.065L33.026,146.737L33.287,146.77L33.546,146.488L33.842,146.611L33.993,147.009L34.145,147.109L34.407,146.952L34.292,146.826L34.011,146.752L33.939,146.831L33.841,146.561L33.603,146.375L33.132,146.14L32.61,145.973L32.35,145.674L32.051,145.434L32.381,145.189L32.578,145.228L32.619,145.032L32.967,144.848L33.036,145.01L33.359,144.857L33.619,144.564L34.071,144.417L34.219,144.595L34.615,144.654L34.737,144.574L34.422,144.336L34.571,144.159L34.899,144.017L35.318,144.057L35.64,143.802L35.929,143.763L36.409,143.808L36.514,143.923L36.346,144.298L36.355,144.554L36.241,144.676L36.355,145.047L36.597,145.043L36.974,145.144L37.311,145.132L37.65,145.316L37.886,145.225L38.068,145.35L38.098,145.527L38.483,144.917L39.019,144.998L38.908,144.753L38.552,144.556L38.188,144.606L38.248,144.246L38.006,143.782L37.733,143.651L37.663,143.386L37.811,143.176L37.96,143.19L38.196,143.61L38.111,143.916L38.233,144.173L38.516,144.453L38.913,144.264L39.231,144.696L39.744,144.705L39.804,144.392L39.693,144.177L39.411,144.196L39.276,144.026L38.976,144.027L38.795,144.291L38.623,144.259L38.307,143.778L38.428,143.405L38.584,143.245L38.743,143.252L38.462,143.007L37.845,143.091L37.614,142.894L37.42,142.922L36.775,142.656L36.704,141.909L36.573,141.472L36.24,141.117L35.619,140.288L35.134,139.934L34.903,139.537L34.508,139.31L34.934,139.288L35.218,138.443L35.222,138.22L35.959,138.391L36.87,138.375L37.163,138.285L37.587,137.98L37.959,137.512L38.141,137.139L38.078,137.003L38.276,136.789L38.186,136.695L38.726,136.171L38.759,136.033L39.024,135.814L39.307,135.488L39.455,135.666L39.273,135.649L39.28,135.831L39.1,135.818L39.271,135.858L39.482,135.664L39.647,135.698L40.221,135.443L40.764,134.963L40.938,135.011L40.915,135.262L40.713,135.61L40.915,135.495L40.994,135.258L40.938,134.944L40.782,134.925L41.178,134.553L41.579,134.436L41.42,134.548L41.692,134.661L42.397,134.573L42.666,134.472L43.097,134.09L43.458,133.568L43.605,133.447L43.775,133.623L44.026,133.69L43.987,133.878L44.281,133.806L44.453,134.073L44.274,134.296L44.02,134.34L44.056,134.635L44.463,134.653L44.452,134.387L44.991,134.053L45.187,134.282L45.109,134.531L45.495,134.802L45.69,134.544L46.31,134.443L46.616,134.58L46.748,134.525L47.031,134.65L46.84,134.983L46.884,135.155L47.174,135.212L46.745,135.308L47.468,135.27L47.328,135.552L47.575,135.525L47.87,135.693L47.931,135.511L48.301,135.46L48.287,135.716L48.754,135.486L48.93,135.292L49.494,135.307L49.765,135.499L50.055,135.542L50.083,135.665L50.281,135.571L50.646,135.811L51.152,135.943L51.668,135.806L52.113,135.882L52.228,135.789L52.757,136.126L53.275,136.103L53.364,135.976L54.359,135.601L54.758,135.7L55.114,135.897L55.249,136.067L55.719,136.161L56.042,136.426L56.154,136.286L56.337,136.341L56.855,138.951L58.06,145.031L59.862,154.123L60.554,157.615L60.593,157.812L61.181,157.901L61.208,157.683L61.816,157.859L62.065,157.435L62.753,157.24L62.749,157.88L62.966,158.056L63.41,158.167L63.575,158.462L65.043,159.377L65.314,159.937L65.33,160.124L65.996,159.335L66.275,159.246L66.325,159.003L66.211,158.531L66.414,158.479L66.425,158.244L66.272,158.187L66.692,157.92L66.915,157.694L67.142,157.459L67.489,157.61L67.809,157.841L67.814,158.175L67.945,158.335L68.075,158.458L68.393,158.441L68.452,158.564L68.72,158.633L69.002,158.954L69.162,159.164L69.74,159.309L69.981,159.523L70.491,159.81L70.421,159.938L70.931,160.356L71.165,160.657L71.516,160.94L72.146,161.583L72.484,161.835L72.73,162.094L72.678,162.41L73.102,162.38L73.133,162.796L73.494,162.84L73.697,163.285L73.997,163.148L74.787,163.387L75.167,163.342L75.44,163.492L75.648,163.475L75.779,163.681L76.036,163.699L76.195,163.573L76.413,163.78L76.497,164.001L76.423,164.383L76.603,164.766L77.047,165.363L76.965,165.619L76.928,166.181L76.703,166.719L76.527,166.847L76.378,166.707L76.387,166.901L76.235,166.867L76.12,166.594L75.724,166.065L75.898,165.712L75.541,164.84L74.915,164.329L74.739,164.508L74.672,164.417L74.351,164.854L74.173,164.931L74.381,165.012L74.372,165.785L74.034,165.682L73.827,165.382L73.874,165.358L73.936,164.795L74.028,164.73L73.865,164.284L74.083,164.128L73.845,164.126L73.675,163.906L73.537,163.918L73.106,163.648L73.133,163.308L72.889,163.381L72.79,163.232L72.38,163.138L72.049,162.866L72.244,162.771L71.685,162.738L71.632,162.547L71.521,162.751L71.227,162.672L71.186,162.391L71.586,162.228L71.221,162.262L71.226,162.102L71.001,162.006L71.022,161.715L70.877,161.826L70.723,161.728L70.762,161.462L71.35,161.633L70.946,161.403L70.734,161.375L70.658,161.105L70.68,161.028L70.7,160.987L70.621,161.224L70.573,161.355L70.534,161.351L70.279,161.061L69.921,160.81L69.784,160.41L69.878,160.281L69.77,160.112L69.684,160.371L69.775,160.487L69.666,160.628L69.206,160.393L68.945,160.427L68.8,160.173L68.5,159.851L68.294,159.153L68.281,159.156L68.385,159.433L68.365,159.719L68.133,159.483L68.026,159.225L67.583,158.454L67.538,158.438L67.546,158.761L67.402,158.741L67.702,159.006L67.768,159.315L68.074,159.686L68.214,159.996L68.577,160.598L68.61,160.865L68.391,160.935L68.2,160.77L67.963,160.407L68.034,160.685L67.853,160.613L67.544,160.814Z" + }, + { + "fill": "rgb(196, 232, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.056; geo: [object Object]; name: Alaska", + "shape": "M7.208,172.472L6.987,171.876L6.674,171.551L6.701,171.463L7.065,171.8L7.304,172.409ZM13.561,173.982L13.569,173.658L13.763,173.703L13.721,173.904ZM13.865,173.986L13.799,173.825L13.929,173.737ZM14.185,173.908L14.026,173.744L14.196,173.748ZM11.312,173.492L11.102,173.228L11.356,173.195L11.099,172.734L11.178,172.674L11.511,172.769L11.507,172.929L11.841,173.14L11.597,173.121ZM12.369,173.603L12.137,173.459L11.697,173.347L12.33,173.405L12.458,173.36L12.556,173.121L12.697,173.16L12.446,173.639ZM6.725,170.86L6.726,170.662L6.887,170.815ZM12.64,173.999L12.636,173.823L12.846,173.752L12.856,173.537L13.063,173.627L13.168,173.256L13.484,173.302L13.266,173.619L13.504,173.651L13.479,173.914L13.351,173.835L13.222,173.963L12.829,173.953L12.893,173.76ZM8.188,171.56L8.059,171.381L8.116,171.247L8.371,171.245L8.487,171.426ZM14.134,173.59L14.009,173.316L14.264,173.295ZM5.075,170.306L4.995,170.095L5.305,170.021L5.453,170.072L5.695,169.832L5.822,169.917L5.548,170.116L5.478,170.269L5.306,170.143ZM17.731,174.618L17.501,174.425L17.279,174.437L17.043,174.181L17.264,174.187L17.972,174.539L18.218,174.553L18.527,174.682L18.246,174.676L17.783,174.572ZM19.21,174.508L19.1,174.457L19.216,174.262L19.422,174.217L19.586,174.415ZM15.503,173.971L15.469,173.891L15.861,173.847L16.001,173.938L16.399,173.923L16.879,173.75L16.731,173.599L16.826,173.471L17.091,173.452L17.244,173.796L17.085,173.925L16.926,173.858L16.992,174.135L16.548,174.055L16.469,174.185L16.266,174.051L16.139,174.121L15.636,173.934ZM0.869,166.844L0.863,166.746L0.55,166.543L1.077,166.54L0.967,166.892ZM21.821,174.509L21.844,174.278L22.126,174.208L22.105,174.435ZM23.437,174.349L23.277,174.183L23.102,174.231L23.105,174.07L23.513,174.097ZM0.359,165.533L0.25,165.294L0.317,165.161L0.137,165.097L0.215,164.976L0,164.859L0.322,164.823L0.669,165.101L0.885,165.161L0.882,165.371L1.052,165.442L0.935,165.65L0.746,165.624L0.642,165.461ZM24.339,174.42L24.92,173.939L24.922,173.765L25.243,173.562L25.587,173.67L25.492,173.49L25.569,173.301L25.872,173.097L26.199,173.077L26.48,173.253L26.343,173.537L25.686,173.737L25.329,174.108L24.904,174.283ZM28.723,173.248L28.621,173.034L28.914,172.927L28.886,173.11ZM26.524,173.926L26.343,173.708L26.546,173.576L26.683,173.634L26.87,173.503L27.064,173.632L27.142,173.476L27.461,173.468L27.377,173.226L27.607,173.225L27.574,173.03L28.051,173.064L27.656,172.923L27.495,172.715L27.642,172.512L27.924,172.417L28.219,172.407L28.309,172.566L28.219,172.85L28.749,172.592L28.835,172.73L28.202,173.125L28.595,173.037L28.622,173.274L28.292,173.296L28.007,173.637L27.842,173.537L27.506,173.604ZM30.463,172.696L30.238,172.602L30.631,172.557ZM29.308,172.571L29.093,172.508L29.033,172.312L29.255,172.116L29.554,172.349L29.61,172.484ZM29.771,172.483L29.68,172.092L29.96,172.06L29.849,172.237L30.018,172.274ZM33.865,172.488L33.588,172.259L33.66,172.17L33.901,172.29ZM74.081,167.735L73.738,167.425L74.01,167.461ZM34.409,171.47L34.277,171.318L34.441,171.103L34.554,171.17ZM75.662,166.938L75.407,166.799L75.671,166.574L75.8,166.777ZM31.122,172.033L30.865,171.928L30.819,171.49L31.141,171.393L31.418,170.93L31.611,170.825L31.831,170.926L32.367,170.688L32.854,170.725L33.036,171.472L33.227,171.439L33.273,171.639L32.875,171.532L32.87,171.674L32.632,171.75L32.352,171.642L31.965,171.621L31.6,171.774L31.452,171.989ZM38.285,171.606L38.386,171.371L38.461,171.527ZM35.242,171.036L35.067,170.757L35.401,170.884ZM73.762,167.251L73.575,167.223L73.618,167.062L73.458,166.946L73.512,166.819L73.814,167.101ZM38.058,171.36L38.167,171.221L38.16,170.957L38.265,171.137ZM74.023,167.962L73.872,167.956L73.261,167.524L73.074,167.198L72.995,166.877L73.097,166.801L73.494,167.286L73.548,167.451L73.861,167.611ZM75.233,166.742L75.143,166.675L75.199,166.369L75.03,166.12L75.438,166.234L75.507,166.531ZM37.226,171.694L37.486,171.198L37.52,170.929L37.726,171.064L37.589,171.291L37.299,171.538ZM72.854,167.019L72.715,167.04L72.642,166.781L72.763,166.704L72.949,166.844ZM37.166,170.793L36.93,170.594L37.179,170.514ZM36.491,171.021L36.515,170.503L36.68,170.352L36.788,170.428L36.991,170.909L36.887,171.032L36.596,170.851ZM74.938,166.512L74.789,166.407L74.58,165.905L74.907,166.043ZM72.477,167.054L72.372,166.959L72.363,166.646L72.573,166.69L72.462,166.817ZM37.444,170.505L37.221,170.325L37.474,170.335ZM72.448,166.599L72.328,166.584L72.392,166.373L72.569,166.506ZM72.086,166.688L72.161,166.467L72.312,166.375L72.272,166.627ZM72.656,166.481L72.479,166.333L72.602,166.203ZM72.272,165.998L71.997,165.868L72.141,165.695L72.466,165.749ZM43.521,170.008L43.326,169.856L43.586,169.674ZM72.554,165.713L72.404,165.617L72.384,165.416L72.528,165.494ZM71.232,166.005L71.174,165.767L71.372,165.735ZM75.569,166.131L75.372,166.022L75.191,166.055L75.296,165.636L75.237,165.597L75.059,166.057L74.582,165.838L74.721,165.411L74.581,165.384L74.436,164.925L74.644,164.862L74.53,164.736L74.9,164.424L75.245,164.66L75.563,165.054L75.701,165.915ZM71.882,165.613L71.723,165.531L71.837,165.112L72.059,164.912L72.239,164.888L72.335,165.188L72.224,165.18ZM73.587,165.027L73.345,164.738L73.092,164.839L72.901,164.502L73.031,164.404L73.033,164.174L73.255,164.161L73.267,164.403L73.5,164.362L73.75,164.499L73.655,164.672L73.826,164.838ZM72.792,165.04L72.79,165.034L72.848,164.986L73.227,165.127L73.531,165.363L73.588,165.637L73.772,165.62L73.928,165.828L74.187,165.954L73.71,165.866L73.534,165.761L73.634,166.031L73.81,165.94L74.232,166.16L74.387,166.361L74.22,166.541L74.44,166.514L74.475,166.305L74.605,166.536L74.545,166.999L74.705,166.855L74.831,167.133L74.905,167.586L74.533,167.66L74.479,167.392L74.073,167.113L74.103,167.279L73.839,166.781L73.722,166.886L73.317,166.703L72.924,166.796L72.899,166.564L73.187,166.567L73.089,166.343L72.917,166.37L72.898,165.973L72.674,166.161L72.502,166.11L72.495,165.901L72.667,165.571L72.49,165.453L72.269,164.876L71.856,164.937L71.693,164.734L71.683,164.549L71.92,164.555L72.211,164.438L72.534,164.72L72.597,165.051ZM72.699,164.533L72.381,164.387L72.439,164.071L72.7,163.972L72.896,164.073L72.929,164.351ZM73.583,164.359L73.287,164.214L73.107,163.753L73.256,163.772L73.517,163.99L73.655,163.918L73.898,164.208L73.77,164.454ZM45.565,168.253L45.542,168.135L45.783,168.09ZM41.497,168.094L41.439,167.948L41.656,167.967ZM44.643,168.468L44.735,168.179L44.931,168.025L45.022,168.214ZM45.528,168.049L45.421,168.226L45.185,168.22L45.343,167.978ZM25.67,165.804L25.49,165.559L25.853,165.696ZM72.925,163.531L72.795,163.376L73.04,163.351ZM72.576,163.923L72.402,163.944L72.354,163.634L72.152,163.3L72.347,163.258L72.849,163.61ZM71.103,163.771L71.031,163.648L71.25,163.653L71.291,164.075L71.234,164.314L71.424,164.687L71.372,164.848L71.445,165.272L71.385,165.316L71.167,165.024L71.296,165.553L71.127,165.438L70.855,164.821L70.918,164.565L71.153,164.76L70.983,164.429L70.669,164.355L70.694,164.247L70.458,164.026L70.358,163.778L70.54,163.491L70.842,163.567ZM71.316,163.755L71.051,163.419L70.687,163.208L70.836,162.993L71.484,163.01L71.847,162.897L72.052,163.024L72.307,163.594L72.268,163.757L71.663,163.359L71.955,163.737L72.129,163.763L72.22,163.968L72.129,164.186L71.802,164.154L71.845,164.26L71.583,164.385ZM46.514,167.086L46.407,166.815L46.628,166.571L47.067,166.699L46.667,166.844ZM25.105,164.277L25.002,164.053L25.411,164.032ZM68.541,163.942L68.445,163.718L68.54,163.498L68.407,163.516L68.288,163.158L68.481,163.141L68.755,163.487L68.763,163.818ZM69.656,164.245L69.462,164.32L69.445,164.112L69.197,164.168L69.109,163.894L69.209,163.645L68.985,163.546L68.931,163.194L68.729,163.281L68.463,163.027L68.717,162.991L68.534,162.913L68.635,162.524L68.805,162.676L68.961,162.597L69.268,162.728L69.456,162.645L69.573,162.88L69.42,162.828L69.654,163.152L70.177,164.102L70.458,165.183L70.516,165.378L70.283,165.268L69.578,164.404ZM47.667,164.962L47.464,164.879L47.577,164.748ZM46.616,165.184L46.238,164.926L46.281,164.765L46.514,164.936ZM45.455,167.675L45.543,167.433L45.818,167.156L45.672,167.171L45.772,166.792L45.53,167.138L45.447,167.077L45.53,166.784L45.339,166.689L45.033,166.772L45.141,166.954L45.247,166.81L45.489,166.77L45.474,167.171L45.3,167.22L44.962,167.085L44.956,166.634L44.849,166.434L44.694,166.413L44.624,166.242L44.84,165.864L45.181,165.559L45.621,165.548L45.644,165.774L45.903,166.316L45.856,165.808L45.964,165.772L45.779,165.587L46.017,165.482L45.756,165.401L45.707,165.154L45.983,164.983L46.163,165.103L46.187,165.366L46.279,165.085L46.616,165.197L46.582,164.959L46.825,165.138L46.535,164.807L46.95,164.816L47.121,164.902L46.999,165.103L47.21,165.128L47.326,164.889L47.542,164.946L47.703,165.13L47.524,165.353L47.553,165.637L47.944,165.584L47.717,166.052L47.531,166.052L47.206,165.863L47.031,165.913L47.374,166.105L47.266,166.403L47.126,166.428L46.878,166.259L46.963,166.469L46.6,166.531L46.32,166.803L46.165,166.847L46.088,167.028L46.212,167.079L45.759,167.612ZM67.232,162.207L67.057,162.091L66.989,161.666L67.268,161.795ZM46.927,164.748L46.577,164.591L46.35,164.572L46.539,164.368L46.754,164.498ZM68.03,161.496L67.948,161.664L68.11,161.663L68.304,161.178L68.401,161.211L68.888,161.246L68.995,161.39L68.955,161.614L68.643,161.55L69.071,161.788L68.749,161.948L68.513,161.839L67.806,161.671L68.012,161.809L68.268,161.829L68.794,162.118L68.908,161.947L69.113,161.883L69.321,162.221L69.388,162.528L69.119,162.606L68.34,162.261L68.016,162.186L68.468,162.482L68.566,162.744L68.435,163.043L67.72,162.566L67.59,162.294L67.443,162.286L67.366,162.206L67.314,162.221L67.285,162.231L67.267,161.808L67.756,162.089L67.762,162.076L67.653,162.037L67.076,161.581L67.214,161.293L67.307,161.432L67.379,161.243L67.592,161.217L67.744,160.987L68.047,161.084L68.167,161.33ZM69.593,160.679L69.226,160.702L69.055,160.547L69.193,160.425ZM69.075,160.755L69.127,160.897L69.269,160.771L69.577,160.839L69.585,160.834L69.747,160.712L69.709,160.814L70.316,161.405L70.417,161.683L70.316,161.691L69.89,161.085L69.616,160.904L69.807,161.165L69.678,161.137L70.119,161.662L70.421,161.861L70.526,162.122L70.282,162.158L70.672,162.392L70.575,162.568L70.279,162.44L70.432,162.844L70.139,163.322L69.992,163.373L69.827,162.937L69.927,162.732L69.788,162.569L69.951,162.562L69.738,162.405L69.385,161.9L69.347,161.648L69.065,161.17L69.098,161.065L69.056,160.846L69.058,160.85L69.068,161.073L68.759,160.731L68.66,160.424ZM47.698,163.699L47.844,163.894L48.127,163.909L48.104,164.186L48.002,164.316L47.69,164.106L47.76,164.391L47.401,164.426L47.137,164.547L47.14,164.714L46.84,164.599L46.583,164.327L46.653,164.198L47.049,164.329L46.735,164.1L46.8,164.005L47.128,164.05L46.995,163.76L47.273,163.564L47.489,163.61L47.62,163.956ZM47.273,163.356L47.646,163.199L47.488,163.586L47.307,163.53ZM37.008,162.966L37.068,162.615L37.525,162.432L37.246,162.923ZM46.205,161.603L46.203,161.443L46.418,161.51ZM49.54,161.585L49.568,161.28L49.663,161.391ZM56.651,159.7L56.825,159.341L57.034,159.174ZM52.603,159.836L52.755,159.52L52.754,159.742ZM52.564,159.593L52.449,159.673L52.635,159.307L52.739,159.442ZM52.319,159.682L52.275,159.507L52.535,159.27L52.425,159.646ZM52.837,160.224L52.807,159.991L53.278,159.397L53.532,158.85L53.789,158.824L53.739,159.027L53.531,159.242L53.243,159.77L53.317,159.92ZM31.343,159.276L31.112,158.973L30.893,158.95L30.524,158.533L30.39,158.518L30.095,157.909L30.506,157.942L30.776,158.078L30.835,157.929L31.277,157.724L31.381,157.822L31.69,157.794L31.709,157.966L31.95,157.965L32.153,158.126L32.051,158.414L32.11,159.043L31.591,159.047ZM54.166,158.979L54.075,158.882L54.305,158.656L54.038,158.735L54.13,158.393L54.376,158.364L54.435,158.517L54.752,158.548L54.513,158.68ZM47.861,159.169L48.019,158.752L48.12,158.819ZM52.684,159.07L52.846,158.476L52.995,158.647L52.885,159.293ZM24.697,156.405L24.378,156.266L24.095,155.785L23.983,155.711L24.166,155.496L24.172,155.727L24.309,155.965L24.607,156.144ZM54.582,158.417L54.486,158.272L55.025,158.02L55.014,158.127ZM52.578,158.139L52.457,157.986L52.668,158.039ZM52.309,158.23L52.233,157.93L52.356,157.962ZM33.232,158.311L32.996,158.157L32.843,157.913L33.07,157.69L32.801,157.745L32.601,157.685L33.145,157.263L33.081,157.1L33.314,156.947L33.58,156.914L33.493,157.063L33.963,157.238L33.987,157.51L33.576,157.763L33.667,157.903L33.467,157.972L33.493,158.128ZM52.432,157.851L52.316,157.842L52.357,157.514L52.562,157.74ZM34.066,152.913L34.042,152.489L34.423,152.586ZM35.013,153.321L34.839,152.867L34.365,152.562L34.077,152.438L34.311,151.985L34.695,152.046L34.875,152.326L34.961,152.678L34.942,152.985ZM34.898,152.358L34.673,152.014L34.456,151.876L34.489,151.715L34.767,151.534L35.08,151.521L35.402,151.694L35.578,151.932L35.281,152.121L35.114,152.389ZM36.714,151.094L36.581,150.987L36.903,150.884L36.905,151.074ZM29.125,151.127L28.962,150.584L28.617,150.398L28.695,150.211L28.406,149.844L28.162,149.629L27.742,149.675L27.498,149.816L27.222,149.591L27.183,149.295L27.4,148.943L27.48,148.65L27.615,149.149L27.877,149.168L28.113,149.356L28.695,149.178L28.883,149.256L29.034,149.469L29.019,149.796L29.386,150.004L29.441,150.178L29.994,150.349L30.296,150.535L30.05,150.833L29.603,150.644L29.266,150.879ZM48.345,135.536L48.216,135.37L48.444,135.35ZM67.55,160.543L67.257,160.061L67.068,159.885L67.401,159.624L67.149,159.625L67.096,159.791L66.932,159.473L67.028,159.984L66.923,160.079L66.584,159.96L66.452,159.673L66.385,159.889L66.09,159.808L65.933,159.981L66.267,159.953L66.61,160.056L66.549,160.133L67.065,160.384L67.348,160.749L67.346,160.958L67.036,161.16L66.744,161.079L66.839,161.28L66.716,161.434L66.388,161.216L66.124,161.163L65.413,160.845L64.901,160.485L64.811,160.268L64.449,160.026L64.054,159.951L64.077,159.751L63.841,159.875L62.869,159.493L62.804,159.515L62.267,159.293L62.434,159.144L62.59,158.886L62.366,158.417L62.525,158.201L62.414,158.033L62.218,158.628L61.674,159.056L61.016,159.095L60.274,158.888L60.443,158.587L60.215,158.224L60.08,158.361L60.301,158.537L60.074,158.734L58.878,158.654L58.502,158.713L57.675,158.977L57.411,159.113L56.931,158.823L56.948,158.736L56.531,158.8L56.386,158.61L56.099,158.595L56.21,158.098L56.156,157.829L55.958,158.056L55.857,158.326L55.632,158.555L55.43,158.39L55.134,158.294L54.894,158.369L55.223,157.843L54.777,157.996L54.858,157.77L54.571,158.002L54.478,157.952L54.687,157.73L54.385,157.685L54.28,157.887L54.009,157.905L54.53,157.48L54.449,157.388L54.335,157.574L54.113,157.617L53.872,157.411L53.961,156.992L54.384,156.936L54.285,156.825L53.926,156.935L53.688,157.305L53.437,157.211L53.3,157.269L53.164,157.546L52.994,157.534L52.983,157.125L52.903,157.143L52.745,157.715L52.364,157.504L52.479,157.146L52.646,156.883L52.677,156.659L52.408,157.126L52.341,157.335L52.2,157.082L51.981,157.378L52.218,157.189L52.108,157.48L52.099,157.759L51.901,157.841L51.732,158.043L51.744,158.184L51.9,157.931L52.025,157.894L52.053,158.134L52.157,157.945L52.292,158.268L52.144,158.475L51.967,158.386L51.776,158.58L51.775,158.676L52.001,158.451L52.222,158.562L52.415,158.299L52.588,158.706L52.296,158.885L52.267,159.129L52.467,159.212L52.257,159.445L52.218,159.335L52.132,159.863L51.986,159.68L51.868,159.938L51.336,159.867L51.431,159.683L51.274,159.715L51.165,160.009L51.058,159.631L50.942,159.536L50.985,159.858L50.747,160.076L50.625,159.953L50.625,160.543L50.344,160.379L50.417,160.674L50.248,160.688L50.266,160.859L49.899,161.158L50.015,160.713L49.814,161.168L49.647,160.989L49.669,161.252L49.507,161.263L49.21,161.785L49.159,161.52L49.089,161.772L48.747,161.714L48.325,161.938L48.047,161.724L48.146,161.318L48.427,161.164L48.654,161.2L48.66,161.034L48.97,160.899L48.936,160.794L49.241,160.41L49.08,160.414L48.58,160.809L48.187,160.62L48.14,160.484L48.314,159.876L48.628,159.442L48.656,159.089L48.75,159.034L48.775,158.649L48.59,158.244L48.985,158.072L49.369,157.699L49.706,157.45L49.855,157.631L50.105,157.719L50.427,157.57L50.576,157.663L51.028,157.696L51.274,157.808L51.081,157.577L50.897,157.63L50.456,157.45L50.06,157.152L50.206,157.02L50.43,156.598L50.942,156.327L50.781,156.262L50.489,156.34L50.248,156.588L50.145,156.949L49.623,156.964L49.374,156.821L49.324,156.963L49.04,157.115L48.859,157.433L48.486,157.566L48.14,157.926L48.257,158.23L48.087,158.185L47.807,158.574L47.573,158.784L47.671,159.046L47.302,159.459L46.864,159.415L47.167,159.593L47.298,159.862L47.15,160.188L47.029,160.276L46.545,160.317L46.479,160.443L46.778,160.385L46.745,160.721L46.56,160.859L46.38,160.72L46.268,160.48L46.267,160.811L46.12,161.058L45.873,161.103L45.955,161.325L45.506,161.548L45.415,162.068L45.436,162.321L45.557,162.188L45.993,162.184L46.176,162.395L46.437,162.54L46.469,162.697L46.534,162.694L46.438,162.696L46.307,163.041L46.037,163.268L45.757,163.286L45.679,163.565L45.525,163.57L45.644,163.792L45.198,164.049L45.45,163.974L45.449,164.169L45.164,164.484L44.876,164.422L44.927,164.65L44.362,164.644L44.263,165.02L44.071,164.988L44.026,165.267L43.894,165.361L43.606,165.189L43.635,165.487L43.494,165.53L43.452,165.746L43.066,165.701L43.079,165.994L42.942,165.914L42.68,166.033L42.396,166.347L42.64,166.258L42.636,166.639L42.297,166.899L42.378,167.038L42.128,167.004L42.045,167.214L41.94,167.098L41.674,167.401L41.554,167.306L41.521,167.517L41.306,167.284L41.178,167.364L41.072,167.71L41.167,167.833L40.888,167.856L40.818,167.695L40.597,167.757L40.303,168.01L40.664,167.951L40.638,168.156L40.288,168.023L40.288,168.17L40.032,168.099L39.593,168.584L40.008,168.471L40.166,168.559L39.932,168.694L39.816,169.242L39.715,169.268L39.624,169.018L39.695,168.803L39.516,168.952L39.552,169.24L39.259,169.176L39.051,169.429L38.968,169.342L38.597,169.424L38.505,169.624L38.469,169.369L38.337,169.414L38.386,169.686L38.272,169.962L38.082,169.896L38.236,169.548L37.976,169.423L37.765,169.503L37.637,169.763L37.166,169.946L36.952,170.226L36.877,169.97L36.777,170.244L36.619,170.248L36.528,170.061L36.335,170.246L35.996,170.407L35.64,170.353L35.703,170.059L35.892,169.868L35.83,169.737L35.6,169.74L35.398,169.992L35.415,170.22L35.108,170.611L34.907,170.558L34.96,170.879L34.821,170.941L34.687,170.733L34.65,170.949L34.345,170.976L34.216,170.765L34.268,170.443L34.002,170.4L34.119,170.617L34.01,171.004L33.82,171.148L33.639,171.077L33.557,170.75L33.324,170.607L33.26,170.818L33.495,171.063L33.013,171.326L33.143,170.955L33.156,170.693L33.33,170.529L33.783,170.55L33.787,170.346L33.966,170.306L34.125,170.128L34.308,170.166L34.28,169.934L34.744,169.456L35.382,169.072L36.041,168.956L36.356,169.062L36.629,168.951L36.635,169.113L36.402,169.171L36.675,169.608L36.712,169.248L37.081,169.309L37.141,169.515L37.382,169.581L37.44,169.418L37.083,169.14L37.032,168.985L37.396,168.342L38.108,167.811L38.779,167.57L39.369,167.121L39.367,167.142L39.355,167.302L39.702,167.43L39.646,166.908L40.173,166.214L40.441,166.076L40.68,165.801L40.958,165.605L41.153,165.853L41.119,165.481L41,165.501L41.001,165.24L41.2,164.31L41.428,164.202L41.264,163.938L41.373,163.47L41.651,163.18L41.93,162.929L42.021,162.54L41.977,162.38L41.806,162.597L41.324,162.823L40.586,163.108L40.382,163.008L40.35,162.828L40.097,162.633L40.175,162.516L40.217,162.091L40.054,162.369L39.872,162.423L39.817,162.765L39.479,162.502L39.681,162.706L39.818,163.176L39.889,163.355L39.756,163.542L39.447,163.496L39.091,162.653L38.799,162.439L38.888,162.321L38.691,162.232L38.615,162.505L38.474,162.565L38.319,162.295L38.088,162.259L38.105,162.03L37.969,161.859L37.365,162.244L37.125,162.285L37.077,162.322L36.735,162.49L36.653,162.668L36.178,162.863L36.247,162.717L35.823,162.656L35.706,162.573L36.122,162.548L36.257,162.26L36.26,161.904L36.579,161.586L36.273,161.53L36.155,161.608L36.047,161.249L36.18,160.896L36.497,160.651L36.352,160.318L36.281,159.917L36.155,159.694L36.048,159.191L36.125,159.047L35.85,158.658L36.031,158.52L36.205,158.065L36.166,157.979L35.932,158.411L35.719,158.604L35.717,158.845L35.829,158.922L35.709,159.367L35.407,159.342L35.383,159.459L34.841,159.629L34.419,159.662L33.99,159.592L33.804,159.496L33.716,159.205L33.833,159.164L33.564,158.877L33.32,158.314L33.483,157.98L33.664,157.925L33.581,157.76L33.771,157.749L33.912,157.569L34.081,157.552L34.347,157.303L34.493,157.462L34.407,157.706L34.526,157.834L34.898,157.53L34.772,157.311L34.363,157.143L34.522,157.073L34.673,157.169L34.824,157.096L34.552,156.983L34.344,157.131L34.354,156.686L34.133,156.886L34.193,157.063L33.673,157.055L33.572,156.834L33.373,156.888L33.343,156.768L33.028,156.774L32.983,156.623L33.27,156.565L33.501,156.408L33.252,156.372L33.212,156.49L32.914,156.162L32.838,156.36L32.634,156.302L32.595,155.964L32.665,155.847L32.387,155.709L32.392,155.473L32.585,155.356L32.431,155.151L32.232,155.17L32.216,154.925L32.619,154.891L32.396,154.74L32.335,154.541L32.887,154.541L32.79,154.276L32.931,153.84L33.516,153.214L33.765,153.025L33.98,153.079L34.398,152.695L34.709,152.801L35.028,153.406L34.961,152.988L35.009,152.776L34.864,152.524L34.895,152.376L35.225,152.344L35.291,152.133L35.595,151.95L35.749,152.161L36.073,152.132L36.331,151.839L36.615,151.708L36.909,151.315L36.979,151.118L37.276,151.287L37.114,151.399L37.579,151.374L37.774,151.422L38.179,151.349L38.635,150.766L38.64,150.571L38.526,150.093L38.535,149.653L38.282,149.275L38.04,149.212L38.209,148.912L38.49,149.041L38.813,148.776L38.843,148.549L38.751,148.29L38.562,148.134L38.667,148.024L38.507,148.014L38.28,148.342L38.091,148.409L37.963,148.302L37.727,148.456L37.449,148.478L37.375,148.609L37.04,148.78L36.889,149.118L36.724,149.226L36.72,148.82L36.424,148.42L36.243,148.546L36.446,148.763L36.434,148.987L35.992,148.559L35.232,148.461L34.899,148.568L34.885,148.496L34.527,148.637L34.233,148.459L33.418,148.103L33.236,147.895L33.227,147.539L33.357,147.352L33.107,147.065L33.026,146.737L33.287,146.77L33.546,146.488L33.842,146.611L33.993,147.009L34.145,147.109L34.407,146.952L34.292,146.826L34.011,146.752L33.939,146.831L33.841,146.561L33.603,146.375L33.132,146.14L32.61,145.973L32.35,145.674L32.051,145.434L32.381,145.189L32.578,145.228L32.619,145.032L32.967,144.848L33.036,145.01L33.359,144.857L33.619,144.564L34.071,144.417L34.219,144.595L34.615,144.654L34.737,144.574L34.422,144.336L34.571,144.159L34.899,144.017L35.318,144.057L35.64,143.802L35.929,143.763L36.409,143.808L36.514,143.923L36.346,144.298L36.355,144.554L36.241,144.676L36.355,145.047L36.597,145.043L36.974,145.144L37.311,145.132L37.65,145.316L37.886,145.225L38.068,145.35L38.098,145.527L38.483,144.917L39.019,144.998L38.908,144.753L38.552,144.556L38.188,144.606L38.248,144.246L38.006,143.782L37.733,143.651L37.663,143.386L37.811,143.176L37.96,143.19L38.196,143.61L38.111,143.916L38.233,144.173L38.516,144.453L38.913,144.264L39.231,144.696L39.744,144.705L39.804,144.392L39.693,144.177L39.411,144.196L39.276,144.026L38.976,144.027L38.795,144.291L38.623,144.259L38.307,143.778L38.428,143.405L38.584,143.245L38.743,143.252L38.462,143.007L37.845,143.091L37.614,142.894L37.42,142.922L36.775,142.656L36.704,141.909L36.573,141.472L36.24,141.117L35.619,140.288L35.134,139.934L34.903,139.537L34.508,139.31L34.934,139.288L35.218,138.443L35.222,138.22L35.959,138.391L36.87,138.375L37.163,138.285L37.587,137.98L37.959,137.512L38.141,137.139L38.078,137.003L38.276,136.789L38.186,136.695L38.726,136.171L38.759,136.033L39.024,135.814L39.307,135.488L39.455,135.666L39.273,135.649L39.28,135.831L39.1,135.818L39.271,135.858L39.482,135.664L39.647,135.698L40.221,135.443L40.764,134.963L40.938,135.011L40.915,135.262L40.713,135.61L40.915,135.495L40.994,135.258L40.938,134.944L40.782,134.925L41.178,134.553L41.579,134.436L41.42,134.548L41.692,134.661L42.397,134.573L42.666,134.472L43.097,134.09L43.458,133.568L43.605,133.447L43.775,133.623L44.026,133.69L43.987,133.878L44.281,133.806L44.453,134.073L44.274,134.296L44.02,134.34L44.056,134.635L44.463,134.653L44.452,134.387L44.991,134.053L45.187,134.282L45.109,134.531L45.495,134.802L45.69,134.544L46.31,134.443L46.616,134.58L46.748,134.525L47.031,134.65L46.84,134.983L46.884,135.155L47.174,135.212L46.745,135.308L47.468,135.27L47.328,135.552L47.575,135.525L47.87,135.693L47.931,135.511L48.301,135.46L48.287,135.716L48.754,135.486L48.93,135.292L49.494,135.307L49.765,135.499L50.055,135.542L50.083,135.665L50.281,135.571L50.646,135.811L51.152,135.943L51.668,135.806L52.113,135.882L52.228,135.789L52.757,136.126L53.275,136.103L53.364,135.976L54.359,135.601L54.758,135.7L55.114,135.897L55.249,136.067L55.719,136.161L56.042,136.426L56.154,136.286L56.337,136.341L56.855,138.951L58.06,145.031L59.862,154.123L60.554,157.615L60.593,157.812L61.181,157.901L61.208,157.683L61.816,157.859L62.065,157.435L62.753,157.24L62.749,157.88L62.966,158.056L63.41,158.167L63.575,158.462L65.043,159.377L65.314,159.937L65.33,160.124L65.996,159.335L66.275,159.246L66.325,159.003L66.211,158.531L66.414,158.479L66.425,158.244L66.272,158.187L66.692,157.92L66.915,157.694L67.142,157.459L67.489,157.61L67.809,157.841L67.814,158.175L67.945,158.335L68.075,158.458L68.393,158.441L68.452,158.564L68.72,158.633L69.002,158.954L69.162,159.164L69.74,159.309L69.981,159.523L70.491,159.81L70.421,159.938L70.931,160.356L71.165,160.657L71.516,160.94L72.146,161.583L72.484,161.835L72.73,162.094L72.678,162.41L73.102,162.38L73.133,162.796L73.494,162.84L73.697,163.285L73.997,163.148L74.787,163.387L75.167,163.342L75.44,163.492L75.648,163.475L75.779,163.681L76.036,163.699L76.195,163.573L76.413,163.78L76.497,164.001L76.423,164.383L76.603,164.766L77.047,165.363L76.965,165.619L76.928,166.181L76.703,166.719L76.527,166.847L76.378,166.707L76.387,166.901L76.235,166.867L76.12,166.594L75.724,166.065L75.898,165.712L75.541,164.84L74.915,164.329L74.739,164.508L74.672,164.417L74.351,164.854L74.173,164.931L74.381,165.012L74.372,165.785L74.034,165.682L73.827,165.382L73.874,165.358L73.936,164.795L74.028,164.73L73.865,164.284L74.083,164.128L73.845,164.126L73.675,163.906L73.537,163.918L73.106,163.648L73.133,163.308L72.889,163.381L72.79,163.232L72.38,163.138L72.049,162.866L72.244,162.771L71.685,162.738L71.632,162.547L71.521,162.751L71.227,162.672L71.186,162.391L71.586,162.228L71.221,162.262L71.226,162.102L71.001,162.006L71.022,161.715L70.877,161.826L70.723,161.728L70.762,161.462L71.35,161.633L70.946,161.403L70.734,161.375L70.658,161.105L70.68,161.028L70.7,160.987L70.621,161.224L70.573,161.355L70.534,161.351L70.279,161.061L69.921,160.81L69.784,160.41L69.878,160.281L69.77,160.112L69.684,160.371L69.775,160.487L69.666,160.628L69.206,160.393L68.945,160.427L68.8,160.173L68.5,159.851L68.294,159.153L68.281,159.156L68.385,159.433L68.365,159.719L68.133,159.483L68.026,159.225L67.583,158.454L67.538,158.438L67.546,158.761L67.402,158.741L67.702,159.006L67.768,159.315L68.074,159.686L68.214,159.996L68.577,160.598L68.61,160.865L68.391,160.935L68.2,160.77L67.963,160.407L68.034,160.685L67.853,160.613L67.544,160.814Z" + }, + { + "fill": "rgb(165, 220, 183)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.079; geo: [object Object]; name: Arizona", + "shape": "M90.279,92.325L95.295,93.033L94.371,99.721L93.406,106.711L93.053,109.263L92.274,114.618L91.747,118.428L91.349,121.312L91.024,123.66L90.015,130.964L82.066,129.806L78.584,129.26L77.047,128.375L66.746,122.39L59.131,117.804L59.344,117.148L59.943,116.417L61.059,116.377L61.599,115.404L61.471,114.603L60.692,114.404L60.491,113.976L60.868,113.111L60.66,112.519L60.81,111.868L61.4,111.764L62.098,111.114L62.445,110.18L62.53,108.621L63.208,108.051L63.305,107.656L64.369,107.268L65.174,106.536L64.281,105.345L63.925,103.484L63.236,102.218L63.421,101.384L63.927,100.543L64.06,99.269L63.828,98.037L64.117,97.282L63.967,96.644L64.415,95.584L64.13,94.745L64.213,94.031L64.961,93.827L66.104,94.008L66.857,95.078L67.325,95.099L68.092,94.076L68.885,89.742L69.087,88.696L75.097,89.813L76.972,90.147L82.869,91.14L86.35,91.686Z" + }, + { + "fill": "rgb(197, 232, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.055; geo: [object Object]; name: Arizona", + "shape": "M90.279,92.325L95.295,93.033L94.371,99.721L93.406,106.711L93.053,109.263L92.274,114.618L91.747,118.428L91.349,121.312L91.024,123.66L90.015,130.964L82.066,129.806L78.584,129.26L77.047,128.375L66.746,122.39L59.131,117.804L59.344,117.148L59.943,116.417L61.059,116.377L61.599,115.404L61.471,114.603L60.692,114.404L60.491,113.976L60.868,113.111L60.66,112.519L60.81,111.868L61.4,111.764L62.098,111.114L62.445,110.18L62.53,108.621L63.208,108.051L63.305,107.656L64.369,107.268L65.174,106.536L64.281,105.345L63.925,103.484L63.236,102.218L63.421,101.384L63.927,100.543L64.06,99.269L63.828,98.037L64.117,97.282L63.967,96.644L64.415,95.584L64.13,94.745L64.213,94.031L64.961,93.827L66.104,94.008L66.857,95.078L67.325,95.099L68.092,94.076L68.885,89.742L69.087,88.696L75.097,89.813L76.972,90.147L82.869,91.14L86.35,91.686Z" + }, + { + "fill": "rgb(110, 199, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.116; geo: [object Object]; name: Arizona", + "shape": "M90.279,92.325L95.295,93.033L94.371,99.721L93.406,106.711L93.053,109.263L92.274,114.618L91.747,118.428L91.349,121.312L91.024,123.66L90.015,130.964L82.066,129.806L78.584,129.26L77.047,128.375L66.746,122.39L59.131,117.804L59.344,117.148L59.943,116.417L61.059,116.377L61.599,115.404L61.471,114.603L60.692,114.404L60.491,113.976L60.868,113.111L60.66,112.519L60.81,111.868L61.4,111.764L62.098,111.114L62.445,110.18L62.53,108.621L63.208,108.051L63.305,107.656L64.369,107.268L65.174,106.536L64.281,105.345L63.925,103.484L63.236,102.218L63.421,101.384L63.927,100.543L64.06,99.269L63.828,98.037L64.117,97.282L63.967,96.644L64.415,95.584L64.13,94.745L64.213,94.031L64.961,93.827L66.104,94.008L66.857,95.078L67.325,95.099L68.092,94.076L68.885,89.742L69.087,88.696L75.097,89.813L76.972,90.147L82.869,91.14L86.35,91.686Z" + }, + { + "fill": "rgb(114, 201, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.113; geo: [object Object]; name: Arizona", + "shape": "M90.279,92.325L95.295,93.033L94.371,99.721L93.406,106.711L93.053,109.263L92.274,114.618L91.747,118.428L91.349,121.312L91.024,123.66L90.015,130.964L82.066,129.806L78.584,129.26L77.047,128.375L66.746,122.39L59.131,117.804L59.344,117.148L59.943,116.417L61.059,116.377L61.599,115.404L61.471,114.603L60.692,114.404L60.491,113.976L60.868,113.111L60.66,112.519L60.81,111.868L61.4,111.764L62.098,111.114L62.445,110.18L62.53,108.621L63.208,108.051L63.305,107.656L64.369,107.268L65.174,106.536L64.281,105.345L63.925,103.484L63.236,102.218L63.421,101.384L63.927,100.543L64.06,99.269L63.828,98.037L64.117,97.282L63.967,96.644L64.415,95.584L64.13,94.745L64.213,94.031L64.961,93.827L66.104,94.008L66.857,95.078L67.325,95.099L68.092,94.076L68.885,89.742L69.087,88.696L75.097,89.813L76.972,90.147L82.869,91.14L86.35,91.686Z" + }, + { + "fill": "rgb(69, 180, 194)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.148; geo: [object Object]; name: Arizona", + "shape": "M90.279,92.325L95.295,93.033L94.371,99.721L93.406,106.711L93.053,109.263L92.274,114.618L91.747,118.428L91.349,121.312L91.024,123.66L90.015,130.964L82.066,129.806L78.584,129.26L77.047,128.375L66.746,122.39L59.131,117.804L59.344,117.148L59.943,116.417L61.059,116.377L61.599,115.404L61.471,114.603L60.692,114.404L60.491,113.976L60.868,113.111L60.66,112.519L60.81,111.868L61.4,111.764L62.098,111.114L62.445,110.18L62.53,108.621L63.208,108.051L63.305,107.656L64.369,107.268L65.174,106.536L64.281,105.345L63.925,103.484L63.236,102.218L63.421,101.384L63.927,100.543L64.06,99.269L63.828,98.037L64.117,97.282L63.967,96.644L64.415,95.584L64.13,94.745L64.213,94.031L64.961,93.827L66.104,94.008L66.857,95.078L67.325,95.099L68.092,94.076L68.885,89.742L69.087,88.696L75.097,89.813L76.972,90.147L82.869,91.14L86.35,91.686Z" + }, + { + "fill": "rgb(111, 199, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.115; geo: [object Object]; name: Arizona", + "shape": "M90.279,92.325L95.295,93.033L94.371,99.721L93.406,106.711L93.053,109.263L92.274,114.618L91.747,118.428L91.349,121.312L91.024,123.66L90.015,130.964L82.066,129.806L78.584,129.26L77.047,128.375L66.746,122.39L59.131,117.804L59.344,117.148L59.943,116.417L61.059,116.377L61.599,115.404L61.471,114.603L60.692,114.404L60.491,113.976L60.868,113.111L60.66,112.519L60.81,111.868L61.4,111.764L62.098,111.114L62.445,110.18L62.53,108.621L63.208,108.051L63.305,107.656L64.369,107.268L65.174,106.536L64.281,105.345L63.925,103.484L63.236,102.218L63.421,101.384L63.927,100.543L64.06,99.269L63.828,98.037L64.117,97.282L63.967,96.644L64.415,95.584L64.13,94.745L64.213,94.031L64.961,93.827L66.104,94.008L66.857,95.078L67.325,95.099L68.092,94.076L68.885,89.742L69.087,88.696L75.097,89.813L76.972,90.147L82.869,91.14L86.35,91.686Z" + }, + { + "fill": "rgb(40, 149, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.185; geo: [object Object]; name: Arizona", + "shape": "M90.279,92.325L95.295,93.033L94.371,99.721L93.406,106.711L93.053,109.263L92.274,114.618L91.747,118.428L91.349,121.312L91.024,123.66L90.015,130.964L82.066,129.806L78.584,129.26L77.047,128.375L66.746,122.39L59.131,117.804L59.344,117.148L59.943,116.417L61.059,116.377L61.599,115.404L61.471,114.603L60.692,114.404L60.491,113.976L60.868,113.111L60.66,112.519L60.81,111.868L61.4,111.764L62.098,111.114L62.445,110.18L62.53,108.621L63.208,108.051L63.305,107.656L64.369,107.268L65.174,106.536L64.281,105.345L63.925,103.484L63.236,102.218L63.421,101.384L63.927,100.543L64.06,99.269L63.828,98.037L64.117,97.282L63.967,96.644L64.415,95.584L64.13,94.745L64.213,94.031L64.961,93.827L66.104,94.008L66.857,95.078L67.325,95.099L68.092,94.076L68.885,89.742L69.087,88.696L75.097,89.813L76.972,90.147L82.869,91.14L86.35,91.686Z" + }, + { + "fill": "rgb(111, 199, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.115; geo: [object Object]; name: Arizona", + "shape": "M90.279,92.325L95.295,93.033L94.371,99.721L93.406,106.711L93.053,109.263L92.274,114.618L91.747,118.428L91.349,121.312L91.024,123.66L90.015,130.964L82.066,129.806L78.584,129.26L77.047,128.375L66.746,122.39L59.131,117.804L59.344,117.148L59.943,116.417L61.059,116.377L61.599,115.404L61.471,114.603L60.692,114.404L60.491,113.976L60.868,113.111L60.66,112.519L60.81,111.868L61.4,111.764L62.098,111.114L62.445,110.18L62.53,108.621L63.208,108.051L63.305,107.656L64.369,107.268L65.174,106.536L64.281,105.345L63.925,103.484L63.236,102.218L63.421,101.384L63.927,100.543L64.06,99.269L63.828,98.037L64.117,97.282L63.967,96.644L64.415,95.584L64.13,94.745L64.213,94.031L64.961,93.827L66.104,94.008L66.857,95.078L67.325,95.099L68.092,94.076L68.885,89.742L69.087,88.696L75.097,89.813L76.972,90.147L82.869,91.14L86.35,91.686Z" + }, + { + "fill": "rgb(214, 239, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.039; geo: [object Object]; name: Arizona", + "shape": "M90.279,92.325L95.295,93.033L94.371,99.721L93.406,106.711L93.053,109.263L92.274,114.618L91.747,118.428L91.349,121.312L91.024,123.66L90.015,130.964L82.066,129.806L78.584,129.26L77.047,128.375L66.746,122.39L59.131,117.804L59.344,117.148L59.943,116.417L61.059,116.377L61.599,115.404L61.471,114.603L60.692,114.404L60.491,113.976L60.868,113.111L60.66,112.519L60.81,111.868L61.4,111.764L62.098,111.114L62.445,110.18L62.53,108.621L63.208,108.051L63.305,107.656L64.369,107.268L65.174,106.536L64.281,105.345L63.925,103.484L63.236,102.218L63.421,101.384L63.927,100.543L64.06,99.269L63.828,98.037L64.117,97.282L63.967,96.644L64.415,95.584L64.13,94.745L64.213,94.031L64.961,93.827L66.104,94.008L66.857,95.078L67.325,95.099L68.092,94.076L68.885,89.742L69.087,88.696L75.097,89.813L76.972,90.147L82.869,91.14L86.35,91.686Z" + }, + { + "fill": "rgb(219, 241, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.034; geo: [object Object]; name: Arizona", + "shape": "M90.279,92.325L95.295,93.033L94.371,99.721L93.406,106.711L93.053,109.263L92.274,114.618L91.747,118.428L91.349,121.312L91.024,123.66L90.015,130.964L82.066,129.806L78.584,129.26L77.047,128.375L66.746,122.39L59.131,117.804L59.344,117.148L59.943,116.417L61.059,116.377L61.599,115.404L61.471,114.603L60.692,114.404L60.491,113.976L60.868,113.111L60.66,112.519L60.81,111.868L61.4,111.764L62.098,111.114L62.445,110.18L62.53,108.621L63.208,108.051L63.305,107.656L64.369,107.268L65.174,106.536L64.281,105.345L63.925,103.484L63.236,102.218L63.421,101.384L63.927,100.543L64.06,99.269L63.828,98.037L64.117,97.282L63.967,96.644L64.415,95.584L64.13,94.745L64.213,94.031L64.961,93.827L66.104,94.008L66.857,95.078L67.325,95.099L68.092,94.076L68.885,89.742L69.087,88.696L75.097,89.813L76.972,90.147L82.869,91.14L86.35,91.686Z" + }, + { + "fill": "rgb(139, 210, 186)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.097; geo: [object Object]; name: Arkansas", + "shape": "M174.565,101.062L175.696,101.038L177.192,101.002L178.629,100.967L178.744,100.961L181.101,100.892L181.542,100.877L182.826,100.828L184.857,100.75L185.01,100.743L187.404,100.633L188.592,100.588L188.822,100.584L190.316,100.503L192.134,100.402L193.245,100.34L195.159,100.231L195.503,100.21L195.946,100.842L196.065,101.513L195.435,102.229L194.518,103.676L194.999,103.644L196.751,103.514L198.117,103.407L198.489,104.045L197.849,104.325L198.2,104.648L196.903,105.29L197.452,105.979L196.963,106.237L197.221,106.614L196.746,106.487L196.479,106.89L196.564,107.617L196.508,107.668L196.296,107.073L196.004,107.393L196.394,107.708L195.945,108.333L196.482,108.806L196.465,109.477L195.98,109.54L195.803,110.173L195.289,110.412L195.674,110.953L195.363,111.325L194.807,111.54L194.471,111.17L194.569,112.508L193.942,112.893L194.046,113.677L194.069,114.425L193.102,114.785L193.204,115.201L192.629,115.902L192.146,115.743L192.089,116.527L192.089,116.531L192.419,117.15L191.393,117.626L191.805,117.917L191.529,118.335L192.03,118.792L191.162,118.946L190.782,119.692L191.283,120.128L190.757,120.373L190.867,120.589L190.778,121.197L191.328,121.794L191.718,123.143L191.139,123.198L191.526,123.697L191.304,124.065L191.306,124.112L190.765,124.132L189.803,124.179L189.662,124.186L186.274,124.319L182.603,124.418L181.119,124.445L179.735,124.48L178.331,124.519L178.15,124.524L176.566,124.559L176.506,124.56L175.242,124.588L175.207,122.884L175.148,120.991L174.087,120.754L173.256,121.081L172.688,120.451L172.715,118.41L172.715,118.407L172.728,116.722L172.732,114.571L172.747,113.074L172.764,111.689L172.793,108.679L172.792,108.668L172.791,108.551L172.55,106.923L172.421,106.106L172.076,103.795L172.012,103.385L171.671,101.105Z" + }, + { + "fill": "rgb(167, 220, 183)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.078; geo: [object Object]; name: Arkansas", + "shape": "M174.565,101.062L175.696,101.038L177.192,101.002L178.629,100.967L178.744,100.961L181.101,100.892L181.542,100.877L182.826,100.828L184.857,100.75L185.01,100.743L187.404,100.633L188.592,100.588L188.822,100.584L190.316,100.503L192.134,100.402L193.245,100.34L195.159,100.231L195.503,100.21L195.946,100.842L196.065,101.513L195.435,102.229L194.518,103.676L194.999,103.644L196.751,103.514L198.117,103.407L198.489,104.045L197.849,104.325L198.2,104.648L196.903,105.29L197.452,105.979L196.963,106.237L197.221,106.614L196.746,106.487L196.479,106.89L196.564,107.617L196.508,107.668L196.296,107.073L196.004,107.393L196.394,107.708L195.945,108.333L196.482,108.806L196.465,109.477L195.98,109.54L195.803,110.173L195.289,110.412L195.674,110.953L195.363,111.325L194.807,111.54L194.471,111.17L194.569,112.508L193.942,112.893L194.046,113.677L194.069,114.425L193.102,114.785L193.204,115.201L192.629,115.902L192.146,115.743L192.089,116.527L192.089,116.531L192.419,117.15L191.393,117.626L191.805,117.917L191.529,118.335L192.03,118.792L191.162,118.946L190.782,119.692L191.283,120.128L190.757,120.373L190.867,120.589L190.778,121.197L191.328,121.794L191.718,123.143L191.139,123.198L191.526,123.697L191.304,124.065L191.306,124.112L190.765,124.132L189.803,124.179L189.662,124.186L186.274,124.319L182.603,124.418L181.119,124.445L179.735,124.48L178.331,124.519L178.15,124.524L176.566,124.559L176.506,124.56L175.242,124.588L175.207,122.884L175.148,120.991L174.087,120.754L173.256,121.081L172.688,120.451L172.715,118.41L172.715,118.407L172.728,116.722L172.732,114.571L172.747,113.074L172.764,111.689L172.793,108.679L172.792,108.668L172.791,108.551L172.55,106.923L172.421,106.106L172.076,103.795L172.012,103.385L171.671,101.105Z" + }, + { + "fill": "rgb(75, 183, 193)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.143; geo: [object Object]; name: Arkansas", + "shape": "M174.565,101.062L175.696,101.038L177.192,101.002L178.629,100.967L178.744,100.961L181.101,100.892L181.542,100.877L182.826,100.828L184.857,100.75L185.01,100.743L187.404,100.633L188.592,100.588L188.822,100.584L190.316,100.503L192.134,100.402L193.245,100.34L195.159,100.231L195.503,100.21L195.946,100.842L196.065,101.513L195.435,102.229L194.518,103.676L194.999,103.644L196.751,103.514L198.117,103.407L198.489,104.045L197.849,104.325L198.2,104.648L196.903,105.29L197.452,105.979L196.963,106.237L197.221,106.614L196.746,106.487L196.479,106.89L196.564,107.617L196.508,107.668L196.296,107.073L196.004,107.393L196.394,107.708L195.945,108.333L196.482,108.806L196.465,109.477L195.98,109.54L195.803,110.173L195.289,110.412L195.674,110.953L195.363,111.325L194.807,111.54L194.471,111.17L194.569,112.508L193.942,112.893L194.046,113.677L194.069,114.425L193.102,114.785L193.204,115.201L192.629,115.902L192.146,115.743L192.089,116.527L192.089,116.531L192.419,117.15L191.393,117.626L191.805,117.917L191.529,118.335L192.03,118.792L191.162,118.946L190.782,119.692L191.283,120.128L190.757,120.373L190.867,120.589L190.778,121.197L191.328,121.794L191.718,123.143L191.139,123.198L191.526,123.697L191.304,124.065L191.306,124.112L190.765,124.132L189.803,124.179L189.662,124.186L186.274,124.319L182.603,124.418L181.119,124.445L179.735,124.48L178.331,124.519L178.15,124.524L176.566,124.559L176.506,124.56L175.242,124.588L175.207,122.884L175.148,120.991L174.087,120.754L173.256,121.081L172.688,120.451L172.715,118.41L172.715,118.407L172.728,116.722L172.732,114.571L172.747,113.074L172.764,111.689L172.793,108.679L172.792,108.668L172.791,108.551L172.55,106.923L172.421,106.106L172.076,103.795L172.012,103.385L171.671,101.105Z" + }, + { + "fill": "rgb(99, 194, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.124; geo: [object Object]; name: Arkansas", + "shape": "M174.565,101.062L175.696,101.038L177.192,101.002L178.629,100.967L178.744,100.961L181.101,100.892L181.542,100.877L182.826,100.828L184.857,100.75L185.01,100.743L187.404,100.633L188.592,100.588L188.822,100.584L190.316,100.503L192.134,100.402L193.245,100.34L195.159,100.231L195.503,100.21L195.946,100.842L196.065,101.513L195.435,102.229L194.518,103.676L194.999,103.644L196.751,103.514L198.117,103.407L198.489,104.045L197.849,104.325L198.2,104.648L196.903,105.29L197.452,105.979L196.963,106.237L197.221,106.614L196.746,106.487L196.479,106.89L196.564,107.617L196.508,107.668L196.296,107.073L196.004,107.393L196.394,107.708L195.945,108.333L196.482,108.806L196.465,109.477L195.98,109.54L195.803,110.173L195.289,110.412L195.674,110.953L195.363,111.325L194.807,111.54L194.471,111.17L194.569,112.508L193.942,112.893L194.046,113.677L194.069,114.425L193.102,114.785L193.204,115.201L192.629,115.902L192.146,115.743L192.089,116.527L192.089,116.531L192.419,117.15L191.393,117.626L191.805,117.917L191.529,118.335L192.03,118.792L191.162,118.946L190.782,119.692L191.283,120.128L190.757,120.373L190.867,120.589L190.778,121.197L191.328,121.794L191.718,123.143L191.139,123.198L191.526,123.697L191.304,124.065L191.306,124.112L190.765,124.132L189.803,124.179L189.662,124.186L186.274,124.319L182.603,124.418L181.119,124.445L179.735,124.48L178.331,124.519L178.15,124.524L176.566,124.559L176.506,124.56L175.242,124.588L175.207,122.884L175.148,120.991L174.087,120.754L173.256,121.081L172.688,120.451L172.715,118.41L172.715,118.407L172.728,116.722L172.732,114.571L172.747,113.074L172.764,111.689L172.793,108.679L172.792,108.668L172.791,108.551L172.55,106.923L172.421,106.106L172.076,103.795L172.012,103.385L171.671,101.105Z" + }, + { + "fill": "rgb(66, 177, 194)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.151; geo: [object Object]; name: Arkansas", + "shape": "M174.565,101.062L175.696,101.038L177.192,101.002L178.629,100.967L178.744,100.961L181.101,100.892L181.542,100.877L182.826,100.828L184.857,100.75L185.01,100.743L187.404,100.633L188.592,100.588L188.822,100.584L190.316,100.503L192.134,100.402L193.245,100.34L195.159,100.231L195.503,100.21L195.946,100.842L196.065,101.513L195.435,102.229L194.518,103.676L194.999,103.644L196.751,103.514L198.117,103.407L198.489,104.045L197.849,104.325L198.2,104.648L196.903,105.29L197.452,105.979L196.963,106.237L197.221,106.614L196.746,106.487L196.479,106.89L196.564,107.617L196.508,107.668L196.296,107.073L196.004,107.393L196.394,107.708L195.945,108.333L196.482,108.806L196.465,109.477L195.98,109.54L195.803,110.173L195.289,110.412L195.674,110.953L195.363,111.325L194.807,111.54L194.471,111.17L194.569,112.508L193.942,112.893L194.046,113.677L194.069,114.425L193.102,114.785L193.204,115.201L192.629,115.902L192.146,115.743L192.089,116.527L192.089,116.531L192.419,117.15L191.393,117.626L191.805,117.917L191.529,118.335L192.03,118.792L191.162,118.946L190.782,119.692L191.283,120.128L190.757,120.373L190.867,120.589L190.778,121.197L191.328,121.794L191.718,123.143L191.139,123.198L191.526,123.697L191.304,124.065L191.306,124.112L190.765,124.132L189.803,124.179L189.662,124.186L186.274,124.319L182.603,124.418L181.119,124.445L179.735,124.48L178.331,124.519L178.15,124.524L176.566,124.559L176.506,124.56L175.242,124.588L175.207,122.884L175.148,120.991L174.087,120.754L173.256,121.081L172.688,120.451L172.715,118.41L172.715,118.407L172.728,116.722L172.732,114.571L172.747,113.074L172.764,111.689L172.793,108.679L172.792,108.668L172.791,108.551L172.55,106.923L172.421,106.106L172.076,103.795L172.012,103.385L171.671,101.105Z" + }, + { + "fill": "rgb(137, 209, 186)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.098; geo: [object Object]; name: Arkansas", + "shape": "M174.565,101.062L175.696,101.038L177.192,101.002L178.629,100.967L178.744,100.961L181.101,100.892L181.542,100.877L182.826,100.828L184.857,100.75L185.01,100.743L187.404,100.633L188.592,100.588L188.822,100.584L190.316,100.503L192.134,100.402L193.245,100.34L195.159,100.231L195.503,100.21L195.946,100.842L196.065,101.513L195.435,102.229L194.518,103.676L194.999,103.644L196.751,103.514L198.117,103.407L198.489,104.045L197.849,104.325L198.2,104.648L196.903,105.29L197.452,105.979L196.963,106.237L197.221,106.614L196.746,106.487L196.479,106.89L196.564,107.617L196.508,107.668L196.296,107.073L196.004,107.393L196.394,107.708L195.945,108.333L196.482,108.806L196.465,109.477L195.98,109.54L195.803,110.173L195.289,110.412L195.674,110.953L195.363,111.325L194.807,111.54L194.471,111.17L194.569,112.508L193.942,112.893L194.046,113.677L194.069,114.425L193.102,114.785L193.204,115.201L192.629,115.902L192.146,115.743L192.089,116.527L192.089,116.531L192.419,117.15L191.393,117.626L191.805,117.917L191.529,118.335L192.03,118.792L191.162,118.946L190.782,119.692L191.283,120.128L190.757,120.373L190.867,120.589L190.778,121.197L191.328,121.794L191.718,123.143L191.139,123.198L191.526,123.697L191.304,124.065L191.306,124.112L190.765,124.132L189.803,124.179L189.662,124.186L186.274,124.319L182.603,124.418L181.119,124.445L179.735,124.48L178.331,124.519L178.15,124.524L176.566,124.559L176.506,124.56L175.242,124.588L175.207,122.884L175.148,120.991L174.087,120.754L173.256,121.081L172.688,120.451L172.715,118.41L172.715,118.407L172.728,116.722L172.732,114.571L172.747,113.074L172.764,111.689L172.793,108.679L172.792,108.668L172.791,108.551L172.55,106.923L172.421,106.106L172.076,103.795L172.012,103.385L171.671,101.105Z" + }, + { + "fill": "rgb(44, 158, 192)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.176; geo: [object Object]; name: Arkansas", + "shape": "M174.565,101.062L175.696,101.038L177.192,101.002L178.629,100.967L178.744,100.961L181.101,100.892L181.542,100.877L182.826,100.828L184.857,100.75L185.01,100.743L187.404,100.633L188.592,100.588L188.822,100.584L190.316,100.503L192.134,100.402L193.245,100.34L195.159,100.231L195.503,100.21L195.946,100.842L196.065,101.513L195.435,102.229L194.518,103.676L194.999,103.644L196.751,103.514L198.117,103.407L198.489,104.045L197.849,104.325L198.2,104.648L196.903,105.29L197.452,105.979L196.963,106.237L197.221,106.614L196.746,106.487L196.479,106.89L196.564,107.617L196.508,107.668L196.296,107.073L196.004,107.393L196.394,107.708L195.945,108.333L196.482,108.806L196.465,109.477L195.98,109.54L195.803,110.173L195.289,110.412L195.674,110.953L195.363,111.325L194.807,111.54L194.471,111.17L194.569,112.508L193.942,112.893L194.046,113.677L194.069,114.425L193.102,114.785L193.204,115.201L192.629,115.902L192.146,115.743L192.089,116.527L192.089,116.531L192.419,117.15L191.393,117.626L191.805,117.917L191.529,118.335L192.03,118.792L191.162,118.946L190.782,119.692L191.283,120.128L190.757,120.373L190.867,120.589L190.778,121.197L191.328,121.794L191.718,123.143L191.139,123.198L191.526,123.697L191.304,124.065L191.306,124.112L190.765,124.132L189.803,124.179L189.662,124.186L186.274,124.319L182.603,124.418L181.119,124.445L179.735,124.48L178.331,124.519L178.15,124.524L176.566,124.559L176.506,124.56L175.242,124.588L175.207,122.884L175.148,120.991L174.087,120.754L173.256,121.081L172.688,120.451L172.715,118.41L172.715,118.407L172.728,116.722L172.732,114.571L172.747,113.074L172.764,111.689L172.793,108.679L172.792,108.668L172.791,108.551L172.55,106.923L172.421,106.106L172.076,103.795L172.012,103.385L171.671,101.105Z" + }, + { + "fill": "rgb(152, 215, 185)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.088; geo: [object Object]; name: Arkansas", + "shape": "M174.565,101.062L175.696,101.038L177.192,101.002L178.629,100.967L178.744,100.961L181.101,100.892L181.542,100.877L182.826,100.828L184.857,100.75L185.01,100.743L187.404,100.633L188.592,100.588L188.822,100.584L190.316,100.503L192.134,100.402L193.245,100.34L195.159,100.231L195.503,100.21L195.946,100.842L196.065,101.513L195.435,102.229L194.518,103.676L194.999,103.644L196.751,103.514L198.117,103.407L198.489,104.045L197.849,104.325L198.2,104.648L196.903,105.29L197.452,105.979L196.963,106.237L197.221,106.614L196.746,106.487L196.479,106.89L196.564,107.617L196.508,107.668L196.296,107.073L196.004,107.393L196.394,107.708L195.945,108.333L196.482,108.806L196.465,109.477L195.98,109.54L195.803,110.173L195.289,110.412L195.674,110.953L195.363,111.325L194.807,111.54L194.471,111.17L194.569,112.508L193.942,112.893L194.046,113.677L194.069,114.425L193.102,114.785L193.204,115.201L192.629,115.902L192.146,115.743L192.089,116.527L192.089,116.531L192.419,117.15L191.393,117.626L191.805,117.917L191.529,118.335L192.03,118.792L191.162,118.946L190.782,119.692L191.283,120.128L190.757,120.373L190.867,120.589L190.778,121.197L191.328,121.794L191.718,123.143L191.139,123.198L191.526,123.697L191.304,124.065L191.306,124.112L190.765,124.132L189.803,124.179L189.662,124.186L186.274,124.319L182.603,124.418L181.119,124.445L179.735,124.48L178.331,124.519L178.15,124.524L176.566,124.559L176.506,124.56L175.242,124.588L175.207,122.884L175.148,120.991L174.087,120.754L173.256,121.081L172.688,120.451L172.715,118.41L172.715,118.407L172.728,116.722L172.732,114.571L172.747,113.074L172.764,111.689L172.793,108.679L172.792,108.668L172.791,108.551L172.55,106.923L172.421,106.106L172.076,103.795L172.012,103.385L171.671,101.105Z" + }, + { + "fill": "rgb(226, 244, 183)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.025; geo: [object Object]; name: Arkansas", + "shape": "M174.565,101.062L175.696,101.038L177.192,101.002L178.629,100.967L178.744,100.961L181.101,100.892L181.542,100.877L182.826,100.828L184.857,100.75L185.01,100.743L187.404,100.633L188.592,100.588L188.822,100.584L190.316,100.503L192.134,100.402L193.245,100.34L195.159,100.231L195.503,100.21L195.946,100.842L196.065,101.513L195.435,102.229L194.518,103.676L194.999,103.644L196.751,103.514L198.117,103.407L198.489,104.045L197.849,104.325L198.2,104.648L196.903,105.29L197.452,105.979L196.963,106.237L197.221,106.614L196.746,106.487L196.479,106.89L196.564,107.617L196.508,107.668L196.296,107.073L196.004,107.393L196.394,107.708L195.945,108.333L196.482,108.806L196.465,109.477L195.98,109.54L195.803,110.173L195.289,110.412L195.674,110.953L195.363,111.325L194.807,111.54L194.471,111.17L194.569,112.508L193.942,112.893L194.046,113.677L194.069,114.425L193.102,114.785L193.204,115.201L192.629,115.902L192.146,115.743L192.089,116.527L192.089,116.531L192.419,117.15L191.393,117.626L191.805,117.917L191.529,118.335L192.03,118.792L191.162,118.946L190.782,119.692L191.283,120.128L190.757,120.373L190.867,120.589L190.778,121.197L191.328,121.794L191.718,123.143L191.139,123.198L191.526,123.697L191.304,124.065L191.306,124.112L190.765,124.132L189.803,124.179L189.662,124.186L186.274,124.319L182.603,124.418L181.119,124.445L179.735,124.48L178.331,124.519L178.15,124.524L176.566,124.559L176.506,124.56L175.242,124.588L175.207,122.884L175.148,120.991L174.087,120.754L173.256,121.081L172.688,120.451L172.715,118.41L172.715,118.407L172.728,116.722L172.732,114.571L172.747,113.074L172.764,111.689L172.793,108.679L172.792,108.668L172.791,108.551L172.55,106.923L172.421,106.106L172.076,103.795L172.012,103.385L171.671,101.105Z" + }, + { + "fill": "rgb(228, 245, 184)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.021; geo: [object Object]; name: Arkansas", + "shape": "M174.565,101.062L175.696,101.038L177.192,101.002L178.629,100.967L178.744,100.961L181.101,100.892L181.542,100.877L182.826,100.828L184.857,100.75L185.01,100.743L187.404,100.633L188.592,100.588L188.822,100.584L190.316,100.503L192.134,100.402L193.245,100.34L195.159,100.231L195.503,100.21L195.946,100.842L196.065,101.513L195.435,102.229L194.518,103.676L194.999,103.644L196.751,103.514L198.117,103.407L198.489,104.045L197.849,104.325L198.2,104.648L196.903,105.29L197.452,105.979L196.963,106.237L197.221,106.614L196.746,106.487L196.479,106.89L196.564,107.617L196.508,107.668L196.296,107.073L196.004,107.393L196.394,107.708L195.945,108.333L196.482,108.806L196.465,109.477L195.98,109.54L195.803,110.173L195.289,110.412L195.674,110.953L195.363,111.325L194.807,111.54L194.471,111.17L194.569,112.508L193.942,112.893L194.046,113.677L194.069,114.425L193.102,114.785L193.204,115.201L192.629,115.902L192.146,115.743L192.089,116.527L192.089,116.531L192.419,117.15L191.393,117.626L191.805,117.917L191.529,118.335L192.03,118.792L191.162,118.946L190.782,119.692L191.283,120.128L190.757,120.373L190.867,120.589L190.778,121.197L191.328,121.794L191.718,123.143L191.139,123.198L191.526,123.697L191.304,124.065L191.306,124.112L190.765,124.132L189.803,124.179L189.662,124.186L186.274,124.319L182.603,124.418L181.119,124.445L179.735,124.48L178.331,124.519L178.15,124.524L176.566,124.559L176.506,124.56L175.242,124.588L175.207,122.884L175.148,120.991L174.087,120.754L173.256,121.081L172.688,120.451L172.715,118.41L172.715,118.407L172.728,116.722L172.732,114.571L172.747,113.074L172.764,111.689L172.793,108.679L172.792,108.668L172.791,108.551L172.55,106.923L172.421,106.106L172.076,103.795L172.012,103.385L171.671,101.105Z" + }, + { + "fill": "rgb(191, 230, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.061; geo: [object Object]; name: California", + "shape": "M39.758,111.4L39.446,110.978L39.228,109.657L40.13,111.232ZM41.106,108.274L40.352,107.906L40.199,106.835L41.041,107.516ZM32.436,101.972L31.979,101.051L33.06,101.144L33.112,101.813ZM34.408,102.026L33.854,101.712L33.783,101.034L35.585,102.063ZM35.832,45.987L39.833,47.183L42.537,47.938L46.75,49.035L45.38,54.344L42.908,63.925L42.427,65.716L42.185,66.578L41.949,67.569L41.86,67.914L41.783,68.21L41.685,68.666L42.041,69.216L43.304,71.104L44.282,72.562L44.953,73.573L47.815,77.892L50.171,81.453L52.863,85.504L58.104,93.38L59.104,94.911L63.421,101.384L63.236,102.218L63.925,103.484L64.281,105.345L65.174,106.536L64.369,107.268L63.305,107.656L63.208,108.051L62.53,108.621L62.445,110.18L62.098,111.114L61.4,111.764L60.81,111.868L60.66,112.519L60.868,113.111L60.491,113.976L60.692,114.404L61.471,114.603L61.599,115.404L61.059,116.377L59.943,116.417L52.189,115.5L46.471,114.822L46.677,113.91L46.135,113.479L46.068,112.594L46.291,112.429L46.278,110.95L45.579,109.07L45.19,108.627L43.952,106.819L43.937,106.796L43.756,106.698L43.753,106.708L42.909,105.607L42.919,105.565L42.871,105.512L42.864,105.54L42.38,105.34L42.053,105.512L41.272,105.018L41.592,104.625L41.384,103.623L41.093,103.138L39.778,102.93L38.931,102.558L37.653,101.546L37.54,100.694L36.651,99.699L36.24,99.311L34.564,98.947L33.968,98.415L32.462,97.949L31.461,97.806L31.406,97.319L30.761,96.757L31.222,95.94L31.451,94.155L31.785,93.277L30.623,92.031L31.135,91.55L30.921,90.695L30.417,90.473L29.869,89.078L29.297,88.742L29.25,87.813L28.791,87.069L28.753,86.188L28.468,85.988L28.05,84.68L27.305,83.699L27.398,81.798L28.334,81.509L28.786,80.241L28.554,79.511L27.425,79.161L26.755,77.893L26.341,76.849L26.675,76.093L26.644,75.236L26.385,74.901L26.814,73.68L26.885,73.227L27.439,73.14L27.34,73.83L27.307,74.635L27.779,74.909L28.31,75.811L28.96,76.017L28.396,75.575L28.459,74.447L27.853,73.337L28.126,72.719L27.794,72.238L28.749,71.764L29.137,72.116L29.832,72.074L31.02,72.708L32.062,72.393L32.062,72.815L32.221,72.38L31.668,72.337L31.938,71.785L31.017,72.367L30.433,72.295L29.844,71.544L29.3,72.022L28.792,71.682L28.696,71.057L28.642,71.042L28.773,71.609L28.135,70.905L28.103,70.881L27.568,71.046L27.401,70.676L27.628,71.109L27.189,72.232L27.443,72.645L26.876,72.914L25.757,71.365L25.226,70.9L24.83,70.985L25.29,70.346L25.376,69.117L25.058,67.939L24.55,67.35L23.633,65.268L22.973,63.782L23.361,63.39L23.321,61.084L23.968,59.96L24.145,57.909L23.638,56.551L23.419,55.766L22.509,54.377L22.64,53.147L23.817,51.664L24.604,51.134L24.176,51.356L25.021,50.262L25.086,49.431L25.674,48.489L26.311,47.013L26.425,45.165L26.046,44.7L26.68,43.356L28.527,43.94L29.968,44.33L31.352,44.725Z" + }, + { + "fill": "rgb(199, 233, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.053; geo: [object Object]; name: California", + "shape": "M39.758,111.4L39.446,110.978L39.228,109.657L40.13,111.232ZM41.106,108.274L40.352,107.906L40.199,106.835L41.041,107.516ZM32.436,101.972L31.979,101.051L33.06,101.144L33.112,101.813ZM34.408,102.026L33.854,101.712L33.783,101.034L35.585,102.063ZM35.832,45.987L39.833,47.183L42.537,47.938L46.75,49.035L45.38,54.344L42.908,63.925L42.427,65.716L42.185,66.578L41.949,67.569L41.86,67.914L41.783,68.21L41.685,68.666L42.041,69.216L43.304,71.104L44.282,72.562L44.953,73.573L47.815,77.892L50.171,81.453L52.863,85.504L58.104,93.38L59.104,94.911L63.421,101.384L63.236,102.218L63.925,103.484L64.281,105.345L65.174,106.536L64.369,107.268L63.305,107.656L63.208,108.051L62.53,108.621L62.445,110.18L62.098,111.114L61.4,111.764L60.81,111.868L60.66,112.519L60.868,113.111L60.491,113.976L60.692,114.404L61.471,114.603L61.599,115.404L61.059,116.377L59.943,116.417L52.189,115.5L46.471,114.822L46.677,113.91L46.135,113.479L46.068,112.594L46.291,112.429L46.278,110.95L45.579,109.07L45.19,108.627L43.952,106.819L43.937,106.796L43.756,106.698L43.753,106.708L42.909,105.607L42.919,105.565L42.871,105.512L42.864,105.54L42.38,105.34L42.053,105.512L41.272,105.018L41.592,104.625L41.384,103.623L41.093,103.138L39.778,102.93L38.931,102.558L37.653,101.546L37.54,100.694L36.651,99.699L36.24,99.311L34.564,98.947L33.968,98.415L32.462,97.949L31.461,97.806L31.406,97.319L30.761,96.757L31.222,95.94L31.451,94.155L31.785,93.277L30.623,92.031L31.135,91.55L30.921,90.695L30.417,90.473L29.869,89.078L29.297,88.742L29.25,87.813L28.791,87.069L28.753,86.188L28.468,85.988L28.05,84.68L27.305,83.699L27.398,81.798L28.334,81.509L28.786,80.241L28.554,79.511L27.425,79.161L26.755,77.893L26.341,76.849L26.675,76.093L26.644,75.236L26.385,74.901L26.814,73.68L26.885,73.227L27.439,73.14L27.34,73.83L27.307,74.635L27.779,74.909L28.31,75.811L28.96,76.017L28.396,75.575L28.459,74.447L27.853,73.337L28.126,72.719L27.794,72.238L28.749,71.764L29.137,72.116L29.832,72.074L31.02,72.708L32.062,72.393L32.062,72.815L32.221,72.38L31.668,72.337L31.938,71.785L31.017,72.367L30.433,72.295L29.844,71.544L29.3,72.022L28.792,71.682L28.696,71.057L28.642,71.042L28.773,71.609L28.135,70.905L28.103,70.881L27.568,71.046L27.401,70.676L27.628,71.109L27.189,72.232L27.443,72.645L26.876,72.914L25.757,71.365L25.226,70.9L24.83,70.985L25.29,70.346L25.376,69.117L25.058,67.939L24.55,67.35L23.633,65.268L22.973,63.782L23.361,63.39L23.321,61.084L23.968,59.96L24.145,57.909L23.638,56.551L23.419,55.766L22.509,54.377L22.64,53.147L23.817,51.664L24.604,51.134L24.176,51.356L25.021,50.262L25.086,49.431L25.674,48.489L26.311,47.013L26.425,45.165L26.046,44.7L26.68,43.356L28.527,43.94L29.968,44.33L31.352,44.725Z" + }, + { + "fill": "rgb(136, 208, 186)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.099; geo: [object Object]; name: California", + "shape": "M39.758,111.4L39.446,110.978L39.228,109.657L40.13,111.232ZM41.106,108.274L40.352,107.906L40.199,106.835L41.041,107.516ZM32.436,101.972L31.979,101.051L33.06,101.144L33.112,101.813ZM34.408,102.026L33.854,101.712L33.783,101.034L35.585,102.063ZM35.832,45.987L39.833,47.183L42.537,47.938L46.75,49.035L45.38,54.344L42.908,63.925L42.427,65.716L42.185,66.578L41.949,67.569L41.86,67.914L41.783,68.21L41.685,68.666L42.041,69.216L43.304,71.104L44.282,72.562L44.953,73.573L47.815,77.892L50.171,81.453L52.863,85.504L58.104,93.38L59.104,94.911L63.421,101.384L63.236,102.218L63.925,103.484L64.281,105.345L65.174,106.536L64.369,107.268L63.305,107.656L63.208,108.051L62.53,108.621L62.445,110.18L62.098,111.114L61.4,111.764L60.81,111.868L60.66,112.519L60.868,113.111L60.491,113.976L60.692,114.404L61.471,114.603L61.599,115.404L61.059,116.377L59.943,116.417L52.189,115.5L46.471,114.822L46.677,113.91L46.135,113.479L46.068,112.594L46.291,112.429L46.278,110.95L45.579,109.07L45.19,108.627L43.952,106.819L43.937,106.796L43.756,106.698L43.753,106.708L42.909,105.607L42.919,105.565L42.871,105.512L42.864,105.54L42.38,105.34L42.053,105.512L41.272,105.018L41.592,104.625L41.384,103.623L41.093,103.138L39.778,102.93L38.931,102.558L37.653,101.546L37.54,100.694L36.651,99.699L36.24,99.311L34.564,98.947L33.968,98.415L32.462,97.949L31.461,97.806L31.406,97.319L30.761,96.757L31.222,95.94L31.451,94.155L31.785,93.277L30.623,92.031L31.135,91.55L30.921,90.695L30.417,90.473L29.869,89.078L29.297,88.742L29.25,87.813L28.791,87.069L28.753,86.188L28.468,85.988L28.05,84.68L27.305,83.699L27.398,81.798L28.334,81.509L28.786,80.241L28.554,79.511L27.425,79.161L26.755,77.893L26.341,76.849L26.675,76.093L26.644,75.236L26.385,74.901L26.814,73.68L26.885,73.227L27.439,73.14L27.34,73.83L27.307,74.635L27.779,74.909L28.31,75.811L28.96,76.017L28.396,75.575L28.459,74.447L27.853,73.337L28.126,72.719L27.794,72.238L28.749,71.764L29.137,72.116L29.832,72.074L31.02,72.708L32.062,72.393L32.062,72.815L32.221,72.38L31.668,72.337L31.938,71.785L31.017,72.367L30.433,72.295L29.844,71.544L29.3,72.022L28.792,71.682L28.696,71.057L28.642,71.042L28.773,71.609L28.135,70.905L28.103,70.881L27.568,71.046L27.401,70.676L27.628,71.109L27.189,72.232L27.443,72.645L26.876,72.914L25.757,71.365L25.226,70.9L24.83,70.985L25.29,70.346L25.376,69.117L25.058,67.939L24.55,67.35L23.633,65.268L22.973,63.782L23.361,63.39L23.321,61.084L23.968,59.96L24.145,57.909L23.638,56.551L23.419,55.766L22.509,54.377L22.64,53.147L23.817,51.664L24.604,51.134L24.176,51.356L25.021,50.262L25.086,49.431L25.674,48.489L26.311,47.013L26.425,45.165L26.046,44.7L26.68,43.356L28.527,43.94L29.968,44.33L31.352,44.725Z" + }, + { + "fill": "rgb(146, 212, 185)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.092; geo: [object Object]; name: California", + "shape": "M39.758,111.4L39.446,110.978L39.228,109.657L40.13,111.232ZM41.106,108.274L40.352,107.906L40.199,106.835L41.041,107.516ZM32.436,101.972L31.979,101.051L33.06,101.144L33.112,101.813ZM34.408,102.026L33.854,101.712L33.783,101.034L35.585,102.063ZM35.832,45.987L39.833,47.183L42.537,47.938L46.75,49.035L45.38,54.344L42.908,63.925L42.427,65.716L42.185,66.578L41.949,67.569L41.86,67.914L41.783,68.21L41.685,68.666L42.041,69.216L43.304,71.104L44.282,72.562L44.953,73.573L47.815,77.892L50.171,81.453L52.863,85.504L58.104,93.38L59.104,94.911L63.421,101.384L63.236,102.218L63.925,103.484L64.281,105.345L65.174,106.536L64.369,107.268L63.305,107.656L63.208,108.051L62.53,108.621L62.445,110.18L62.098,111.114L61.4,111.764L60.81,111.868L60.66,112.519L60.868,113.111L60.491,113.976L60.692,114.404L61.471,114.603L61.599,115.404L61.059,116.377L59.943,116.417L52.189,115.5L46.471,114.822L46.677,113.91L46.135,113.479L46.068,112.594L46.291,112.429L46.278,110.95L45.579,109.07L45.19,108.627L43.952,106.819L43.937,106.796L43.756,106.698L43.753,106.708L42.909,105.607L42.919,105.565L42.871,105.512L42.864,105.54L42.38,105.34L42.053,105.512L41.272,105.018L41.592,104.625L41.384,103.623L41.093,103.138L39.778,102.93L38.931,102.558L37.653,101.546L37.54,100.694L36.651,99.699L36.24,99.311L34.564,98.947L33.968,98.415L32.462,97.949L31.461,97.806L31.406,97.319L30.761,96.757L31.222,95.94L31.451,94.155L31.785,93.277L30.623,92.031L31.135,91.55L30.921,90.695L30.417,90.473L29.869,89.078L29.297,88.742L29.25,87.813L28.791,87.069L28.753,86.188L28.468,85.988L28.05,84.68L27.305,83.699L27.398,81.798L28.334,81.509L28.786,80.241L28.554,79.511L27.425,79.161L26.755,77.893L26.341,76.849L26.675,76.093L26.644,75.236L26.385,74.901L26.814,73.68L26.885,73.227L27.439,73.14L27.34,73.83L27.307,74.635L27.779,74.909L28.31,75.811L28.96,76.017L28.396,75.575L28.459,74.447L27.853,73.337L28.126,72.719L27.794,72.238L28.749,71.764L29.137,72.116L29.832,72.074L31.02,72.708L32.062,72.393L32.062,72.815L32.221,72.38L31.668,72.337L31.938,71.785L31.017,72.367L30.433,72.295L29.844,71.544L29.3,72.022L28.792,71.682L28.696,71.057L28.642,71.042L28.773,71.609L28.135,70.905L28.103,70.881L27.568,71.046L27.401,70.676L27.628,71.109L27.189,72.232L27.443,72.645L26.876,72.914L25.757,71.365L25.226,70.9L24.83,70.985L25.29,70.346L25.376,69.117L25.058,67.939L24.55,67.35L23.633,65.268L22.973,63.782L23.361,63.39L23.321,61.084L23.968,59.96L24.145,57.909L23.638,56.551L23.419,55.766L22.509,54.377L22.64,53.147L23.817,51.664L24.604,51.134L24.176,51.356L25.021,50.262L25.086,49.431L25.674,48.489L26.311,47.013L26.425,45.165L26.046,44.7L26.68,43.356L28.527,43.94L29.968,44.33L31.352,44.725Z" + }, + { + "fill": "rgb(99, 194, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.124; geo: [object Object]; name: California", + "shape": "M39.758,111.4L39.446,110.978L39.228,109.657L40.13,111.232ZM41.106,108.274L40.352,107.906L40.199,106.835L41.041,107.516ZM32.436,101.972L31.979,101.051L33.06,101.144L33.112,101.813ZM34.408,102.026L33.854,101.712L33.783,101.034L35.585,102.063ZM35.832,45.987L39.833,47.183L42.537,47.938L46.75,49.035L45.38,54.344L42.908,63.925L42.427,65.716L42.185,66.578L41.949,67.569L41.86,67.914L41.783,68.21L41.685,68.666L42.041,69.216L43.304,71.104L44.282,72.562L44.953,73.573L47.815,77.892L50.171,81.453L52.863,85.504L58.104,93.38L59.104,94.911L63.421,101.384L63.236,102.218L63.925,103.484L64.281,105.345L65.174,106.536L64.369,107.268L63.305,107.656L63.208,108.051L62.53,108.621L62.445,110.18L62.098,111.114L61.4,111.764L60.81,111.868L60.66,112.519L60.868,113.111L60.491,113.976L60.692,114.404L61.471,114.603L61.599,115.404L61.059,116.377L59.943,116.417L52.189,115.5L46.471,114.822L46.677,113.91L46.135,113.479L46.068,112.594L46.291,112.429L46.278,110.95L45.579,109.07L45.19,108.627L43.952,106.819L43.937,106.796L43.756,106.698L43.753,106.708L42.909,105.607L42.919,105.565L42.871,105.512L42.864,105.54L42.38,105.34L42.053,105.512L41.272,105.018L41.592,104.625L41.384,103.623L41.093,103.138L39.778,102.93L38.931,102.558L37.653,101.546L37.54,100.694L36.651,99.699L36.24,99.311L34.564,98.947L33.968,98.415L32.462,97.949L31.461,97.806L31.406,97.319L30.761,96.757L31.222,95.94L31.451,94.155L31.785,93.277L30.623,92.031L31.135,91.55L30.921,90.695L30.417,90.473L29.869,89.078L29.297,88.742L29.25,87.813L28.791,87.069L28.753,86.188L28.468,85.988L28.05,84.68L27.305,83.699L27.398,81.798L28.334,81.509L28.786,80.241L28.554,79.511L27.425,79.161L26.755,77.893L26.341,76.849L26.675,76.093L26.644,75.236L26.385,74.901L26.814,73.68L26.885,73.227L27.439,73.14L27.34,73.83L27.307,74.635L27.779,74.909L28.31,75.811L28.96,76.017L28.396,75.575L28.459,74.447L27.853,73.337L28.126,72.719L27.794,72.238L28.749,71.764L29.137,72.116L29.832,72.074L31.02,72.708L32.062,72.393L32.062,72.815L32.221,72.38L31.668,72.337L31.938,71.785L31.017,72.367L30.433,72.295L29.844,71.544L29.3,72.022L28.792,71.682L28.696,71.057L28.642,71.042L28.773,71.609L28.135,70.905L28.103,70.881L27.568,71.046L27.401,70.676L27.628,71.109L27.189,72.232L27.443,72.645L26.876,72.914L25.757,71.365L25.226,70.9L24.83,70.985L25.29,70.346L25.376,69.117L25.058,67.939L24.55,67.35L23.633,65.268L22.973,63.782L23.361,63.39L23.321,61.084L23.968,59.96L24.145,57.909L23.638,56.551L23.419,55.766L22.509,54.377L22.64,53.147L23.817,51.664L24.604,51.134L24.176,51.356L25.021,50.262L25.086,49.431L25.674,48.489L26.311,47.013L26.425,45.165L26.046,44.7L26.68,43.356L28.527,43.94L29.968,44.33L31.352,44.725Z" + }, + { + "fill": "rgb(105, 197, 190)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.119; geo: [object Object]; name: California", + "shape": "M39.758,111.4L39.446,110.978L39.228,109.657L40.13,111.232ZM41.106,108.274L40.352,107.906L40.199,106.835L41.041,107.516ZM32.436,101.972L31.979,101.051L33.06,101.144L33.112,101.813ZM34.408,102.026L33.854,101.712L33.783,101.034L35.585,102.063ZM35.832,45.987L39.833,47.183L42.537,47.938L46.75,49.035L45.38,54.344L42.908,63.925L42.427,65.716L42.185,66.578L41.949,67.569L41.86,67.914L41.783,68.21L41.685,68.666L42.041,69.216L43.304,71.104L44.282,72.562L44.953,73.573L47.815,77.892L50.171,81.453L52.863,85.504L58.104,93.38L59.104,94.911L63.421,101.384L63.236,102.218L63.925,103.484L64.281,105.345L65.174,106.536L64.369,107.268L63.305,107.656L63.208,108.051L62.53,108.621L62.445,110.18L62.098,111.114L61.4,111.764L60.81,111.868L60.66,112.519L60.868,113.111L60.491,113.976L60.692,114.404L61.471,114.603L61.599,115.404L61.059,116.377L59.943,116.417L52.189,115.5L46.471,114.822L46.677,113.91L46.135,113.479L46.068,112.594L46.291,112.429L46.278,110.95L45.579,109.07L45.19,108.627L43.952,106.819L43.937,106.796L43.756,106.698L43.753,106.708L42.909,105.607L42.919,105.565L42.871,105.512L42.864,105.54L42.38,105.34L42.053,105.512L41.272,105.018L41.592,104.625L41.384,103.623L41.093,103.138L39.778,102.93L38.931,102.558L37.653,101.546L37.54,100.694L36.651,99.699L36.24,99.311L34.564,98.947L33.968,98.415L32.462,97.949L31.461,97.806L31.406,97.319L30.761,96.757L31.222,95.94L31.451,94.155L31.785,93.277L30.623,92.031L31.135,91.55L30.921,90.695L30.417,90.473L29.869,89.078L29.297,88.742L29.25,87.813L28.791,87.069L28.753,86.188L28.468,85.988L28.05,84.68L27.305,83.699L27.398,81.798L28.334,81.509L28.786,80.241L28.554,79.511L27.425,79.161L26.755,77.893L26.341,76.849L26.675,76.093L26.644,75.236L26.385,74.901L26.814,73.68L26.885,73.227L27.439,73.14L27.34,73.83L27.307,74.635L27.779,74.909L28.31,75.811L28.96,76.017L28.396,75.575L28.459,74.447L27.853,73.337L28.126,72.719L27.794,72.238L28.749,71.764L29.137,72.116L29.832,72.074L31.02,72.708L32.062,72.393L32.062,72.815L32.221,72.38L31.668,72.337L31.938,71.785L31.017,72.367L30.433,72.295L29.844,71.544L29.3,72.022L28.792,71.682L28.696,71.057L28.642,71.042L28.773,71.609L28.135,70.905L28.103,70.881L27.568,71.046L27.401,70.676L27.628,71.109L27.189,72.232L27.443,72.645L26.876,72.914L25.757,71.365L25.226,70.9L24.83,70.985L25.29,70.346L25.376,69.117L25.058,67.939L24.55,67.35L23.633,65.268L22.973,63.782L23.361,63.39L23.321,61.084L23.968,59.96L24.145,57.909L23.638,56.551L23.419,55.766L22.509,54.377L22.64,53.147L23.817,51.664L24.604,51.134L24.176,51.356L25.021,50.262L25.086,49.431L25.674,48.489L26.311,47.013L26.425,45.165L26.046,44.7L26.68,43.356L28.527,43.94L29.968,44.33L31.352,44.725Z" + }, + { + "fill": "rgb(50, 163, 192)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.169; geo: [object Object]; name: California", + "shape": "M39.758,111.4L39.446,110.978L39.228,109.657L40.13,111.232ZM41.106,108.274L40.352,107.906L40.199,106.835L41.041,107.516ZM32.436,101.972L31.979,101.051L33.06,101.144L33.112,101.813ZM34.408,102.026L33.854,101.712L33.783,101.034L35.585,102.063ZM35.832,45.987L39.833,47.183L42.537,47.938L46.75,49.035L45.38,54.344L42.908,63.925L42.427,65.716L42.185,66.578L41.949,67.569L41.86,67.914L41.783,68.21L41.685,68.666L42.041,69.216L43.304,71.104L44.282,72.562L44.953,73.573L47.815,77.892L50.171,81.453L52.863,85.504L58.104,93.38L59.104,94.911L63.421,101.384L63.236,102.218L63.925,103.484L64.281,105.345L65.174,106.536L64.369,107.268L63.305,107.656L63.208,108.051L62.53,108.621L62.445,110.18L62.098,111.114L61.4,111.764L60.81,111.868L60.66,112.519L60.868,113.111L60.491,113.976L60.692,114.404L61.471,114.603L61.599,115.404L61.059,116.377L59.943,116.417L52.189,115.5L46.471,114.822L46.677,113.91L46.135,113.479L46.068,112.594L46.291,112.429L46.278,110.95L45.579,109.07L45.19,108.627L43.952,106.819L43.937,106.796L43.756,106.698L43.753,106.708L42.909,105.607L42.919,105.565L42.871,105.512L42.864,105.54L42.38,105.34L42.053,105.512L41.272,105.018L41.592,104.625L41.384,103.623L41.093,103.138L39.778,102.93L38.931,102.558L37.653,101.546L37.54,100.694L36.651,99.699L36.24,99.311L34.564,98.947L33.968,98.415L32.462,97.949L31.461,97.806L31.406,97.319L30.761,96.757L31.222,95.94L31.451,94.155L31.785,93.277L30.623,92.031L31.135,91.55L30.921,90.695L30.417,90.473L29.869,89.078L29.297,88.742L29.25,87.813L28.791,87.069L28.753,86.188L28.468,85.988L28.05,84.68L27.305,83.699L27.398,81.798L28.334,81.509L28.786,80.241L28.554,79.511L27.425,79.161L26.755,77.893L26.341,76.849L26.675,76.093L26.644,75.236L26.385,74.901L26.814,73.68L26.885,73.227L27.439,73.14L27.34,73.83L27.307,74.635L27.779,74.909L28.31,75.811L28.96,76.017L28.396,75.575L28.459,74.447L27.853,73.337L28.126,72.719L27.794,72.238L28.749,71.764L29.137,72.116L29.832,72.074L31.02,72.708L32.062,72.393L32.062,72.815L32.221,72.38L31.668,72.337L31.938,71.785L31.017,72.367L30.433,72.295L29.844,71.544L29.3,72.022L28.792,71.682L28.696,71.057L28.642,71.042L28.773,71.609L28.135,70.905L28.103,70.881L27.568,71.046L27.401,70.676L27.628,71.109L27.189,72.232L27.443,72.645L26.876,72.914L25.757,71.365L25.226,70.9L24.83,70.985L25.29,70.346L25.376,69.117L25.058,67.939L24.55,67.35L23.633,65.268L22.973,63.782L23.361,63.39L23.321,61.084L23.968,59.96L24.145,57.909L23.638,56.551L23.419,55.766L22.509,54.377L22.64,53.147L23.817,51.664L24.604,51.134L24.176,51.356L25.021,50.262L25.086,49.431L25.674,48.489L26.311,47.013L26.425,45.165L26.046,44.7L26.68,43.356L28.527,43.94L29.968,44.33L31.352,44.725Z" + }, + { + "fill": "rgb(71, 181, 194)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.146; geo: [object Object]; name: California", + "shape": "M39.758,111.4L39.446,110.978L39.228,109.657L40.13,111.232ZM41.106,108.274L40.352,107.906L40.199,106.835L41.041,107.516ZM32.436,101.972L31.979,101.051L33.06,101.144L33.112,101.813ZM34.408,102.026L33.854,101.712L33.783,101.034L35.585,102.063ZM35.832,45.987L39.833,47.183L42.537,47.938L46.75,49.035L45.38,54.344L42.908,63.925L42.427,65.716L42.185,66.578L41.949,67.569L41.86,67.914L41.783,68.21L41.685,68.666L42.041,69.216L43.304,71.104L44.282,72.562L44.953,73.573L47.815,77.892L50.171,81.453L52.863,85.504L58.104,93.38L59.104,94.911L63.421,101.384L63.236,102.218L63.925,103.484L64.281,105.345L65.174,106.536L64.369,107.268L63.305,107.656L63.208,108.051L62.53,108.621L62.445,110.18L62.098,111.114L61.4,111.764L60.81,111.868L60.66,112.519L60.868,113.111L60.491,113.976L60.692,114.404L61.471,114.603L61.599,115.404L61.059,116.377L59.943,116.417L52.189,115.5L46.471,114.822L46.677,113.91L46.135,113.479L46.068,112.594L46.291,112.429L46.278,110.95L45.579,109.07L45.19,108.627L43.952,106.819L43.937,106.796L43.756,106.698L43.753,106.708L42.909,105.607L42.919,105.565L42.871,105.512L42.864,105.54L42.38,105.34L42.053,105.512L41.272,105.018L41.592,104.625L41.384,103.623L41.093,103.138L39.778,102.93L38.931,102.558L37.653,101.546L37.54,100.694L36.651,99.699L36.24,99.311L34.564,98.947L33.968,98.415L32.462,97.949L31.461,97.806L31.406,97.319L30.761,96.757L31.222,95.94L31.451,94.155L31.785,93.277L30.623,92.031L31.135,91.55L30.921,90.695L30.417,90.473L29.869,89.078L29.297,88.742L29.25,87.813L28.791,87.069L28.753,86.188L28.468,85.988L28.05,84.68L27.305,83.699L27.398,81.798L28.334,81.509L28.786,80.241L28.554,79.511L27.425,79.161L26.755,77.893L26.341,76.849L26.675,76.093L26.644,75.236L26.385,74.901L26.814,73.68L26.885,73.227L27.439,73.14L27.34,73.83L27.307,74.635L27.779,74.909L28.31,75.811L28.96,76.017L28.396,75.575L28.459,74.447L27.853,73.337L28.126,72.719L27.794,72.238L28.749,71.764L29.137,72.116L29.832,72.074L31.02,72.708L32.062,72.393L32.062,72.815L32.221,72.38L31.668,72.337L31.938,71.785L31.017,72.367L30.433,72.295L29.844,71.544L29.3,72.022L28.792,71.682L28.696,71.057L28.642,71.042L28.773,71.609L28.135,70.905L28.103,70.881L27.568,71.046L27.401,70.676L27.628,71.109L27.189,72.232L27.443,72.645L26.876,72.914L25.757,71.365L25.226,70.9L24.83,70.985L25.29,70.346L25.376,69.117L25.058,67.939L24.55,67.35L23.633,65.268L22.973,63.782L23.361,63.39L23.321,61.084L23.968,59.96L24.145,57.909L23.638,56.551L23.419,55.766L22.509,54.377L22.64,53.147L23.817,51.664L24.604,51.134L24.176,51.356L25.021,50.262L25.086,49.431L25.674,48.489L26.311,47.013L26.425,45.165L26.046,44.7L26.68,43.356L28.527,43.94L29.968,44.33L31.352,44.725Z" + }, + { + "fill": "rgb(186, 228, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.065; geo: [object Object]; name: California", + "shape": "M39.758,111.4L39.446,110.978L39.228,109.657L40.13,111.232ZM41.106,108.274L40.352,107.906L40.199,106.835L41.041,107.516ZM32.436,101.972L31.979,101.051L33.06,101.144L33.112,101.813ZM34.408,102.026L33.854,101.712L33.783,101.034L35.585,102.063ZM35.832,45.987L39.833,47.183L42.537,47.938L46.75,49.035L45.38,54.344L42.908,63.925L42.427,65.716L42.185,66.578L41.949,67.569L41.86,67.914L41.783,68.21L41.685,68.666L42.041,69.216L43.304,71.104L44.282,72.562L44.953,73.573L47.815,77.892L50.171,81.453L52.863,85.504L58.104,93.38L59.104,94.911L63.421,101.384L63.236,102.218L63.925,103.484L64.281,105.345L65.174,106.536L64.369,107.268L63.305,107.656L63.208,108.051L62.53,108.621L62.445,110.18L62.098,111.114L61.4,111.764L60.81,111.868L60.66,112.519L60.868,113.111L60.491,113.976L60.692,114.404L61.471,114.603L61.599,115.404L61.059,116.377L59.943,116.417L52.189,115.5L46.471,114.822L46.677,113.91L46.135,113.479L46.068,112.594L46.291,112.429L46.278,110.95L45.579,109.07L45.19,108.627L43.952,106.819L43.937,106.796L43.756,106.698L43.753,106.708L42.909,105.607L42.919,105.565L42.871,105.512L42.864,105.54L42.38,105.34L42.053,105.512L41.272,105.018L41.592,104.625L41.384,103.623L41.093,103.138L39.778,102.93L38.931,102.558L37.653,101.546L37.54,100.694L36.651,99.699L36.24,99.311L34.564,98.947L33.968,98.415L32.462,97.949L31.461,97.806L31.406,97.319L30.761,96.757L31.222,95.94L31.451,94.155L31.785,93.277L30.623,92.031L31.135,91.55L30.921,90.695L30.417,90.473L29.869,89.078L29.297,88.742L29.25,87.813L28.791,87.069L28.753,86.188L28.468,85.988L28.05,84.68L27.305,83.699L27.398,81.798L28.334,81.509L28.786,80.241L28.554,79.511L27.425,79.161L26.755,77.893L26.341,76.849L26.675,76.093L26.644,75.236L26.385,74.901L26.814,73.68L26.885,73.227L27.439,73.14L27.34,73.83L27.307,74.635L27.779,74.909L28.31,75.811L28.96,76.017L28.396,75.575L28.459,74.447L27.853,73.337L28.126,72.719L27.794,72.238L28.749,71.764L29.137,72.116L29.832,72.074L31.02,72.708L32.062,72.393L32.062,72.815L32.221,72.38L31.668,72.337L31.938,71.785L31.017,72.367L30.433,72.295L29.844,71.544L29.3,72.022L28.792,71.682L28.696,71.057L28.642,71.042L28.773,71.609L28.135,70.905L28.103,70.881L27.568,71.046L27.401,70.676L27.628,71.109L27.189,72.232L27.443,72.645L26.876,72.914L25.757,71.365L25.226,70.9L24.83,70.985L25.29,70.346L25.376,69.117L25.058,67.939L24.55,67.35L23.633,65.268L22.973,63.782L23.361,63.39L23.321,61.084L23.968,59.96L24.145,57.909L23.638,56.551L23.419,55.766L22.509,54.377L22.64,53.147L23.817,51.664L24.604,51.134L24.176,51.356L25.021,50.262L25.086,49.431L25.674,48.489L26.311,47.013L26.425,45.165L26.046,44.7L26.68,43.356L28.527,43.94L29.968,44.33L31.352,44.725Z" + }, + { + "fill": "rgb(175, 224, 182)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.072; geo: [object Object]; name: California", + "shape": "M39.758,111.4L39.446,110.978L39.228,109.657L40.13,111.232ZM41.106,108.274L40.352,107.906L40.199,106.835L41.041,107.516ZM32.436,101.972L31.979,101.051L33.06,101.144L33.112,101.813ZM34.408,102.026L33.854,101.712L33.783,101.034L35.585,102.063ZM35.832,45.987L39.833,47.183L42.537,47.938L46.75,49.035L45.38,54.344L42.908,63.925L42.427,65.716L42.185,66.578L41.949,67.569L41.86,67.914L41.783,68.21L41.685,68.666L42.041,69.216L43.304,71.104L44.282,72.562L44.953,73.573L47.815,77.892L50.171,81.453L52.863,85.504L58.104,93.38L59.104,94.911L63.421,101.384L63.236,102.218L63.925,103.484L64.281,105.345L65.174,106.536L64.369,107.268L63.305,107.656L63.208,108.051L62.53,108.621L62.445,110.18L62.098,111.114L61.4,111.764L60.81,111.868L60.66,112.519L60.868,113.111L60.491,113.976L60.692,114.404L61.471,114.603L61.599,115.404L61.059,116.377L59.943,116.417L52.189,115.5L46.471,114.822L46.677,113.91L46.135,113.479L46.068,112.594L46.291,112.429L46.278,110.95L45.579,109.07L45.19,108.627L43.952,106.819L43.937,106.796L43.756,106.698L43.753,106.708L42.909,105.607L42.919,105.565L42.871,105.512L42.864,105.54L42.38,105.34L42.053,105.512L41.272,105.018L41.592,104.625L41.384,103.623L41.093,103.138L39.778,102.93L38.931,102.558L37.653,101.546L37.54,100.694L36.651,99.699L36.24,99.311L34.564,98.947L33.968,98.415L32.462,97.949L31.461,97.806L31.406,97.319L30.761,96.757L31.222,95.94L31.451,94.155L31.785,93.277L30.623,92.031L31.135,91.55L30.921,90.695L30.417,90.473L29.869,89.078L29.297,88.742L29.25,87.813L28.791,87.069L28.753,86.188L28.468,85.988L28.05,84.68L27.305,83.699L27.398,81.798L28.334,81.509L28.786,80.241L28.554,79.511L27.425,79.161L26.755,77.893L26.341,76.849L26.675,76.093L26.644,75.236L26.385,74.901L26.814,73.68L26.885,73.227L27.439,73.14L27.34,73.83L27.307,74.635L27.779,74.909L28.31,75.811L28.96,76.017L28.396,75.575L28.459,74.447L27.853,73.337L28.126,72.719L27.794,72.238L28.749,71.764L29.137,72.116L29.832,72.074L31.02,72.708L32.062,72.393L32.062,72.815L32.221,72.38L31.668,72.337L31.938,71.785L31.017,72.367L30.433,72.295L29.844,71.544L29.3,72.022L28.792,71.682L28.696,71.057L28.642,71.042L28.773,71.609L28.135,70.905L28.103,70.881L27.568,71.046L27.401,70.676L27.628,71.109L27.189,72.232L27.443,72.645L26.876,72.914L25.757,71.365L25.226,70.9L24.83,70.985L25.29,70.346L25.376,69.117L25.058,67.939L24.55,67.35L23.633,65.268L22.973,63.782L23.361,63.39L23.321,61.084L23.968,59.96L24.145,57.909L23.638,56.551L23.419,55.766L22.509,54.377L22.64,53.147L23.817,51.664L24.604,51.134L24.176,51.356L25.021,50.262L25.086,49.431L25.674,48.489L26.311,47.013L26.425,45.165L26.046,44.7L26.68,43.356L28.527,43.94L29.968,44.33L31.352,44.725Z" + }, + { + "fill": "rgb(190, 229, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.062; geo: [object Object]; name: Colorado", + "shape": "M112.576,67.88L113.221,67.954L117.793,68.424L119.461,68.584L123.915,68.961L126.304,69.155L127.274,69.231L130.905,69.5L131.084,69.512L133.925,69.702L133.816,71.41L133.794,71.758L133.683,73.496L133.644,74.109L133.495,76.446L133.329,79.347L133.326,79.387L133.157,82.329L133.12,82.913L132.97,85.273L132.934,85.832L132.785,88.171L132.782,88.215L132.575,91.76L132.535,92.396L132.425,94.121L132.255,96.793L127.185,96.401L126.729,96.367L121.847,96.008L115.796,95.464L115.436,95.429L112.821,95.164L111.286,95.007L108.823,94.752L103.833,94.131L103.512,94.092L98.787,93.503L95.295,93.033L95.745,89.774L96.131,87.12L96.383,85.293L96.612,82.952L97.453,77.14L97.575,76.261L97.725,75.169L98.246,71.401L98.646,68.509L98.967,66.187L104.614,66.923L107.602,67.282L109.892,67.558Z" + }, + { + "fill": "rgb(209, 237, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.044; geo: [object Object]; name: Colorado", + "shape": "M112.576,67.88L113.221,67.954L117.793,68.424L119.461,68.584L123.915,68.961L126.304,69.155L127.274,69.231L130.905,69.5L131.084,69.512L133.925,69.702L133.816,71.41L133.794,71.758L133.683,73.496L133.644,74.109L133.495,76.446L133.329,79.347L133.326,79.387L133.157,82.329L133.12,82.913L132.97,85.273L132.934,85.832L132.785,88.171L132.782,88.215L132.575,91.76L132.535,92.396L132.425,94.121L132.255,96.793L127.185,96.401L126.729,96.367L121.847,96.008L115.796,95.464L115.436,95.429L112.821,95.164L111.286,95.007L108.823,94.752L103.833,94.131L103.512,94.092L98.787,93.503L95.295,93.033L95.745,89.774L96.131,87.12L96.383,85.293L96.612,82.952L97.453,77.14L97.575,76.261L97.725,75.169L98.246,71.401L98.646,68.509L98.967,66.187L104.614,66.923L107.602,67.282L109.892,67.558Z" + }, + { + "fill": "rgb(140, 210, 186)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.096; geo: [object Object]; name: Colorado", + "shape": "M112.576,67.88L113.221,67.954L117.793,68.424L119.461,68.584L123.915,68.961L126.304,69.155L127.274,69.231L130.905,69.5L131.084,69.512L133.925,69.702L133.816,71.41L133.794,71.758L133.683,73.496L133.644,74.109L133.495,76.446L133.329,79.347L133.326,79.387L133.157,82.329L133.12,82.913L132.97,85.273L132.934,85.832L132.785,88.171L132.782,88.215L132.575,91.76L132.535,92.396L132.425,94.121L132.255,96.793L127.185,96.401L126.729,96.367L121.847,96.008L115.796,95.464L115.436,95.429L112.821,95.164L111.286,95.007L108.823,94.752L103.833,94.131L103.512,94.092L98.787,93.503L95.295,93.033L95.745,89.774L96.131,87.12L96.383,85.293L96.612,82.952L97.453,77.14L97.575,76.261L97.725,75.169L98.246,71.401L98.646,68.509L98.967,66.187L104.614,66.923L107.602,67.282L109.892,67.558Z" + }, + { + "fill": "rgb(139, 210, 186)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.097; geo: [object Object]; name: Colorado", + "shape": "M112.576,67.88L113.221,67.954L117.793,68.424L119.461,68.584L123.915,68.961L126.304,69.155L127.274,69.231L130.905,69.5L131.084,69.512L133.925,69.702L133.816,71.41L133.794,71.758L133.683,73.496L133.644,74.109L133.495,76.446L133.329,79.347L133.326,79.387L133.157,82.329L133.12,82.913L132.97,85.273L132.934,85.832L132.785,88.171L132.782,88.215L132.575,91.76L132.535,92.396L132.425,94.121L132.255,96.793L127.185,96.401L126.729,96.367L121.847,96.008L115.796,95.464L115.436,95.429L112.821,95.164L111.286,95.007L108.823,94.752L103.833,94.131L103.512,94.092L98.787,93.503L95.295,93.033L95.745,89.774L96.131,87.12L96.383,85.293L96.612,82.952L97.453,77.14L97.575,76.261L97.725,75.169L98.246,71.401L98.646,68.509L98.967,66.187L104.614,66.923L107.602,67.282L109.892,67.558Z" + }, + { + "fill": "rgb(86, 188, 192)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.134; geo: [object Object]; name: Colorado", + "shape": "M112.576,67.88L113.221,67.954L117.793,68.424L119.461,68.584L123.915,68.961L126.304,69.155L127.274,69.231L130.905,69.5L131.084,69.512L133.925,69.702L133.816,71.41L133.794,71.758L133.683,73.496L133.644,74.109L133.495,76.446L133.329,79.347L133.326,79.387L133.157,82.329L133.12,82.913L132.97,85.273L132.934,85.832L132.785,88.171L132.782,88.215L132.575,91.76L132.535,92.396L132.425,94.121L132.255,96.793L127.185,96.401L126.729,96.367L121.847,96.008L115.796,95.464L115.436,95.429L112.821,95.164L111.286,95.007L108.823,94.752L103.833,94.131L103.512,94.092L98.787,93.503L95.295,93.033L95.745,89.774L96.131,87.12L96.383,85.293L96.612,82.952L97.453,77.14L97.575,76.261L97.725,75.169L98.246,71.401L98.646,68.509L98.967,66.187L104.614,66.923L107.602,67.282L109.892,67.558Z" + }, + { + "fill": "rgb(91, 191, 192)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.13; geo: [object Object]; name: Colorado", + "shape": "M112.576,67.88L113.221,67.954L117.793,68.424L119.461,68.584L123.915,68.961L126.304,69.155L127.274,69.231L130.905,69.5L131.084,69.512L133.925,69.702L133.816,71.41L133.794,71.758L133.683,73.496L133.644,74.109L133.495,76.446L133.329,79.347L133.326,79.387L133.157,82.329L133.12,82.913L132.97,85.273L132.934,85.832L132.785,88.171L132.782,88.215L132.575,91.76L132.535,92.396L132.425,94.121L132.255,96.793L127.185,96.401L126.729,96.367L121.847,96.008L115.796,95.464L115.436,95.429L112.821,95.164L111.286,95.007L108.823,94.752L103.833,94.131L103.512,94.092L98.787,93.503L95.295,93.033L95.745,89.774L96.131,87.12L96.383,85.293L96.612,82.952L97.453,77.14L97.575,76.261L97.725,75.169L98.246,71.401L98.646,68.509L98.967,66.187L104.614,66.923L107.602,67.282L109.892,67.558Z" + }, + { + "fill": "rgb(40, 149, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.185; geo: [object Object]; name: Colorado", + "shape": "M112.576,67.88L113.221,67.954L117.793,68.424L119.461,68.584L123.915,68.961L126.304,69.155L127.274,69.231L130.905,69.5L131.084,69.512L133.925,69.702L133.816,71.41L133.794,71.758L133.683,73.496L133.644,74.109L133.495,76.446L133.329,79.347L133.326,79.387L133.157,82.329L133.12,82.913L132.97,85.273L132.934,85.832L132.785,88.171L132.782,88.215L132.575,91.76L132.535,92.396L132.425,94.121L132.255,96.793L127.185,96.401L126.729,96.367L121.847,96.008L115.796,95.464L115.436,95.429L112.821,95.164L111.286,95.007L108.823,94.752L103.833,94.131L103.512,94.092L98.787,93.503L95.295,93.033L95.745,89.774L96.131,87.12L96.383,85.293L96.612,82.952L97.453,77.14L97.575,76.261L97.725,75.169L98.246,71.401L98.646,68.509L98.967,66.187L104.614,66.923L107.602,67.282L109.892,67.558Z" + }, + { + "fill": "rgb(76, 183, 193)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.142; geo: [object Object]; name: Colorado", + "shape": "M112.576,67.88L113.221,67.954L117.793,68.424L119.461,68.584L123.915,68.961L126.304,69.155L127.274,69.231L130.905,69.5L131.084,69.512L133.925,69.702L133.816,71.41L133.794,71.758L133.683,73.496L133.644,74.109L133.495,76.446L133.329,79.347L133.326,79.387L133.157,82.329L133.12,82.913L132.97,85.273L132.934,85.832L132.785,88.171L132.782,88.215L132.575,91.76L132.535,92.396L132.425,94.121L132.255,96.793L127.185,96.401L126.729,96.367L121.847,96.008L115.796,95.464L115.436,95.429L112.821,95.164L111.286,95.007L108.823,94.752L103.833,94.131L103.512,94.092L98.787,93.503L95.295,93.033L95.745,89.774L96.131,87.12L96.383,85.293L96.612,82.952L97.453,77.14L97.575,76.261L97.725,75.169L98.246,71.401L98.646,68.509L98.967,66.187L104.614,66.923L107.602,67.282L109.892,67.558Z" + }, + { + "fill": "rgb(195, 231, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.057; geo: [object Object]; name: Colorado", + "shape": "M112.576,67.88L113.221,67.954L117.793,68.424L119.461,68.584L123.915,68.961L126.304,69.155L127.274,69.231L130.905,69.5L131.084,69.512L133.925,69.702L133.816,71.41L133.794,71.758L133.683,73.496L133.644,74.109L133.495,76.446L133.329,79.347L133.326,79.387L133.157,82.329L133.12,82.913L132.97,85.273L132.934,85.832L132.785,88.171L132.782,88.215L132.575,91.76L132.535,92.396L132.425,94.121L132.255,96.793L127.185,96.401L126.729,96.367L121.847,96.008L115.796,95.464L115.436,95.429L112.821,95.164L111.286,95.007L108.823,94.752L103.833,94.131L103.512,94.092L98.787,93.503L95.295,93.033L95.745,89.774L96.131,87.12L96.383,85.293L96.612,82.952L97.453,77.14L97.575,76.261L97.725,75.169L98.246,71.401L98.646,68.509L98.967,66.187L104.614,66.923L107.602,67.282L109.892,67.558Z" + }, + { + "fill": "rgb(199, 233, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.053; geo: [object Object]; name: Colorado", + "shape": "M112.576,67.88L113.221,67.954L117.793,68.424L119.461,68.584L123.915,68.961L126.304,69.155L127.274,69.231L130.905,69.5L131.084,69.512L133.925,69.702L133.816,71.41L133.794,71.758L133.683,73.496L133.644,74.109L133.495,76.446L133.329,79.347L133.326,79.387L133.157,82.329L133.12,82.913L132.97,85.273L132.934,85.832L132.785,88.171L132.782,88.215L132.575,91.76L132.535,92.396L132.425,94.121L132.255,96.793L127.185,96.401L126.729,96.367L121.847,96.008L115.796,95.464L115.436,95.429L112.821,95.164L111.286,95.007L108.823,94.752L103.833,94.131L103.512,94.092L98.787,93.503L95.295,93.033L95.745,89.774L96.131,87.12L96.383,85.293L96.612,82.952L97.453,77.14L97.575,76.261L97.725,75.169L98.246,71.401L98.646,68.509L98.967,66.187L104.614,66.923L107.602,67.282L109.892,67.558Z" + }, + { + "fill": "rgb(193, 231, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.059; geo: [object Object]; name: Connecticut", + "shape": "M276.71,50.018L276.936,49.97L279.338,49.404L281.134,48.97L281.135,48.973L281.291,48.941L282.771,48.704L283.323,50.541L283.467,51.093L283.54,51.374L283.78,52.58L283.7,53.201L281.477,54.14L280.729,53.306L281.376,54.177L280.405,54.512L280.445,54.525L280.487,54.544L278.637,54.767L277.867,55.772L277.754,55.385L277.51,55.901L275.463,57.619L275.46,57.609L274.963,56.999L275.968,55.951L275.428,55.012L275.244,53.943L275.075,53.009L274.623,50.456Z" + }, + { + "fill": "rgb(211, 238, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.042; geo: [object Object]; name: Connecticut", + "shape": "M276.71,50.018L276.936,49.97L279.338,49.404L281.134,48.97L281.135,48.973L281.291,48.941L282.771,48.704L283.323,50.541L283.467,51.093L283.54,51.374L283.78,52.58L283.7,53.201L281.477,54.14L280.729,53.306L281.376,54.177L280.405,54.512L280.445,54.525L280.487,54.544L278.637,54.767L277.867,55.772L277.754,55.385L277.51,55.901L275.463,57.619L275.46,57.609L274.963,56.999L275.968,55.951L275.428,55.012L275.244,53.943L275.075,53.009L274.623,50.456Z" + }, + { + "fill": "rgb(157, 216, 184)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.085; geo: [object Object]; name: Connecticut", + "shape": "M276.71,50.018L276.936,49.97L279.338,49.404L281.134,48.97L281.135,48.973L281.291,48.941L282.771,48.704L283.323,50.541L283.467,51.093L283.54,51.374L283.78,52.58L283.7,53.201L281.477,54.14L280.729,53.306L281.376,54.177L280.405,54.512L280.445,54.525L280.487,54.544L278.637,54.767L277.867,55.772L277.754,55.385L277.51,55.901L275.463,57.619L275.46,57.609L274.963,56.999L275.968,55.951L275.428,55.012L275.244,53.943L275.075,53.009L274.623,50.456Z" + }, + { + "fill": "rgb(164, 219, 183)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.08; geo: [object Object]; name: Connecticut", + "shape": "M276.71,50.018L276.936,49.97L279.338,49.404L281.134,48.97L281.135,48.973L281.291,48.941L282.771,48.704L283.323,50.541L283.467,51.093L283.54,51.374L283.78,52.58L283.7,53.201L281.477,54.14L280.729,53.306L281.376,54.177L280.405,54.512L280.445,54.525L280.487,54.544L278.637,54.767L277.867,55.772L277.754,55.385L277.51,55.901L275.463,57.619L275.46,57.609L274.963,56.999L275.968,55.951L275.428,55.012L275.244,53.943L275.075,53.009L274.623,50.456Z" + }, + { + "fill": "rgb(120, 203, 188)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.109; geo: [object Object]; name: Connecticut", + "shape": "M276.71,50.018L276.936,49.97L279.338,49.404L281.134,48.97L281.135,48.973L281.291,48.941L282.771,48.704L283.323,50.541L283.467,51.093L283.54,51.374L283.78,52.58L283.7,53.201L281.477,54.14L280.729,53.306L281.376,54.177L280.405,54.512L280.445,54.525L280.487,54.544L278.637,54.767L277.867,55.772L277.754,55.385L277.51,55.901L275.463,57.619L275.46,57.609L274.963,56.999L275.968,55.951L275.428,55.012L275.244,53.943L275.075,53.009L274.623,50.456Z" + }, + { + "fill": "rgb(94, 192, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.128; geo: [object Object]; name: Connecticut", + "shape": "M276.71,50.018L276.936,49.97L279.338,49.404L281.134,48.97L281.135,48.973L281.291,48.941L282.771,48.704L283.323,50.541L283.467,51.093L283.54,51.374L283.78,52.58L283.7,53.201L281.477,54.14L280.729,53.306L281.376,54.177L280.405,54.512L280.445,54.525L280.487,54.544L278.637,54.767L277.867,55.772L277.754,55.385L277.51,55.901L275.463,57.619L275.46,57.609L274.963,56.999L275.968,55.951L275.428,55.012L275.244,53.943L275.075,53.009L274.623,50.456Z" + }, + { + "fill": "rgb(53, 166, 193)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.166; geo: [object Object]; name: Connecticut", + "shape": "M276.71,50.018L276.936,49.97L279.338,49.404L281.134,48.97L281.135,48.973L281.291,48.941L282.771,48.704L283.323,50.541L283.467,51.093L283.54,51.374L283.78,52.58L283.7,53.201L281.477,54.14L280.729,53.306L281.376,54.177L280.405,54.512L280.445,54.525L280.487,54.544L278.637,54.767L277.867,55.772L277.754,55.385L277.51,55.901L275.463,57.619L275.46,57.609L274.963,56.999L275.968,55.951L275.428,55.012L275.244,53.943L275.075,53.009L274.623,50.456Z" + }, + { + "fill": "rgb(54, 166, 193)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.165; geo: [object Object]; name: Connecticut", + "shape": "M276.71,50.018L276.936,49.97L279.338,49.404L281.134,48.97L281.135,48.973L281.291,48.941L282.771,48.704L283.323,50.541L283.467,51.093L283.54,51.374L283.78,52.58L283.7,53.201L281.477,54.14L280.729,53.306L281.376,54.177L280.405,54.512L280.445,54.525L280.487,54.544L278.637,54.767L277.867,55.772L277.754,55.385L277.51,55.901L275.463,57.619L275.46,57.609L274.963,56.999L275.968,55.951L275.428,55.012L275.244,53.943L275.075,53.009L274.623,50.456Z" + }, + { + "fill": "rgb(170, 221, 183)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.076; geo: [object Object]; name: Connecticut", + "shape": "M276.71,50.018L276.936,49.97L279.338,49.404L281.134,48.97L281.135,48.973L281.291,48.941L282.771,48.704L283.323,50.541L283.467,51.093L283.54,51.374L283.78,52.58L283.7,53.201L281.477,54.14L280.729,53.306L281.376,54.177L280.405,54.512L280.445,54.525L280.487,54.544L278.637,54.767L277.867,55.772L277.754,55.385L277.51,55.901L275.463,57.619L275.46,57.609L274.963,56.999L275.968,55.951L275.428,55.012L275.244,53.943L275.075,53.009L274.623,50.456Z" + }, + { + "fill": "rgb(149, 214, 185)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.09; geo: [object Object]; name: Connecticut", + "shape": "M276.71,50.018L276.936,49.97L279.338,49.404L281.134,48.97L281.135,48.973L281.291,48.941L282.771,48.704L283.323,50.541L283.467,51.093L283.54,51.374L283.78,52.58L283.7,53.201L281.477,54.14L280.729,53.306L281.376,54.177L280.405,54.512L280.445,54.525L280.487,54.544L278.637,54.767L277.867,55.772L277.754,55.385L277.51,55.901L275.463,57.619L275.46,57.609L274.963,56.999L275.968,55.951L275.428,55.012L275.244,53.943L275.075,53.009L274.623,50.456Z" + }, + { + "fill": "rgb(195, 231, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.057; geo: [object Object]; name: Delaware", + "shape": "M268.541,67.43L267.849,68.903L268.172,69.178L268.172,69.867L268.717,70.463L269.165,70.696L269.59,71.426L269.727,72.305L270.348,72.969L271.198,73.801L271.722,73.759L271.928,74.425L271.524,74.493L272.16,75.119L272.408,75.973L272.317,75.993L272.226,76.014L270.931,76.298L269.132,76.639L268.951,75.979L268.807,75.492L268.457,74.228L267.862,72.179L267.678,71.504L267.588,71.174L267.454,70.641L266.836,68.389L267.637,67.415L267.637,67.415L267.724,67.385Z" + }, + { + "fill": "rgb(211, 238, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.042; geo: [object Object]; name: Delaware", + "shape": "M268.541,67.43L267.849,68.903L268.172,69.178L268.172,69.867L268.717,70.463L269.165,70.696L269.59,71.426L269.727,72.305L270.348,72.969L271.198,73.801L271.722,73.759L271.928,74.425L271.524,74.493L272.16,75.119L272.408,75.973L272.317,75.993L272.226,76.014L270.931,76.298L269.132,76.639L268.951,75.979L268.807,75.492L268.457,74.228L267.862,72.179L267.678,71.504L267.588,71.174L267.454,70.641L266.836,68.389L267.637,67.415L267.637,67.415L267.724,67.385Z" + }, + { + "fill": "rgb(148, 213, 185)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.091; geo: [object Object]; name: Delaware", + "shape": "M268.541,67.43L267.849,68.903L268.172,69.178L268.172,69.867L268.717,70.463L269.165,70.696L269.59,71.426L269.727,72.305L270.348,72.969L271.198,73.801L271.722,73.759L271.928,74.425L271.524,74.493L272.16,75.119L272.408,75.973L272.317,75.993L272.226,76.014L270.931,76.298L269.132,76.639L268.951,75.979L268.807,75.492L268.457,74.228L267.862,72.179L267.678,71.504L267.588,71.174L267.454,70.641L266.836,68.389L267.637,67.415L267.637,67.415L267.724,67.385Z" + }, + { + "fill": "rgb(139, 210, 186)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.097; geo: [object Object]; name: Delaware", + "shape": "M268.541,67.43L267.849,68.903L268.172,69.178L268.172,69.867L268.717,70.463L269.165,70.696L269.59,71.426L269.727,72.305L270.348,72.969L271.198,73.801L271.722,73.759L271.928,74.425L271.524,74.493L272.16,75.119L272.408,75.973L272.317,75.993L272.226,76.014L270.931,76.298L269.132,76.639L268.951,75.979L268.807,75.492L268.457,74.228L267.862,72.179L267.678,71.504L267.588,71.174L267.454,70.641L266.836,68.389L267.637,67.415L267.637,67.415L267.724,67.385Z" + }, + { + "fill": "rgb(87, 189, 192)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.133; geo: [object Object]; name: Delaware", + "shape": "M268.541,67.43L267.849,68.903L268.172,69.178L268.172,69.867L268.717,70.463L269.165,70.696L269.59,71.426L269.727,72.305L270.348,72.969L271.198,73.801L271.722,73.759L271.928,74.425L271.524,74.493L272.16,75.119L272.408,75.973L272.317,75.993L272.226,76.014L270.931,76.298L269.132,76.639L268.951,75.979L268.807,75.492L268.457,74.228L267.862,72.179L267.678,71.504L267.588,71.174L267.454,70.641L266.836,68.389L267.637,67.415L267.637,67.415L267.724,67.385Z" + }, + { + "fill": "rgb(86, 188, 192)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.134; geo: [object Object]; name: Delaware", + "shape": "M268.541,67.43L267.849,68.903L268.172,69.178L268.172,69.867L268.717,70.463L269.165,70.696L269.59,71.426L269.727,72.305L270.348,72.969L271.198,73.801L271.722,73.759L271.928,74.425L271.524,74.493L272.16,75.119L272.408,75.973L272.317,75.993L272.226,76.014L270.931,76.298L269.132,76.639L268.951,75.979L268.807,75.492L268.457,74.228L267.862,72.179L267.678,71.504L267.588,71.174L267.454,70.641L266.836,68.389L267.637,67.415L267.637,67.415L267.724,67.385Z" + }, + { + "fill": "rgb(37, 140, 187)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.194; geo: [object Object]; name: Delaware", + "shape": "M268.541,67.43L267.849,68.903L268.172,69.178L268.172,69.867L268.717,70.463L269.165,70.696L269.59,71.426L269.727,72.305L270.348,72.969L271.198,73.801L271.722,73.759L271.928,74.425L271.524,74.493L272.16,75.119L272.408,75.973L272.317,75.993L272.226,76.014L270.931,76.298L269.132,76.639L268.951,75.979L268.807,75.492L268.457,74.228L267.862,72.179L267.678,71.504L267.588,71.174L267.454,70.641L266.836,68.389L267.637,67.415L267.637,67.415L267.724,67.385Z" + }, + { + "fill": "rgb(67, 178, 194)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.15; geo: [object Object]; name: Delaware", + "shape": "M268.541,67.43L267.849,68.903L268.172,69.178L268.172,69.867L268.717,70.463L269.165,70.696L269.59,71.426L269.727,72.305L270.348,72.969L271.198,73.801L271.722,73.759L271.928,74.425L271.524,74.493L272.16,75.119L272.408,75.973L272.317,75.993L272.226,76.014L270.931,76.298L269.132,76.639L268.951,75.979L268.807,75.492L268.457,74.228L267.862,72.179L267.678,71.504L267.588,71.174L267.454,70.641L266.836,68.389L267.637,67.415L267.637,67.415L267.724,67.385Z" + }, + { + "fill": "rgb(197, 232, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.055; geo: [object Object]; name: Delaware", + "shape": "M268.541,67.43L267.849,68.903L268.172,69.178L268.172,69.867L268.717,70.463L269.165,70.696L269.59,71.426L269.727,72.305L270.348,72.969L271.198,73.801L271.722,73.759L271.928,74.425L271.524,74.493L272.16,75.119L272.408,75.973L272.317,75.993L272.226,76.014L270.931,76.298L269.132,76.639L268.951,75.979L268.807,75.492L268.457,74.228L267.862,72.179L267.678,71.504L267.588,71.174L267.454,70.641L266.836,68.389L267.637,67.415L267.637,67.415L267.724,67.385Z" + }, + { + "fill": "rgb(206, 236, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.047; geo: [object Object]; name: Delaware", + "shape": "M268.541,67.43L267.849,68.903L268.172,69.178L268.172,69.867L268.717,70.463L269.165,70.696L269.59,71.426L269.727,72.305L270.348,72.969L271.198,73.801L271.722,73.759L271.928,74.425L271.524,74.493L272.16,75.119L272.408,75.973L272.317,75.993L272.226,76.014L270.931,76.298L269.132,76.639L268.951,75.979L268.807,75.492L268.457,74.228L267.862,72.179L267.678,71.504L267.588,71.174L267.454,70.641L266.836,68.389L267.637,67.415L267.637,67.415L267.724,67.385Z" + }, + { + "fill": "rgb(125, 204, 188)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.106; geo: [object Object]; name: District of Columbia", + "shape": "M261.919,75.732L261.387,75.16L261.242,75.004L261.781,74.676L262.354,75.072Z" + }, + { + "fill": "rgb(209, 237, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.044; geo: [object Object]; name: District of Columbia", + "shape": "M261.919,75.732L261.387,75.16L261.242,75.004L261.781,74.676L262.354,75.072Z" + }, + { + "fill": "rgb(170, 221, 183)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.076; geo: [object Object]; name: District of Columbia", + "shape": "M261.919,75.732L261.387,75.16L261.242,75.004L261.781,74.676L262.354,75.072Z" + }, + { + "fill": "rgb(181, 226, 182)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.068; geo: [object Object]; name: District of Columbia", + "shape": "M261.919,75.732L261.387,75.16L261.242,75.004L261.781,74.676L262.354,75.072Z" + }, + { + "fill": "rgb(133, 207, 187)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.101; geo: [object Object]; name: District of Columbia", + "shape": "M261.919,75.732L261.387,75.16L261.242,75.004L261.781,74.676L262.354,75.072Z" + }, + { + "fill": "rgb(128, 206, 187)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.104; geo: [object Object]; name: District of Columbia", + "shape": "M261.919,75.732L261.387,75.16L261.242,75.004L261.781,74.676L262.354,75.072Z" + }, + { + "fill": "rgb(72, 182, 194)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.145; geo: [object Object]; name: District of Columbia", + "shape": "M261.919,75.732L261.387,75.16L261.242,75.004L261.781,74.676L262.354,75.072Z" + }, + { + "fill": "rgb(61, 173, 193)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.156; geo: [object Object]; name: District of Columbia", + "shape": "M261.919,75.732L261.387,75.16L261.242,75.004L261.781,74.676L262.354,75.072Z" + }, + { + "fill": "rgb(167, 220, 183)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.078; geo: [object Object]; name: District of Columbia", + "shape": "M261.919,75.732L261.387,75.16L261.242,75.004L261.781,74.676L262.354,75.072Z" + }, + { + "fill": "rgb(103, 196, 190)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.121; geo: [object Object]; name: District of Columbia", + "shape": "M261.919,75.732L261.387,75.16L261.242,75.004L261.781,74.676L262.354,75.072Z" + }, + { + "fill": "rgb(162, 219, 184)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.081; geo: [object Object]; name: Florida", + "shape": "M259.904,169.445L259.833,169.558L259.815,169.586L259.817,169.596L259.733,169.765L259.684,169.871L259.581,169.657L259.751,169.329L259.749,169.322L259.749,169.319L259.739,169.259L260.406,168.169ZM247.61,162.49L248.631,162.561L248.137,162.789ZM253.494,145.531L252.505,144.567L252.538,144.369ZM227.551,143.904L226.951,143.631L227.694,143.503ZM252.317,144.189L252.104,143.924L250.959,142.075L250.426,141.25L250.23,140.946L250.088,140.578L250.084,140.556L250.026,140.452L250.024,140.442L249.997,140.406L250.105,140.553L251,142.065ZM249.987,140.338L249.377,139.415L249.486,139.029ZM248.555,136.837L249.238,138.656L248.807,137.919L248.801,137.877L248.271,136.903L248.269,136.885L248.273,136.64L248.271,136.629L248.227,136.479L248.104,136.228L248.305,135.901ZM260.547,164.373L260.343,165.273L260.016,165.704L259.722,167.409L259.87,168.302L259.433,169.028L259.739,169.259L259.749,169.319L259.751,169.329L259.411,169.032L259.088,169.24L259.581,169.657L259.091,169.261L259.093,169.272L258.685,169.101L258.16,169.71L256.907,169.837L256.685,170.125L255.599,170.453L254.941,169.825L254.968,169.146L255.331,169.045L255.357,169.067L255.54,169.38L255.55,169.444L255.558,169.493L255.612,169.549L255.615,169.57L255.996,169.719L256.563,169.502L256.113,168.914L255.668,169.061L255.379,168.926L255.336,168.933L255.24,168.894L254.436,168.025L254.907,167.488L254.909,167.502L254.957,167.52L254.966,167.577L255.375,167.635L255.373,167.62L255.37,167.603L254.934,167.376L254.745,167.445L254.296,167.696L253.971,166.758L254.165,166.583L254.185,166.566L254.184,166.559L253.749,166.616L253.329,166.194L252.25,165.801L252.249,165.794L252.245,165.769L251.791,165.835L251.678,165.679L251.654,165.664L251.56,165.632L251.561,165.635L251.547,165.692L251.552,165.723L251.307,165.562L250.466,164.971L250.451,164.868L250.425,164.847L250.292,164.694L250.293,164.704L249.78,163.192L249.5,162.355L248.736,162.238L249.029,161.699L248.427,162.074L248.033,161.188L248.06,160.483L247.953,159.757L247.505,159.237L247.354,159.548L246.678,159.104L246.684,159.147L247.398,159.994L246.908,160.384L246.136,159.581L245.311,158.542L245.283,158.502L245.282,158.492L245.017,158.012L244.799,157.703L244.458,156.836L243.653,156.356L244.386,155.412L244.302,155.13L245.053,154.029L244.968,153.44L244.404,153.27L244.58,153.894L244.106,153.755L244.163,153.247L243.36,152.748L243.035,153.352L243.843,153.724L243.636,154.855L243.08,154.593L242.342,153.946L242.585,152.603L242.435,151.837L242.866,150.017L242.831,148.253L242.575,147.803L242.17,147.198L242.543,146.971L242.546,146.993L242.614,147.023L242.633,147.002L242.333,146.841L241.857,146.337L241.838,146.351L241.874,146.153L241.251,145.346L239.898,145.399L239.777,145.132L239.493,144.451L239.114,144.47L238.667,143.829L237.615,143.395L237.542,142.376L237.007,142.316L236.377,141.858L235.946,141.136L233.721,140.004L233.222,140.038L231.62,140.478L231.738,141.096L231.177,141.143L231.857,141.55L230.731,141.626L228.848,143.111L228.978,142.609L228.254,143.064L227.891,142.841L227.872,142.861L228.304,143.134L226.96,143.529L226.425,143.633L226.396,142.812L225.81,142.091L223.944,140.94L224.672,141.089L225.288,141.543L225.712,141.398L225.707,141.351L225.695,141.247L225.171,141.433L224.89,140.789L224.47,140.958L223.64,140.639L223.451,140.826L222.065,140.179L219.678,139.683L219.665,139.557L220.49,139.27L221.266,139.523L220.7,138.885L219.627,139.183L219.26,138.843L218.487,139.65L217.35,139.732L215.157,140.329L216.572,139.437L216.008,139.194L215.775,139.597L215.178,138.764L215.076,139.016L215.055,139.011L215.187,139.757L214.684,140.398L213.59,140.733L213.741,140.1L214.144,139.955L213.649,139.55L213.699,138.262L212.94,137.887L212.269,137.098L212.397,136.202L214.875,135.965L217.047,135.769L217.602,135.73L219.302,135.567L220.448,135.45L221.329,135.361L224.374,135.007L224.436,135L227.193,134.665L228.217,136.499L231.003,136.313L231.56,136.277L232.695,136.197L233.149,136.165L234.657,136.062L235.421,136.01L236.888,135.911L236.971,135.907L237.158,135.9L238.15,135.831L240.734,135.652L241.334,135.611L242.057,135.555L242.285,135.541L243.465,135.461L243.691,136.584L244.608,136.69L244.656,135.318L244.322,134.754L244.333,133.84L244.966,133.472L246.771,133.952L246.789,133.938L246.92,133.973L247.389,133.901L247.808,133.906L247.913,135.128L246.971,134.992L246.971,134.992L247.345,135.245L247.378,135.328L247.398,135.317L247.522,135.306L247.544,135.313L247.544,135.313L247.544,135.313L247.56,135.282L247.583,135.296L247.589,135.061L247.838,135.319L247.878,135.854L246.975,136.113L247.052,136.623L246.631,136.891L246.832,137.525L246.86,138.543L247.581,139.123L247.681,139.782L247.968,140.552L247.58,140.921L247.937,141.319L247.472,141.463L247.782,142.943L248.043,143.544L248.601,143.998L248.629,144.038L248.601,143.998L248.664,143.296L248.365,143.007L247.84,142.766L247.578,141.465L247.995,141.284L247.698,140.724L248.217,140.244L247.713,139.435L247.738,138.909L247.111,138.53L247.474,137.869L247.054,137.878L247.18,137.184L246.849,136.668L247.104,136.137L248.104,136.228L248.227,136.479L248.271,136.629L248.273,136.64L248.269,136.885L248.271,136.903L248.801,137.877L248.807,137.919L249.405,139.593L249.902,140.34L249.997,140.406L250.024,140.442L250.026,140.452L250.064,140.559L250.088,140.578L250.043,140.563L249.931,140.657L250.23,140.946L250.426,141.25L250.959,142.075L252.104,143.924L253.503,145.985L254.501,146.72L253.774,145.941L253.816,145.935L254.955,147.134L255.386,147.93L254.967,148.258L254.883,147.219L254.607,148.691L254.334,148.601L254.094,147.252L253.731,147.133L253.828,146.406L253.211,146.032L253.127,146.046L253.491,147.106L254.27,148.735L256.221,151.826L256.21,152.025L257.119,153.06L257.336,153.715L258.401,155.529L258.139,155.791L258.163,155.932L258.166,155.953L259.041,156.348L259.041,156.348L259.596,157.304L259.468,157.326L259.447,157.329L259.362,157.344L259.362,157.344L259.319,157.351L259.712,157.473L260.328,159.815L260.382,161.561L260.507,163.873Z" + }, + { + "fill": "rgb(192, 230, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.06; geo: [object Object]; name: Florida", + "shape": "M259.904,169.445L259.833,169.558L259.815,169.586L259.817,169.596L259.733,169.765L259.684,169.871L259.581,169.657L259.751,169.329L259.749,169.322L259.749,169.319L259.739,169.259L260.406,168.169ZM247.61,162.49L248.631,162.561L248.137,162.789ZM253.494,145.531L252.505,144.567L252.538,144.369ZM227.551,143.904L226.951,143.631L227.694,143.503ZM252.317,144.189L252.104,143.924L250.959,142.075L250.426,141.25L250.23,140.946L250.088,140.578L250.084,140.556L250.026,140.452L250.024,140.442L249.997,140.406L250.105,140.553L251,142.065ZM249.987,140.338L249.377,139.415L249.486,139.029ZM248.555,136.837L249.238,138.656L248.807,137.919L248.801,137.877L248.271,136.903L248.269,136.885L248.273,136.64L248.271,136.629L248.227,136.479L248.104,136.228L248.305,135.901ZM260.547,164.373L260.343,165.273L260.016,165.704L259.722,167.409L259.87,168.302L259.433,169.028L259.739,169.259L259.749,169.319L259.751,169.329L259.411,169.032L259.088,169.24L259.581,169.657L259.091,169.261L259.093,169.272L258.685,169.101L258.16,169.71L256.907,169.837L256.685,170.125L255.599,170.453L254.941,169.825L254.968,169.146L255.331,169.045L255.357,169.067L255.54,169.38L255.55,169.444L255.558,169.493L255.612,169.549L255.615,169.57L255.996,169.719L256.563,169.502L256.113,168.914L255.668,169.061L255.379,168.926L255.336,168.933L255.24,168.894L254.436,168.025L254.907,167.488L254.909,167.502L254.957,167.52L254.966,167.577L255.375,167.635L255.373,167.62L255.37,167.603L254.934,167.376L254.745,167.445L254.296,167.696L253.971,166.758L254.165,166.583L254.185,166.566L254.184,166.559L253.749,166.616L253.329,166.194L252.25,165.801L252.249,165.794L252.245,165.769L251.791,165.835L251.678,165.679L251.654,165.664L251.56,165.632L251.561,165.635L251.547,165.692L251.552,165.723L251.307,165.562L250.466,164.971L250.451,164.868L250.425,164.847L250.292,164.694L250.293,164.704L249.78,163.192L249.5,162.355L248.736,162.238L249.029,161.699L248.427,162.074L248.033,161.188L248.06,160.483L247.953,159.757L247.505,159.237L247.354,159.548L246.678,159.104L246.684,159.147L247.398,159.994L246.908,160.384L246.136,159.581L245.311,158.542L245.283,158.502L245.282,158.492L245.017,158.012L244.799,157.703L244.458,156.836L243.653,156.356L244.386,155.412L244.302,155.13L245.053,154.029L244.968,153.44L244.404,153.27L244.58,153.894L244.106,153.755L244.163,153.247L243.36,152.748L243.035,153.352L243.843,153.724L243.636,154.855L243.08,154.593L242.342,153.946L242.585,152.603L242.435,151.837L242.866,150.017L242.831,148.253L242.575,147.803L242.17,147.198L242.543,146.971L242.546,146.993L242.614,147.023L242.633,147.002L242.333,146.841L241.857,146.337L241.838,146.351L241.874,146.153L241.251,145.346L239.898,145.399L239.777,145.132L239.493,144.451L239.114,144.47L238.667,143.829L237.615,143.395L237.542,142.376L237.007,142.316L236.377,141.858L235.946,141.136L233.721,140.004L233.222,140.038L231.62,140.478L231.738,141.096L231.177,141.143L231.857,141.55L230.731,141.626L228.848,143.111L228.978,142.609L228.254,143.064L227.891,142.841L227.872,142.861L228.304,143.134L226.96,143.529L226.425,143.633L226.396,142.812L225.81,142.091L223.944,140.94L224.672,141.089L225.288,141.543L225.712,141.398L225.707,141.351L225.695,141.247L225.171,141.433L224.89,140.789L224.47,140.958L223.64,140.639L223.451,140.826L222.065,140.179L219.678,139.683L219.665,139.557L220.49,139.27L221.266,139.523L220.7,138.885L219.627,139.183L219.26,138.843L218.487,139.65L217.35,139.732L215.157,140.329L216.572,139.437L216.008,139.194L215.775,139.597L215.178,138.764L215.076,139.016L215.055,139.011L215.187,139.757L214.684,140.398L213.59,140.733L213.741,140.1L214.144,139.955L213.649,139.55L213.699,138.262L212.94,137.887L212.269,137.098L212.397,136.202L214.875,135.965L217.047,135.769L217.602,135.73L219.302,135.567L220.448,135.45L221.329,135.361L224.374,135.007L224.436,135L227.193,134.665L228.217,136.499L231.003,136.313L231.56,136.277L232.695,136.197L233.149,136.165L234.657,136.062L235.421,136.01L236.888,135.911L236.971,135.907L237.158,135.9L238.15,135.831L240.734,135.652L241.334,135.611L242.057,135.555L242.285,135.541L243.465,135.461L243.691,136.584L244.608,136.69L244.656,135.318L244.322,134.754L244.333,133.84L244.966,133.472L246.771,133.952L246.789,133.938L246.92,133.973L247.389,133.901L247.808,133.906L247.913,135.128L246.971,134.992L246.971,134.992L247.345,135.245L247.378,135.328L247.398,135.317L247.522,135.306L247.544,135.313L247.544,135.313L247.544,135.313L247.56,135.282L247.583,135.296L247.589,135.061L247.838,135.319L247.878,135.854L246.975,136.113L247.052,136.623L246.631,136.891L246.832,137.525L246.86,138.543L247.581,139.123L247.681,139.782L247.968,140.552L247.58,140.921L247.937,141.319L247.472,141.463L247.782,142.943L248.043,143.544L248.601,143.998L248.629,144.038L248.601,143.998L248.664,143.296L248.365,143.007L247.84,142.766L247.578,141.465L247.995,141.284L247.698,140.724L248.217,140.244L247.713,139.435L247.738,138.909L247.111,138.53L247.474,137.869L247.054,137.878L247.18,137.184L246.849,136.668L247.104,136.137L248.104,136.228L248.227,136.479L248.271,136.629L248.273,136.64L248.269,136.885L248.271,136.903L248.801,137.877L248.807,137.919L249.405,139.593L249.902,140.34L249.997,140.406L250.024,140.442L250.026,140.452L250.064,140.559L250.088,140.578L250.043,140.563L249.931,140.657L250.23,140.946L250.426,141.25L250.959,142.075L252.104,143.924L253.503,145.985L254.501,146.72L253.774,145.941L253.816,145.935L254.955,147.134L255.386,147.93L254.967,148.258L254.883,147.219L254.607,148.691L254.334,148.601L254.094,147.252L253.731,147.133L253.828,146.406L253.211,146.032L253.127,146.046L253.491,147.106L254.27,148.735L256.221,151.826L256.21,152.025L257.119,153.06L257.336,153.715L258.401,155.529L258.139,155.791L258.163,155.932L258.166,155.953L259.041,156.348L259.041,156.348L259.596,157.304L259.468,157.326L259.447,157.329L259.362,157.344L259.362,157.344L259.319,157.351L259.712,157.473L260.328,159.815L260.382,161.561L260.507,163.873Z" + }, + { + "fill": "rgb(98, 194, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.125; geo: [object Object]; name: Florida", + "shape": "M259.904,169.445L259.833,169.558L259.815,169.586L259.817,169.596L259.733,169.765L259.684,169.871L259.581,169.657L259.751,169.329L259.749,169.322L259.749,169.319L259.739,169.259L260.406,168.169ZM247.61,162.49L248.631,162.561L248.137,162.789ZM253.494,145.531L252.505,144.567L252.538,144.369ZM227.551,143.904L226.951,143.631L227.694,143.503ZM252.317,144.189L252.104,143.924L250.959,142.075L250.426,141.25L250.23,140.946L250.088,140.578L250.084,140.556L250.026,140.452L250.024,140.442L249.997,140.406L250.105,140.553L251,142.065ZM249.987,140.338L249.377,139.415L249.486,139.029ZM248.555,136.837L249.238,138.656L248.807,137.919L248.801,137.877L248.271,136.903L248.269,136.885L248.273,136.64L248.271,136.629L248.227,136.479L248.104,136.228L248.305,135.901ZM260.547,164.373L260.343,165.273L260.016,165.704L259.722,167.409L259.87,168.302L259.433,169.028L259.739,169.259L259.749,169.319L259.751,169.329L259.411,169.032L259.088,169.24L259.581,169.657L259.091,169.261L259.093,169.272L258.685,169.101L258.16,169.71L256.907,169.837L256.685,170.125L255.599,170.453L254.941,169.825L254.968,169.146L255.331,169.045L255.357,169.067L255.54,169.38L255.55,169.444L255.558,169.493L255.612,169.549L255.615,169.57L255.996,169.719L256.563,169.502L256.113,168.914L255.668,169.061L255.379,168.926L255.336,168.933L255.24,168.894L254.436,168.025L254.907,167.488L254.909,167.502L254.957,167.52L254.966,167.577L255.375,167.635L255.373,167.62L255.37,167.603L254.934,167.376L254.745,167.445L254.296,167.696L253.971,166.758L254.165,166.583L254.185,166.566L254.184,166.559L253.749,166.616L253.329,166.194L252.25,165.801L252.249,165.794L252.245,165.769L251.791,165.835L251.678,165.679L251.654,165.664L251.56,165.632L251.561,165.635L251.547,165.692L251.552,165.723L251.307,165.562L250.466,164.971L250.451,164.868L250.425,164.847L250.292,164.694L250.293,164.704L249.78,163.192L249.5,162.355L248.736,162.238L249.029,161.699L248.427,162.074L248.033,161.188L248.06,160.483L247.953,159.757L247.505,159.237L247.354,159.548L246.678,159.104L246.684,159.147L247.398,159.994L246.908,160.384L246.136,159.581L245.311,158.542L245.283,158.502L245.282,158.492L245.017,158.012L244.799,157.703L244.458,156.836L243.653,156.356L244.386,155.412L244.302,155.13L245.053,154.029L244.968,153.44L244.404,153.27L244.58,153.894L244.106,153.755L244.163,153.247L243.36,152.748L243.035,153.352L243.843,153.724L243.636,154.855L243.08,154.593L242.342,153.946L242.585,152.603L242.435,151.837L242.866,150.017L242.831,148.253L242.575,147.803L242.17,147.198L242.543,146.971L242.546,146.993L242.614,147.023L242.633,147.002L242.333,146.841L241.857,146.337L241.838,146.351L241.874,146.153L241.251,145.346L239.898,145.399L239.777,145.132L239.493,144.451L239.114,144.47L238.667,143.829L237.615,143.395L237.542,142.376L237.007,142.316L236.377,141.858L235.946,141.136L233.721,140.004L233.222,140.038L231.62,140.478L231.738,141.096L231.177,141.143L231.857,141.55L230.731,141.626L228.848,143.111L228.978,142.609L228.254,143.064L227.891,142.841L227.872,142.861L228.304,143.134L226.96,143.529L226.425,143.633L226.396,142.812L225.81,142.091L223.944,140.94L224.672,141.089L225.288,141.543L225.712,141.398L225.707,141.351L225.695,141.247L225.171,141.433L224.89,140.789L224.47,140.958L223.64,140.639L223.451,140.826L222.065,140.179L219.678,139.683L219.665,139.557L220.49,139.27L221.266,139.523L220.7,138.885L219.627,139.183L219.26,138.843L218.487,139.65L217.35,139.732L215.157,140.329L216.572,139.437L216.008,139.194L215.775,139.597L215.178,138.764L215.076,139.016L215.055,139.011L215.187,139.757L214.684,140.398L213.59,140.733L213.741,140.1L214.144,139.955L213.649,139.55L213.699,138.262L212.94,137.887L212.269,137.098L212.397,136.202L214.875,135.965L217.047,135.769L217.602,135.73L219.302,135.567L220.448,135.45L221.329,135.361L224.374,135.007L224.436,135L227.193,134.665L228.217,136.499L231.003,136.313L231.56,136.277L232.695,136.197L233.149,136.165L234.657,136.062L235.421,136.01L236.888,135.911L236.971,135.907L237.158,135.9L238.15,135.831L240.734,135.652L241.334,135.611L242.057,135.555L242.285,135.541L243.465,135.461L243.691,136.584L244.608,136.69L244.656,135.318L244.322,134.754L244.333,133.84L244.966,133.472L246.771,133.952L246.789,133.938L246.92,133.973L247.389,133.901L247.808,133.906L247.913,135.128L246.971,134.992L246.971,134.992L247.345,135.245L247.378,135.328L247.398,135.317L247.522,135.306L247.544,135.313L247.544,135.313L247.544,135.313L247.56,135.282L247.583,135.296L247.589,135.061L247.838,135.319L247.878,135.854L246.975,136.113L247.052,136.623L246.631,136.891L246.832,137.525L246.86,138.543L247.581,139.123L247.681,139.782L247.968,140.552L247.58,140.921L247.937,141.319L247.472,141.463L247.782,142.943L248.043,143.544L248.601,143.998L248.629,144.038L248.601,143.998L248.664,143.296L248.365,143.007L247.84,142.766L247.578,141.465L247.995,141.284L247.698,140.724L248.217,140.244L247.713,139.435L247.738,138.909L247.111,138.53L247.474,137.869L247.054,137.878L247.18,137.184L246.849,136.668L247.104,136.137L248.104,136.228L248.227,136.479L248.271,136.629L248.273,136.64L248.269,136.885L248.271,136.903L248.801,137.877L248.807,137.919L249.405,139.593L249.902,140.34L249.997,140.406L250.024,140.442L250.026,140.452L250.064,140.559L250.088,140.578L250.043,140.563L249.931,140.657L250.23,140.946L250.426,141.25L250.959,142.075L252.104,143.924L253.503,145.985L254.501,146.72L253.774,145.941L253.816,145.935L254.955,147.134L255.386,147.93L254.967,148.258L254.883,147.219L254.607,148.691L254.334,148.601L254.094,147.252L253.731,147.133L253.828,146.406L253.211,146.032L253.127,146.046L253.491,147.106L254.27,148.735L256.221,151.826L256.21,152.025L257.119,153.06L257.336,153.715L258.401,155.529L258.139,155.791L258.163,155.932L258.166,155.953L259.041,156.348L259.041,156.348L259.596,157.304L259.468,157.326L259.447,157.329L259.362,157.344L259.362,157.344L259.319,157.351L259.712,157.473L260.328,159.815L260.382,161.561L260.507,163.873Z" + }, + { + "fill": "rgb(105, 197, 190)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.119; geo: [object Object]; name: Florida", + "shape": "M259.904,169.445L259.833,169.558L259.815,169.586L259.817,169.596L259.733,169.765L259.684,169.871L259.581,169.657L259.751,169.329L259.749,169.322L259.749,169.319L259.739,169.259L260.406,168.169ZM247.61,162.49L248.631,162.561L248.137,162.789ZM253.494,145.531L252.505,144.567L252.538,144.369ZM227.551,143.904L226.951,143.631L227.694,143.503ZM252.317,144.189L252.104,143.924L250.959,142.075L250.426,141.25L250.23,140.946L250.088,140.578L250.084,140.556L250.026,140.452L250.024,140.442L249.997,140.406L250.105,140.553L251,142.065ZM249.987,140.338L249.377,139.415L249.486,139.029ZM248.555,136.837L249.238,138.656L248.807,137.919L248.801,137.877L248.271,136.903L248.269,136.885L248.273,136.64L248.271,136.629L248.227,136.479L248.104,136.228L248.305,135.901ZM260.547,164.373L260.343,165.273L260.016,165.704L259.722,167.409L259.87,168.302L259.433,169.028L259.739,169.259L259.749,169.319L259.751,169.329L259.411,169.032L259.088,169.24L259.581,169.657L259.091,169.261L259.093,169.272L258.685,169.101L258.16,169.71L256.907,169.837L256.685,170.125L255.599,170.453L254.941,169.825L254.968,169.146L255.331,169.045L255.357,169.067L255.54,169.38L255.55,169.444L255.558,169.493L255.612,169.549L255.615,169.57L255.996,169.719L256.563,169.502L256.113,168.914L255.668,169.061L255.379,168.926L255.336,168.933L255.24,168.894L254.436,168.025L254.907,167.488L254.909,167.502L254.957,167.52L254.966,167.577L255.375,167.635L255.373,167.62L255.37,167.603L254.934,167.376L254.745,167.445L254.296,167.696L253.971,166.758L254.165,166.583L254.185,166.566L254.184,166.559L253.749,166.616L253.329,166.194L252.25,165.801L252.249,165.794L252.245,165.769L251.791,165.835L251.678,165.679L251.654,165.664L251.56,165.632L251.561,165.635L251.547,165.692L251.552,165.723L251.307,165.562L250.466,164.971L250.451,164.868L250.425,164.847L250.292,164.694L250.293,164.704L249.78,163.192L249.5,162.355L248.736,162.238L249.029,161.699L248.427,162.074L248.033,161.188L248.06,160.483L247.953,159.757L247.505,159.237L247.354,159.548L246.678,159.104L246.684,159.147L247.398,159.994L246.908,160.384L246.136,159.581L245.311,158.542L245.283,158.502L245.282,158.492L245.017,158.012L244.799,157.703L244.458,156.836L243.653,156.356L244.386,155.412L244.302,155.13L245.053,154.029L244.968,153.44L244.404,153.27L244.58,153.894L244.106,153.755L244.163,153.247L243.36,152.748L243.035,153.352L243.843,153.724L243.636,154.855L243.08,154.593L242.342,153.946L242.585,152.603L242.435,151.837L242.866,150.017L242.831,148.253L242.575,147.803L242.17,147.198L242.543,146.971L242.546,146.993L242.614,147.023L242.633,147.002L242.333,146.841L241.857,146.337L241.838,146.351L241.874,146.153L241.251,145.346L239.898,145.399L239.777,145.132L239.493,144.451L239.114,144.47L238.667,143.829L237.615,143.395L237.542,142.376L237.007,142.316L236.377,141.858L235.946,141.136L233.721,140.004L233.222,140.038L231.62,140.478L231.738,141.096L231.177,141.143L231.857,141.55L230.731,141.626L228.848,143.111L228.978,142.609L228.254,143.064L227.891,142.841L227.872,142.861L228.304,143.134L226.96,143.529L226.425,143.633L226.396,142.812L225.81,142.091L223.944,140.94L224.672,141.089L225.288,141.543L225.712,141.398L225.707,141.351L225.695,141.247L225.171,141.433L224.89,140.789L224.47,140.958L223.64,140.639L223.451,140.826L222.065,140.179L219.678,139.683L219.665,139.557L220.49,139.27L221.266,139.523L220.7,138.885L219.627,139.183L219.26,138.843L218.487,139.65L217.35,139.732L215.157,140.329L216.572,139.437L216.008,139.194L215.775,139.597L215.178,138.764L215.076,139.016L215.055,139.011L215.187,139.757L214.684,140.398L213.59,140.733L213.741,140.1L214.144,139.955L213.649,139.55L213.699,138.262L212.94,137.887L212.269,137.098L212.397,136.202L214.875,135.965L217.047,135.769L217.602,135.73L219.302,135.567L220.448,135.45L221.329,135.361L224.374,135.007L224.436,135L227.193,134.665L228.217,136.499L231.003,136.313L231.56,136.277L232.695,136.197L233.149,136.165L234.657,136.062L235.421,136.01L236.888,135.911L236.971,135.907L237.158,135.9L238.15,135.831L240.734,135.652L241.334,135.611L242.057,135.555L242.285,135.541L243.465,135.461L243.691,136.584L244.608,136.69L244.656,135.318L244.322,134.754L244.333,133.84L244.966,133.472L246.771,133.952L246.789,133.938L246.92,133.973L247.389,133.901L247.808,133.906L247.913,135.128L246.971,134.992L246.971,134.992L247.345,135.245L247.378,135.328L247.398,135.317L247.522,135.306L247.544,135.313L247.544,135.313L247.544,135.313L247.56,135.282L247.583,135.296L247.589,135.061L247.838,135.319L247.878,135.854L246.975,136.113L247.052,136.623L246.631,136.891L246.832,137.525L246.86,138.543L247.581,139.123L247.681,139.782L247.968,140.552L247.58,140.921L247.937,141.319L247.472,141.463L247.782,142.943L248.043,143.544L248.601,143.998L248.629,144.038L248.601,143.998L248.664,143.296L248.365,143.007L247.84,142.766L247.578,141.465L247.995,141.284L247.698,140.724L248.217,140.244L247.713,139.435L247.738,138.909L247.111,138.53L247.474,137.869L247.054,137.878L247.18,137.184L246.849,136.668L247.104,136.137L248.104,136.228L248.227,136.479L248.271,136.629L248.273,136.64L248.269,136.885L248.271,136.903L248.801,137.877L248.807,137.919L249.405,139.593L249.902,140.34L249.997,140.406L250.024,140.442L250.026,140.452L250.064,140.559L250.088,140.578L250.043,140.563L249.931,140.657L250.23,140.946L250.426,141.25L250.959,142.075L252.104,143.924L253.503,145.985L254.501,146.72L253.774,145.941L253.816,145.935L254.955,147.134L255.386,147.93L254.967,148.258L254.883,147.219L254.607,148.691L254.334,148.601L254.094,147.252L253.731,147.133L253.828,146.406L253.211,146.032L253.127,146.046L253.491,147.106L254.27,148.735L256.221,151.826L256.21,152.025L257.119,153.06L257.336,153.715L258.401,155.529L258.139,155.791L258.163,155.932L258.166,155.953L259.041,156.348L259.041,156.348L259.596,157.304L259.468,157.326L259.447,157.329L259.362,157.344L259.362,157.344L259.319,157.351L259.712,157.473L260.328,159.815L260.382,161.561L260.507,163.873Z" + }, + { + "fill": "rgb(66, 177, 194)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.151; geo: [object Object]; name: Florida", + "shape": "M259.904,169.445L259.833,169.558L259.815,169.586L259.817,169.596L259.733,169.765L259.684,169.871L259.581,169.657L259.751,169.329L259.749,169.322L259.749,169.319L259.739,169.259L260.406,168.169ZM247.61,162.49L248.631,162.561L248.137,162.789ZM253.494,145.531L252.505,144.567L252.538,144.369ZM227.551,143.904L226.951,143.631L227.694,143.503ZM252.317,144.189L252.104,143.924L250.959,142.075L250.426,141.25L250.23,140.946L250.088,140.578L250.084,140.556L250.026,140.452L250.024,140.442L249.997,140.406L250.105,140.553L251,142.065ZM249.987,140.338L249.377,139.415L249.486,139.029ZM248.555,136.837L249.238,138.656L248.807,137.919L248.801,137.877L248.271,136.903L248.269,136.885L248.273,136.64L248.271,136.629L248.227,136.479L248.104,136.228L248.305,135.901ZM260.547,164.373L260.343,165.273L260.016,165.704L259.722,167.409L259.87,168.302L259.433,169.028L259.739,169.259L259.749,169.319L259.751,169.329L259.411,169.032L259.088,169.24L259.581,169.657L259.091,169.261L259.093,169.272L258.685,169.101L258.16,169.71L256.907,169.837L256.685,170.125L255.599,170.453L254.941,169.825L254.968,169.146L255.331,169.045L255.357,169.067L255.54,169.38L255.55,169.444L255.558,169.493L255.612,169.549L255.615,169.57L255.996,169.719L256.563,169.502L256.113,168.914L255.668,169.061L255.379,168.926L255.336,168.933L255.24,168.894L254.436,168.025L254.907,167.488L254.909,167.502L254.957,167.52L254.966,167.577L255.375,167.635L255.373,167.62L255.37,167.603L254.934,167.376L254.745,167.445L254.296,167.696L253.971,166.758L254.165,166.583L254.185,166.566L254.184,166.559L253.749,166.616L253.329,166.194L252.25,165.801L252.249,165.794L252.245,165.769L251.791,165.835L251.678,165.679L251.654,165.664L251.56,165.632L251.561,165.635L251.547,165.692L251.552,165.723L251.307,165.562L250.466,164.971L250.451,164.868L250.425,164.847L250.292,164.694L250.293,164.704L249.78,163.192L249.5,162.355L248.736,162.238L249.029,161.699L248.427,162.074L248.033,161.188L248.06,160.483L247.953,159.757L247.505,159.237L247.354,159.548L246.678,159.104L246.684,159.147L247.398,159.994L246.908,160.384L246.136,159.581L245.311,158.542L245.283,158.502L245.282,158.492L245.017,158.012L244.799,157.703L244.458,156.836L243.653,156.356L244.386,155.412L244.302,155.13L245.053,154.029L244.968,153.44L244.404,153.27L244.58,153.894L244.106,153.755L244.163,153.247L243.36,152.748L243.035,153.352L243.843,153.724L243.636,154.855L243.08,154.593L242.342,153.946L242.585,152.603L242.435,151.837L242.866,150.017L242.831,148.253L242.575,147.803L242.17,147.198L242.543,146.971L242.546,146.993L242.614,147.023L242.633,147.002L242.333,146.841L241.857,146.337L241.838,146.351L241.874,146.153L241.251,145.346L239.898,145.399L239.777,145.132L239.493,144.451L239.114,144.47L238.667,143.829L237.615,143.395L237.542,142.376L237.007,142.316L236.377,141.858L235.946,141.136L233.721,140.004L233.222,140.038L231.62,140.478L231.738,141.096L231.177,141.143L231.857,141.55L230.731,141.626L228.848,143.111L228.978,142.609L228.254,143.064L227.891,142.841L227.872,142.861L228.304,143.134L226.96,143.529L226.425,143.633L226.396,142.812L225.81,142.091L223.944,140.94L224.672,141.089L225.288,141.543L225.712,141.398L225.707,141.351L225.695,141.247L225.171,141.433L224.89,140.789L224.47,140.958L223.64,140.639L223.451,140.826L222.065,140.179L219.678,139.683L219.665,139.557L220.49,139.27L221.266,139.523L220.7,138.885L219.627,139.183L219.26,138.843L218.487,139.65L217.35,139.732L215.157,140.329L216.572,139.437L216.008,139.194L215.775,139.597L215.178,138.764L215.076,139.016L215.055,139.011L215.187,139.757L214.684,140.398L213.59,140.733L213.741,140.1L214.144,139.955L213.649,139.55L213.699,138.262L212.94,137.887L212.269,137.098L212.397,136.202L214.875,135.965L217.047,135.769L217.602,135.73L219.302,135.567L220.448,135.45L221.329,135.361L224.374,135.007L224.436,135L227.193,134.665L228.217,136.499L231.003,136.313L231.56,136.277L232.695,136.197L233.149,136.165L234.657,136.062L235.421,136.01L236.888,135.911L236.971,135.907L237.158,135.9L238.15,135.831L240.734,135.652L241.334,135.611L242.057,135.555L242.285,135.541L243.465,135.461L243.691,136.584L244.608,136.69L244.656,135.318L244.322,134.754L244.333,133.84L244.966,133.472L246.771,133.952L246.789,133.938L246.92,133.973L247.389,133.901L247.808,133.906L247.913,135.128L246.971,134.992L246.971,134.992L247.345,135.245L247.378,135.328L247.398,135.317L247.522,135.306L247.544,135.313L247.544,135.313L247.544,135.313L247.56,135.282L247.583,135.296L247.589,135.061L247.838,135.319L247.878,135.854L246.975,136.113L247.052,136.623L246.631,136.891L246.832,137.525L246.86,138.543L247.581,139.123L247.681,139.782L247.968,140.552L247.58,140.921L247.937,141.319L247.472,141.463L247.782,142.943L248.043,143.544L248.601,143.998L248.629,144.038L248.601,143.998L248.664,143.296L248.365,143.007L247.84,142.766L247.578,141.465L247.995,141.284L247.698,140.724L248.217,140.244L247.713,139.435L247.738,138.909L247.111,138.53L247.474,137.869L247.054,137.878L247.18,137.184L246.849,136.668L247.104,136.137L248.104,136.228L248.227,136.479L248.271,136.629L248.273,136.64L248.269,136.885L248.271,136.903L248.801,137.877L248.807,137.919L249.405,139.593L249.902,140.34L249.997,140.406L250.024,140.442L250.026,140.452L250.064,140.559L250.088,140.578L250.043,140.563L249.931,140.657L250.23,140.946L250.426,141.25L250.959,142.075L252.104,143.924L253.503,145.985L254.501,146.72L253.774,145.941L253.816,145.935L254.955,147.134L255.386,147.93L254.967,148.258L254.883,147.219L254.607,148.691L254.334,148.601L254.094,147.252L253.731,147.133L253.828,146.406L253.211,146.032L253.127,146.046L253.491,147.106L254.27,148.735L256.221,151.826L256.21,152.025L257.119,153.06L257.336,153.715L258.401,155.529L258.139,155.791L258.163,155.932L258.166,155.953L259.041,156.348L259.041,156.348L259.596,157.304L259.468,157.326L259.447,157.329L259.362,157.344L259.362,157.344L259.319,157.351L259.712,157.473L260.328,159.815L260.382,161.561L260.507,163.873Z" + }, + { + "fill": "rgb(124, 204, 188)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.107; geo: [object Object]; name: Florida", + "shape": "M259.904,169.445L259.833,169.558L259.815,169.586L259.817,169.596L259.733,169.765L259.684,169.871L259.581,169.657L259.751,169.329L259.749,169.322L259.749,169.319L259.739,169.259L260.406,168.169ZM247.61,162.49L248.631,162.561L248.137,162.789ZM253.494,145.531L252.505,144.567L252.538,144.369ZM227.551,143.904L226.951,143.631L227.694,143.503ZM252.317,144.189L252.104,143.924L250.959,142.075L250.426,141.25L250.23,140.946L250.088,140.578L250.084,140.556L250.026,140.452L250.024,140.442L249.997,140.406L250.105,140.553L251,142.065ZM249.987,140.338L249.377,139.415L249.486,139.029ZM248.555,136.837L249.238,138.656L248.807,137.919L248.801,137.877L248.271,136.903L248.269,136.885L248.273,136.64L248.271,136.629L248.227,136.479L248.104,136.228L248.305,135.901ZM260.547,164.373L260.343,165.273L260.016,165.704L259.722,167.409L259.87,168.302L259.433,169.028L259.739,169.259L259.749,169.319L259.751,169.329L259.411,169.032L259.088,169.24L259.581,169.657L259.091,169.261L259.093,169.272L258.685,169.101L258.16,169.71L256.907,169.837L256.685,170.125L255.599,170.453L254.941,169.825L254.968,169.146L255.331,169.045L255.357,169.067L255.54,169.38L255.55,169.444L255.558,169.493L255.612,169.549L255.615,169.57L255.996,169.719L256.563,169.502L256.113,168.914L255.668,169.061L255.379,168.926L255.336,168.933L255.24,168.894L254.436,168.025L254.907,167.488L254.909,167.502L254.957,167.52L254.966,167.577L255.375,167.635L255.373,167.62L255.37,167.603L254.934,167.376L254.745,167.445L254.296,167.696L253.971,166.758L254.165,166.583L254.185,166.566L254.184,166.559L253.749,166.616L253.329,166.194L252.25,165.801L252.249,165.794L252.245,165.769L251.791,165.835L251.678,165.679L251.654,165.664L251.56,165.632L251.561,165.635L251.547,165.692L251.552,165.723L251.307,165.562L250.466,164.971L250.451,164.868L250.425,164.847L250.292,164.694L250.293,164.704L249.78,163.192L249.5,162.355L248.736,162.238L249.029,161.699L248.427,162.074L248.033,161.188L248.06,160.483L247.953,159.757L247.505,159.237L247.354,159.548L246.678,159.104L246.684,159.147L247.398,159.994L246.908,160.384L246.136,159.581L245.311,158.542L245.283,158.502L245.282,158.492L245.017,158.012L244.799,157.703L244.458,156.836L243.653,156.356L244.386,155.412L244.302,155.13L245.053,154.029L244.968,153.44L244.404,153.27L244.58,153.894L244.106,153.755L244.163,153.247L243.36,152.748L243.035,153.352L243.843,153.724L243.636,154.855L243.08,154.593L242.342,153.946L242.585,152.603L242.435,151.837L242.866,150.017L242.831,148.253L242.575,147.803L242.17,147.198L242.543,146.971L242.546,146.993L242.614,147.023L242.633,147.002L242.333,146.841L241.857,146.337L241.838,146.351L241.874,146.153L241.251,145.346L239.898,145.399L239.777,145.132L239.493,144.451L239.114,144.47L238.667,143.829L237.615,143.395L237.542,142.376L237.007,142.316L236.377,141.858L235.946,141.136L233.721,140.004L233.222,140.038L231.62,140.478L231.738,141.096L231.177,141.143L231.857,141.55L230.731,141.626L228.848,143.111L228.978,142.609L228.254,143.064L227.891,142.841L227.872,142.861L228.304,143.134L226.96,143.529L226.425,143.633L226.396,142.812L225.81,142.091L223.944,140.94L224.672,141.089L225.288,141.543L225.712,141.398L225.707,141.351L225.695,141.247L225.171,141.433L224.89,140.789L224.47,140.958L223.64,140.639L223.451,140.826L222.065,140.179L219.678,139.683L219.665,139.557L220.49,139.27L221.266,139.523L220.7,138.885L219.627,139.183L219.26,138.843L218.487,139.65L217.35,139.732L215.157,140.329L216.572,139.437L216.008,139.194L215.775,139.597L215.178,138.764L215.076,139.016L215.055,139.011L215.187,139.757L214.684,140.398L213.59,140.733L213.741,140.1L214.144,139.955L213.649,139.55L213.699,138.262L212.94,137.887L212.269,137.098L212.397,136.202L214.875,135.965L217.047,135.769L217.602,135.73L219.302,135.567L220.448,135.45L221.329,135.361L224.374,135.007L224.436,135L227.193,134.665L228.217,136.499L231.003,136.313L231.56,136.277L232.695,136.197L233.149,136.165L234.657,136.062L235.421,136.01L236.888,135.911L236.971,135.907L237.158,135.9L238.15,135.831L240.734,135.652L241.334,135.611L242.057,135.555L242.285,135.541L243.465,135.461L243.691,136.584L244.608,136.69L244.656,135.318L244.322,134.754L244.333,133.84L244.966,133.472L246.771,133.952L246.789,133.938L246.92,133.973L247.389,133.901L247.808,133.906L247.913,135.128L246.971,134.992L246.971,134.992L247.345,135.245L247.378,135.328L247.398,135.317L247.522,135.306L247.544,135.313L247.544,135.313L247.544,135.313L247.56,135.282L247.583,135.296L247.589,135.061L247.838,135.319L247.878,135.854L246.975,136.113L247.052,136.623L246.631,136.891L246.832,137.525L246.86,138.543L247.581,139.123L247.681,139.782L247.968,140.552L247.58,140.921L247.937,141.319L247.472,141.463L247.782,142.943L248.043,143.544L248.601,143.998L248.629,144.038L248.601,143.998L248.664,143.296L248.365,143.007L247.84,142.766L247.578,141.465L247.995,141.284L247.698,140.724L248.217,140.244L247.713,139.435L247.738,138.909L247.111,138.53L247.474,137.869L247.054,137.878L247.18,137.184L246.849,136.668L247.104,136.137L248.104,136.228L248.227,136.479L248.271,136.629L248.273,136.64L248.269,136.885L248.271,136.903L248.801,137.877L248.807,137.919L249.405,139.593L249.902,140.34L249.997,140.406L250.024,140.442L250.026,140.452L250.064,140.559L250.088,140.578L250.043,140.563L249.931,140.657L250.23,140.946L250.426,141.25L250.959,142.075L252.104,143.924L253.503,145.985L254.501,146.72L253.774,145.941L253.816,145.935L254.955,147.134L255.386,147.93L254.967,148.258L254.883,147.219L254.607,148.691L254.334,148.601L254.094,147.252L253.731,147.133L253.828,146.406L253.211,146.032L253.127,146.046L253.491,147.106L254.27,148.735L256.221,151.826L256.21,152.025L257.119,153.06L257.336,153.715L258.401,155.529L258.139,155.791L258.163,155.932L258.166,155.953L259.041,156.348L259.041,156.348L259.596,157.304L259.468,157.326L259.447,157.329L259.362,157.344L259.362,157.344L259.319,157.351L259.712,157.473L260.328,159.815L260.382,161.561L260.507,163.873Z" + }, + { + "fill": "rgb(42, 153, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.181; geo: [object Object]; name: Florida", + "shape": "M259.904,169.445L259.833,169.558L259.815,169.586L259.817,169.596L259.733,169.765L259.684,169.871L259.581,169.657L259.751,169.329L259.749,169.322L259.749,169.319L259.739,169.259L260.406,168.169ZM247.61,162.49L248.631,162.561L248.137,162.789ZM253.494,145.531L252.505,144.567L252.538,144.369ZM227.551,143.904L226.951,143.631L227.694,143.503ZM252.317,144.189L252.104,143.924L250.959,142.075L250.426,141.25L250.23,140.946L250.088,140.578L250.084,140.556L250.026,140.452L250.024,140.442L249.997,140.406L250.105,140.553L251,142.065ZM249.987,140.338L249.377,139.415L249.486,139.029ZM248.555,136.837L249.238,138.656L248.807,137.919L248.801,137.877L248.271,136.903L248.269,136.885L248.273,136.64L248.271,136.629L248.227,136.479L248.104,136.228L248.305,135.901ZM260.547,164.373L260.343,165.273L260.016,165.704L259.722,167.409L259.87,168.302L259.433,169.028L259.739,169.259L259.749,169.319L259.751,169.329L259.411,169.032L259.088,169.24L259.581,169.657L259.091,169.261L259.093,169.272L258.685,169.101L258.16,169.71L256.907,169.837L256.685,170.125L255.599,170.453L254.941,169.825L254.968,169.146L255.331,169.045L255.357,169.067L255.54,169.38L255.55,169.444L255.558,169.493L255.612,169.549L255.615,169.57L255.996,169.719L256.563,169.502L256.113,168.914L255.668,169.061L255.379,168.926L255.336,168.933L255.24,168.894L254.436,168.025L254.907,167.488L254.909,167.502L254.957,167.52L254.966,167.577L255.375,167.635L255.373,167.62L255.37,167.603L254.934,167.376L254.745,167.445L254.296,167.696L253.971,166.758L254.165,166.583L254.185,166.566L254.184,166.559L253.749,166.616L253.329,166.194L252.25,165.801L252.249,165.794L252.245,165.769L251.791,165.835L251.678,165.679L251.654,165.664L251.56,165.632L251.561,165.635L251.547,165.692L251.552,165.723L251.307,165.562L250.466,164.971L250.451,164.868L250.425,164.847L250.292,164.694L250.293,164.704L249.78,163.192L249.5,162.355L248.736,162.238L249.029,161.699L248.427,162.074L248.033,161.188L248.06,160.483L247.953,159.757L247.505,159.237L247.354,159.548L246.678,159.104L246.684,159.147L247.398,159.994L246.908,160.384L246.136,159.581L245.311,158.542L245.283,158.502L245.282,158.492L245.017,158.012L244.799,157.703L244.458,156.836L243.653,156.356L244.386,155.412L244.302,155.13L245.053,154.029L244.968,153.44L244.404,153.27L244.58,153.894L244.106,153.755L244.163,153.247L243.36,152.748L243.035,153.352L243.843,153.724L243.636,154.855L243.08,154.593L242.342,153.946L242.585,152.603L242.435,151.837L242.866,150.017L242.831,148.253L242.575,147.803L242.17,147.198L242.543,146.971L242.546,146.993L242.614,147.023L242.633,147.002L242.333,146.841L241.857,146.337L241.838,146.351L241.874,146.153L241.251,145.346L239.898,145.399L239.777,145.132L239.493,144.451L239.114,144.47L238.667,143.829L237.615,143.395L237.542,142.376L237.007,142.316L236.377,141.858L235.946,141.136L233.721,140.004L233.222,140.038L231.62,140.478L231.738,141.096L231.177,141.143L231.857,141.55L230.731,141.626L228.848,143.111L228.978,142.609L228.254,143.064L227.891,142.841L227.872,142.861L228.304,143.134L226.96,143.529L226.425,143.633L226.396,142.812L225.81,142.091L223.944,140.94L224.672,141.089L225.288,141.543L225.712,141.398L225.707,141.351L225.695,141.247L225.171,141.433L224.89,140.789L224.47,140.958L223.64,140.639L223.451,140.826L222.065,140.179L219.678,139.683L219.665,139.557L220.49,139.27L221.266,139.523L220.7,138.885L219.627,139.183L219.26,138.843L218.487,139.65L217.35,139.732L215.157,140.329L216.572,139.437L216.008,139.194L215.775,139.597L215.178,138.764L215.076,139.016L215.055,139.011L215.187,139.757L214.684,140.398L213.59,140.733L213.741,140.1L214.144,139.955L213.649,139.55L213.699,138.262L212.94,137.887L212.269,137.098L212.397,136.202L214.875,135.965L217.047,135.769L217.602,135.73L219.302,135.567L220.448,135.45L221.329,135.361L224.374,135.007L224.436,135L227.193,134.665L228.217,136.499L231.003,136.313L231.56,136.277L232.695,136.197L233.149,136.165L234.657,136.062L235.421,136.01L236.888,135.911L236.971,135.907L237.158,135.9L238.15,135.831L240.734,135.652L241.334,135.611L242.057,135.555L242.285,135.541L243.465,135.461L243.691,136.584L244.608,136.69L244.656,135.318L244.322,134.754L244.333,133.84L244.966,133.472L246.771,133.952L246.789,133.938L246.92,133.973L247.389,133.901L247.808,133.906L247.913,135.128L246.971,134.992L246.971,134.992L247.345,135.245L247.378,135.328L247.398,135.317L247.522,135.306L247.544,135.313L247.544,135.313L247.544,135.313L247.56,135.282L247.583,135.296L247.589,135.061L247.838,135.319L247.878,135.854L246.975,136.113L247.052,136.623L246.631,136.891L246.832,137.525L246.86,138.543L247.581,139.123L247.681,139.782L247.968,140.552L247.58,140.921L247.937,141.319L247.472,141.463L247.782,142.943L248.043,143.544L248.601,143.998L248.629,144.038L248.601,143.998L248.664,143.296L248.365,143.007L247.84,142.766L247.578,141.465L247.995,141.284L247.698,140.724L248.217,140.244L247.713,139.435L247.738,138.909L247.111,138.53L247.474,137.869L247.054,137.878L247.18,137.184L246.849,136.668L247.104,136.137L248.104,136.228L248.227,136.479L248.271,136.629L248.273,136.64L248.269,136.885L248.271,136.903L248.801,137.877L248.807,137.919L249.405,139.593L249.902,140.34L249.997,140.406L250.024,140.442L250.026,140.452L250.064,140.559L250.088,140.578L250.043,140.563L249.931,140.657L250.23,140.946L250.426,141.25L250.959,142.075L252.104,143.924L253.503,145.985L254.501,146.72L253.774,145.941L253.816,145.935L254.955,147.134L255.386,147.93L254.967,148.258L254.883,147.219L254.607,148.691L254.334,148.601L254.094,147.252L253.731,147.133L253.828,146.406L253.211,146.032L253.127,146.046L253.491,147.106L254.27,148.735L256.221,151.826L256.21,152.025L257.119,153.06L257.336,153.715L258.401,155.529L258.139,155.791L258.163,155.932L258.166,155.953L259.041,156.348L259.041,156.348L259.596,157.304L259.468,157.326L259.447,157.329L259.362,157.344L259.362,157.344L259.319,157.351L259.712,157.473L260.328,159.815L260.382,161.561L260.507,163.873Z" + }, + { + "fill": "rgb(130, 206, 187)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.103; geo: [object Object]; name: Florida", + "shape": "M259.904,169.445L259.833,169.558L259.815,169.586L259.817,169.596L259.733,169.765L259.684,169.871L259.581,169.657L259.751,169.329L259.749,169.322L259.749,169.319L259.739,169.259L260.406,168.169ZM247.61,162.49L248.631,162.561L248.137,162.789ZM253.494,145.531L252.505,144.567L252.538,144.369ZM227.551,143.904L226.951,143.631L227.694,143.503ZM252.317,144.189L252.104,143.924L250.959,142.075L250.426,141.25L250.23,140.946L250.088,140.578L250.084,140.556L250.026,140.452L250.024,140.442L249.997,140.406L250.105,140.553L251,142.065ZM249.987,140.338L249.377,139.415L249.486,139.029ZM248.555,136.837L249.238,138.656L248.807,137.919L248.801,137.877L248.271,136.903L248.269,136.885L248.273,136.64L248.271,136.629L248.227,136.479L248.104,136.228L248.305,135.901ZM260.547,164.373L260.343,165.273L260.016,165.704L259.722,167.409L259.87,168.302L259.433,169.028L259.739,169.259L259.749,169.319L259.751,169.329L259.411,169.032L259.088,169.24L259.581,169.657L259.091,169.261L259.093,169.272L258.685,169.101L258.16,169.71L256.907,169.837L256.685,170.125L255.599,170.453L254.941,169.825L254.968,169.146L255.331,169.045L255.357,169.067L255.54,169.38L255.55,169.444L255.558,169.493L255.612,169.549L255.615,169.57L255.996,169.719L256.563,169.502L256.113,168.914L255.668,169.061L255.379,168.926L255.336,168.933L255.24,168.894L254.436,168.025L254.907,167.488L254.909,167.502L254.957,167.52L254.966,167.577L255.375,167.635L255.373,167.62L255.37,167.603L254.934,167.376L254.745,167.445L254.296,167.696L253.971,166.758L254.165,166.583L254.185,166.566L254.184,166.559L253.749,166.616L253.329,166.194L252.25,165.801L252.249,165.794L252.245,165.769L251.791,165.835L251.678,165.679L251.654,165.664L251.56,165.632L251.561,165.635L251.547,165.692L251.552,165.723L251.307,165.562L250.466,164.971L250.451,164.868L250.425,164.847L250.292,164.694L250.293,164.704L249.78,163.192L249.5,162.355L248.736,162.238L249.029,161.699L248.427,162.074L248.033,161.188L248.06,160.483L247.953,159.757L247.505,159.237L247.354,159.548L246.678,159.104L246.684,159.147L247.398,159.994L246.908,160.384L246.136,159.581L245.311,158.542L245.283,158.502L245.282,158.492L245.017,158.012L244.799,157.703L244.458,156.836L243.653,156.356L244.386,155.412L244.302,155.13L245.053,154.029L244.968,153.44L244.404,153.27L244.58,153.894L244.106,153.755L244.163,153.247L243.36,152.748L243.035,153.352L243.843,153.724L243.636,154.855L243.08,154.593L242.342,153.946L242.585,152.603L242.435,151.837L242.866,150.017L242.831,148.253L242.575,147.803L242.17,147.198L242.543,146.971L242.546,146.993L242.614,147.023L242.633,147.002L242.333,146.841L241.857,146.337L241.838,146.351L241.874,146.153L241.251,145.346L239.898,145.399L239.777,145.132L239.493,144.451L239.114,144.47L238.667,143.829L237.615,143.395L237.542,142.376L237.007,142.316L236.377,141.858L235.946,141.136L233.721,140.004L233.222,140.038L231.62,140.478L231.738,141.096L231.177,141.143L231.857,141.55L230.731,141.626L228.848,143.111L228.978,142.609L228.254,143.064L227.891,142.841L227.872,142.861L228.304,143.134L226.96,143.529L226.425,143.633L226.396,142.812L225.81,142.091L223.944,140.94L224.672,141.089L225.288,141.543L225.712,141.398L225.707,141.351L225.695,141.247L225.171,141.433L224.89,140.789L224.47,140.958L223.64,140.639L223.451,140.826L222.065,140.179L219.678,139.683L219.665,139.557L220.49,139.27L221.266,139.523L220.7,138.885L219.627,139.183L219.26,138.843L218.487,139.65L217.35,139.732L215.157,140.329L216.572,139.437L216.008,139.194L215.775,139.597L215.178,138.764L215.076,139.016L215.055,139.011L215.187,139.757L214.684,140.398L213.59,140.733L213.741,140.1L214.144,139.955L213.649,139.55L213.699,138.262L212.94,137.887L212.269,137.098L212.397,136.202L214.875,135.965L217.047,135.769L217.602,135.73L219.302,135.567L220.448,135.45L221.329,135.361L224.374,135.007L224.436,135L227.193,134.665L228.217,136.499L231.003,136.313L231.56,136.277L232.695,136.197L233.149,136.165L234.657,136.062L235.421,136.01L236.888,135.911L236.971,135.907L237.158,135.9L238.15,135.831L240.734,135.652L241.334,135.611L242.057,135.555L242.285,135.541L243.465,135.461L243.691,136.584L244.608,136.69L244.656,135.318L244.322,134.754L244.333,133.84L244.966,133.472L246.771,133.952L246.789,133.938L246.92,133.973L247.389,133.901L247.808,133.906L247.913,135.128L246.971,134.992L246.971,134.992L247.345,135.245L247.378,135.328L247.398,135.317L247.522,135.306L247.544,135.313L247.544,135.313L247.544,135.313L247.56,135.282L247.583,135.296L247.589,135.061L247.838,135.319L247.878,135.854L246.975,136.113L247.052,136.623L246.631,136.891L246.832,137.525L246.86,138.543L247.581,139.123L247.681,139.782L247.968,140.552L247.58,140.921L247.937,141.319L247.472,141.463L247.782,142.943L248.043,143.544L248.601,143.998L248.629,144.038L248.601,143.998L248.664,143.296L248.365,143.007L247.84,142.766L247.578,141.465L247.995,141.284L247.698,140.724L248.217,140.244L247.713,139.435L247.738,138.909L247.111,138.53L247.474,137.869L247.054,137.878L247.18,137.184L246.849,136.668L247.104,136.137L248.104,136.228L248.227,136.479L248.271,136.629L248.273,136.64L248.269,136.885L248.271,136.903L248.801,137.877L248.807,137.919L249.405,139.593L249.902,140.34L249.997,140.406L250.024,140.442L250.026,140.452L250.064,140.559L250.088,140.578L250.043,140.563L249.931,140.657L250.23,140.946L250.426,141.25L250.959,142.075L252.104,143.924L253.503,145.985L254.501,146.72L253.774,145.941L253.816,145.935L254.955,147.134L255.386,147.93L254.967,148.258L254.883,147.219L254.607,148.691L254.334,148.601L254.094,147.252L253.731,147.133L253.828,146.406L253.211,146.032L253.127,146.046L253.491,147.106L254.27,148.735L256.221,151.826L256.21,152.025L257.119,153.06L257.336,153.715L258.401,155.529L258.139,155.791L258.163,155.932L258.166,155.953L259.041,156.348L259.041,156.348L259.596,157.304L259.468,157.326L259.447,157.329L259.362,157.344L259.362,157.344L259.319,157.351L259.712,157.473L260.328,159.815L260.382,161.561L260.507,163.873Z" + }, + { + "fill": "rgb(218, 241, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.035; geo: [object Object]; name: Florida", + "shape": "M259.904,169.445L259.833,169.558L259.815,169.586L259.817,169.596L259.733,169.765L259.684,169.871L259.581,169.657L259.751,169.329L259.749,169.322L259.749,169.319L259.739,169.259L260.406,168.169ZM247.61,162.49L248.631,162.561L248.137,162.789ZM253.494,145.531L252.505,144.567L252.538,144.369ZM227.551,143.904L226.951,143.631L227.694,143.503ZM252.317,144.189L252.104,143.924L250.959,142.075L250.426,141.25L250.23,140.946L250.088,140.578L250.084,140.556L250.026,140.452L250.024,140.442L249.997,140.406L250.105,140.553L251,142.065ZM249.987,140.338L249.377,139.415L249.486,139.029ZM248.555,136.837L249.238,138.656L248.807,137.919L248.801,137.877L248.271,136.903L248.269,136.885L248.273,136.64L248.271,136.629L248.227,136.479L248.104,136.228L248.305,135.901ZM260.547,164.373L260.343,165.273L260.016,165.704L259.722,167.409L259.87,168.302L259.433,169.028L259.739,169.259L259.749,169.319L259.751,169.329L259.411,169.032L259.088,169.24L259.581,169.657L259.091,169.261L259.093,169.272L258.685,169.101L258.16,169.71L256.907,169.837L256.685,170.125L255.599,170.453L254.941,169.825L254.968,169.146L255.331,169.045L255.357,169.067L255.54,169.38L255.55,169.444L255.558,169.493L255.612,169.549L255.615,169.57L255.996,169.719L256.563,169.502L256.113,168.914L255.668,169.061L255.379,168.926L255.336,168.933L255.24,168.894L254.436,168.025L254.907,167.488L254.909,167.502L254.957,167.52L254.966,167.577L255.375,167.635L255.373,167.62L255.37,167.603L254.934,167.376L254.745,167.445L254.296,167.696L253.971,166.758L254.165,166.583L254.185,166.566L254.184,166.559L253.749,166.616L253.329,166.194L252.25,165.801L252.249,165.794L252.245,165.769L251.791,165.835L251.678,165.679L251.654,165.664L251.56,165.632L251.561,165.635L251.547,165.692L251.552,165.723L251.307,165.562L250.466,164.971L250.451,164.868L250.425,164.847L250.292,164.694L250.293,164.704L249.78,163.192L249.5,162.355L248.736,162.238L249.029,161.699L248.427,162.074L248.033,161.188L248.06,160.483L247.953,159.757L247.505,159.237L247.354,159.548L246.678,159.104L246.684,159.147L247.398,159.994L246.908,160.384L246.136,159.581L245.311,158.542L245.283,158.502L245.282,158.492L245.017,158.012L244.799,157.703L244.458,156.836L243.653,156.356L244.386,155.412L244.302,155.13L245.053,154.029L244.968,153.44L244.404,153.27L244.58,153.894L244.106,153.755L244.163,153.247L243.36,152.748L243.035,153.352L243.843,153.724L243.636,154.855L243.08,154.593L242.342,153.946L242.585,152.603L242.435,151.837L242.866,150.017L242.831,148.253L242.575,147.803L242.17,147.198L242.543,146.971L242.546,146.993L242.614,147.023L242.633,147.002L242.333,146.841L241.857,146.337L241.838,146.351L241.874,146.153L241.251,145.346L239.898,145.399L239.777,145.132L239.493,144.451L239.114,144.47L238.667,143.829L237.615,143.395L237.542,142.376L237.007,142.316L236.377,141.858L235.946,141.136L233.721,140.004L233.222,140.038L231.62,140.478L231.738,141.096L231.177,141.143L231.857,141.55L230.731,141.626L228.848,143.111L228.978,142.609L228.254,143.064L227.891,142.841L227.872,142.861L228.304,143.134L226.96,143.529L226.425,143.633L226.396,142.812L225.81,142.091L223.944,140.94L224.672,141.089L225.288,141.543L225.712,141.398L225.707,141.351L225.695,141.247L225.171,141.433L224.89,140.789L224.47,140.958L223.64,140.639L223.451,140.826L222.065,140.179L219.678,139.683L219.665,139.557L220.49,139.27L221.266,139.523L220.7,138.885L219.627,139.183L219.26,138.843L218.487,139.65L217.35,139.732L215.157,140.329L216.572,139.437L216.008,139.194L215.775,139.597L215.178,138.764L215.076,139.016L215.055,139.011L215.187,139.757L214.684,140.398L213.59,140.733L213.741,140.1L214.144,139.955L213.649,139.55L213.699,138.262L212.94,137.887L212.269,137.098L212.397,136.202L214.875,135.965L217.047,135.769L217.602,135.73L219.302,135.567L220.448,135.45L221.329,135.361L224.374,135.007L224.436,135L227.193,134.665L228.217,136.499L231.003,136.313L231.56,136.277L232.695,136.197L233.149,136.165L234.657,136.062L235.421,136.01L236.888,135.911L236.971,135.907L237.158,135.9L238.15,135.831L240.734,135.652L241.334,135.611L242.057,135.555L242.285,135.541L243.465,135.461L243.691,136.584L244.608,136.69L244.656,135.318L244.322,134.754L244.333,133.84L244.966,133.472L246.771,133.952L246.789,133.938L246.92,133.973L247.389,133.901L247.808,133.906L247.913,135.128L246.971,134.992L246.971,134.992L247.345,135.245L247.378,135.328L247.398,135.317L247.522,135.306L247.544,135.313L247.544,135.313L247.544,135.313L247.56,135.282L247.583,135.296L247.589,135.061L247.838,135.319L247.878,135.854L246.975,136.113L247.052,136.623L246.631,136.891L246.832,137.525L246.86,138.543L247.581,139.123L247.681,139.782L247.968,140.552L247.58,140.921L247.937,141.319L247.472,141.463L247.782,142.943L248.043,143.544L248.601,143.998L248.629,144.038L248.601,143.998L248.664,143.296L248.365,143.007L247.84,142.766L247.578,141.465L247.995,141.284L247.698,140.724L248.217,140.244L247.713,139.435L247.738,138.909L247.111,138.53L247.474,137.869L247.054,137.878L247.18,137.184L246.849,136.668L247.104,136.137L248.104,136.228L248.227,136.479L248.271,136.629L248.273,136.64L248.269,136.885L248.271,136.903L248.801,137.877L248.807,137.919L249.405,139.593L249.902,140.34L249.997,140.406L250.024,140.442L250.026,140.452L250.064,140.559L250.088,140.578L250.043,140.563L249.931,140.657L250.23,140.946L250.426,141.25L250.959,142.075L252.104,143.924L253.503,145.985L254.501,146.72L253.774,145.941L253.816,145.935L254.955,147.134L255.386,147.93L254.967,148.258L254.883,147.219L254.607,148.691L254.334,148.601L254.094,147.252L253.731,147.133L253.828,146.406L253.211,146.032L253.127,146.046L253.491,147.106L254.27,148.735L256.221,151.826L256.21,152.025L257.119,153.06L257.336,153.715L258.401,155.529L258.139,155.791L258.163,155.932L258.166,155.953L259.041,156.348L259.041,156.348L259.596,157.304L259.468,157.326L259.447,157.329L259.362,157.344L259.362,157.344L259.319,157.351L259.712,157.473L260.328,159.815L260.382,161.561L260.507,163.873Z" + }, + { + "fill": "rgb(216, 240, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.037; geo: [object Object]; name: Florida", + "shape": "M259.904,169.445L259.833,169.558L259.815,169.586L259.817,169.596L259.733,169.765L259.684,169.871L259.581,169.657L259.751,169.329L259.749,169.322L259.749,169.319L259.739,169.259L260.406,168.169ZM247.61,162.49L248.631,162.561L248.137,162.789ZM253.494,145.531L252.505,144.567L252.538,144.369ZM227.551,143.904L226.951,143.631L227.694,143.503ZM252.317,144.189L252.104,143.924L250.959,142.075L250.426,141.25L250.23,140.946L250.088,140.578L250.084,140.556L250.026,140.452L250.024,140.442L249.997,140.406L250.105,140.553L251,142.065ZM249.987,140.338L249.377,139.415L249.486,139.029ZM248.555,136.837L249.238,138.656L248.807,137.919L248.801,137.877L248.271,136.903L248.269,136.885L248.273,136.64L248.271,136.629L248.227,136.479L248.104,136.228L248.305,135.901ZM260.547,164.373L260.343,165.273L260.016,165.704L259.722,167.409L259.87,168.302L259.433,169.028L259.739,169.259L259.749,169.319L259.751,169.329L259.411,169.032L259.088,169.24L259.581,169.657L259.091,169.261L259.093,169.272L258.685,169.101L258.16,169.71L256.907,169.837L256.685,170.125L255.599,170.453L254.941,169.825L254.968,169.146L255.331,169.045L255.357,169.067L255.54,169.38L255.55,169.444L255.558,169.493L255.612,169.549L255.615,169.57L255.996,169.719L256.563,169.502L256.113,168.914L255.668,169.061L255.379,168.926L255.336,168.933L255.24,168.894L254.436,168.025L254.907,167.488L254.909,167.502L254.957,167.52L254.966,167.577L255.375,167.635L255.373,167.62L255.37,167.603L254.934,167.376L254.745,167.445L254.296,167.696L253.971,166.758L254.165,166.583L254.185,166.566L254.184,166.559L253.749,166.616L253.329,166.194L252.25,165.801L252.249,165.794L252.245,165.769L251.791,165.835L251.678,165.679L251.654,165.664L251.56,165.632L251.561,165.635L251.547,165.692L251.552,165.723L251.307,165.562L250.466,164.971L250.451,164.868L250.425,164.847L250.292,164.694L250.293,164.704L249.78,163.192L249.5,162.355L248.736,162.238L249.029,161.699L248.427,162.074L248.033,161.188L248.06,160.483L247.953,159.757L247.505,159.237L247.354,159.548L246.678,159.104L246.684,159.147L247.398,159.994L246.908,160.384L246.136,159.581L245.311,158.542L245.283,158.502L245.282,158.492L245.017,158.012L244.799,157.703L244.458,156.836L243.653,156.356L244.386,155.412L244.302,155.13L245.053,154.029L244.968,153.44L244.404,153.27L244.58,153.894L244.106,153.755L244.163,153.247L243.36,152.748L243.035,153.352L243.843,153.724L243.636,154.855L243.08,154.593L242.342,153.946L242.585,152.603L242.435,151.837L242.866,150.017L242.831,148.253L242.575,147.803L242.17,147.198L242.543,146.971L242.546,146.993L242.614,147.023L242.633,147.002L242.333,146.841L241.857,146.337L241.838,146.351L241.874,146.153L241.251,145.346L239.898,145.399L239.777,145.132L239.493,144.451L239.114,144.47L238.667,143.829L237.615,143.395L237.542,142.376L237.007,142.316L236.377,141.858L235.946,141.136L233.721,140.004L233.222,140.038L231.62,140.478L231.738,141.096L231.177,141.143L231.857,141.55L230.731,141.626L228.848,143.111L228.978,142.609L228.254,143.064L227.891,142.841L227.872,142.861L228.304,143.134L226.96,143.529L226.425,143.633L226.396,142.812L225.81,142.091L223.944,140.94L224.672,141.089L225.288,141.543L225.712,141.398L225.707,141.351L225.695,141.247L225.171,141.433L224.89,140.789L224.47,140.958L223.64,140.639L223.451,140.826L222.065,140.179L219.678,139.683L219.665,139.557L220.49,139.27L221.266,139.523L220.7,138.885L219.627,139.183L219.26,138.843L218.487,139.65L217.35,139.732L215.157,140.329L216.572,139.437L216.008,139.194L215.775,139.597L215.178,138.764L215.076,139.016L215.055,139.011L215.187,139.757L214.684,140.398L213.59,140.733L213.741,140.1L214.144,139.955L213.649,139.55L213.699,138.262L212.94,137.887L212.269,137.098L212.397,136.202L214.875,135.965L217.047,135.769L217.602,135.73L219.302,135.567L220.448,135.45L221.329,135.361L224.374,135.007L224.436,135L227.193,134.665L228.217,136.499L231.003,136.313L231.56,136.277L232.695,136.197L233.149,136.165L234.657,136.062L235.421,136.01L236.888,135.911L236.971,135.907L237.158,135.9L238.15,135.831L240.734,135.652L241.334,135.611L242.057,135.555L242.285,135.541L243.465,135.461L243.691,136.584L244.608,136.69L244.656,135.318L244.322,134.754L244.333,133.84L244.966,133.472L246.771,133.952L246.789,133.938L246.92,133.973L247.389,133.901L247.808,133.906L247.913,135.128L246.971,134.992L246.971,134.992L247.345,135.245L247.378,135.328L247.398,135.317L247.522,135.306L247.544,135.313L247.544,135.313L247.544,135.313L247.56,135.282L247.583,135.296L247.589,135.061L247.838,135.319L247.878,135.854L246.975,136.113L247.052,136.623L246.631,136.891L246.832,137.525L246.86,138.543L247.581,139.123L247.681,139.782L247.968,140.552L247.58,140.921L247.937,141.319L247.472,141.463L247.782,142.943L248.043,143.544L248.601,143.998L248.629,144.038L248.601,143.998L248.664,143.296L248.365,143.007L247.84,142.766L247.578,141.465L247.995,141.284L247.698,140.724L248.217,140.244L247.713,139.435L247.738,138.909L247.111,138.53L247.474,137.869L247.054,137.878L247.18,137.184L246.849,136.668L247.104,136.137L248.104,136.228L248.227,136.479L248.271,136.629L248.273,136.64L248.269,136.885L248.271,136.903L248.801,137.877L248.807,137.919L249.405,139.593L249.902,140.34L249.997,140.406L250.024,140.442L250.026,140.452L250.064,140.559L250.088,140.578L250.043,140.563L249.931,140.657L250.23,140.946L250.426,141.25L250.959,142.075L252.104,143.924L253.503,145.985L254.501,146.72L253.774,145.941L253.816,145.935L254.955,147.134L255.386,147.93L254.967,148.258L254.883,147.219L254.607,148.691L254.334,148.601L254.094,147.252L253.731,147.133L253.828,146.406L253.211,146.032L253.127,146.046L253.491,147.106L254.27,148.735L256.221,151.826L256.21,152.025L257.119,153.06L257.336,153.715L258.401,155.529L258.139,155.791L258.163,155.932L258.166,155.953L259.041,156.348L259.041,156.348L259.596,157.304L259.468,157.326L259.447,157.329L259.362,157.344L259.362,157.344L259.319,157.351L259.712,157.473L260.328,159.815L260.382,161.561L260.507,163.873Z" + }, + { + "fill": "rgb(146, 212, 185)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.092; geo: [object Object]; name: Georgia", + "shape": "M247.424,133.311L247.152,132.76L247.646,132.048L247.739,132.513ZM247.732,129.792L247.772,129.778L248.168,130.057L247.547,131.006L247.273,130.58L247.442,129.789ZM247.961,129.265L247.576,128.656L248.38,128.233ZM248.186,127.396L248.184,127.385L248.447,127.087L248.363,127.994ZM248.392,126.865L248.237,126.017L248.851,126.118ZM248.898,124.468L248.941,124.483L248.942,124.487L249.04,124.585L248.909,125.185L248.584,124.694ZM247.894,126.852L248.09,127.176L247.252,127.498L248.171,127.698L247.795,128.069L247.593,128.759L247.878,129.663L246.901,129.646L246.889,129.703L246.892,129.72L246.901,129.646L247.075,129.7L247.062,129.746L247.121,129.725L247.433,129.999L247.23,130.836L247.394,131.363L247.428,131.449L246.707,131.494L247.211,131.793L247.475,132.286L247.124,132.713L247.372,133.787L246.789,133.938L246.771,133.952L244.966,133.472L244.333,133.84L244.322,134.754L244.656,135.318L244.608,136.69L243.691,136.584L243.465,135.461L242.285,135.541L242.057,135.555L241.334,135.611L240.734,135.652L238.15,135.831L237.158,135.9L236.971,135.907L236.888,135.911L235.421,136.01L234.657,136.062L233.149,136.165L232.695,136.197L231.56,136.277L231.003,136.313L228.217,136.499L227.193,134.665L226.992,134.179L226.516,133.644L226.485,132.657L226.548,131.237L226.405,130.536L225.912,129.646L225.817,129.533L225.772,128.777L226.059,128.077L226.064,127.588L225.99,127.119L226.68,126.382L226.854,126.132L226.141,125.781L226.303,125.427L226.039,124.557L225.522,123.953L225.095,123.06L224.74,122.262L224.279,120.698L224.243,120.556L223.697,118.588L223.596,118.227L223.29,117.107L222.825,115.465L222.719,115.053L222.513,114.283L222.124,112.931L221.672,111.358L221.546,110.937L221.481,110.707L221.052,109.142L220.823,108.319L221.544,108.25L222.127,108.182L222.67,108.109L224.223,107.916L225.116,107.811L225.31,107.785L226.164,107.679L227.776,107.483L228.805,107.362L229.484,107.276L229.853,107.229L231.943,106.921L232.312,106.873L234.32,106.548L234.358,106.972L233.714,107.463L233.258,108.638L233.362,108.819L233.345,108.839L234.764,109.656L235.097,109.907L235.438,109.937L236.144,110.008L236.789,111.066L237.041,111.581L238.028,112.769L238.239,113.128L238.26,113.136L239.841,113.954L240.321,114.628L241.066,115.179L241.59,115.458L241.682,115.532L242.222,115.911L242.283,116.727L242.854,117.302L243.437,117.548L243.439,117.826L244.314,118.119L244.781,118.385L245.653,119.693L245.845,120.276L246.079,121.263L246.717,121.424L246.717,121.427L247.336,121.983L247.805,122.757L247.821,123.506L248.096,124.207L248.765,124.412L248.584,124.694L249.001,125.761L248.065,125.444L247.69,125.814L248.233,125.989L248.263,126.838L247.272,126.436Z" + }, + { + "fill": "rgb(193, 231, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.059; geo: [object Object]; name: Georgia", + "shape": "M247.424,133.311L247.152,132.76L247.646,132.048L247.739,132.513ZM247.732,129.792L247.772,129.778L248.168,130.057L247.547,131.006L247.273,130.58L247.442,129.789ZM247.961,129.265L247.576,128.656L248.38,128.233ZM248.186,127.396L248.184,127.385L248.447,127.087L248.363,127.994ZM248.392,126.865L248.237,126.017L248.851,126.118ZM248.898,124.468L248.941,124.483L248.942,124.487L249.04,124.585L248.909,125.185L248.584,124.694ZM247.894,126.852L248.09,127.176L247.252,127.498L248.171,127.698L247.795,128.069L247.593,128.759L247.878,129.663L246.901,129.646L246.889,129.703L246.892,129.72L246.901,129.646L247.075,129.7L247.062,129.746L247.121,129.725L247.433,129.999L247.23,130.836L247.394,131.363L247.428,131.449L246.707,131.494L247.211,131.793L247.475,132.286L247.124,132.713L247.372,133.787L246.789,133.938L246.771,133.952L244.966,133.472L244.333,133.84L244.322,134.754L244.656,135.318L244.608,136.69L243.691,136.584L243.465,135.461L242.285,135.541L242.057,135.555L241.334,135.611L240.734,135.652L238.15,135.831L237.158,135.9L236.971,135.907L236.888,135.911L235.421,136.01L234.657,136.062L233.149,136.165L232.695,136.197L231.56,136.277L231.003,136.313L228.217,136.499L227.193,134.665L226.992,134.179L226.516,133.644L226.485,132.657L226.548,131.237L226.405,130.536L225.912,129.646L225.817,129.533L225.772,128.777L226.059,128.077L226.064,127.588L225.99,127.119L226.68,126.382L226.854,126.132L226.141,125.781L226.303,125.427L226.039,124.557L225.522,123.953L225.095,123.06L224.74,122.262L224.279,120.698L224.243,120.556L223.697,118.588L223.596,118.227L223.29,117.107L222.825,115.465L222.719,115.053L222.513,114.283L222.124,112.931L221.672,111.358L221.546,110.937L221.481,110.707L221.052,109.142L220.823,108.319L221.544,108.25L222.127,108.182L222.67,108.109L224.223,107.916L225.116,107.811L225.31,107.785L226.164,107.679L227.776,107.483L228.805,107.362L229.484,107.276L229.853,107.229L231.943,106.921L232.312,106.873L234.32,106.548L234.358,106.972L233.714,107.463L233.258,108.638L233.362,108.819L233.345,108.839L234.764,109.656L235.097,109.907L235.438,109.937L236.144,110.008L236.789,111.066L237.041,111.581L238.028,112.769L238.239,113.128L238.26,113.136L239.841,113.954L240.321,114.628L241.066,115.179L241.59,115.458L241.682,115.532L242.222,115.911L242.283,116.727L242.854,117.302L243.437,117.548L243.439,117.826L244.314,118.119L244.781,118.385L245.653,119.693L245.845,120.276L246.079,121.263L246.717,121.424L246.717,121.427L247.336,121.983L247.805,122.757L247.821,123.506L248.096,124.207L248.765,124.412L248.584,124.694L249.001,125.761L248.065,125.444L247.69,125.814L248.233,125.989L248.263,126.838L247.272,126.436Z" + }, + { + "fill": "rgb(110, 199, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.116; geo: [object Object]; name: Georgia", + "shape": "M247.424,133.311L247.152,132.76L247.646,132.048L247.739,132.513ZM247.732,129.792L247.772,129.778L248.168,130.057L247.547,131.006L247.273,130.58L247.442,129.789ZM247.961,129.265L247.576,128.656L248.38,128.233ZM248.186,127.396L248.184,127.385L248.447,127.087L248.363,127.994ZM248.392,126.865L248.237,126.017L248.851,126.118ZM248.898,124.468L248.941,124.483L248.942,124.487L249.04,124.585L248.909,125.185L248.584,124.694ZM247.894,126.852L248.09,127.176L247.252,127.498L248.171,127.698L247.795,128.069L247.593,128.759L247.878,129.663L246.901,129.646L246.889,129.703L246.892,129.72L246.901,129.646L247.075,129.7L247.062,129.746L247.121,129.725L247.433,129.999L247.23,130.836L247.394,131.363L247.428,131.449L246.707,131.494L247.211,131.793L247.475,132.286L247.124,132.713L247.372,133.787L246.789,133.938L246.771,133.952L244.966,133.472L244.333,133.84L244.322,134.754L244.656,135.318L244.608,136.69L243.691,136.584L243.465,135.461L242.285,135.541L242.057,135.555L241.334,135.611L240.734,135.652L238.15,135.831L237.158,135.9L236.971,135.907L236.888,135.911L235.421,136.01L234.657,136.062L233.149,136.165L232.695,136.197L231.56,136.277L231.003,136.313L228.217,136.499L227.193,134.665L226.992,134.179L226.516,133.644L226.485,132.657L226.548,131.237L226.405,130.536L225.912,129.646L225.817,129.533L225.772,128.777L226.059,128.077L226.064,127.588L225.99,127.119L226.68,126.382L226.854,126.132L226.141,125.781L226.303,125.427L226.039,124.557L225.522,123.953L225.095,123.06L224.74,122.262L224.279,120.698L224.243,120.556L223.697,118.588L223.596,118.227L223.29,117.107L222.825,115.465L222.719,115.053L222.513,114.283L222.124,112.931L221.672,111.358L221.546,110.937L221.481,110.707L221.052,109.142L220.823,108.319L221.544,108.25L222.127,108.182L222.67,108.109L224.223,107.916L225.116,107.811L225.31,107.785L226.164,107.679L227.776,107.483L228.805,107.362L229.484,107.276L229.853,107.229L231.943,106.921L232.312,106.873L234.32,106.548L234.358,106.972L233.714,107.463L233.258,108.638L233.362,108.819L233.345,108.839L234.764,109.656L235.097,109.907L235.438,109.937L236.144,110.008L236.789,111.066L237.041,111.581L238.028,112.769L238.239,113.128L238.26,113.136L239.841,113.954L240.321,114.628L241.066,115.179L241.59,115.458L241.682,115.532L242.222,115.911L242.283,116.727L242.854,117.302L243.437,117.548L243.439,117.826L244.314,118.119L244.781,118.385L245.653,119.693L245.845,120.276L246.079,121.263L246.717,121.424L246.717,121.427L247.336,121.983L247.805,122.757L247.821,123.506L248.096,124.207L248.765,124.412L248.584,124.694L249.001,125.761L248.065,125.444L247.69,125.814L248.233,125.989L248.263,126.838L247.272,126.436Z" + }, + { + "fill": "rgb(120, 203, 188)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.109; geo: [object Object]; name: Georgia", + "shape": "M247.424,133.311L247.152,132.76L247.646,132.048L247.739,132.513ZM247.732,129.792L247.772,129.778L248.168,130.057L247.547,131.006L247.273,130.58L247.442,129.789ZM247.961,129.265L247.576,128.656L248.38,128.233ZM248.186,127.396L248.184,127.385L248.447,127.087L248.363,127.994ZM248.392,126.865L248.237,126.017L248.851,126.118ZM248.898,124.468L248.941,124.483L248.942,124.487L249.04,124.585L248.909,125.185L248.584,124.694ZM247.894,126.852L248.09,127.176L247.252,127.498L248.171,127.698L247.795,128.069L247.593,128.759L247.878,129.663L246.901,129.646L246.889,129.703L246.892,129.72L246.901,129.646L247.075,129.7L247.062,129.746L247.121,129.725L247.433,129.999L247.23,130.836L247.394,131.363L247.428,131.449L246.707,131.494L247.211,131.793L247.475,132.286L247.124,132.713L247.372,133.787L246.789,133.938L246.771,133.952L244.966,133.472L244.333,133.84L244.322,134.754L244.656,135.318L244.608,136.69L243.691,136.584L243.465,135.461L242.285,135.541L242.057,135.555L241.334,135.611L240.734,135.652L238.15,135.831L237.158,135.9L236.971,135.907L236.888,135.911L235.421,136.01L234.657,136.062L233.149,136.165L232.695,136.197L231.56,136.277L231.003,136.313L228.217,136.499L227.193,134.665L226.992,134.179L226.516,133.644L226.485,132.657L226.548,131.237L226.405,130.536L225.912,129.646L225.817,129.533L225.772,128.777L226.059,128.077L226.064,127.588L225.99,127.119L226.68,126.382L226.854,126.132L226.141,125.781L226.303,125.427L226.039,124.557L225.522,123.953L225.095,123.06L224.74,122.262L224.279,120.698L224.243,120.556L223.697,118.588L223.596,118.227L223.29,117.107L222.825,115.465L222.719,115.053L222.513,114.283L222.124,112.931L221.672,111.358L221.546,110.937L221.481,110.707L221.052,109.142L220.823,108.319L221.544,108.25L222.127,108.182L222.67,108.109L224.223,107.916L225.116,107.811L225.31,107.785L226.164,107.679L227.776,107.483L228.805,107.362L229.484,107.276L229.853,107.229L231.943,106.921L232.312,106.873L234.32,106.548L234.358,106.972L233.714,107.463L233.258,108.638L233.362,108.819L233.345,108.839L234.764,109.656L235.097,109.907L235.438,109.937L236.144,110.008L236.789,111.066L237.041,111.581L238.028,112.769L238.239,113.128L238.26,113.136L239.841,113.954L240.321,114.628L241.066,115.179L241.59,115.458L241.682,115.532L242.222,115.911L242.283,116.727L242.854,117.302L243.437,117.548L243.439,117.826L244.314,118.119L244.781,118.385L245.653,119.693L245.845,120.276L246.079,121.263L246.717,121.424L246.717,121.427L247.336,121.983L247.805,122.757L247.821,123.506L248.096,124.207L248.765,124.412L248.584,124.694L249.001,125.761L248.065,125.444L247.69,125.814L248.233,125.989L248.263,126.838L247.272,126.436Z" + }, + { + "fill": "rgb(77, 184, 193)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.141; geo: [object Object]; name: Georgia", + "shape": "M247.424,133.311L247.152,132.76L247.646,132.048L247.739,132.513ZM247.732,129.792L247.772,129.778L248.168,130.057L247.547,131.006L247.273,130.58L247.442,129.789ZM247.961,129.265L247.576,128.656L248.38,128.233ZM248.186,127.396L248.184,127.385L248.447,127.087L248.363,127.994ZM248.392,126.865L248.237,126.017L248.851,126.118ZM248.898,124.468L248.941,124.483L248.942,124.487L249.04,124.585L248.909,125.185L248.584,124.694ZM247.894,126.852L248.09,127.176L247.252,127.498L248.171,127.698L247.795,128.069L247.593,128.759L247.878,129.663L246.901,129.646L246.889,129.703L246.892,129.72L246.901,129.646L247.075,129.7L247.062,129.746L247.121,129.725L247.433,129.999L247.23,130.836L247.394,131.363L247.428,131.449L246.707,131.494L247.211,131.793L247.475,132.286L247.124,132.713L247.372,133.787L246.789,133.938L246.771,133.952L244.966,133.472L244.333,133.84L244.322,134.754L244.656,135.318L244.608,136.69L243.691,136.584L243.465,135.461L242.285,135.541L242.057,135.555L241.334,135.611L240.734,135.652L238.15,135.831L237.158,135.9L236.971,135.907L236.888,135.911L235.421,136.01L234.657,136.062L233.149,136.165L232.695,136.197L231.56,136.277L231.003,136.313L228.217,136.499L227.193,134.665L226.992,134.179L226.516,133.644L226.485,132.657L226.548,131.237L226.405,130.536L225.912,129.646L225.817,129.533L225.772,128.777L226.059,128.077L226.064,127.588L225.99,127.119L226.68,126.382L226.854,126.132L226.141,125.781L226.303,125.427L226.039,124.557L225.522,123.953L225.095,123.06L224.74,122.262L224.279,120.698L224.243,120.556L223.697,118.588L223.596,118.227L223.29,117.107L222.825,115.465L222.719,115.053L222.513,114.283L222.124,112.931L221.672,111.358L221.546,110.937L221.481,110.707L221.052,109.142L220.823,108.319L221.544,108.25L222.127,108.182L222.67,108.109L224.223,107.916L225.116,107.811L225.31,107.785L226.164,107.679L227.776,107.483L228.805,107.362L229.484,107.276L229.853,107.229L231.943,106.921L232.312,106.873L234.32,106.548L234.358,106.972L233.714,107.463L233.258,108.638L233.362,108.819L233.345,108.839L234.764,109.656L235.097,109.907L235.438,109.937L236.144,110.008L236.789,111.066L237.041,111.581L238.028,112.769L238.239,113.128L238.26,113.136L239.841,113.954L240.321,114.628L241.066,115.179L241.59,115.458L241.682,115.532L242.222,115.911L242.283,116.727L242.854,117.302L243.437,117.548L243.439,117.826L244.314,118.119L244.781,118.385L245.653,119.693L245.845,120.276L246.079,121.263L246.717,121.424L246.717,121.427L247.336,121.983L247.805,122.757L247.821,123.506L248.096,124.207L248.765,124.412L248.584,124.694L249.001,125.761L248.065,125.444L247.69,125.814L248.233,125.989L248.263,126.838L247.272,126.436Z" + }, + { + "fill": "rgb(117, 202, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.111; geo: [object Object]; name: Georgia", + "shape": "M247.424,133.311L247.152,132.76L247.646,132.048L247.739,132.513ZM247.732,129.792L247.772,129.778L248.168,130.057L247.547,131.006L247.273,130.58L247.442,129.789ZM247.961,129.265L247.576,128.656L248.38,128.233ZM248.186,127.396L248.184,127.385L248.447,127.087L248.363,127.994ZM248.392,126.865L248.237,126.017L248.851,126.118ZM248.898,124.468L248.941,124.483L248.942,124.487L249.04,124.585L248.909,125.185L248.584,124.694ZM247.894,126.852L248.09,127.176L247.252,127.498L248.171,127.698L247.795,128.069L247.593,128.759L247.878,129.663L246.901,129.646L246.889,129.703L246.892,129.72L246.901,129.646L247.075,129.7L247.062,129.746L247.121,129.725L247.433,129.999L247.23,130.836L247.394,131.363L247.428,131.449L246.707,131.494L247.211,131.793L247.475,132.286L247.124,132.713L247.372,133.787L246.789,133.938L246.771,133.952L244.966,133.472L244.333,133.84L244.322,134.754L244.656,135.318L244.608,136.69L243.691,136.584L243.465,135.461L242.285,135.541L242.057,135.555L241.334,135.611L240.734,135.652L238.15,135.831L237.158,135.9L236.971,135.907L236.888,135.911L235.421,136.01L234.657,136.062L233.149,136.165L232.695,136.197L231.56,136.277L231.003,136.313L228.217,136.499L227.193,134.665L226.992,134.179L226.516,133.644L226.485,132.657L226.548,131.237L226.405,130.536L225.912,129.646L225.817,129.533L225.772,128.777L226.059,128.077L226.064,127.588L225.99,127.119L226.68,126.382L226.854,126.132L226.141,125.781L226.303,125.427L226.039,124.557L225.522,123.953L225.095,123.06L224.74,122.262L224.279,120.698L224.243,120.556L223.697,118.588L223.596,118.227L223.29,117.107L222.825,115.465L222.719,115.053L222.513,114.283L222.124,112.931L221.672,111.358L221.546,110.937L221.481,110.707L221.052,109.142L220.823,108.319L221.544,108.25L222.127,108.182L222.67,108.109L224.223,107.916L225.116,107.811L225.31,107.785L226.164,107.679L227.776,107.483L228.805,107.362L229.484,107.276L229.853,107.229L231.943,106.921L232.312,106.873L234.32,106.548L234.358,106.972L233.714,107.463L233.258,108.638L233.362,108.819L233.345,108.839L234.764,109.656L235.097,109.907L235.438,109.937L236.144,110.008L236.789,111.066L237.041,111.581L238.028,112.769L238.239,113.128L238.26,113.136L239.841,113.954L240.321,114.628L241.066,115.179L241.59,115.458L241.682,115.532L242.222,115.911L242.283,116.727L242.854,117.302L243.437,117.548L243.439,117.826L244.314,118.119L244.781,118.385L245.653,119.693L245.845,120.276L246.079,121.263L246.717,121.424L246.717,121.427L247.336,121.983L247.805,122.757L247.821,123.506L248.096,124.207L248.765,124.412L248.584,124.694L249.001,125.761L248.065,125.444L247.69,125.814L248.233,125.989L248.263,126.838L247.272,126.436Z" + }, + { + "fill": "rgb(42, 154, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.18; geo: [object Object]; name: Georgia", + "shape": "M247.424,133.311L247.152,132.76L247.646,132.048L247.739,132.513ZM247.732,129.792L247.772,129.778L248.168,130.057L247.547,131.006L247.273,130.58L247.442,129.789ZM247.961,129.265L247.576,128.656L248.38,128.233ZM248.186,127.396L248.184,127.385L248.447,127.087L248.363,127.994ZM248.392,126.865L248.237,126.017L248.851,126.118ZM248.898,124.468L248.941,124.483L248.942,124.487L249.04,124.585L248.909,125.185L248.584,124.694ZM247.894,126.852L248.09,127.176L247.252,127.498L248.171,127.698L247.795,128.069L247.593,128.759L247.878,129.663L246.901,129.646L246.889,129.703L246.892,129.72L246.901,129.646L247.075,129.7L247.062,129.746L247.121,129.725L247.433,129.999L247.23,130.836L247.394,131.363L247.428,131.449L246.707,131.494L247.211,131.793L247.475,132.286L247.124,132.713L247.372,133.787L246.789,133.938L246.771,133.952L244.966,133.472L244.333,133.84L244.322,134.754L244.656,135.318L244.608,136.69L243.691,136.584L243.465,135.461L242.285,135.541L242.057,135.555L241.334,135.611L240.734,135.652L238.15,135.831L237.158,135.9L236.971,135.907L236.888,135.911L235.421,136.01L234.657,136.062L233.149,136.165L232.695,136.197L231.56,136.277L231.003,136.313L228.217,136.499L227.193,134.665L226.992,134.179L226.516,133.644L226.485,132.657L226.548,131.237L226.405,130.536L225.912,129.646L225.817,129.533L225.772,128.777L226.059,128.077L226.064,127.588L225.99,127.119L226.68,126.382L226.854,126.132L226.141,125.781L226.303,125.427L226.039,124.557L225.522,123.953L225.095,123.06L224.74,122.262L224.279,120.698L224.243,120.556L223.697,118.588L223.596,118.227L223.29,117.107L222.825,115.465L222.719,115.053L222.513,114.283L222.124,112.931L221.672,111.358L221.546,110.937L221.481,110.707L221.052,109.142L220.823,108.319L221.544,108.25L222.127,108.182L222.67,108.109L224.223,107.916L225.116,107.811L225.31,107.785L226.164,107.679L227.776,107.483L228.805,107.362L229.484,107.276L229.853,107.229L231.943,106.921L232.312,106.873L234.32,106.548L234.358,106.972L233.714,107.463L233.258,108.638L233.362,108.819L233.345,108.839L234.764,109.656L235.097,109.907L235.438,109.937L236.144,110.008L236.789,111.066L237.041,111.581L238.028,112.769L238.239,113.128L238.26,113.136L239.841,113.954L240.321,114.628L241.066,115.179L241.59,115.458L241.682,115.532L242.222,115.911L242.283,116.727L242.854,117.302L243.437,117.548L243.439,117.826L244.314,118.119L244.781,118.385L245.653,119.693L245.845,120.276L246.079,121.263L246.717,121.424L246.717,121.427L247.336,121.983L247.805,122.757L247.821,123.506L248.096,124.207L248.765,124.412L248.584,124.694L249.001,125.761L248.065,125.444L247.69,125.814L248.233,125.989L248.263,126.838L247.272,126.436Z" + }, + { + "fill": "rgb(114, 201, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.113; geo: [object Object]; name: Georgia", + "shape": "M247.424,133.311L247.152,132.76L247.646,132.048L247.739,132.513ZM247.732,129.792L247.772,129.778L248.168,130.057L247.547,131.006L247.273,130.58L247.442,129.789ZM247.961,129.265L247.576,128.656L248.38,128.233ZM248.186,127.396L248.184,127.385L248.447,127.087L248.363,127.994ZM248.392,126.865L248.237,126.017L248.851,126.118ZM248.898,124.468L248.941,124.483L248.942,124.487L249.04,124.585L248.909,125.185L248.584,124.694ZM247.894,126.852L248.09,127.176L247.252,127.498L248.171,127.698L247.795,128.069L247.593,128.759L247.878,129.663L246.901,129.646L246.889,129.703L246.892,129.72L246.901,129.646L247.075,129.7L247.062,129.746L247.121,129.725L247.433,129.999L247.23,130.836L247.394,131.363L247.428,131.449L246.707,131.494L247.211,131.793L247.475,132.286L247.124,132.713L247.372,133.787L246.789,133.938L246.771,133.952L244.966,133.472L244.333,133.84L244.322,134.754L244.656,135.318L244.608,136.69L243.691,136.584L243.465,135.461L242.285,135.541L242.057,135.555L241.334,135.611L240.734,135.652L238.15,135.831L237.158,135.9L236.971,135.907L236.888,135.911L235.421,136.01L234.657,136.062L233.149,136.165L232.695,136.197L231.56,136.277L231.003,136.313L228.217,136.499L227.193,134.665L226.992,134.179L226.516,133.644L226.485,132.657L226.548,131.237L226.405,130.536L225.912,129.646L225.817,129.533L225.772,128.777L226.059,128.077L226.064,127.588L225.99,127.119L226.68,126.382L226.854,126.132L226.141,125.781L226.303,125.427L226.039,124.557L225.522,123.953L225.095,123.06L224.74,122.262L224.279,120.698L224.243,120.556L223.697,118.588L223.596,118.227L223.29,117.107L222.825,115.465L222.719,115.053L222.513,114.283L222.124,112.931L221.672,111.358L221.546,110.937L221.481,110.707L221.052,109.142L220.823,108.319L221.544,108.25L222.127,108.182L222.67,108.109L224.223,107.916L225.116,107.811L225.31,107.785L226.164,107.679L227.776,107.483L228.805,107.362L229.484,107.276L229.853,107.229L231.943,106.921L232.312,106.873L234.32,106.548L234.358,106.972L233.714,107.463L233.258,108.638L233.362,108.819L233.345,108.839L234.764,109.656L235.097,109.907L235.438,109.937L236.144,110.008L236.789,111.066L237.041,111.581L238.028,112.769L238.239,113.128L238.26,113.136L239.841,113.954L240.321,114.628L241.066,115.179L241.59,115.458L241.682,115.532L242.222,115.911L242.283,116.727L242.854,117.302L243.437,117.548L243.439,117.826L244.314,118.119L244.781,118.385L245.653,119.693L245.845,120.276L246.079,121.263L246.717,121.424L246.717,121.427L247.336,121.983L247.805,122.757L247.821,123.506L248.096,124.207L248.765,124.412L248.584,124.694L249.001,125.761L248.065,125.444L247.69,125.814L248.233,125.989L248.263,126.838L247.272,126.436Z" + }, + { + "fill": "rgb(212, 238, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.041; geo: [object Object]; name: Georgia", + "shape": "M247.424,133.311L247.152,132.76L247.646,132.048L247.739,132.513ZM247.732,129.792L247.772,129.778L248.168,130.057L247.547,131.006L247.273,130.58L247.442,129.789ZM247.961,129.265L247.576,128.656L248.38,128.233ZM248.186,127.396L248.184,127.385L248.447,127.087L248.363,127.994ZM248.392,126.865L248.237,126.017L248.851,126.118ZM248.898,124.468L248.941,124.483L248.942,124.487L249.04,124.585L248.909,125.185L248.584,124.694ZM247.894,126.852L248.09,127.176L247.252,127.498L248.171,127.698L247.795,128.069L247.593,128.759L247.878,129.663L246.901,129.646L246.889,129.703L246.892,129.72L246.901,129.646L247.075,129.7L247.062,129.746L247.121,129.725L247.433,129.999L247.23,130.836L247.394,131.363L247.428,131.449L246.707,131.494L247.211,131.793L247.475,132.286L247.124,132.713L247.372,133.787L246.789,133.938L246.771,133.952L244.966,133.472L244.333,133.84L244.322,134.754L244.656,135.318L244.608,136.69L243.691,136.584L243.465,135.461L242.285,135.541L242.057,135.555L241.334,135.611L240.734,135.652L238.15,135.831L237.158,135.9L236.971,135.907L236.888,135.911L235.421,136.01L234.657,136.062L233.149,136.165L232.695,136.197L231.56,136.277L231.003,136.313L228.217,136.499L227.193,134.665L226.992,134.179L226.516,133.644L226.485,132.657L226.548,131.237L226.405,130.536L225.912,129.646L225.817,129.533L225.772,128.777L226.059,128.077L226.064,127.588L225.99,127.119L226.68,126.382L226.854,126.132L226.141,125.781L226.303,125.427L226.039,124.557L225.522,123.953L225.095,123.06L224.74,122.262L224.279,120.698L224.243,120.556L223.697,118.588L223.596,118.227L223.29,117.107L222.825,115.465L222.719,115.053L222.513,114.283L222.124,112.931L221.672,111.358L221.546,110.937L221.481,110.707L221.052,109.142L220.823,108.319L221.544,108.25L222.127,108.182L222.67,108.109L224.223,107.916L225.116,107.811L225.31,107.785L226.164,107.679L227.776,107.483L228.805,107.362L229.484,107.276L229.853,107.229L231.943,106.921L232.312,106.873L234.32,106.548L234.358,106.972L233.714,107.463L233.258,108.638L233.362,108.819L233.345,108.839L234.764,109.656L235.097,109.907L235.438,109.937L236.144,110.008L236.789,111.066L237.041,111.581L238.028,112.769L238.239,113.128L238.26,113.136L239.841,113.954L240.321,114.628L241.066,115.179L241.59,115.458L241.682,115.532L242.222,115.911L242.283,116.727L242.854,117.302L243.437,117.548L243.439,117.826L244.314,118.119L244.781,118.385L245.653,119.693L245.845,120.276L246.079,121.263L246.717,121.424L246.717,121.427L247.336,121.983L247.805,122.757L247.821,123.506L248.096,124.207L248.765,124.412L248.584,124.694L249.001,125.761L248.065,125.444L247.69,125.814L248.233,125.989L248.263,126.838L247.272,126.436Z" + }, + { + "fill": "rgb(214, 239, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.039; geo: [object Object]; name: Georgia", + "shape": "M247.424,133.311L247.152,132.76L247.646,132.048L247.739,132.513ZM247.732,129.792L247.772,129.778L248.168,130.057L247.547,131.006L247.273,130.58L247.442,129.789ZM247.961,129.265L247.576,128.656L248.38,128.233ZM248.186,127.396L248.184,127.385L248.447,127.087L248.363,127.994ZM248.392,126.865L248.237,126.017L248.851,126.118ZM248.898,124.468L248.941,124.483L248.942,124.487L249.04,124.585L248.909,125.185L248.584,124.694ZM247.894,126.852L248.09,127.176L247.252,127.498L248.171,127.698L247.795,128.069L247.593,128.759L247.878,129.663L246.901,129.646L246.889,129.703L246.892,129.72L246.901,129.646L247.075,129.7L247.062,129.746L247.121,129.725L247.433,129.999L247.23,130.836L247.394,131.363L247.428,131.449L246.707,131.494L247.211,131.793L247.475,132.286L247.124,132.713L247.372,133.787L246.789,133.938L246.771,133.952L244.966,133.472L244.333,133.84L244.322,134.754L244.656,135.318L244.608,136.69L243.691,136.584L243.465,135.461L242.285,135.541L242.057,135.555L241.334,135.611L240.734,135.652L238.15,135.831L237.158,135.9L236.971,135.907L236.888,135.911L235.421,136.01L234.657,136.062L233.149,136.165L232.695,136.197L231.56,136.277L231.003,136.313L228.217,136.499L227.193,134.665L226.992,134.179L226.516,133.644L226.485,132.657L226.548,131.237L226.405,130.536L225.912,129.646L225.817,129.533L225.772,128.777L226.059,128.077L226.064,127.588L225.99,127.119L226.68,126.382L226.854,126.132L226.141,125.781L226.303,125.427L226.039,124.557L225.522,123.953L225.095,123.06L224.74,122.262L224.279,120.698L224.243,120.556L223.697,118.588L223.596,118.227L223.29,117.107L222.825,115.465L222.719,115.053L222.513,114.283L222.124,112.931L221.672,111.358L221.546,110.937L221.481,110.707L221.052,109.142L220.823,108.319L221.544,108.25L222.127,108.182L222.67,108.109L224.223,107.916L225.116,107.811L225.31,107.785L226.164,107.679L227.776,107.483L228.805,107.362L229.484,107.276L229.853,107.229L231.943,106.921L232.312,106.873L234.32,106.548L234.358,106.972L233.714,107.463L233.258,108.638L233.362,108.819L233.345,108.839L234.764,109.656L235.097,109.907L235.438,109.937L236.144,110.008L236.789,111.066L237.041,111.581L238.028,112.769L238.239,113.128L238.26,113.136L239.841,113.954L240.321,114.628L241.066,115.179L241.59,115.458L241.682,115.532L242.222,115.911L242.283,116.727L242.854,117.302L243.437,117.548L243.439,117.826L244.314,118.119L244.781,118.385L245.653,119.693L245.845,120.276L246.079,121.263L246.717,121.424L246.717,121.427L247.336,121.983L247.805,122.757L247.821,123.506L248.096,124.207L248.765,124.412L248.584,124.694L249.001,125.761L248.065,125.444L247.69,125.814L248.233,125.989L248.263,126.838L247.272,126.436Z" + }, + { + "fill": "rgb(192, 230, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.06; geo: [object Object]; name: Hawaii", + "shape": "M109.768,174.44L109.035,173.781L108.487,173.608L108.234,173.109L108.432,171.522L107.397,168.688L108.167,168.027L108.798,166.937L108.364,166.329L108.519,165.388L109.223,165.571L110.317,166.351L111.135,166.483L112.228,167.007L113.531,168.15L113.492,168.945L114.014,168.89L114.179,169.55L115.277,170.339L114.149,171.53L113.082,172.038L112.194,172.066L110.832,172.97L110.041,174.251ZM103.481,163.82L103.435,163.448L104.023,163.146L104.251,163.737ZM101.622,162.28L101.147,161.012L102.006,161.058L102.618,161.714L102.437,162.076ZM105.315,163.326L104.884,163.13L104.769,161.972L103.704,161.741L103.318,160.835L103.634,160.334L104.177,160.415L104.835,161.177L106.124,160.912L106.873,161.576L107.689,161.867L107.804,162.303L107.375,162.807ZM101.305,159.283L101.915,159.376L103.204,159.428L103.001,159.779L102.119,160.188L100.898,159.812L99.428,159.833L99.791,158.999ZM96.289,158.791L95.703,158.292L94.415,158.505L93.34,156.651L94.355,156.609L95.171,155.744L96.136,157.095L96.564,157.425L97.307,158.465ZM81.263,155.193L81.114,154.48L82.204,153.79L82.084,154.432L81.608,154.601ZM86.025,154.639L85.013,154.421L84.05,153.89L83.899,153.306L84.219,152.842L85.193,152.27L86.318,152.227L86.856,152.55L86.964,153.065L86.729,154.045Z" + }, + { + "fill": "rgb(216, 240, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.037; geo: [object Object]; name: Hawaii", + "shape": "M109.768,174.44L109.035,173.781L108.487,173.608L108.234,173.109L108.432,171.522L107.397,168.688L108.167,168.027L108.798,166.937L108.364,166.329L108.519,165.388L109.223,165.571L110.317,166.351L111.135,166.483L112.228,167.007L113.531,168.15L113.492,168.945L114.014,168.89L114.179,169.55L115.277,170.339L114.149,171.53L113.082,172.038L112.194,172.066L110.832,172.97L110.041,174.251ZM103.481,163.82L103.435,163.448L104.023,163.146L104.251,163.737ZM101.622,162.28L101.147,161.012L102.006,161.058L102.618,161.714L102.437,162.076ZM105.315,163.326L104.884,163.13L104.769,161.972L103.704,161.741L103.318,160.835L103.634,160.334L104.177,160.415L104.835,161.177L106.124,160.912L106.873,161.576L107.689,161.867L107.804,162.303L107.375,162.807ZM101.305,159.283L101.915,159.376L103.204,159.428L103.001,159.779L102.119,160.188L100.898,159.812L99.428,159.833L99.791,158.999ZM96.289,158.791L95.703,158.292L94.415,158.505L93.34,156.651L94.355,156.609L95.171,155.744L96.136,157.095L96.564,157.425L97.307,158.465ZM81.263,155.193L81.114,154.48L82.204,153.79L82.084,154.432L81.608,154.601ZM86.025,154.639L85.013,154.421L84.05,153.89L83.899,153.306L84.219,152.842L85.193,152.27L86.318,152.227L86.856,152.55L86.964,153.065L86.729,154.045Z" + }, + { + "fill": "rgb(170, 221, 183)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.076; geo: [object Object]; name: Hawaii", + "shape": "M109.768,174.44L109.035,173.781L108.487,173.608L108.234,173.109L108.432,171.522L107.397,168.688L108.167,168.027L108.798,166.937L108.364,166.329L108.519,165.388L109.223,165.571L110.317,166.351L111.135,166.483L112.228,167.007L113.531,168.15L113.492,168.945L114.014,168.89L114.179,169.55L115.277,170.339L114.149,171.53L113.082,172.038L112.194,172.066L110.832,172.97L110.041,174.251ZM103.481,163.82L103.435,163.448L104.023,163.146L104.251,163.737ZM101.622,162.28L101.147,161.012L102.006,161.058L102.618,161.714L102.437,162.076ZM105.315,163.326L104.884,163.13L104.769,161.972L103.704,161.741L103.318,160.835L103.634,160.334L104.177,160.415L104.835,161.177L106.124,160.912L106.873,161.576L107.689,161.867L107.804,162.303L107.375,162.807ZM101.305,159.283L101.915,159.376L103.204,159.428L103.001,159.779L102.119,160.188L100.898,159.812L99.428,159.833L99.791,158.999ZM96.289,158.791L95.703,158.292L94.415,158.505L93.34,156.651L94.355,156.609L95.171,155.744L96.136,157.095L96.564,157.425L97.307,158.465ZM81.263,155.193L81.114,154.48L82.204,153.79L82.084,154.432L81.608,154.601ZM86.025,154.639L85.013,154.421L84.05,153.89L83.899,153.306L84.219,152.842L85.193,152.27L86.318,152.227L86.856,152.55L86.964,153.065L86.729,154.045Z" + }, + { + "fill": "rgb(168, 221, 183)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.077; geo: [object Object]; name: Hawaii", + "shape": "M109.768,174.44L109.035,173.781L108.487,173.608L108.234,173.109L108.432,171.522L107.397,168.688L108.167,168.027L108.798,166.937L108.364,166.329L108.519,165.388L109.223,165.571L110.317,166.351L111.135,166.483L112.228,167.007L113.531,168.15L113.492,168.945L114.014,168.89L114.179,169.55L115.277,170.339L114.149,171.53L113.082,172.038L112.194,172.066L110.832,172.97L110.041,174.251ZM103.481,163.82L103.435,163.448L104.023,163.146L104.251,163.737ZM101.622,162.28L101.147,161.012L102.006,161.058L102.618,161.714L102.437,162.076ZM105.315,163.326L104.884,163.13L104.769,161.972L103.704,161.741L103.318,160.835L103.634,160.334L104.177,160.415L104.835,161.177L106.124,160.912L106.873,161.576L107.689,161.867L107.804,162.303L107.375,162.807ZM101.305,159.283L101.915,159.376L103.204,159.428L103.001,159.779L102.119,160.188L100.898,159.812L99.428,159.833L99.791,158.999ZM96.289,158.791L95.703,158.292L94.415,158.505L93.34,156.651L94.355,156.609L95.171,155.744L96.136,157.095L96.564,157.425L97.307,158.465ZM81.263,155.193L81.114,154.48L82.204,153.79L82.084,154.432L81.608,154.601ZM86.025,154.639L85.013,154.421L84.05,153.89L83.899,153.306L84.219,152.842L85.193,152.27L86.318,152.227L86.856,152.55L86.964,153.065L86.729,154.045Z" + }, + { + "fill": "rgb(104, 197, 190)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.12; geo: [object Object]; name: Hawaii", + "shape": "M109.768,174.44L109.035,173.781L108.487,173.608L108.234,173.109L108.432,171.522L107.397,168.688L108.167,168.027L108.798,166.937L108.364,166.329L108.519,165.388L109.223,165.571L110.317,166.351L111.135,166.483L112.228,167.007L113.531,168.15L113.492,168.945L114.014,168.89L114.179,169.55L115.277,170.339L114.149,171.53L113.082,172.038L112.194,172.066L110.832,172.97L110.041,174.251ZM103.481,163.82L103.435,163.448L104.023,163.146L104.251,163.737ZM101.622,162.28L101.147,161.012L102.006,161.058L102.618,161.714L102.437,162.076ZM105.315,163.326L104.884,163.13L104.769,161.972L103.704,161.741L103.318,160.835L103.634,160.334L104.177,160.415L104.835,161.177L106.124,160.912L106.873,161.576L107.689,161.867L107.804,162.303L107.375,162.807ZM101.305,159.283L101.915,159.376L103.204,159.428L103.001,159.779L102.119,160.188L100.898,159.812L99.428,159.833L99.791,158.999ZM96.289,158.791L95.703,158.292L94.415,158.505L93.34,156.651L94.355,156.609L95.171,155.744L96.136,157.095L96.564,157.425L97.307,158.465ZM81.263,155.193L81.114,154.48L82.204,153.79L82.084,154.432L81.608,154.601ZM86.025,154.639L85.013,154.421L84.05,153.89L83.899,153.306L84.219,152.842L85.193,152.27L86.318,152.227L86.856,152.55L86.964,153.065L86.729,154.045Z" + }, + { + "fill": "rgb(79, 185, 193)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.14; geo: [object Object]; name: Hawaii", + "shape": "M109.768,174.44L109.035,173.781L108.487,173.608L108.234,173.109L108.432,171.522L107.397,168.688L108.167,168.027L108.798,166.937L108.364,166.329L108.519,165.388L109.223,165.571L110.317,166.351L111.135,166.483L112.228,167.007L113.531,168.15L113.492,168.945L114.014,168.89L114.179,169.55L115.277,170.339L114.149,171.53L113.082,172.038L112.194,172.066L110.832,172.97L110.041,174.251ZM103.481,163.82L103.435,163.448L104.023,163.146L104.251,163.737ZM101.622,162.28L101.147,161.012L102.006,161.058L102.618,161.714L102.437,162.076ZM105.315,163.326L104.884,163.13L104.769,161.972L103.704,161.741L103.318,160.835L103.634,160.334L104.177,160.415L104.835,161.177L106.124,160.912L106.873,161.576L107.689,161.867L107.804,162.303L107.375,162.807ZM101.305,159.283L101.915,159.376L103.204,159.428L103.001,159.779L102.119,160.188L100.898,159.812L99.428,159.833L99.791,158.999ZM96.289,158.791L95.703,158.292L94.415,158.505L93.34,156.651L94.355,156.609L95.171,155.744L96.136,157.095L96.564,157.425L97.307,158.465ZM81.263,155.193L81.114,154.48L82.204,153.79L82.084,154.432L81.608,154.601ZM86.025,154.639L85.013,154.421L84.05,153.89L83.899,153.306L84.219,152.842L85.193,152.27L86.318,152.227L86.856,152.55L86.964,153.065L86.729,154.045Z" + }, + { + "fill": "rgb(39, 145, 188)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.189; geo: [object Object]; name: Hawaii", + "shape": "M109.768,174.44L109.035,173.781L108.487,173.608L108.234,173.109L108.432,171.522L107.397,168.688L108.167,168.027L108.798,166.937L108.364,166.329L108.519,165.388L109.223,165.571L110.317,166.351L111.135,166.483L112.228,167.007L113.531,168.15L113.492,168.945L114.014,168.89L114.179,169.55L115.277,170.339L114.149,171.53L113.082,172.038L112.194,172.066L110.832,172.97L110.041,174.251ZM103.481,163.82L103.435,163.448L104.023,163.146L104.251,163.737ZM101.622,162.28L101.147,161.012L102.006,161.058L102.618,161.714L102.437,162.076ZM105.315,163.326L104.884,163.13L104.769,161.972L103.704,161.741L103.318,160.835L103.634,160.334L104.177,160.415L104.835,161.177L106.124,160.912L106.873,161.576L107.689,161.867L107.804,162.303L107.375,162.807ZM101.305,159.283L101.915,159.376L103.204,159.428L103.001,159.779L102.119,160.188L100.898,159.812L99.428,159.833L99.791,158.999ZM96.289,158.791L95.703,158.292L94.415,158.505L93.34,156.651L94.355,156.609L95.171,155.744L96.136,157.095L96.564,157.425L97.307,158.465ZM81.263,155.193L81.114,154.48L82.204,153.79L82.084,154.432L81.608,154.601ZM86.025,154.639L85.013,154.421L84.05,153.89L83.899,153.306L84.219,152.842L85.193,152.27L86.318,152.227L86.856,152.55L86.964,153.065L86.729,154.045Z" + }, + { + "fill": "rgb(46, 159, 192)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.174; geo: [object Object]; name: Hawaii", + "shape": "M109.768,174.44L109.035,173.781L108.487,173.608L108.234,173.109L108.432,171.522L107.397,168.688L108.167,168.027L108.798,166.937L108.364,166.329L108.519,165.388L109.223,165.571L110.317,166.351L111.135,166.483L112.228,167.007L113.531,168.15L113.492,168.945L114.014,168.89L114.179,169.55L115.277,170.339L114.149,171.53L113.082,172.038L112.194,172.066L110.832,172.97L110.041,174.251ZM103.481,163.82L103.435,163.448L104.023,163.146L104.251,163.737ZM101.622,162.28L101.147,161.012L102.006,161.058L102.618,161.714L102.437,162.076ZM105.315,163.326L104.884,163.13L104.769,161.972L103.704,161.741L103.318,160.835L103.634,160.334L104.177,160.415L104.835,161.177L106.124,160.912L106.873,161.576L107.689,161.867L107.804,162.303L107.375,162.807ZM101.305,159.283L101.915,159.376L103.204,159.428L103.001,159.779L102.119,160.188L100.898,159.812L99.428,159.833L99.791,158.999ZM96.289,158.791L95.703,158.292L94.415,158.505L93.34,156.651L94.355,156.609L95.171,155.744L96.136,157.095L96.564,157.425L97.307,158.465ZM81.263,155.193L81.114,154.48L82.204,153.79L82.084,154.432L81.608,154.601ZM86.025,154.639L85.013,154.421L84.05,153.89L83.899,153.306L84.219,152.842L85.193,152.27L86.318,152.227L86.856,152.55L86.964,153.065L86.729,154.045Z" + }, + { + "fill": "rgb(180, 225, 182)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.069; geo: [object Object]; name: Hawaii", + "shape": "M109.768,174.44L109.035,173.781L108.487,173.608L108.234,173.109L108.432,171.522L107.397,168.688L108.167,168.027L108.798,166.937L108.364,166.329L108.519,165.388L109.223,165.571L110.317,166.351L111.135,166.483L112.228,167.007L113.531,168.15L113.492,168.945L114.014,168.89L114.179,169.55L115.277,170.339L114.149,171.53L113.082,172.038L112.194,172.066L110.832,172.97L110.041,174.251ZM103.481,163.82L103.435,163.448L104.023,163.146L104.251,163.737ZM101.622,162.28L101.147,161.012L102.006,161.058L102.618,161.714L102.437,162.076ZM105.315,163.326L104.884,163.13L104.769,161.972L103.704,161.741L103.318,160.835L103.634,160.334L104.177,160.415L104.835,161.177L106.124,160.912L106.873,161.576L107.689,161.867L107.804,162.303L107.375,162.807ZM101.305,159.283L101.915,159.376L103.204,159.428L103.001,159.779L102.119,160.188L100.898,159.812L99.428,159.833L99.791,158.999ZM96.289,158.791L95.703,158.292L94.415,158.505L93.34,156.651L94.355,156.609L95.171,155.744L96.136,157.095L96.564,157.425L97.307,158.465ZM81.263,155.193L81.114,154.48L82.204,153.79L82.084,154.432L81.608,154.601ZM86.025,154.639L85.013,154.421L84.05,153.89L83.899,153.306L84.219,152.842L85.193,152.27L86.318,152.227L86.856,152.55L86.964,153.065L86.729,154.045Z" + }, + { + "fill": "rgb(194, 231, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.058; geo: [object Object]; name: Hawaii", + "shape": "M109.768,174.44L109.035,173.781L108.487,173.608L108.234,173.109L108.432,171.522L107.397,168.688L108.167,168.027L108.798,166.937L108.364,166.329L108.519,165.388L109.223,165.571L110.317,166.351L111.135,166.483L112.228,167.007L113.531,168.15L113.492,168.945L114.014,168.89L114.179,169.55L115.277,170.339L114.149,171.53L113.082,172.038L112.194,172.066L110.832,172.97L110.041,174.251ZM103.481,163.82L103.435,163.448L104.023,163.146L104.251,163.737ZM101.622,162.28L101.147,161.012L102.006,161.058L102.618,161.714L102.437,162.076ZM105.315,163.326L104.884,163.13L104.769,161.972L103.704,161.741L103.318,160.835L103.634,160.334L104.177,160.415L104.835,161.177L106.124,160.912L106.873,161.576L107.689,161.867L107.804,162.303L107.375,162.807ZM101.305,159.283L101.915,159.376L103.204,159.428L103.001,159.779L102.119,160.188L100.898,159.812L99.428,159.833L99.791,158.999ZM96.289,158.791L95.703,158.292L94.415,158.505L93.34,156.651L94.355,156.609L95.171,155.744L96.136,157.095L96.564,157.425L97.307,158.465ZM81.263,155.193L81.114,154.48L82.204,153.79L82.084,154.432L81.608,154.601ZM86.025,154.639L85.013,154.421L84.05,153.89L83.899,153.306L84.219,152.842L85.193,152.27L86.318,152.227L86.856,152.55L86.964,153.065L86.729,154.045Z" + }, + { + "fill": "rgb(175, 224, 182)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.072; geo: [object Object]; name: Idaho", + "shape": "M75.619,7.613L74.926,10.849L74.512,12.706L74.183,14.246L74.843,15.911L75.245,16.376L75.246,17.086L74.883,17.302L75.377,17.896L74.705,18.146L75.526,18.787L75.75,19.321L76.456,19.639L76.445,20.101L76.883,20.586L77.282,21.766L77.638,22.083L77.589,22.578L78.662,23.624L78.901,24.375L80.123,24.436L78.564,28.661L78.874,29.43L77.898,30.045L78.145,30.531L77.632,31.472L78.072,31.511L78.517,32.311L80.703,31.126L81.169,31.827L81.088,33.165L81.29,34.19L82.157,35.923L81.819,36.44L82.338,37.656L82.82,37.487L83.379,38.225L83.589,39.654L83.515,40.162L84.305,40.807L84.603,40.115L86.048,40.403L86.417,40.68L86.647,40.163L87.165,39.978L87.817,40.431L88.98,40.331L89.138,40.732L90.146,40.622L90.667,40.616L91.012,39.681L91.496,39.471L92.098,40.451L92.001,40.731L92.751,41.569L92.231,44.824L91.735,48.039L91.539,49.269L91.224,51.24L90.668,54.617L90.123,58.027L87.876,57.678L84.929,57.201L84.65,57.146L80.591,56.427L75.52,55.515L74.351,55.289L70.678,54.539L67.146,53.805L61.107,52.478L61.058,52.455L63.546,41.391L63.546,41.391L63.783,40.339L64.043,40.127L64.437,39.477L64.343,39.03L64.847,38.432L64.03,37.359L63.559,37.108L63.814,35.906L64.175,35.71L65.035,34.386L65.857,33.915L66.737,32.466L67.459,31.326L68.399,29.891L68.962,29.369L68.818,28.375L67.802,27.365L67.465,26.335L67.298,25.626L67.674,25.172L67.315,23.876L67.527,23.389L67.528,23.386L67.697,22.636L68.556,18.819L68.749,17.962L68.906,17.263L69.799,13.294L69.9,12.848L71.083,7.663L71.305,6.676Z" + }, + { + "fill": "rgb(195, 231, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.057; geo: [object Object]; name: Idaho", + "shape": "M75.619,7.613L74.926,10.849L74.512,12.706L74.183,14.246L74.843,15.911L75.245,16.376L75.246,17.086L74.883,17.302L75.377,17.896L74.705,18.146L75.526,18.787L75.75,19.321L76.456,19.639L76.445,20.101L76.883,20.586L77.282,21.766L77.638,22.083L77.589,22.578L78.662,23.624L78.901,24.375L80.123,24.436L78.564,28.661L78.874,29.43L77.898,30.045L78.145,30.531L77.632,31.472L78.072,31.511L78.517,32.311L80.703,31.126L81.169,31.827L81.088,33.165L81.29,34.19L82.157,35.923L81.819,36.44L82.338,37.656L82.82,37.487L83.379,38.225L83.589,39.654L83.515,40.162L84.305,40.807L84.603,40.115L86.048,40.403L86.417,40.68L86.647,40.163L87.165,39.978L87.817,40.431L88.98,40.331L89.138,40.732L90.146,40.622L90.667,40.616L91.012,39.681L91.496,39.471L92.098,40.451L92.001,40.731L92.751,41.569L92.231,44.824L91.735,48.039L91.539,49.269L91.224,51.24L90.668,54.617L90.123,58.027L87.876,57.678L84.929,57.201L84.65,57.146L80.591,56.427L75.52,55.515L74.351,55.289L70.678,54.539L67.146,53.805L61.107,52.478L61.058,52.455L63.546,41.391L63.546,41.391L63.783,40.339L64.043,40.127L64.437,39.477L64.343,39.03L64.847,38.432L64.03,37.359L63.559,37.108L63.814,35.906L64.175,35.71L65.035,34.386L65.857,33.915L66.737,32.466L67.459,31.326L68.399,29.891L68.962,29.369L68.818,28.375L67.802,27.365L67.465,26.335L67.298,25.626L67.674,25.172L67.315,23.876L67.527,23.389L67.528,23.386L67.697,22.636L68.556,18.819L68.749,17.962L68.906,17.263L69.799,13.294L69.9,12.848L71.083,7.663L71.305,6.676Z" + }, + { + "fill": "rgb(100, 195, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.123; geo: [object Object]; name: Idaho", + "shape": "M75.619,7.613L74.926,10.849L74.512,12.706L74.183,14.246L74.843,15.911L75.245,16.376L75.246,17.086L74.883,17.302L75.377,17.896L74.705,18.146L75.526,18.787L75.75,19.321L76.456,19.639L76.445,20.101L76.883,20.586L77.282,21.766L77.638,22.083L77.589,22.578L78.662,23.624L78.901,24.375L80.123,24.436L78.564,28.661L78.874,29.43L77.898,30.045L78.145,30.531L77.632,31.472L78.072,31.511L78.517,32.311L80.703,31.126L81.169,31.827L81.088,33.165L81.29,34.19L82.157,35.923L81.819,36.44L82.338,37.656L82.82,37.487L83.379,38.225L83.589,39.654L83.515,40.162L84.305,40.807L84.603,40.115L86.048,40.403L86.417,40.68L86.647,40.163L87.165,39.978L87.817,40.431L88.98,40.331L89.138,40.732L90.146,40.622L90.667,40.616L91.012,39.681L91.496,39.471L92.098,40.451L92.001,40.731L92.751,41.569L92.231,44.824L91.735,48.039L91.539,49.269L91.224,51.24L90.668,54.617L90.123,58.027L87.876,57.678L84.929,57.201L84.65,57.146L80.591,56.427L75.52,55.515L74.351,55.289L70.678,54.539L67.146,53.805L61.107,52.478L61.058,52.455L63.546,41.391L63.546,41.391L63.783,40.339L64.043,40.127L64.437,39.477L64.343,39.03L64.847,38.432L64.03,37.359L63.559,37.108L63.814,35.906L64.175,35.71L65.035,34.386L65.857,33.915L66.737,32.466L67.459,31.326L68.399,29.891L68.962,29.369L68.818,28.375L67.802,27.365L67.465,26.335L67.298,25.626L67.674,25.172L67.315,23.876L67.527,23.389L67.528,23.386L67.697,22.636L68.556,18.819L68.749,17.962L68.906,17.263L69.799,13.294L69.9,12.848L71.083,7.663L71.305,6.676Z" + }, + { + "fill": "rgb(96, 193, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.126; geo: [object Object]; name: Idaho", + "shape": "M75.619,7.613L74.926,10.849L74.512,12.706L74.183,14.246L74.843,15.911L75.245,16.376L75.246,17.086L74.883,17.302L75.377,17.896L74.705,18.146L75.526,18.787L75.75,19.321L76.456,19.639L76.445,20.101L76.883,20.586L77.282,21.766L77.638,22.083L77.589,22.578L78.662,23.624L78.901,24.375L80.123,24.436L78.564,28.661L78.874,29.43L77.898,30.045L78.145,30.531L77.632,31.472L78.072,31.511L78.517,32.311L80.703,31.126L81.169,31.827L81.088,33.165L81.29,34.19L82.157,35.923L81.819,36.44L82.338,37.656L82.82,37.487L83.379,38.225L83.589,39.654L83.515,40.162L84.305,40.807L84.603,40.115L86.048,40.403L86.417,40.68L86.647,40.163L87.165,39.978L87.817,40.431L88.98,40.331L89.138,40.732L90.146,40.622L90.667,40.616L91.012,39.681L91.496,39.471L92.098,40.451L92.001,40.731L92.751,41.569L92.231,44.824L91.735,48.039L91.539,49.269L91.224,51.24L90.668,54.617L90.123,58.027L87.876,57.678L84.929,57.201L84.65,57.146L80.591,56.427L75.52,55.515L74.351,55.289L70.678,54.539L67.146,53.805L61.107,52.478L61.058,52.455L63.546,41.391L63.546,41.391L63.783,40.339L64.043,40.127L64.437,39.477L64.343,39.03L64.847,38.432L64.03,37.359L63.559,37.108L63.814,35.906L64.175,35.71L65.035,34.386L65.857,33.915L66.737,32.466L67.459,31.326L68.399,29.891L68.962,29.369L68.818,28.375L67.802,27.365L67.465,26.335L67.298,25.626L67.674,25.172L67.315,23.876L67.527,23.389L67.528,23.386L67.697,22.636L68.556,18.819L68.749,17.962L68.906,17.263L69.799,13.294L69.9,12.848L71.083,7.663L71.305,6.676Z" + }, + { + "fill": "rgb(57, 170, 193)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.161; geo: [object Object]; name: Idaho", + "shape": "M75.619,7.613L74.926,10.849L74.512,12.706L74.183,14.246L74.843,15.911L75.245,16.376L75.246,17.086L74.883,17.302L75.377,17.896L74.705,18.146L75.526,18.787L75.75,19.321L76.456,19.639L76.445,20.101L76.883,20.586L77.282,21.766L77.638,22.083L77.589,22.578L78.662,23.624L78.901,24.375L80.123,24.436L78.564,28.661L78.874,29.43L77.898,30.045L78.145,30.531L77.632,31.472L78.072,31.511L78.517,32.311L80.703,31.126L81.169,31.827L81.088,33.165L81.29,34.19L82.157,35.923L81.819,36.44L82.338,37.656L82.82,37.487L83.379,38.225L83.589,39.654L83.515,40.162L84.305,40.807L84.603,40.115L86.048,40.403L86.417,40.68L86.647,40.163L87.165,39.978L87.817,40.431L88.98,40.331L89.138,40.732L90.146,40.622L90.667,40.616L91.012,39.681L91.496,39.471L92.098,40.451L92.001,40.731L92.751,41.569L92.231,44.824L91.735,48.039L91.539,49.269L91.224,51.24L90.668,54.617L90.123,58.027L87.876,57.678L84.929,57.201L84.65,57.146L80.591,56.427L75.52,55.515L74.351,55.289L70.678,54.539L67.146,53.805L61.107,52.478L61.058,52.455L63.546,41.391L63.546,41.391L63.783,40.339L64.043,40.127L64.437,39.477L64.343,39.03L64.847,38.432L64.03,37.359L63.559,37.108L63.814,35.906L64.175,35.71L65.035,34.386L65.857,33.915L66.737,32.466L67.459,31.326L68.399,29.891L68.962,29.369L68.818,28.375L67.802,27.365L67.465,26.335L67.298,25.626L67.674,25.172L67.315,23.876L67.527,23.389L67.528,23.386L67.697,22.636L68.556,18.819L68.749,17.962L68.906,17.263L69.799,13.294L69.9,12.848L71.083,7.663L71.305,6.676Z" + }, + { + "fill": "rgb(110, 199, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.116; geo: [object Object]; name: Idaho", + "shape": "M75.619,7.613L74.926,10.849L74.512,12.706L74.183,14.246L74.843,15.911L75.245,16.376L75.246,17.086L74.883,17.302L75.377,17.896L74.705,18.146L75.526,18.787L75.75,19.321L76.456,19.639L76.445,20.101L76.883,20.586L77.282,21.766L77.638,22.083L77.589,22.578L78.662,23.624L78.901,24.375L80.123,24.436L78.564,28.661L78.874,29.43L77.898,30.045L78.145,30.531L77.632,31.472L78.072,31.511L78.517,32.311L80.703,31.126L81.169,31.827L81.088,33.165L81.29,34.19L82.157,35.923L81.819,36.44L82.338,37.656L82.82,37.487L83.379,38.225L83.589,39.654L83.515,40.162L84.305,40.807L84.603,40.115L86.048,40.403L86.417,40.68L86.647,40.163L87.165,39.978L87.817,40.431L88.98,40.331L89.138,40.732L90.146,40.622L90.667,40.616L91.012,39.681L91.496,39.471L92.098,40.451L92.001,40.731L92.751,41.569L92.231,44.824L91.735,48.039L91.539,49.269L91.224,51.24L90.668,54.617L90.123,58.027L87.876,57.678L84.929,57.201L84.65,57.146L80.591,56.427L75.52,55.515L74.351,55.289L70.678,54.539L67.146,53.805L61.107,52.478L61.058,52.455L63.546,41.391L63.546,41.391L63.783,40.339L64.043,40.127L64.437,39.477L64.343,39.03L64.847,38.432L64.03,37.359L63.559,37.108L63.814,35.906L64.175,35.71L65.035,34.386L65.857,33.915L66.737,32.466L67.459,31.326L68.399,29.891L68.962,29.369L68.818,28.375L67.802,27.365L67.465,26.335L67.298,25.626L67.674,25.172L67.315,23.876L67.527,23.389L67.528,23.386L67.697,22.636L68.556,18.819L68.749,17.962L68.906,17.263L69.799,13.294L69.9,12.848L71.083,7.663L71.305,6.676Z" + }, + { + "fill": "rgb(34, 133, 185)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.201; geo: [object Object]; name: Idaho", + "shape": "M75.619,7.613L74.926,10.849L74.512,12.706L74.183,14.246L74.843,15.911L75.245,16.376L75.246,17.086L74.883,17.302L75.377,17.896L74.705,18.146L75.526,18.787L75.75,19.321L76.456,19.639L76.445,20.101L76.883,20.586L77.282,21.766L77.638,22.083L77.589,22.578L78.662,23.624L78.901,24.375L80.123,24.436L78.564,28.661L78.874,29.43L77.898,30.045L78.145,30.531L77.632,31.472L78.072,31.511L78.517,32.311L80.703,31.126L81.169,31.827L81.088,33.165L81.29,34.19L82.157,35.923L81.819,36.44L82.338,37.656L82.82,37.487L83.379,38.225L83.589,39.654L83.515,40.162L84.305,40.807L84.603,40.115L86.048,40.403L86.417,40.68L86.647,40.163L87.165,39.978L87.817,40.431L88.98,40.331L89.138,40.732L90.146,40.622L90.667,40.616L91.012,39.681L91.496,39.471L92.098,40.451L92.001,40.731L92.751,41.569L92.231,44.824L91.735,48.039L91.539,49.269L91.224,51.24L90.668,54.617L90.123,58.027L87.876,57.678L84.929,57.201L84.65,57.146L80.591,56.427L75.52,55.515L74.351,55.289L70.678,54.539L67.146,53.805L61.107,52.478L61.058,52.455L63.546,41.391L63.546,41.391L63.783,40.339L64.043,40.127L64.437,39.477L64.343,39.03L64.847,38.432L64.03,37.359L63.559,37.108L63.814,35.906L64.175,35.71L65.035,34.386L65.857,33.915L66.737,32.466L67.459,31.326L68.399,29.891L68.962,29.369L68.818,28.375L67.802,27.365L67.465,26.335L67.298,25.626L67.674,25.172L67.315,23.876L67.527,23.389L67.528,23.386L67.697,22.636L68.556,18.819L68.749,17.962L68.906,17.263L69.799,13.294L69.9,12.848L71.083,7.663L71.305,6.676Z" + }, + { + "fill": "rgb(140, 210, 186)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.096; geo: [object Object]; name: Idaho", + "shape": "M75.619,7.613L74.926,10.849L74.512,12.706L74.183,14.246L74.843,15.911L75.245,16.376L75.246,17.086L74.883,17.302L75.377,17.896L74.705,18.146L75.526,18.787L75.75,19.321L76.456,19.639L76.445,20.101L76.883,20.586L77.282,21.766L77.638,22.083L77.589,22.578L78.662,23.624L78.901,24.375L80.123,24.436L78.564,28.661L78.874,29.43L77.898,30.045L78.145,30.531L77.632,31.472L78.072,31.511L78.517,32.311L80.703,31.126L81.169,31.827L81.088,33.165L81.29,34.19L82.157,35.923L81.819,36.44L82.338,37.656L82.82,37.487L83.379,38.225L83.589,39.654L83.515,40.162L84.305,40.807L84.603,40.115L86.048,40.403L86.417,40.68L86.647,40.163L87.165,39.978L87.817,40.431L88.98,40.331L89.138,40.732L90.146,40.622L90.667,40.616L91.012,39.681L91.496,39.471L92.098,40.451L92.001,40.731L92.751,41.569L92.231,44.824L91.735,48.039L91.539,49.269L91.224,51.24L90.668,54.617L90.123,58.027L87.876,57.678L84.929,57.201L84.65,57.146L80.591,56.427L75.52,55.515L74.351,55.289L70.678,54.539L67.146,53.805L61.107,52.478L61.058,52.455L63.546,41.391L63.546,41.391L63.783,40.339L64.043,40.127L64.437,39.477L64.343,39.03L64.847,38.432L64.03,37.359L63.559,37.108L63.814,35.906L64.175,35.71L65.035,34.386L65.857,33.915L66.737,32.466L67.459,31.326L68.399,29.891L68.962,29.369L68.818,28.375L67.802,27.365L67.465,26.335L67.298,25.626L67.674,25.172L67.315,23.876L67.527,23.389L67.528,23.386L67.697,22.636L68.556,18.819L68.749,17.962L68.906,17.263L69.799,13.294L69.9,12.848L71.083,7.663L71.305,6.676Z" + }, + { + "fill": "rgb(224, 243, 182)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.027; geo: [object Object]; name: Idaho", + "shape": "M75.619,7.613L74.926,10.849L74.512,12.706L74.183,14.246L74.843,15.911L75.245,16.376L75.246,17.086L74.883,17.302L75.377,17.896L74.705,18.146L75.526,18.787L75.75,19.321L76.456,19.639L76.445,20.101L76.883,20.586L77.282,21.766L77.638,22.083L77.589,22.578L78.662,23.624L78.901,24.375L80.123,24.436L78.564,28.661L78.874,29.43L77.898,30.045L78.145,30.531L77.632,31.472L78.072,31.511L78.517,32.311L80.703,31.126L81.169,31.827L81.088,33.165L81.29,34.19L82.157,35.923L81.819,36.44L82.338,37.656L82.82,37.487L83.379,38.225L83.589,39.654L83.515,40.162L84.305,40.807L84.603,40.115L86.048,40.403L86.417,40.68L86.647,40.163L87.165,39.978L87.817,40.431L88.98,40.331L89.138,40.732L90.146,40.622L90.667,40.616L91.012,39.681L91.496,39.471L92.098,40.451L92.001,40.731L92.751,41.569L92.231,44.824L91.735,48.039L91.539,49.269L91.224,51.24L90.668,54.617L90.123,58.027L87.876,57.678L84.929,57.201L84.65,57.146L80.591,56.427L75.52,55.515L74.351,55.289L70.678,54.539L67.146,53.805L61.107,52.478L61.058,52.455L63.546,41.391L63.546,41.391L63.783,40.339L64.043,40.127L64.437,39.477L64.343,39.03L64.847,38.432L64.03,37.359L63.559,37.108L63.814,35.906L64.175,35.71L65.035,34.386L65.857,33.915L66.737,32.466L67.459,31.326L68.399,29.891L68.962,29.369L68.818,28.375L67.802,27.365L67.465,26.335L67.298,25.626L67.674,25.172L67.315,23.876L67.527,23.389L67.528,23.386L67.697,22.636L68.556,18.819L68.749,17.962L68.906,17.263L69.799,13.294L69.9,12.848L71.083,7.663L71.305,6.676Z" + }, + { + "fill": "rgb(228, 244, 184)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.022; geo: [object Object]; name: Idaho", + "shape": "M75.619,7.613L74.926,10.849L74.512,12.706L74.183,14.246L74.843,15.911L75.245,16.376L75.246,17.086L74.883,17.302L75.377,17.896L74.705,18.146L75.526,18.787L75.75,19.321L76.456,19.639L76.445,20.101L76.883,20.586L77.282,21.766L77.638,22.083L77.589,22.578L78.662,23.624L78.901,24.375L80.123,24.436L78.564,28.661L78.874,29.43L77.898,30.045L78.145,30.531L77.632,31.472L78.072,31.511L78.517,32.311L80.703,31.126L81.169,31.827L81.088,33.165L81.29,34.19L82.157,35.923L81.819,36.44L82.338,37.656L82.82,37.487L83.379,38.225L83.589,39.654L83.515,40.162L84.305,40.807L84.603,40.115L86.048,40.403L86.417,40.68L86.647,40.163L87.165,39.978L87.817,40.431L88.98,40.331L89.138,40.732L90.146,40.622L90.667,40.616L91.012,39.681L91.496,39.471L92.098,40.451L92.001,40.731L92.751,41.569L92.231,44.824L91.735,48.039L91.539,49.269L91.224,51.24L90.668,54.617L90.123,58.027L87.876,57.678L84.929,57.201L84.65,57.146L80.591,56.427L75.52,55.515L74.351,55.289L70.678,54.539L67.146,53.805L61.107,52.478L61.058,52.455L63.546,41.391L63.546,41.391L63.783,40.339L64.043,40.127L64.437,39.477L64.343,39.03L64.847,38.432L64.03,37.359L63.559,37.108L63.814,35.906L64.175,35.71L65.035,34.386L65.857,33.915L66.737,32.466L67.459,31.326L68.399,29.891L68.962,29.369L68.818,28.375L67.802,27.365L67.465,26.335L67.298,25.626L67.674,25.172L67.315,23.876L67.527,23.389L67.528,23.386L67.697,22.636L68.556,18.819L68.749,17.962L68.906,17.263L69.799,13.294L69.9,12.848L71.083,7.663L71.305,6.676Z" + }, + { + "fill": "rgb(172, 223, 183)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.074; geo: [object Object]; name: Illinois", + "shape": "M191.665,59.695L194.13,59.551L194.553,59.524L196.702,59.416L196.879,59.407L198.957,59.29L199.768,59.25L200.101,59.214L202.07,59.051L202.597,59.004L204.533,58.859L204.496,60.29L204.943,61.132L205.356,61.584L205.869,63.153L206.358,64.024L206.358,64.024L206.503,65.645L206.604,66.781L206.684,67.667L206.778,68.72L206.942,70.559L207.09,72.217L207.099,72.311L207.279,74.532L207.42,76.32L207.605,78.18L207.683,79.057L207.761,79.93L207.446,80.557L207.379,81.257L207.305,81.263L207.736,81.934L208.048,82.929L208.048,82.932L208.059,83.267L208.178,84.389L207.6,85.244L207.673,85.65L207.17,85.899L207.226,86.321L206.155,87.622L206.031,87.498L206.084,87.672L206.496,88.104L205.696,90.009L205.715,90.015L206.086,90.604L205.484,91.556L205.667,92.166L206.083,92.606L205.988,92.829L204.961,93.049L204.573,93.409L204.279,93.297L204.28,93.308L203.976,93.548L203.856,94.444L204.371,95.17L204.073,95.737L203.649,95.687L201.679,94.845L201.642,94.858L201.212,94.971L200.489,96.03L200.7,96.584L200.031,96.03L199.736,96.452L199.381,96.28L198.694,94.887L198.693,94.318L198.692,94.314L198.984,93.864L198.378,92.771L198.375,92.735L198.337,91.899L197.54,91.573L197.479,91.224L196.514,90.598L196.057,90.828L195.719,90.251L194.56,89.474L194.319,89.226L193.698,88.567L193.747,87.496L194.083,86.554L194.098,86.494L194.454,85.598L194.5,84.833L194.728,84.597L194.766,84.314L193.864,83.848L192.939,83.607L192.529,84.232L191.859,83.891L191.436,81.951L191.187,81.466L190.284,80.823L189.771,80.54L188.982,79.543L188.293,78.998L187.956,78.505L187.581,77.951L187.548,77.261L187.248,76.733L187.119,75.552L187.14,75.228L187.498,74.333L187.73,74.235L187.749,72.771L188.571,72.522L188.931,72.104L188.995,71.234L189.608,70.518L189.628,69.531L189.627,69.52L189.362,68.937L188.742,68.431L188.906,67.794L188.906,67.786L189.037,67.205L190.295,66.905L191.876,66.339L192.455,65.828L192.526,64.915L192.859,64.527L193.169,64.326L193.261,63.51L193.2,62.815L193.091,62.197L192.32,61.775L191.935,61.572L191.486,60.559L190.624,60.016L190.608,59.749Z" + }, + { + "fill": "rgb(204, 235, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.048; geo: [object Object]; name: Illinois", + "shape": "M191.665,59.695L194.13,59.551L194.553,59.524L196.702,59.416L196.879,59.407L198.957,59.29L199.768,59.25L200.101,59.214L202.07,59.051L202.597,59.004L204.533,58.859L204.496,60.29L204.943,61.132L205.356,61.584L205.869,63.153L206.358,64.024L206.358,64.024L206.503,65.645L206.604,66.781L206.684,67.667L206.778,68.72L206.942,70.559L207.09,72.217L207.099,72.311L207.279,74.532L207.42,76.32L207.605,78.18L207.683,79.057L207.761,79.93L207.446,80.557L207.379,81.257L207.305,81.263L207.736,81.934L208.048,82.929L208.048,82.932L208.059,83.267L208.178,84.389L207.6,85.244L207.673,85.65L207.17,85.899L207.226,86.321L206.155,87.622L206.031,87.498L206.084,87.672L206.496,88.104L205.696,90.009L205.715,90.015L206.086,90.604L205.484,91.556L205.667,92.166L206.083,92.606L205.988,92.829L204.961,93.049L204.573,93.409L204.279,93.297L204.28,93.308L203.976,93.548L203.856,94.444L204.371,95.17L204.073,95.737L203.649,95.687L201.679,94.845L201.642,94.858L201.212,94.971L200.489,96.03L200.7,96.584L200.031,96.03L199.736,96.452L199.381,96.28L198.694,94.887L198.693,94.318L198.692,94.314L198.984,93.864L198.378,92.771L198.375,92.735L198.337,91.899L197.54,91.573L197.479,91.224L196.514,90.598L196.057,90.828L195.719,90.251L194.56,89.474L194.319,89.226L193.698,88.567L193.747,87.496L194.083,86.554L194.098,86.494L194.454,85.598L194.5,84.833L194.728,84.597L194.766,84.314L193.864,83.848L192.939,83.607L192.529,84.232L191.859,83.891L191.436,81.951L191.187,81.466L190.284,80.823L189.771,80.54L188.982,79.543L188.293,78.998L187.956,78.505L187.581,77.951L187.548,77.261L187.248,76.733L187.119,75.552L187.14,75.228L187.498,74.333L187.73,74.235L187.749,72.771L188.571,72.522L188.931,72.104L188.995,71.234L189.608,70.518L189.628,69.531L189.627,69.52L189.362,68.937L188.742,68.431L188.906,67.794L188.906,67.786L189.037,67.205L190.295,66.905L191.876,66.339L192.455,65.828L192.526,64.915L192.859,64.527L193.169,64.326L193.261,63.51L193.2,62.815L193.091,62.197L192.32,61.775L191.935,61.572L191.486,60.559L190.624,60.016L190.608,59.749Z" + }, + { + "fill": "rgb(131, 207, 187)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.102; geo: [object Object]; name: Illinois", + "shape": "M191.665,59.695L194.13,59.551L194.553,59.524L196.702,59.416L196.879,59.407L198.957,59.29L199.768,59.25L200.101,59.214L202.07,59.051L202.597,59.004L204.533,58.859L204.496,60.29L204.943,61.132L205.356,61.584L205.869,63.153L206.358,64.024L206.358,64.024L206.503,65.645L206.604,66.781L206.684,67.667L206.778,68.72L206.942,70.559L207.09,72.217L207.099,72.311L207.279,74.532L207.42,76.32L207.605,78.18L207.683,79.057L207.761,79.93L207.446,80.557L207.379,81.257L207.305,81.263L207.736,81.934L208.048,82.929L208.048,82.932L208.059,83.267L208.178,84.389L207.6,85.244L207.673,85.65L207.17,85.899L207.226,86.321L206.155,87.622L206.031,87.498L206.084,87.672L206.496,88.104L205.696,90.009L205.715,90.015L206.086,90.604L205.484,91.556L205.667,92.166L206.083,92.606L205.988,92.829L204.961,93.049L204.573,93.409L204.279,93.297L204.28,93.308L203.976,93.548L203.856,94.444L204.371,95.17L204.073,95.737L203.649,95.687L201.679,94.845L201.642,94.858L201.212,94.971L200.489,96.03L200.7,96.584L200.031,96.03L199.736,96.452L199.381,96.28L198.694,94.887L198.693,94.318L198.692,94.314L198.984,93.864L198.378,92.771L198.375,92.735L198.337,91.899L197.54,91.573L197.479,91.224L196.514,90.598L196.057,90.828L195.719,90.251L194.56,89.474L194.319,89.226L193.698,88.567L193.747,87.496L194.083,86.554L194.098,86.494L194.454,85.598L194.5,84.833L194.728,84.597L194.766,84.314L193.864,83.848L192.939,83.607L192.529,84.232L191.859,83.891L191.436,81.951L191.187,81.466L190.284,80.823L189.771,80.54L188.982,79.543L188.293,78.998L187.956,78.505L187.581,77.951L187.548,77.261L187.248,76.733L187.119,75.552L187.14,75.228L187.498,74.333L187.73,74.235L187.749,72.771L188.571,72.522L188.931,72.104L188.995,71.234L189.608,70.518L189.628,69.531L189.627,69.52L189.362,68.937L188.742,68.431L188.906,67.794L188.906,67.786L189.037,67.205L190.295,66.905L191.876,66.339L192.455,65.828L192.526,64.915L192.859,64.527L193.169,64.326L193.261,63.51L193.2,62.815L193.091,62.197L192.32,61.775L191.935,61.572L191.486,60.559L190.624,60.016L190.608,59.749Z" + }, + { + "fill": "rgb(139, 210, 186)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.097; geo: [object Object]; name: Illinois", + "shape": "M191.665,59.695L194.13,59.551L194.553,59.524L196.702,59.416L196.879,59.407L198.957,59.29L199.768,59.25L200.101,59.214L202.07,59.051L202.597,59.004L204.533,58.859L204.496,60.29L204.943,61.132L205.356,61.584L205.869,63.153L206.358,64.024L206.358,64.024L206.503,65.645L206.604,66.781L206.684,67.667L206.778,68.72L206.942,70.559L207.09,72.217L207.099,72.311L207.279,74.532L207.42,76.32L207.605,78.18L207.683,79.057L207.761,79.93L207.446,80.557L207.379,81.257L207.305,81.263L207.736,81.934L208.048,82.929L208.048,82.932L208.059,83.267L208.178,84.389L207.6,85.244L207.673,85.65L207.17,85.899L207.226,86.321L206.155,87.622L206.031,87.498L206.084,87.672L206.496,88.104L205.696,90.009L205.715,90.015L206.086,90.604L205.484,91.556L205.667,92.166L206.083,92.606L205.988,92.829L204.961,93.049L204.573,93.409L204.279,93.297L204.28,93.308L203.976,93.548L203.856,94.444L204.371,95.17L204.073,95.737L203.649,95.687L201.679,94.845L201.642,94.858L201.212,94.971L200.489,96.03L200.7,96.584L200.031,96.03L199.736,96.452L199.381,96.28L198.694,94.887L198.693,94.318L198.692,94.314L198.984,93.864L198.378,92.771L198.375,92.735L198.337,91.899L197.54,91.573L197.479,91.224L196.514,90.598L196.057,90.828L195.719,90.251L194.56,89.474L194.319,89.226L193.698,88.567L193.747,87.496L194.083,86.554L194.098,86.494L194.454,85.598L194.5,84.833L194.728,84.597L194.766,84.314L193.864,83.848L192.939,83.607L192.529,84.232L191.859,83.891L191.436,81.951L191.187,81.466L190.284,80.823L189.771,80.54L188.982,79.543L188.293,78.998L187.956,78.505L187.581,77.951L187.548,77.261L187.248,76.733L187.119,75.552L187.14,75.228L187.498,74.333L187.73,74.235L187.749,72.771L188.571,72.522L188.931,72.104L188.995,71.234L189.608,70.518L189.628,69.531L189.627,69.52L189.362,68.937L188.742,68.431L188.906,67.794L188.906,67.786L189.037,67.205L190.295,66.905L191.876,66.339L192.455,65.828L192.526,64.915L192.859,64.527L193.169,64.326L193.261,63.51L193.2,62.815L193.091,62.197L192.32,61.775L191.935,61.572L191.486,60.559L190.624,60.016L190.608,59.749Z" + }, + { + "fill": "rgb(91, 191, 192)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.13; geo: [object Object]; name: Illinois", + "shape": "M191.665,59.695L194.13,59.551L194.553,59.524L196.702,59.416L196.879,59.407L198.957,59.29L199.768,59.25L200.101,59.214L202.07,59.051L202.597,59.004L204.533,58.859L204.496,60.29L204.943,61.132L205.356,61.584L205.869,63.153L206.358,64.024L206.358,64.024L206.503,65.645L206.604,66.781L206.684,67.667L206.778,68.72L206.942,70.559L207.09,72.217L207.099,72.311L207.279,74.532L207.42,76.32L207.605,78.18L207.683,79.057L207.761,79.93L207.446,80.557L207.379,81.257L207.305,81.263L207.736,81.934L208.048,82.929L208.048,82.932L208.059,83.267L208.178,84.389L207.6,85.244L207.673,85.65L207.17,85.899L207.226,86.321L206.155,87.622L206.031,87.498L206.084,87.672L206.496,88.104L205.696,90.009L205.715,90.015L206.086,90.604L205.484,91.556L205.667,92.166L206.083,92.606L205.988,92.829L204.961,93.049L204.573,93.409L204.279,93.297L204.28,93.308L203.976,93.548L203.856,94.444L204.371,95.17L204.073,95.737L203.649,95.687L201.679,94.845L201.642,94.858L201.212,94.971L200.489,96.03L200.7,96.584L200.031,96.03L199.736,96.452L199.381,96.28L198.694,94.887L198.693,94.318L198.692,94.314L198.984,93.864L198.378,92.771L198.375,92.735L198.337,91.899L197.54,91.573L197.479,91.224L196.514,90.598L196.057,90.828L195.719,90.251L194.56,89.474L194.319,89.226L193.698,88.567L193.747,87.496L194.083,86.554L194.098,86.494L194.454,85.598L194.5,84.833L194.728,84.597L194.766,84.314L193.864,83.848L192.939,83.607L192.529,84.232L191.859,83.891L191.436,81.951L191.187,81.466L190.284,80.823L189.771,80.54L188.982,79.543L188.293,78.998L187.956,78.505L187.581,77.951L187.548,77.261L187.248,76.733L187.119,75.552L187.14,75.228L187.498,74.333L187.73,74.235L187.749,72.771L188.571,72.522L188.931,72.104L188.995,71.234L189.608,70.518L189.628,69.531L189.627,69.52L189.362,68.937L188.742,68.431L188.906,67.794L188.906,67.786L189.037,67.205L190.295,66.905L191.876,66.339L192.455,65.828L192.526,64.915L192.859,64.527L193.169,64.326L193.261,63.51L193.2,62.815L193.091,62.197L192.32,61.775L191.935,61.572L191.486,60.559L190.624,60.016L190.608,59.749Z" + }, + { + "fill": "rgb(96, 193, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.126; geo: [object Object]; name: Illinois", + "shape": "M191.665,59.695L194.13,59.551L194.553,59.524L196.702,59.416L196.879,59.407L198.957,59.29L199.768,59.25L200.101,59.214L202.07,59.051L202.597,59.004L204.533,58.859L204.496,60.29L204.943,61.132L205.356,61.584L205.869,63.153L206.358,64.024L206.358,64.024L206.503,65.645L206.604,66.781L206.684,67.667L206.778,68.72L206.942,70.559L207.09,72.217L207.099,72.311L207.279,74.532L207.42,76.32L207.605,78.18L207.683,79.057L207.761,79.93L207.446,80.557L207.379,81.257L207.305,81.263L207.736,81.934L208.048,82.929L208.048,82.932L208.059,83.267L208.178,84.389L207.6,85.244L207.673,85.65L207.17,85.899L207.226,86.321L206.155,87.622L206.031,87.498L206.084,87.672L206.496,88.104L205.696,90.009L205.715,90.015L206.086,90.604L205.484,91.556L205.667,92.166L206.083,92.606L205.988,92.829L204.961,93.049L204.573,93.409L204.279,93.297L204.28,93.308L203.976,93.548L203.856,94.444L204.371,95.17L204.073,95.737L203.649,95.687L201.679,94.845L201.642,94.858L201.212,94.971L200.489,96.03L200.7,96.584L200.031,96.03L199.736,96.452L199.381,96.28L198.694,94.887L198.693,94.318L198.692,94.314L198.984,93.864L198.378,92.771L198.375,92.735L198.337,91.899L197.54,91.573L197.479,91.224L196.514,90.598L196.057,90.828L195.719,90.251L194.56,89.474L194.319,89.226L193.698,88.567L193.747,87.496L194.083,86.554L194.098,86.494L194.454,85.598L194.5,84.833L194.728,84.597L194.766,84.314L193.864,83.848L192.939,83.607L192.529,84.232L191.859,83.891L191.436,81.951L191.187,81.466L190.284,80.823L189.771,80.54L188.982,79.543L188.293,78.998L187.956,78.505L187.581,77.951L187.548,77.261L187.248,76.733L187.119,75.552L187.14,75.228L187.498,74.333L187.73,74.235L187.749,72.771L188.571,72.522L188.931,72.104L188.995,71.234L189.608,70.518L189.628,69.531L189.627,69.52L189.362,68.937L188.742,68.431L188.906,67.794L188.906,67.786L189.037,67.205L190.295,66.905L191.876,66.339L192.455,65.828L192.526,64.915L192.859,64.527L193.169,64.326L193.261,63.51L193.2,62.815L193.091,62.197L192.32,61.775L191.935,61.572L191.486,60.559L190.624,60.016L190.608,59.749Z" + }, + { + "fill": "rgb(42, 154, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.18; geo: [object Object]; name: Illinois", + "shape": "M191.665,59.695L194.13,59.551L194.553,59.524L196.702,59.416L196.879,59.407L198.957,59.29L199.768,59.25L200.101,59.214L202.07,59.051L202.597,59.004L204.533,58.859L204.496,60.29L204.943,61.132L205.356,61.584L205.869,63.153L206.358,64.024L206.358,64.024L206.503,65.645L206.604,66.781L206.684,67.667L206.778,68.72L206.942,70.559L207.09,72.217L207.099,72.311L207.279,74.532L207.42,76.32L207.605,78.18L207.683,79.057L207.761,79.93L207.446,80.557L207.379,81.257L207.305,81.263L207.736,81.934L208.048,82.929L208.048,82.932L208.059,83.267L208.178,84.389L207.6,85.244L207.673,85.65L207.17,85.899L207.226,86.321L206.155,87.622L206.031,87.498L206.084,87.672L206.496,88.104L205.696,90.009L205.715,90.015L206.086,90.604L205.484,91.556L205.667,92.166L206.083,92.606L205.988,92.829L204.961,93.049L204.573,93.409L204.279,93.297L204.28,93.308L203.976,93.548L203.856,94.444L204.371,95.17L204.073,95.737L203.649,95.687L201.679,94.845L201.642,94.858L201.212,94.971L200.489,96.03L200.7,96.584L200.031,96.03L199.736,96.452L199.381,96.28L198.694,94.887L198.693,94.318L198.692,94.314L198.984,93.864L198.378,92.771L198.375,92.735L198.337,91.899L197.54,91.573L197.479,91.224L196.514,90.598L196.057,90.828L195.719,90.251L194.56,89.474L194.319,89.226L193.698,88.567L193.747,87.496L194.083,86.554L194.098,86.494L194.454,85.598L194.5,84.833L194.728,84.597L194.766,84.314L193.864,83.848L192.939,83.607L192.529,84.232L191.859,83.891L191.436,81.951L191.187,81.466L190.284,80.823L189.771,80.54L188.982,79.543L188.293,78.998L187.956,78.505L187.581,77.951L187.548,77.261L187.248,76.733L187.119,75.552L187.14,75.228L187.498,74.333L187.73,74.235L187.749,72.771L188.571,72.522L188.931,72.104L188.995,71.234L189.608,70.518L189.628,69.531L189.627,69.52L189.362,68.937L188.742,68.431L188.906,67.794L188.906,67.786L189.037,67.205L190.295,66.905L191.876,66.339L192.455,65.828L192.526,64.915L192.859,64.527L193.169,64.326L193.261,63.51L193.2,62.815L193.091,62.197L192.32,61.775L191.935,61.572L191.486,60.559L190.624,60.016L190.608,59.749Z" + }, + { + "fill": "rgb(82, 186, 193)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.137; geo: [object Object]; name: Illinois", + "shape": "M191.665,59.695L194.13,59.551L194.553,59.524L196.702,59.416L196.879,59.407L198.957,59.29L199.768,59.25L200.101,59.214L202.07,59.051L202.597,59.004L204.533,58.859L204.496,60.29L204.943,61.132L205.356,61.584L205.869,63.153L206.358,64.024L206.358,64.024L206.503,65.645L206.604,66.781L206.684,67.667L206.778,68.72L206.942,70.559L207.09,72.217L207.099,72.311L207.279,74.532L207.42,76.32L207.605,78.18L207.683,79.057L207.761,79.93L207.446,80.557L207.379,81.257L207.305,81.263L207.736,81.934L208.048,82.929L208.048,82.932L208.059,83.267L208.178,84.389L207.6,85.244L207.673,85.65L207.17,85.899L207.226,86.321L206.155,87.622L206.031,87.498L206.084,87.672L206.496,88.104L205.696,90.009L205.715,90.015L206.086,90.604L205.484,91.556L205.667,92.166L206.083,92.606L205.988,92.829L204.961,93.049L204.573,93.409L204.279,93.297L204.28,93.308L203.976,93.548L203.856,94.444L204.371,95.17L204.073,95.737L203.649,95.687L201.679,94.845L201.642,94.858L201.212,94.971L200.489,96.03L200.7,96.584L200.031,96.03L199.736,96.452L199.381,96.28L198.694,94.887L198.693,94.318L198.692,94.314L198.984,93.864L198.378,92.771L198.375,92.735L198.337,91.899L197.54,91.573L197.479,91.224L196.514,90.598L196.057,90.828L195.719,90.251L194.56,89.474L194.319,89.226L193.698,88.567L193.747,87.496L194.083,86.554L194.098,86.494L194.454,85.598L194.5,84.833L194.728,84.597L194.766,84.314L193.864,83.848L192.939,83.607L192.529,84.232L191.859,83.891L191.436,81.951L191.187,81.466L190.284,80.823L189.771,80.54L188.982,79.543L188.293,78.998L187.956,78.505L187.581,77.951L187.548,77.261L187.248,76.733L187.119,75.552L187.14,75.228L187.498,74.333L187.73,74.235L187.749,72.771L188.571,72.522L188.931,72.104L188.995,71.234L189.608,70.518L189.628,69.531L189.627,69.52L189.362,68.937L188.742,68.431L188.906,67.794L188.906,67.786L189.037,67.205L190.295,66.905L191.876,66.339L192.455,65.828L192.526,64.915L192.859,64.527L193.169,64.326L193.261,63.51L193.2,62.815L193.091,62.197L192.32,61.775L191.935,61.572L191.486,60.559L190.624,60.016L190.608,59.749Z" + }, + { + "fill": "rgb(200, 233, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.052; geo: [object Object]; name: Illinois", + "shape": "M191.665,59.695L194.13,59.551L194.553,59.524L196.702,59.416L196.879,59.407L198.957,59.29L199.768,59.25L200.101,59.214L202.07,59.051L202.597,59.004L204.533,58.859L204.496,60.29L204.943,61.132L205.356,61.584L205.869,63.153L206.358,64.024L206.358,64.024L206.503,65.645L206.604,66.781L206.684,67.667L206.778,68.72L206.942,70.559L207.09,72.217L207.099,72.311L207.279,74.532L207.42,76.32L207.605,78.18L207.683,79.057L207.761,79.93L207.446,80.557L207.379,81.257L207.305,81.263L207.736,81.934L208.048,82.929L208.048,82.932L208.059,83.267L208.178,84.389L207.6,85.244L207.673,85.65L207.17,85.899L207.226,86.321L206.155,87.622L206.031,87.498L206.084,87.672L206.496,88.104L205.696,90.009L205.715,90.015L206.086,90.604L205.484,91.556L205.667,92.166L206.083,92.606L205.988,92.829L204.961,93.049L204.573,93.409L204.279,93.297L204.28,93.308L203.976,93.548L203.856,94.444L204.371,95.17L204.073,95.737L203.649,95.687L201.679,94.845L201.642,94.858L201.212,94.971L200.489,96.03L200.7,96.584L200.031,96.03L199.736,96.452L199.381,96.28L198.694,94.887L198.693,94.318L198.692,94.314L198.984,93.864L198.378,92.771L198.375,92.735L198.337,91.899L197.54,91.573L197.479,91.224L196.514,90.598L196.057,90.828L195.719,90.251L194.56,89.474L194.319,89.226L193.698,88.567L193.747,87.496L194.083,86.554L194.098,86.494L194.454,85.598L194.5,84.833L194.728,84.597L194.766,84.314L193.864,83.848L192.939,83.607L192.529,84.232L191.859,83.891L191.436,81.951L191.187,81.466L190.284,80.823L189.771,80.54L188.982,79.543L188.293,78.998L187.956,78.505L187.581,77.951L187.548,77.261L187.248,76.733L187.119,75.552L187.14,75.228L187.498,74.333L187.73,74.235L187.749,72.771L188.571,72.522L188.931,72.104L188.995,71.234L189.608,70.518L189.628,69.531L189.627,69.52L189.362,68.937L188.742,68.431L188.906,67.794L188.906,67.786L189.037,67.205L190.295,66.905L191.876,66.339L192.455,65.828L192.526,64.915L192.859,64.527L193.169,64.326L193.261,63.51L193.2,62.815L193.091,62.197L192.32,61.775L191.935,61.572L191.486,60.559L190.624,60.016L190.608,59.749Z" + }, + { + "fill": "rgb(199, 233, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.053; geo: [object Object]; name: Illinois", + "shape": "M191.665,59.695L194.13,59.551L194.553,59.524L196.702,59.416L196.879,59.407L198.957,59.29L199.768,59.25L200.101,59.214L202.07,59.051L202.597,59.004L204.533,58.859L204.496,60.29L204.943,61.132L205.356,61.584L205.869,63.153L206.358,64.024L206.358,64.024L206.503,65.645L206.604,66.781L206.684,67.667L206.778,68.72L206.942,70.559L207.09,72.217L207.099,72.311L207.279,74.532L207.42,76.32L207.605,78.18L207.683,79.057L207.761,79.93L207.446,80.557L207.379,81.257L207.305,81.263L207.736,81.934L208.048,82.929L208.048,82.932L208.059,83.267L208.178,84.389L207.6,85.244L207.673,85.65L207.17,85.899L207.226,86.321L206.155,87.622L206.031,87.498L206.084,87.672L206.496,88.104L205.696,90.009L205.715,90.015L206.086,90.604L205.484,91.556L205.667,92.166L206.083,92.606L205.988,92.829L204.961,93.049L204.573,93.409L204.279,93.297L204.28,93.308L203.976,93.548L203.856,94.444L204.371,95.17L204.073,95.737L203.649,95.687L201.679,94.845L201.642,94.858L201.212,94.971L200.489,96.03L200.7,96.584L200.031,96.03L199.736,96.452L199.381,96.28L198.694,94.887L198.693,94.318L198.692,94.314L198.984,93.864L198.378,92.771L198.375,92.735L198.337,91.899L197.54,91.573L197.479,91.224L196.514,90.598L196.057,90.828L195.719,90.251L194.56,89.474L194.319,89.226L193.698,88.567L193.747,87.496L194.083,86.554L194.098,86.494L194.454,85.598L194.5,84.833L194.728,84.597L194.766,84.314L193.864,83.848L192.939,83.607L192.529,84.232L191.859,83.891L191.436,81.951L191.187,81.466L190.284,80.823L189.771,80.54L188.982,79.543L188.293,78.998L187.956,78.505L187.581,77.951L187.548,77.261L187.248,76.733L187.119,75.552L187.14,75.228L187.498,74.333L187.73,74.235L187.749,72.771L188.571,72.522L188.931,72.104L188.995,71.234L189.608,70.518L189.628,69.531L189.627,69.52L189.362,68.937L188.742,68.431L188.906,67.794L188.906,67.786L189.037,67.205L190.295,66.905L191.876,66.339L192.455,65.828L192.526,64.915L192.859,64.527L193.169,64.326L193.261,63.51L193.2,62.815L193.091,62.197L192.32,61.775L191.935,61.572L191.486,60.559L190.624,60.016L190.608,59.749Z" + }, + { + "fill": "rgb(168, 221, 183)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.077; geo: [object Object]; name: Indiana", + "shape": "M214.932,62.825L215.552,62.758L217.377,62.551L217.837,62.499L219.679,62.285L219.818,62.703L219.95,63.818L220.051,64.515L220.174,65.558L220.188,65.677L220.398,67.448L220.451,67.899L220.605,69.202L220.729,70.249L220.904,71.721L220.938,72.01L221.144,74.066L221.196,74.66L221.347,75.938L221.474,77.008L221.492,77.317L221.646,78.782L221.805,80.122L221.569,80.656L221.57,80.659L221.709,81.526L222.131,81.773L222.11,82.233L221.025,82.558L220.174,83.136L219.456,82.91L218.926,83.031L219.088,83.972L219.098,84.396L218.286,85.039L218.146,85.479L217.69,86.301L217.433,86.182L216.935,86.989L216.815,88.169L216.559,88.244L215.16,88.046L214.715,87.199L214.066,87.678L213.967,88.2L213.953,89.002L213.545,89.08L213.243,89.655L212.316,88.685L211.5,89.224L211.112,90.123L210.015,89.714L209.834,89.599L209.021,89.381L208.76,89.623L208.215,89.237L208.225,90.201L207.754,89.785L207.754,89.789L206.571,89.866L206.735,90.462L206.086,90.604L205.715,90.015L205.696,90.009L206.496,88.104L206.084,87.672L206.031,87.498L206.155,87.622L207.226,86.321L207.17,85.899L207.673,85.65L207.6,85.244L208.178,84.389L208.059,83.267L208.048,82.932L208.048,82.929L207.736,81.934L207.305,81.263L207.379,81.257L207.446,80.557L207.761,79.93L207.683,79.057L207.605,78.18L207.42,76.32L207.279,74.532L207.099,72.311L207.09,72.217L206.942,70.559L206.778,68.72L206.684,67.667L206.604,66.781L206.503,65.645L206.358,64.024L206.358,64.024L206.875,64.394L207.92,64.447L209.305,63.733L209.805,63.342L211.278,63.201L212.75,63.048L213.566,62.963Z" + }, + { + "fill": "rgb(195, 231, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.057; geo: [object Object]; name: Indiana", + "shape": "M214.932,62.825L215.552,62.758L217.377,62.551L217.837,62.499L219.679,62.285L219.818,62.703L219.95,63.818L220.051,64.515L220.174,65.558L220.188,65.677L220.398,67.448L220.451,67.899L220.605,69.202L220.729,70.249L220.904,71.721L220.938,72.01L221.144,74.066L221.196,74.66L221.347,75.938L221.474,77.008L221.492,77.317L221.646,78.782L221.805,80.122L221.569,80.656L221.57,80.659L221.709,81.526L222.131,81.773L222.11,82.233L221.025,82.558L220.174,83.136L219.456,82.91L218.926,83.031L219.088,83.972L219.098,84.396L218.286,85.039L218.146,85.479L217.69,86.301L217.433,86.182L216.935,86.989L216.815,88.169L216.559,88.244L215.16,88.046L214.715,87.199L214.066,87.678L213.967,88.2L213.953,89.002L213.545,89.08L213.243,89.655L212.316,88.685L211.5,89.224L211.112,90.123L210.015,89.714L209.834,89.599L209.021,89.381L208.76,89.623L208.215,89.237L208.225,90.201L207.754,89.785L207.754,89.789L206.571,89.866L206.735,90.462L206.086,90.604L205.715,90.015L205.696,90.009L206.496,88.104L206.084,87.672L206.031,87.498L206.155,87.622L207.226,86.321L207.17,85.899L207.673,85.65L207.6,85.244L208.178,84.389L208.059,83.267L208.048,82.932L208.048,82.929L207.736,81.934L207.305,81.263L207.379,81.257L207.446,80.557L207.761,79.93L207.683,79.057L207.605,78.18L207.42,76.32L207.279,74.532L207.099,72.311L207.09,72.217L206.942,70.559L206.778,68.72L206.684,67.667L206.604,66.781L206.503,65.645L206.358,64.024L206.358,64.024L206.875,64.394L207.92,64.447L209.305,63.733L209.805,63.342L211.278,63.201L212.75,63.048L213.566,62.963Z" + }, + { + "fill": "rgb(108, 198, 190)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.117; geo: [object Object]; name: Indiana", + "shape": "M214.932,62.825L215.552,62.758L217.377,62.551L217.837,62.499L219.679,62.285L219.818,62.703L219.95,63.818L220.051,64.515L220.174,65.558L220.188,65.677L220.398,67.448L220.451,67.899L220.605,69.202L220.729,70.249L220.904,71.721L220.938,72.01L221.144,74.066L221.196,74.66L221.347,75.938L221.474,77.008L221.492,77.317L221.646,78.782L221.805,80.122L221.569,80.656L221.57,80.659L221.709,81.526L222.131,81.773L222.11,82.233L221.025,82.558L220.174,83.136L219.456,82.91L218.926,83.031L219.088,83.972L219.098,84.396L218.286,85.039L218.146,85.479L217.69,86.301L217.433,86.182L216.935,86.989L216.815,88.169L216.559,88.244L215.16,88.046L214.715,87.199L214.066,87.678L213.967,88.2L213.953,89.002L213.545,89.08L213.243,89.655L212.316,88.685L211.5,89.224L211.112,90.123L210.015,89.714L209.834,89.599L209.021,89.381L208.76,89.623L208.215,89.237L208.225,90.201L207.754,89.785L207.754,89.789L206.571,89.866L206.735,90.462L206.086,90.604L205.715,90.015L205.696,90.009L206.496,88.104L206.084,87.672L206.031,87.498L206.155,87.622L207.226,86.321L207.17,85.899L207.673,85.65L207.6,85.244L208.178,84.389L208.059,83.267L208.048,82.932L208.048,82.929L207.736,81.934L207.305,81.263L207.379,81.257L207.446,80.557L207.761,79.93L207.683,79.057L207.605,78.18L207.42,76.32L207.279,74.532L207.099,72.311L207.09,72.217L206.942,70.559L206.778,68.72L206.684,67.667L206.604,66.781L206.503,65.645L206.358,64.024L206.358,64.024L206.875,64.394L207.92,64.447L209.305,63.733L209.805,63.342L211.278,63.201L212.75,63.048L213.566,62.963Z" + }, + { + "fill": "rgb(111, 199, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.115; geo: [object Object]; name: Indiana", + "shape": "M214.932,62.825L215.552,62.758L217.377,62.551L217.837,62.499L219.679,62.285L219.818,62.703L219.95,63.818L220.051,64.515L220.174,65.558L220.188,65.677L220.398,67.448L220.451,67.899L220.605,69.202L220.729,70.249L220.904,71.721L220.938,72.01L221.144,74.066L221.196,74.66L221.347,75.938L221.474,77.008L221.492,77.317L221.646,78.782L221.805,80.122L221.569,80.656L221.57,80.659L221.709,81.526L222.131,81.773L222.11,82.233L221.025,82.558L220.174,83.136L219.456,82.91L218.926,83.031L219.088,83.972L219.098,84.396L218.286,85.039L218.146,85.479L217.69,86.301L217.433,86.182L216.935,86.989L216.815,88.169L216.559,88.244L215.16,88.046L214.715,87.199L214.066,87.678L213.967,88.2L213.953,89.002L213.545,89.08L213.243,89.655L212.316,88.685L211.5,89.224L211.112,90.123L210.015,89.714L209.834,89.599L209.021,89.381L208.76,89.623L208.215,89.237L208.225,90.201L207.754,89.785L207.754,89.789L206.571,89.866L206.735,90.462L206.086,90.604L205.715,90.015L205.696,90.009L206.496,88.104L206.084,87.672L206.031,87.498L206.155,87.622L207.226,86.321L207.17,85.899L207.673,85.65L207.6,85.244L208.178,84.389L208.059,83.267L208.048,82.932L208.048,82.929L207.736,81.934L207.305,81.263L207.379,81.257L207.446,80.557L207.761,79.93L207.683,79.057L207.605,78.18L207.42,76.32L207.279,74.532L207.099,72.311L207.09,72.217L206.942,70.559L206.778,68.72L206.684,67.667L206.604,66.781L206.503,65.645L206.358,64.024L206.358,64.024L206.875,64.394L207.92,64.447L209.305,63.733L209.805,63.342L211.278,63.201L212.75,63.048L213.566,62.963Z" + }, + { + "fill": "rgb(63, 175, 194)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.154; geo: [object Object]; name: Indiana", + "shape": "M214.932,62.825L215.552,62.758L217.377,62.551L217.837,62.499L219.679,62.285L219.818,62.703L219.95,63.818L220.051,64.515L220.174,65.558L220.188,65.677L220.398,67.448L220.451,67.899L220.605,69.202L220.729,70.249L220.904,71.721L220.938,72.01L221.144,74.066L221.196,74.66L221.347,75.938L221.474,77.008L221.492,77.317L221.646,78.782L221.805,80.122L221.569,80.656L221.57,80.659L221.709,81.526L222.131,81.773L222.11,82.233L221.025,82.558L220.174,83.136L219.456,82.91L218.926,83.031L219.088,83.972L219.098,84.396L218.286,85.039L218.146,85.479L217.69,86.301L217.433,86.182L216.935,86.989L216.815,88.169L216.559,88.244L215.16,88.046L214.715,87.199L214.066,87.678L213.967,88.2L213.953,89.002L213.545,89.08L213.243,89.655L212.316,88.685L211.5,89.224L211.112,90.123L210.015,89.714L209.834,89.599L209.021,89.381L208.76,89.623L208.215,89.237L208.225,90.201L207.754,89.785L207.754,89.789L206.571,89.866L206.735,90.462L206.086,90.604L205.715,90.015L205.696,90.009L206.496,88.104L206.084,87.672L206.031,87.498L206.155,87.622L207.226,86.321L207.17,85.899L207.673,85.65L207.6,85.244L208.178,84.389L208.059,83.267L208.048,82.932L208.048,82.929L207.736,81.934L207.305,81.263L207.379,81.257L207.446,80.557L207.761,79.93L207.683,79.057L207.605,78.18L207.42,76.32L207.279,74.532L207.099,72.311L207.09,72.217L206.942,70.559L206.778,68.72L206.684,67.667L206.604,66.781L206.503,65.645L206.358,64.024L206.358,64.024L206.875,64.394L207.92,64.447L209.305,63.733L209.805,63.342L211.278,63.201L212.75,63.048L213.566,62.963Z" + }, + { + "fill": "rgb(100, 195, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.123; geo: [object Object]; name: Indiana", + "shape": "M214.932,62.825L215.552,62.758L217.377,62.551L217.837,62.499L219.679,62.285L219.818,62.703L219.95,63.818L220.051,64.515L220.174,65.558L220.188,65.677L220.398,67.448L220.451,67.899L220.605,69.202L220.729,70.249L220.904,71.721L220.938,72.01L221.144,74.066L221.196,74.66L221.347,75.938L221.474,77.008L221.492,77.317L221.646,78.782L221.805,80.122L221.569,80.656L221.57,80.659L221.709,81.526L222.131,81.773L222.11,82.233L221.025,82.558L220.174,83.136L219.456,82.91L218.926,83.031L219.088,83.972L219.098,84.396L218.286,85.039L218.146,85.479L217.69,86.301L217.433,86.182L216.935,86.989L216.815,88.169L216.559,88.244L215.16,88.046L214.715,87.199L214.066,87.678L213.967,88.2L213.953,89.002L213.545,89.08L213.243,89.655L212.316,88.685L211.5,89.224L211.112,90.123L210.015,89.714L209.834,89.599L209.021,89.381L208.76,89.623L208.215,89.237L208.225,90.201L207.754,89.785L207.754,89.789L206.571,89.866L206.735,90.462L206.086,90.604L205.715,90.015L205.696,90.009L206.496,88.104L206.084,87.672L206.031,87.498L206.155,87.622L207.226,86.321L207.17,85.899L207.673,85.65L207.6,85.244L208.178,84.389L208.059,83.267L208.048,82.932L208.048,82.929L207.736,81.934L207.305,81.263L207.379,81.257L207.446,80.557L207.761,79.93L207.683,79.057L207.605,78.18L207.42,76.32L207.279,74.532L207.099,72.311L207.09,72.217L206.942,70.559L206.778,68.72L206.684,67.667L206.604,66.781L206.503,65.645L206.358,64.024L206.358,64.024L206.875,64.394L207.92,64.447L209.305,63.733L209.805,63.342L211.278,63.201L212.75,63.048L213.566,62.963Z" + }, + { + "fill": "rgb(37, 141, 187)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.193; geo: [object Object]; name: Indiana", + "shape": "M214.932,62.825L215.552,62.758L217.377,62.551L217.837,62.499L219.679,62.285L219.818,62.703L219.95,63.818L220.051,64.515L220.174,65.558L220.188,65.677L220.398,67.448L220.451,67.899L220.605,69.202L220.729,70.249L220.904,71.721L220.938,72.01L221.144,74.066L221.196,74.66L221.347,75.938L221.474,77.008L221.492,77.317L221.646,78.782L221.805,80.122L221.569,80.656L221.57,80.659L221.709,81.526L222.131,81.773L222.11,82.233L221.025,82.558L220.174,83.136L219.456,82.91L218.926,83.031L219.088,83.972L219.098,84.396L218.286,85.039L218.146,85.479L217.69,86.301L217.433,86.182L216.935,86.989L216.815,88.169L216.559,88.244L215.16,88.046L214.715,87.199L214.066,87.678L213.967,88.2L213.953,89.002L213.545,89.08L213.243,89.655L212.316,88.685L211.5,89.224L211.112,90.123L210.015,89.714L209.834,89.599L209.021,89.381L208.76,89.623L208.215,89.237L208.225,90.201L207.754,89.785L207.754,89.789L206.571,89.866L206.735,90.462L206.086,90.604L205.715,90.015L205.696,90.009L206.496,88.104L206.084,87.672L206.031,87.498L206.155,87.622L207.226,86.321L207.17,85.899L207.673,85.65L207.6,85.244L208.178,84.389L208.059,83.267L208.048,82.932L208.048,82.929L207.736,81.934L207.305,81.263L207.379,81.257L207.446,80.557L207.761,79.93L207.683,79.057L207.605,78.18L207.42,76.32L207.279,74.532L207.099,72.311L207.09,72.217L206.942,70.559L206.778,68.72L206.684,67.667L206.604,66.781L206.503,65.645L206.358,64.024L206.358,64.024L206.875,64.394L207.92,64.447L209.305,63.733L209.805,63.342L211.278,63.201L212.75,63.048L213.566,62.963Z" + }, + { + "fill": "rgb(120, 203, 188)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.109; geo: [object Object]; name: Indiana", + "shape": "M214.932,62.825L215.552,62.758L217.377,62.551L217.837,62.499L219.679,62.285L219.818,62.703L219.95,63.818L220.051,64.515L220.174,65.558L220.188,65.677L220.398,67.448L220.451,67.899L220.605,69.202L220.729,70.249L220.904,71.721L220.938,72.01L221.144,74.066L221.196,74.66L221.347,75.938L221.474,77.008L221.492,77.317L221.646,78.782L221.805,80.122L221.569,80.656L221.57,80.659L221.709,81.526L222.131,81.773L222.11,82.233L221.025,82.558L220.174,83.136L219.456,82.91L218.926,83.031L219.088,83.972L219.098,84.396L218.286,85.039L218.146,85.479L217.69,86.301L217.433,86.182L216.935,86.989L216.815,88.169L216.559,88.244L215.16,88.046L214.715,87.199L214.066,87.678L213.967,88.2L213.953,89.002L213.545,89.08L213.243,89.655L212.316,88.685L211.5,89.224L211.112,90.123L210.015,89.714L209.834,89.599L209.021,89.381L208.76,89.623L208.215,89.237L208.225,90.201L207.754,89.785L207.754,89.789L206.571,89.866L206.735,90.462L206.086,90.604L205.715,90.015L205.696,90.009L206.496,88.104L206.084,87.672L206.031,87.498L206.155,87.622L207.226,86.321L207.17,85.899L207.673,85.65L207.6,85.244L208.178,84.389L208.059,83.267L208.048,82.932L208.048,82.929L207.736,81.934L207.305,81.263L207.379,81.257L207.446,80.557L207.761,79.93L207.683,79.057L207.605,78.18L207.42,76.32L207.279,74.532L207.099,72.311L207.09,72.217L206.942,70.559L206.778,68.72L206.684,67.667L206.604,66.781L206.503,65.645L206.358,64.024L206.358,64.024L206.875,64.394L207.92,64.447L209.305,63.733L209.805,63.342L211.278,63.201L212.75,63.048L213.566,62.963Z" + }, + { + "fill": "rgb(222, 242, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.03; geo: [object Object]; name: Indiana", + "shape": "M214.932,62.825L215.552,62.758L217.377,62.551L217.837,62.499L219.679,62.285L219.818,62.703L219.95,63.818L220.051,64.515L220.174,65.558L220.188,65.677L220.398,67.448L220.451,67.899L220.605,69.202L220.729,70.249L220.904,71.721L220.938,72.01L221.144,74.066L221.196,74.66L221.347,75.938L221.474,77.008L221.492,77.317L221.646,78.782L221.805,80.122L221.569,80.656L221.57,80.659L221.709,81.526L222.131,81.773L222.11,82.233L221.025,82.558L220.174,83.136L219.456,82.91L218.926,83.031L219.088,83.972L219.098,84.396L218.286,85.039L218.146,85.479L217.69,86.301L217.433,86.182L216.935,86.989L216.815,88.169L216.559,88.244L215.16,88.046L214.715,87.199L214.066,87.678L213.967,88.2L213.953,89.002L213.545,89.08L213.243,89.655L212.316,88.685L211.5,89.224L211.112,90.123L210.015,89.714L209.834,89.599L209.021,89.381L208.76,89.623L208.215,89.237L208.225,90.201L207.754,89.785L207.754,89.789L206.571,89.866L206.735,90.462L206.086,90.604L205.715,90.015L205.696,90.009L206.496,88.104L206.084,87.672L206.031,87.498L206.155,87.622L207.226,86.321L207.17,85.899L207.673,85.65L207.6,85.244L208.178,84.389L208.059,83.267L208.048,82.932L208.048,82.929L207.736,81.934L207.305,81.263L207.379,81.257L207.446,80.557L207.761,79.93L207.683,79.057L207.605,78.18L207.42,76.32L207.279,74.532L207.099,72.311L207.09,72.217L206.942,70.559L206.778,68.72L206.684,67.667L206.604,66.781L206.503,65.645L206.358,64.024L206.358,64.024L206.875,64.394L207.92,64.447L209.305,63.733L209.805,63.342L211.278,63.201L212.75,63.048L213.566,62.963Z" + }, + { + "fill": "rgb(225, 243, 183)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.026; geo: [object Object]; name: Indiana", + "shape": "M214.932,62.825L215.552,62.758L217.377,62.551L217.837,62.499L219.679,62.285L219.818,62.703L219.95,63.818L220.051,64.515L220.174,65.558L220.188,65.677L220.398,67.448L220.451,67.899L220.605,69.202L220.729,70.249L220.904,71.721L220.938,72.01L221.144,74.066L221.196,74.66L221.347,75.938L221.474,77.008L221.492,77.317L221.646,78.782L221.805,80.122L221.569,80.656L221.57,80.659L221.709,81.526L222.131,81.773L222.11,82.233L221.025,82.558L220.174,83.136L219.456,82.91L218.926,83.031L219.088,83.972L219.098,84.396L218.286,85.039L218.146,85.479L217.69,86.301L217.433,86.182L216.935,86.989L216.815,88.169L216.559,88.244L215.16,88.046L214.715,87.199L214.066,87.678L213.967,88.2L213.953,89.002L213.545,89.08L213.243,89.655L212.316,88.685L211.5,89.224L211.112,90.123L210.015,89.714L209.834,89.599L209.021,89.381L208.76,89.623L208.215,89.237L208.225,90.201L207.754,89.785L207.754,89.789L206.571,89.866L206.735,90.462L206.086,90.604L205.715,90.015L205.696,90.009L206.496,88.104L206.084,87.672L206.031,87.498L206.155,87.622L207.226,86.321L207.17,85.899L207.673,85.65L207.6,85.244L208.178,84.389L208.059,83.267L208.048,82.932L208.048,82.929L207.736,81.934L207.305,81.263L207.379,81.257L207.446,80.557L207.761,79.93L207.683,79.057L207.605,78.18L207.42,76.32L207.279,74.532L207.099,72.311L207.09,72.217L206.942,70.559L206.778,68.72L206.684,67.667L206.604,66.781L206.503,65.645L206.358,64.024L206.358,64.024L206.875,64.394L207.92,64.447L209.305,63.733L209.805,63.342L211.278,63.201L212.75,63.048L213.566,62.963Z" + }, + { + "fill": "rgb(186, 228, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.065; geo: [object Object]; name: Iowa", + "shape": "M187.454,53.211L187.532,53.737L187.517,54.125L188.303,54.81L187.788,56.034L187.925,56.647L188.502,58.301L189.28,58.692L189.28,58.696L190.262,58.922L190.608,59.749L190.624,60.016L191.486,60.559L191.935,61.572L192.32,61.775L193.091,62.197L193.2,62.815L193.261,63.51L193.169,64.326L192.859,64.527L192.526,64.915L192.455,65.828L191.876,66.339L190.295,66.905L189.037,67.205L188.906,67.786L188.906,67.794L188.742,68.431L189.362,68.937L189.627,69.52L189.628,69.531L189.608,70.518L188.995,71.234L188.931,72.104L188.571,72.522L187.749,72.771L187.73,74.235L187.498,74.333L185.923,72.911L184.78,72.91L183.587,73L182.718,73.056L181.271,73.149L180.891,73.173L178.953,73.273L177.559,73.339L176.634,73.364L175.529,73.409L174.315,73.461L173.228,73.497L172.013,73.529L171.216,73.534L169.783,73.527L168.332,73.516L167.462,73.512L165.486,73.488L164.869,72.57L165.139,72.144L165.228,71.352L164.902,70.324L164.884,70.302L164.901,69.601L164.685,69.394L164.936,68.733L164.612,68.039L164.308,67.255L163.825,67.051L163.683,66.064L163.969,65.265L163.613,64.829L163.65,64.096L162.94,63.601L162.977,63.155L162.536,62.468L162.538,62.05L162.239,61.57L162.418,60.951L162.102,60.608L161.84,60.132L161.215,58.707L161.659,57.778L161.805,56.83L162.086,56.603L162.003,55.729L161.603,55.416L161.748,54.511L161.404,53.789L162.099,53.793L164.046,53.798L164.968,53.797L166.932,53.787L167.263,53.788L169.557,53.768L169.835,53.761L171.834,53.736L172.79,53.719L174.129,53.7L175.676,53.664L176.423,53.645L178.595,53.583L178.7,53.58L180.975,53.496L181.497,53.476L183.286,53.402L184.97,53.33L185.544,53.304Z" + }, + { + "fill": "rgb(198, 233, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.054; geo: [object Object]; name: Iowa", + "shape": "M187.454,53.211L187.532,53.737L187.517,54.125L188.303,54.81L187.788,56.034L187.925,56.647L188.502,58.301L189.28,58.692L189.28,58.696L190.262,58.922L190.608,59.749L190.624,60.016L191.486,60.559L191.935,61.572L192.32,61.775L193.091,62.197L193.2,62.815L193.261,63.51L193.169,64.326L192.859,64.527L192.526,64.915L192.455,65.828L191.876,66.339L190.295,66.905L189.037,67.205L188.906,67.786L188.906,67.794L188.742,68.431L189.362,68.937L189.627,69.52L189.628,69.531L189.608,70.518L188.995,71.234L188.931,72.104L188.571,72.522L187.749,72.771L187.73,74.235L187.498,74.333L185.923,72.911L184.78,72.91L183.587,73L182.718,73.056L181.271,73.149L180.891,73.173L178.953,73.273L177.559,73.339L176.634,73.364L175.529,73.409L174.315,73.461L173.228,73.497L172.013,73.529L171.216,73.534L169.783,73.527L168.332,73.516L167.462,73.512L165.486,73.488L164.869,72.57L165.139,72.144L165.228,71.352L164.902,70.324L164.884,70.302L164.901,69.601L164.685,69.394L164.936,68.733L164.612,68.039L164.308,67.255L163.825,67.051L163.683,66.064L163.969,65.265L163.613,64.829L163.65,64.096L162.94,63.601L162.977,63.155L162.536,62.468L162.538,62.05L162.239,61.57L162.418,60.951L162.102,60.608L161.84,60.132L161.215,58.707L161.659,57.778L161.805,56.83L162.086,56.603L162.003,55.729L161.603,55.416L161.748,54.511L161.404,53.789L162.099,53.793L164.046,53.798L164.968,53.797L166.932,53.787L167.263,53.788L169.557,53.768L169.835,53.761L171.834,53.736L172.79,53.719L174.129,53.7L175.676,53.664L176.423,53.645L178.595,53.583L178.7,53.58L180.975,53.496L181.497,53.476L183.286,53.402L184.97,53.33L185.544,53.304Z" + }, + { + "fill": "rgb(124, 204, 188)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.107; geo: [object Object]; name: Iowa", + "shape": "M187.454,53.211L187.532,53.737L187.517,54.125L188.303,54.81L187.788,56.034L187.925,56.647L188.502,58.301L189.28,58.692L189.28,58.696L190.262,58.922L190.608,59.749L190.624,60.016L191.486,60.559L191.935,61.572L192.32,61.775L193.091,62.197L193.2,62.815L193.261,63.51L193.169,64.326L192.859,64.527L192.526,64.915L192.455,65.828L191.876,66.339L190.295,66.905L189.037,67.205L188.906,67.786L188.906,67.794L188.742,68.431L189.362,68.937L189.627,69.52L189.628,69.531L189.608,70.518L188.995,71.234L188.931,72.104L188.571,72.522L187.749,72.771L187.73,74.235L187.498,74.333L185.923,72.911L184.78,72.91L183.587,73L182.718,73.056L181.271,73.149L180.891,73.173L178.953,73.273L177.559,73.339L176.634,73.364L175.529,73.409L174.315,73.461L173.228,73.497L172.013,73.529L171.216,73.534L169.783,73.527L168.332,73.516L167.462,73.512L165.486,73.488L164.869,72.57L165.139,72.144L165.228,71.352L164.902,70.324L164.884,70.302L164.901,69.601L164.685,69.394L164.936,68.733L164.612,68.039L164.308,67.255L163.825,67.051L163.683,66.064L163.969,65.265L163.613,64.829L163.65,64.096L162.94,63.601L162.977,63.155L162.536,62.468L162.538,62.05L162.239,61.57L162.418,60.951L162.102,60.608L161.84,60.132L161.215,58.707L161.659,57.778L161.805,56.83L162.086,56.603L162.003,55.729L161.603,55.416L161.748,54.511L161.404,53.789L162.099,53.793L164.046,53.798L164.968,53.797L166.932,53.787L167.263,53.788L169.557,53.768L169.835,53.761L171.834,53.736L172.79,53.719L174.129,53.7L175.676,53.664L176.423,53.645L178.595,53.583L178.7,53.58L180.975,53.496L181.497,53.476L183.286,53.402L184.97,53.33L185.544,53.304Z" + }, + { + "fill": "rgb(119, 202, 188)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.11; geo: [object Object]; name: Iowa", + "shape": "M187.454,53.211L187.532,53.737L187.517,54.125L188.303,54.81L187.788,56.034L187.925,56.647L188.502,58.301L189.28,58.692L189.28,58.696L190.262,58.922L190.608,59.749L190.624,60.016L191.486,60.559L191.935,61.572L192.32,61.775L193.091,62.197L193.2,62.815L193.261,63.51L193.169,64.326L192.859,64.527L192.526,64.915L192.455,65.828L191.876,66.339L190.295,66.905L189.037,67.205L188.906,67.786L188.906,67.794L188.742,68.431L189.362,68.937L189.627,69.52L189.628,69.531L189.608,70.518L188.995,71.234L188.931,72.104L188.571,72.522L187.749,72.771L187.73,74.235L187.498,74.333L185.923,72.911L184.78,72.91L183.587,73L182.718,73.056L181.271,73.149L180.891,73.173L178.953,73.273L177.559,73.339L176.634,73.364L175.529,73.409L174.315,73.461L173.228,73.497L172.013,73.529L171.216,73.534L169.783,73.527L168.332,73.516L167.462,73.512L165.486,73.488L164.869,72.57L165.139,72.144L165.228,71.352L164.902,70.324L164.884,70.302L164.901,69.601L164.685,69.394L164.936,68.733L164.612,68.039L164.308,67.255L163.825,67.051L163.683,66.064L163.969,65.265L163.613,64.829L163.65,64.096L162.94,63.601L162.977,63.155L162.536,62.468L162.538,62.05L162.239,61.57L162.418,60.951L162.102,60.608L161.84,60.132L161.215,58.707L161.659,57.778L161.805,56.83L162.086,56.603L162.003,55.729L161.603,55.416L161.748,54.511L161.404,53.789L162.099,53.793L164.046,53.798L164.968,53.797L166.932,53.787L167.263,53.788L169.557,53.768L169.835,53.761L171.834,53.736L172.79,53.719L174.129,53.7L175.676,53.664L176.423,53.645L178.595,53.583L178.7,53.58L180.975,53.496L181.497,53.476L183.286,53.402L184.97,53.33L185.544,53.304Z" + }, + { + "fill": "rgb(69, 180, 194)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.148; geo: [object Object]; name: Iowa", + "shape": "M187.454,53.211L187.532,53.737L187.517,54.125L188.303,54.81L187.788,56.034L187.925,56.647L188.502,58.301L189.28,58.692L189.28,58.696L190.262,58.922L190.608,59.749L190.624,60.016L191.486,60.559L191.935,61.572L192.32,61.775L193.091,62.197L193.2,62.815L193.261,63.51L193.169,64.326L192.859,64.527L192.526,64.915L192.455,65.828L191.876,66.339L190.295,66.905L189.037,67.205L188.906,67.786L188.906,67.794L188.742,68.431L189.362,68.937L189.627,69.52L189.628,69.531L189.608,70.518L188.995,71.234L188.931,72.104L188.571,72.522L187.749,72.771L187.73,74.235L187.498,74.333L185.923,72.911L184.78,72.91L183.587,73L182.718,73.056L181.271,73.149L180.891,73.173L178.953,73.273L177.559,73.339L176.634,73.364L175.529,73.409L174.315,73.461L173.228,73.497L172.013,73.529L171.216,73.534L169.783,73.527L168.332,73.516L167.462,73.512L165.486,73.488L164.869,72.57L165.139,72.144L165.228,71.352L164.902,70.324L164.884,70.302L164.901,69.601L164.685,69.394L164.936,68.733L164.612,68.039L164.308,67.255L163.825,67.051L163.683,66.064L163.969,65.265L163.613,64.829L163.65,64.096L162.94,63.601L162.977,63.155L162.536,62.468L162.538,62.05L162.239,61.57L162.418,60.951L162.102,60.608L161.84,60.132L161.215,58.707L161.659,57.778L161.805,56.83L162.086,56.603L162.003,55.729L161.603,55.416L161.748,54.511L161.404,53.789L162.099,53.793L164.046,53.798L164.968,53.797L166.932,53.787L167.263,53.788L169.557,53.768L169.835,53.761L171.834,53.736L172.79,53.719L174.129,53.7L175.676,53.664L176.423,53.645L178.595,53.583L178.7,53.58L180.975,53.496L181.497,53.476L183.286,53.402L184.97,53.33L185.544,53.304Z" + }, + { + "fill": "rgb(87, 189, 192)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.133; geo: [object Object]; name: Iowa", + "shape": "M187.454,53.211L187.532,53.737L187.517,54.125L188.303,54.81L187.788,56.034L187.925,56.647L188.502,58.301L189.28,58.692L189.28,58.696L190.262,58.922L190.608,59.749L190.624,60.016L191.486,60.559L191.935,61.572L192.32,61.775L193.091,62.197L193.2,62.815L193.261,63.51L193.169,64.326L192.859,64.527L192.526,64.915L192.455,65.828L191.876,66.339L190.295,66.905L189.037,67.205L188.906,67.786L188.906,67.794L188.742,68.431L189.362,68.937L189.627,69.52L189.628,69.531L189.608,70.518L188.995,71.234L188.931,72.104L188.571,72.522L187.749,72.771L187.73,74.235L187.498,74.333L185.923,72.911L184.78,72.91L183.587,73L182.718,73.056L181.271,73.149L180.891,73.173L178.953,73.273L177.559,73.339L176.634,73.364L175.529,73.409L174.315,73.461L173.228,73.497L172.013,73.529L171.216,73.534L169.783,73.527L168.332,73.516L167.462,73.512L165.486,73.488L164.869,72.57L165.139,72.144L165.228,71.352L164.902,70.324L164.884,70.302L164.901,69.601L164.685,69.394L164.936,68.733L164.612,68.039L164.308,67.255L163.825,67.051L163.683,66.064L163.969,65.265L163.613,64.829L163.65,64.096L162.94,63.601L162.977,63.155L162.536,62.468L162.538,62.05L162.239,61.57L162.418,60.951L162.102,60.608L161.84,60.132L161.215,58.707L161.659,57.778L161.805,56.83L162.086,56.603L162.003,55.729L161.603,55.416L161.748,54.511L161.404,53.789L162.099,53.793L164.046,53.798L164.968,53.797L166.932,53.787L167.263,53.788L169.557,53.768L169.835,53.761L171.834,53.736L172.79,53.719L174.129,53.7L175.676,53.664L176.423,53.645L178.595,53.583L178.7,53.58L180.975,53.496L181.497,53.476L183.286,53.402L184.97,53.33L185.544,53.304Z" + }, + { + "fill": "rgb(34, 133, 185)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.201; geo: [object Object]; name: Iowa", + "shape": "M187.454,53.211L187.532,53.737L187.517,54.125L188.303,54.81L187.788,56.034L187.925,56.647L188.502,58.301L189.28,58.692L189.28,58.696L190.262,58.922L190.608,59.749L190.624,60.016L191.486,60.559L191.935,61.572L192.32,61.775L193.091,62.197L193.2,62.815L193.261,63.51L193.169,64.326L192.859,64.527L192.526,64.915L192.455,65.828L191.876,66.339L190.295,66.905L189.037,67.205L188.906,67.786L188.906,67.794L188.742,68.431L189.362,68.937L189.627,69.52L189.628,69.531L189.608,70.518L188.995,71.234L188.931,72.104L188.571,72.522L187.749,72.771L187.73,74.235L187.498,74.333L185.923,72.911L184.78,72.91L183.587,73L182.718,73.056L181.271,73.149L180.891,73.173L178.953,73.273L177.559,73.339L176.634,73.364L175.529,73.409L174.315,73.461L173.228,73.497L172.013,73.529L171.216,73.534L169.783,73.527L168.332,73.516L167.462,73.512L165.486,73.488L164.869,72.57L165.139,72.144L165.228,71.352L164.902,70.324L164.884,70.302L164.901,69.601L164.685,69.394L164.936,68.733L164.612,68.039L164.308,67.255L163.825,67.051L163.683,66.064L163.969,65.265L163.613,64.829L163.65,64.096L162.94,63.601L162.977,63.155L162.536,62.468L162.538,62.05L162.239,61.57L162.418,60.951L162.102,60.608L161.84,60.132L161.215,58.707L161.659,57.778L161.805,56.83L162.086,56.603L162.003,55.729L161.603,55.416L161.748,54.511L161.404,53.789L162.099,53.793L164.046,53.798L164.968,53.797L166.932,53.787L167.263,53.788L169.557,53.768L169.835,53.761L171.834,53.736L172.79,53.719L174.129,53.7L175.676,53.664L176.423,53.645L178.595,53.583L178.7,53.58L180.975,53.496L181.497,53.476L183.286,53.402L184.97,53.33L185.544,53.304Z" + }, + { + "fill": "rgb(104, 197, 190)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.12; geo: [object Object]; name: Iowa", + "shape": "M187.454,53.211L187.532,53.737L187.517,54.125L188.303,54.81L187.788,56.034L187.925,56.647L188.502,58.301L189.28,58.692L189.28,58.696L190.262,58.922L190.608,59.749L190.624,60.016L191.486,60.559L191.935,61.572L192.32,61.775L193.091,62.197L193.2,62.815L193.261,63.51L193.169,64.326L192.859,64.527L192.526,64.915L192.455,65.828L191.876,66.339L190.295,66.905L189.037,67.205L188.906,67.786L188.906,67.794L188.742,68.431L189.362,68.937L189.627,69.52L189.628,69.531L189.608,70.518L188.995,71.234L188.931,72.104L188.571,72.522L187.749,72.771L187.73,74.235L187.498,74.333L185.923,72.911L184.78,72.91L183.587,73L182.718,73.056L181.271,73.149L180.891,73.173L178.953,73.273L177.559,73.339L176.634,73.364L175.529,73.409L174.315,73.461L173.228,73.497L172.013,73.529L171.216,73.534L169.783,73.527L168.332,73.516L167.462,73.512L165.486,73.488L164.869,72.57L165.139,72.144L165.228,71.352L164.902,70.324L164.884,70.302L164.901,69.601L164.685,69.394L164.936,68.733L164.612,68.039L164.308,67.255L163.825,67.051L163.683,66.064L163.969,65.265L163.613,64.829L163.65,64.096L162.94,63.601L162.977,63.155L162.536,62.468L162.538,62.05L162.239,61.57L162.418,60.951L162.102,60.608L161.84,60.132L161.215,58.707L161.659,57.778L161.805,56.83L162.086,56.603L162.003,55.729L161.603,55.416L161.748,54.511L161.404,53.789L162.099,53.793L164.046,53.798L164.968,53.797L166.932,53.787L167.263,53.788L169.557,53.768L169.835,53.761L171.834,53.736L172.79,53.719L174.129,53.7L175.676,53.664L176.423,53.645L178.595,53.583L178.7,53.58L180.975,53.496L181.497,53.476L183.286,53.402L184.97,53.33L185.544,53.304Z" + }, + { + "fill": "rgb(220, 241, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.033; geo: [object Object]; name: Iowa", + "shape": "M187.454,53.211L187.532,53.737L187.517,54.125L188.303,54.81L187.788,56.034L187.925,56.647L188.502,58.301L189.28,58.692L189.28,58.696L190.262,58.922L190.608,59.749L190.624,60.016L191.486,60.559L191.935,61.572L192.32,61.775L193.091,62.197L193.2,62.815L193.261,63.51L193.169,64.326L192.859,64.527L192.526,64.915L192.455,65.828L191.876,66.339L190.295,66.905L189.037,67.205L188.906,67.786L188.906,67.794L188.742,68.431L189.362,68.937L189.627,69.52L189.628,69.531L189.608,70.518L188.995,71.234L188.931,72.104L188.571,72.522L187.749,72.771L187.73,74.235L187.498,74.333L185.923,72.911L184.78,72.91L183.587,73L182.718,73.056L181.271,73.149L180.891,73.173L178.953,73.273L177.559,73.339L176.634,73.364L175.529,73.409L174.315,73.461L173.228,73.497L172.013,73.529L171.216,73.534L169.783,73.527L168.332,73.516L167.462,73.512L165.486,73.488L164.869,72.57L165.139,72.144L165.228,71.352L164.902,70.324L164.884,70.302L164.901,69.601L164.685,69.394L164.936,68.733L164.612,68.039L164.308,67.255L163.825,67.051L163.683,66.064L163.969,65.265L163.613,64.829L163.65,64.096L162.94,63.601L162.977,63.155L162.536,62.468L162.538,62.05L162.239,61.57L162.418,60.951L162.102,60.608L161.84,60.132L161.215,58.707L161.659,57.778L161.805,56.83L162.086,56.603L162.003,55.729L161.603,55.416L161.748,54.511L161.404,53.789L162.099,53.793L164.046,53.798L164.968,53.797L166.932,53.787L167.263,53.788L169.557,53.768L169.835,53.761L171.834,53.736L172.79,53.719L174.129,53.7L175.676,53.664L176.423,53.645L178.595,53.583L178.7,53.58L180.975,53.496L181.497,53.476L183.286,53.402L184.97,53.33L185.544,53.304Z" + }, + { + "fill": "rgb(223, 242, 182)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.029; geo: [object Object]; name: Iowa", + "shape": "M187.454,53.211L187.532,53.737L187.517,54.125L188.303,54.81L187.788,56.034L187.925,56.647L188.502,58.301L189.28,58.692L189.28,58.696L190.262,58.922L190.608,59.749L190.624,60.016L191.486,60.559L191.935,61.572L192.32,61.775L193.091,62.197L193.2,62.815L193.261,63.51L193.169,64.326L192.859,64.527L192.526,64.915L192.455,65.828L191.876,66.339L190.295,66.905L189.037,67.205L188.906,67.786L188.906,67.794L188.742,68.431L189.362,68.937L189.627,69.52L189.628,69.531L189.608,70.518L188.995,71.234L188.931,72.104L188.571,72.522L187.749,72.771L187.73,74.235L187.498,74.333L185.923,72.911L184.78,72.91L183.587,73L182.718,73.056L181.271,73.149L180.891,73.173L178.953,73.273L177.559,73.339L176.634,73.364L175.529,73.409L174.315,73.461L173.228,73.497L172.013,73.529L171.216,73.534L169.783,73.527L168.332,73.516L167.462,73.512L165.486,73.488L164.869,72.57L165.139,72.144L165.228,71.352L164.902,70.324L164.884,70.302L164.901,69.601L164.685,69.394L164.936,68.733L164.612,68.039L164.308,67.255L163.825,67.051L163.683,66.064L163.969,65.265L163.613,64.829L163.65,64.096L162.94,63.601L162.977,63.155L162.536,62.468L162.538,62.05L162.239,61.57L162.418,60.951L162.102,60.608L161.84,60.132L161.215,58.707L161.659,57.778L161.805,56.83L162.086,56.603L162.003,55.729L161.603,55.416L161.748,54.511L161.404,53.789L162.099,53.793L164.046,53.798L164.968,53.797L166.932,53.787L167.263,53.788L169.557,53.768L169.835,53.761L171.834,53.736L172.79,53.719L174.129,53.7L175.676,53.664L176.423,53.645L178.595,53.583L178.7,53.58L180.975,53.496L181.497,53.476L183.286,53.402L184.97,53.33L185.544,53.304Z" + }, + { + "fill": "rgb(184, 227, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.066; geo: [object Object]; name: Kansas", + "shape": "M136.761,76.65L137.199,76.671L140.082,76.828L140.174,76.833L142.948,76.967L143.021,76.97L145.834,77.085L148.117,77.164L148.683,77.182L150.419,77.235L151.552,77.266L152.721,77.292L154.457,77.334L155.023,77.345L157.326,77.388L159.629,77.415L160.195,77.42L161.932,77.436L163.083,77.443L164.235,77.445L165.368,77.444L167.653,77.437L167.799,77.436L168.352,78.072L169.197,78.337L169.433,78.112L170.025,78.629L169.14,79.974L168.889,80.587L169.596,81.355L169.993,82.224L170.61,82.835L171.501,83.092L171.469,83.401L171.476,83.871L171.495,85.206L171.506,85.941L171.513,87.709L171.522,88.309L171.555,90.536L171.538,90.693L171.555,93.16L171.557,93.291L171.605,95.252L171.588,95.423L171.616,97.333L171.621,97.722L169.565,97.748L169.222,97.751L167.432,97.766L166.822,97.769L165.432,97.774L164.48,97.775L164.289,97.776L161.509,97.771L160.309,97.76L158.214,97.739L156.538,97.719L154.729,97.688L153.091,97.662L151.834,97.632L150.788,97.598L148.37,97.524L145.952,97.442L145.515,97.426L143.061,97.31L142.604,97.287L139.731,97.17L138.075,97.097L137.428,97.07L134.841,96.94L132.331,96.805L132.255,96.793L132.425,94.121L132.535,92.396L132.575,91.76L132.782,88.215L132.785,88.171L132.934,85.832L132.97,85.273L133.12,82.913L133.157,82.329L133.326,79.387L133.329,79.347L133.495,76.446Z" + }, + { + "fill": "rgb(200, 233, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.052; geo: [object Object]; name: Kansas", + "shape": "M136.761,76.65L137.199,76.671L140.082,76.828L140.174,76.833L142.948,76.967L143.021,76.97L145.834,77.085L148.117,77.164L148.683,77.182L150.419,77.235L151.552,77.266L152.721,77.292L154.457,77.334L155.023,77.345L157.326,77.388L159.629,77.415L160.195,77.42L161.932,77.436L163.083,77.443L164.235,77.445L165.368,77.444L167.653,77.437L167.799,77.436L168.352,78.072L169.197,78.337L169.433,78.112L170.025,78.629L169.14,79.974L168.889,80.587L169.596,81.355L169.993,82.224L170.61,82.835L171.501,83.092L171.469,83.401L171.476,83.871L171.495,85.206L171.506,85.941L171.513,87.709L171.522,88.309L171.555,90.536L171.538,90.693L171.555,93.16L171.557,93.291L171.605,95.252L171.588,95.423L171.616,97.333L171.621,97.722L169.565,97.748L169.222,97.751L167.432,97.766L166.822,97.769L165.432,97.774L164.48,97.775L164.289,97.776L161.509,97.771L160.309,97.76L158.214,97.739L156.538,97.719L154.729,97.688L153.091,97.662L151.834,97.632L150.788,97.598L148.37,97.524L145.952,97.442L145.515,97.426L143.061,97.31L142.604,97.287L139.731,97.17L138.075,97.097L137.428,97.07L134.841,96.94L132.331,96.805L132.255,96.793L132.425,94.121L132.535,92.396L132.575,91.76L132.782,88.215L132.785,88.171L132.934,85.832L132.97,85.273L133.12,82.913L133.157,82.329L133.326,79.387L133.329,79.347L133.495,76.446Z" + }, + { + "fill": "rgb(119, 202, 188)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.11; geo: [object Object]; name: Kansas", + "shape": "M136.761,76.65L137.199,76.671L140.082,76.828L140.174,76.833L142.948,76.967L143.021,76.97L145.834,77.085L148.117,77.164L148.683,77.182L150.419,77.235L151.552,77.266L152.721,77.292L154.457,77.334L155.023,77.345L157.326,77.388L159.629,77.415L160.195,77.42L161.932,77.436L163.083,77.443L164.235,77.445L165.368,77.444L167.653,77.437L167.799,77.436L168.352,78.072L169.197,78.337L169.433,78.112L170.025,78.629L169.14,79.974L168.889,80.587L169.596,81.355L169.993,82.224L170.61,82.835L171.501,83.092L171.469,83.401L171.476,83.871L171.495,85.206L171.506,85.941L171.513,87.709L171.522,88.309L171.555,90.536L171.538,90.693L171.555,93.16L171.557,93.291L171.605,95.252L171.588,95.423L171.616,97.333L171.621,97.722L169.565,97.748L169.222,97.751L167.432,97.766L166.822,97.769L165.432,97.774L164.48,97.775L164.289,97.776L161.509,97.771L160.309,97.76L158.214,97.739L156.538,97.719L154.729,97.688L153.091,97.662L151.834,97.632L150.788,97.598L148.37,97.524L145.952,97.442L145.515,97.426L143.061,97.31L142.604,97.287L139.731,97.17L138.075,97.097L137.428,97.07L134.841,96.94L132.331,96.805L132.255,96.793L132.425,94.121L132.535,92.396L132.575,91.76L132.782,88.215L132.785,88.171L132.934,85.832L132.97,85.273L133.12,82.913L133.157,82.329L133.326,79.387L133.329,79.347L133.495,76.446Z" + }, + { + "fill": "rgb(114, 201, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.113; geo: [object Object]; name: Kansas", + "shape": "M136.761,76.65L137.199,76.671L140.082,76.828L140.174,76.833L142.948,76.967L143.021,76.97L145.834,77.085L148.117,77.164L148.683,77.182L150.419,77.235L151.552,77.266L152.721,77.292L154.457,77.334L155.023,77.345L157.326,77.388L159.629,77.415L160.195,77.42L161.932,77.436L163.083,77.443L164.235,77.445L165.368,77.444L167.653,77.437L167.799,77.436L168.352,78.072L169.197,78.337L169.433,78.112L170.025,78.629L169.14,79.974L168.889,80.587L169.596,81.355L169.993,82.224L170.61,82.835L171.501,83.092L171.469,83.401L171.476,83.871L171.495,85.206L171.506,85.941L171.513,87.709L171.522,88.309L171.555,90.536L171.538,90.693L171.555,93.16L171.557,93.291L171.605,95.252L171.588,95.423L171.616,97.333L171.621,97.722L169.565,97.748L169.222,97.751L167.432,97.766L166.822,97.769L165.432,97.774L164.48,97.775L164.289,97.776L161.509,97.771L160.309,97.76L158.214,97.739L156.538,97.719L154.729,97.688L153.091,97.662L151.834,97.632L150.788,97.598L148.37,97.524L145.952,97.442L145.515,97.426L143.061,97.31L142.604,97.287L139.731,97.17L138.075,97.097L137.428,97.07L134.841,96.94L132.331,96.805L132.255,96.793L132.425,94.121L132.535,92.396L132.575,91.76L132.782,88.215L132.785,88.171L132.934,85.832L132.97,85.273L133.12,82.913L133.157,82.329L133.326,79.387L133.329,79.347L133.495,76.446Z" + }, + { + "fill": "rgb(66, 177, 194)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.151; geo: [object Object]; name: Kansas", + "shape": "M136.761,76.65L137.199,76.671L140.082,76.828L140.174,76.833L142.948,76.967L143.021,76.97L145.834,77.085L148.117,77.164L148.683,77.182L150.419,77.235L151.552,77.266L152.721,77.292L154.457,77.334L155.023,77.345L157.326,77.388L159.629,77.415L160.195,77.42L161.932,77.436L163.083,77.443L164.235,77.445L165.368,77.444L167.653,77.437L167.799,77.436L168.352,78.072L169.197,78.337L169.433,78.112L170.025,78.629L169.14,79.974L168.889,80.587L169.596,81.355L169.993,82.224L170.61,82.835L171.501,83.092L171.469,83.401L171.476,83.871L171.495,85.206L171.506,85.941L171.513,87.709L171.522,88.309L171.555,90.536L171.538,90.693L171.555,93.16L171.557,93.291L171.605,95.252L171.588,95.423L171.616,97.333L171.621,97.722L169.565,97.748L169.222,97.751L167.432,97.766L166.822,97.769L165.432,97.774L164.48,97.775L164.289,97.776L161.509,97.771L160.309,97.76L158.214,97.739L156.538,97.719L154.729,97.688L153.091,97.662L151.834,97.632L150.788,97.598L148.37,97.524L145.952,97.442L145.515,97.426L143.061,97.31L142.604,97.287L139.731,97.17L138.075,97.097L137.428,97.07L134.841,96.94L132.331,96.805L132.255,96.793L132.425,94.121L132.535,92.396L132.575,91.76L132.782,88.215L132.785,88.171L132.934,85.832L132.97,85.273L133.12,82.913L133.157,82.329L133.326,79.387L133.329,79.347L133.495,76.446Z" + }, + { + "fill": "rgb(100, 195, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.123; geo: [object Object]; name: Kansas", + "shape": "M136.761,76.65L137.199,76.671L140.082,76.828L140.174,76.833L142.948,76.967L143.021,76.97L145.834,77.085L148.117,77.164L148.683,77.182L150.419,77.235L151.552,77.266L152.721,77.292L154.457,77.334L155.023,77.345L157.326,77.388L159.629,77.415L160.195,77.42L161.932,77.436L163.083,77.443L164.235,77.445L165.368,77.444L167.653,77.437L167.799,77.436L168.352,78.072L169.197,78.337L169.433,78.112L170.025,78.629L169.14,79.974L168.889,80.587L169.596,81.355L169.993,82.224L170.61,82.835L171.501,83.092L171.469,83.401L171.476,83.871L171.495,85.206L171.506,85.941L171.513,87.709L171.522,88.309L171.555,90.536L171.538,90.693L171.555,93.16L171.557,93.291L171.605,95.252L171.588,95.423L171.616,97.333L171.621,97.722L169.565,97.748L169.222,97.751L167.432,97.766L166.822,97.769L165.432,97.774L164.48,97.775L164.289,97.776L161.509,97.771L160.309,97.76L158.214,97.739L156.538,97.719L154.729,97.688L153.091,97.662L151.834,97.632L150.788,97.598L148.37,97.524L145.952,97.442L145.515,97.426L143.061,97.31L142.604,97.287L139.731,97.17L138.075,97.097L137.428,97.07L134.841,96.94L132.331,96.805L132.255,96.793L132.425,94.121L132.535,92.396L132.575,91.76L132.782,88.215L132.785,88.171L132.934,85.832L132.97,85.273L133.12,82.913L133.157,82.329L133.326,79.387L133.329,79.347L133.495,76.446Z" + }, + { + "fill": "rgb(37, 141, 187)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.193; geo: [object Object]; name: Kansas", + "shape": "M136.761,76.65L137.199,76.671L140.082,76.828L140.174,76.833L142.948,76.967L143.021,76.97L145.834,77.085L148.117,77.164L148.683,77.182L150.419,77.235L151.552,77.266L152.721,77.292L154.457,77.334L155.023,77.345L157.326,77.388L159.629,77.415L160.195,77.42L161.932,77.436L163.083,77.443L164.235,77.445L165.368,77.444L167.653,77.437L167.799,77.436L168.352,78.072L169.197,78.337L169.433,78.112L170.025,78.629L169.14,79.974L168.889,80.587L169.596,81.355L169.993,82.224L170.61,82.835L171.501,83.092L171.469,83.401L171.476,83.871L171.495,85.206L171.506,85.941L171.513,87.709L171.522,88.309L171.555,90.536L171.538,90.693L171.555,93.16L171.557,93.291L171.605,95.252L171.588,95.423L171.616,97.333L171.621,97.722L169.565,97.748L169.222,97.751L167.432,97.766L166.822,97.769L165.432,97.774L164.48,97.775L164.289,97.776L161.509,97.771L160.309,97.76L158.214,97.739L156.538,97.719L154.729,97.688L153.091,97.662L151.834,97.632L150.788,97.598L148.37,97.524L145.952,97.442L145.515,97.426L143.061,97.31L142.604,97.287L139.731,97.17L138.075,97.097L137.428,97.07L134.841,96.94L132.331,96.805L132.255,96.793L132.425,94.121L132.535,92.396L132.575,91.76L132.782,88.215L132.785,88.171L132.934,85.832L132.97,85.273L133.12,82.913L133.157,82.329L133.326,79.387L133.329,79.347L133.495,76.446Z" + }, + { + "fill": "rgb(103, 196, 190)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.121; geo: [object Object]; name: Kansas", + "shape": "M136.761,76.65L137.199,76.671L140.082,76.828L140.174,76.833L142.948,76.967L143.021,76.97L145.834,77.085L148.117,77.164L148.683,77.182L150.419,77.235L151.552,77.266L152.721,77.292L154.457,77.334L155.023,77.345L157.326,77.388L159.629,77.415L160.195,77.42L161.932,77.436L163.083,77.443L164.235,77.445L165.368,77.444L167.653,77.437L167.799,77.436L168.352,78.072L169.197,78.337L169.433,78.112L170.025,78.629L169.14,79.974L168.889,80.587L169.596,81.355L169.993,82.224L170.61,82.835L171.501,83.092L171.469,83.401L171.476,83.871L171.495,85.206L171.506,85.941L171.513,87.709L171.522,88.309L171.555,90.536L171.538,90.693L171.555,93.16L171.557,93.291L171.605,95.252L171.588,95.423L171.616,97.333L171.621,97.722L169.565,97.748L169.222,97.751L167.432,97.766L166.822,97.769L165.432,97.774L164.48,97.775L164.289,97.776L161.509,97.771L160.309,97.76L158.214,97.739L156.538,97.719L154.729,97.688L153.091,97.662L151.834,97.632L150.788,97.598L148.37,97.524L145.952,97.442L145.515,97.426L143.061,97.31L142.604,97.287L139.731,97.17L138.075,97.097L137.428,97.07L134.841,96.94L132.331,96.805L132.255,96.793L132.425,94.121L132.535,92.396L132.575,91.76L132.782,88.215L132.785,88.171L132.934,85.832L132.97,85.273L133.12,82.913L133.157,82.329L133.326,79.387L133.329,79.347L133.495,76.446Z" + }, + { + "fill": "rgb(215, 239, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.038; geo: [object Object]; name: Kansas", + "shape": "M136.761,76.65L137.199,76.671L140.082,76.828L140.174,76.833L142.948,76.967L143.021,76.97L145.834,77.085L148.117,77.164L148.683,77.182L150.419,77.235L151.552,77.266L152.721,77.292L154.457,77.334L155.023,77.345L157.326,77.388L159.629,77.415L160.195,77.42L161.932,77.436L163.083,77.443L164.235,77.445L165.368,77.444L167.653,77.437L167.799,77.436L168.352,78.072L169.197,78.337L169.433,78.112L170.025,78.629L169.14,79.974L168.889,80.587L169.596,81.355L169.993,82.224L170.61,82.835L171.501,83.092L171.469,83.401L171.476,83.871L171.495,85.206L171.506,85.941L171.513,87.709L171.522,88.309L171.555,90.536L171.538,90.693L171.555,93.16L171.557,93.291L171.605,95.252L171.588,95.423L171.616,97.333L171.621,97.722L169.565,97.748L169.222,97.751L167.432,97.766L166.822,97.769L165.432,97.774L164.48,97.775L164.289,97.776L161.509,97.771L160.309,97.76L158.214,97.739L156.538,97.719L154.729,97.688L153.091,97.662L151.834,97.632L150.788,97.598L148.37,97.524L145.952,97.442L145.515,97.426L143.061,97.31L142.604,97.287L139.731,97.17L138.075,97.097L137.428,97.07L134.841,96.94L132.331,96.805L132.255,96.793L132.425,94.121L132.535,92.396L132.575,91.76L132.782,88.215L132.785,88.171L132.934,85.832L132.97,85.273L133.12,82.913L133.157,82.329L133.326,79.387L133.329,79.347L133.495,76.446Z" + }, + { + "fill": "rgb(220, 241, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.033; geo: [object Object]; name: Kansas", + "shape": "M136.761,76.65L137.199,76.671L140.082,76.828L140.174,76.833L142.948,76.967L143.021,76.97L145.834,77.085L148.117,77.164L148.683,77.182L150.419,77.235L151.552,77.266L152.721,77.292L154.457,77.334L155.023,77.345L157.326,77.388L159.629,77.415L160.195,77.42L161.932,77.436L163.083,77.443L164.235,77.445L165.368,77.444L167.653,77.437L167.799,77.436L168.352,78.072L169.197,78.337L169.433,78.112L170.025,78.629L169.14,79.974L168.889,80.587L169.596,81.355L169.993,82.224L170.61,82.835L171.501,83.092L171.469,83.401L171.476,83.871L171.495,85.206L171.506,85.941L171.513,87.709L171.522,88.309L171.555,90.536L171.538,90.693L171.555,93.16L171.557,93.291L171.605,95.252L171.588,95.423L171.616,97.333L171.621,97.722L169.565,97.748L169.222,97.751L167.432,97.766L166.822,97.769L165.432,97.774L164.48,97.775L164.289,97.776L161.509,97.771L160.309,97.76L158.214,97.739L156.538,97.719L154.729,97.688L153.091,97.662L151.834,97.632L150.788,97.598L148.37,97.524L145.952,97.442L145.515,97.426L143.061,97.31L142.604,97.287L139.731,97.17L138.075,97.097L137.428,97.07L134.841,96.94L132.331,96.805L132.255,96.793L132.425,94.121L132.535,92.396L132.575,91.76L132.782,88.215L132.785,88.171L132.934,85.832L132.97,85.273L133.12,82.913L133.157,82.329L133.326,79.387L133.329,79.347L133.495,76.446Z" + }, + { + "fill": "rgb(130, 206, 187)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.103; geo: [object Object]; name: Kentucky", + "shape": "M222.841,80.211L223.43,79.997L224.447,80.375L225.011,81.309L225.05,81.623L226.02,81.887L226.779,81.812L227.925,82.556L227.925,82.556L228.24,82.519L228.792,82.006L230.196,82.387L230.194,82.377L230.768,82.31L231.315,81.501L231.315,81.504L232.007,81.21L232.566,82.389L233.384,82.715L233.834,83.228L233.963,84.404L233.963,84.404L233.878,85.137L234.888,86.243L234.79,86.349L235.305,86.896L235.844,87.594L236.121,88.058L237.132,88.704L237.95,88.679L236.404,90.535L236.387,90.549L235.221,91.374L235.151,91.425L234.482,91.986L234.468,92.572L233.778,93.135L233.798,93.691L232.812,94.087L232.591,94.867L230.939,95.636L229.857,96.215L228.52,96.479L228.1,96.518L226.939,96.649L226.768,96.67L224.022,96.927L223.984,96.931L222.967,96.97L221.361,97.078L221.266,97.092L220.511,97.228L218.644,97.411L217.668,97.471L216.423,97.525L215.33,97.56L214.542,97.753L213.465,97.756L211.869,97.946L211.603,97.978L210.422,98.099L208.804,98.266L208.518,98.294L206.512,98.185L206.69,99.397L204.376,99.563L204.223,99.572L202.636,99.687L202.578,99.688L202.54,99.695L199.805,99.89L199.425,99.949L199.84,99.012L200.293,99.444L200.632,98.821L200.467,98.388L200.853,97.904L200.557,97.783L200.89,96.826L200.7,96.584L200.489,96.03L201.212,94.971L201.642,94.858L201.679,94.845L203.649,95.687L204.073,95.737L204.371,95.17L203.856,94.444L203.976,93.548L204.28,93.308L204.279,93.297L204.573,93.409L204.961,93.049L205.988,92.829L206.083,92.606L205.667,92.166L205.484,91.556L206.086,90.604L206.735,90.462L206.571,89.866L207.754,89.789L207.754,89.785L208.225,90.201L208.215,89.237L208.76,89.623L209.021,89.381L209.834,89.599L210.015,89.714L211.112,90.123L211.5,89.224L212.316,88.685L213.243,89.655L213.545,89.08L213.953,89.002L213.967,88.2L214.066,87.678L214.715,87.199L215.16,88.046L216.559,88.244L216.815,88.169L216.935,86.989L217.433,86.182L217.69,86.301L218.146,85.479L218.286,85.039L219.098,84.396L219.088,83.972L218.926,83.031L219.456,82.91L220.174,83.136L221.025,82.558L222.11,82.233L222.131,81.773L221.709,81.526L221.57,80.659L221.569,80.656L221.805,80.122L222.103,79.809Z" + }, + { + "fill": "rgb(175, 224, 182)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.072; geo: [object Object]; name: Kentucky", + "shape": "M222.841,80.211L223.43,79.997L224.447,80.375L225.011,81.309L225.05,81.623L226.02,81.887L226.779,81.812L227.925,82.556L227.925,82.556L228.24,82.519L228.792,82.006L230.196,82.387L230.194,82.377L230.768,82.31L231.315,81.501L231.315,81.504L232.007,81.21L232.566,82.389L233.384,82.715L233.834,83.228L233.963,84.404L233.963,84.404L233.878,85.137L234.888,86.243L234.79,86.349L235.305,86.896L235.844,87.594L236.121,88.058L237.132,88.704L237.95,88.679L236.404,90.535L236.387,90.549L235.221,91.374L235.151,91.425L234.482,91.986L234.468,92.572L233.778,93.135L233.798,93.691L232.812,94.087L232.591,94.867L230.939,95.636L229.857,96.215L228.52,96.479L228.1,96.518L226.939,96.649L226.768,96.67L224.022,96.927L223.984,96.931L222.967,96.97L221.361,97.078L221.266,97.092L220.511,97.228L218.644,97.411L217.668,97.471L216.423,97.525L215.33,97.56L214.542,97.753L213.465,97.756L211.869,97.946L211.603,97.978L210.422,98.099L208.804,98.266L208.518,98.294L206.512,98.185L206.69,99.397L204.376,99.563L204.223,99.572L202.636,99.687L202.578,99.688L202.54,99.695L199.805,99.89L199.425,99.949L199.84,99.012L200.293,99.444L200.632,98.821L200.467,98.388L200.853,97.904L200.557,97.783L200.89,96.826L200.7,96.584L200.489,96.03L201.212,94.971L201.642,94.858L201.679,94.845L203.649,95.687L204.073,95.737L204.371,95.17L203.856,94.444L203.976,93.548L204.28,93.308L204.279,93.297L204.573,93.409L204.961,93.049L205.988,92.829L206.083,92.606L205.667,92.166L205.484,91.556L206.086,90.604L206.735,90.462L206.571,89.866L207.754,89.789L207.754,89.785L208.225,90.201L208.215,89.237L208.76,89.623L209.021,89.381L209.834,89.599L210.015,89.714L211.112,90.123L211.5,89.224L212.316,88.685L213.243,89.655L213.545,89.08L213.953,89.002L213.967,88.2L214.066,87.678L214.715,87.199L215.16,88.046L216.559,88.244L216.815,88.169L216.935,86.989L217.433,86.182L217.69,86.301L218.146,85.479L218.286,85.039L219.098,84.396L219.088,83.972L218.926,83.031L219.456,82.91L220.174,83.136L221.025,82.558L222.11,82.233L222.131,81.773L221.709,81.526L221.57,80.659L221.569,80.656L221.805,80.122L222.103,79.809Z" + }, + { + "fill": "rgb(91, 191, 192)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.13; geo: [object Object]; name: Kentucky", + "shape": "M222.841,80.211L223.43,79.997L224.447,80.375L225.011,81.309L225.05,81.623L226.02,81.887L226.779,81.812L227.925,82.556L227.925,82.556L228.24,82.519L228.792,82.006L230.196,82.387L230.194,82.377L230.768,82.31L231.315,81.501L231.315,81.504L232.007,81.21L232.566,82.389L233.384,82.715L233.834,83.228L233.963,84.404L233.963,84.404L233.878,85.137L234.888,86.243L234.79,86.349L235.305,86.896L235.844,87.594L236.121,88.058L237.132,88.704L237.95,88.679L236.404,90.535L236.387,90.549L235.221,91.374L235.151,91.425L234.482,91.986L234.468,92.572L233.778,93.135L233.798,93.691L232.812,94.087L232.591,94.867L230.939,95.636L229.857,96.215L228.52,96.479L228.1,96.518L226.939,96.649L226.768,96.67L224.022,96.927L223.984,96.931L222.967,96.97L221.361,97.078L221.266,97.092L220.511,97.228L218.644,97.411L217.668,97.471L216.423,97.525L215.33,97.56L214.542,97.753L213.465,97.756L211.869,97.946L211.603,97.978L210.422,98.099L208.804,98.266L208.518,98.294L206.512,98.185L206.69,99.397L204.376,99.563L204.223,99.572L202.636,99.687L202.578,99.688L202.54,99.695L199.805,99.89L199.425,99.949L199.84,99.012L200.293,99.444L200.632,98.821L200.467,98.388L200.853,97.904L200.557,97.783L200.89,96.826L200.7,96.584L200.489,96.03L201.212,94.971L201.642,94.858L201.679,94.845L203.649,95.687L204.073,95.737L204.371,95.17L203.856,94.444L203.976,93.548L204.28,93.308L204.279,93.297L204.573,93.409L204.961,93.049L205.988,92.829L206.083,92.606L205.667,92.166L205.484,91.556L206.086,90.604L206.735,90.462L206.571,89.866L207.754,89.789L207.754,89.785L208.225,90.201L208.215,89.237L208.76,89.623L209.021,89.381L209.834,89.599L210.015,89.714L211.112,90.123L211.5,89.224L212.316,88.685L213.243,89.655L213.545,89.08L213.953,89.002L213.967,88.2L214.066,87.678L214.715,87.199L215.16,88.046L216.559,88.244L216.815,88.169L216.935,86.989L217.433,86.182L217.69,86.301L218.146,85.479L218.286,85.039L219.098,84.396L219.088,83.972L218.926,83.031L219.456,82.91L220.174,83.136L221.025,82.558L222.11,82.233L222.131,81.773L221.709,81.526L221.57,80.659L221.569,80.656L221.805,80.122L222.103,79.809Z" + }, + { + "fill": "rgb(111, 199, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.115; geo: [object Object]; name: Kentucky", + "shape": "M222.841,80.211L223.43,79.997L224.447,80.375L225.011,81.309L225.05,81.623L226.02,81.887L226.779,81.812L227.925,82.556L227.925,82.556L228.24,82.519L228.792,82.006L230.196,82.387L230.194,82.377L230.768,82.31L231.315,81.501L231.315,81.504L232.007,81.21L232.566,82.389L233.384,82.715L233.834,83.228L233.963,84.404L233.963,84.404L233.878,85.137L234.888,86.243L234.79,86.349L235.305,86.896L235.844,87.594L236.121,88.058L237.132,88.704L237.95,88.679L236.404,90.535L236.387,90.549L235.221,91.374L235.151,91.425L234.482,91.986L234.468,92.572L233.778,93.135L233.798,93.691L232.812,94.087L232.591,94.867L230.939,95.636L229.857,96.215L228.52,96.479L228.1,96.518L226.939,96.649L226.768,96.67L224.022,96.927L223.984,96.931L222.967,96.97L221.361,97.078L221.266,97.092L220.511,97.228L218.644,97.411L217.668,97.471L216.423,97.525L215.33,97.56L214.542,97.753L213.465,97.756L211.869,97.946L211.603,97.978L210.422,98.099L208.804,98.266L208.518,98.294L206.512,98.185L206.69,99.397L204.376,99.563L204.223,99.572L202.636,99.687L202.578,99.688L202.54,99.695L199.805,99.89L199.425,99.949L199.84,99.012L200.293,99.444L200.632,98.821L200.467,98.388L200.853,97.904L200.557,97.783L200.89,96.826L200.7,96.584L200.489,96.03L201.212,94.971L201.642,94.858L201.679,94.845L203.649,95.687L204.073,95.737L204.371,95.17L203.856,94.444L203.976,93.548L204.28,93.308L204.279,93.297L204.573,93.409L204.961,93.049L205.988,92.829L206.083,92.606L205.667,92.166L205.484,91.556L206.086,90.604L206.735,90.462L206.571,89.866L207.754,89.789L207.754,89.785L208.225,90.201L208.215,89.237L208.76,89.623L209.021,89.381L209.834,89.599L210.015,89.714L211.112,90.123L211.5,89.224L212.316,88.685L213.243,89.655L213.545,89.08L213.953,89.002L213.967,88.2L214.066,87.678L214.715,87.199L215.16,88.046L216.559,88.244L216.815,88.169L216.935,86.989L217.433,86.182L217.69,86.301L218.146,85.479L218.286,85.039L219.098,84.396L219.088,83.972L218.926,83.031L219.456,82.91L220.174,83.136L221.025,82.558L222.11,82.233L222.131,81.773L221.709,81.526L221.57,80.659L221.569,80.656L221.805,80.122L222.103,79.809Z" + }, + { + "fill": "rgb(71, 181, 194)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.146; geo: [object Object]; name: Kentucky", + "shape": "M222.841,80.211L223.43,79.997L224.447,80.375L225.011,81.309L225.05,81.623L226.02,81.887L226.779,81.812L227.925,82.556L227.925,82.556L228.24,82.519L228.792,82.006L230.196,82.387L230.194,82.377L230.768,82.31L231.315,81.501L231.315,81.504L232.007,81.21L232.566,82.389L233.384,82.715L233.834,83.228L233.963,84.404L233.963,84.404L233.878,85.137L234.888,86.243L234.79,86.349L235.305,86.896L235.844,87.594L236.121,88.058L237.132,88.704L237.95,88.679L236.404,90.535L236.387,90.549L235.221,91.374L235.151,91.425L234.482,91.986L234.468,92.572L233.778,93.135L233.798,93.691L232.812,94.087L232.591,94.867L230.939,95.636L229.857,96.215L228.52,96.479L228.1,96.518L226.939,96.649L226.768,96.67L224.022,96.927L223.984,96.931L222.967,96.97L221.361,97.078L221.266,97.092L220.511,97.228L218.644,97.411L217.668,97.471L216.423,97.525L215.33,97.56L214.542,97.753L213.465,97.756L211.869,97.946L211.603,97.978L210.422,98.099L208.804,98.266L208.518,98.294L206.512,98.185L206.69,99.397L204.376,99.563L204.223,99.572L202.636,99.687L202.578,99.688L202.54,99.695L199.805,99.89L199.425,99.949L199.84,99.012L200.293,99.444L200.632,98.821L200.467,98.388L200.853,97.904L200.557,97.783L200.89,96.826L200.7,96.584L200.489,96.03L201.212,94.971L201.642,94.858L201.679,94.845L203.649,95.687L204.073,95.737L204.371,95.17L203.856,94.444L203.976,93.548L204.28,93.308L204.279,93.297L204.573,93.409L204.961,93.049L205.988,92.829L206.083,92.606L205.667,92.166L205.484,91.556L206.086,90.604L206.735,90.462L206.571,89.866L207.754,89.789L207.754,89.785L208.225,90.201L208.215,89.237L208.76,89.623L209.021,89.381L209.834,89.599L210.015,89.714L211.112,90.123L211.5,89.224L212.316,88.685L213.243,89.655L213.545,89.08L213.953,89.002L213.967,88.2L214.066,87.678L214.715,87.199L215.16,88.046L216.559,88.244L216.815,88.169L216.935,86.989L217.433,86.182L217.69,86.301L218.146,85.479L218.286,85.039L219.098,84.396L219.088,83.972L218.926,83.031L219.456,82.91L220.174,83.136L221.025,82.558L222.11,82.233L222.131,81.773L221.709,81.526L221.57,80.659L221.569,80.656L221.805,80.122L222.103,79.809Z" + }, + { + "fill": "rgb(124, 204, 188)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.107; geo: [object Object]; name: Kentucky", + "shape": "M222.841,80.211L223.43,79.997L224.447,80.375L225.011,81.309L225.05,81.623L226.02,81.887L226.779,81.812L227.925,82.556L227.925,82.556L228.24,82.519L228.792,82.006L230.196,82.387L230.194,82.377L230.768,82.31L231.315,81.501L231.315,81.504L232.007,81.21L232.566,82.389L233.384,82.715L233.834,83.228L233.963,84.404L233.963,84.404L233.878,85.137L234.888,86.243L234.79,86.349L235.305,86.896L235.844,87.594L236.121,88.058L237.132,88.704L237.95,88.679L236.404,90.535L236.387,90.549L235.221,91.374L235.151,91.425L234.482,91.986L234.468,92.572L233.778,93.135L233.798,93.691L232.812,94.087L232.591,94.867L230.939,95.636L229.857,96.215L228.52,96.479L228.1,96.518L226.939,96.649L226.768,96.67L224.022,96.927L223.984,96.931L222.967,96.97L221.361,97.078L221.266,97.092L220.511,97.228L218.644,97.411L217.668,97.471L216.423,97.525L215.33,97.56L214.542,97.753L213.465,97.756L211.869,97.946L211.603,97.978L210.422,98.099L208.804,98.266L208.518,98.294L206.512,98.185L206.69,99.397L204.376,99.563L204.223,99.572L202.636,99.687L202.578,99.688L202.54,99.695L199.805,99.89L199.425,99.949L199.84,99.012L200.293,99.444L200.632,98.821L200.467,98.388L200.853,97.904L200.557,97.783L200.89,96.826L200.7,96.584L200.489,96.03L201.212,94.971L201.642,94.858L201.679,94.845L203.649,95.687L204.073,95.737L204.371,95.17L203.856,94.444L203.976,93.548L204.28,93.308L204.279,93.297L204.573,93.409L204.961,93.049L205.988,92.829L206.083,92.606L205.667,92.166L205.484,91.556L206.086,90.604L206.735,90.462L206.571,89.866L207.754,89.789L207.754,89.785L208.225,90.201L208.215,89.237L208.76,89.623L209.021,89.381L209.834,89.599L210.015,89.714L211.112,90.123L211.5,89.224L212.316,88.685L213.243,89.655L213.545,89.08L213.953,89.002L213.967,88.2L214.066,87.678L214.715,87.199L215.16,88.046L216.559,88.244L216.815,88.169L216.935,86.989L217.433,86.182L217.69,86.301L218.146,85.479L218.286,85.039L219.098,84.396L219.088,83.972L218.926,83.031L219.456,82.91L220.174,83.136L221.025,82.558L222.11,82.233L222.131,81.773L221.709,81.526L221.57,80.659L221.569,80.656L221.805,80.122L222.103,79.809Z" + }, + { + "fill": "rgb(44, 157, 192)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.177; geo: [object Object]; name: Kentucky", + "shape": "M222.841,80.211L223.43,79.997L224.447,80.375L225.011,81.309L225.05,81.623L226.02,81.887L226.779,81.812L227.925,82.556L227.925,82.556L228.24,82.519L228.792,82.006L230.196,82.387L230.194,82.377L230.768,82.31L231.315,81.501L231.315,81.504L232.007,81.21L232.566,82.389L233.384,82.715L233.834,83.228L233.963,84.404L233.963,84.404L233.878,85.137L234.888,86.243L234.79,86.349L235.305,86.896L235.844,87.594L236.121,88.058L237.132,88.704L237.95,88.679L236.404,90.535L236.387,90.549L235.221,91.374L235.151,91.425L234.482,91.986L234.468,92.572L233.778,93.135L233.798,93.691L232.812,94.087L232.591,94.867L230.939,95.636L229.857,96.215L228.52,96.479L228.1,96.518L226.939,96.649L226.768,96.67L224.022,96.927L223.984,96.931L222.967,96.97L221.361,97.078L221.266,97.092L220.511,97.228L218.644,97.411L217.668,97.471L216.423,97.525L215.33,97.56L214.542,97.753L213.465,97.756L211.869,97.946L211.603,97.978L210.422,98.099L208.804,98.266L208.518,98.294L206.512,98.185L206.69,99.397L204.376,99.563L204.223,99.572L202.636,99.687L202.578,99.688L202.54,99.695L199.805,99.89L199.425,99.949L199.84,99.012L200.293,99.444L200.632,98.821L200.467,98.388L200.853,97.904L200.557,97.783L200.89,96.826L200.7,96.584L200.489,96.03L201.212,94.971L201.642,94.858L201.679,94.845L203.649,95.687L204.073,95.737L204.371,95.17L203.856,94.444L203.976,93.548L204.28,93.308L204.279,93.297L204.573,93.409L204.961,93.049L205.988,92.829L206.083,92.606L205.667,92.166L205.484,91.556L206.086,90.604L206.735,90.462L206.571,89.866L207.754,89.789L207.754,89.785L208.225,90.201L208.215,89.237L208.76,89.623L209.021,89.381L209.834,89.599L210.015,89.714L211.112,90.123L211.5,89.224L212.316,88.685L213.243,89.655L213.545,89.08L213.953,89.002L213.967,88.2L214.066,87.678L214.715,87.199L215.16,88.046L216.559,88.244L216.815,88.169L216.935,86.989L217.433,86.182L217.69,86.301L218.146,85.479L218.286,85.039L219.098,84.396L219.088,83.972L218.926,83.031L219.456,82.91L220.174,83.136L221.025,82.558L222.11,82.233L222.131,81.773L221.709,81.526L221.57,80.659L221.569,80.656L221.805,80.122L222.103,79.809Z" + }, + { + "fill": "rgb(137, 209, 186)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.098; geo: [object Object]; name: Kentucky", + "shape": "M222.841,80.211L223.43,79.997L224.447,80.375L225.011,81.309L225.05,81.623L226.02,81.887L226.779,81.812L227.925,82.556L227.925,82.556L228.24,82.519L228.792,82.006L230.196,82.387L230.194,82.377L230.768,82.31L231.315,81.501L231.315,81.504L232.007,81.21L232.566,82.389L233.384,82.715L233.834,83.228L233.963,84.404L233.963,84.404L233.878,85.137L234.888,86.243L234.79,86.349L235.305,86.896L235.844,87.594L236.121,88.058L237.132,88.704L237.95,88.679L236.404,90.535L236.387,90.549L235.221,91.374L235.151,91.425L234.482,91.986L234.468,92.572L233.778,93.135L233.798,93.691L232.812,94.087L232.591,94.867L230.939,95.636L229.857,96.215L228.52,96.479L228.1,96.518L226.939,96.649L226.768,96.67L224.022,96.927L223.984,96.931L222.967,96.97L221.361,97.078L221.266,97.092L220.511,97.228L218.644,97.411L217.668,97.471L216.423,97.525L215.33,97.56L214.542,97.753L213.465,97.756L211.869,97.946L211.603,97.978L210.422,98.099L208.804,98.266L208.518,98.294L206.512,98.185L206.69,99.397L204.376,99.563L204.223,99.572L202.636,99.687L202.578,99.688L202.54,99.695L199.805,99.89L199.425,99.949L199.84,99.012L200.293,99.444L200.632,98.821L200.467,98.388L200.853,97.904L200.557,97.783L200.89,96.826L200.7,96.584L200.489,96.03L201.212,94.971L201.642,94.858L201.679,94.845L203.649,95.687L204.073,95.737L204.371,95.17L203.856,94.444L203.976,93.548L204.28,93.308L204.279,93.297L204.573,93.409L204.961,93.049L205.988,92.829L206.083,92.606L205.667,92.166L205.484,91.556L206.086,90.604L206.735,90.462L206.571,89.866L207.754,89.789L207.754,89.785L208.225,90.201L208.215,89.237L208.76,89.623L209.021,89.381L209.834,89.599L210.015,89.714L211.112,90.123L211.5,89.224L212.316,88.685L213.243,89.655L213.545,89.08L213.953,89.002L213.967,88.2L214.066,87.678L214.715,87.199L215.16,88.046L216.559,88.244L216.815,88.169L216.935,86.989L217.433,86.182L217.69,86.301L218.146,85.479L218.286,85.039L219.098,84.396L219.088,83.972L218.926,83.031L219.456,82.91L220.174,83.136L221.025,82.558L222.11,82.233L222.131,81.773L221.709,81.526L221.57,80.659L221.569,80.656L221.805,80.122L222.103,79.809Z" + }, + { + "fill": "rgb(225, 243, 183)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.026; geo: [object Object]; name: Kentucky", + "shape": "M222.841,80.211L223.43,79.997L224.447,80.375L225.011,81.309L225.05,81.623L226.02,81.887L226.779,81.812L227.925,82.556L227.925,82.556L228.24,82.519L228.792,82.006L230.196,82.387L230.194,82.377L230.768,82.31L231.315,81.501L231.315,81.504L232.007,81.21L232.566,82.389L233.384,82.715L233.834,83.228L233.963,84.404L233.963,84.404L233.878,85.137L234.888,86.243L234.79,86.349L235.305,86.896L235.844,87.594L236.121,88.058L237.132,88.704L237.95,88.679L236.404,90.535L236.387,90.549L235.221,91.374L235.151,91.425L234.482,91.986L234.468,92.572L233.778,93.135L233.798,93.691L232.812,94.087L232.591,94.867L230.939,95.636L229.857,96.215L228.52,96.479L228.1,96.518L226.939,96.649L226.768,96.67L224.022,96.927L223.984,96.931L222.967,96.97L221.361,97.078L221.266,97.092L220.511,97.228L218.644,97.411L217.668,97.471L216.423,97.525L215.33,97.56L214.542,97.753L213.465,97.756L211.869,97.946L211.603,97.978L210.422,98.099L208.804,98.266L208.518,98.294L206.512,98.185L206.69,99.397L204.376,99.563L204.223,99.572L202.636,99.687L202.578,99.688L202.54,99.695L199.805,99.89L199.425,99.949L199.84,99.012L200.293,99.444L200.632,98.821L200.467,98.388L200.853,97.904L200.557,97.783L200.89,96.826L200.7,96.584L200.489,96.03L201.212,94.971L201.642,94.858L201.679,94.845L203.649,95.687L204.073,95.737L204.371,95.17L203.856,94.444L203.976,93.548L204.28,93.308L204.279,93.297L204.573,93.409L204.961,93.049L205.988,92.829L206.083,92.606L205.667,92.166L205.484,91.556L206.086,90.604L206.735,90.462L206.571,89.866L207.754,89.789L207.754,89.785L208.225,90.201L208.215,89.237L208.76,89.623L209.021,89.381L209.834,89.599L210.015,89.714L211.112,90.123L211.5,89.224L212.316,88.685L213.243,89.655L213.545,89.08L213.953,89.002L213.967,88.2L214.066,87.678L214.715,87.199L215.16,88.046L216.559,88.244L216.815,88.169L216.935,86.989L217.433,86.182L217.69,86.301L218.146,85.479L218.286,85.039L219.098,84.396L219.088,83.972L218.926,83.031L219.456,82.91L220.174,83.136L221.025,82.558L222.11,82.233L222.131,81.773L221.709,81.526L221.57,80.659L221.569,80.656L221.805,80.122L222.103,79.809Z" + }, + { + "fill": "rgb(226, 244, 183)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.025; geo: [object Object]; name: Kentucky", + "shape": "M222.841,80.211L223.43,79.997L224.447,80.375L225.011,81.309L225.05,81.623L226.02,81.887L226.779,81.812L227.925,82.556L227.925,82.556L228.24,82.519L228.792,82.006L230.196,82.387L230.194,82.377L230.768,82.31L231.315,81.501L231.315,81.504L232.007,81.21L232.566,82.389L233.384,82.715L233.834,83.228L233.963,84.404L233.963,84.404L233.878,85.137L234.888,86.243L234.79,86.349L235.305,86.896L235.844,87.594L236.121,88.058L237.132,88.704L237.95,88.679L236.404,90.535L236.387,90.549L235.221,91.374L235.151,91.425L234.482,91.986L234.468,92.572L233.778,93.135L233.798,93.691L232.812,94.087L232.591,94.867L230.939,95.636L229.857,96.215L228.52,96.479L228.1,96.518L226.939,96.649L226.768,96.67L224.022,96.927L223.984,96.931L222.967,96.97L221.361,97.078L221.266,97.092L220.511,97.228L218.644,97.411L217.668,97.471L216.423,97.525L215.33,97.56L214.542,97.753L213.465,97.756L211.869,97.946L211.603,97.978L210.422,98.099L208.804,98.266L208.518,98.294L206.512,98.185L206.69,99.397L204.376,99.563L204.223,99.572L202.636,99.687L202.578,99.688L202.54,99.695L199.805,99.89L199.425,99.949L199.84,99.012L200.293,99.444L200.632,98.821L200.467,98.388L200.853,97.904L200.557,97.783L200.89,96.826L200.7,96.584L200.489,96.03L201.212,94.971L201.642,94.858L201.679,94.845L203.649,95.687L204.073,95.737L204.371,95.17L203.856,94.444L203.976,93.548L204.28,93.308L204.279,93.297L204.573,93.409L204.961,93.049L205.988,92.829L206.083,92.606L205.667,92.166L205.484,91.556L206.086,90.604L206.735,90.462L206.571,89.866L207.754,89.789L207.754,89.785L208.225,90.201L208.215,89.237L208.76,89.623L209.021,89.381L209.834,89.599L210.015,89.714L211.112,90.123L211.5,89.224L212.316,88.685L213.243,89.655L213.545,89.08L213.953,89.002L213.967,88.2L214.066,87.678L214.715,87.199L215.16,88.046L216.559,88.244L216.815,88.169L216.935,86.989L217.433,86.182L217.69,86.301L218.146,85.479L218.286,85.039L219.098,84.396L219.088,83.972L218.926,83.031L219.456,82.91L220.174,83.136L221.025,82.558L222.11,82.233L222.131,81.773L221.709,81.526L221.57,80.659L221.569,80.656L221.805,80.122L222.103,79.809Z" + }, + { + "fill": "rgb(128, 206, 187)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.104; geo: [object Object]; name: Louisiana", + "shape": "M192.77,149.572L191.94,149.394L191.542,148.999L191.965,148.628L192.523,148.842ZM201.345,148.583L200.431,148.455L201.409,147.968ZM188.681,148.014L187.44,147.432L188.028,146.964L189.307,147.466ZM202.468,144.124L202.59,144.369L203.062,144.542L202.526,144.963L202.975,145.097L202.43,145.388L202.397,145.817L201.925,145.354L201.221,145.463L201.718,146.008L201.739,146.01L201.87,146.084L201.805,146.046L201.784,146.047L201.308,146.137L201.298,146.311L200.915,146.546L201.068,146.951L202.028,147.472L202.203,147.882L202.826,147.767L203.77,148.329L204.428,148.39L204.659,149.254L205.033,149.462L204.443,149.775L204.351,150.248L203.856,149.832L203.041,150.863L203.615,149.708L203.475,148.913L202.671,149.179L202.313,148.265L201.635,147.881L200.611,147.989L200.429,147.766L200.08,147.583L199.448,147.544L198.295,146.905L198.614,146.639L198.225,146.114L198.334,146.855L197.974,147.141L198.249,147.528L199.062,147.767L199.086,148.476L198.908,148.653L199.051,149.265L198.921,149.544L198.177,150.131L197.903,149.79L197.62,148.934L197.191,148.801L197.03,149.298L197.025,149.204L197.023,149.165L197.039,149.077L197.037,149.052L197.077,149.017L195.925,148.745L196.036,149.215L195.859,149.438L195.686,149.361L195.3,149.995L194.563,150.004L193.922,149.851L194.695,149.329L193.677,149.186L193.284,149.722L192.833,149.558L192.792,148.77L191.979,148.065L192.183,147.098L191.872,147.597L190.398,147.474L190.224,146.898L189.757,146.764L189.729,146.163L188.416,146.265L188.556,145.645L187.721,145.652L186.791,146.42L186.325,146.269L187.291,147.359L185.797,147.744L184.028,147.503L181.927,146.672L180.369,146.283L177.826,146.553L176.874,146.954L176.354,146.144L176.764,145.795L177.506,144.526L177.558,143.229L177.192,142.664L177.346,142.176L177.589,141.929L177.324,141.241L177.667,140.883L178.322,139.009L178.215,138.064L178.582,137.921L178.242,137.478L178.288,136.884L178.023,136.948L177.926,136.376L177.509,136.115L177.576,135.48L176.626,134.225L176.832,133.438L176.321,132.49L175.529,131.591L175.356,130.139L175.329,128.817L175.287,126.788L175.261,125.52L175.242,124.588L176.506,124.56L176.566,124.559L178.15,124.524L178.331,124.519L179.735,124.48L181.119,124.445L182.603,124.418L186.274,124.319L189.662,124.186L189.803,124.179L190.765,124.132L191.306,124.112L191.281,124.814L191.735,124.249L191.921,124.726L191.486,125.268L191.497,125.877L191.985,125.957L191.511,126.559L192.138,126.966L192.002,127.063L191.766,127.591L192.632,127.901L192.432,128.322L192.969,128.518L192.62,128.82L192.575,129.497L191.821,129.449L191.625,129.988L192.256,130.01L192.359,130.027L192.361,130.07L192.152,130.737L191.542,131.142L191.227,131.778L190.705,131.923L190.881,132.603L190.54,132.725L190.455,133.501L189.783,133.565L190.412,133.876L189.811,134.14L189.857,134.692L189.502,134.995L189.891,135.853L189.121,136.055L189.508,136.435L189.305,136.948L189.691,137.266L189.301,137.737L191.932,137.617L192.61,137.582L193.945,137.504L195.404,137.422L195.527,137.415L196.677,137.344L197.17,137.315L199.613,137.151L200.229,137.11L199.718,139.403L200.196,140.385L200.676,140.737L201.022,141.872L201.776,142.552L201.185,142.755L200.622,143.685L199.903,143.862L199.903,143.873L199.885,143.907L199.885,143.907L200.118,144.289L201.213,144.73L201.535,144.535L201.53,143.841L202.026,143.461Z" + }, + { + "fill": "rgb(174, 223, 182)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.073; geo: [object Object]; name: Louisiana", + "shape": "M192.77,149.572L191.94,149.394L191.542,148.999L191.965,148.628L192.523,148.842ZM201.345,148.583L200.431,148.455L201.409,147.968ZM188.681,148.014L187.44,147.432L188.028,146.964L189.307,147.466ZM202.468,144.124L202.59,144.369L203.062,144.542L202.526,144.963L202.975,145.097L202.43,145.388L202.397,145.817L201.925,145.354L201.221,145.463L201.718,146.008L201.739,146.01L201.87,146.084L201.805,146.046L201.784,146.047L201.308,146.137L201.298,146.311L200.915,146.546L201.068,146.951L202.028,147.472L202.203,147.882L202.826,147.767L203.77,148.329L204.428,148.39L204.659,149.254L205.033,149.462L204.443,149.775L204.351,150.248L203.856,149.832L203.041,150.863L203.615,149.708L203.475,148.913L202.671,149.179L202.313,148.265L201.635,147.881L200.611,147.989L200.429,147.766L200.08,147.583L199.448,147.544L198.295,146.905L198.614,146.639L198.225,146.114L198.334,146.855L197.974,147.141L198.249,147.528L199.062,147.767L199.086,148.476L198.908,148.653L199.051,149.265L198.921,149.544L198.177,150.131L197.903,149.79L197.62,148.934L197.191,148.801L197.03,149.298L197.025,149.204L197.023,149.165L197.039,149.077L197.037,149.052L197.077,149.017L195.925,148.745L196.036,149.215L195.859,149.438L195.686,149.361L195.3,149.995L194.563,150.004L193.922,149.851L194.695,149.329L193.677,149.186L193.284,149.722L192.833,149.558L192.792,148.77L191.979,148.065L192.183,147.098L191.872,147.597L190.398,147.474L190.224,146.898L189.757,146.764L189.729,146.163L188.416,146.265L188.556,145.645L187.721,145.652L186.791,146.42L186.325,146.269L187.291,147.359L185.797,147.744L184.028,147.503L181.927,146.672L180.369,146.283L177.826,146.553L176.874,146.954L176.354,146.144L176.764,145.795L177.506,144.526L177.558,143.229L177.192,142.664L177.346,142.176L177.589,141.929L177.324,141.241L177.667,140.883L178.322,139.009L178.215,138.064L178.582,137.921L178.242,137.478L178.288,136.884L178.023,136.948L177.926,136.376L177.509,136.115L177.576,135.48L176.626,134.225L176.832,133.438L176.321,132.49L175.529,131.591L175.356,130.139L175.329,128.817L175.287,126.788L175.261,125.52L175.242,124.588L176.506,124.56L176.566,124.559L178.15,124.524L178.331,124.519L179.735,124.48L181.119,124.445L182.603,124.418L186.274,124.319L189.662,124.186L189.803,124.179L190.765,124.132L191.306,124.112L191.281,124.814L191.735,124.249L191.921,124.726L191.486,125.268L191.497,125.877L191.985,125.957L191.511,126.559L192.138,126.966L192.002,127.063L191.766,127.591L192.632,127.901L192.432,128.322L192.969,128.518L192.62,128.82L192.575,129.497L191.821,129.449L191.625,129.988L192.256,130.01L192.359,130.027L192.361,130.07L192.152,130.737L191.542,131.142L191.227,131.778L190.705,131.923L190.881,132.603L190.54,132.725L190.455,133.501L189.783,133.565L190.412,133.876L189.811,134.14L189.857,134.692L189.502,134.995L189.891,135.853L189.121,136.055L189.508,136.435L189.305,136.948L189.691,137.266L189.301,137.737L191.932,137.617L192.61,137.582L193.945,137.504L195.404,137.422L195.527,137.415L196.677,137.344L197.17,137.315L199.613,137.151L200.229,137.11L199.718,139.403L200.196,140.385L200.676,140.737L201.022,141.872L201.776,142.552L201.185,142.755L200.622,143.685L199.903,143.862L199.903,143.873L199.885,143.907L199.885,143.907L200.118,144.289L201.213,144.73L201.535,144.535L201.53,143.841L202.026,143.461Z" + }, + { + "fill": "rgb(93, 191, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.129; geo: [object Object]; name: Louisiana", + "shape": "M192.77,149.572L191.94,149.394L191.542,148.999L191.965,148.628L192.523,148.842ZM201.345,148.583L200.431,148.455L201.409,147.968ZM188.681,148.014L187.44,147.432L188.028,146.964L189.307,147.466ZM202.468,144.124L202.59,144.369L203.062,144.542L202.526,144.963L202.975,145.097L202.43,145.388L202.397,145.817L201.925,145.354L201.221,145.463L201.718,146.008L201.739,146.01L201.87,146.084L201.805,146.046L201.784,146.047L201.308,146.137L201.298,146.311L200.915,146.546L201.068,146.951L202.028,147.472L202.203,147.882L202.826,147.767L203.77,148.329L204.428,148.39L204.659,149.254L205.033,149.462L204.443,149.775L204.351,150.248L203.856,149.832L203.041,150.863L203.615,149.708L203.475,148.913L202.671,149.179L202.313,148.265L201.635,147.881L200.611,147.989L200.429,147.766L200.08,147.583L199.448,147.544L198.295,146.905L198.614,146.639L198.225,146.114L198.334,146.855L197.974,147.141L198.249,147.528L199.062,147.767L199.086,148.476L198.908,148.653L199.051,149.265L198.921,149.544L198.177,150.131L197.903,149.79L197.62,148.934L197.191,148.801L197.03,149.298L197.025,149.204L197.023,149.165L197.039,149.077L197.037,149.052L197.077,149.017L195.925,148.745L196.036,149.215L195.859,149.438L195.686,149.361L195.3,149.995L194.563,150.004L193.922,149.851L194.695,149.329L193.677,149.186L193.284,149.722L192.833,149.558L192.792,148.77L191.979,148.065L192.183,147.098L191.872,147.597L190.398,147.474L190.224,146.898L189.757,146.764L189.729,146.163L188.416,146.265L188.556,145.645L187.721,145.652L186.791,146.42L186.325,146.269L187.291,147.359L185.797,147.744L184.028,147.503L181.927,146.672L180.369,146.283L177.826,146.553L176.874,146.954L176.354,146.144L176.764,145.795L177.506,144.526L177.558,143.229L177.192,142.664L177.346,142.176L177.589,141.929L177.324,141.241L177.667,140.883L178.322,139.009L178.215,138.064L178.582,137.921L178.242,137.478L178.288,136.884L178.023,136.948L177.926,136.376L177.509,136.115L177.576,135.48L176.626,134.225L176.832,133.438L176.321,132.49L175.529,131.591L175.356,130.139L175.329,128.817L175.287,126.788L175.261,125.52L175.242,124.588L176.506,124.56L176.566,124.559L178.15,124.524L178.331,124.519L179.735,124.48L181.119,124.445L182.603,124.418L186.274,124.319L189.662,124.186L189.803,124.179L190.765,124.132L191.306,124.112L191.281,124.814L191.735,124.249L191.921,124.726L191.486,125.268L191.497,125.877L191.985,125.957L191.511,126.559L192.138,126.966L192.002,127.063L191.766,127.591L192.632,127.901L192.432,128.322L192.969,128.518L192.62,128.82L192.575,129.497L191.821,129.449L191.625,129.988L192.256,130.01L192.359,130.027L192.361,130.07L192.152,130.737L191.542,131.142L191.227,131.778L190.705,131.923L190.881,132.603L190.54,132.725L190.455,133.501L189.783,133.565L190.412,133.876L189.811,134.14L189.857,134.692L189.502,134.995L189.891,135.853L189.121,136.055L189.508,136.435L189.305,136.948L189.691,137.266L189.301,137.737L191.932,137.617L192.61,137.582L193.945,137.504L195.404,137.422L195.527,137.415L196.677,137.344L197.17,137.315L199.613,137.151L200.229,137.11L199.718,139.403L200.196,140.385L200.676,140.737L201.022,141.872L201.776,142.552L201.185,142.755L200.622,143.685L199.903,143.862L199.903,143.873L199.885,143.907L199.885,143.907L200.118,144.289L201.213,144.73L201.535,144.535L201.53,143.841L202.026,143.461Z" + }, + { + "fill": "rgb(119, 202, 188)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.11; geo: [object Object]; name: Louisiana", + "shape": "M192.77,149.572L191.94,149.394L191.542,148.999L191.965,148.628L192.523,148.842ZM201.345,148.583L200.431,148.455L201.409,147.968ZM188.681,148.014L187.44,147.432L188.028,146.964L189.307,147.466ZM202.468,144.124L202.59,144.369L203.062,144.542L202.526,144.963L202.975,145.097L202.43,145.388L202.397,145.817L201.925,145.354L201.221,145.463L201.718,146.008L201.739,146.01L201.87,146.084L201.805,146.046L201.784,146.047L201.308,146.137L201.298,146.311L200.915,146.546L201.068,146.951L202.028,147.472L202.203,147.882L202.826,147.767L203.77,148.329L204.428,148.39L204.659,149.254L205.033,149.462L204.443,149.775L204.351,150.248L203.856,149.832L203.041,150.863L203.615,149.708L203.475,148.913L202.671,149.179L202.313,148.265L201.635,147.881L200.611,147.989L200.429,147.766L200.08,147.583L199.448,147.544L198.295,146.905L198.614,146.639L198.225,146.114L198.334,146.855L197.974,147.141L198.249,147.528L199.062,147.767L199.086,148.476L198.908,148.653L199.051,149.265L198.921,149.544L198.177,150.131L197.903,149.79L197.62,148.934L197.191,148.801L197.03,149.298L197.025,149.204L197.023,149.165L197.039,149.077L197.037,149.052L197.077,149.017L195.925,148.745L196.036,149.215L195.859,149.438L195.686,149.361L195.3,149.995L194.563,150.004L193.922,149.851L194.695,149.329L193.677,149.186L193.284,149.722L192.833,149.558L192.792,148.77L191.979,148.065L192.183,147.098L191.872,147.597L190.398,147.474L190.224,146.898L189.757,146.764L189.729,146.163L188.416,146.265L188.556,145.645L187.721,145.652L186.791,146.42L186.325,146.269L187.291,147.359L185.797,147.744L184.028,147.503L181.927,146.672L180.369,146.283L177.826,146.553L176.874,146.954L176.354,146.144L176.764,145.795L177.506,144.526L177.558,143.229L177.192,142.664L177.346,142.176L177.589,141.929L177.324,141.241L177.667,140.883L178.322,139.009L178.215,138.064L178.582,137.921L178.242,137.478L178.288,136.884L178.023,136.948L177.926,136.376L177.509,136.115L177.576,135.48L176.626,134.225L176.832,133.438L176.321,132.49L175.529,131.591L175.356,130.139L175.329,128.817L175.287,126.788L175.261,125.52L175.242,124.588L176.506,124.56L176.566,124.559L178.15,124.524L178.331,124.519L179.735,124.48L181.119,124.445L182.603,124.418L186.274,124.319L189.662,124.186L189.803,124.179L190.765,124.132L191.306,124.112L191.281,124.814L191.735,124.249L191.921,124.726L191.486,125.268L191.497,125.877L191.985,125.957L191.511,126.559L192.138,126.966L192.002,127.063L191.766,127.591L192.632,127.901L192.432,128.322L192.969,128.518L192.62,128.82L192.575,129.497L191.821,129.449L191.625,129.988L192.256,130.01L192.359,130.027L192.361,130.07L192.152,130.737L191.542,131.142L191.227,131.778L190.705,131.923L190.881,132.603L190.54,132.725L190.455,133.501L189.783,133.565L190.412,133.876L189.811,134.14L189.857,134.692L189.502,134.995L189.891,135.853L189.121,136.055L189.508,136.435L189.305,136.948L189.691,137.266L189.301,137.737L191.932,137.617L192.61,137.582L193.945,137.504L195.404,137.422L195.527,137.415L196.677,137.344L197.17,137.315L199.613,137.151L200.229,137.11L199.718,139.403L200.196,140.385L200.676,140.737L201.022,141.872L201.776,142.552L201.185,142.755L200.622,143.685L199.903,143.862L199.903,143.873L199.885,143.907L199.885,143.907L200.118,144.289L201.213,144.73L201.535,144.535L201.53,143.841L202.026,143.461Z" + }, + { + "fill": "rgb(87, 189, 192)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.133; geo: [object Object]; name: Louisiana", + "shape": "M192.77,149.572L191.94,149.394L191.542,148.999L191.965,148.628L192.523,148.842ZM201.345,148.583L200.431,148.455L201.409,147.968ZM188.681,148.014L187.44,147.432L188.028,146.964L189.307,147.466ZM202.468,144.124L202.59,144.369L203.062,144.542L202.526,144.963L202.975,145.097L202.43,145.388L202.397,145.817L201.925,145.354L201.221,145.463L201.718,146.008L201.739,146.01L201.87,146.084L201.805,146.046L201.784,146.047L201.308,146.137L201.298,146.311L200.915,146.546L201.068,146.951L202.028,147.472L202.203,147.882L202.826,147.767L203.77,148.329L204.428,148.39L204.659,149.254L205.033,149.462L204.443,149.775L204.351,150.248L203.856,149.832L203.041,150.863L203.615,149.708L203.475,148.913L202.671,149.179L202.313,148.265L201.635,147.881L200.611,147.989L200.429,147.766L200.08,147.583L199.448,147.544L198.295,146.905L198.614,146.639L198.225,146.114L198.334,146.855L197.974,147.141L198.249,147.528L199.062,147.767L199.086,148.476L198.908,148.653L199.051,149.265L198.921,149.544L198.177,150.131L197.903,149.79L197.62,148.934L197.191,148.801L197.03,149.298L197.025,149.204L197.023,149.165L197.039,149.077L197.037,149.052L197.077,149.017L195.925,148.745L196.036,149.215L195.859,149.438L195.686,149.361L195.3,149.995L194.563,150.004L193.922,149.851L194.695,149.329L193.677,149.186L193.284,149.722L192.833,149.558L192.792,148.77L191.979,148.065L192.183,147.098L191.872,147.597L190.398,147.474L190.224,146.898L189.757,146.764L189.729,146.163L188.416,146.265L188.556,145.645L187.721,145.652L186.791,146.42L186.325,146.269L187.291,147.359L185.797,147.744L184.028,147.503L181.927,146.672L180.369,146.283L177.826,146.553L176.874,146.954L176.354,146.144L176.764,145.795L177.506,144.526L177.558,143.229L177.192,142.664L177.346,142.176L177.589,141.929L177.324,141.241L177.667,140.883L178.322,139.009L178.215,138.064L178.582,137.921L178.242,137.478L178.288,136.884L178.023,136.948L177.926,136.376L177.509,136.115L177.576,135.48L176.626,134.225L176.832,133.438L176.321,132.49L175.529,131.591L175.356,130.139L175.329,128.817L175.287,126.788L175.261,125.52L175.242,124.588L176.506,124.56L176.566,124.559L178.15,124.524L178.331,124.519L179.735,124.48L181.119,124.445L182.603,124.418L186.274,124.319L189.662,124.186L189.803,124.179L190.765,124.132L191.306,124.112L191.281,124.814L191.735,124.249L191.921,124.726L191.486,125.268L191.497,125.877L191.985,125.957L191.511,126.559L192.138,126.966L192.002,127.063L191.766,127.591L192.632,127.901L192.432,128.322L192.969,128.518L192.62,128.82L192.575,129.497L191.821,129.449L191.625,129.988L192.256,130.01L192.359,130.027L192.361,130.07L192.152,130.737L191.542,131.142L191.227,131.778L190.705,131.923L190.881,132.603L190.54,132.725L190.455,133.501L189.783,133.565L190.412,133.876L189.811,134.14L189.857,134.692L189.502,134.995L189.891,135.853L189.121,136.055L189.508,136.435L189.305,136.948L189.691,137.266L189.301,137.737L191.932,137.617L192.61,137.582L193.945,137.504L195.404,137.422L195.527,137.415L196.677,137.344L197.17,137.315L199.613,137.151L200.229,137.11L199.718,139.403L200.196,140.385L200.676,140.737L201.022,141.872L201.776,142.552L201.185,142.755L200.622,143.685L199.903,143.862L199.903,143.873L199.885,143.907L199.885,143.907L200.118,144.289L201.213,144.73L201.535,144.535L201.53,143.841L202.026,143.461Z" + }, + { + "fill": "rgb(120, 203, 188)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.109; geo: [object Object]; name: Louisiana", + "shape": "M192.77,149.572L191.94,149.394L191.542,148.999L191.965,148.628L192.523,148.842ZM201.345,148.583L200.431,148.455L201.409,147.968ZM188.681,148.014L187.44,147.432L188.028,146.964L189.307,147.466ZM202.468,144.124L202.59,144.369L203.062,144.542L202.526,144.963L202.975,145.097L202.43,145.388L202.397,145.817L201.925,145.354L201.221,145.463L201.718,146.008L201.739,146.01L201.87,146.084L201.805,146.046L201.784,146.047L201.308,146.137L201.298,146.311L200.915,146.546L201.068,146.951L202.028,147.472L202.203,147.882L202.826,147.767L203.77,148.329L204.428,148.39L204.659,149.254L205.033,149.462L204.443,149.775L204.351,150.248L203.856,149.832L203.041,150.863L203.615,149.708L203.475,148.913L202.671,149.179L202.313,148.265L201.635,147.881L200.611,147.989L200.429,147.766L200.08,147.583L199.448,147.544L198.295,146.905L198.614,146.639L198.225,146.114L198.334,146.855L197.974,147.141L198.249,147.528L199.062,147.767L199.086,148.476L198.908,148.653L199.051,149.265L198.921,149.544L198.177,150.131L197.903,149.79L197.62,148.934L197.191,148.801L197.03,149.298L197.025,149.204L197.023,149.165L197.039,149.077L197.037,149.052L197.077,149.017L195.925,148.745L196.036,149.215L195.859,149.438L195.686,149.361L195.3,149.995L194.563,150.004L193.922,149.851L194.695,149.329L193.677,149.186L193.284,149.722L192.833,149.558L192.792,148.77L191.979,148.065L192.183,147.098L191.872,147.597L190.398,147.474L190.224,146.898L189.757,146.764L189.729,146.163L188.416,146.265L188.556,145.645L187.721,145.652L186.791,146.42L186.325,146.269L187.291,147.359L185.797,147.744L184.028,147.503L181.927,146.672L180.369,146.283L177.826,146.553L176.874,146.954L176.354,146.144L176.764,145.795L177.506,144.526L177.558,143.229L177.192,142.664L177.346,142.176L177.589,141.929L177.324,141.241L177.667,140.883L178.322,139.009L178.215,138.064L178.582,137.921L178.242,137.478L178.288,136.884L178.023,136.948L177.926,136.376L177.509,136.115L177.576,135.48L176.626,134.225L176.832,133.438L176.321,132.49L175.529,131.591L175.356,130.139L175.329,128.817L175.287,126.788L175.261,125.52L175.242,124.588L176.506,124.56L176.566,124.559L178.15,124.524L178.331,124.519L179.735,124.48L181.119,124.445L182.603,124.418L186.274,124.319L189.662,124.186L189.803,124.179L190.765,124.132L191.306,124.112L191.281,124.814L191.735,124.249L191.921,124.726L191.486,125.268L191.497,125.877L191.985,125.957L191.511,126.559L192.138,126.966L192.002,127.063L191.766,127.591L192.632,127.901L192.432,128.322L192.969,128.518L192.62,128.82L192.575,129.497L191.821,129.449L191.625,129.988L192.256,130.01L192.359,130.027L192.361,130.07L192.152,130.737L191.542,131.142L191.227,131.778L190.705,131.923L190.881,132.603L190.54,132.725L190.455,133.501L189.783,133.565L190.412,133.876L189.811,134.14L189.857,134.692L189.502,134.995L189.891,135.853L189.121,136.055L189.508,136.435L189.305,136.948L189.691,137.266L189.301,137.737L191.932,137.617L192.61,137.582L193.945,137.504L195.404,137.422L195.527,137.415L196.677,137.344L197.17,137.315L199.613,137.151L200.229,137.11L199.718,139.403L200.196,140.385L200.676,140.737L201.022,141.872L201.776,142.552L201.185,142.755L200.622,143.685L199.903,143.862L199.903,143.873L199.885,143.907L199.885,143.907L200.118,144.289L201.213,144.73L201.535,144.535L201.53,143.841L202.026,143.461Z" + }, + { + "fill": "rgb(54, 167, 193)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.164; geo: [object Object]; name: Louisiana", + "shape": "M192.77,149.572L191.94,149.394L191.542,148.999L191.965,148.628L192.523,148.842ZM201.345,148.583L200.431,148.455L201.409,147.968ZM188.681,148.014L187.44,147.432L188.028,146.964L189.307,147.466ZM202.468,144.124L202.59,144.369L203.062,144.542L202.526,144.963L202.975,145.097L202.43,145.388L202.397,145.817L201.925,145.354L201.221,145.463L201.718,146.008L201.739,146.01L201.87,146.084L201.805,146.046L201.784,146.047L201.308,146.137L201.298,146.311L200.915,146.546L201.068,146.951L202.028,147.472L202.203,147.882L202.826,147.767L203.77,148.329L204.428,148.39L204.659,149.254L205.033,149.462L204.443,149.775L204.351,150.248L203.856,149.832L203.041,150.863L203.615,149.708L203.475,148.913L202.671,149.179L202.313,148.265L201.635,147.881L200.611,147.989L200.429,147.766L200.08,147.583L199.448,147.544L198.295,146.905L198.614,146.639L198.225,146.114L198.334,146.855L197.974,147.141L198.249,147.528L199.062,147.767L199.086,148.476L198.908,148.653L199.051,149.265L198.921,149.544L198.177,150.131L197.903,149.79L197.62,148.934L197.191,148.801L197.03,149.298L197.025,149.204L197.023,149.165L197.039,149.077L197.037,149.052L197.077,149.017L195.925,148.745L196.036,149.215L195.859,149.438L195.686,149.361L195.3,149.995L194.563,150.004L193.922,149.851L194.695,149.329L193.677,149.186L193.284,149.722L192.833,149.558L192.792,148.77L191.979,148.065L192.183,147.098L191.872,147.597L190.398,147.474L190.224,146.898L189.757,146.764L189.729,146.163L188.416,146.265L188.556,145.645L187.721,145.652L186.791,146.42L186.325,146.269L187.291,147.359L185.797,147.744L184.028,147.503L181.927,146.672L180.369,146.283L177.826,146.553L176.874,146.954L176.354,146.144L176.764,145.795L177.506,144.526L177.558,143.229L177.192,142.664L177.346,142.176L177.589,141.929L177.324,141.241L177.667,140.883L178.322,139.009L178.215,138.064L178.582,137.921L178.242,137.478L178.288,136.884L178.023,136.948L177.926,136.376L177.509,136.115L177.576,135.48L176.626,134.225L176.832,133.438L176.321,132.49L175.529,131.591L175.356,130.139L175.329,128.817L175.287,126.788L175.261,125.52L175.242,124.588L176.506,124.56L176.566,124.559L178.15,124.524L178.331,124.519L179.735,124.48L181.119,124.445L182.603,124.418L186.274,124.319L189.662,124.186L189.803,124.179L190.765,124.132L191.306,124.112L191.281,124.814L191.735,124.249L191.921,124.726L191.486,125.268L191.497,125.877L191.985,125.957L191.511,126.559L192.138,126.966L192.002,127.063L191.766,127.591L192.632,127.901L192.432,128.322L192.969,128.518L192.62,128.82L192.575,129.497L191.821,129.449L191.625,129.988L192.256,130.01L192.359,130.027L192.361,130.07L192.152,130.737L191.542,131.142L191.227,131.778L190.705,131.923L190.881,132.603L190.54,132.725L190.455,133.501L189.783,133.565L190.412,133.876L189.811,134.14L189.857,134.692L189.502,134.995L189.891,135.853L189.121,136.055L189.508,136.435L189.305,136.948L189.691,137.266L189.301,137.737L191.932,137.617L192.61,137.582L193.945,137.504L195.404,137.422L195.527,137.415L196.677,137.344L197.17,137.315L199.613,137.151L200.229,137.11L199.718,139.403L200.196,140.385L200.676,140.737L201.022,141.872L201.776,142.552L201.185,142.755L200.622,143.685L199.903,143.862L199.903,143.873L199.885,143.907L199.885,143.907L200.118,144.289L201.213,144.73L201.535,144.535L201.53,143.841L202.026,143.461Z" + }, + { + "fill": "rgb(119, 202, 188)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.11; geo: [object Object]; name: Louisiana", + "shape": "M192.77,149.572L191.94,149.394L191.542,148.999L191.965,148.628L192.523,148.842ZM201.345,148.583L200.431,148.455L201.409,147.968ZM188.681,148.014L187.44,147.432L188.028,146.964L189.307,147.466ZM202.468,144.124L202.59,144.369L203.062,144.542L202.526,144.963L202.975,145.097L202.43,145.388L202.397,145.817L201.925,145.354L201.221,145.463L201.718,146.008L201.739,146.01L201.87,146.084L201.805,146.046L201.784,146.047L201.308,146.137L201.298,146.311L200.915,146.546L201.068,146.951L202.028,147.472L202.203,147.882L202.826,147.767L203.77,148.329L204.428,148.39L204.659,149.254L205.033,149.462L204.443,149.775L204.351,150.248L203.856,149.832L203.041,150.863L203.615,149.708L203.475,148.913L202.671,149.179L202.313,148.265L201.635,147.881L200.611,147.989L200.429,147.766L200.08,147.583L199.448,147.544L198.295,146.905L198.614,146.639L198.225,146.114L198.334,146.855L197.974,147.141L198.249,147.528L199.062,147.767L199.086,148.476L198.908,148.653L199.051,149.265L198.921,149.544L198.177,150.131L197.903,149.79L197.62,148.934L197.191,148.801L197.03,149.298L197.025,149.204L197.023,149.165L197.039,149.077L197.037,149.052L197.077,149.017L195.925,148.745L196.036,149.215L195.859,149.438L195.686,149.361L195.3,149.995L194.563,150.004L193.922,149.851L194.695,149.329L193.677,149.186L193.284,149.722L192.833,149.558L192.792,148.77L191.979,148.065L192.183,147.098L191.872,147.597L190.398,147.474L190.224,146.898L189.757,146.764L189.729,146.163L188.416,146.265L188.556,145.645L187.721,145.652L186.791,146.42L186.325,146.269L187.291,147.359L185.797,147.744L184.028,147.503L181.927,146.672L180.369,146.283L177.826,146.553L176.874,146.954L176.354,146.144L176.764,145.795L177.506,144.526L177.558,143.229L177.192,142.664L177.346,142.176L177.589,141.929L177.324,141.241L177.667,140.883L178.322,139.009L178.215,138.064L178.582,137.921L178.242,137.478L178.288,136.884L178.023,136.948L177.926,136.376L177.509,136.115L177.576,135.48L176.626,134.225L176.832,133.438L176.321,132.49L175.529,131.591L175.356,130.139L175.329,128.817L175.287,126.788L175.261,125.52L175.242,124.588L176.506,124.56L176.566,124.559L178.15,124.524L178.331,124.519L179.735,124.48L181.119,124.445L182.603,124.418L186.274,124.319L189.662,124.186L189.803,124.179L190.765,124.132L191.306,124.112L191.281,124.814L191.735,124.249L191.921,124.726L191.486,125.268L191.497,125.877L191.985,125.957L191.511,126.559L192.138,126.966L192.002,127.063L191.766,127.591L192.632,127.901L192.432,128.322L192.969,128.518L192.62,128.82L192.575,129.497L191.821,129.449L191.625,129.988L192.256,130.01L192.359,130.027L192.361,130.07L192.152,130.737L191.542,131.142L191.227,131.778L190.705,131.923L190.881,132.603L190.54,132.725L190.455,133.501L189.783,133.565L190.412,133.876L189.811,134.14L189.857,134.692L189.502,134.995L189.891,135.853L189.121,136.055L189.508,136.435L189.305,136.948L189.691,137.266L189.301,137.737L191.932,137.617L192.61,137.582L193.945,137.504L195.404,137.422L195.527,137.415L196.677,137.344L197.17,137.315L199.613,137.151L200.229,137.11L199.718,139.403L200.196,140.385L200.676,140.737L201.022,141.872L201.776,142.552L201.185,142.755L200.622,143.685L199.903,143.862L199.903,143.873L199.885,143.907L199.885,143.907L200.118,144.289L201.213,144.73L201.535,144.535L201.53,143.841L202.026,143.461Z" + }, + { + "fill": "rgb(217, 240, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.036; geo: [object Object]; name: Louisiana", + "shape": "M192.77,149.572L191.94,149.394L191.542,148.999L191.965,148.628L192.523,148.842ZM201.345,148.583L200.431,148.455L201.409,147.968ZM188.681,148.014L187.44,147.432L188.028,146.964L189.307,147.466ZM202.468,144.124L202.59,144.369L203.062,144.542L202.526,144.963L202.975,145.097L202.43,145.388L202.397,145.817L201.925,145.354L201.221,145.463L201.718,146.008L201.739,146.01L201.87,146.084L201.805,146.046L201.784,146.047L201.308,146.137L201.298,146.311L200.915,146.546L201.068,146.951L202.028,147.472L202.203,147.882L202.826,147.767L203.77,148.329L204.428,148.39L204.659,149.254L205.033,149.462L204.443,149.775L204.351,150.248L203.856,149.832L203.041,150.863L203.615,149.708L203.475,148.913L202.671,149.179L202.313,148.265L201.635,147.881L200.611,147.989L200.429,147.766L200.08,147.583L199.448,147.544L198.295,146.905L198.614,146.639L198.225,146.114L198.334,146.855L197.974,147.141L198.249,147.528L199.062,147.767L199.086,148.476L198.908,148.653L199.051,149.265L198.921,149.544L198.177,150.131L197.903,149.79L197.62,148.934L197.191,148.801L197.03,149.298L197.025,149.204L197.023,149.165L197.039,149.077L197.037,149.052L197.077,149.017L195.925,148.745L196.036,149.215L195.859,149.438L195.686,149.361L195.3,149.995L194.563,150.004L193.922,149.851L194.695,149.329L193.677,149.186L193.284,149.722L192.833,149.558L192.792,148.77L191.979,148.065L192.183,147.098L191.872,147.597L190.398,147.474L190.224,146.898L189.757,146.764L189.729,146.163L188.416,146.265L188.556,145.645L187.721,145.652L186.791,146.42L186.325,146.269L187.291,147.359L185.797,147.744L184.028,147.503L181.927,146.672L180.369,146.283L177.826,146.553L176.874,146.954L176.354,146.144L176.764,145.795L177.506,144.526L177.558,143.229L177.192,142.664L177.346,142.176L177.589,141.929L177.324,141.241L177.667,140.883L178.322,139.009L178.215,138.064L178.582,137.921L178.242,137.478L178.288,136.884L178.023,136.948L177.926,136.376L177.509,136.115L177.576,135.48L176.626,134.225L176.832,133.438L176.321,132.49L175.529,131.591L175.356,130.139L175.329,128.817L175.287,126.788L175.261,125.52L175.242,124.588L176.506,124.56L176.566,124.559L178.15,124.524L178.331,124.519L179.735,124.48L181.119,124.445L182.603,124.418L186.274,124.319L189.662,124.186L189.803,124.179L190.765,124.132L191.306,124.112L191.281,124.814L191.735,124.249L191.921,124.726L191.486,125.268L191.497,125.877L191.985,125.957L191.511,126.559L192.138,126.966L192.002,127.063L191.766,127.591L192.632,127.901L192.432,128.322L192.969,128.518L192.62,128.82L192.575,129.497L191.821,129.449L191.625,129.988L192.256,130.01L192.359,130.027L192.361,130.07L192.152,130.737L191.542,131.142L191.227,131.778L190.705,131.923L190.881,132.603L190.54,132.725L190.455,133.501L189.783,133.565L190.412,133.876L189.811,134.14L189.857,134.692L189.502,134.995L189.891,135.853L189.121,136.055L189.508,136.435L189.305,136.948L189.691,137.266L189.301,137.737L191.932,137.617L192.61,137.582L193.945,137.504L195.404,137.422L195.527,137.415L196.677,137.344L197.17,137.315L199.613,137.151L200.229,137.11L199.718,139.403L200.196,140.385L200.676,140.737L201.022,141.872L201.776,142.552L201.185,142.755L200.622,143.685L199.903,143.862L199.903,143.873L199.885,143.907L199.885,143.907L200.118,144.289L201.213,144.73L201.535,144.535L201.53,143.841L202.026,143.461Z" + }, + { + "fill": "rgb(221, 242, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.032; geo: [object Object]; name: Louisiana", + "shape": "M192.77,149.572L191.94,149.394L191.542,148.999L191.965,148.628L192.523,148.842ZM201.345,148.583L200.431,148.455L201.409,147.968ZM188.681,148.014L187.44,147.432L188.028,146.964L189.307,147.466ZM202.468,144.124L202.59,144.369L203.062,144.542L202.526,144.963L202.975,145.097L202.43,145.388L202.397,145.817L201.925,145.354L201.221,145.463L201.718,146.008L201.739,146.01L201.87,146.084L201.805,146.046L201.784,146.047L201.308,146.137L201.298,146.311L200.915,146.546L201.068,146.951L202.028,147.472L202.203,147.882L202.826,147.767L203.77,148.329L204.428,148.39L204.659,149.254L205.033,149.462L204.443,149.775L204.351,150.248L203.856,149.832L203.041,150.863L203.615,149.708L203.475,148.913L202.671,149.179L202.313,148.265L201.635,147.881L200.611,147.989L200.429,147.766L200.08,147.583L199.448,147.544L198.295,146.905L198.614,146.639L198.225,146.114L198.334,146.855L197.974,147.141L198.249,147.528L199.062,147.767L199.086,148.476L198.908,148.653L199.051,149.265L198.921,149.544L198.177,150.131L197.903,149.79L197.62,148.934L197.191,148.801L197.03,149.298L197.025,149.204L197.023,149.165L197.039,149.077L197.037,149.052L197.077,149.017L195.925,148.745L196.036,149.215L195.859,149.438L195.686,149.361L195.3,149.995L194.563,150.004L193.922,149.851L194.695,149.329L193.677,149.186L193.284,149.722L192.833,149.558L192.792,148.77L191.979,148.065L192.183,147.098L191.872,147.597L190.398,147.474L190.224,146.898L189.757,146.764L189.729,146.163L188.416,146.265L188.556,145.645L187.721,145.652L186.791,146.42L186.325,146.269L187.291,147.359L185.797,147.744L184.028,147.503L181.927,146.672L180.369,146.283L177.826,146.553L176.874,146.954L176.354,146.144L176.764,145.795L177.506,144.526L177.558,143.229L177.192,142.664L177.346,142.176L177.589,141.929L177.324,141.241L177.667,140.883L178.322,139.009L178.215,138.064L178.582,137.921L178.242,137.478L178.288,136.884L178.023,136.948L177.926,136.376L177.509,136.115L177.576,135.48L176.626,134.225L176.832,133.438L176.321,132.49L175.529,131.591L175.356,130.139L175.329,128.817L175.287,126.788L175.261,125.52L175.242,124.588L176.506,124.56L176.566,124.559L178.15,124.524L178.331,124.519L179.735,124.48L181.119,124.445L182.603,124.418L186.274,124.319L189.662,124.186L189.803,124.179L190.765,124.132L191.306,124.112L191.281,124.814L191.735,124.249L191.921,124.726L191.486,125.268L191.497,125.877L191.985,125.957L191.511,126.559L192.138,126.966L192.002,127.063L191.766,127.591L192.632,127.901L192.432,128.322L192.969,128.518L192.62,128.82L192.575,129.497L191.821,129.449L191.625,129.988L192.256,130.01L192.359,130.027L192.361,130.07L192.152,130.737L191.542,131.142L191.227,131.778L190.705,131.923L190.881,132.603L190.54,132.725L190.455,133.501L189.783,133.565L190.412,133.876L189.811,134.14L189.857,134.692L189.502,134.995L189.891,135.853L189.121,136.055L189.508,136.435L189.305,136.948L189.691,137.266L189.301,137.737L191.932,137.617L192.61,137.582L193.945,137.504L195.404,137.422L195.527,137.415L196.677,137.344L197.17,137.315L199.613,137.151L200.229,137.11L199.718,139.403L200.196,140.385L200.676,140.737L201.022,141.872L201.776,142.552L201.185,142.755L200.622,143.685L199.903,143.862L199.903,143.873L199.885,143.907L199.885,143.907L200.118,144.289L201.213,144.73L201.535,144.535L201.53,143.841L202.026,143.461Z" + }, + { + "fill": "rgb(175, 224, 182)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.072; geo: [object Object]; name: Maine", + "shape": "M293.555,30.738L293.353,29.87L293.721,30.025ZM294.995,29.781L294.391,29.324L294.487,28.504L294.998,28.297L295.547,28.872ZM289.262,34.661L289.212,34.675L288.603,33.032L288.624,32.221L288.608,32.226L288.262,33.857L288.475,33.594L288.694,33.543L289.248,34.804L288.783,34.751L288.507,33.964L288.64,34.498L288.26,35L287.921,34.37L287.27,35.19L287.144,36.161L287.625,36.53L286.954,36.908L287.157,37.445L286.876,38.192L286.374,38.6L286.475,39.233L286.312,40.292L285.434,40.129L285.375,39.511L284.26,38.728L284.096,37.651L283.541,36.061L283.541,36.061L283.537,36.044L282.576,32.876L281.578,29.692L280.449,26.341L280.707,25.996L281.644,26.221L281.543,25.202L282.387,25.151L281.731,24.542L282.225,23.347L282.865,22.692L282.615,22.354L283.144,21.558L282.664,20.769L282.791,19.849L282.481,19.67L282.637,18.488L283.113,17.9L282.987,16.835L282.878,16.075L284.888,10.144L285.736,10.125L286.041,11.23L286.854,11.493L288.028,10.418L288.913,10.165L288.902,9.671L289.425,9.529L290.977,10.179L291.934,10.776L294.165,17.957L294.551,19.68L296.121,19.857L296.312,20.473L296.877,21.041L296.789,21.729L297.729,22.585L297.941,22.069L298.537,22.155L299.453,23.43L298.921,23.498L299.097,23.946L300,24.09L299.486,25.303L299.008,25.721L298.814,25.214L298.325,26.115L297.754,26.004L297.921,26.72L297.422,26.613L297.251,27.164L296.604,26.746L296.664,28.061L296.045,27.498L296.366,28.141L296.119,28.627L295.638,27.867L295.06,27.671L295.018,28.069L294.227,28.773L294.063,28.163L293.616,28.944L294.096,29.778L292.907,29.572L292.583,29.871L292.415,29.239L292.52,28.202L291.93,27.894L291.94,27.443L291.927,27.458L292.158,28.791L291.577,29.367L291.938,29.748L291.776,30.54L291.751,31.749L291.99,31.581L291.322,32.995L290.709,32.491L290.384,32.923L290.303,33.894L289.898,33.608L289.753,34.364L289.311,33.188L289.138,33.463L288.99,33.828L289.433,34.187Z" + }, + { + "fill": "rgb(184, 227, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.066; geo: [object Object]; name: Maine", + "shape": "M293.555,30.738L293.353,29.87L293.721,30.025ZM294.995,29.781L294.391,29.324L294.487,28.504L294.998,28.297L295.547,28.872ZM289.262,34.661L289.212,34.675L288.603,33.032L288.624,32.221L288.608,32.226L288.262,33.857L288.475,33.594L288.694,33.543L289.248,34.804L288.783,34.751L288.507,33.964L288.64,34.498L288.26,35L287.921,34.37L287.27,35.19L287.144,36.161L287.625,36.53L286.954,36.908L287.157,37.445L286.876,38.192L286.374,38.6L286.475,39.233L286.312,40.292L285.434,40.129L285.375,39.511L284.26,38.728L284.096,37.651L283.541,36.061L283.541,36.061L283.537,36.044L282.576,32.876L281.578,29.692L280.449,26.341L280.707,25.996L281.644,26.221L281.543,25.202L282.387,25.151L281.731,24.542L282.225,23.347L282.865,22.692L282.615,22.354L283.144,21.558L282.664,20.769L282.791,19.849L282.481,19.67L282.637,18.488L283.113,17.9L282.987,16.835L282.878,16.075L284.888,10.144L285.736,10.125L286.041,11.23L286.854,11.493L288.028,10.418L288.913,10.165L288.902,9.671L289.425,9.529L290.977,10.179L291.934,10.776L294.165,17.957L294.551,19.68L296.121,19.857L296.312,20.473L296.877,21.041L296.789,21.729L297.729,22.585L297.941,22.069L298.537,22.155L299.453,23.43L298.921,23.498L299.097,23.946L300,24.09L299.486,25.303L299.008,25.721L298.814,25.214L298.325,26.115L297.754,26.004L297.921,26.72L297.422,26.613L297.251,27.164L296.604,26.746L296.664,28.061L296.045,27.498L296.366,28.141L296.119,28.627L295.638,27.867L295.06,27.671L295.018,28.069L294.227,28.773L294.063,28.163L293.616,28.944L294.096,29.778L292.907,29.572L292.583,29.871L292.415,29.239L292.52,28.202L291.93,27.894L291.94,27.443L291.927,27.458L292.158,28.791L291.577,29.367L291.938,29.748L291.776,30.54L291.751,31.749L291.99,31.581L291.322,32.995L290.709,32.491L290.384,32.923L290.303,33.894L289.898,33.608L289.753,34.364L289.311,33.188L289.138,33.463L288.99,33.828L289.433,34.187Z" + }, + { + "fill": "rgb(101, 195, 190)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.122; geo: [object Object]; name: Maine", + "shape": "M293.555,30.738L293.353,29.87L293.721,30.025ZM294.995,29.781L294.391,29.324L294.487,28.504L294.998,28.297L295.547,28.872ZM289.262,34.661L289.212,34.675L288.603,33.032L288.624,32.221L288.608,32.226L288.262,33.857L288.475,33.594L288.694,33.543L289.248,34.804L288.783,34.751L288.507,33.964L288.64,34.498L288.26,35L287.921,34.37L287.27,35.19L287.144,36.161L287.625,36.53L286.954,36.908L287.157,37.445L286.876,38.192L286.374,38.6L286.475,39.233L286.312,40.292L285.434,40.129L285.375,39.511L284.26,38.728L284.096,37.651L283.541,36.061L283.541,36.061L283.537,36.044L282.576,32.876L281.578,29.692L280.449,26.341L280.707,25.996L281.644,26.221L281.543,25.202L282.387,25.151L281.731,24.542L282.225,23.347L282.865,22.692L282.615,22.354L283.144,21.558L282.664,20.769L282.791,19.849L282.481,19.67L282.637,18.488L283.113,17.9L282.987,16.835L282.878,16.075L284.888,10.144L285.736,10.125L286.041,11.23L286.854,11.493L288.028,10.418L288.913,10.165L288.902,9.671L289.425,9.529L290.977,10.179L291.934,10.776L294.165,17.957L294.551,19.68L296.121,19.857L296.312,20.473L296.877,21.041L296.789,21.729L297.729,22.585L297.941,22.069L298.537,22.155L299.453,23.43L298.921,23.498L299.097,23.946L300,24.09L299.486,25.303L299.008,25.721L298.814,25.214L298.325,26.115L297.754,26.004L297.921,26.72L297.422,26.613L297.251,27.164L296.604,26.746L296.664,28.061L296.045,27.498L296.366,28.141L296.119,28.627L295.638,27.867L295.06,27.671L295.018,28.069L294.227,28.773L294.063,28.163L293.616,28.944L294.096,29.778L292.907,29.572L292.583,29.871L292.415,29.239L292.52,28.202L291.93,27.894L291.94,27.443L291.927,27.458L292.158,28.791L291.577,29.367L291.938,29.748L291.776,30.54L291.751,31.749L291.99,31.581L291.322,32.995L290.709,32.491L290.384,32.923L290.303,33.894L289.898,33.608L289.753,34.364L289.311,33.188L289.138,33.463L288.99,33.828L289.433,34.187Z" + }, + { + "fill": "rgb(105, 197, 190)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.119; geo: [object Object]; name: Maine", + "shape": "M293.555,30.738L293.353,29.87L293.721,30.025ZM294.995,29.781L294.391,29.324L294.487,28.504L294.998,28.297L295.547,28.872ZM289.262,34.661L289.212,34.675L288.603,33.032L288.624,32.221L288.608,32.226L288.262,33.857L288.475,33.594L288.694,33.543L289.248,34.804L288.783,34.751L288.507,33.964L288.64,34.498L288.26,35L287.921,34.37L287.27,35.19L287.144,36.161L287.625,36.53L286.954,36.908L287.157,37.445L286.876,38.192L286.374,38.6L286.475,39.233L286.312,40.292L285.434,40.129L285.375,39.511L284.26,38.728L284.096,37.651L283.541,36.061L283.541,36.061L283.537,36.044L282.576,32.876L281.578,29.692L280.449,26.341L280.707,25.996L281.644,26.221L281.543,25.202L282.387,25.151L281.731,24.542L282.225,23.347L282.865,22.692L282.615,22.354L283.144,21.558L282.664,20.769L282.791,19.849L282.481,19.67L282.637,18.488L283.113,17.9L282.987,16.835L282.878,16.075L284.888,10.144L285.736,10.125L286.041,11.23L286.854,11.493L288.028,10.418L288.913,10.165L288.902,9.671L289.425,9.529L290.977,10.179L291.934,10.776L294.165,17.957L294.551,19.68L296.121,19.857L296.312,20.473L296.877,21.041L296.789,21.729L297.729,22.585L297.941,22.069L298.537,22.155L299.453,23.43L298.921,23.498L299.097,23.946L300,24.09L299.486,25.303L299.008,25.721L298.814,25.214L298.325,26.115L297.754,26.004L297.921,26.72L297.422,26.613L297.251,27.164L296.604,26.746L296.664,28.061L296.045,27.498L296.366,28.141L296.119,28.627L295.638,27.867L295.06,27.671L295.018,28.069L294.227,28.773L294.063,28.163L293.616,28.944L294.096,29.778L292.907,29.572L292.583,29.871L292.415,29.239L292.52,28.202L291.93,27.894L291.94,27.443L291.927,27.458L292.158,28.791L291.577,29.367L291.938,29.748L291.776,30.54L291.751,31.749L291.99,31.581L291.322,32.995L290.709,32.491L290.384,32.923L290.303,33.894L289.898,33.608L289.753,34.364L289.311,33.188L289.138,33.463L288.99,33.828L289.433,34.187Z" + }, + { + "fill": "rgb(73, 182, 194)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.144; geo: [object Object]; name: Maine", + "shape": "M293.555,30.738L293.353,29.87L293.721,30.025ZM294.995,29.781L294.391,29.324L294.487,28.504L294.998,28.297L295.547,28.872ZM289.262,34.661L289.212,34.675L288.603,33.032L288.624,32.221L288.608,32.226L288.262,33.857L288.475,33.594L288.694,33.543L289.248,34.804L288.783,34.751L288.507,33.964L288.64,34.498L288.26,35L287.921,34.37L287.27,35.19L287.144,36.161L287.625,36.53L286.954,36.908L287.157,37.445L286.876,38.192L286.374,38.6L286.475,39.233L286.312,40.292L285.434,40.129L285.375,39.511L284.26,38.728L284.096,37.651L283.541,36.061L283.541,36.061L283.537,36.044L282.576,32.876L281.578,29.692L280.449,26.341L280.707,25.996L281.644,26.221L281.543,25.202L282.387,25.151L281.731,24.542L282.225,23.347L282.865,22.692L282.615,22.354L283.144,21.558L282.664,20.769L282.791,19.849L282.481,19.67L282.637,18.488L283.113,17.9L282.987,16.835L282.878,16.075L284.888,10.144L285.736,10.125L286.041,11.23L286.854,11.493L288.028,10.418L288.913,10.165L288.902,9.671L289.425,9.529L290.977,10.179L291.934,10.776L294.165,17.957L294.551,19.68L296.121,19.857L296.312,20.473L296.877,21.041L296.789,21.729L297.729,22.585L297.941,22.069L298.537,22.155L299.453,23.43L298.921,23.498L299.097,23.946L300,24.09L299.486,25.303L299.008,25.721L298.814,25.214L298.325,26.115L297.754,26.004L297.921,26.72L297.422,26.613L297.251,27.164L296.604,26.746L296.664,28.061L296.045,27.498L296.366,28.141L296.119,28.627L295.638,27.867L295.06,27.671L295.018,28.069L294.227,28.773L294.063,28.163L293.616,28.944L294.096,29.778L292.907,29.572L292.583,29.871L292.415,29.239L292.52,28.202L291.93,27.894L291.94,27.443L291.927,27.458L292.158,28.791L291.577,29.367L291.938,29.748L291.776,30.54L291.751,31.749L291.99,31.581L291.322,32.995L290.709,32.491L290.384,32.923L290.303,33.894L289.898,33.608L289.753,34.364L289.311,33.188L289.138,33.463L288.99,33.828L289.433,34.187Z" + }, + { + "fill": "rgb(100, 195, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.123; geo: [object Object]; name: Maine", + "shape": "M293.555,30.738L293.353,29.87L293.721,30.025ZM294.995,29.781L294.391,29.324L294.487,28.504L294.998,28.297L295.547,28.872ZM289.262,34.661L289.212,34.675L288.603,33.032L288.624,32.221L288.608,32.226L288.262,33.857L288.475,33.594L288.694,33.543L289.248,34.804L288.783,34.751L288.507,33.964L288.64,34.498L288.26,35L287.921,34.37L287.27,35.19L287.144,36.161L287.625,36.53L286.954,36.908L287.157,37.445L286.876,38.192L286.374,38.6L286.475,39.233L286.312,40.292L285.434,40.129L285.375,39.511L284.26,38.728L284.096,37.651L283.541,36.061L283.541,36.061L283.537,36.044L282.576,32.876L281.578,29.692L280.449,26.341L280.707,25.996L281.644,26.221L281.543,25.202L282.387,25.151L281.731,24.542L282.225,23.347L282.865,22.692L282.615,22.354L283.144,21.558L282.664,20.769L282.791,19.849L282.481,19.67L282.637,18.488L283.113,17.9L282.987,16.835L282.878,16.075L284.888,10.144L285.736,10.125L286.041,11.23L286.854,11.493L288.028,10.418L288.913,10.165L288.902,9.671L289.425,9.529L290.977,10.179L291.934,10.776L294.165,17.957L294.551,19.68L296.121,19.857L296.312,20.473L296.877,21.041L296.789,21.729L297.729,22.585L297.941,22.069L298.537,22.155L299.453,23.43L298.921,23.498L299.097,23.946L300,24.09L299.486,25.303L299.008,25.721L298.814,25.214L298.325,26.115L297.754,26.004L297.921,26.72L297.422,26.613L297.251,27.164L296.604,26.746L296.664,28.061L296.045,27.498L296.366,28.141L296.119,28.627L295.638,27.867L295.06,27.671L295.018,28.069L294.227,28.773L294.063,28.163L293.616,28.944L294.096,29.778L292.907,29.572L292.583,29.871L292.415,29.239L292.52,28.202L291.93,27.894L291.94,27.443L291.927,27.458L292.158,28.791L291.577,29.367L291.938,29.748L291.776,30.54L291.751,31.749L291.99,31.581L291.322,32.995L290.709,32.491L290.384,32.923L290.303,33.894L289.898,33.608L289.753,34.364L289.311,33.188L289.138,33.463L288.99,33.828L289.433,34.187Z" + }, + { + "fill": "rgb(38, 144, 188)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.19; geo: [object Object]; name: Maine", + "shape": "M293.555,30.738L293.353,29.87L293.721,30.025ZM294.995,29.781L294.391,29.324L294.487,28.504L294.998,28.297L295.547,28.872ZM289.262,34.661L289.212,34.675L288.603,33.032L288.624,32.221L288.608,32.226L288.262,33.857L288.475,33.594L288.694,33.543L289.248,34.804L288.783,34.751L288.507,33.964L288.64,34.498L288.26,35L287.921,34.37L287.27,35.19L287.144,36.161L287.625,36.53L286.954,36.908L287.157,37.445L286.876,38.192L286.374,38.6L286.475,39.233L286.312,40.292L285.434,40.129L285.375,39.511L284.26,38.728L284.096,37.651L283.541,36.061L283.541,36.061L283.537,36.044L282.576,32.876L281.578,29.692L280.449,26.341L280.707,25.996L281.644,26.221L281.543,25.202L282.387,25.151L281.731,24.542L282.225,23.347L282.865,22.692L282.615,22.354L283.144,21.558L282.664,20.769L282.791,19.849L282.481,19.67L282.637,18.488L283.113,17.9L282.987,16.835L282.878,16.075L284.888,10.144L285.736,10.125L286.041,11.23L286.854,11.493L288.028,10.418L288.913,10.165L288.902,9.671L289.425,9.529L290.977,10.179L291.934,10.776L294.165,17.957L294.551,19.68L296.121,19.857L296.312,20.473L296.877,21.041L296.789,21.729L297.729,22.585L297.941,22.069L298.537,22.155L299.453,23.43L298.921,23.498L299.097,23.946L300,24.09L299.486,25.303L299.008,25.721L298.814,25.214L298.325,26.115L297.754,26.004L297.921,26.72L297.422,26.613L297.251,27.164L296.604,26.746L296.664,28.061L296.045,27.498L296.366,28.141L296.119,28.627L295.638,27.867L295.06,27.671L295.018,28.069L294.227,28.773L294.063,28.163L293.616,28.944L294.096,29.778L292.907,29.572L292.583,29.871L292.415,29.239L292.52,28.202L291.93,27.894L291.94,27.443L291.927,27.458L292.158,28.791L291.577,29.367L291.938,29.748L291.776,30.54L291.751,31.749L291.99,31.581L291.322,32.995L290.709,32.491L290.384,32.923L290.303,33.894L289.898,33.608L289.753,34.364L289.311,33.188L289.138,33.463L288.99,33.828L289.433,34.187Z" + }, + { + "fill": "rgb(125, 204, 188)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.106; geo: [object Object]; name: Maine", + "shape": "M293.555,30.738L293.353,29.87L293.721,30.025ZM294.995,29.781L294.391,29.324L294.487,28.504L294.998,28.297L295.547,28.872ZM289.262,34.661L289.212,34.675L288.603,33.032L288.624,32.221L288.608,32.226L288.262,33.857L288.475,33.594L288.694,33.543L289.248,34.804L288.783,34.751L288.507,33.964L288.64,34.498L288.26,35L287.921,34.37L287.27,35.19L287.144,36.161L287.625,36.53L286.954,36.908L287.157,37.445L286.876,38.192L286.374,38.6L286.475,39.233L286.312,40.292L285.434,40.129L285.375,39.511L284.26,38.728L284.096,37.651L283.541,36.061L283.541,36.061L283.537,36.044L282.576,32.876L281.578,29.692L280.449,26.341L280.707,25.996L281.644,26.221L281.543,25.202L282.387,25.151L281.731,24.542L282.225,23.347L282.865,22.692L282.615,22.354L283.144,21.558L282.664,20.769L282.791,19.849L282.481,19.67L282.637,18.488L283.113,17.9L282.987,16.835L282.878,16.075L284.888,10.144L285.736,10.125L286.041,11.23L286.854,11.493L288.028,10.418L288.913,10.165L288.902,9.671L289.425,9.529L290.977,10.179L291.934,10.776L294.165,17.957L294.551,19.68L296.121,19.857L296.312,20.473L296.877,21.041L296.789,21.729L297.729,22.585L297.941,22.069L298.537,22.155L299.453,23.43L298.921,23.498L299.097,23.946L300,24.09L299.486,25.303L299.008,25.721L298.814,25.214L298.325,26.115L297.754,26.004L297.921,26.72L297.422,26.613L297.251,27.164L296.604,26.746L296.664,28.061L296.045,27.498L296.366,28.141L296.119,28.627L295.638,27.867L295.06,27.671L295.018,28.069L294.227,28.773L294.063,28.163L293.616,28.944L294.096,29.778L292.907,29.572L292.583,29.871L292.415,29.239L292.52,28.202L291.93,27.894L291.94,27.443L291.927,27.458L292.158,28.791L291.577,29.367L291.938,29.748L291.776,30.54L291.751,31.749L291.99,31.581L291.322,32.995L290.709,32.491L290.384,32.923L290.303,33.894L289.898,33.608L289.753,34.364L289.311,33.188L289.138,33.463L288.99,33.828L289.433,34.187Z" + }, + { + "fill": "rgb(222, 242, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.03; geo: [object Object]; name: Maine", + "shape": "M293.555,30.738L293.353,29.87L293.721,30.025ZM294.995,29.781L294.391,29.324L294.487,28.504L294.998,28.297L295.547,28.872ZM289.262,34.661L289.212,34.675L288.603,33.032L288.624,32.221L288.608,32.226L288.262,33.857L288.475,33.594L288.694,33.543L289.248,34.804L288.783,34.751L288.507,33.964L288.64,34.498L288.26,35L287.921,34.37L287.27,35.19L287.144,36.161L287.625,36.53L286.954,36.908L287.157,37.445L286.876,38.192L286.374,38.6L286.475,39.233L286.312,40.292L285.434,40.129L285.375,39.511L284.26,38.728L284.096,37.651L283.541,36.061L283.541,36.061L283.537,36.044L282.576,32.876L281.578,29.692L280.449,26.341L280.707,25.996L281.644,26.221L281.543,25.202L282.387,25.151L281.731,24.542L282.225,23.347L282.865,22.692L282.615,22.354L283.144,21.558L282.664,20.769L282.791,19.849L282.481,19.67L282.637,18.488L283.113,17.9L282.987,16.835L282.878,16.075L284.888,10.144L285.736,10.125L286.041,11.23L286.854,11.493L288.028,10.418L288.913,10.165L288.902,9.671L289.425,9.529L290.977,10.179L291.934,10.776L294.165,17.957L294.551,19.68L296.121,19.857L296.312,20.473L296.877,21.041L296.789,21.729L297.729,22.585L297.941,22.069L298.537,22.155L299.453,23.43L298.921,23.498L299.097,23.946L300,24.09L299.486,25.303L299.008,25.721L298.814,25.214L298.325,26.115L297.754,26.004L297.921,26.72L297.422,26.613L297.251,27.164L296.604,26.746L296.664,28.061L296.045,27.498L296.366,28.141L296.119,28.627L295.638,27.867L295.06,27.671L295.018,28.069L294.227,28.773L294.063,28.163L293.616,28.944L294.096,29.778L292.907,29.572L292.583,29.871L292.415,29.239L292.52,28.202L291.93,27.894L291.94,27.443L291.927,27.458L292.158,28.791L291.577,29.367L291.938,29.748L291.776,30.54L291.751,31.749L291.99,31.581L291.322,32.995L290.709,32.491L290.384,32.923L290.303,33.894L289.898,33.608L289.753,34.364L289.311,33.188L289.138,33.463L288.99,33.828L289.433,34.187Z" + }, + { + "fill": "rgb(223, 243, 182)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.028; geo: [object Object]; name: Maine", + "shape": "M293.555,30.738L293.353,29.87L293.721,30.025ZM294.995,29.781L294.391,29.324L294.487,28.504L294.998,28.297L295.547,28.872ZM289.262,34.661L289.212,34.675L288.603,33.032L288.624,32.221L288.608,32.226L288.262,33.857L288.475,33.594L288.694,33.543L289.248,34.804L288.783,34.751L288.507,33.964L288.64,34.498L288.26,35L287.921,34.37L287.27,35.19L287.144,36.161L287.625,36.53L286.954,36.908L287.157,37.445L286.876,38.192L286.374,38.6L286.475,39.233L286.312,40.292L285.434,40.129L285.375,39.511L284.26,38.728L284.096,37.651L283.541,36.061L283.541,36.061L283.537,36.044L282.576,32.876L281.578,29.692L280.449,26.341L280.707,25.996L281.644,26.221L281.543,25.202L282.387,25.151L281.731,24.542L282.225,23.347L282.865,22.692L282.615,22.354L283.144,21.558L282.664,20.769L282.791,19.849L282.481,19.67L282.637,18.488L283.113,17.9L282.987,16.835L282.878,16.075L284.888,10.144L285.736,10.125L286.041,11.23L286.854,11.493L288.028,10.418L288.913,10.165L288.902,9.671L289.425,9.529L290.977,10.179L291.934,10.776L294.165,17.957L294.551,19.68L296.121,19.857L296.312,20.473L296.877,21.041L296.789,21.729L297.729,22.585L297.941,22.069L298.537,22.155L299.453,23.43L298.921,23.498L299.097,23.946L300,24.09L299.486,25.303L299.008,25.721L298.814,25.214L298.325,26.115L297.754,26.004L297.921,26.72L297.422,26.613L297.251,27.164L296.604,26.746L296.664,28.061L296.045,27.498L296.366,28.141L296.119,28.627L295.638,27.867L295.06,27.671L295.018,28.069L294.227,28.773L294.063,28.163L293.616,28.944L294.096,29.778L292.907,29.572L292.583,29.871L292.415,29.239L292.52,28.202L291.93,27.894L291.94,27.443L291.927,27.458L292.158,28.791L291.577,29.367L291.938,29.748L291.776,30.54L291.751,31.749L291.99,31.581L291.322,32.995L290.709,32.491L290.384,32.923L290.303,33.894L289.898,33.608L289.753,34.364L289.311,33.188L289.138,33.463L288.99,33.828L289.433,34.187Z" + }, + { + "fill": "rgb(198, 233, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.054; geo: [object Object]; name: Maryland", + "shape": "M265.177,74.879L265.189,73.49L265.657,74.183L265.298,74.099ZM272.194,76.386L272.181,77.444L271.73,77.657L271.386,79.231L270.168,79.639L270.166,79.628L270.15,79.643L268.782,80.077L268.867,79.4L269.054,78.842L268.332,78.964L268.898,78.03L268.26,78.179L268.491,77.031L268.075,78.211L267.625,77.537L267.658,78.408L266.916,78.067L266.512,77.967L265.862,77.237L266.231,76.817L265.975,76.232L267.512,76.117L267.583,75.466L267.206,75.13L267.432,74.676L267.206,75.13L267.495,75.5L267.267,76.218L265.429,75.357L265.675,74.718L266.275,75.224L266.021,74.649L266.342,74.016L265.982,74.464L265.81,73.295L266.54,71.749L266.046,72.799L265.539,73.263L265.196,72.715L265.424,71.469L265.714,71.058L267.117,70.743L266.072,70.878L266.167,69.649L265.633,69.882L265.68,70.631L264.854,71.27L264.438,71.172L264.532,71.62L264.47,72.313L263.801,72.364L263.576,72.644L263.614,72.648L263.828,72.585L264.533,73.251L264.028,73.368L264.805,73.737L264.564,74.486L264.24,74.658L264.551,75.154L264.526,75.855L264.528,75.865L264.812,77.048L265.727,78.05L265.435,78.39L265.136,77.965L264.281,77.611L263.817,76.38L263.737,76.36L263.817,76.38L263.904,77.172L263.967,77.475L265.307,78.416L265.802,78.41L266.502,80.014L265.323,79.688L264.881,79.218L263.749,79.202L263.235,78.368L263.564,79.14L262.748,78.786L262.284,78.19L261.551,78.909L261.067,78.2L261.149,77.661L261.769,76.586L261.919,75.732L262.354,75.072L261.781,74.676L261.242,75.004L260.026,74.405L259.311,74.417L258.91,74.106L259.135,73.432L258.483,72.989L257.897,72.974L257.703,73.038L256.938,71.997L256.529,71.628L256.759,71.268L255.782,71.345L254.909,70.982L254.536,71.579L254.19,71.529L253.671,72.455L252.672,72.515L251.854,72.033L251.232,73.44L250.693,73.253L249.84,74.451L248.893,75.457L248.344,72.012L248.759,71.938L251.087,71.511L251.701,71.399L253.849,71.008L254.048,70.971L255.274,70.739L258.428,70.138L258.483,70.131L259.707,69.887L260.785,69.666L261.846,69.45L262.941,69.217L264.593,68.872L264.611,68.868L265.114,68.761L266.836,68.389L267.454,70.641L267.588,71.174L267.678,71.504L267.862,72.179L268.457,74.228L268.807,75.492L268.951,75.979L269.132,76.639L270.931,76.298L272.226,76.014Z" + }, + { + "fill": "rgb(218, 241, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.035; geo: [object Object]; name: Maryland", + "shape": "M265.177,74.879L265.189,73.49L265.657,74.183L265.298,74.099ZM272.194,76.386L272.181,77.444L271.73,77.657L271.386,79.231L270.168,79.639L270.166,79.628L270.15,79.643L268.782,80.077L268.867,79.4L269.054,78.842L268.332,78.964L268.898,78.03L268.26,78.179L268.491,77.031L268.075,78.211L267.625,77.537L267.658,78.408L266.916,78.067L266.512,77.967L265.862,77.237L266.231,76.817L265.975,76.232L267.512,76.117L267.583,75.466L267.206,75.13L267.432,74.676L267.206,75.13L267.495,75.5L267.267,76.218L265.429,75.357L265.675,74.718L266.275,75.224L266.021,74.649L266.342,74.016L265.982,74.464L265.81,73.295L266.54,71.749L266.046,72.799L265.539,73.263L265.196,72.715L265.424,71.469L265.714,71.058L267.117,70.743L266.072,70.878L266.167,69.649L265.633,69.882L265.68,70.631L264.854,71.27L264.438,71.172L264.532,71.62L264.47,72.313L263.801,72.364L263.576,72.644L263.614,72.648L263.828,72.585L264.533,73.251L264.028,73.368L264.805,73.737L264.564,74.486L264.24,74.658L264.551,75.154L264.526,75.855L264.528,75.865L264.812,77.048L265.727,78.05L265.435,78.39L265.136,77.965L264.281,77.611L263.817,76.38L263.737,76.36L263.817,76.38L263.904,77.172L263.967,77.475L265.307,78.416L265.802,78.41L266.502,80.014L265.323,79.688L264.881,79.218L263.749,79.202L263.235,78.368L263.564,79.14L262.748,78.786L262.284,78.19L261.551,78.909L261.067,78.2L261.149,77.661L261.769,76.586L261.919,75.732L262.354,75.072L261.781,74.676L261.242,75.004L260.026,74.405L259.311,74.417L258.91,74.106L259.135,73.432L258.483,72.989L257.897,72.974L257.703,73.038L256.938,71.997L256.529,71.628L256.759,71.268L255.782,71.345L254.909,70.982L254.536,71.579L254.19,71.529L253.671,72.455L252.672,72.515L251.854,72.033L251.232,73.44L250.693,73.253L249.84,74.451L248.893,75.457L248.344,72.012L248.759,71.938L251.087,71.511L251.701,71.399L253.849,71.008L254.048,70.971L255.274,70.739L258.428,70.138L258.483,70.131L259.707,69.887L260.785,69.666L261.846,69.45L262.941,69.217L264.593,68.872L264.611,68.868L265.114,68.761L266.836,68.389L267.454,70.641L267.588,71.174L267.678,71.504L267.862,72.179L268.457,74.228L268.807,75.492L268.951,75.979L269.132,76.639L270.931,76.298L272.226,76.014Z" + }, + { + "fill": "rgb(175, 224, 182)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.072; geo: [object Object]; name: Maryland", + "shape": "M265.177,74.879L265.189,73.49L265.657,74.183L265.298,74.099ZM272.194,76.386L272.181,77.444L271.73,77.657L271.386,79.231L270.168,79.639L270.166,79.628L270.15,79.643L268.782,80.077L268.867,79.4L269.054,78.842L268.332,78.964L268.898,78.03L268.26,78.179L268.491,77.031L268.075,78.211L267.625,77.537L267.658,78.408L266.916,78.067L266.512,77.967L265.862,77.237L266.231,76.817L265.975,76.232L267.512,76.117L267.583,75.466L267.206,75.13L267.432,74.676L267.206,75.13L267.495,75.5L267.267,76.218L265.429,75.357L265.675,74.718L266.275,75.224L266.021,74.649L266.342,74.016L265.982,74.464L265.81,73.295L266.54,71.749L266.046,72.799L265.539,73.263L265.196,72.715L265.424,71.469L265.714,71.058L267.117,70.743L266.072,70.878L266.167,69.649L265.633,69.882L265.68,70.631L264.854,71.27L264.438,71.172L264.532,71.62L264.47,72.313L263.801,72.364L263.576,72.644L263.614,72.648L263.828,72.585L264.533,73.251L264.028,73.368L264.805,73.737L264.564,74.486L264.24,74.658L264.551,75.154L264.526,75.855L264.528,75.865L264.812,77.048L265.727,78.05L265.435,78.39L265.136,77.965L264.281,77.611L263.817,76.38L263.737,76.36L263.817,76.38L263.904,77.172L263.967,77.475L265.307,78.416L265.802,78.41L266.502,80.014L265.323,79.688L264.881,79.218L263.749,79.202L263.235,78.368L263.564,79.14L262.748,78.786L262.284,78.19L261.551,78.909L261.067,78.2L261.149,77.661L261.769,76.586L261.919,75.732L262.354,75.072L261.781,74.676L261.242,75.004L260.026,74.405L259.311,74.417L258.91,74.106L259.135,73.432L258.483,72.989L257.897,72.974L257.703,73.038L256.938,71.997L256.529,71.628L256.759,71.268L255.782,71.345L254.909,70.982L254.536,71.579L254.19,71.529L253.671,72.455L252.672,72.515L251.854,72.033L251.232,73.44L250.693,73.253L249.84,74.451L248.893,75.457L248.344,72.012L248.759,71.938L251.087,71.511L251.701,71.399L253.849,71.008L254.048,70.971L255.274,70.739L258.428,70.138L258.483,70.131L259.707,69.887L260.785,69.666L261.846,69.45L262.941,69.217L264.593,68.872L264.611,68.868L265.114,68.761L266.836,68.389L267.454,70.641L267.588,71.174L267.678,71.504L267.862,72.179L268.457,74.228L268.807,75.492L268.951,75.979L269.132,76.639L270.931,76.298L272.226,76.014Z" + }, + { + "fill": "rgb(174, 223, 182)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.073; geo: [object Object]; name: Maryland", + "shape": "M265.177,74.879L265.189,73.49L265.657,74.183L265.298,74.099ZM272.194,76.386L272.181,77.444L271.73,77.657L271.386,79.231L270.168,79.639L270.166,79.628L270.15,79.643L268.782,80.077L268.867,79.4L269.054,78.842L268.332,78.964L268.898,78.03L268.26,78.179L268.491,77.031L268.075,78.211L267.625,77.537L267.658,78.408L266.916,78.067L266.512,77.967L265.862,77.237L266.231,76.817L265.975,76.232L267.512,76.117L267.583,75.466L267.206,75.13L267.432,74.676L267.206,75.13L267.495,75.5L267.267,76.218L265.429,75.357L265.675,74.718L266.275,75.224L266.021,74.649L266.342,74.016L265.982,74.464L265.81,73.295L266.54,71.749L266.046,72.799L265.539,73.263L265.196,72.715L265.424,71.469L265.714,71.058L267.117,70.743L266.072,70.878L266.167,69.649L265.633,69.882L265.68,70.631L264.854,71.27L264.438,71.172L264.532,71.62L264.47,72.313L263.801,72.364L263.576,72.644L263.614,72.648L263.828,72.585L264.533,73.251L264.028,73.368L264.805,73.737L264.564,74.486L264.24,74.658L264.551,75.154L264.526,75.855L264.528,75.865L264.812,77.048L265.727,78.05L265.435,78.39L265.136,77.965L264.281,77.611L263.817,76.38L263.737,76.36L263.817,76.38L263.904,77.172L263.967,77.475L265.307,78.416L265.802,78.41L266.502,80.014L265.323,79.688L264.881,79.218L263.749,79.202L263.235,78.368L263.564,79.14L262.748,78.786L262.284,78.19L261.551,78.909L261.067,78.2L261.149,77.661L261.769,76.586L261.919,75.732L262.354,75.072L261.781,74.676L261.242,75.004L260.026,74.405L259.311,74.417L258.91,74.106L259.135,73.432L258.483,72.989L257.897,72.974L257.703,73.038L256.938,71.997L256.529,71.628L256.759,71.268L255.782,71.345L254.909,70.982L254.536,71.579L254.19,71.529L253.671,72.455L252.672,72.515L251.854,72.033L251.232,73.44L250.693,73.253L249.84,74.451L248.893,75.457L248.344,72.012L248.759,71.938L251.087,71.511L251.701,71.399L253.849,71.008L254.048,70.971L255.274,70.739L258.428,70.138L258.483,70.131L259.707,69.887L260.785,69.666L261.846,69.45L262.941,69.217L264.593,68.872L264.611,68.868L265.114,68.761L266.836,68.389L267.454,70.641L267.588,71.174L267.678,71.504L267.862,72.179L268.457,74.228L268.807,75.492L268.951,75.979L269.132,76.639L270.931,76.298L272.226,76.014Z" + }, + { + "fill": "rgb(122, 203, 188)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.108; geo: [object Object]; name: Maryland", + "shape": "M265.177,74.879L265.189,73.49L265.657,74.183L265.298,74.099ZM272.194,76.386L272.181,77.444L271.73,77.657L271.386,79.231L270.168,79.639L270.166,79.628L270.15,79.643L268.782,80.077L268.867,79.4L269.054,78.842L268.332,78.964L268.898,78.03L268.26,78.179L268.491,77.031L268.075,78.211L267.625,77.537L267.658,78.408L266.916,78.067L266.512,77.967L265.862,77.237L266.231,76.817L265.975,76.232L267.512,76.117L267.583,75.466L267.206,75.13L267.432,74.676L267.206,75.13L267.495,75.5L267.267,76.218L265.429,75.357L265.675,74.718L266.275,75.224L266.021,74.649L266.342,74.016L265.982,74.464L265.81,73.295L266.54,71.749L266.046,72.799L265.539,73.263L265.196,72.715L265.424,71.469L265.714,71.058L267.117,70.743L266.072,70.878L266.167,69.649L265.633,69.882L265.68,70.631L264.854,71.27L264.438,71.172L264.532,71.62L264.47,72.313L263.801,72.364L263.576,72.644L263.614,72.648L263.828,72.585L264.533,73.251L264.028,73.368L264.805,73.737L264.564,74.486L264.24,74.658L264.551,75.154L264.526,75.855L264.528,75.865L264.812,77.048L265.727,78.05L265.435,78.39L265.136,77.965L264.281,77.611L263.817,76.38L263.737,76.36L263.817,76.38L263.904,77.172L263.967,77.475L265.307,78.416L265.802,78.41L266.502,80.014L265.323,79.688L264.881,79.218L263.749,79.202L263.235,78.368L263.564,79.14L262.748,78.786L262.284,78.19L261.551,78.909L261.067,78.2L261.149,77.661L261.769,76.586L261.919,75.732L262.354,75.072L261.781,74.676L261.242,75.004L260.026,74.405L259.311,74.417L258.91,74.106L259.135,73.432L258.483,72.989L257.897,72.974L257.703,73.038L256.938,71.997L256.529,71.628L256.759,71.268L255.782,71.345L254.909,70.982L254.536,71.579L254.19,71.529L253.671,72.455L252.672,72.515L251.854,72.033L251.232,73.44L250.693,73.253L249.84,74.451L248.893,75.457L248.344,72.012L248.759,71.938L251.087,71.511L251.701,71.399L253.849,71.008L254.048,70.971L255.274,70.739L258.428,70.138L258.483,70.131L259.707,69.887L260.785,69.666L261.846,69.45L262.941,69.217L264.593,68.872L264.611,68.868L265.114,68.761L266.836,68.389L267.454,70.641L267.588,71.174L267.678,71.504L267.862,72.179L268.457,74.228L268.807,75.492L268.951,75.979L269.132,76.639L270.931,76.298L272.226,76.014Z" + }, + { + "fill": "rgb(87, 189, 192)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.133; geo: [object Object]; name: Maryland", + "shape": "M265.177,74.879L265.189,73.49L265.657,74.183L265.298,74.099ZM272.194,76.386L272.181,77.444L271.73,77.657L271.386,79.231L270.168,79.639L270.166,79.628L270.15,79.643L268.782,80.077L268.867,79.4L269.054,78.842L268.332,78.964L268.898,78.03L268.26,78.179L268.491,77.031L268.075,78.211L267.625,77.537L267.658,78.408L266.916,78.067L266.512,77.967L265.862,77.237L266.231,76.817L265.975,76.232L267.512,76.117L267.583,75.466L267.206,75.13L267.432,74.676L267.206,75.13L267.495,75.5L267.267,76.218L265.429,75.357L265.675,74.718L266.275,75.224L266.021,74.649L266.342,74.016L265.982,74.464L265.81,73.295L266.54,71.749L266.046,72.799L265.539,73.263L265.196,72.715L265.424,71.469L265.714,71.058L267.117,70.743L266.072,70.878L266.167,69.649L265.633,69.882L265.68,70.631L264.854,71.27L264.438,71.172L264.532,71.62L264.47,72.313L263.801,72.364L263.576,72.644L263.614,72.648L263.828,72.585L264.533,73.251L264.028,73.368L264.805,73.737L264.564,74.486L264.24,74.658L264.551,75.154L264.526,75.855L264.528,75.865L264.812,77.048L265.727,78.05L265.435,78.39L265.136,77.965L264.281,77.611L263.817,76.38L263.737,76.36L263.817,76.38L263.904,77.172L263.967,77.475L265.307,78.416L265.802,78.41L266.502,80.014L265.323,79.688L264.881,79.218L263.749,79.202L263.235,78.368L263.564,79.14L262.748,78.786L262.284,78.19L261.551,78.909L261.067,78.2L261.149,77.661L261.769,76.586L261.919,75.732L262.354,75.072L261.781,74.676L261.242,75.004L260.026,74.405L259.311,74.417L258.91,74.106L259.135,73.432L258.483,72.989L257.897,72.974L257.703,73.038L256.938,71.997L256.529,71.628L256.759,71.268L255.782,71.345L254.909,70.982L254.536,71.579L254.19,71.529L253.671,72.455L252.672,72.515L251.854,72.033L251.232,73.44L250.693,73.253L249.84,74.451L248.893,75.457L248.344,72.012L248.759,71.938L251.087,71.511L251.701,71.399L253.849,71.008L254.048,70.971L255.274,70.739L258.428,70.138L258.483,70.131L259.707,69.887L260.785,69.666L261.846,69.45L262.941,69.217L264.593,68.872L264.611,68.868L265.114,68.761L266.836,68.389L267.454,70.641L267.588,71.174L267.678,71.504L267.862,72.179L268.457,74.228L268.807,75.492L268.951,75.979L269.132,76.639L270.931,76.298L272.226,76.014Z" + }, + { + "fill": "rgb(46, 159, 192)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.174; geo: [object Object]; name: Maryland", + "shape": "M265.177,74.879L265.189,73.49L265.657,74.183L265.298,74.099ZM272.194,76.386L272.181,77.444L271.73,77.657L271.386,79.231L270.168,79.639L270.166,79.628L270.15,79.643L268.782,80.077L268.867,79.4L269.054,78.842L268.332,78.964L268.898,78.03L268.26,78.179L268.491,77.031L268.075,78.211L267.625,77.537L267.658,78.408L266.916,78.067L266.512,77.967L265.862,77.237L266.231,76.817L265.975,76.232L267.512,76.117L267.583,75.466L267.206,75.13L267.432,74.676L267.206,75.13L267.495,75.5L267.267,76.218L265.429,75.357L265.675,74.718L266.275,75.224L266.021,74.649L266.342,74.016L265.982,74.464L265.81,73.295L266.54,71.749L266.046,72.799L265.539,73.263L265.196,72.715L265.424,71.469L265.714,71.058L267.117,70.743L266.072,70.878L266.167,69.649L265.633,69.882L265.68,70.631L264.854,71.27L264.438,71.172L264.532,71.62L264.47,72.313L263.801,72.364L263.576,72.644L263.614,72.648L263.828,72.585L264.533,73.251L264.028,73.368L264.805,73.737L264.564,74.486L264.24,74.658L264.551,75.154L264.526,75.855L264.528,75.865L264.812,77.048L265.727,78.05L265.435,78.39L265.136,77.965L264.281,77.611L263.817,76.38L263.737,76.36L263.817,76.38L263.904,77.172L263.967,77.475L265.307,78.416L265.802,78.41L266.502,80.014L265.323,79.688L264.881,79.218L263.749,79.202L263.235,78.368L263.564,79.14L262.748,78.786L262.284,78.19L261.551,78.909L261.067,78.2L261.149,77.661L261.769,76.586L261.919,75.732L262.354,75.072L261.781,74.676L261.242,75.004L260.026,74.405L259.311,74.417L258.91,74.106L259.135,73.432L258.483,72.989L257.897,72.974L257.703,73.038L256.938,71.997L256.529,71.628L256.759,71.268L255.782,71.345L254.909,70.982L254.536,71.579L254.19,71.529L253.671,72.455L252.672,72.515L251.854,72.033L251.232,73.44L250.693,73.253L249.84,74.451L248.893,75.457L248.344,72.012L248.759,71.938L251.087,71.511L251.701,71.399L253.849,71.008L254.048,70.971L255.274,70.739L258.428,70.138L258.483,70.131L259.707,69.887L260.785,69.666L261.846,69.45L262.941,69.217L264.593,68.872L264.611,68.868L265.114,68.761L266.836,68.389L267.454,70.641L267.588,71.174L267.678,71.504L267.862,72.179L268.457,74.228L268.807,75.492L268.951,75.979L269.132,76.639L270.931,76.298L272.226,76.014Z" + }, + { + "fill": "rgb(42, 154, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.18; geo: [object Object]; name: Maryland", + "shape": "M265.177,74.879L265.189,73.49L265.657,74.183L265.298,74.099ZM272.194,76.386L272.181,77.444L271.73,77.657L271.386,79.231L270.168,79.639L270.166,79.628L270.15,79.643L268.782,80.077L268.867,79.4L269.054,78.842L268.332,78.964L268.898,78.03L268.26,78.179L268.491,77.031L268.075,78.211L267.625,77.537L267.658,78.408L266.916,78.067L266.512,77.967L265.862,77.237L266.231,76.817L265.975,76.232L267.512,76.117L267.583,75.466L267.206,75.13L267.432,74.676L267.206,75.13L267.495,75.5L267.267,76.218L265.429,75.357L265.675,74.718L266.275,75.224L266.021,74.649L266.342,74.016L265.982,74.464L265.81,73.295L266.54,71.749L266.046,72.799L265.539,73.263L265.196,72.715L265.424,71.469L265.714,71.058L267.117,70.743L266.072,70.878L266.167,69.649L265.633,69.882L265.68,70.631L264.854,71.27L264.438,71.172L264.532,71.62L264.47,72.313L263.801,72.364L263.576,72.644L263.614,72.648L263.828,72.585L264.533,73.251L264.028,73.368L264.805,73.737L264.564,74.486L264.24,74.658L264.551,75.154L264.526,75.855L264.528,75.865L264.812,77.048L265.727,78.05L265.435,78.39L265.136,77.965L264.281,77.611L263.817,76.38L263.737,76.36L263.817,76.38L263.904,77.172L263.967,77.475L265.307,78.416L265.802,78.41L266.502,80.014L265.323,79.688L264.881,79.218L263.749,79.202L263.235,78.368L263.564,79.14L262.748,78.786L262.284,78.19L261.551,78.909L261.067,78.2L261.149,77.661L261.769,76.586L261.919,75.732L262.354,75.072L261.781,74.676L261.242,75.004L260.026,74.405L259.311,74.417L258.91,74.106L259.135,73.432L258.483,72.989L257.897,72.974L257.703,73.038L256.938,71.997L256.529,71.628L256.759,71.268L255.782,71.345L254.909,70.982L254.536,71.579L254.19,71.529L253.671,72.455L252.672,72.515L251.854,72.033L251.232,73.44L250.693,73.253L249.84,74.451L248.893,75.457L248.344,72.012L248.759,71.938L251.087,71.511L251.701,71.399L253.849,71.008L254.048,70.971L255.274,70.739L258.428,70.138L258.483,70.131L259.707,69.887L260.785,69.666L261.846,69.45L262.941,69.217L264.593,68.872L264.611,68.868L265.114,68.761L266.836,68.389L267.454,70.641L267.588,71.174L267.678,71.504L267.862,72.179L268.457,74.228L268.807,75.492L268.951,75.979L269.132,76.639L270.931,76.298L272.226,76.014Z" + }, + { + "fill": "rgb(157, 216, 184)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.085; geo: [object Object]; name: Maryland", + "shape": "M265.177,74.879L265.189,73.49L265.657,74.183L265.298,74.099ZM272.194,76.386L272.181,77.444L271.73,77.657L271.386,79.231L270.168,79.639L270.166,79.628L270.15,79.643L268.782,80.077L268.867,79.4L269.054,78.842L268.332,78.964L268.898,78.03L268.26,78.179L268.491,77.031L268.075,78.211L267.625,77.537L267.658,78.408L266.916,78.067L266.512,77.967L265.862,77.237L266.231,76.817L265.975,76.232L267.512,76.117L267.583,75.466L267.206,75.13L267.432,74.676L267.206,75.13L267.495,75.5L267.267,76.218L265.429,75.357L265.675,74.718L266.275,75.224L266.021,74.649L266.342,74.016L265.982,74.464L265.81,73.295L266.54,71.749L266.046,72.799L265.539,73.263L265.196,72.715L265.424,71.469L265.714,71.058L267.117,70.743L266.072,70.878L266.167,69.649L265.633,69.882L265.68,70.631L264.854,71.27L264.438,71.172L264.532,71.62L264.47,72.313L263.801,72.364L263.576,72.644L263.614,72.648L263.828,72.585L264.533,73.251L264.028,73.368L264.805,73.737L264.564,74.486L264.24,74.658L264.551,75.154L264.526,75.855L264.528,75.865L264.812,77.048L265.727,78.05L265.435,78.39L265.136,77.965L264.281,77.611L263.817,76.38L263.737,76.36L263.817,76.38L263.904,77.172L263.967,77.475L265.307,78.416L265.802,78.41L266.502,80.014L265.323,79.688L264.881,79.218L263.749,79.202L263.235,78.368L263.564,79.14L262.748,78.786L262.284,78.19L261.551,78.909L261.067,78.2L261.149,77.661L261.769,76.586L261.919,75.732L262.354,75.072L261.781,74.676L261.242,75.004L260.026,74.405L259.311,74.417L258.91,74.106L259.135,73.432L258.483,72.989L257.897,72.974L257.703,73.038L256.938,71.997L256.529,71.628L256.759,71.268L255.782,71.345L254.909,70.982L254.536,71.579L254.19,71.529L253.671,72.455L252.672,72.515L251.854,72.033L251.232,73.44L250.693,73.253L249.84,74.451L248.893,75.457L248.344,72.012L248.759,71.938L251.087,71.511L251.701,71.399L253.849,71.008L254.048,70.971L255.274,70.739L258.428,70.138L258.483,70.131L259.707,69.887L260.785,69.666L261.846,69.45L262.941,69.217L264.593,68.872L264.611,68.868L265.114,68.761L266.836,68.389L267.454,70.641L267.588,71.174L267.678,71.504L267.862,72.179L268.457,74.228L268.807,75.492L268.951,75.979L269.132,76.639L270.931,76.298L272.226,76.014Z" + }, + { + "fill": "rgb(155, 216, 184)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.086; geo: [object Object]; name: Maryland", + "shape": "M265.177,74.879L265.189,73.49L265.657,74.183L265.298,74.099ZM272.194,76.386L272.181,77.444L271.73,77.657L271.386,79.231L270.168,79.639L270.166,79.628L270.15,79.643L268.782,80.077L268.867,79.4L269.054,78.842L268.332,78.964L268.898,78.03L268.26,78.179L268.491,77.031L268.075,78.211L267.625,77.537L267.658,78.408L266.916,78.067L266.512,77.967L265.862,77.237L266.231,76.817L265.975,76.232L267.512,76.117L267.583,75.466L267.206,75.13L267.432,74.676L267.206,75.13L267.495,75.5L267.267,76.218L265.429,75.357L265.675,74.718L266.275,75.224L266.021,74.649L266.342,74.016L265.982,74.464L265.81,73.295L266.54,71.749L266.046,72.799L265.539,73.263L265.196,72.715L265.424,71.469L265.714,71.058L267.117,70.743L266.072,70.878L266.167,69.649L265.633,69.882L265.68,70.631L264.854,71.27L264.438,71.172L264.532,71.62L264.47,72.313L263.801,72.364L263.576,72.644L263.614,72.648L263.828,72.585L264.533,73.251L264.028,73.368L264.805,73.737L264.564,74.486L264.24,74.658L264.551,75.154L264.526,75.855L264.528,75.865L264.812,77.048L265.727,78.05L265.435,78.39L265.136,77.965L264.281,77.611L263.817,76.38L263.737,76.36L263.817,76.38L263.904,77.172L263.967,77.475L265.307,78.416L265.802,78.41L266.502,80.014L265.323,79.688L264.881,79.218L263.749,79.202L263.235,78.368L263.564,79.14L262.748,78.786L262.284,78.19L261.551,78.909L261.067,78.2L261.149,77.661L261.769,76.586L261.919,75.732L262.354,75.072L261.781,74.676L261.242,75.004L260.026,74.405L259.311,74.417L258.91,74.106L259.135,73.432L258.483,72.989L257.897,72.974L257.703,73.038L256.938,71.997L256.529,71.628L256.759,71.268L255.782,71.345L254.909,70.982L254.536,71.579L254.19,71.529L253.671,72.455L252.672,72.515L251.854,72.033L251.232,73.44L250.693,73.253L249.84,74.451L248.893,75.457L248.344,72.012L248.759,71.938L251.087,71.511L251.701,71.399L253.849,71.008L254.048,70.971L255.274,70.739L258.428,70.138L258.483,70.131L259.707,69.887L260.785,69.666L261.846,69.45L262.941,69.217L264.593,68.872L264.611,68.868L265.114,68.761L266.836,68.389L267.454,70.641L267.588,71.174L267.678,71.504L267.862,72.179L268.457,74.228L268.807,75.492L268.951,75.979L269.132,76.639L270.931,76.298L272.226,76.014Z" + }, + { + "fill": "rgb(186, 228, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.065; geo: [object Object]; name: Massachusetts", + "shape": "M292.717,51.409L291.684,51.449L292.624,50.809ZM288.934,52.009L289.063,51.048L289.483,50.617L290.355,51.289L289.031,51.749ZM290.189,49.406L289.912,49.949L289.029,50.38L288.885,48.906L288.384,49.099L288.561,49.48L288.026,49.96L287.768,50.65L286.928,51.177L286.593,50.132L286.255,50.113L286.033,49.906L285.493,49.61L284.821,48.327L284.216,48.262L282.771,48.704L281.291,48.941L281.135,48.973L281.134,48.97L279.338,49.404L276.936,49.97L276.71,50.018L274.623,50.456L274.572,50.468L274.47,50.276L274.528,47.28L274.58,45.633L275.732,45.384L276.178,45.285L278.432,44.807L279.276,44.63L280.978,44.257L281.115,44.225L284.014,43.565L284.12,43.278L284.117,43.267L284.157,43.212L284.894,42.568L284.956,42.191L285.948,41.826L286.621,43.228L287.164,42.746L287.423,43.092L287.046,43.582L286.247,44.07L286.488,44.219L285.942,44.903L285.703,45.238L285.588,45.288L285.676,45.411L285.66,45.419L285.931,45.951L286.522,46.036L286.988,45.793L287.236,45.895L288.19,46.699L287.991,47.318L288.959,47.625L289.167,48.381L289.831,48.646L290.519,48.591L291.678,47.835L290.868,46.328L291.58,46.761L292.194,47.958L291.941,48.575Z" + }, + { + "fill": "rgb(200, 233, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.052; geo: [object Object]; name: Massachusetts", + "shape": "M292.717,51.409L291.684,51.449L292.624,50.809ZM288.934,52.009L289.063,51.048L289.483,50.617L290.355,51.289L289.031,51.749ZM290.189,49.406L289.912,49.949L289.029,50.38L288.885,48.906L288.384,49.099L288.561,49.48L288.026,49.96L287.768,50.65L286.928,51.177L286.593,50.132L286.255,50.113L286.033,49.906L285.493,49.61L284.821,48.327L284.216,48.262L282.771,48.704L281.291,48.941L281.135,48.973L281.134,48.97L279.338,49.404L276.936,49.97L276.71,50.018L274.623,50.456L274.572,50.468L274.47,50.276L274.528,47.28L274.58,45.633L275.732,45.384L276.178,45.285L278.432,44.807L279.276,44.63L280.978,44.257L281.115,44.225L284.014,43.565L284.12,43.278L284.117,43.267L284.157,43.212L284.894,42.568L284.956,42.191L285.948,41.826L286.621,43.228L287.164,42.746L287.423,43.092L287.046,43.582L286.247,44.07L286.488,44.219L285.942,44.903L285.703,45.238L285.588,45.288L285.676,45.411L285.66,45.419L285.931,45.951L286.522,46.036L286.988,45.793L287.236,45.895L288.19,46.699L287.991,47.318L288.959,47.625L289.167,48.381L289.831,48.646L290.519,48.591L291.678,47.835L290.868,46.328L291.58,46.761L292.194,47.958L291.941,48.575Z" + }, + { + "fill": "rgb(151, 214, 185)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.089; geo: [object Object]; name: Massachusetts", + "shape": "M292.717,51.409L291.684,51.449L292.624,50.809ZM288.934,52.009L289.063,51.048L289.483,50.617L290.355,51.289L289.031,51.749ZM290.189,49.406L289.912,49.949L289.029,50.38L288.885,48.906L288.384,49.099L288.561,49.48L288.026,49.96L287.768,50.65L286.928,51.177L286.593,50.132L286.255,50.113L286.033,49.906L285.493,49.61L284.821,48.327L284.216,48.262L282.771,48.704L281.291,48.941L281.135,48.973L281.134,48.97L279.338,49.404L276.936,49.97L276.71,50.018L274.623,50.456L274.572,50.468L274.47,50.276L274.528,47.28L274.58,45.633L275.732,45.384L276.178,45.285L278.432,44.807L279.276,44.63L280.978,44.257L281.115,44.225L284.014,43.565L284.12,43.278L284.117,43.267L284.157,43.212L284.894,42.568L284.956,42.191L285.948,41.826L286.621,43.228L287.164,42.746L287.423,43.092L287.046,43.582L286.247,44.07L286.488,44.219L285.942,44.903L285.703,45.238L285.588,45.288L285.676,45.411L285.66,45.419L285.931,45.951L286.522,46.036L286.988,45.793L287.236,45.895L288.19,46.699L287.991,47.318L288.959,47.625L289.167,48.381L289.831,48.646L290.519,48.591L291.678,47.835L290.868,46.328L291.58,46.761L292.194,47.958L291.941,48.575Z" + }, + { + "fill": "rgb(165, 220, 183)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.079; geo: [object Object]; name: Massachusetts", + "shape": "M292.717,51.409L291.684,51.449L292.624,50.809ZM288.934,52.009L289.063,51.048L289.483,50.617L290.355,51.289L289.031,51.749ZM290.189,49.406L289.912,49.949L289.029,50.38L288.885,48.906L288.384,49.099L288.561,49.48L288.026,49.96L287.768,50.65L286.928,51.177L286.593,50.132L286.255,50.113L286.033,49.906L285.493,49.61L284.821,48.327L284.216,48.262L282.771,48.704L281.291,48.941L281.135,48.973L281.134,48.97L279.338,49.404L276.936,49.97L276.71,50.018L274.623,50.456L274.572,50.468L274.47,50.276L274.528,47.28L274.58,45.633L275.732,45.384L276.178,45.285L278.432,44.807L279.276,44.63L280.978,44.257L281.115,44.225L284.014,43.565L284.12,43.278L284.117,43.267L284.157,43.212L284.894,42.568L284.956,42.191L285.948,41.826L286.621,43.228L287.164,42.746L287.423,43.092L287.046,43.582L286.247,44.07L286.488,44.219L285.942,44.903L285.703,45.238L285.588,45.288L285.676,45.411L285.66,45.419L285.931,45.951L286.522,46.036L286.988,45.793L287.236,45.895L288.19,46.699L287.991,47.318L288.959,47.625L289.167,48.381L289.831,48.646L290.519,48.591L291.678,47.835L290.868,46.328L291.58,46.761L292.194,47.958L291.941,48.575Z" + }, + { + "fill": "rgb(122, 203, 188)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.108; geo: [object Object]; name: Massachusetts", + "shape": "M292.717,51.409L291.684,51.449L292.624,50.809ZM288.934,52.009L289.063,51.048L289.483,50.617L290.355,51.289L289.031,51.749ZM290.189,49.406L289.912,49.949L289.029,50.38L288.885,48.906L288.384,49.099L288.561,49.48L288.026,49.96L287.768,50.65L286.928,51.177L286.593,50.132L286.255,50.113L286.033,49.906L285.493,49.61L284.821,48.327L284.216,48.262L282.771,48.704L281.291,48.941L281.135,48.973L281.134,48.97L279.338,49.404L276.936,49.97L276.71,50.018L274.623,50.456L274.572,50.468L274.47,50.276L274.528,47.28L274.58,45.633L275.732,45.384L276.178,45.285L278.432,44.807L279.276,44.63L280.978,44.257L281.115,44.225L284.014,43.565L284.12,43.278L284.117,43.267L284.157,43.212L284.894,42.568L284.956,42.191L285.948,41.826L286.621,43.228L287.164,42.746L287.423,43.092L287.046,43.582L286.247,44.07L286.488,44.219L285.942,44.903L285.703,45.238L285.588,45.288L285.676,45.411L285.66,45.419L285.931,45.951L286.522,46.036L286.988,45.793L287.236,45.895L288.19,46.699L287.991,47.318L288.959,47.625L289.167,48.381L289.831,48.646L290.519,48.591L291.678,47.835L290.868,46.328L291.58,46.761L292.194,47.958L291.941,48.575Z" + }, + { + "fill": "rgb(98, 194, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.125; geo: [object Object]; name: Massachusetts", + "shape": "M292.717,51.409L291.684,51.449L292.624,50.809ZM288.934,52.009L289.063,51.048L289.483,50.617L290.355,51.289L289.031,51.749ZM290.189,49.406L289.912,49.949L289.029,50.38L288.885,48.906L288.384,49.099L288.561,49.48L288.026,49.96L287.768,50.65L286.928,51.177L286.593,50.132L286.255,50.113L286.033,49.906L285.493,49.61L284.821,48.327L284.216,48.262L282.771,48.704L281.291,48.941L281.135,48.973L281.134,48.97L279.338,49.404L276.936,49.97L276.71,50.018L274.623,50.456L274.572,50.468L274.47,50.276L274.528,47.28L274.58,45.633L275.732,45.384L276.178,45.285L278.432,44.807L279.276,44.63L280.978,44.257L281.115,44.225L284.014,43.565L284.12,43.278L284.117,43.267L284.157,43.212L284.894,42.568L284.956,42.191L285.948,41.826L286.621,43.228L287.164,42.746L287.423,43.092L287.046,43.582L286.247,44.07L286.488,44.219L285.942,44.903L285.703,45.238L285.588,45.288L285.676,45.411L285.66,45.419L285.931,45.951L286.522,46.036L286.988,45.793L287.236,45.895L288.19,46.699L287.991,47.318L288.959,47.625L289.167,48.381L289.831,48.646L290.519,48.591L291.678,47.835L290.868,46.328L291.58,46.761L292.194,47.958L291.941,48.575Z" + }, + { + "fill": "rgb(57, 170, 193)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.161; geo: [object Object]; name: Massachusetts", + "shape": "M292.717,51.409L291.684,51.449L292.624,50.809ZM288.934,52.009L289.063,51.048L289.483,50.617L290.355,51.289L289.031,51.749ZM290.189,49.406L289.912,49.949L289.029,50.38L288.885,48.906L288.384,49.099L288.561,49.48L288.026,49.96L287.768,50.65L286.928,51.177L286.593,50.132L286.255,50.113L286.033,49.906L285.493,49.61L284.821,48.327L284.216,48.262L282.771,48.704L281.291,48.941L281.135,48.973L281.134,48.97L279.338,49.404L276.936,49.97L276.71,50.018L274.623,50.456L274.572,50.468L274.47,50.276L274.528,47.28L274.58,45.633L275.732,45.384L276.178,45.285L278.432,44.807L279.276,44.63L280.978,44.257L281.115,44.225L284.014,43.565L284.12,43.278L284.117,43.267L284.157,43.212L284.894,42.568L284.956,42.191L285.948,41.826L286.621,43.228L287.164,42.746L287.423,43.092L287.046,43.582L286.247,44.07L286.488,44.219L285.942,44.903L285.703,45.238L285.588,45.288L285.676,45.411L285.66,45.419L285.931,45.951L286.522,46.036L286.988,45.793L287.236,45.895L288.19,46.699L287.991,47.318L288.959,47.625L289.167,48.381L289.831,48.646L290.519,48.591L291.678,47.835L290.868,46.328L291.58,46.761L292.194,47.958L291.941,48.575Z" + }, + { + "fill": "rgb(54, 167, 193)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.164; geo: [object Object]; name: Massachusetts", + "shape": "M292.717,51.409L291.684,51.449L292.624,50.809ZM288.934,52.009L289.063,51.048L289.483,50.617L290.355,51.289L289.031,51.749ZM290.189,49.406L289.912,49.949L289.029,50.38L288.885,48.906L288.384,49.099L288.561,49.48L288.026,49.96L287.768,50.65L286.928,51.177L286.593,50.132L286.255,50.113L286.033,49.906L285.493,49.61L284.821,48.327L284.216,48.262L282.771,48.704L281.291,48.941L281.135,48.973L281.134,48.97L279.338,49.404L276.936,49.97L276.71,50.018L274.623,50.456L274.572,50.468L274.47,50.276L274.528,47.28L274.58,45.633L275.732,45.384L276.178,45.285L278.432,44.807L279.276,44.63L280.978,44.257L281.115,44.225L284.014,43.565L284.12,43.278L284.117,43.267L284.157,43.212L284.894,42.568L284.956,42.191L285.948,41.826L286.621,43.228L287.164,42.746L287.423,43.092L287.046,43.582L286.247,44.07L286.488,44.219L285.942,44.903L285.703,45.238L285.588,45.288L285.676,45.411L285.66,45.419L285.931,45.951L286.522,46.036L286.988,45.793L287.236,45.895L288.19,46.699L287.991,47.318L288.959,47.625L289.167,48.381L289.831,48.646L290.519,48.591L291.678,47.835L290.868,46.328L291.58,46.761L292.194,47.958L291.941,48.575Z" + }, + { + "fill": "rgb(168, 221, 183)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.077; geo: [object Object]; name: Massachusetts", + "shape": "M292.717,51.409L291.684,51.449L292.624,50.809ZM288.934,52.009L289.063,51.048L289.483,50.617L290.355,51.289L289.031,51.749ZM290.189,49.406L289.912,49.949L289.029,50.38L288.885,48.906L288.384,49.099L288.561,49.48L288.026,49.96L287.768,50.65L286.928,51.177L286.593,50.132L286.255,50.113L286.033,49.906L285.493,49.61L284.821,48.327L284.216,48.262L282.771,48.704L281.291,48.941L281.135,48.973L281.134,48.97L279.338,49.404L276.936,49.97L276.71,50.018L274.623,50.456L274.572,50.468L274.47,50.276L274.528,47.28L274.58,45.633L275.732,45.384L276.178,45.285L278.432,44.807L279.276,44.63L280.978,44.257L281.115,44.225L284.014,43.565L284.12,43.278L284.117,43.267L284.157,43.212L284.894,42.568L284.956,42.191L285.948,41.826L286.621,43.228L287.164,42.746L287.423,43.092L287.046,43.582L286.247,44.07L286.488,44.219L285.942,44.903L285.703,45.238L285.588,45.288L285.676,45.411L285.66,45.419L285.931,45.951L286.522,46.036L286.988,45.793L287.236,45.895L288.19,46.699L287.991,47.318L288.959,47.625L289.167,48.381L289.831,48.646L290.519,48.591L291.678,47.835L290.868,46.328L291.58,46.761L292.194,47.958L291.941,48.575Z" + }, + { + "fill": "rgb(164, 219, 183)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.08; geo: [object Object]; name: Massachusetts", + "shape": "M292.717,51.409L291.684,51.449L292.624,50.809ZM288.934,52.009L289.063,51.048L289.483,50.617L290.355,51.289L289.031,51.749ZM290.189,49.406L289.912,49.949L289.029,50.38L288.885,48.906L288.384,49.099L288.561,49.48L288.026,49.96L287.768,50.65L286.928,51.177L286.593,50.132L286.255,50.113L286.033,49.906L285.493,49.61L284.821,48.327L284.216,48.262L282.771,48.704L281.291,48.941L281.135,48.973L281.134,48.97L279.338,49.404L276.936,49.97L276.71,50.018L274.623,50.456L274.572,50.468L274.47,50.276L274.528,47.28L274.58,45.633L275.732,45.384L276.178,45.285L278.432,44.807L279.276,44.63L280.978,44.257L281.115,44.225L284.014,43.565L284.12,43.278L284.117,43.267L284.157,43.212L284.894,42.568L284.956,42.191L285.948,41.826L286.621,43.228L287.164,42.746L287.423,43.092L287.046,43.582L286.247,44.07L286.488,44.219L285.942,44.903L285.703,45.238L285.588,45.288L285.676,45.411L285.66,45.419L285.931,45.951L286.522,46.036L286.988,45.793L287.236,45.895L288.19,46.699L287.991,47.318L288.959,47.625L289.167,48.381L289.831,48.646L290.519,48.591L291.678,47.835L290.868,46.328L291.58,46.761L292.194,47.958L291.941,48.575Z" + }, + { + "fill": "rgb(158, 217, 184)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.084; geo: [object Object]; name: Michigan", + "shape": "M211.519,40.856L211.197,40.223L211.594,40.275ZM213.216,37.178L212.923,37.13L213.062,35.93L213.366,35.929L213.536,36.849ZM216.931,35.294L218.188,36.028L218.9,35.89L219.517,36.071L220.034,36.812L221.007,36.834L221.352,37.135L223.657,37.935L223.681,38.368L224.172,39.35L223.541,39.5L223.725,40.24L224.312,40.646L224.679,41.584L224.622,42.958L224.725,44.111L224.314,44.672L223.83,44.81L223.773,45.437L223.787,46.204L223.38,46.677L222.588,46.743L222.35,47.335L222.255,48.365L222.593,48.96L223.623,49.349L224.389,48.26L224.619,48.28L224.869,47.01L225.376,46.5L226.259,46.205L226.897,45.65L227.859,46.056L228.657,47.379L228.775,47.966L229.342,49.611L229.77,51.375L230.301,52.364L230.13,55.138L229.238,54.738L228.746,55.158L228.965,55.581L228.571,55.944L228.655,56.423L228.623,56.83L227.768,57.493L227.412,58.948L227.442,59.435L226.934,60.184L226.319,61.639L224.948,61.881L224.367,61.978L222.006,62.366L221.812,62.397L219.818,62.703L219.679,62.285L217.837,62.499L217.377,62.551L215.552,62.758L214.932,62.825L213.566,62.963L212.75,63.048L211.278,63.201L209.805,63.342L210.665,62.438L211.296,60.701L211.746,59.871L212.065,58.643L212.139,56.273L211.985,55.123L211.6,53.949L210.815,52.61L210.44,51.672L209.962,50.734L210.343,49.328L210.187,48.472L209.796,47.86L210.305,46.9L210.773,45.723L210.807,44.553L210.63,43.333L211.391,42.731L211.322,41.904L211.986,41.384L212.525,41.464L213.248,39.785L213.577,40.602L213.323,41.875L213.429,42.535L213.671,42.552L213.713,41.683L214.066,41.005L213.993,42.665L214.316,41.867L214.516,40.443L214.309,39.515L214.331,39.103L215.02,38.419L215.552,38.307L216.315,37.837L215.75,37.805L215.288,36.897L216.011,35.82ZM218.437,35.566L217.639,34.995L218.678,35.188ZM222.215,33.725L221.901,33.523L220.883,33.619L221.635,33.039L221.379,32.622L222.042,32.663L222.587,33.208ZM219.306,31.289L219.061,31.345L218.517,30.341L219.08,30.024L218.914,30.838ZM207.458,31.86L207.231,31.244L207.619,31.285ZM198.043,27.502L198.088,27.667L198.127,28.164L198.628,28.226L198.642,28.825L199.036,28.992L198.981,29.342L199.074,30.512L199.956,29.31L200.872,29.367L201.549,29.332L202.824,29.876L203.105,30.421L204.519,31.873L205.377,31.764L205.799,31.461L206.805,32.014L206.895,31.738L207.634,32.114L208.367,31.084L209.771,30.135L211.012,29.892L212.67,29.802L213.846,29.138L215.115,28.873L214.844,29.407L215.009,30.83L216.112,30.954L216.841,30.61L217.063,31.058L218.164,30.33L218.332,30.472L218.369,30.5L218.407,30.535L219.098,31.909L218.971,32.508L219.909,32.597L219.746,32.908L220.618,33.53L219.637,33.654L219.169,33.691L219.086,33.701L217.069,33.487L216.777,34.287L216.79,34.967L215.422,33.957L213.508,33.57L212.943,33.785L212.51,34.593L211.525,34.688L211.272,35.001L209.979,34.884L209.476,35.236L209.315,36.146L208.9,36.383L208.193,37.091L207.754,37.098L208.519,35.781L207.344,35.843L207.15,36.802L206.598,37.206L206.327,36.136L206.216,36.747L205.63,37.352L205.279,38.129L205.07,38.988L203.913,41.058L204.021,41.306L203.899,41.277L203.251,40.685L203.608,39.717L202.468,39.693L202.837,38.659L202.598,38.242L202.789,37.524L202.459,37.22L201.438,36.916L201.438,36.916L201.047,36.674L201.092,35.999L199.219,35.504L198.403,35.59L197.204,35.283L196.925,35.142L196.438,34.9L192.484,34.089L192.489,34.172L192.484,34.089L191.57,33.898L191.07,32.823L190.116,32.456L191.877,31.615L192.467,30.969L192.89,30.589L194.563,30.325L195.358,29.849L195.891,29.203L196.728,28.893L196.923,28.397ZM201.439,25.553L202.117,25.972L200.999,26.169L201.108,26.487L199.875,27.521L199.811,27.951L199.036,28.992L198.981,28.302L198.142,28.145L198.088,27.667L198.043,27.502L198.518,27.051L198.535,27.05L199.116,26.289L199.788,25.853ZM197.461,21.482L198.45,21.043L197.395,22.319L195.986,23.088L196.369,23.189L195.296,23.705L194.974,23.538L195.194,22.963L196.726,22.083Z" + }, + { + "fill": "rgb(194, 231, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.058; geo: [object Object]; name: Michigan", + "shape": "M211.519,40.856L211.197,40.223L211.594,40.275ZM213.216,37.178L212.923,37.13L213.062,35.93L213.366,35.929L213.536,36.849ZM216.931,35.294L218.188,36.028L218.9,35.89L219.517,36.071L220.034,36.812L221.007,36.834L221.352,37.135L223.657,37.935L223.681,38.368L224.172,39.35L223.541,39.5L223.725,40.24L224.312,40.646L224.679,41.584L224.622,42.958L224.725,44.111L224.314,44.672L223.83,44.81L223.773,45.437L223.787,46.204L223.38,46.677L222.588,46.743L222.35,47.335L222.255,48.365L222.593,48.96L223.623,49.349L224.389,48.26L224.619,48.28L224.869,47.01L225.376,46.5L226.259,46.205L226.897,45.65L227.859,46.056L228.657,47.379L228.775,47.966L229.342,49.611L229.77,51.375L230.301,52.364L230.13,55.138L229.238,54.738L228.746,55.158L228.965,55.581L228.571,55.944L228.655,56.423L228.623,56.83L227.768,57.493L227.412,58.948L227.442,59.435L226.934,60.184L226.319,61.639L224.948,61.881L224.367,61.978L222.006,62.366L221.812,62.397L219.818,62.703L219.679,62.285L217.837,62.499L217.377,62.551L215.552,62.758L214.932,62.825L213.566,62.963L212.75,63.048L211.278,63.201L209.805,63.342L210.665,62.438L211.296,60.701L211.746,59.871L212.065,58.643L212.139,56.273L211.985,55.123L211.6,53.949L210.815,52.61L210.44,51.672L209.962,50.734L210.343,49.328L210.187,48.472L209.796,47.86L210.305,46.9L210.773,45.723L210.807,44.553L210.63,43.333L211.391,42.731L211.322,41.904L211.986,41.384L212.525,41.464L213.248,39.785L213.577,40.602L213.323,41.875L213.429,42.535L213.671,42.552L213.713,41.683L214.066,41.005L213.993,42.665L214.316,41.867L214.516,40.443L214.309,39.515L214.331,39.103L215.02,38.419L215.552,38.307L216.315,37.837L215.75,37.805L215.288,36.897L216.011,35.82ZM218.437,35.566L217.639,34.995L218.678,35.188ZM222.215,33.725L221.901,33.523L220.883,33.619L221.635,33.039L221.379,32.622L222.042,32.663L222.587,33.208ZM219.306,31.289L219.061,31.345L218.517,30.341L219.08,30.024L218.914,30.838ZM207.458,31.86L207.231,31.244L207.619,31.285ZM198.043,27.502L198.088,27.667L198.127,28.164L198.628,28.226L198.642,28.825L199.036,28.992L198.981,29.342L199.074,30.512L199.956,29.31L200.872,29.367L201.549,29.332L202.824,29.876L203.105,30.421L204.519,31.873L205.377,31.764L205.799,31.461L206.805,32.014L206.895,31.738L207.634,32.114L208.367,31.084L209.771,30.135L211.012,29.892L212.67,29.802L213.846,29.138L215.115,28.873L214.844,29.407L215.009,30.83L216.112,30.954L216.841,30.61L217.063,31.058L218.164,30.33L218.332,30.472L218.369,30.5L218.407,30.535L219.098,31.909L218.971,32.508L219.909,32.597L219.746,32.908L220.618,33.53L219.637,33.654L219.169,33.691L219.086,33.701L217.069,33.487L216.777,34.287L216.79,34.967L215.422,33.957L213.508,33.57L212.943,33.785L212.51,34.593L211.525,34.688L211.272,35.001L209.979,34.884L209.476,35.236L209.315,36.146L208.9,36.383L208.193,37.091L207.754,37.098L208.519,35.781L207.344,35.843L207.15,36.802L206.598,37.206L206.327,36.136L206.216,36.747L205.63,37.352L205.279,38.129L205.07,38.988L203.913,41.058L204.021,41.306L203.899,41.277L203.251,40.685L203.608,39.717L202.468,39.693L202.837,38.659L202.598,38.242L202.789,37.524L202.459,37.22L201.438,36.916L201.438,36.916L201.047,36.674L201.092,35.999L199.219,35.504L198.403,35.59L197.204,35.283L196.925,35.142L196.438,34.9L192.484,34.089L192.489,34.172L192.484,34.089L191.57,33.898L191.07,32.823L190.116,32.456L191.877,31.615L192.467,30.969L192.89,30.589L194.563,30.325L195.358,29.849L195.891,29.203L196.728,28.893L196.923,28.397ZM201.439,25.553L202.117,25.972L200.999,26.169L201.108,26.487L199.875,27.521L199.811,27.951L199.036,28.992L198.981,28.302L198.142,28.145L198.088,27.667L198.043,27.502L198.518,27.051L198.535,27.05L199.116,26.289L199.788,25.853ZM197.461,21.482L198.45,21.043L197.395,22.319L195.986,23.088L196.369,23.189L195.296,23.705L194.974,23.538L195.194,22.963L196.726,22.083Z" + }, + { + "fill": "rgb(107, 198, 190)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.118; geo: [object Object]; name: Michigan", + "shape": "M211.519,40.856L211.197,40.223L211.594,40.275ZM213.216,37.178L212.923,37.13L213.062,35.93L213.366,35.929L213.536,36.849ZM216.931,35.294L218.188,36.028L218.9,35.89L219.517,36.071L220.034,36.812L221.007,36.834L221.352,37.135L223.657,37.935L223.681,38.368L224.172,39.35L223.541,39.5L223.725,40.24L224.312,40.646L224.679,41.584L224.622,42.958L224.725,44.111L224.314,44.672L223.83,44.81L223.773,45.437L223.787,46.204L223.38,46.677L222.588,46.743L222.35,47.335L222.255,48.365L222.593,48.96L223.623,49.349L224.389,48.26L224.619,48.28L224.869,47.01L225.376,46.5L226.259,46.205L226.897,45.65L227.859,46.056L228.657,47.379L228.775,47.966L229.342,49.611L229.77,51.375L230.301,52.364L230.13,55.138L229.238,54.738L228.746,55.158L228.965,55.581L228.571,55.944L228.655,56.423L228.623,56.83L227.768,57.493L227.412,58.948L227.442,59.435L226.934,60.184L226.319,61.639L224.948,61.881L224.367,61.978L222.006,62.366L221.812,62.397L219.818,62.703L219.679,62.285L217.837,62.499L217.377,62.551L215.552,62.758L214.932,62.825L213.566,62.963L212.75,63.048L211.278,63.201L209.805,63.342L210.665,62.438L211.296,60.701L211.746,59.871L212.065,58.643L212.139,56.273L211.985,55.123L211.6,53.949L210.815,52.61L210.44,51.672L209.962,50.734L210.343,49.328L210.187,48.472L209.796,47.86L210.305,46.9L210.773,45.723L210.807,44.553L210.63,43.333L211.391,42.731L211.322,41.904L211.986,41.384L212.525,41.464L213.248,39.785L213.577,40.602L213.323,41.875L213.429,42.535L213.671,42.552L213.713,41.683L214.066,41.005L213.993,42.665L214.316,41.867L214.516,40.443L214.309,39.515L214.331,39.103L215.02,38.419L215.552,38.307L216.315,37.837L215.75,37.805L215.288,36.897L216.011,35.82ZM218.437,35.566L217.639,34.995L218.678,35.188ZM222.215,33.725L221.901,33.523L220.883,33.619L221.635,33.039L221.379,32.622L222.042,32.663L222.587,33.208ZM219.306,31.289L219.061,31.345L218.517,30.341L219.08,30.024L218.914,30.838ZM207.458,31.86L207.231,31.244L207.619,31.285ZM198.043,27.502L198.088,27.667L198.127,28.164L198.628,28.226L198.642,28.825L199.036,28.992L198.981,29.342L199.074,30.512L199.956,29.31L200.872,29.367L201.549,29.332L202.824,29.876L203.105,30.421L204.519,31.873L205.377,31.764L205.799,31.461L206.805,32.014L206.895,31.738L207.634,32.114L208.367,31.084L209.771,30.135L211.012,29.892L212.67,29.802L213.846,29.138L215.115,28.873L214.844,29.407L215.009,30.83L216.112,30.954L216.841,30.61L217.063,31.058L218.164,30.33L218.332,30.472L218.369,30.5L218.407,30.535L219.098,31.909L218.971,32.508L219.909,32.597L219.746,32.908L220.618,33.53L219.637,33.654L219.169,33.691L219.086,33.701L217.069,33.487L216.777,34.287L216.79,34.967L215.422,33.957L213.508,33.57L212.943,33.785L212.51,34.593L211.525,34.688L211.272,35.001L209.979,34.884L209.476,35.236L209.315,36.146L208.9,36.383L208.193,37.091L207.754,37.098L208.519,35.781L207.344,35.843L207.15,36.802L206.598,37.206L206.327,36.136L206.216,36.747L205.63,37.352L205.279,38.129L205.07,38.988L203.913,41.058L204.021,41.306L203.899,41.277L203.251,40.685L203.608,39.717L202.468,39.693L202.837,38.659L202.598,38.242L202.789,37.524L202.459,37.22L201.438,36.916L201.438,36.916L201.047,36.674L201.092,35.999L199.219,35.504L198.403,35.59L197.204,35.283L196.925,35.142L196.438,34.9L192.484,34.089L192.489,34.172L192.484,34.089L191.57,33.898L191.07,32.823L190.116,32.456L191.877,31.615L192.467,30.969L192.89,30.589L194.563,30.325L195.358,29.849L195.891,29.203L196.728,28.893L196.923,28.397ZM201.439,25.553L202.117,25.972L200.999,26.169L201.108,26.487L199.875,27.521L199.811,27.951L199.036,28.992L198.981,28.302L198.142,28.145L198.088,27.667L198.043,27.502L198.518,27.051L198.535,27.05L199.116,26.289L199.788,25.853ZM197.461,21.482L198.45,21.043L197.395,22.319L195.986,23.088L196.369,23.189L195.296,23.705L194.974,23.538L195.194,22.963L196.726,22.083Z" + }, + { + "fill": "rgb(116, 201, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.112; geo: [object Object]; name: Michigan", + "shape": "M211.519,40.856L211.197,40.223L211.594,40.275ZM213.216,37.178L212.923,37.13L213.062,35.93L213.366,35.929L213.536,36.849ZM216.931,35.294L218.188,36.028L218.9,35.89L219.517,36.071L220.034,36.812L221.007,36.834L221.352,37.135L223.657,37.935L223.681,38.368L224.172,39.35L223.541,39.5L223.725,40.24L224.312,40.646L224.679,41.584L224.622,42.958L224.725,44.111L224.314,44.672L223.83,44.81L223.773,45.437L223.787,46.204L223.38,46.677L222.588,46.743L222.35,47.335L222.255,48.365L222.593,48.96L223.623,49.349L224.389,48.26L224.619,48.28L224.869,47.01L225.376,46.5L226.259,46.205L226.897,45.65L227.859,46.056L228.657,47.379L228.775,47.966L229.342,49.611L229.77,51.375L230.301,52.364L230.13,55.138L229.238,54.738L228.746,55.158L228.965,55.581L228.571,55.944L228.655,56.423L228.623,56.83L227.768,57.493L227.412,58.948L227.442,59.435L226.934,60.184L226.319,61.639L224.948,61.881L224.367,61.978L222.006,62.366L221.812,62.397L219.818,62.703L219.679,62.285L217.837,62.499L217.377,62.551L215.552,62.758L214.932,62.825L213.566,62.963L212.75,63.048L211.278,63.201L209.805,63.342L210.665,62.438L211.296,60.701L211.746,59.871L212.065,58.643L212.139,56.273L211.985,55.123L211.6,53.949L210.815,52.61L210.44,51.672L209.962,50.734L210.343,49.328L210.187,48.472L209.796,47.86L210.305,46.9L210.773,45.723L210.807,44.553L210.63,43.333L211.391,42.731L211.322,41.904L211.986,41.384L212.525,41.464L213.248,39.785L213.577,40.602L213.323,41.875L213.429,42.535L213.671,42.552L213.713,41.683L214.066,41.005L213.993,42.665L214.316,41.867L214.516,40.443L214.309,39.515L214.331,39.103L215.02,38.419L215.552,38.307L216.315,37.837L215.75,37.805L215.288,36.897L216.011,35.82ZM218.437,35.566L217.639,34.995L218.678,35.188ZM222.215,33.725L221.901,33.523L220.883,33.619L221.635,33.039L221.379,32.622L222.042,32.663L222.587,33.208ZM219.306,31.289L219.061,31.345L218.517,30.341L219.08,30.024L218.914,30.838ZM207.458,31.86L207.231,31.244L207.619,31.285ZM198.043,27.502L198.088,27.667L198.127,28.164L198.628,28.226L198.642,28.825L199.036,28.992L198.981,29.342L199.074,30.512L199.956,29.31L200.872,29.367L201.549,29.332L202.824,29.876L203.105,30.421L204.519,31.873L205.377,31.764L205.799,31.461L206.805,32.014L206.895,31.738L207.634,32.114L208.367,31.084L209.771,30.135L211.012,29.892L212.67,29.802L213.846,29.138L215.115,28.873L214.844,29.407L215.009,30.83L216.112,30.954L216.841,30.61L217.063,31.058L218.164,30.33L218.332,30.472L218.369,30.5L218.407,30.535L219.098,31.909L218.971,32.508L219.909,32.597L219.746,32.908L220.618,33.53L219.637,33.654L219.169,33.691L219.086,33.701L217.069,33.487L216.777,34.287L216.79,34.967L215.422,33.957L213.508,33.57L212.943,33.785L212.51,34.593L211.525,34.688L211.272,35.001L209.979,34.884L209.476,35.236L209.315,36.146L208.9,36.383L208.193,37.091L207.754,37.098L208.519,35.781L207.344,35.843L207.15,36.802L206.598,37.206L206.327,36.136L206.216,36.747L205.63,37.352L205.279,38.129L205.07,38.988L203.913,41.058L204.021,41.306L203.899,41.277L203.251,40.685L203.608,39.717L202.468,39.693L202.837,38.659L202.598,38.242L202.789,37.524L202.459,37.22L201.438,36.916L201.438,36.916L201.047,36.674L201.092,35.999L199.219,35.504L198.403,35.59L197.204,35.283L196.925,35.142L196.438,34.9L192.484,34.089L192.489,34.172L192.484,34.089L191.57,33.898L191.07,32.823L190.116,32.456L191.877,31.615L192.467,30.969L192.89,30.589L194.563,30.325L195.358,29.849L195.891,29.203L196.728,28.893L196.923,28.397ZM201.439,25.553L202.117,25.972L200.999,26.169L201.108,26.487L199.875,27.521L199.811,27.951L199.036,28.992L198.981,28.302L198.142,28.145L198.088,27.667L198.043,27.502L198.518,27.051L198.535,27.05L199.116,26.289L199.788,25.853ZM197.461,21.482L198.45,21.043L197.395,22.319L195.986,23.088L196.369,23.189L195.296,23.705L194.974,23.538L195.194,22.963L196.726,22.083Z" + }, + { + "fill": "rgb(71, 181, 194)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.146; geo: [object Object]; name: Michigan", + "shape": "M211.519,40.856L211.197,40.223L211.594,40.275ZM213.216,37.178L212.923,37.13L213.062,35.93L213.366,35.929L213.536,36.849ZM216.931,35.294L218.188,36.028L218.9,35.89L219.517,36.071L220.034,36.812L221.007,36.834L221.352,37.135L223.657,37.935L223.681,38.368L224.172,39.35L223.541,39.5L223.725,40.24L224.312,40.646L224.679,41.584L224.622,42.958L224.725,44.111L224.314,44.672L223.83,44.81L223.773,45.437L223.787,46.204L223.38,46.677L222.588,46.743L222.35,47.335L222.255,48.365L222.593,48.96L223.623,49.349L224.389,48.26L224.619,48.28L224.869,47.01L225.376,46.5L226.259,46.205L226.897,45.65L227.859,46.056L228.657,47.379L228.775,47.966L229.342,49.611L229.77,51.375L230.301,52.364L230.13,55.138L229.238,54.738L228.746,55.158L228.965,55.581L228.571,55.944L228.655,56.423L228.623,56.83L227.768,57.493L227.412,58.948L227.442,59.435L226.934,60.184L226.319,61.639L224.948,61.881L224.367,61.978L222.006,62.366L221.812,62.397L219.818,62.703L219.679,62.285L217.837,62.499L217.377,62.551L215.552,62.758L214.932,62.825L213.566,62.963L212.75,63.048L211.278,63.201L209.805,63.342L210.665,62.438L211.296,60.701L211.746,59.871L212.065,58.643L212.139,56.273L211.985,55.123L211.6,53.949L210.815,52.61L210.44,51.672L209.962,50.734L210.343,49.328L210.187,48.472L209.796,47.86L210.305,46.9L210.773,45.723L210.807,44.553L210.63,43.333L211.391,42.731L211.322,41.904L211.986,41.384L212.525,41.464L213.248,39.785L213.577,40.602L213.323,41.875L213.429,42.535L213.671,42.552L213.713,41.683L214.066,41.005L213.993,42.665L214.316,41.867L214.516,40.443L214.309,39.515L214.331,39.103L215.02,38.419L215.552,38.307L216.315,37.837L215.75,37.805L215.288,36.897L216.011,35.82ZM218.437,35.566L217.639,34.995L218.678,35.188ZM222.215,33.725L221.901,33.523L220.883,33.619L221.635,33.039L221.379,32.622L222.042,32.663L222.587,33.208ZM219.306,31.289L219.061,31.345L218.517,30.341L219.08,30.024L218.914,30.838ZM207.458,31.86L207.231,31.244L207.619,31.285ZM198.043,27.502L198.088,27.667L198.127,28.164L198.628,28.226L198.642,28.825L199.036,28.992L198.981,29.342L199.074,30.512L199.956,29.31L200.872,29.367L201.549,29.332L202.824,29.876L203.105,30.421L204.519,31.873L205.377,31.764L205.799,31.461L206.805,32.014L206.895,31.738L207.634,32.114L208.367,31.084L209.771,30.135L211.012,29.892L212.67,29.802L213.846,29.138L215.115,28.873L214.844,29.407L215.009,30.83L216.112,30.954L216.841,30.61L217.063,31.058L218.164,30.33L218.332,30.472L218.369,30.5L218.407,30.535L219.098,31.909L218.971,32.508L219.909,32.597L219.746,32.908L220.618,33.53L219.637,33.654L219.169,33.691L219.086,33.701L217.069,33.487L216.777,34.287L216.79,34.967L215.422,33.957L213.508,33.57L212.943,33.785L212.51,34.593L211.525,34.688L211.272,35.001L209.979,34.884L209.476,35.236L209.315,36.146L208.9,36.383L208.193,37.091L207.754,37.098L208.519,35.781L207.344,35.843L207.15,36.802L206.598,37.206L206.327,36.136L206.216,36.747L205.63,37.352L205.279,38.129L205.07,38.988L203.913,41.058L204.021,41.306L203.899,41.277L203.251,40.685L203.608,39.717L202.468,39.693L202.837,38.659L202.598,38.242L202.789,37.524L202.459,37.22L201.438,36.916L201.438,36.916L201.047,36.674L201.092,35.999L199.219,35.504L198.403,35.59L197.204,35.283L196.925,35.142L196.438,34.9L192.484,34.089L192.489,34.172L192.484,34.089L191.57,33.898L191.07,32.823L190.116,32.456L191.877,31.615L192.467,30.969L192.89,30.589L194.563,30.325L195.358,29.849L195.891,29.203L196.728,28.893L196.923,28.397ZM201.439,25.553L202.117,25.972L200.999,26.169L201.108,26.487L199.875,27.521L199.811,27.951L199.036,28.992L198.981,28.302L198.142,28.145L198.088,27.667L198.043,27.502L198.518,27.051L198.535,27.05L199.116,26.289L199.788,25.853ZM197.461,21.482L198.45,21.043L197.395,22.319L195.986,23.088L196.369,23.189L195.296,23.705L194.974,23.538L195.194,22.963L196.726,22.083Z" + }, + { + "fill": "rgb(108, 198, 190)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.117; geo: [object Object]; name: Michigan", + "shape": "M211.519,40.856L211.197,40.223L211.594,40.275ZM213.216,37.178L212.923,37.13L213.062,35.93L213.366,35.929L213.536,36.849ZM216.931,35.294L218.188,36.028L218.9,35.89L219.517,36.071L220.034,36.812L221.007,36.834L221.352,37.135L223.657,37.935L223.681,38.368L224.172,39.35L223.541,39.5L223.725,40.24L224.312,40.646L224.679,41.584L224.622,42.958L224.725,44.111L224.314,44.672L223.83,44.81L223.773,45.437L223.787,46.204L223.38,46.677L222.588,46.743L222.35,47.335L222.255,48.365L222.593,48.96L223.623,49.349L224.389,48.26L224.619,48.28L224.869,47.01L225.376,46.5L226.259,46.205L226.897,45.65L227.859,46.056L228.657,47.379L228.775,47.966L229.342,49.611L229.77,51.375L230.301,52.364L230.13,55.138L229.238,54.738L228.746,55.158L228.965,55.581L228.571,55.944L228.655,56.423L228.623,56.83L227.768,57.493L227.412,58.948L227.442,59.435L226.934,60.184L226.319,61.639L224.948,61.881L224.367,61.978L222.006,62.366L221.812,62.397L219.818,62.703L219.679,62.285L217.837,62.499L217.377,62.551L215.552,62.758L214.932,62.825L213.566,62.963L212.75,63.048L211.278,63.201L209.805,63.342L210.665,62.438L211.296,60.701L211.746,59.871L212.065,58.643L212.139,56.273L211.985,55.123L211.6,53.949L210.815,52.61L210.44,51.672L209.962,50.734L210.343,49.328L210.187,48.472L209.796,47.86L210.305,46.9L210.773,45.723L210.807,44.553L210.63,43.333L211.391,42.731L211.322,41.904L211.986,41.384L212.525,41.464L213.248,39.785L213.577,40.602L213.323,41.875L213.429,42.535L213.671,42.552L213.713,41.683L214.066,41.005L213.993,42.665L214.316,41.867L214.516,40.443L214.309,39.515L214.331,39.103L215.02,38.419L215.552,38.307L216.315,37.837L215.75,37.805L215.288,36.897L216.011,35.82ZM218.437,35.566L217.639,34.995L218.678,35.188ZM222.215,33.725L221.901,33.523L220.883,33.619L221.635,33.039L221.379,32.622L222.042,32.663L222.587,33.208ZM219.306,31.289L219.061,31.345L218.517,30.341L219.08,30.024L218.914,30.838ZM207.458,31.86L207.231,31.244L207.619,31.285ZM198.043,27.502L198.088,27.667L198.127,28.164L198.628,28.226L198.642,28.825L199.036,28.992L198.981,29.342L199.074,30.512L199.956,29.31L200.872,29.367L201.549,29.332L202.824,29.876L203.105,30.421L204.519,31.873L205.377,31.764L205.799,31.461L206.805,32.014L206.895,31.738L207.634,32.114L208.367,31.084L209.771,30.135L211.012,29.892L212.67,29.802L213.846,29.138L215.115,28.873L214.844,29.407L215.009,30.83L216.112,30.954L216.841,30.61L217.063,31.058L218.164,30.33L218.332,30.472L218.369,30.5L218.407,30.535L219.098,31.909L218.971,32.508L219.909,32.597L219.746,32.908L220.618,33.53L219.637,33.654L219.169,33.691L219.086,33.701L217.069,33.487L216.777,34.287L216.79,34.967L215.422,33.957L213.508,33.57L212.943,33.785L212.51,34.593L211.525,34.688L211.272,35.001L209.979,34.884L209.476,35.236L209.315,36.146L208.9,36.383L208.193,37.091L207.754,37.098L208.519,35.781L207.344,35.843L207.15,36.802L206.598,37.206L206.327,36.136L206.216,36.747L205.63,37.352L205.279,38.129L205.07,38.988L203.913,41.058L204.021,41.306L203.899,41.277L203.251,40.685L203.608,39.717L202.468,39.693L202.837,38.659L202.598,38.242L202.789,37.524L202.459,37.22L201.438,36.916L201.438,36.916L201.047,36.674L201.092,35.999L199.219,35.504L198.403,35.59L197.204,35.283L196.925,35.142L196.438,34.9L192.484,34.089L192.489,34.172L192.484,34.089L191.57,33.898L191.07,32.823L190.116,32.456L191.877,31.615L192.467,30.969L192.89,30.589L194.563,30.325L195.358,29.849L195.891,29.203L196.728,28.893L196.923,28.397ZM201.439,25.553L202.117,25.972L200.999,26.169L201.108,26.487L199.875,27.521L199.811,27.951L199.036,28.992L198.981,28.302L198.142,28.145L198.088,27.667L198.043,27.502L198.518,27.051L198.535,27.05L199.116,26.289L199.788,25.853ZM197.461,21.482L198.45,21.043L197.395,22.319L195.986,23.088L196.369,23.189L195.296,23.705L194.974,23.538L195.194,22.963L196.726,22.083Z" + }, + { + "fill": "rgb(41, 150, 190)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.184; geo: [object Object]; name: Michigan", + "shape": "M211.519,40.856L211.197,40.223L211.594,40.275ZM213.216,37.178L212.923,37.13L213.062,35.93L213.366,35.929L213.536,36.849ZM216.931,35.294L218.188,36.028L218.9,35.89L219.517,36.071L220.034,36.812L221.007,36.834L221.352,37.135L223.657,37.935L223.681,38.368L224.172,39.35L223.541,39.5L223.725,40.24L224.312,40.646L224.679,41.584L224.622,42.958L224.725,44.111L224.314,44.672L223.83,44.81L223.773,45.437L223.787,46.204L223.38,46.677L222.588,46.743L222.35,47.335L222.255,48.365L222.593,48.96L223.623,49.349L224.389,48.26L224.619,48.28L224.869,47.01L225.376,46.5L226.259,46.205L226.897,45.65L227.859,46.056L228.657,47.379L228.775,47.966L229.342,49.611L229.77,51.375L230.301,52.364L230.13,55.138L229.238,54.738L228.746,55.158L228.965,55.581L228.571,55.944L228.655,56.423L228.623,56.83L227.768,57.493L227.412,58.948L227.442,59.435L226.934,60.184L226.319,61.639L224.948,61.881L224.367,61.978L222.006,62.366L221.812,62.397L219.818,62.703L219.679,62.285L217.837,62.499L217.377,62.551L215.552,62.758L214.932,62.825L213.566,62.963L212.75,63.048L211.278,63.201L209.805,63.342L210.665,62.438L211.296,60.701L211.746,59.871L212.065,58.643L212.139,56.273L211.985,55.123L211.6,53.949L210.815,52.61L210.44,51.672L209.962,50.734L210.343,49.328L210.187,48.472L209.796,47.86L210.305,46.9L210.773,45.723L210.807,44.553L210.63,43.333L211.391,42.731L211.322,41.904L211.986,41.384L212.525,41.464L213.248,39.785L213.577,40.602L213.323,41.875L213.429,42.535L213.671,42.552L213.713,41.683L214.066,41.005L213.993,42.665L214.316,41.867L214.516,40.443L214.309,39.515L214.331,39.103L215.02,38.419L215.552,38.307L216.315,37.837L215.75,37.805L215.288,36.897L216.011,35.82ZM218.437,35.566L217.639,34.995L218.678,35.188ZM222.215,33.725L221.901,33.523L220.883,33.619L221.635,33.039L221.379,32.622L222.042,32.663L222.587,33.208ZM219.306,31.289L219.061,31.345L218.517,30.341L219.08,30.024L218.914,30.838ZM207.458,31.86L207.231,31.244L207.619,31.285ZM198.043,27.502L198.088,27.667L198.127,28.164L198.628,28.226L198.642,28.825L199.036,28.992L198.981,29.342L199.074,30.512L199.956,29.31L200.872,29.367L201.549,29.332L202.824,29.876L203.105,30.421L204.519,31.873L205.377,31.764L205.799,31.461L206.805,32.014L206.895,31.738L207.634,32.114L208.367,31.084L209.771,30.135L211.012,29.892L212.67,29.802L213.846,29.138L215.115,28.873L214.844,29.407L215.009,30.83L216.112,30.954L216.841,30.61L217.063,31.058L218.164,30.33L218.332,30.472L218.369,30.5L218.407,30.535L219.098,31.909L218.971,32.508L219.909,32.597L219.746,32.908L220.618,33.53L219.637,33.654L219.169,33.691L219.086,33.701L217.069,33.487L216.777,34.287L216.79,34.967L215.422,33.957L213.508,33.57L212.943,33.785L212.51,34.593L211.525,34.688L211.272,35.001L209.979,34.884L209.476,35.236L209.315,36.146L208.9,36.383L208.193,37.091L207.754,37.098L208.519,35.781L207.344,35.843L207.15,36.802L206.598,37.206L206.327,36.136L206.216,36.747L205.63,37.352L205.279,38.129L205.07,38.988L203.913,41.058L204.021,41.306L203.899,41.277L203.251,40.685L203.608,39.717L202.468,39.693L202.837,38.659L202.598,38.242L202.789,37.524L202.459,37.22L201.438,36.916L201.438,36.916L201.047,36.674L201.092,35.999L199.219,35.504L198.403,35.59L197.204,35.283L196.925,35.142L196.438,34.9L192.484,34.089L192.489,34.172L192.484,34.089L191.57,33.898L191.07,32.823L190.116,32.456L191.877,31.615L192.467,30.969L192.89,30.589L194.563,30.325L195.358,29.849L195.891,29.203L196.728,28.893L196.923,28.397ZM201.439,25.553L202.117,25.972L200.999,26.169L201.108,26.487L199.875,27.521L199.811,27.951L199.036,28.992L198.981,28.302L198.142,28.145L198.088,27.667L198.043,27.502L198.518,27.051L198.535,27.05L199.116,26.289L199.788,25.853ZM197.461,21.482L198.45,21.043L197.395,22.319L195.986,23.088L196.369,23.189L195.296,23.705L194.974,23.538L195.194,22.963L196.726,22.083Z" + }, + { + "fill": "rgb(114, 201, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.113; geo: [object Object]; name: Michigan", + "shape": "M211.519,40.856L211.197,40.223L211.594,40.275ZM213.216,37.178L212.923,37.13L213.062,35.93L213.366,35.929L213.536,36.849ZM216.931,35.294L218.188,36.028L218.9,35.89L219.517,36.071L220.034,36.812L221.007,36.834L221.352,37.135L223.657,37.935L223.681,38.368L224.172,39.35L223.541,39.5L223.725,40.24L224.312,40.646L224.679,41.584L224.622,42.958L224.725,44.111L224.314,44.672L223.83,44.81L223.773,45.437L223.787,46.204L223.38,46.677L222.588,46.743L222.35,47.335L222.255,48.365L222.593,48.96L223.623,49.349L224.389,48.26L224.619,48.28L224.869,47.01L225.376,46.5L226.259,46.205L226.897,45.65L227.859,46.056L228.657,47.379L228.775,47.966L229.342,49.611L229.77,51.375L230.301,52.364L230.13,55.138L229.238,54.738L228.746,55.158L228.965,55.581L228.571,55.944L228.655,56.423L228.623,56.83L227.768,57.493L227.412,58.948L227.442,59.435L226.934,60.184L226.319,61.639L224.948,61.881L224.367,61.978L222.006,62.366L221.812,62.397L219.818,62.703L219.679,62.285L217.837,62.499L217.377,62.551L215.552,62.758L214.932,62.825L213.566,62.963L212.75,63.048L211.278,63.201L209.805,63.342L210.665,62.438L211.296,60.701L211.746,59.871L212.065,58.643L212.139,56.273L211.985,55.123L211.6,53.949L210.815,52.61L210.44,51.672L209.962,50.734L210.343,49.328L210.187,48.472L209.796,47.86L210.305,46.9L210.773,45.723L210.807,44.553L210.63,43.333L211.391,42.731L211.322,41.904L211.986,41.384L212.525,41.464L213.248,39.785L213.577,40.602L213.323,41.875L213.429,42.535L213.671,42.552L213.713,41.683L214.066,41.005L213.993,42.665L214.316,41.867L214.516,40.443L214.309,39.515L214.331,39.103L215.02,38.419L215.552,38.307L216.315,37.837L215.75,37.805L215.288,36.897L216.011,35.82ZM218.437,35.566L217.639,34.995L218.678,35.188ZM222.215,33.725L221.901,33.523L220.883,33.619L221.635,33.039L221.379,32.622L222.042,32.663L222.587,33.208ZM219.306,31.289L219.061,31.345L218.517,30.341L219.08,30.024L218.914,30.838ZM207.458,31.86L207.231,31.244L207.619,31.285ZM198.043,27.502L198.088,27.667L198.127,28.164L198.628,28.226L198.642,28.825L199.036,28.992L198.981,29.342L199.074,30.512L199.956,29.31L200.872,29.367L201.549,29.332L202.824,29.876L203.105,30.421L204.519,31.873L205.377,31.764L205.799,31.461L206.805,32.014L206.895,31.738L207.634,32.114L208.367,31.084L209.771,30.135L211.012,29.892L212.67,29.802L213.846,29.138L215.115,28.873L214.844,29.407L215.009,30.83L216.112,30.954L216.841,30.61L217.063,31.058L218.164,30.33L218.332,30.472L218.369,30.5L218.407,30.535L219.098,31.909L218.971,32.508L219.909,32.597L219.746,32.908L220.618,33.53L219.637,33.654L219.169,33.691L219.086,33.701L217.069,33.487L216.777,34.287L216.79,34.967L215.422,33.957L213.508,33.57L212.943,33.785L212.51,34.593L211.525,34.688L211.272,35.001L209.979,34.884L209.476,35.236L209.315,36.146L208.9,36.383L208.193,37.091L207.754,37.098L208.519,35.781L207.344,35.843L207.15,36.802L206.598,37.206L206.327,36.136L206.216,36.747L205.63,37.352L205.279,38.129L205.07,38.988L203.913,41.058L204.021,41.306L203.899,41.277L203.251,40.685L203.608,39.717L202.468,39.693L202.837,38.659L202.598,38.242L202.789,37.524L202.459,37.22L201.438,36.916L201.438,36.916L201.047,36.674L201.092,35.999L199.219,35.504L198.403,35.59L197.204,35.283L196.925,35.142L196.438,34.9L192.484,34.089L192.489,34.172L192.484,34.089L191.57,33.898L191.07,32.823L190.116,32.456L191.877,31.615L192.467,30.969L192.89,30.589L194.563,30.325L195.358,29.849L195.891,29.203L196.728,28.893L196.923,28.397ZM201.439,25.553L202.117,25.972L200.999,26.169L201.108,26.487L199.875,27.521L199.811,27.951L199.036,28.992L198.981,28.302L198.142,28.145L198.088,27.667L198.043,27.502L198.518,27.051L198.535,27.05L199.116,26.289L199.788,25.853ZM197.461,21.482L198.45,21.043L197.395,22.319L195.986,23.088L196.369,23.189L195.296,23.705L194.974,23.538L195.194,22.963L196.726,22.083Z" + }, + { + "fill": "rgb(216, 240, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.037; geo: [object Object]; name: Michigan", + "shape": "M211.519,40.856L211.197,40.223L211.594,40.275ZM213.216,37.178L212.923,37.13L213.062,35.93L213.366,35.929L213.536,36.849ZM216.931,35.294L218.188,36.028L218.9,35.89L219.517,36.071L220.034,36.812L221.007,36.834L221.352,37.135L223.657,37.935L223.681,38.368L224.172,39.35L223.541,39.5L223.725,40.24L224.312,40.646L224.679,41.584L224.622,42.958L224.725,44.111L224.314,44.672L223.83,44.81L223.773,45.437L223.787,46.204L223.38,46.677L222.588,46.743L222.35,47.335L222.255,48.365L222.593,48.96L223.623,49.349L224.389,48.26L224.619,48.28L224.869,47.01L225.376,46.5L226.259,46.205L226.897,45.65L227.859,46.056L228.657,47.379L228.775,47.966L229.342,49.611L229.77,51.375L230.301,52.364L230.13,55.138L229.238,54.738L228.746,55.158L228.965,55.581L228.571,55.944L228.655,56.423L228.623,56.83L227.768,57.493L227.412,58.948L227.442,59.435L226.934,60.184L226.319,61.639L224.948,61.881L224.367,61.978L222.006,62.366L221.812,62.397L219.818,62.703L219.679,62.285L217.837,62.499L217.377,62.551L215.552,62.758L214.932,62.825L213.566,62.963L212.75,63.048L211.278,63.201L209.805,63.342L210.665,62.438L211.296,60.701L211.746,59.871L212.065,58.643L212.139,56.273L211.985,55.123L211.6,53.949L210.815,52.61L210.44,51.672L209.962,50.734L210.343,49.328L210.187,48.472L209.796,47.86L210.305,46.9L210.773,45.723L210.807,44.553L210.63,43.333L211.391,42.731L211.322,41.904L211.986,41.384L212.525,41.464L213.248,39.785L213.577,40.602L213.323,41.875L213.429,42.535L213.671,42.552L213.713,41.683L214.066,41.005L213.993,42.665L214.316,41.867L214.516,40.443L214.309,39.515L214.331,39.103L215.02,38.419L215.552,38.307L216.315,37.837L215.75,37.805L215.288,36.897L216.011,35.82ZM218.437,35.566L217.639,34.995L218.678,35.188ZM222.215,33.725L221.901,33.523L220.883,33.619L221.635,33.039L221.379,32.622L222.042,32.663L222.587,33.208ZM219.306,31.289L219.061,31.345L218.517,30.341L219.08,30.024L218.914,30.838ZM207.458,31.86L207.231,31.244L207.619,31.285ZM198.043,27.502L198.088,27.667L198.127,28.164L198.628,28.226L198.642,28.825L199.036,28.992L198.981,29.342L199.074,30.512L199.956,29.31L200.872,29.367L201.549,29.332L202.824,29.876L203.105,30.421L204.519,31.873L205.377,31.764L205.799,31.461L206.805,32.014L206.895,31.738L207.634,32.114L208.367,31.084L209.771,30.135L211.012,29.892L212.67,29.802L213.846,29.138L215.115,28.873L214.844,29.407L215.009,30.83L216.112,30.954L216.841,30.61L217.063,31.058L218.164,30.33L218.332,30.472L218.369,30.5L218.407,30.535L219.098,31.909L218.971,32.508L219.909,32.597L219.746,32.908L220.618,33.53L219.637,33.654L219.169,33.691L219.086,33.701L217.069,33.487L216.777,34.287L216.79,34.967L215.422,33.957L213.508,33.57L212.943,33.785L212.51,34.593L211.525,34.688L211.272,35.001L209.979,34.884L209.476,35.236L209.315,36.146L208.9,36.383L208.193,37.091L207.754,37.098L208.519,35.781L207.344,35.843L207.15,36.802L206.598,37.206L206.327,36.136L206.216,36.747L205.63,37.352L205.279,38.129L205.07,38.988L203.913,41.058L204.021,41.306L203.899,41.277L203.251,40.685L203.608,39.717L202.468,39.693L202.837,38.659L202.598,38.242L202.789,37.524L202.459,37.22L201.438,36.916L201.438,36.916L201.047,36.674L201.092,35.999L199.219,35.504L198.403,35.59L197.204,35.283L196.925,35.142L196.438,34.9L192.484,34.089L192.489,34.172L192.484,34.089L191.57,33.898L191.07,32.823L190.116,32.456L191.877,31.615L192.467,30.969L192.89,30.589L194.563,30.325L195.358,29.849L195.891,29.203L196.728,28.893L196.923,28.397ZM201.439,25.553L202.117,25.972L200.999,26.169L201.108,26.487L199.875,27.521L199.811,27.951L199.036,28.992L198.981,28.302L198.142,28.145L198.088,27.667L198.043,27.502L198.518,27.051L198.535,27.05L199.116,26.289L199.788,25.853ZM197.461,21.482L198.45,21.043L197.395,22.319L195.986,23.088L196.369,23.189L195.296,23.705L194.974,23.538L195.194,22.963L196.726,22.083Z" + }, + { + "fill": "rgb(221, 242, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.031; geo: [object Object]; name: Michigan", + "shape": "M211.519,40.856L211.197,40.223L211.594,40.275ZM213.216,37.178L212.923,37.13L213.062,35.93L213.366,35.929L213.536,36.849ZM216.931,35.294L218.188,36.028L218.9,35.89L219.517,36.071L220.034,36.812L221.007,36.834L221.352,37.135L223.657,37.935L223.681,38.368L224.172,39.35L223.541,39.5L223.725,40.24L224.312,40.646L224.679,41.584L224.622,42.958L224.725,44.111L224.314,44.672L223.83,44.81L223.773,45.437L223.787,46.204L223.38,46.677L222.588,46.743L222.35,47.335L222.255,48.365L222.593,48.96L223.623,49.349L224.389,48.26L224.619,48.28L224.869,47.01L225.376,46.5L226.259,46.205L226.897,45.65L227.859,46.056L228.657,47.379L228.775,47.966L229.342,49.611L229.77,51.375L230.301,52.364L230.13,55.138L229.238,54.738L228.746,55.158L228.965,55.581L228.571,55.944L228.655,56.423L228.623,56.83L227.768,57.493L227.412,58.948L227.442,59.435L226.934,60.184L226.319,61.639L224.948,61.881L224.367,61.978L222.006,62.366L221.812,62.397L219.818,62.703L219.679,62.285L217.837,62.499L217.377,62.551L215.552,62.758L214.932,62.825L213.566,62.963L212.75,63.048L211.278,63.201L209.805,63.342L210.665,62.438L211.296,60.701L211.746,59.871L212.065,58.643L212.139,56.273L211.985,55.123L211.6,53.949L210.815,52.61L210.44,51.672L209.962,50.734L210.343,49.328L210.187,48.472L209.796,47.86L210.305,46.9L210.773,45.723L210.807,44.553L210.63,43.333L211.391,42.731L211.322,41.904L211.986,41.384L212.525,41.464L213.248,39.785L213.577,40.602L213.323,41.875L213.429,42.535L213.671,42.552L213.713,41.683L214.066,41.005L213.993,42.665L214.316,41.867L214.516,40.443L214.309,39.515L214.331,39.103L215.02,38.419L215.552,38.307L216.315,37.837L215.75,37.805L215.288,36.897L216.011,35.82ZM218.437,35.566L217.639,34.995L218.678,35.188ZM222.215,33.725L221.901,33.523L220.883,33.619L221.635,33.039L221.379,32.622L222.042,32.663L222.587,33.208ZM219.306,31.289L219.061,31.345L218.517,30.341L219.08,30.024L218.914,30.838ZM207.458,31.86L207.231,31.244L207.619,31.285ZM198.043,27.502L198.088,27.667L198.127,28.164L198.628,28.226L198.642,28.825L199.036,28.992L198.981,29.342L199.074,30.512L199.956,29.31L200.872,29.367L201.549,29.332L202.824,29.876L203.105,30.421L204.519,31.873L205.377,31.764L205.799,31.461L206.805,32.014L206.895,31.738L207.634,32.114L208.367,31.084L209.771,30.135L211.012,29.892L212.67,29.802L213.846,29.138L215.115,28.873L214.844,29.407L215.009,30.83L216.112,30.954L216.841,30.61L217.063,31.058L218.164,30.33L218.332,30.472L218.369,30.5L218.407,30.535L219.098,31.909L218.971,32.508L219.909,32.597L219.746,32.908L220.618,33.53L219.637,33.654L219.169,33.691L219.086,33.701L217.069,33.487L216.777,34.287L216.79,34.967L215.422,33.957L213.508,33.57L212.943,33.785L212.51,34.593L211.525,34.688L211.272,35.001L209.979,34.884L209.476,35.236L209.315,36.146L208.9,36.383L208.193,37.091L207.754,37.098L208.519,35.781L207.344,35.843L207.15,36.802L206.598,37.206L206.327,36.136L206.216,36.747L205.63,37.352L205.279,38.129L205.07,38.988L203.913,41.058L204.021,41.306L203.899,41.277L203.251,40.685L203.608,39.717L202.468,39.693L202.837,38.659L202.598,38.242L202.789,37.524L202.459,37.22L201.438,36.916L201.438,36.916L201.047,36.674L201.092,35.999L199.219,35.504L198.403,35.59L197.204,35.283L196.925,35.142L196.438,34.9L192.484,34.089L192.489,34.172L192.484,34.089L191.57,33.898L191.07,32.823L190.116,32.456L191.877,31.615L192.467,30.969L192.89,30.589L194.563,30.325L195.358,29.849L195.891,29.203L196.728,28.893L196.923,28.397ZM201.439,25.553L202.117,25.972L200.999,26.169L201.108,26.487L199.875,27.521L199.811,27.951L199.036,28.992L198.981,28.302L198.142,28.145L198.088,27.667L198.043,27.502L198.518,27.051L198.535,27.05L199.116,26.289L199.788,25.853ZM197.461,21.482L198.45,21.043L197.395,22.319L195.986,23.088L196.369,23.189L195.296,23.705L194.974,23.538L195.194,22.963L196.726,22.083Z" + }, + { + "fill": "rgb(194, 231, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.058; geo: [object Object]; name: Minnesota", + "shape": "M171.329,18.929L171.874,18.863L172.251,19.258L173.958,19.351L174.201,20.098L175.662,19.862L175.67,19.555L176.802,19.192L177.352,19.272L178.964,19.808L179.398,19.771L179.062,20.311L179.985,20.382L180.62,21.794L181.117,21.664L181.121,20.956L182.04,20.887L182.293,21.505L183.248,21.878L183.791,22.397L184.362,22.457L184.333,22.884L185.763,22.546L186.698,21.798L187.572,21.454L187.962,22.345L190.757,22.078L192.025,22.839L192.495,22.565L193.381,22.663L192.563,23.352L191.414,23.999L189.116,24.908L188.265,25.465L186.999,26.612L185.577,28.385L183.637,30.281L182.308,31.322L182.419,31.597L182.679,31.878L182.679,31.881L182.419,31.597L182.286,31.603L182.27,31.604L181.98,31.827L181.964,31.828L181.834,31.905L181.835,31.919L181.828,32.175L181.831,32.232L181.831,32.229L181.415,32.223L181.415,32.223L181.48,33.871L181.547,35.606L181.317,36.569L179.671,37.429L179.088,38.565L178.905,39.144L178.92,39.594L179.444,39.638L180.043,40.371L179.641,41.456L179.61,42.038L179.622,44.373L179.494,45.15L179.843,45.359L180.715,46.3L181.868,46.452L182.216,47.021L182.999,47.3L183.017,47.303L183.792,47.769L184.142,48.699L185.639,49.76L186.29,50.008L187.008,50.896L187.186,51.692L187.187,51.706L187.154,52.443L187.454,53.211L185.544,53.304L184.97,53.33L183.286,53.402L181.497,53.476L180.975,53.496L178.7,53.58L178.595,53.583L176.423,53.645L175.676,53.664L174.129,53.7L172.79,53.719L171.834,53.736L169.835,53.761L169.557,53.768L167.263,53.788L166.932,53.787L164.968,53.797L164.046,53.798L162.099,53.793L162.111,51.44L162.111,51.44L162.122,49.1L162.133,46.77L162.153,46.177L162.158,45.004L162.147,43.853L162.156,41.898L162.073,41.511L161.079,40.936L160.38,39.755L160.332,39.384L161.162,38.757L161.603,38.122L161.658,37.424L161.611,36.845L161.698,36.287L161.507,34.772L160.881,33.737L160.673,32.765L160.607,32.761L160.601,31.508L160.805,30.856L160.463,30.247L160.439,29.286L160.477,28.706L160.394,26.957L160.225,25.792L159.51,23.968L159.122,22.455L159.14,22.331L159.255,20.826L159.087,20.003L159.372,19.076L158.981,18.206L158.82,16.965L162.483,17L167.313,17L168.049,16.994L168.027,14.441L168.918,14.528L169.512,15.022L170.12,17.505L170.133,18.437L170.83,18.926Z" + }, + { + "fill": "rgb(208, 236, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.045; geo: [object Object]; name: Minnesota", + "shape": "M171.329,18.929L171.874,18.863L172.251,19.258L173.958,19.351L174.201,20.098L175.662,19.862L175.67,19.555L176.802,19.192L177.352,19.272L178.964,19.808L179.398,19.771L179.062,20.311L179.985,20.382L180.62,21.794L181.117,21.664L181.121,20.956L182.04,20.887L182.293,21.505L183.248,21.878L183.791,22.397L184.362,22.457L184.333,22.884L185.763,22.546L186.698,21.798L187.572,21.454L187.962,22.345L190.757,22.078L192.025,22.839L192.495,22.565L193.381,22.663L192.563,23.352L191.414,23.999L189.116,24.908L188.265,25.465L186.999,26.612L185.577,28.385L183.637,30.281L182.308,31.322L182.419,31.597L182.679,31.878L182.679,31.881L182.419,31.597L182.286,31.603L182.27,31.604L181.98,31.827L181.964,31.828L181.834,31.905L181.835,31.919L181.828,32.175L181.831,32.232L181.831,32.229L181.415,32.223L181.415,32.223L181.48,33.871L181.547,35.606L181.317,36.569L179.671,37.429L179.088,38.565L178.905,39.144L178.92,39.594L179.444,39.638L180.043,40.371L179.641,41.456L179.61,42.038L179.622,44.373L179.494,45.15L179.843,45.359L180.715,46.3L181.868,46.452L182.216,47.021L182.999,47.3L183.017,47.303L183.792,47.769L184.142,48.699L185.639,49.76L186.29,50.008L187.008,50.896L187.186,51.692L187.187,51.706L187.154,52.443L187.454,53.211L185.544,53.304L184.97,53.33L183.286,53.402L181.497,53.476L180.975,53.496L178.7,53.58L178.595,53.583L176.423,53.645L175.676,53.664L174.129,53.7L172.79,53.719L171.834,53.736L169.835,53.761L169.557,53.768L167.263,53.788L166.932,53.787L164.968,53.797L164.046,53.798L162.099,53.793L162.111,51.44L162.111,51.44L162.122,49.1L162.133,46.77L162.153,46.177L162.158,45.004L162.147,43.853L162.156,41.898L162.073,41.511L161.079,40.936L160.38,39.755L160.332,39.384L161.162,38.757L161.603,38.122L161.658,37.424L161.611,36.845L161.698,36.287L161.507,34.772L160.881,33.737L160.673,32.765L160.607,32.761L160.601,31.508L160.805,30.856L160.463,30.247L160.439,29.286L160.477,28.706L160.394,26.957L160.225,25.792L159.51,23.968L159.122,22.455L159.14,22.331L159.255,20.826L159.087,20.003L159.372,19.076L158.981,18.206L158.82,16.965L162.483,17L167.313,17L168.049,16.994L168.027,14.441L168.918,14.528L169.512,15.022L170.12,17.505L170.133,18.437L170.83,18.926Z" + }, + { + "fill": "rgb(145, 212, 185)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.093; geo: [object Object]; name: Minnesota", + "shape": "M171.329,18.929L171.874,18.863L172.251,19.258L173.958,19.351L174.201,20.098L175.662,19.862L175.67,19.555L176.802,19.192L177.352,19.272L178.964,19.808L179.398,19.771L179.062,20.311L179.985,20.382L180.62,21.794L181.117,21.664L181.121,20.956L182.04,20.887L182.293,21.505L183.248,21.878L183.791,22.397L184.362,22.457L184.333,22.884L185.763,22.546L186.698,21.798L187.572,21.454L187.962,22.345L190.757,22.078L192.025,22.839L192.495,22.565L193.381,22.663L192.563,23.352L191.414,23.999L189.116,24.908L188.265,25.465L186.999,26.612L185.577,28.385L183.637,30.281L182.308,31.322L182.419,31.597L182.679,31.878L182.679,31.881L182.419,31.597L182.286,31.603L182.27,31.604L181.98,31.827L181.964,31.828L181.834,31.905L181.835,31.919L181.828,32.175L181.831,32.232L181.831,32.229L181.415,32.223L181.415,32.223L181.48,33.871L181.547,35.606L181.317,36.569L179.671,37.429L179.088,38.565L178.905,39.144L178.92,39.594L179.444,39.638L180.043,40.371L179.641,41.456L179.61,42.038L179.622,44.373L179.494,45.15L179.843,45.359L180.715,46.3L181.868,46.452L182.216,47.021L182.999,47.3L183.017,47.303L183.792,47.769L184.142,48.699L185.639,49.76L186.29,50.008L187.008,50.896L187.186,51.692L187.187,51.706L187.154,52.443L187.454,53.211L185.544,53.304L184.97,53.33L183.286,53.402L181.497,53.476L180.975,53.496L178.7,53.58L178.595,53.583L176.423,53.645L175.676,53.664L174.129,53.7L172.79,53.719L171.834,53.736L169.835,53.761L169.557,53.768L167.263,53.788L166.932,53.787L164.968,53.797L164.046,53.798L162.099,53.793L162.111,51.44L162.111,51.44L162.122,49.1L162.133,46.77L162.153,46.177L162.158,45.004L162.147,43.853L162.156,41.898L162.073,41.511L161.079,40.936L160.38,39.755L160.332,39.384L161.162,38.757L161.603,38.122L161.658,37.424L161.611,36.845L161.698,36.287L161.507,34.772L160.881,33.737L160.673,32.765L160.607,32.761L160.601,31.508L160.805,30.856L160.463,30.247L160.439,29.286L160.477,28.706L160.394,26.957L160.225,25.792L159.51,23.968L159.122,22.455L159.14,22.331L159.255,20.826L159.087,20.003L159.372,19.076L158.981,18.206L158.82,16.965L162.483,17L167.313,17L168.049,16.994L168.027,14.441L168.918,14.528L169.512,15.022L170.12,17.505L170.133,18.437L170.83,18.926Z" + }, + { + "fill": "rgb(146, 212, 185)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.092; geo: [object Object]; name: Minnesota", + "shape": "M171.329,18.929L171.874,18.863L172.251,19.258L173.958,19.351L174.201,20.098L175.662,19.862L175.67,19.555L176.802,19.192L177.352,19.272L178.964,19.808L179.398,19.771L179.062,20.311L179.985,20.382L180.62,21.794L181.117,21.664L181.121,20.956L182.04,20.887L182.293,21.505L183.248,21.878L183.791,22.397L184.362,22.457L184.333,22.884L185.763,22.546L186.698,21.798L187.572,21.454L187.962,22.345L190.757,22.078L192.025,22.839L192.495,22.565L193.381,22.663L192.563,23.352L191.414,23.999L189.116,24.908L188.265,25.465L186.999,26.612L185.577,28.385L183.637,30.281L182.308,31.322L182.419,31.597L182.679,31.878L182.679,31.881L182.419,31.597L182.286,31.603L182.27,31.604L181.98,31.827L181.964,31.828L181.834,31.905L181.835,31.919L181.828,32.175L181.831,32.232L181.831,32.229L181.415,32.223L181.415,32.223L181.48,33.871L181.547,35.606L181.317,36.569L179.671,37.429L179.088,38.565L178.905,39.144L178.92,39.594L179.444,39.638L180.043,40.371L179.641,41.456L179.61,42.038L179.622,44.373L179.494,45.15L179.843,45.359L180.715,46.3L181.868,46.452L182.216,47.021L182.999,47.3L183.017,47.303L183.792,47.769L184.142,48.699L185.639,49.76L186.29,50.008L187.008,50.896L187.186,51.692L187.187,51.706L187.154,52.443L187.454,53.211L185.544,53.304L184.97,53.33L183.286,53.402L181.497,53.476L180.975,53.496L178.7,53.58L178.595,53.583L176.423,53.645L175.676,53.664L174.129,53.7L172.79,53.719L171.834,53.736L169.835,53.761L169.557,53.768L167.263,53.788L166.932,53.787L164.968,53.797L164.046,53.798L162.099,53.793L162.111,51.44L162.111,51.44L162.122,49.1L162.133,46.77L162.153,46.177L162.158,45.004L162.147,43.853L162.156,41.898L162.073,41.511L161.079,40.936L160.38,39.755L160.332,39.384L161.162,38.757L161.603,38.122L161.658,37.424L161.611,36.845L161.698,36.287L161.507,34.772L160.881,33.737L160.673,32.765L160.607,32.761L160.601,31.508L160.805,30.856L160.463,30.247L160.439,29.286L160.477,28.706L160.394,26.957L160.225,25.792L159.51,23.968L159.122,22.455L159.14,22.331L159.255,20.826L159.087,20.003L159.372,19.076L158.981,18.206L158.82,16.965L162.483,17L167.313,17L168.049,16.994L168.027,14.441L168.918,14.528L169.512,15.022L170.12,17.505L170.133,18.437L170.83,18.926Z" + }, + { + "fill": "rgb(87, 189, 192)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.133; geo: [object Object]; name: Minnesota", + "shape": "M171.329,18.929L171.874,18.863L172.251,19.258L173.958,19.351L174.201,20.098L175.662,19.862L175.67,19.555L176.802,19.192L177.352,19.272L178.964,19.808L179.398,19.771L179.062,20.311L179.985,20.382L180.62,21.794L181.117,21.664L181.121,20.956L182.04,20.887L182.293,21.505L183.248,21.878L183.791,22.397L184.362,22.457L184.333,22.884L185.763,22.546L186.698,21.798L187.572,21.454L187.962,22.345L190.757,22.078L192.025,22.839L192.495,22.565L193.381,22.663L192.563,23.352L191.414,23.999L189.116,24.908L188.265,25.465L186.999,26.612L185.577,28.385L183.637,30.281L182.308,31.322L182.419,31.597L182.679,31.878L182.679,31.881L182.419,31.597L182.286,31.603L182.27,31.604L181.98,31.827L181.964,31.828L181.834,31.905L181.835,31.919L181.828,32.175L181.831,32.232L181.831,32.229L181.415,32.223L181.415,32.223L181.48,33.871L181.547,35.606L181.317,36.569L179.671,37.429L179.088,38.565L178.905,39.144L178.92,39.594L179.444,39.638L180.043,40.371L179.641,41.456L179.61,42.038L179.622,44.373L179.494,45.15L179.843,45.359L180.715,46.3L181.868,46.452L182.216,47.021L182.999,47.3L183.017,47.303L183.792,47.769L184.142,48.699L185.639,49.76L186.29,50.008L187.008,50.896L187.186,51.692L187.187,51.706L187.154,52.443L187.454,53.211L185.544,53.304L184.97,53.33L183.286,53.402L181.497,53.476L180.975,53.496L178.7,53.58L178.595,53.583L176.423,53.645L175.676,53.664L174.129,53.7L172.79,53.719L171.834,53.736L169.835,53.761L169.557,53.768L167.263,53.788L166.932,53.787L164.968,53.797L164.046,53.798L162.099,53.793L162.111,51.44L162.111,51.44L162.122,49.1L162.133,46.77L162.153,46.177L162.158,45.004L162.147,43.853L162.156,41.898L162.073,41.511L161.079,40.936L160.38,39.755L160.332,39.384L161.162,38.757L161.603,38.122L161.658,37.424L161.611,36.845L161.698,36.287L161.507,34.772L160.881,33.737L160.673,32.765L160.607,32.761L160.601,31.508L160.805,30.856L160.463,30.247L160.439,29.286L160.477,28.706L160.394,26.957L160.225,25.792L159.51,23.968L159.122,22.455L159.14,22.331L159.255,20.826L159.087,20.003L159.372,19.076L158.981,18.206L158.82,16.965L162.483,17L167.313,17L168.049,16.994L168.027,14.441L168.918,14.528L169.512,15.022L170.12,17.505L170.133,18.437L170.83,18.926Z" + }, + { + "fill": "rgb(79, 185, 193)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.14; geo: [object Object]; name: Minnesota", + "shape": "M171.329,18.929L171.874,18.863L172.251,19.258L173.958,19.351L174.201,20.098L175.662,19.862L175.67,19.555L176.802,19.192L177.352,19.272L178.964,19.808L179.398,19.771L179.062,20.311L179.985,20.382L180.62,21.794L181.117,21.664L181.121,20.956L182.04,20.887L182.293,21.505L183.248,21.878L183.791,22.397L184.362,22.457L184.333,22.884L185.763,22.546L186.698,21.798L187.572,21.454L187.962,22.345L190.757,22.078L192.025,22.839L192.495,22.565L193.381,22.663L192.563,23.352L191.414,23.999L189.116,24.908L188.265,25.465L186.999,26.612L185.577,28.385L183.637,30.281L182.308,31.322L182.419,31.597L182.679,31.878L182.679,31.881L182.419,31.597L182.286,31.603L182.27,31.604L181.98,31.827L181.964,31.828L181.834,31.905L181.835,31.919L181.828,32.175L181.831,32.232L181.831,32.229L181.415,32.223L181.415,32.223L181.48,33.871L181.547,35.606L181.317,36.569L179.671,37.429L179.088,38.565L178.905,39.144L178.92,39.594L179.444,39.638L180.043,40.371L179.641,41.456L179.61,42.038L179.622,44.373L179.494,45.15L179.843,45.359L180.715,46.3L181.868,46.452L182.216,47.021L182.999,47.3L183.017,47.303L183.792,47.769L184.142,48.699L185.639,49.76L186.29,50.008L187.008,50.896L187.186,51.692L187.187,51.706L187.154,52.443L187.454,53.211L185.544,53.304L184.97,53.33L183.286,53.402L181.497,53.476L180.975,53.496L178.7,53.58L178.595,53.583L176.423,53.645L175.676,53.664L174.129,53.7L172.79,53.719L171.834,53.736L169.835,53.761L169.557,53.768L167.263,53.788L166.932,53.787L164.968,53.797L164.046,53.798L162.099,53.793L162.111,51.44L162.111,51.44L162.122,49.1L162.133,46.77L162.153,46.177L162.158,45.004L162.147,43.853L162.156,41.898L162.073,41.511L161.079,40.936L160.38,39.755L160.332,39.384L161.162,38.757L161.603,38.122L161.658,37.424L161.611,36.845L161.698,36.287L161.507,34.772L160.881,33.737L160.673,32.765L160.607,32.761L160.601,31.508L160.805,30.856L160.463,30.247L160.439,29.286L160.477,28.706L160.394,26.957L160.225,25.792L159.51,23.968L159.122,22.455L159.14,22.331L159.255,20.826L159.087,20.003L159.372,19.076L158.981,18.206L158.82,16.965L162.483,17L167.313,17L168.049,16.994L168.027,14.441L168.918,14.528L169.512,15.022L170.12,17.505L170.133,18.437L170.83,18.926Z" + }, + { + "fill": "rgb(38, 142, 187)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.192; geo: [object Object]; name: Minnesota", + "shape": "M171.329,18.929L171.874,18.863L172.251,19.258L173.958,19.351L174.201,20.098L175.662,19.862L175.67,19.555L176.802,19.192L177.352,19.272L178.964,19.808L179.398,19.771L179.062,20.311L179.985,20.382L180.62,21.794L181.117,21.664L181.121,20.956L182.04,20.887L182.293,21.505L183.248,21.878L183.791,22.397L184.362,22.457L184.333,22.884L185.763,22.546L186.698,21.798L187.572,21.454L187.962,22.345L190.757,22.078L192.025,22.839L192.495,22.565L193.381,22.663L192.563,23.352L191.414,23.999L189.116,24.908L188.265,25.465L186.999,26.612L185.577,28.385L183.637,30.281L182.308,31.322L182.419,31.597L182.679,31.878L182.679,31.881L182.419,31.597L182.286,31.603L182.27,31.604L181.98,31.827L181.964,31.828L181.834,31.905L181.835,31.919L181.828,32.175L181.831,32.232L181.831,32.229L181.415,32.223L181.415,32.223L181.48,33.871L181.547,35.606L181.317,36.569L179.671,37.429L179.088,38.565L178.905,39.144L178.92,39.594L179.444,39.638L180.043,40.371L179.641,41.456L179.61,42.038L179.622,44.373L179.494,45.15L179.843,45.359L180.715,46.3L181.868,46.452L182.216,47.021L182.999,47.3L183.017,47.303L183.792,47.769L184.142,48.699L185.639,49.76L186.29,50.008L187.008,50.896L187.186,51.692L187.187,51.706L187.154,52.443L187.454,53.211L185.544,53.304L184.97,53.33L183.286,53.402L181.497,53.476L180.975,53.496L178.7,53.58L178.595,53.583L176.423,53.645L175.676,53.664L174.129,53.7L172.79,53.719L171.834,53.736L169.835,53.761L169.557,53.768L167.263,53.788L166.932,53.787L164.968,53.797L164.046,53.798L162.099,53.793L162.111,51.44L162.111,51.44L162.122,49.1L162.133,46.77L162.153,46.177L162.158,45.004L162.147,43.853L162.156,41.898L162.073,41.511L161.079,40.936L160.38,39.755L160.332,39.384L161.162,38.757L161.603,38.122L161.658,37.424L161.611,36.845L161.698,36.287L161.507,34.772L160.881,33.737L160.673,32.765L160.607,32.761L160.601,31.508L160.805,30.856L160.463,30.247L160.439,29.286L160.477,28.706L160.394,26.957L160.225,25.792L159.51,23.968L159.122,22.455L159.14,22.331L159.255,20.826L159.087,20.003L159.372,19.076L158.981,18.206L158.82,16.965L162.483,17L167.313,17L168.049,16.994L168.027,14.441L168.918,14.528L169.512,15.022L170.12,17.505L170.133,18.437L170.83,18.926Z" + }, + { + "fill": "rgb(68, 179, 194)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.149; geo: [object Object]; name: Minnesota", + "shape": "M171.329,18.929L171.874,18.863L172.251,19.258L173.958,19.351L174.201,20.098L175.662,19.862L175.67,19.555L176.802,19.192L177.352,19.272L178.964,19.808L179.398,19.771L179.062,20.311L179.985,20.382L180.62,21.794L181.117,21.664L181.121,20.956L182.04,20.887L182.293,21.505L183.248,21.878L183.791,22.397L184.362,22.457L184.333,22.884L185.763,22.546L186.698,21.798L187.572,21.454L187.962,22.345L190.757,22.078L192.025,22.839L192.495,22.565L193.381,22.663L192.563,23.352L191.414,23.999L189.116,24.908L188.265,25.465L186.999,26.612L185.577,28.385L183.637,30.281L182.308,31.322L182.419,31.597L182.679,31.878L182.679,31.881L182.419,31.597L182.286,31.603L182.27,31.604L181.98,31.827L181.964,31.828L181.834,31.905L181.835,31.919L181.828,32.175L181.831,32.232L181.831,32.229L181.415,32.223L181.415,32.223L181.48,33.871L181.547,35.606L181.317,36.569L179.671,37.429L179.088,38.565L178.905,39.144L178.92,39.594L179.444,39.638L180.043,40.371L179.641,41.456L179.61,42.038L179.622,44.373L179.494,45.15L179.843,45.359L180.715,46.3L181.868,46.452L182.216,47.021L182.999,47.3L183.017,47.303L183.792,47.769L184.142,48.699L185.639,49.76L186.29,50.008L187.008,50.896L187.186,51.692L187.187,51.706L187.154,52.443L187.454,53.211L185.544,53.304L184.97,53.33L183.286,53.402L181.497,53.476L180.975,53.496L178.7,53.58L178.595,53.583L176.423,53.645L175.676,53.664L174.129,53.7L172.79,53.719L171.834,53.736L169.835,53.761L169.557,53.768L167.263,53.788L166.932,53.787L164.968,53.797L164.046,53.798L162.099,53.793L162.111,51.44L162.111,51.44L162.122,49.1L162.133,46.77L162.153,46.177L162.158,45.004L162.147,43.853L162.156,41.898L162.073,41.511L161.079,40.936L160.38,39.755L160.332,39.384L161.162,38.757L161.603,38.122L161.658,37.424L161.611,36.845L161.698,36.287L161.507,34.772L160.881,33.737L160.673,32.765L160.607,32.761L160.601,31.508L160.805,30.856L160.463,30.247L160.439,29.286L160.477,28.706L160.394,26.957L160.225,25.792L159.51,23.968L159.122,22.455L159.14,22.331L159.255,20.826L159.087,20.003L159.372,19.076L158.981,18.206L158.82,16.965L162.483,17L167.313,17L168.049,16.994L168.027,14.441L168.918,14.528L169.512,15.022L170.12,17.505L170.133,18.437L170.83,18.926Z" + }, + { + "fill": "rgb(200, 233, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.052; geo: [object Object]; name: Minnesota", + "shape": "M171.329,18.929L171.874,18.863L172.251,19.258L173.958,19.351L174.201,20.098L175.662,19.862L175.67,19.555L176.802,19.192L177.352,19.272L178.964,19.808L179.398,19.771L179.062,20.311L179.985,20.382L180.62,21.794L181.117,21.664L181.121,20.956L182.04,20.887L182.293,21.505L183.248,21.878L183.791,22.397L184.362,22.457L184.333,22.884L185.763,22.546L186.698,21.798L187.572,21.454L187.962,22.345L190.757,22.078L192.025,22.839L192.495,22.565L193.381,22.663L192.563,23.352L191.414,23.999L189.116,24.908L188.265,25.465L186.999,26.612L185.577,28.385L183.637,30.281L182.308,31.322L182.419,31.597L182.679,31.878L182.679,31.881L182.419,31.597L182.286,31.603L182.27,31.604L181.98,31.827L181.964,31.828L181.834,31.905L181.835,31.919L181.828,32.175L181.831,32.232L181.831,32.229L181.415,32.223L181.415,32.223L181.48,33.871L181.547,35.606L181.317,36.569L179.671,37.429L179.088,38.565L178.905,39.144L178.92,39.594L179.444,39.638L180.043,40.371L179.641,41.456L179.61,42.038L179.622,44.373L179.494,45.15L179.843,45.359L180.715,46.3L181.868,46.452L182.216,47.021L182.999,47.3L183.017,47.303L183.792,47.769L184.142,48.699L185.639,49.76L186.29,50.008L187.008,50.896L187.186,51.692L187.187,51.706L187.154,52.443L187.454,53.211L185.544,53.304L184.97,53.33L183.286,53.402L181.497,53.476L180.975,53.496L178.7,53.58L178.595,53.583L176.423,53.645L175.676,53.664L174.129,53.7L172.79,53.719L171.834,53.736L169.835,53.761L169.557,53.768L167.263,53.788L166.932,53.787L164.968,53.797L164.046,53.798L162.099,53.793L162.111,51.44L162.111,51.44L162.122,49.1L162.133,46.77L162.153,46.177L162.158,45.004L162.147,43.853L162.156,41.898L162.073,41.511L161.079,40.936L160.38,39.755L160.332,39.384L161.162,38.757L161.603,38.122L161.658,37.424L161.611,36.845L161.698,36.287L161.507,34.772L160.881,33.737L160.673,32.765L160.607,32.761L160.601,31.508L160.805,30.856L160.463,30.247L160.439,29.286L160.477,28.706L160.394,26.957L160.225,25.792L159.51,23.968L159.122,22.455L159.14,22.331L159.255,20.826L159.087,20.003L159.372,19.076L158.981,18.206L158.82,16.965L162.483,17L167.313,17L168.049,16.994L168.027,14.441L168.918,14.528L169.512,15.022L170.12,17.505L170.133,18.437L170.83,18.926Z" + }, + { + "fill": "rgb(206, 236, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.047; geo: [object Object]; name: Minnesota", + "shape": "M171.329,18.929L171.874,18.863L172.251,19.258L173.958,19.351L174.201,20.098L175.662,19.862L175.67,19.555L176.802,19.192L177.352,19.272L178.964,19.808L179.398,19.771L179.062,20.311L179.985,20.382L180.62,21.794L181.117,21.664L181.121,20.956L182.04,20.887L182.293,21.505L183.248,21.878L183.791,22.397L184.362,22.457L184.333,22.884L185.763,22.546L186.698,21.798L187.572,21.454L187.962,22.345L190.757,22.078L192.025,22.839L192.495,22.565L193.381,22.663L192.563,23.352L191.414,23.999L189.116,24.908L188.265,25.465L186.999,26.612L185.577,28.385L183.637,30.281L182.308,31.322L182.419,31.597L182.679,31.878L182.679,31.881L182.419,31.597L182.286,31.603L182.27,31.604L181.98,31.827L181.964,31.828L181.834,31.905L181.835,31.919L181.828,32.175L181.831,32.232L181.831,32.229L181.415,32.223L181.415,32.223L181.48,33.871L181.547,35.606L181.317,36.569L179.671,37.429L179.088,38.565L178.905,39.144L178.92,39.594L179.444,39.638L180.043,40.371L179.641,41.456L179.61,42.038L179.622,44.373L179.494,45.15L179.843,45.359L180.715,46.3L181.868,46.452L182.216,47.021L182.999,47.3L183.017,47.303L183.792,47.769L184.142,48.699L185.639,49.76L186.29,50.008L187.008,50.896L187.186,51.692L187.187,51.706L187.154,52.443L187.454,53.211L185.544,53.304L184.97,53.33L183.286,53.402L181.497,53.476L180.975,53.496L178.7,53.58L178.595,53.583L176.423,53.645L175.676,53.664L174.129,53.7L172.79,53.719L171.834,53.736L169.835,53.761L169.557,53.768L167.263,53.788L166.932,53.787L164.968,53.797L164.046,53.798L162.099,53.793L162.111,51.44L162.111,51.44L162.122,49.1L162.133,46.77L162.153,46.177L162.158,45.004L162.147,43.853L162.156,41.898L162.073,41.511L161.079,40.936L160.38,39.755L160.332,39.384L161.162,38.757L161.603,38.122L161.658,37.424L161.611,36.845L161.698,36.287L161.507,34.772L160.881,33.737L160.673,32.765L160.607,32.761L160.601,31.508L160.805,30.856L160.463,30.247L160.439,29.286L160.477,28.706L160.394,26.957L160.225,25.792L159.51,23.968L159.122,22.455L159.14,22.331L159.255,20.826L159.087,20.003L159.372,19.076L158.981,18.206L158.82,16.965L162.483,17L167.313,17L168.049,16.994L168.027,14.441L168.918,14.528L169.512,15.022L170.12,17.505L170.133,18.437L170.83,18.926Z" + }, + { + "fill": "rgb(107, 198, 190)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.118; geo: [object Object]; name: Mississippi", + "shape": "M205.863,109.669L206.74,109.598L207.363,110.247L207.283,112.361L207.29,113.166L207.272,114.133L207.225,115.729L207.22,115.919L207.176,118.046L207.133,119.484L207.108,121.15L207.07,123.161L207.064,123.584L207.033,125.961L206.997,127.789L206.98,128.342L206.916,130.6L207.081,131.912L207.282,133.671L207.577,135.813L207.68,136.588L207.882,138.348L208.172,140.673L207.734,141.171L207.211,140.872L206.146,141.089L205.342,140.628L205.505,140.862L204.334,141.057L203.064,141.623L202.742,141.175L202.742,141.182L202.837,141.643L201.776,142.552L201.022,141.872L200.676,140.737L200.196,140.385L199.718,139.403L200.229,137.11L199.613,137.151L197.17,137.315L196.677,137.344L195.527,137.415L195.404,137.422L193.945,137.504L192.61,137.582L191.932,137.617L189.301,137.737L189.691,137.266L189.305,136.948L189.508,136.435L189.121,136.055L189.891,135.853L189.502,134.995L189.857,134.692L189.811,134.14L190.412,133.876L189.783,133.565L190.455,133.501L190.54,132.725L190.881,132.603L190.705,131.923L191.227,131.778L191.542,131.142L192.152,130.737L192.361,130.07L192.359,130.027L192.256,130.01L191.625,129.988L191.821,129.449L192.575,129.497L192.62,128.82L192.969,128.518L192.432,128.322L192.632,127.901L191.766,127.591L192.002,127.063L192.138,126.966L191.511,126.559L191.985,125.957L191.497,125.877L191.486,125.268L191.921,124.726L191.735,124.249L191.281,124.814L191.306,124.112L191.304,124.065L191.526,123.697L191.139,123.198L191.718,123.143L191.328,121.794L190.778,121.197L190.867,120.589L190.757,120.373L191.283,120.128L190.782,119.692L191.162,118.946L192.03,118.792L191.529,118.335L191.805,117.917L191.393,117.626L192.419,117.15L192.089,116.531L192.089,116.527L192.146,115.743L192.629,115.902L193.204,115.201L193.102,114.785L194.069,114.425L194.046,113.677L193.942,112.893L194.569,112.508L194.471,111.17L194.807,111.54L195.363,111.325L195.674,110.953L195.289,110.412L198.471,110.219L198.9,110.183L200.462,110.087L201.3,110.024L202.315,109.95L203.367,109.864L203.562,109.849L205.766,109.677Z" + }, + { + "fill": "rgb(159, 217, 184)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.083; geo: [object Object]; name: Mississippi", + "shape": "M205.863,109.669L206.74,109.598L207.363,110.247L207.283,112.361L207.29,113.166L207.272,114.133L207.225,115.729L207.22,115.919L207.176,118.046L207.133,119.484L207.108,121.15L207.07,123.161L207.064,123.584L207.033,125.961L206.997,127.789L206.98,128.342L206.916,130.6L207.081,131.912L207.282,133.671L207.577,135.813L207.68,136.588L207.882,138.348L208.172,140.673L207.734,141.171L207.211,140.872L206.146,141.089L205.342,140.628L205.505,140.862L204.334,141.057L203.064,141.623L202.742,141.175L202.742,141.182L202.837,141.643L201.776,142.552L201.022,141.872L200.676,140.737L200.196,140.385L199.718,139.403L200.229,137.11L199.613,137.151L197.17,137.315L196.677,137.344L195.527,137.415L195.404,137.422L193.945,137.504L192.61,137.582L191.932,137.617L189.301,137.737L189.691,137.266L189.305,136.948L189.508,136.435L189.121,136.055L189.891,135.853L189.502,134.995L189.857,134.692L189.811,134.14L190.412,133.876L189.783,133.565L190.455,133.501L190.54,132.725L190.881,132.603L190.705,131.923L191.227,131.778L191.542,131.142L192.152,130.737L192.361,130.07L192.359,130.027L192.256,130.01L191.625,129.988L191.821,129.449L192.575,129.497L192.62,128.82L192.969,128.518L192.432,128.322L192.632,127.901L191.766,127.591L192.002,127.063L192.138,126.966L191.511,126.559L191.985,125.957L191.497,125.877L191.486,125.268L191.921,124.726L191.735,124.249L191.281,124.814L191.306,124.112L191.304,124.065L191.526,123.697L191.139,123.198L191.718,123.143L191.328,121.794L190.778,121.197L190.867,120.589L190.757,120.373L191.283,120.128L190.782,119.692L191.162,118.946L192.03,118.792L191.529,118.335L191.805,117.917L191.393,117.626L192.419,117.15L192.089,116.531L192.089,116.527L192.146,115.743L192.629,115.902L193.204,115.201L193.102,114.785L194.069,114.425L194.046,113.677L193.942,112.893L194.569,112.508L194.471,111.17L194.807,111.54L195.363,111.325L195.674,110.953L195.289,110.412L198.471,110.219L198.9,110.183L200.462,110.087L201.3,110.024L202.315,109.95L203.367,109.864L203.562,109.849L205.766,109.677Z" + }, + { + "fill": "rgb(75, 183, 193)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.143; geo: [object Object]; name: Mississippi", + "shape": "M205.863,109.669L206.74,109.598L207.363,110.247L207.283,112.361L207.29,113.166L207.272,114.133L207.225,115.729L207.22,115.919L207.176,118.046L207.133,119.484L207.108,121.15L207.07,123.161L207.064,123.584L207.033,125.961L206.997,127.789L206.98,128.342L206.916,130.6L207.081,131.912L207.282,133.671L207.577,135.813L207.68,136.588L207.882,138.348L208.172,140.673L207.734,141.171L207.211,140.872L206.146,141.089L205.342,140.628L205.505,140.862L204.334,141.057L203.064,141.623L202.742,141.175L202.742,141.182L202.837,141.643L201.776,142.552L201.022,141.872L200.676,140.737L200.196,140.385L199.718,139.403L200.229,137.11L199.613,137.151L197.17,137.315L196.677,137.344L195.527,137.415L195.404,137.422L193.945,137.504L192.61,137.582L191.932,137.617L189.301,137.737L189.691,137.266L189.305,136.948L189.508,136.435L189.121,136.055L189.891,135.853L189.502,134.995L189.857,134.692L189.811,134.14L190.412,133.876L189.783,133.565L190.455,133.501L190.54,132.725L190.881,132.603L190.705,131.923L191.227,131.778L191.542,131.142L192.152,130.737L192.361,130.07L192.359,130.027L192.256,130.01L191.625,129.988L191.821,129.449L192.575,129.497L192.62,128.82L192.969,128.518L192.432,128.322L192.632,127.901L191.766,127.591L192.002,127.063L192.138,126.966L191.511,126.559L191.985,125.957L191.497,125.877L191.486,125.268L191.921,124.726L191.735,124.249L191.281,124.814L191.306,124.112L191.304,124.065L191.526,123.697L191.139,123.198L191.718,123.143L191.328,121.794L190.778,121.197L190.867,120.589L190.757,120.373L191.283,120.128L190.782,119.692L191.162,118.946L192.03,118.792L191.529,118.335L191.805,117.917L191.393,117.626L192.419,117.15L192.089,116.531L192.089,116.527L192.146,115.743L192.629,115.902L193.204,115.201L193.102,114.785L194.069,114.425L194.046,113.677L193.942,112.893L194.569,112.508L194.471,111.17L194.807,111.54L195.363,111.325L195.674,110.953L195.289,110.412L198.471,110.219L198.9,110.183L200.462,110.087L201.3,110.024L202.315,109.95L203.367,109.864L203.562,109.849L205.766,109.677Z" + }, + { + "fill": "rgb(103, 196, 190)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.121; geo: [object Object]; name: Mississippi", + "shape": "M205.863,109.669L206.74,109.598L207.363,110.247L207.283,112.361L207.29,113.166L207.272,114.133L207.225,115.729L207.22,115.919L207.176,118.046L207.133,119.484L207.108,121.15L207.07,123.161L207.064,123.584L207.033,125.961L206.997,127.789L206.98,128.342L206.916,130.6L207.081,131.912L207.282,133.671L207.577,135.813L207.68,136.588L207.882,138.348L208.172,140.673L207.734,141.171L207.211,140.872L206.146,141.089L205.342,140.628L205.505,140.862L204.334,141.057L203.064,141.623L202.742,141.175L202.742,141.182L202.837,141.643L201.776,142.552L201.022,141.872L200.676,140.737L200.196,140.385L199.718,139.403L200.229,137.11L199.613,137.151L197.17,137.315L196.677,137.344L195.527,137.415L195.404,137.422L193.945,137.504L192.61,137.582L191.932,137.617L189.301,137.737L189.691,137.266L189.305,136.948L189.508,136.435L189.121,136.055L189.891,135.853L189.502,134.995L189.857,134.692L189.811,134.14L190.412,133.876L189.783,133.565L190.455,133.501L190.54,132.725L190.881,132.603L190.705,131.923L191.227,131.778L191.542,131.142L192.152,130.737L192.361,130.07L192.359,130.027L192.256,130.01L191.625,129.988L191.821,129.449L192.575,129.497L192.62,128.82L192.969,128.518L192.432,128.322L192.632,127.901L191.766,127.591L192.002,127.063L192.138,126.966L191.511,126.559L191.985,125.957L191.497,125.877L191.486,125.268L191.921,124.726L191.735,124.249L191.281,124.814L191.306,124.112L191.304,124.065L191.526,123.697L191.139,123.198L191.718,123.143L191.328,121.794L190.778,121.197L190.867,120.589L190.757,120.373L191.283,120.128L190.782,119.692L191.162,118.946L192.03,118.792L191.529,118.335L191.805,117.917L191.393,117.626L192.419,117.15L192.089,116.531L192.089,116.527L192.146,115.743L192.629,115.902L193.204,115.201L193.102,114.785L194.069,114.425L194.046,113.677L193.942,112.893L194.569,112.508L194.471,111.17L194.807,111.54L195.363,111.325L195.674,110.953L195.289,110.412L198.471,110.219L198.9,110.183L200.462,110.087L201.3,110.024L202.315,109.95L203.367,109.864L203.562,109.849L205.766,109.677Z" + }, + { + "fill": "rgb(72, 182, 194)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.145; geo: [object Object]; name: Mississippi", + "shape": "M205.863,109.669L206.74,109.598L207.363,110.247L207.283,112.361L207.29,113.166L207.272,114.133L207.225,115.729L207.22,115.919L207.176,118.046L207.133,119.484L207.108,121.15L207.07,123.161L207.064,123.584L207.033,125.961L206.997,127.789L206.98,128.342L206.916,130.6L207.081,131.912L207.282,133.671L207.577,135.813L207.68,136.588L207.882,138.348L208.172,140.673L207.734,141.171L207.211,140.872L206.146,141.089L205.342,140.628L205.505,140.862L204.334,141.057L203.064,141.623L202.742,141.175L202.742,141.182L202.837,141.643L201.776,142.552L201.022,141.872L200.676,140.737L200.196,140.385L199.718,139.403L200.229,137.11L199.613,137.151L197.17,137.315L196.677,137.344L195.527,137.415L195.404,137.422L193.945,137.504L192.61,137.582L191.932,137.617L189.301,137.737L189.691,137.266L189.305,136.948L189.508,136.435L189.121,136.055L189.891,135.853L189.502,134.995L189.857,134.692L189.811,134.14L190.412,133.876L189.783,133.565L190.455,133.501L190.54,132.725L190.881,132.603L190.705,131.923L191.227,131.778L191.542,131.142L192.152,130.737L192.361,130.07L192.359,130.027L192.256,130.01L191.625,129.988L191.821,129.449L192.575,129.497L192.62,128.82L192.969,128.518L192.432,128.322L192.632,127.901L191.766,127.591L192.002,127.063L192.138,126.966L191.511,126.559L191.985,125.957L191.497,125.877L191.486,125.268L191.921,124.726L191.735,124.249L191.281,124.814L191.306,124.112L191.304,124.065L191.526,123.697L191.139,123.198L191.718,123.143L191.328,121.794L190.778,121.197L190.867,120.589L190.757,120.373L191.283,120.128L190.782,119.692L191.162,118.946L192.03,118.792L191.529,118.335L191.805,117.917L191.393,117.626L192.419,117.15L192.089,116.531L192.089,116.527L192.146,115.743L192.629,115.902L193.204,115.201L193.102,114.785L194.069,114.425L194.046,113.677L193.942,112.893L194.569,112.508L194.471,111.17L194.807,111.54L195.363,111.325L195.674,110.953L195.289,110.412L198.471,110.219L198.9,110.183L200.462,110.087L201.3,110.024L202.315,109.95L203.367,109.864L203.562,109.849L205.766,109.677Z" + }, + { + "fill": "rgb(143, 211, 186)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.094; geo: [object Object]; name: Mississippi", + "shape": "M205.863,109.669L206.74,109.598L207.363,110.247L207.283,112.361L207.29,113.166L207.272,114.133L207.225,115.729L207.22,115.919L207.176,118.046L207.133,119.484L207.108,121.15L207.07,123.161L207.064,123.584L207.033,125.961L206.997,127.789L206.98,128.342L206.916,130.6L207.081,131.912L207.282,133.671L207.577,135.813L207.68,136.588L207.882,138.348L208.172,140.673L207.734,141.171L207.211,140.872L206.146,141.089L205.342,140.628L205.505,140.862L204.334,141.057L203.064,141.623L202.742,141.175L202.742,141.182L202.837,141.643L201.776,142.552L201.022,141.872L200.676,140.737L200.196,140.385L199.718,139.403L200.229,137.11L199.613,137.151L197.17,137.315L196.677,137.344L195.527,137.415L195.404,137.422L193.945,137.504L192.61,137.582L191.932,137.617L189.301,137.737L189.691,137.266L189.305,136.948L189.508,136.435L189.121,136.055L189.891,135.853L189.502,134.995L189.857,134.692L189.811,134.14L190.412,133.876L189.783,133.565L190.455,133.501L190.54,132.725L190.881,132.603L190.705,131.923L191.227,131.778L191.542,131.142L192.152,130.737L192.361,130.07L192.359,130.027L192.256,130.01L191.625,129.988L191.821,129.449L192.575,129.497L192.62,128.82L192.969,128.518L192.432,128.322L192.632,127.901L191.766,127.591L192.002,127.063L192.138,126.966L191.511,126.559L191.985,125.957L191.497,125.877L191.486,125.268L191.921,124.726L191.735,124.249L191.281,124.814L191.306,124.112L191.304,124.065L191.526,123.697L191.139,123.198L191.718,123.143L191.328,121.794L190.778,121.197L190.867,120.589L190.757,120.373L191.283,120.128L190.782,119.692L191.162,118.946L192.03,118.792L191.529,118.335L191.805,117.917L191.393,117.626L192.419,117.15L192.089,116.531L192.089,116.527L192.146,115.743L192.629,115.902L193.204,115.201L193.102,114.785L194.069,114.425L194.046,113.677L193.942,112.893L194.569,112.508L194.471,111.17L194.807,111.54L195.363,111.325L195.674,110.953L195.289,110.412L198.471,110.219L198.9,110.183L200.462,110.087L201.3,110.024L202.315,109.95L203.367,109.864L203.562,109.849L205.766,109.677Z" + }, + { + "fill": "rgb(48, 162, 192)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.171; geo: [object Object]; name: Mississippi", + "shape": "M205.863,109.669L206.74,109.598L207.363,110.247L207.283,112.361L207.29,113.166L207.272,114.133L207.225,115.729L207.22,115.919L207.176,118.046L207.133,119.484L207.108,121.15L207.07,123.161L207.064,123.584L207.033,125.961L206.997,127.789L206.98,128.342L206.916,130.6L207.081,131.912L207.282,133.671L207.577,135.813L207.68,136.588L207.882,138.348L208.172,140.673L207.734,141.171L207.211,140.872L206.146,141.089L205.342,140.628L205.505,140.862L204.334,141.057L203.064,141.623L202.742,141.175L202.742,141.182L202.837,141.643L201.776,142.552L201.022,141.872L200.676,140.737L200.196,140.385L199.718,139.403L200.229,137.11L199.613,137.151L197.17,137.315L196.677,137.344L195.527,137.415L195.404,137.422L193.945,137.504L192.61,137.582L191.932,137.617L189.301,137.737L189.691,137.266L189.305,136.948L189.508,136.435L189.121,136.055L189.891,135.853L189.502,134.995L189.857,134.692L189.811,134.14L190.412,133.876L189.783,133.565L190.455,133.501L190.54,132.725L190.881,132.603L190.705,131.923L191.227,131.778L191.542,131.142L192.152,130.737L192.361,130.07L192.359,130.027L192.256,130.01L191.625,129.988L191.821,129.449L192.575,129.497L192.62,128.82L192.969,128.518L192.432,128.322L192.632,127.901L191.766,127.591L192.002,127.063L192.138,126.966L191.511,126.559L191.985,125.957L191.497,125.877L191.486,125.268L191.921,124.726L191.735,124.249L191.281,124.814L191.306,124.112L191.304,124.065L191.526,123.697L191.139,123.198L191.718,123.143L191.328,121.794L190.778,121.197L190.867,120.589L190.757,120.373L191.283,120.128L190.782,119.692L191.162,118.946L192.03,118.792L191.529,118.335L191.805,117.917L191.393,117.626L192.419,117.15L192.089,116.531L192.089,116.527L192.146,115.743L192.629,115.902L193.204,115.201L193.102,114.785L194.069,114.425L194.046,113.677L193.942,112.893L194.569,112.508L194.471,111.17L194.807,111.54L195.363,111.325L195.674,110.953L195.289,110.412L198.471,110.219L198.9,110.183L200.462,110.087L201.3,110.024L202.315,109.95L203.367,109.864L203.562,109.849L205.766,109.677Z" + }, + { + "fill": "rgb(162, 219, 184)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.081; geo: [object Object]; name: Mississippi", + "shape": "M205.863,109.669L206.74,109.598L207.363,110.247L207.283,112.361L207.29,113.166L207.272,114.133L207.225,115.729L207.22,115.919L207.176,118.046L207.133,119.484L207.108,121.15L207.07,123.161L207.064,123.584L207.033,125.961L206.997,127.789L206.98,128.342L206.916,130.6L207.081,131.912L207.282,133.671L207.577,135.813L207.68,136.588L207.882,138.348L208.172,140.673L207.734,141.171L207.211,140.872L206.146,141.089L205.342,140.628L205.505,140.862L204.334,141.057L203.064,141.623L202.742,141.175L202.742,141.182L202.837,141.643L201.776,142.552L201.022,141.872L200.676,140.737L200.196,140.385L199.718,139.403L200.229,137.11L199.613,137.151L197.17,137.315L196.677,137.344L195.527,137.415L195.404,137.422L193.945,137.504L192.61,137.582L191.932,137.617L189.301,137.737L189.691,137.266L189.305,136.948L189.508,136.435L189.121,136.055L189.891,135.853L189.502,134.995L189.857,134.692L189.811,134.14L190.412,133.876L189.783,133.565L190.455,133.501L190.54,132.725L190.881,132.603L190.705,131.923L191.227,131.778L191.542,131.142L192.152,130.737L192.361,130.07L192.359,130.027L192.256,130.01L191.625,129.988L191.821,129.449L192.575,129.497L192.62,128.82L192.969,128.518L192.432,128.322L192.632,127.901L191.766,127.591L192.002,127.063L192.138,126.966L191.511,126.559L191.985,125.957L191.497,125.877L191.486,125.268L191.921,124.726L191.735,124.249L191.281,124.814L191.306,124.112L191.304,124.065L191.526,123.697L191.139,123.198L191.718,123.143L191.328,121.794L190.778,121.197L190.867,120.589L190.757,120.373L191.283,120.128L190.782,119.692L191.162,118.946L192.03,118.792L191.529,118.335L191.805,117.917L191.393,117.626L192.419,117.15L192.089,116.531L192.089,116.527L192.146,115.743L192.629,115.902L193.204,115.201L193.102,114.785L194.069,114.425L194.046,113.677L193.942,112.893L194.569,112.508L194.471,111.17L194.807,111.54L195.363,111.325L195.674,110.953L195.289,110.412L198.471,110.219L198.9,110.183L200.462,110.087L201.3,110.024L202.315,109.95L203.367,109.864L203.562,109.849L205.766,109.677Z" + }, + { + "fill": "rgb(226, 244, 183)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.024; geo: [object Object]; name: Mississippi", + "shape": "M205.863,109.669L206.74,109.598L207.363,110.247L207.283,112.361L207.29,113.166L207.272,114.133L207.225,115.729L207.22,115.919L207.176,118.046L207.133,119.484L207.108,121.15L207.07,123.161L207.064,123.584L207.033,125.961L206.997,127.789L206.98,128.342L206.916,130.6L207.081,131.912L207.282,133.671L207.577,135.813L207.68,136.588L207.882,138.348L208.172,140.673L207.734,141.171L207.211,140.872L206.146,141.089L205.342,140.628L205.505,140.862L204.334,141.057L203.064,141.623L202.742,141.175L202.742,141.182L202.837,141.643L201.776,142.552L201.022,141.872L200.676,140.737L200.196,140.385L199.718,139.403L200.229,137.11L199.613,137.151L197.17,137.315L196.677,137.344L195.527,137.415L195.404,137.422L193.945,137.504L192.61,137.582L191.932,137.617L189.301,137.737L189.691,137.266L189.305,136.948L189.508,136.435L189.121,136.055L189.891,135.853L189.502,134.995L189.857,134.692L189.811,134.14L190.412,133.876L189.783,133.565L190.455,133.501L190.54,132.725L190.881,132.603L190.705,131.923L191.227,131.778L191.542,131.142L192.152,130.737L192.361,130.07L192.359,130.027L192.256,130.01L191.625,129.988L191.821,129.449L192.575,129.497L192.62,128.82L192.969,128.518L192.432,128.322L192.632,127.901L191.766,127.591L192.002,127.063L192.138,126.966L191.511,126.559L191.985,125.957L191.497,125.877L191.486,125.268L191.921,124.726L191.735,124.249L191.281,124.814L191.306,124.112L191.304,124.065L191.526,123.697L191.139,123.198L191.718,123.143L191.328,121.794L190.778,121.197L190.867,120.589L190.757,120.373L191.283,120.128L190.782,119.692L191.162,118.946L192.03,118.792L191.529,118.335L191.805,117.917L191.393,117.626L192.419,117.15L192.089,116.531L192.089,116.527L192.146,115.743L192.629,115.902L193.204,115.201L193.102,114.785L194.069,114.425L194.046,113.677L193.942,112.893L194.569,112.508L194.471,111.17L194.807,111.54L195.363,111.325L195.674,110.953L195.289,110.412L198.471,110.219L198.9,110.183L200.462,110.087L201.3,110.024L202.315,109.95L203.367,109.864L203.562,109.849L205.766,109.677Z" + }, + { + "fill": "rgb(229, 245, 185)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.02; geo: [object Object]; name: Mississippi", + "shape": "M205.863,109.669L206.74,109.598L207.363,110.247L207.283,112.361L207.29,113.166L207.272,114.133L207.225,115.729L207.22,115.919L207.176,118.046L207.133,119.484L207.108,121.15L207.07,123.161L207.064,123.584L207.033,125.961L206.997,127.789L206.98,128.342L206.916,130.6L207.081,131.912L207.282,133.671L207.577,135.813L207.68,136.588L207.882,138.348L208.172,140.673L207.734,141.171L207.211,140.872L206.146,141.089L205.342,140.628L205.505,140.862L204.334,141.057L203.064,141.623L202.742,141.175L202.742,141.182L202.837,141.643L201.776,142.552L201.022,141.872L200.676,140.737L200.196,140.385L199.718,139.403L200.229,137.11L199.613,137.151L197.17,137.315L196.677,137.344L195.527,137.415L195.404,137.422L193.945,137.504L192.61,137.582L191.932,137.617L189.301,137.737L189.691,137.266L189.305,136.948L189.508,136.435L189.121,136.055L189.891,135.853L189.502,134.995L189.857,134.692L189.811,134.14L190.412,133.876L189.783,133.565L190.455,133.501L190.54,132.725L190.881,132.603L190.705,131.923L191.227,131.778L191.542,131.142L192.152,130.737L192.361,130.07L192.359,130.027L192.256,130.01L191.625,129.988L191.821,129.449L192.575,129.497L192.62,128.82L192.969,128.518L192.432,128.322L192.632,127.901L191.766,127.591L192.002,127.063L192.138,126.966L191.511,126.559L191.985,125.957L191.497,125.877L191.486,125.268L191.921,124.726L191.735,124.249L191.281,124.814L191.306,124.112L191.304,124.065L191.526,123.697L191.139,123.198L191.718,123.143L191.328,121.794L190.778,121.197L190.867,120.589L190.757,120.373L191.283,120.128L190.782,119.692L191.162,118.946L192.03,118.792L191.529,118.335L191.805,117.917L191.393,117.626L192.419,117.15L192.089,116.531L192.089,116.527L192.146,115.743L192.629,115.902L193.204,115.201L193.102,114.785L194.069,114.425L194.046,113.677L193.942,112.893L194.569,112.508L194.471,111.17L194.807,111.54L195.363,111.325L195.674,110.953L195.289,110.412L198.471,110.219L198.9,110.183L200.462,110.087L201.3,110.024L202.315,109.95L203.367,109.864L203.562,109.849L205.766,109.677Z" + }, + { + "fill": "rgb(162, 219, 184)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.081; geo: [object Object]; name: Missouri", + "shape": "M185.923,72.911L187.498,74.333L187.14,75.228L187.119,75.552L187.248,76.733L187.548,77.261L187.581,77.951L187.956,78.505L188.293,78.998L188.982,79.543L189.771,80.54L190.284,80.823L191.187,81.466L191.436,81.951L191.859,83.891L192.529,84.232L192.939,83.607L193.864,83.848L194.766,84.314L194.728,84.597L194.5,84.833L194.454,85.598L194.098,86.494L194.083,86.554L193.747,87.496L193.698,88.567L194.319,89.226L194.56,89.474L195.719,90.251L196.057,90.828L196.514,90.598L197.479,91.224L197.54,91.573L198.337,91.899L198.375,92.735L198.378,92.771L198.984,93.864L198.692,94.314L198.693,94.318L198.694,94.887L199.381,96.28L199.736,96.452L200.031,96.03L200.7,96.584L200.89,96.826L200.557,97.783L200.853,97.904L200.467,98.388L200.632,98.821L200.293,99.444L199.84,99.012L199.425,99.949L199.081,99.977L198.775,99.994L198.83,101.088L198.478,101.29L198.925,101.639L198.062,101.708L198.439,102.146L198.657,102.514L198.215,102.839L198.117,103.407L196.751,103.514L194.999,103.644L194.518,103.676L195.435,102.229L196.065,101.513L195.946,100.842L195.503,100.21L195.159,100.231L193.245,100.34L192.134,100.402L190.316,100.503L188.822,100.584L188.592,100.588L187.404,100.633L185.01,100.743L184.857,100.75L182.826,100.828L181.542,100.877L181.101,100.892L178.744,100.961L178.629,100.967L177.192,101.002L175.696,101.038L174.565,101.062L171.671,101.105L171.654,99.967L171.644,99.297L171.621,97.722L171.616,97.333L171.588,95.423L171.605,95.252L171.557,93.291L171.555,93.16L171.538,90.693L171.555,90.536L171.522,88.309L171.513,87.709L171.506,85.941L171.495,85.206L171.476,83.871L171.469,83.401L171.501,83.092L170.61,82.835L169.993,82.224L169.596,81.355L168.889,80.587L169.14,79.974L170.025,78.629L169.433,78.112L169.197,78.337L168.352,78.072L167.799,77.436L167.285,77.189L167.392,76.679L166.566,75.676L166.548,75.654L165.759,73.905L165.486,73.488L167.462,73.512L168.332,73.516L169.783,73.527L171.216,73.534L172.013,73.529L173.228,73.497L174.315,73.461L175.529,73.409L176.634,73.364L177.559,73.339L178.953,73.273L180.891,73.173L181.271,73.149L182.718,73.056L183.587,73L184.78,72.91Z" + }, + { + "fill": "rgb(191, 230, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.061; geo: [object Object]; name: Missouri", + "shape": "M185.923,72.911L187.498,74.333L187.14,75.228L187.119,75.552L187.248,76.733L187.548,77.261L187.581,77.951L187.956,78.505L188.293,78.998L188.982,79.543L189.771,80.54L190.284,80.823L191.187,81.466L191.436,81.951L191.859,83.891L192.529,84.232L192.939,83.607L193.864,83.848L194.766,84.314L194.728,84.597L194.5,84.833L194.454,85.598L194.098,86.494L194.083,86.554L193.747,87.496L193.698,88.567L194.319,89.226L194.56,89.474L195.719,90.251L196.057,90.828L196.514,90.598L197.479,91.224L197.54,91.573L198.337,91.899L198.375,92.735L198.378,92.771L198.984,93.864L198.692,94.314L198.693,94.318L198.694,94.887L199.381,96.28L199.736,96.452L200.031,96.03L200.7,96.584L200.89,96.826L200.557,97.783L200.853,97.904L200.467,98.388L200.632,98.821L200.293,99.444L199.84,99.012L199.425,99.949L199.081,99.977L198.775,99.994L198.83,101.088L198.478,101.29L198.925,101.639L198.062,101.708L198.439,102.146L198.657,102.514L198.215,102.839L198.117,103.407L196.751,103.514L194.999,103.644L194.518,103.676L195.435,102.229L196.065,101.513L195.946,100.842L195.503,100.21L195.159,100.231L193.245,100.34L192.134,100.402L190.316,100.503L188.822,100.584L188.592,100.588L187.404,100.633L185.01,100.743L184.857,100.75L182.826,100.828L181.542,100.877L181.101,100.892L178.744,100.961L178.629,100.967L177.192,101.002L175.696,101.038L174.565,101.062L171.671,101.105L171.654,99.967L171.644,99.297L171.621,97.722L171.616,97.333L171.588,95.423L171.605,95.252L171.557,93.291L171.555,93.16L171.538,90.693L171.555,90.536L171.522,88.309L171.513,87.709L171.506,85.941L171.495,85.206L171.476,83.871L171.469,83.401L171.501,83.092L170.61,82.835L169.993,82.224L169.596,81.355L168.889,80.587L169.14,79.974L170.025,78.629L169.433,78.112L169.197,78.337L168.352,78.072L167.799,77.436L167.285,77.189L167.392,76.679L166.566,75.676L166.548,75.654L165.759,73.905L165.486,73.488L167.462,73.512L168.332,73.516L169.783,73.527L171.216,73.534L172.013,73.529L173.228,73.497L174.315,73.461L175.529,73.409L176.634,73.364L177.559,73.339L178.953,73.273L180.891,73.173L181.271,73.149L182.718,73.056L183.587,73L184.78,72.91Z" + }, + { + "fill": "rgb(103, 196, 190)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.121; geo: [object Object]; name: Missouri", + "shape": "M185.923,72.911L187.498,74.333L187.14,75.228L187.119,75.552L187.248,76.733L187.548,77.261L187.581,77.951L187.956,78.505L188.293,78.998L188.982,79.543L189.771,80.54L190.284,80.823L191.187,81.466L191.436,81.951L191.859,83.891L192.529,84.232L192.939,83.607L193.864,83.848L194.766,84.314L194.728,84.597L194.5,84.833L194.454,85.598L194.098,86.494L194.083,86.554L193.747,87.496L193.698,88.567L194.319,89.226L194.56,89.474L195.719,90.251L196.057,90.828L196.514,90.598L197.479,91.224L197.54,91.573L198.337,91.899L198.375,92.735L198.378,92.771L198.984,93.864L198.692,94.314L198.693,94.318L198.694,94.887L199.381,96.28L199.736,96.452L200.031,96.03L200.7,96.584L200.89,96.826L200.557,97.783L200.853,97.904L200.467,98.388L200.632,98.821L200.293,99.444L199.84,99.012L199.425,99.949L199.081,99.977L198.775,99.994L198.83,101.088L198.478,101.29L198.925,101.639L198.062,101.708L198.439,102.146L198.657,102.514L198.215,102.839L198.117,103.407L196.751,103.514L194.999,103.644L194.518,103.676L195.435,102.229L196.065,101.513L195.946,100.842L195.503,100.21L195.159,100.231L193.245,100.34L192.134,100.402L190.316,100.503L188.822,100.584L188.592,100.588L187.404,100.633L185.01,100.743L184.857,100.75L182.826,100.828L181.542,100.877L181.101,100.892L178.744,100.961L178.629,100.967L177.192,101.002L175.696,101.038L174.565,101.062L171.671,101.105L171.654,99.967L171.644,99.297L171.621,97.722L171.616,97.333L171.588,95.423L171.605,95.252L171.557,93.291L171.555,93.16L171.538,90.693L171.555,90.536L171.522,88.309L171.513,87.709L171.506,85.941L171.495,85.206L171.476,83.871L171.469,83.401L171.501,83.092L170.61,82.835L169.993,82.224L169.596,81.355L168.889,80.587L169.14,79.974L170.025,78.629L169.433,78.112L169.197,78.337L168.352,78.072L167.799,77.436L167.285,77.189L167.392,76.679L166.566,75.676L166.548,75.654L165.759,73.905L165.486,73.488L167.462,73.512L168.332,73.516L169.783,73.527L171.216,73.534L172.013,73.529L173.228,73.497L174.315,73.461L175.529,73.409L176.634,73.364L177.559,73.339L178.953,73.273L180.891,73.173L181.271,73.149L182.718,73.056L183.587,73L184.78,72.91Z" + }, + { + "fill": "rgb(111, 199, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.115; geo: [object Object]; name: Missouri", + "shape": "M185.923,72.911L187.498,74.333L187.14,75.228L187.119,75.552L187.248,76.733L187.548,77.261L187.581,77.951L187.956,78.505L188.293,78.998L188.982,79.543L189.771,80.54L190.284,80.823L191.187,81.466L191.436,81.951L191.859,83.891L192.529,84.232L192.939,83.607L193.864,83.848L194.766,84.314L194.728,84.597L194.5,84.833L194.454,85.598L194.098,86.494L194.083,86.554L193.747,87.496L193.698,88.567L194.319,89.226L194.56,89.474L195.719,90.251L196.057,90.828L196.514,90.598L197.479,91.224L197.54,91.573L198.337,91.899L198.375,92.735L198.378,92.771L198.984,93.864L198.692,94.314L198.693,94.318L198.694,94.887L199.381,96.28L199.736,96.452L200.031,96.03L200.7,96.584L200.89,96.826L200.557,97.783L200.853,97.904L200.467,98.388L200.632,98.821L200.293,99.444L199.84,99.012L199.425,99.949L199.081,99.977L198.775,99.994L198.83,101.088L198.478,101.29L198.925,101.639L198.062,101.708L198.439,102.146L198.657,102.514L198.215,102.839L198.117,103.407L196.751,103.514L194.999,103.644L194.518,103.676L195.435,102.229L196.065,101.513L195.946,100.842L195.503,100.21L195.159,100.231L193.245,100.34L192.134,100.402L190.316,100.503L188.822,100.584L188.592,100.588L187.404,100.633L185.01,100.743L184.857,100.75L182.826,100.828L181.542,100.877L181.101,100.892L178.744,100.961L178.629,100.967L177.192,101.002L175.696,101.038L174.565,101.062L171.671,101.105L171.654,99.967L171.644,99.297L171.621,97.722L171.616,97.333L171.588,95.423L171.605,95.252L171.557,93.291L171.555,93.16L171.538,90.693L171.555,90.536L171.522,88.309L171.513,87.709L171.506,85.941L171.495,85.206L171.476,83.871L171.469,83.401L171.501,83.092L170.61,82.835L169.993,82.224L169.596,81.355L168.889,80.587L169.14,79.974L170.025,78.629L169.433,78.112L169.197,78.337L168.352,78.072L167.799,77.436L167.285,77.189L167.392,76.679L166.566,75.676L166.548,75.654L165.759,73.905L165.486,73.488L167.462,73.512L168.332,73.516L169.783,73.527L171.216,73.534L172.013,73.529L173.228,73.497L174.315,73.461L175.529,73.409L176.634,73.364L177.559,73.339L178.953,73.273L180.891,73.173L181.271,73.149L182.718,73.056L183.587,73L184.78,72.91Z" + }, + { + "fill": "rgb(67, 178, 194)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.15; geo: [object Object]; name: Missouri", + "shape": "M185.923,72.911L187.498,74.333L187.14,75.228L187.119,75.552L187.248,76.733L187.548,77.261L187.581,77.951L187.956,78.505L188.293,78.998L188.982,79.543L189.771,80.54L190.284,80.823L191.187,81.466L191.436,81.951L191.859,83.891L192.529,84.232L192.939,83.607L193.864,83.848L194.766,84.314L194.728,84.597L194.5,84.833L194.454,85.598L194.098,86.494L194.083,86.554L193.747,87.496L193.698,88.567L194.319,89.226L194.56,89.474L195.719,90.251L196.057,90.828L196.514,90.598L197.479,91.224L197.54,91.573L198.337,91.899L198.375,92.735L198.378,92.771L198.984,93.864L198.692,94.314L198.693,94.318L198.694,94.887L199.381,96.28L199.736,96.452L200.031,96.03L200.7,96.584L200.89,96.826L200.557,97.783L200.853,97.904L200.467,98.388L200.632,98.821L200.293,99.444L199.84,99.012L199.425,99.949L199.081,99.977L198.775,99.994L198.83,101.088L198.478,101.29L198.925,101.639L198.062,101.708L198.439,102.146L198.657,102.514L198.215,102.839L198.117,103.407L196.751,103.514L194.999,103.644L194.518,103.676L195.435,102.229L196.065,101.513L195.946,100.842L195.503,100.21L195.159,100.231L193.245,100.34L192.134,100.402L190.316,100.503L188.822,100.584L188.592,100.588L187.404,100.633L185.01,100.743L184.857,100.75L182.826,100.828L181.542,100.877L181.101,100.892L178.744,100.961L178.629,100.967L177.192,101.002L175.696,101.038L174.565,101.062L171.671,101.105L171.654,99.967L171.644,99.297L171.621,97.722L171.616,97.333L171.588,95.423L171.605,95.252L171.557,93.291L171.555,93.16L171.538,90.693L171.555,90.536L171.522,88.309L171.513,87.709L171.506,85.941L171.495,85.206L171.476,83.871L171.469,83.401L171.501,83.092L170.61,82.835L169.993,82.224L169.596,81.355L168.889,80.587L169.14,79.974L170.025,78.629L169.433,78.112L169.197,78.337L168.352,78.072L167.799,77.436L167.285,77.189L167.392,76.679L166.566,75.676L166.548,75.654L165.759,73.905L165.486,73.488L167.462,73.512L168.332,73.516L169.783,73.527L171.216,73.534L172.013,73.529L173.228,73.497L174.315,73.461L175.529,73.409L176.634,73.364L177.559,73.339L178.953,73.273L180.891,73.173L181.271,73.149L182.718,73.056L183.587,73L184.78,72.91Z" + }, + { + "fill": "rgb(111, 199, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.115; geo: [object Object]; name: Missouri", + "shape": "M185.923,72.911L187.498,74.333L187.14,75.228L187.119,75.552L187.248,76.733L187.548,77.261L187.581,77.951L187.956,78.505L188.293,78.998L188.982,79.543L189.771,80.54L190.284,80.823L191.187,81.466L191.436,81.951L191.859,83.891L192.529,84.232L192.939,83.607L193.864,83.848L194.766,84.314L194.728,84.597L194.5,84.833L194.454,85.598L194.098,86.494L194.083,86.554L193.747,87.496L193.698,88.567L194.319,89.226L194.56,89.474L195.719,90.251L196.057,90.828L196.514,90.598L197.479,91.224L197.54,91.573L198.337,91.899L198.375,92.735L198.378,92.771L198.984,93.864L198.692,94.314L198.693,94.318L198.694,94.887L199.381,96.28L199.736,96.452L200.031,96.03L200.7,96.584L200.89,96.826L200.557,97.783L200.853,97.904L200.467,98.388L200.632,98.821L200.293,99.444L199.84,99.012L199.425,99.949L199.081,99.977L198.775,99.994L198.83,101.088L198.478,101.29L198.925,101.639L198.062,101.708L198.439,102.146L198.657,102.514L198.215,102.839L198.117,103.407L196.751,103.514L194.999,103.644L194.518,103.676L195.435,102.229L196.065,101.513L195.946,100.842L195.503,100.21L195.159,100.231L193.245,100.34L192.134,100.402L190.316,100.503L188.822,100.584L188.592,100.588L187.404,100.633L185.01,100.743L184.857,100.75L182.826,100.828L181.542,100.877L181.101,100.892L178.744,100.961L178.629,100.967L177.192,101.002L175.696,101.038L174.565,101.062L171.671,101.105L171.654,99.967L171.644,99.297L171.621,97.722L171.616,97.333L171.588,95.423L171.605,95.252L171.557,93.291L171.555,93.16L171.538,90.693L171.555,90.536L171.522,88.309L171.513,87.709L171.506,85.941L171.495,85.206L171.476,83.871L171.469,83.401L171.501,83.092L170.61,82.835L169.993,82.224L169.596,81.355L168.889,80.587L169.14,79.974L170.025,78.629L169.433,78.112L169.197,78.337L168.352,78.072L167.799,77.436L167.285,77.189L167.392,76.679L166.566,75.676L166.548,75.654L165.759,73.905L165.486,73.488L167.462,73.512L168.332,73.516L169.783,73.527L171.216,73.534L172.013,73.529L173.228,73.497L174.315,73.461L175.529,73.409L176.634,73.364L177.559,73.339L178.953,73.273L180.891,73.173L181.271,73.149L182.718,73.056L183.587,73L184.78,72.91Z" + }, + { + "fill": "rgb(39, 146, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.188; geo: [object Object]; name: Missouri", + "shape": "M185.923,72.911L187.498,74.333L187.14,75.228L187.119,75.552L187.248,76.733L187.548,77.261L187.581,77.951L187.956,78.505L188.293,78.998L188.982,79.543L189.771,80.54L190.284,80.823L191.187,81.466L191.436,81.951L191.859,83.891L192.529,84.232L192.939,83.607L193.864,83.848L194.766,84.314L194.728,84.597L194.5,84.833L194.454,85.598L194.098,86.494L194.083,86.554L193.747,87.496L193.698,88.567L194.319,89.226L194.56,89.474L195.719,90.251L196.057,90.828L196.514,90.598L197.479,91.224L197.54,91.573L198.337,91.899L198.375,92.735L198.378,92.771L198.984,93.864L198.692,94.314L198.693,94.318L198.694,94.887L199.381,96.28L199.736,96.452L200.031,96.03L200.7,96.584L200.89,96.826L200.557,97.783L200.853,97.904L200.467,98.388L200.632,98.821L200.293,99.444L199.84,99.012L199.425,99.949L199.081,99.977L198.775,99.994L198.83,101.088L198.478,101.29L198.925,101.639L198.062,101.708L198.439,102.146L198.657,102.514L198.215,102.839L198.117,103.407L196.751,103.514L194.999,103.644L194.518,103.676L195.435,102.229L196.065,101.513L195.946,100.842L195.503,100.21L195.159,100.231L193.245,100.34L192.134,100.402L190.316,100.503L188.822,100.584L188.592,100.588L187.404,100.633L185.01,100.743L184.857,100.75L182.826,100.828L181.542,100.877L181.101,100.892L178.744,100.961L178.629,100.967L177.192,101.002L175.696,101.038L174.565,101.062L171.671,101.105L171.654,99.967L171.644,99.297L171.621,97.722L171.616,97.333L171.588,95.423L171.605,95.252L171.557,93.291L171.555,93.16L171.538,90.693L171.555,90.536L171.522,88.309L171.513,87.709L171.506,85.941L171.495,85.206L171.476,83.871L171.469,83.401L171.501,83.092L170.61,82.835L169.993,82.224L169.596,81.355L168.889,80.587L169.14,79.974L170.025,78.629L169.433,78.112L169.197,78.337L168.352,78.072L167.799,77.436L167.285,77.189L167.392,76.679L166.566,75.676L166.548,75.654L165.759,73.905L165.486,73.488L167.462,73.512L168.332,73.516L169.783,73.527L171.216,73.534L172.013,73.529L173.228,73.497L174.315,73.461L175.529,73.409L176.634,73.364L177.559,73.339L178.953,73.273L180.891,73.173L181.271,73.149L182.718,73.056L183.587,73L184.78,72.91Z" + }, + { + "fill": "rgb(127, 205, 187)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.105; geo: [object Object]; name: Missouri", + "shape": "M185.923,72.911L187.498,74.333L187.14,75.228L187.119,75.552L187.248,76.733L187.548,77.261L187.581,77.951L187.956,78.505L188.293,78.998L188.982,79.543L189.771,80.54L190.284,80.823L191.187,81.466L191.436,81.951L191.859,83.891L192.529,84.232L192.939,83.607L193.864,83.848L194.766,84.314L194.728,84.597L194.5,84.833L194.454,85.598L194.098,86.494L194.083,86.554L193.747,87.496L193.698,88.567L194.319,89.226L194.56,89.474L195.719,90.251L196.057,90.828L196.514,90.598L197.479,91.224L197.54,91.573L198.337,91.899L198.375,92.735L198.378,92.771L198.984,93.864L198.692,94.314L198.693,94.318L198.694,94.887L199.381,96.28L199.736,96.452L200.031,96.03L200.7,96.584L200.89,96.826L200.557,97.783L200.853,97.904L200.467,98.388L200.632,98.821L200.293,99.444L199.84,99.012L199.425,99.949L199.081,99.977L198.775,99.994L198.83,101.088L198.478,101.29L198.925,101.639L198.062,101.708L198.439,102.146L198.657,102.514L198.215,102.839L198.117,103.407L196.751,103.514L194.999,103.644L194.518,103.676L195.435,102.229L196.065,101.513L195.946,100.842L195.503,100.21L195.159,100.231L193.245,100.34L192.134,100.402L190.316,100.503L188.822,100.584L188.592,100.588L187.404,100.633L185.01,100.743L184.857,100.75L182.826,100.828L181.542,100.877L181.101,100.892L178.744,100.961L178.629,100.967L177.192,101.002L175.696,101.038L174.565,101.062L171.671,101.105L171.654,99.967L171.644,99.297L171.621,97.722L171.616,97.333L171.588,95.423L171.605,95.252L171.557,93.291L171.555,93.16L171.538,90.693L171.555,90.536L171.522,88.309L171.513,87.709L171.506,85.941L171.495,85.206L171.476,83.871L171.469,83.401L171.501,83.092L170.61,82.835L169.993,82.224L169.596,81.355L168.889,80.587L169.14,79.974L170.025,78.629L169.433,78.112L169.197,78.337L168.352,78.072L167.799,77.436L167.285,77.189L167.392,76.679L166.566,75.676L166.548,75.654L165.759,73.905L165.486,73.488L167.462,73.512L168.332,73.516L169.783,73.527L171.216,73.534L172.013,73.529L173.228,73.497L174.315,73.461L175.529,73.409L176.634,73.364L177.559,73.339L178.953,73.273L180.891,73.173L181.271,73.149L182.718,73.056L183.587,73L184.78,72.91Z" + }, + { + "fill": "rgb(218, 241, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.035; geo: [object Object]; name: Missouri", + "shape": "M185.923,72.911L187.498,74.333L187.14,75.228L187.119,75.552L187.248,76.733L187.548,77.261L187.581,77.951L187.956,78.505L188.293,78.998L188.982,79.543L189.771,80.54L190.284,80.823L191.187,81.466L191.436,81.951L191.859,83.891L192.529,84.232L192.939,83.607L193.864,83.848L194.766,84.314L194.728,84.597L194.5,84.833L194.454,85.598L194.098,86.494L194.083,86.554L193.747,87.496L193.698,88.567L194.319,89.226L194.56,89.474L195.719,90.251L196.057,90.828L196.514,90.598L197.479,91.224L197.54,91.573L198.337,91.899L198.375,92.735L198.378,92.771L198.984,93.864L198.692,94.314L198.693,94.318L198.694,94.887L199.381,96.28L199.736,96.452L200.031,96.03L200.7,96.584L200.89,96.826L200.557,97.783L200.853,97.904L200.467,98.388L200.632,98.821L200.293,99.444L199.84,99.012L199.425,99.949L199.081,99.977L198.775,99.994L198.83,101.088L198.478,101.29L198.925,101.639L198.062,101.708L198.439,102.146L198.657,102.514L198.215,102.839L198.117,103.407L196.751,103.514L194.999,103.644L194.518,103.676L195.435,102.229L196.065,101.513L195.946,100.842L195.503,100.21L195.159,100.231L193.245,100.34L192.134,100.402L190.316,100.503L188.822,100.584L188.592,100.588L187.404,100.633L185.01,100.743L184.857,100.75L182.826,100.828L181.542,100.877L181.101,100.892L178.744,100.961L178.629,100.967L177.192,101.002L175.696,101.038L174.565,101.062L171.671,101.105L171.654,99.967L171.644,99.297L171.621,97.722L171.616,97.333L171.588,95.423L171.605,95.252L171.557,93.291L171.555,93.16L171.538,90.693L171.555,90.536L171.522,88.309L171.513,87.709L171.506,85.941L171.495,85.206L171.476,83.871L171.469,83.401L171.501,83.092L170.61,82.835L169.993,82.224L169.596,81.355L168.889,80.587L169.14,79.974L170.025,78.629L169.433,78.112L169.197,78.337L168.352,78.072L167.799,77.436L167.285,77.189L167.392,76.679L166.566,75.676L166.548,75.654L165.759,73.905L165.486,73.488L167.462,73.512L168.332,73.516L169.783,73.527L171.216,73.534L172.013,73.529L173.228,73.497L174.315,73.461L175.529,73.409L176.634,73.364L177.559,73.339L178.953,73.273L180.891,73.173L181.271,73.149L182.718,73.056L183.587,73L184.78,72.91Z" + }, + { + "fill": "rgb(223, 242, 182)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.029; geo: [object Object]; name: Missouri", + "shape": "M185.923,72.911L187.498,74.333L187.14,75.228L187.119,75.552L187.248,76.733L187.548,77.261L187.581,77.951L187.956,78.505L188.293,78.998L188.982,79.543L189.771,80.54L190.284,80.823L191.187,81.466L191.436,81.951L191.859,83.891L192.529,84.232L192.939,83.607L193.864,83.848L194.766,84.314L194.728,84.597L194.5,84.833L194.454,85.598L194.098,86.494L194.083,86.554L193.747,87.496L193.698,88.567L194.319,89.226L194.56,89.474L195.719,90.251L196.057,90.828L196.514,90.598L197.479,91.224L197.54,91.573L198.337,91.899L198.375,92.735L198.378,92.771L198.984,93.864L198.692,94.314L198.693,94.318L198.694,94.887L199.381,96.28L199.736,96.452L200.031,96.03L200.7,96.584L200.89,96.826L200.557,97.783L200.853,97.904L200.467,98.388L200.632,98.821L200.293,99.444L199.84,99.012L199.425,99.949L199.081,99.977L198.775,99.994L198.83,101.088L198.478,101.29L198.925,101.639L198.062,101.708L198.439,102.146L198.657,102.514L198.215,102.839L198.117,103.407L196.751,103.514L194.999,103.644L194.518,103.676L195.435,102.229L196.065,101.513L195.946,100.842L195.503,100.21L195.159,100.231L193.245,100.34L192.134,100.402L190.316,100.503L188.822,100.584L188.592,100.588L187.404,100.633L185.01,100.743L184.857,100.75L182.826,100.828L181.542,100.877L181.101,100.892L178.744,100.961L178.629,100.967L177.192,101.002L175.696,101.038L174.565,101.062L171.671,101.105L171.654,99.967L171.644,99.297L171.621,97.722L171.616,97.333L171.588,95.423L171.605,95.252L171.557,93.291L171.555,93.16L171.538,90.693L171.555,90.536L171.522,88.309L171.513,87.709L171.506,85.941L171.495,85.206L171.476,83.871L171.469,83.401L171.501,83.092L170.61,82.835L169.993,82.224L169.596,81.355L168.889,80.587L169.14,79.974L170.025,78.629L169.433,78.112L169.197,78.337L168.352,78.072L167.799,77.436L167.285,77.189L167.392,76.679L166.566,75.676L166.548,75.654L165.759,73.905L165.486,73.488L167.462,73.512L168.332,73.516L169.783,73.527L171.216,73.534L172.013,73.529L173.228,73.497L174.315,73.461L175.529,73.409L176.634,73.364L177.559,73.339L178.953,73.273L180.891,73.173L181.271,73.149L182.718,73.056L183.587,73L184.78,72.91Z" + }, + { + "fill": "rgb(174, 223, 182)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.073; geo: [object Object]; name: Montana", + "shape": "M84.254,9.379L85.823,9.689L92.483,10.882L96.537,11.566L98.86,11.929L104.382,12.744L109.913,13.505L114.596,14.077L119.316,14.615L123.995,15.089L128.472,15.486L128.267,17.903L128.129,19.523L127.925,22.129L127.587,26.104L127.549,26.55L127.16,31.135L127.104,31.805L126.956,33.545L126.767,35.774L126.731,36.198L126.368,40.672L126.161,42.106L121.54,41.668L121.303,41.645L116.883,41.246L115.767,41.127L111.883,40.667L108.021,40.165L106.434,39.976L104.682,39.738L99.16,38.955L94.896,38.38L93.327,38.067L92.905,40.28L92.751,41.569L92.001,40.731L92.098,40.451L91.496,39.471L91.012,39.681L90.667,40.616L90.146,40.622L89.138,40.732L88.98,40.331L87.817,40.431L87.165,39.978L86.647,40.163L86.417,40.68L86.048,40.403L84.603,40.115L84.305,40.807L83.515,40.162L83.589,39.654L83.379,38.225L82.82,37.487L82.338,37.656L81.819,36.44L82.157,35.923L81.29,34.19L81.088,33.165L81.169,31.827L80.703,31.126L78.517,32.311L78.072,31.511L77.632,31.472L78.145,30.531L77.898,30.045L78.874,29.43L78.564,28.661L80.123,24.436L78.901,24.375L78.662,23.624L77.589,22.578L77.638,22.083L77.282,21.766L76.883,20.586L76.445,20.101L76.456,19.639L75.75,19.321L75.526,18.787L74.705,18.146L75.377,17.896L74.883,17.302L75.246,17.086L75.245,16.376L74.843,15.911L74.183,14.246L74.512,12.706L74.926,10.849L75.619,7.613L81.368,8.802Z" + }, + { + "fill": "rgb(183, 227, 182)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.067; geo: [object Object]; name: Montana", + "shape": "M84.254,9.379L85.823,9.689L92.483,10.882L96.537,11.566L98.86,11.929L104.382,12.744L109.913,13.505L114.596,14.077L119.316,14.615L123.995,15.089L128.472,15.486L128.267,17.903L128.129,19.523L127.925,22.129L127.587,26.104L127.549,26.55L127.16,31.135L127.104,31.805L126.956,33.545L126.767,35.774L126.731,36.198L126.368,40.672L126.161,42.106L121.54,41.668L121.303,41.645L116.883,41.246L115.767,41.127L111.883,40.667L108.021,40.165L106.434,39.976L104.682,39.738L99.16,38.955L94.896,38.38L93.327,38.067L92.905,40.28L92.751,41.569L92.001,40.731L92.098,40.451L91.496,39.471L91.012,39.681L90.667,40.616L90.146,40.622L89.138,40.732L88.98,40.331L87.817,40.431L87.165,39.978L86.647,40.163L86.417,40.68L86.048,40.403L84.603,40.115L84.305,40.807L83.515,40.162L83.589,39.654L83.379,38.225L82.82,37.487L82.338,37.656L81.819,36.44L82.157,35.923L81.29,34.19L81.088,33.165L81.169,31.827L80.703,31.126L78.517,32.311L78.072,31.511L77.632,31.472L78.145,30.531L77.898,30.045L78.874,29.43L78.564,28.661L80.123,24.436L78.901,24.375L78.662,23.624L77.589,22.578L77.638,22.083L77.282,21.766L76.883,20.586L76.445,20.101L76.456,19.639L75.75,19.321L75.526,18.787L74.705,18.146L75.377,17.896L74.883,17.302L75.246,17.086L75.245,16.376L74.843,15.911L74.183,14.246L74.512,12.706L74.926,10.849L75.619,7.613L81.368,8.802Z" + }, + { + "fill": "rgb(94, 192, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.128; geo: [object Object]; name: Montana", + "shape": "M84.254,9.379L85.823,9.689L92.483,10.882L96.537,11.566L98.86,11.929L104.382,12.744L109.913,13.505L114.596,14.077L119.316,14.615L123.995,15.089L128.472,15.486L128.267,17.903L128.129,19.523L127.925,22.129L127.587,26.104L127.549,26.55L127.16,31.135L127.104,31.805L126.956,33.545L126.767,35.774L126.731,36.198L126.368,40.672L126.161,42.106L121.54,41.668L121.303,41.645L116.883,41.246L115.767,41.127L111.883,40.667L108.021,40.165L106.434,39.976L104.682,39.738L99.16,38.955L94.896,38.38L93.327,38.067L92.905,40.28L92.751,41.569L92.001,40.731L92.098,40.451L91.496,39.471L91.012,39.681L90.667,40.616L90.146,40.622L89.138,40.732L88.98,40.331L87.817,40.431L87.165,39.978L86.647,40.163L86.417,40.68L86.048,40.403L84.603,40.115L84.305,40.807L83.515,40.162L83.589,39.654L83.379,38.225L82.82,37.487L82.338,37.656L81.819,36.44L82.157,35.923L81.29,34.19L81.088,33.165L81.169,31.827L80.703,31.126L78.517,32.311L78.072,31.511L77.632,31.472L78.145,30.531L77.898,30.045L78.874,29.43L78.564,28.661L80.123,24.436L78.901,24.375L78.662,23.624L77.589,22.578L77.638,22.083L77.282,21.766L76.883,20.586L76.445,20.101L76.456,19.639L75.75,19.321L75.526,18.787L74.705,18.146L75.377,17.896L74.883,17.302L75.246,17.086L75.245,16.376L74.843,15.911L74.183,14.246L74.512,12.706L74.926,10.849L75.619,7.613L81.368,8.802Z" + }, + { + "fill": "rgb(107, 198, 190)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.118; geo: [object Object]; name: Montana", + "shape": "M84.254,9.379L85.823,9.689L92.483,10.882L96.537,11.566L98.86,11.929L104.382,12.744L109.913,13.505L114.596,14.077L119.316,14.615L123.995,15.089L128.472,15.486L128.267,17.903L128.129,19.523L127.925,22.129L127.587,26.104L127.549,26.55L127.16,31.135L127.104,31.805L126.956,33.545L126.767,35.774L126.731,36.198L126.368,40.672L126.161,42.106L121.54,41.668L121.303,41.645L116.883,41.246L115.767,41.127L111.883,40.667L108.021,40.165L106.434,39.976L104.682,39.738L99.16,38.955L94.896,38.38L93.327,38.067L92.905,40.28L92.751,41.569L92.001,40.731L92.098,40.451L91.496,39.471L91.012,39.681L90.667,40.616L90.146,40.622L89.138,40.732L88.98,40.331L87.817,40.431L87.165,39.978L86.647,40.163L86.417,40.68L86.048,40.403L84.603,40.115L84.305,40.807L83.515,40.162L83.589,39.654L83.379,38.225L82.82,37.487L82.338,37.656L81.819,36.44L82.157,35.923L81.29,34.19L81.088,33.165L81.169,31.827L80.703,31.126L78.517,32.311L78.072,31.511L77.632,31.472L78.145,30.531L77.898,30.045L78.874,29.43L78.564,28.661L80.123,24.436L78.901,24.375L78.662,23.624L77.589,22.578L77.638,22.083L77.282,21.766L76.883,20.586L76.445,20.101L76.456,19.639L75.75,19.321L75.526,18.787L74.705,18.146L75.377,17.896L74.883,17.302L75.246,17.086L75.245,16.376L74.843,15.911L74.183,14.246L74.512,12.706L74.926,10.849L75.619,7.613L81.368,8.802Z" + }, + { + "fill": "rgb(68, 179, 194)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.149; geo: [object Object]; name: Montana", + "shape": "M84.254,9.379L85.823,9.689L92.483,10.882L96.537,11.566L98.86,11.929L104.382,12.744L109.913,13.505L114.596,14.077L119.316,14.615L123.995,15.089L128.472,15.486L128.267,17.903L128.129,19.523L127.925,22.129L127.587,26.104L127.549,26.55L127.16,31.135L127.104,31.805L126.956,33.545L126.767,35.774L126.731,36.198L126.368,40.672L126.161,42.106L121.54,41.668L121.303,41.645L116.883,41.246L115.767,41.127L111.883,40.667L108.021,40.165L106.434,39.976L104.682,39.738L99.16,38.955L94.896,38.38L93.327,38.067L92.905,40.28L92.751,41.569L92.001,40.731L92.098,40.451L91.496,39.471L91.012,39.681L90.667,40.616L90.146,40.622L89.138,40.732L88.98,40.331L87.817,40.431L87.165,39.978L86.647,40.163L86.417,40.68L86.048,40.403L84.603,40.115L84.305,40.807L83.515,40.162L83.589,39.654L83.379,38.225L82.82,37.487L82.338,37.656L81.819,36.44L82.157,35.923L81.29,34.19L81.088,33.165L81.169,31.827L80.703,31.126L78.517,32.311L78.072,31.511L77.632,31.472L78.145,30.531L77.898,30.045L78.874,29.43L78.564,28.661L80.123,24.436L78.901,24.375L78.662,23.624L77.589,22.578L77.638,22.083L77.282,21.766L76.883,20.586L76.445,20.101L76.456,19.639L75.75,19.321L75.526,18.787L74.705,18.146L75.377,17.896L74.883,17.302L75.246,17.086L75.245,16.376L74.843,15.911L74.183,14.246L74.512,12.706L74.926,10.849L75.619,7.613L81.368,8.802Z" + }, + { + "fill": "rgb(113, 200, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.114; geo: [object Object]; name: Montana", + "shape": "M84.254,9.379L85.823,9.689L92.483,10.882L96.537,11.566L98.86,11.929L104.382,12.744L109.913,13.505L114.596,14.077L119.316,14.615L123.995,15.089L128.472,15.486L128.267,17.903L128.129,19.523L127.925,22.129L127.587,26.104L127.549,26.55L127.16,31.135L127.104,31.805L126.956,33.545L126.767,35.774L126.731,36.198L126.368,40.672L126.161,42.106L121.54,41.668L121.303,41.645L116.883,41.246L115.767,41.127L111.883,40.667L108.021,40.165L106.434,39.976L104.682,39.738L99.16,38.955L94.896,38.38L93.327,38.067L92.905,40.28L92.751,41.569L92.001,40.731L92.098,40.451L91.496,39.471L91.012,39.681L90.667,40.616L90.146,40.622L89.138,40.732L88.98,40.331L87.817,40.431L87.165,39.978L86.647,40.163L86.417,40.68L86.048,40.403L84.603,40.115L84.305,40.807L83.515,40.162L83.589,39.654L83.379,38.225L82.82,37.487L82.338,37.656L81.819,36.44L82.157,35.923L81.29,34.19L81.088,33.165L81.169,31.827L80.703,31.126L78.517,32.311L78.072,31.511L77.632,31.472L78.145,30.531L77.898,30.045L78.874,29.43L78.564,28.661L80.123,24.436L78.901,24.375L78.662,23.624L77.589,22.578L77.638,22.083L77.282,21.766L76.883,20.586L76.445,20.101L76.456,19.639L75.75,19.321L75.526,18.787L74.705,18.146L75.377,17.896L74.883,17.302L75.246,17.086L75.245,16.376L74.843,15.911L74.183,14.246L74.512,12.706L74.926,10.849L75.619,7.613L81.368,8.802Z" + }, + { + "fill": "rgb(37, 140, 187)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.194; geo: [object Object]; name: Montana", + "shape": "M84.254,9.379L85.823,9.689L92.483,10.882L96.537,11.566L98.86,11.929L104.382,12.744L109.913,13.505L114.596,14.077L119.316,14.615L123.995,15.089L128.472,15.486L128.267,17.903L128.129,19.523L127.925,22.129L127.587,26.104L127.549,26.55L127.16,31.135L127.104,31.805L126.956,33.545L126.767,35.774L126.731,36.198L126.368,40.672L126.161,42.106L121.54,41.668L121.303,41.645L116.883,41.246L115.767,41.127L111.883,40.667L108.021,40.165L106.434,39.976L104.682,39.738L99.16,38.955L94.896,38.38L93.327,38.067L92.905,40.28L92.751,41.569L92.001,40.731L92.098,40.451L91.496,39.471L91.012,39.681L90.667,40.616L90.146,40.622L89.138,40.732L88.98,40.331L87.817,40.431L87.165,39.978L86.647,40.163L86.417,40.68L86.048,40.403L84.603,40.115L84.305,40.807L83.515,40.162L83.589,39.654L83.379,38.225L82.82,37.487L82.338,37.656L81.819,36.44L82.157,35.923L81.29,34.19L81.088,33.165L81.169,31.827L80.703,31.126L78.517,32.311L78.072,31.511L77.632,31.472L78.145,30.531L77.898,30.045L78.874,29.43L78.564,28.661L80.123,24.436L78.901,24.375L78.662,23.624L77.589,22.578L77.638,22.083L77.282,21.766L76.883,20.586L76.445,20.101L76.456,19.639L75.75,19.321L75.526,18.787L74.705,18.146L75.377,17.896L74.883,17.302L75.246,17.086L75.245,16.376L74.843,15.911L74.183,14.246L74.512,12.706L74.926,10.849L75.619,7.613L81.368,8.802Z" + }, + { + "fill": "rgb(130, 206, 187)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.103; geo: [object Object]; name: Montana", + "shape": "M84.254,9.379L85.823,9.689L92.483,10.882L96.537,11.566L98.86,11.929L104.382,12.744L109.913,13.505L114.596,14.077L119.316,14.615L123.995,15.089L128.472,15.486L128.267,17.903L128.129,19.523L127.925,22.129L127.587,26.104L127.549,26.55L127.16,31.135L127.104,31.805L126.956,33.545L126.767,35.774L126.731,36.198L126.368,40.672L126.161,42.106L121.54,41.668L121.303,41.645L116.883,41.246L115.767,41.127L111.883,40.667L108.021,40.165L106.434,39.976L104.682,39.738L99.16,38.955L94.896,38.38L93.327,38.067L92.905,40.28L92.751,41.569L92.001,40.731L92.098,40.451L91.496,39.471L91.012,39.681L90.667,40.616L90.146,40.622L89.138,40.732L88.98,40.331L87.817,40.431L87.165,39.978L86.647,40.163L86.417,40.68L86.048,40.403L84.603,40.115L84.305,40.807L83.515,40.162L83.589,39.654L83.379,38.225L82.82,37.487L82.338,37.656L81.819,36.44L82.157,35.923L81.29,34.19L81.088,33.165L81.169,31.827L80.703,31.126L78.517,32.311L78.072,31.511L77.632,31.472L78.145,30.531L77.898,30.045L78.874,29.43L78.564,28.661L80.123,24.436L78.901,24.375L78.662,23.624L77.589,22.578L77.638,22.083L77.282,21.766L76.883,20.586L76.445,20.101L76.456,19.639L75.75,19.321L75.526,18.787L74.705,18.146L75.377,17.896L74.883,17.302L75.246,17.086L75.245,16.376L74.843,15.911L74.183,14.246L74.512,12.706L74.926,10.849L75.619,7.613L81.368,8.802Z" + }, + { + "fill": "rgb(225, 243, 183)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.026; geo: [object Object]; name: Montana", + "shape": "M84.254,9.379L85.823,9.689L92.483,10.882L96.537,11.566L98.86,11.929L104.382,12.744L109.913,13.505L114.596,14.077L119.316,14.615L123.995,15.089L128.472,15.486L128.267,17.903L128.129,19.523L127.925,22.129L127.587,26.104L127.549,26.55L127.16,31.135L127.104,31.805L126.956,33.545L126.767,35.774L126.731,36.198L126.368,40.672L126.161,42.106L121.54,41.668L121.303,41.645L116.883,41.246L115.767,41.127L111.883,40.667L108.021,40.165L106.434,39.976L104.682,39.738L99.16,38.955L94.896,38.38L93.327,38.067L92.905,40.28L92.751,41.569L92.001,40.731L92.098,40.451L91.496,39.471L91.012,39.681L90.667,40.616L90.146,40.622L89.138,40.732L88.98,40.331L87.817,40.431L87.165,39.978L86.647,40.163L86.417,40.68L86.048,40.403L84.603,40.115L84.305,40.807L83.515,40.162L83.589,39.654L83.379,38.225L82.82,37.487L82.338,37.656L81.819,36.44L82.157,35.923L81.29,34.19L81.088,33.165L81.169,31.827L80.703,31.126L78.517,32.311L78.072,31.511L77.632,31.472L78.145,30.531L77.898,30.045L78.874,29.43L78.564,28.661L80.123,24.436L78.901,24.375L78.662,23.624L77.589,22.578L77.638,22.083L77.282,21.766L76.883,20.586L76.445,20.101L76.456,19.639L75.75,19.321L75.526,18.787L74.705,18.146L75.377,17.896L74.883,17.302L75.246,17.086L75.245,16.376L74.843,15.911L74.183,14.246L74.512,12.706L74.926,10.849L75.619,7.613L81.368,8.802Z" + }, + { + "fill": "rgb(225, 243, 183)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.026; geo: [object Object]; name: Montana", + "shape": "M84.254,9.379L85.823,9.689L92.483,10.882L96.537,11.566L98.86,11.929L104.382,12.744L109.913,13.505L114.596,14.077L119.316,14.615L123.995,15.089L128.472,15.486L128.267,17.903L128.129,19.523L127.925,22.129L127.587,26.104L127.549,26.55L127.16,31.135L127.104,31.805L126.956,33.545L126.767,35.774L126.731,36.198L126.368,40.672L126.161,42.106L121.54,41.668L121.303,41.645L116.883,41.246L115.767,41.127L111.883,40.667L108.021,40.165L106.434,39.976L104.682,39.738L99.16,38.955L94.896,38.38L93.327,38.067L92.905,40.28L92.751,41.569L92.001,40.731L92.098,40.451L91.496,39.471L91.012,39.681L90.667,40.616L90.146,40.622L89.138,40.732L88.98,40.331L87.817,40.431L87.165,39.978L86.647,40.163L86.417,40.68L86.048,40.403L84.603,40.115L84.305,40.807L83.515,40.162L83.589,39.654L83.379,38.225L82.82,37.487L82.338,37.656L81.819,36.44L82.157,35.923L81.29,34.19L81.088,33.165L81.169,31.827L80.703,31.126L78.517,32.311L78.072,31.511L77.632,31.472L78.145,30.531L77.898,30.045L78.874,29.43L78.564,28.661L80.123,24.436L78.901,24.375L78.662,23.624L77.589,22.578L77.638,22.083L77.282,21.766L76.883,20.586L76.445,20.101L76.456,19.639L75.75,19.321L75.526,18.787L74.705,18.146L75.377,17.896L74.883,17.302L75.246,17.086L75.245,16.376L74.843,15.911L74.183,14.246L74.512,12.706L74.926,10.849L75.619,7.613L81.368,8.802Z" + }, + { + "fill": "rgb(188, 229, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.063; geo: [object Object]; name: Nebraska", + "shape": "M138.804,56.483L143.824,56.729L147.061,56.864L148.409,56.912L152.103,57.02L153.011,57.826L153.776,58.142L153.776,58.134L154.345,58.662L154.821,58.588L155.325,57.967L156.305,58.105L157.042,58.128L157.903,58.021L158.617,58.487L159.317,58.752L160.35,59.15L160.858,59.517L161.186,60.371L162.102,60.608L162.418,60.951L162.239,61.57L162.538,62.05L162.536,62.468L162.977,63.155L162.94,63.601L163.65,64.096L163.613,64.829L163.969,65.265L163.683,66.064L163.825,67.051L164.308,67.255L164.612,68.039L164.936,68.733L164.685,69.394L164.901,69.601L164.884,70.302L164.902,70.324L165.228,71.352L165.139,72.144L164.869,72.57L165.486,73.488L165.759,73.905L166.548,75.654L166.566,75.676L167.392,76.679L167.285,77.189L167.799,77.436L167.653,77.437L165.368,77.444L164.235,77.445L163.083,77.443L161.932,77.436L160.195,77.42L159.629,77.415L157.326,77.388L155.023,77.345L154.457,77.334L152.721,77.292L151.552,77.266L150.419,77.235L148.683,77.182L148.117,77.164L145.834,77.085L143.021,76.97L142.948,76.967L140.174,76.833L140.082,76.828L137.199,76.671L136.761,76.65L133.495,76.446L133.644,74.109L133.683,73.496L133.794,71.758L133.816,71.41L133.925,69.702L131.084,69.512L130.905,69.5L127.274,69.231L126.304,69.155L123.915,68.961L124.139,66.323L124.237,65.168L124.313,64.268L124.487,62.224L124.835,58.122L125.06,55.478L127.728,55.726L130.172,55.913L131.185,55.986L134.645,56.224Z" + }, + { + "fill": "rgb(198, 233, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.054; geo: [object Object]; name: Nebraska", + "shape": "M138.804,56.483L143.824,56.729L147.061,56.864L148.409,56.912L152.103,57.02L153.011,57.826L153.776,58.142L153.776,58.134L154.345,58.662L154.821,58.588L155.325,57.967L156.305,58.105L157.042,58.128L157.903,58.021L158.617,58.487L159.317,58.752L160.35,59.15L160.858,59.517L161.186,60.371L162.102,60.608L162.418,60.951L162.239,61.57L162.538,62.05L162.536,62.468L162.977,63.155L162.94,63.601L163.65,64.096L163.613,64.829L163.969,65.265L163.683,66.064L163.825,67.051L164.308,67.255L164.612,68.039L164.936,68.733L164.685,69.394L164.901,69.601L164.884,70.302L164.902,70.324L165.228,71.352L165.139,72.144L164.869,72.57L165.486,73.488L165.759,73.905L166.548,75.654L166.566,75.676L167.392,76.679L167.285,77.189L167.799,77.436L167.653,77.437L165.368,77.444L164.235,77.445L163.083,77.443L161.932,77.436L160.195,77.42L159.629,77.415L157.326,77.388L155.023,77.345L154.457,77.334L152.721,77.292L151.552,77.266L150.419,77.235L148.683,77.182L148.117,77.164L145.834,77.085L143.021,76.97L142.948,76.967L140.174,76.833L140.082,76.828L137.199,76.671L136.761,76.65L133.495,76.446L133.644,74.109L133.683,73.496L133.794,71.758L133.816,71.41L133.925,69.702L131.084,69.512L130.905,69.5L127.274,69.231L126.304,69.155L123.915,68.961L124.139,66.323L124.237,65.168L124.313,64.268L124.487,62.224L124.835,58.122L125.06,55.478L127.728,55.726L130.172,55.913L131.185,55.986L134.645,56.224Z" + }, + { + "fill": "rgb(119, 202, 188)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.11; geo: [object Object]; name: Nebraska", + "shape": "M138.804,56.483L143.824,56.729L147.061,56.864L148.409,56.912L152.103,57.02L153.011,57.826L153.776,58.142L153.776,58.134L154.345,58.662L154.821,58.588L155.325,57.967L156.305,58.105L157.042,58.128L157.903,58.021L158.617,58.487L159.317,58.752L160.35,59.15L160.858,59.517L161.186,60.371L162.102,60.608L162.418,60.951L162.239,61.57L162.538,62.05L162.536,62.468L162.977,63.155L162.94,63.601L163.65,64.096L163.613,64.829L163.969,65.265L163.683,66.064L163.825,67.051L164.308,67.255L164.612,68.039L164.936,68.733L164.685,69.394L164.901,69.601L164.884,70.302L164.902,70.324L165.228,71.352L165.139,72.144L164.869,72.57L165.486,73.488L165.759,73.905L166.548,75.654L166.566,75.676L167.392,76.679L167.285,77.189L167.799,77.436L167.653,77.437L165.368,77.444L164.235,77.445L163.083,77.443L161.932,77.436L160.195,77.42L159.629,77.415L157.326,77.388L155.023,77.345L154.457,77.334L152.721,77.292L151.552,77.266L150.419,77.235L148.683,77.182L148.117,77.164L145.834,77.085L143.021,76.97L142.948,76.967L140.174,76.833L140.082,76.828L137.199,76.671L136.761,76.65L133.495,76.446L133.644,74.109L133.683,73.496L133.794,71.758L133.816,71.41L133.925,69.702L131.084,69.512L130.905,69.5L127.274,69.231L126.304,69.155L123.915,68.961L124.139,66.323L124.237,65.168L124.313,64.268L124.487,62.224L124.835,58.122L125.06,55.478L127.728,55.726L130.172,55.913L131.185,55.986L134.645,56.224Z" + }, + { + "fill": "rgb(119, 202, 188)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.11; geo: [object Object]; name: Nebraska", + "shape": "M138.804,56.483L143.824,56.729L147.061,56.864L148.409,56.912L152.103,57.02L153.011,57.826L153.776,58.142L153.776,58.134L154.345,58.662L154.821,58.588L155.325,57.967L156.305,58.105L157.042,58.128L157.903,58.021L158.617,58.487L159.317,58.752L160.35,59.15L160.858,59.517L161.186,60.371L162.102,60.608L162.418,60.951L162.239,61.57L162.538,62.05L162.536,62.468L162.977,63.155L162.94,63.601L163.65,64.096L163.613,64.829L163.969,65.265L163.683,66.064L163.825,67.051L164.308,67.255L164.612,68.039L164.936,68.733L164.685,69.394L164.901,69.601L164.884,70.302L164.902,70.324L165.228,71.352L165.139,72.144L164.869,72.57L165.486,73.488L165.759,73.905L166.548,75.654L166.566,75.676L167.392,76.679L167.285,77.189L167.799,77.436L167.653,77.437L165.368,77.444L164.235,77.445L163.083,77.443L161.932,77.436L160.195,77.42L159.629,77.415L157.326,77.388L155.023,77.345L154.457,77.334L152.721,77.292L151.552,77.266L150.419,77.235L148.683,77.182L148.117,77.164L145.834,77.085L143.021,76.97L142.948,76.967L140.174,76.833L140.082,76.828L137.199,76.671L136.761,76.65L133.495,76.446L133.644,74.109L133.683,73.496L133.794,71.758L133.816,71.41L133.925,69.702L131.084,69.512L130.905,69.5L127.274,69.231L126.304,69.155L123.915,68.961L124.139,66.323L124.237,65.168L124.313,64.268L124.487,62.224L124.835,58.122L125.06,55.478L127.728,55.726L130.172,55.913L131.185,55.986L134.645,56.224Z" + }, + { + "fill": "rgb(68, 179, 194)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.149; geo: [object Object]; name: Nebraska", + "shape": "M138.804,56.483L143.824,56.729L147.061,56.864L148.409,56.912L152.103,57.02L153.011,57.826L153.776,58.142L153.776,58.134L154.345,58.662L154.821,58.588L155.325,57.967L156.305,58.105L157.042,58.128L157.903,58.021L158.617,58.487L159.317,58.752L160.35,59.15L160.858,59.517L161.186,60.371L162.102,60.608L162.418,60.951L162.239,61.57L162.538,62.05L162.536,62.468L162.977,63.155L162.94,63.601L163.65,64.096L163.613,64.829L163.969,65.265L163.683,66.064L163.825,67.051L164.308,67.255L164.612,68.039L164.936,68.733L164.685,69.394L164.901,69.601L164.884,70.302L164.902,70.324L165.228,71.352L165.139,72.144L164.869,72.57L165.486,73.488L165.759,73.905L166.548,75.654L166.566,75.676L167.392,76.679L167.285,77.189L167.799,77.436L167.653,77.437L165.368,77.444L164.235,77.445L163.083,77.443L161.932,77.436L160.195,77.42L159.629,77.415L157.326,77.388L155.023,77.345L154.457,77.334L152.721,77.292L151.552,77.266L150.419,77.235L148.683,77.182L148.117,77.164L145.834,77.085L143.021,76.97L142.948,76.967L140.174,76.833L140.082,76.828L137.199,76.671L136.761,76.65L133.495,76.446L133.644,74.109L133.683,73.496L133.794,71.758L133.816,71.41L133.925,69.702L131.084,69.512L130.905,69.5L127.274,69.231L126.304,69.155L123.915,68.961L124.139,66.323L124.237,65.168L124.313,64.268L124.487,62.224L124.835,58.122L125.06,55.478L127.728,55.726L130.172,55.913L131.185,55.986L134.645,56.224Z" + }, + { + "fill": "rgb(93, 191, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.129; geo: [object Object]; name: Nebraska", + "shape": "M138.804,56.483L143.824,56.729L147.061,56.864L148.409,56.912L152.103,57.02L153.011,57.826L153.776,58.142L153.776,58.134L154.345,58.662L154.821,58.588L155.325,57.967L156.305,58.105L157.042,58.128L157.903,58.021L158.617,58.487L159.317,58.752L160.35,59.15L160.858,59.517L161.186,60.371L162.102,60.608L162.418,60.951L162.239,61.57L162.538,62.05L162.536,62.468L162.977,63.155L162.94,63.601L163.65,64.096L163.613,64.829L163.969,65.265L163.683,66.064L163.825,67.051L164.308,67.255L164.612,68.039L164.936,68.733L164.685,69.394L164.901,69.601L164.884,70.302L164.902,70.324L165.228,71.352L165.139,72.144L164.869,72.57L165.486,73.488L165.759,73.905L166.548,75.654L166.566,75.676L167.392,76.679L167.285,77.189L167.799,77.436L167.653,77.437L165.368,77.444L164.235,77.445L163.083,77.443L161.932,77.436L160.195,77.42L159.629,77.415L157.326,77.388L155.023,77.345L154.457,77.334L152.721,77.292L151.552,77.266L150.419,77.235L148.683,77.182L148.117,77.164L145.834,77.085L143.021,76.97L142.948,76.967L140.174,76.833L140.082,76.828L137.199,76.671L136.761,76.65L133.495,76.446L133.644,74.109L133.683,73.496L133.794,71.758L133.816,71.41L133.925,69.702L131.084,69.512L130.905,69.5L127.274,69.231L126.304,69.155L123.915,68.961L124.139,66.323L124.237,65.168L124.313,64.268L124.487,62.224L124.835,58.122L125.06,55.478L127.728,55.726L130.172,55.913L131.185,55.986L134.645,56.224Z" + }, + { + "fill": "rgb(35, 134, 185)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.2; geo: [object Object]; name: Nebraska", + "shape": "M138.804,56.483L143.824,56.729L147.061,56.864L148.409,56.912L152.103,57.02L153.011,57.826L153.776,58.142L153.776,58.134L154.345,58.662L154.821,58.588L155.325,57.967L156.305,58.105L157.042,58.128L157.903,58.021L158.617,58.487L159.317,58.752L160.35,59.15L160.858,59.517L161.186,60.371L162.102,60.608L162.418,60.951L162.239,61.57L162.538,62.05L162.536,62.468L162.977,63.155L162.94,63.601L163.65,64.096L163.613,64.829L163.969,65.265L163.683,66.064L163.825,67.051L164.308,67.255L164.612,68.039L164.936,68.733L164.685,69.394L164.901,69.601L164.884,70.302L164.902,70.324L165.228,71.352L165.139,72.144L164.869,72.57L165.486,73.488L165.759,73.905L166.548,75.654L166.566,75.676L167.392,76.679L167.285,77.189L167.799,77.436L167.653,77.437L165.368,77.444L164.235,77.445L163.083,77.443L161.932,77.436L160.195,77.42L159.629,77.415L157.326,77.388L155.023,77.345L154.457,77.334L152.721,77.292L151.552,77.266L150.419,77.235L148.683,77.182L148.117,77.164L145.834,77.085L143.021,76.97L142.948,76.967L140.174,76.833L140.082,76.828L137.199,76.671L136.761,76.65L133.495,76.446L133.644,74.109L133.683,73.496L133.794,71.758L133.816,71.41L133.925,69.702L131.084,69.512L130.905,69.5L127.274,69.231L126.304,69.155L123.915,68.961L124.139,66.323L124.237,65.168L124.313,64.268L124.487,62.224L124.835,58.122L125.06,55.478L127.728,55.726L130.172,55.913L131.185,55.986L134.645,56.224Z" + }, + { + "fill": "rgb(105, 197, 190)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.119; geo: [object Object]; name: Nebraska", + "shape": "M138.804,56.483L143.824,56.729L147.061,56.864L148.409,56.912L152.103,57.02L153.011,57.826L153.776,58.142L153.776,58.134L154.345,58.662L154.821,58.588L155.325,57.967L156.305,58.105L157.042,58.128L157.903,58.021L158.617,58.487L159.317,58.752L160.35,59.15L160.858,59.517L161.186,60.371L162.102,60.608L162.418,60.951L162.239,61.57L162.538,62.05L162.536,62.468L162.977,63.155L162.94,63.601L163.65,64.096L163.613,64.829L163.969,65.265L163.683,66.064L163.825,67.051L164.308,67.255L164.612,68.039L164.936,68.733L164.685,69.394L164.901,69.601L164.884,70.302L164.902,70.324L165.228,71.352L165.139,72.144L164.869,72.57L165.486,73.488L165.759,73.905L166.548,75.654L166.566,75.676L167.392,76.679L167.285,77.189L167.799,77.436L167.653,77.437L165.368,77.444L164.235,77.445L163.083,77.443L161.932,77.436L160.195,77.42L159.629,77.415L157.326,77.388L155.023,77.345L154.457,77.334L152.721,77.292L151.552,77.266L150.419,77.235L148.683,77.182L148.117,77.164L145.834,77.085L143.021,76.97L142.948,76.967L140.174,76.833L140.082,76.828L137.199,76.671L136.761,76.65L133.495,76.446L133.644,74.109L133.683,73.496L133.794,71.758L133.816,71.41L133.925,69.702L131.084,69.512L130.905,69.5L127.274,69.231L126.304,69.155L123.915,68.961L124.139,66.323L124.237,65.168L124.313,64.268L124.487,62.224L124.835,58.122L125.06,55.478L127.728,55.726L130.172,55.913L131.185,55.986L134.645,56.224Z" + }, + { + "fill": "rgb(218, 241, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.035; geo: [object Object]; name: Nebraska", + "shape": "M138.804,56.483L143.824,56.729L147.061,56.864L148.409,56.912L152.103,57.02L153.011,57.826L153.776,58.142L153.776,58.134L154.345,58.662L154.821,58.588L155.325,57.967L156.305,58.105L157.042,58.128L157.903,58.021L158.617,58.487L159.317,58.752L160.35,59.15L160.858,59.517L161.186,60.371L162.102,60.608L162.418,60.951L162.239,61.57L162.538,62.05L162.536,62.468L162.977,63.155L162.94,63.601L163.65,64.096L163.613,64.829L163.969,65.265L163.683,66.064L163.825,67.051L164.308,67.255L164.612,68.039L164.936,68.733L164.685,69.394L164.901,69.601L164.884,70.302L164.902,70.324L165.228,71.352L165.139,72.144L164.869,72.57L165.486,73.488L165.759,73.905L166.548,75.654L166.566,75.676L167.392,76.679L167.285,77.189L167.799,77.436L167.653,77.437L165.368,77.444L164.235,77.445L163.083,77.443L161.932,77.436L160.195,77.42L159.629,77.415L157.326,77.388L155.023,77.345L154.457,77.334L152.721,77.292L151.552,77.266L150.419,77.235L148.683,77.182L148.117,77.164L145.834,77.085L143.021,76.97L142.948,76.967L140.174,76.833L140.082,76.828L137.199,76.671L136.761,76.65L133.495,76.446L133.644,74.109L133.683,73.496L133.794,71.758L133.816,71.41L133.925,69.702L131.084,69.512L130.905,69.5L127.274,69.231L126.304,69.155L123.915,68.961L124.139,66.323L124.237,65.168L124.313,64.268L124.487,62.224L124.835,58.122L125.06,55.478L127.728,55.726L130.172,55.913L131.185,55.986L134.645,56.224Z" + }, + { + "fill": "rgb(221, 242, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.032; geo: [object Object]; name: Nebraska", + "shape": "M138.804,56.483L143.824,56.729L147.061,56.864L148.409,56.912L152.103,57.02L153.011,57.826L153.776,58.142L153.776,58.134L154.345,58.662L154.821,58.588L155.325,57.967L156.305,58.105L157.042,58.128L157.903,58.021L158.617,58.487L159.317,58.752L160.35,59.15L160.858,59.517L161.186,60.371L162.102,60.608L162.418,60.951L162.239,61.57L162.538,62.05L162.536,62.468L162.977,63.155L162.94,63.601L163.65,64.096L163.613,64.829L163.969,65.265L163.683,66.064L163.825,67.051L164.308,67.255L164.612,68.039L164.936,68.733L164.685,69.394L164.901,69.601L164.884,70.302L164.902,70.324L165.228,71.352L165.139,72.144L164.869,72.57L165.486,73.488L165.759,73.905L166.548,75.654L166.566,75.676L167.392,76.679L167.285,77.189L167.799,77.436L167.653,77.437L165.368,77.444L164.235,77.445L163.083,77.443L161.932,77.436L160.195,77.42L159.629,77.415L157.326,77.388L155.023,77.345L154.457,77.334L152.721,77.292L151.552,77.266L150.419,77.235L148.683,77.182L148.117,77.164L145.834,77.085L143.021,76.97L142.948,76.967L140.174,76.833L140.082,76.828L137.199,76.671L136.761,76.65L133.495,76.446L133.644,74.109L133.683,73.496L133.794,71.758L133.816,71.41L133.925,69.702L131.084,69.512L130.905,69.5L127.274,69.231L126.304,69.155L123.915,68.961L124.139,66.323L124.237,65.168L124.313,64.268L124.487,62.224L124.835,58.122L125.06,55.478L127.728,55.726L130.172,55.913L131.185,55.986L134.645,56.224Z" + }, + { + "fill": "rgb(181, 226, 182)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.068; geo: [object Object]; name: Nevada", + "shape": "M74.351,55.289L75.52,55.515L74.252,62.112L73.089,67.974L72.82,69.373L72.356,71.788L71.249,77.547L71.097,78.237L70.573,81.063L69.859,84.676L69.087,88.696L68.885,89.742L68.092,94.076L67.325,95.099L66.857,95.078L66.104,94.008L64.961,93.827L64.213,94.031L64.13,94.745L64.415,95.584L63.967,96.644L64.117,97.282L63.828,98.037L64.06,99.269L63.927,100.543L63.421,101.384L59.104,94.911L58.104,93.38L52.863,85.504L50.171,81.453L47.815,77.892L44.953,73.573L44.282,72.562L43.304,71.104L42.041,69.216L41.685,68.666L41.783,68.21L41.86,67.914L41.949,67.569L42.185,66.578L42.427,65.716L42.908,63.925L45.38,54.344L46.75,49.035L49.812,49.825L49.985,49.868L55.41,51.171L61.058,52.455L61.107,52.478L67.146,53.805L70.678,54.539Z" + }, + { + "fill": "rgb(203, 235, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.049; geo: [object Object]; name: Nevada", + "shape": "M74.351,55.289L75.52,55.515L74.252,62.112L73.089,67.974L72.82,69.373L72.356,71.788L71.249,77.547L71.097,78.237L70.573,81.063L69.859,84.676L69.087,88.696L68.885,89.742L68.092,94.076L67.325,95.099L66.857,95.078L66.104,94.008L64.961,93.827L64.213,94.031L64.13,94.745L64.415,95.584L63.967,96.644L64.117,97.282L63.828,98.037L64.06,99.269L63.927,100.543L63.421,101.384L59.104,94.911L58.104,93.38L52.863,85.504L50.171,81.453L47.815,77.892L44.953,73.573L44.282,72.562L43.304,71.104L42.041,69.216L41.685,68.666L41.783,68.21L41.86,67.914L41.949,67.569L42.185,66.578L42.427,65.716L42.908,63.925L45.38,54.344L46.75,49.035L49.812,49.825L49.985,49.868L55.41,51.171L61.058,52.455L61.107,52.478L67.146,53.805L70.678,54.539Z" + }, + { + "fill": "rgb(120, 203, 188)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.109; geo: [object Object]; name: Nevada", + "shape": "M74.351,55.289L75.52,55.515L74.252,62.112L73.089,67.974L72.82,69.373L72.356,71.788L71.249,77.547L71.097,78.237L70.573,81.063L69.859,84.676L69.087,88.696L68.885,89.742L68.092,94.076L67.325,95.099L66.857,95.078L66.104,94.008L64.961,93.827L64.213,94.031L64.13,94.745L64.415,95.584L63.967,96.644L64.117,97.282L63.828,98.037L64.06,99.269L63.927,100.543L63.421,101.384L59.104,94.911L58.104,93.38L52.863,85.504L50.171,81.453L47.815,77.892L44.953,73.573L44.282,72.562L43.304,71.104L42.041,69.216L41.685,68.666L41.783,68.21L41.86,67.914L41.949,67.569L42.185,66.578L42.427,65.716L42.908,63.925L45.38,54.344L46.75,49.035L49.812,49.825L49.985,49.868L55.41,51.171L61.058,52.455L61.107,52.478L67.146,53.805L70.678,54.539Z" + }, + { + "fill": "rgb(116, 201, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.112; geo: [object Object]; name: Nevada", + "shape": "M74.351,55.289L75.52,55.515L74.252,62.112L73.089,67.974L72.82,69.373L72.356,71.788L71.249,77.547L71.097,78.237L70.573,81.063L69.859,84.676L69.087,88.696L68.885,89.742L68.092,94.076L67.325,95.099L66.857,95.078L66.104,94.008L64.961,93.827L64.213,94.031L64.13,94.745L64.415,95.584L63.967,96.644L64.117,97.282L63.828,98.037L64.06,99.269L63.927,100.543L63.421,101.384L59.104,94.911L58.104,93.38L52.863,85.504L50.171,81.453L47.815,77.892L44.953,73.573L44.282,72.562L43.304,71.104L42.041,69.216L41.685,68.666L41.783,68.21L41.86,67.914L41.949,67.569L42.185,66.578L42.427,65.716L42.908,63.925L45.38,54.344L46.75,49.035L49.812,49.825L49.985,49.868L55.41,51.171L61.058,52.455L61.107,52.478L67.146,53.805L70.678,54.539Z" + }, + { + "fill": "rgb(64, 176, 194)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.153; geo: [object Object]; name: Nevada", + "shape": "M74.351,55.289L75.52,55.515L74.252,62.112L73.089,67.974L72.82,69.373L72.356,71.788L71.249,77.547L71.097,78.237L70.573,81.063L69.859,84.676L69.087,88.696L68.885,89.742L68.092,94.076L67.325,95.099L66.857,95.078L66.104,94.008L64.961,93.827L64.213,94.031L64.13,94.745L64.415,95.584L63.967,96.644L64.117,97.282L63.828,98.037L64.06,99.269L63.927,100.543L63.421,101.384L59.104,94.911L58.104,93.38L52.863,85.504L50.171,81.453L47.815,77.892L44.953,73.573L44.282,72.562L43.304,71.104L42.041,69.216L41.685,68.666L41.783,68.21L41.86,67.914L41.949,67.569L42.185,66.578L42.427,65.716L42.908,63.925L45.38,54.344L46.75,49.035L49.812,49.825L49.985,49.868L55.41,51.171L61.058,52.455L61.107,52.478L67.146,53.805L70.678,54.539Z" + }, + { + "fill": "rgb(103, 196, 190)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.121; geo: [object Object]; name: Nevada", + "shape": "M74.351,55.289L75.52,55.515L74.252,62.112L73.089,67.974L72.82,69.373L72.356,71.788L71.249,77.547L71.097,78.237L70.573,81.063L69.859,84.676L69.087,88.696L68.885,89.742L68.092,94.076L67.325,95.099L66.857,95.078L66.104,94.008L64.961,93.827L64.213,94.031L64.13,94.745L64.415,95.584L63.967,96.644L64.117,97.282L63.828,98.037L64.06,99.269L63.927,100.543L63.421,101.384L59.104,94.911L58.104,93.38L52.863,85.504L50.171,81.453L47.815,77.892L44.953,73.573L44.282,72.562L43.304,71.104L42.041,69.216L41.685,68.666L41.783,68.21L41.86,67.914L41.949,67.569L42.185,66.578L42.427,65.716L42.908,63.925L45.38,54.344L46.75,49.035L49.812,49.825L49.985,49.868L55.41,51.171L61.058,52.455L61.107,52.478L67.146,53.805L70.678,54.539Z" + }, + { + "fill": "rgb(36, 137, 186)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.197; geo: [object Object]; name: Nevada", + "shape": "M74.351,55.289L75.52,55.515L74.252,62.112L73.089,67.974L72.82,69.373L72.356,71.788L71.249,77.547L71.097,78.237L70.573,81.063L69.859,84.676L69.087,88.696L68.885,89.742L68.092,94.076L67.325,95.099L66.857,95.078L66.104,94.008L64.961,93.827L64.213,94.031L64.13,94.745L64.415,95.584L63.967,96.644L64.117,97.282L63.828,98.037L64.06,99.269L63.927,100.543L63.421,101.384L59.104,94.911L58.104,93.38L52.863,85.504L50.171,81.453L47.815,77.892L44.953,73.573L44.282,72.562L43.304,71.104L42.041,69.216L41.685,68.666L41.783,68.21L41.86,67.914L41.949,67.569L42.185,66.578L42.427,65.716L42.908,63.925L45.38,54.344L46.75,49.035L49.812,49.825L49.985,49.868L55.41,51.171L61.058,52.455L61.107,52.478L67.146,53.805L70.678,54.539Z" + }, + { + "fill": "rgb(105, 197, 190)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.119; geo: [object Object]; name: Nevada", + "shape": "M74.351,55.289L75.52,55.515L74.252,62.112L73.089,67.974L72.82,69.373L72.356,71.788L71.249,77.547L71.097,78.237L70.573,81.063L69.859,84.676L69.087,88.696L68.885,89.742L68.092,94.076L67.325,95.099L66.857,95.078L66.104,94.008L64.961,93.827L64.213,94.031L64.13,94.745L64.415,95.584L63.967,96.644L64.117,97.282L63.828,98.037L64.06,99.269L63.927,100.543L63.421,101.384L59.104,94.911L58.104,93.38L52.863,85.504L50.171,81.453L47.815,77.892L44.953,73.573L44.282,72.562L43.304,71.104L42.041,69.216L41.685,68.666L41.783,68.21L41.86,67.914L41.949,67.569L42.185,66.578L42.427,65.716L42.908,63.925L45.38,54.344L46.75,49.035L49.812,49.825L49.985,49.868L55.41,51.171L61.058,52.455L61.107,52.478L67.146,53.805L70.678,54.539Z" + }, + { + "fill": "rgb(214, 239, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.039; geo: [object Object]; name: Nevada", + "shape": "M74.351,55.289L75.52,55.515L74.252,62.112L73.089,67.974L72.82,69.373L72.356,71.788L71.249,77.547L71.097,78.237L70.573,81.063L69.859,84.676L69.087,88.696L68.885,89.742L68.092,94.076L67.325,95.099L66.857,95.078L66.104,94.008L64.961,93.827L64.213,94.031L64.13,94.745L64.415,95.584L63.967,96.644L64.117,97.282L63.828,98.037L64.06,99.269L63.927,100.543L63.421,101.384L59.104,94.911L58.104,93.38L52.863,85.504L50.171,81.453L47.815,77.892L44.953,73.573L44.282,72.562L43.304,71.104L42.041,69.216L41.685,68.666L41.783,68.21L41.86,67.914L41.949,67.569L42.185,66.578L42.427,65.716L42.908,63.925L45.38,54.344L46.75,49.035L49.812,49.825L49.985,49.868L55.41,51.171L61.058,52.455L61.107,52.478L67.146,53.805L70.678,54.539Z" + }, + { + "fill": "rgb(221, 242, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.032; geo: [object Object]; name: Nevada", + "shape": "M74.351,55.289L75.52,55.515L74.252,62.112L73.089,67.974L72.82,69.373L72.356,71.788L71.249,77.547L71.097,78.237L70.573,81.063L69.859,84.676L69.087,88.696L68.885,89.742L68.092,94.076L67.325,95.099L66.857,95.078L66.104,94.008L64.961,93.827L64.213,94.031L64.13,94.745L64.415,95.584L63.967,96.644L64.117,97.282L63.828,98.037L64.06,99.269L63.927,100.543L63.421,101.384L59.104,94.911L58.104,93.38L52.863,85.504L50.171,81.453L47.815,77.892L44.953,73.573L44.282,72.562L43.304,71.104L42.041,69.216L41.685,68.666L41.783,68.21L41.86,67.914L41.949,67.569L42.185,66.578L42.427,65.716L42.908,63.925L45.38,54.344L46.75,49.035L49.812,49.825L49.985,49.868L55.41,51.171L61.058,52.455L61.107,52.478L67.146,53.805L70.678,54.539Z" + }, + { + "fill": "rgb(208, 236, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.045; geo: [object Object]; name: New Hampshire", + "shape": "M282.576,32.876L283.537,36.044L283.541,36.061L283.541,36.061L284.096,37.651L284.26,38.728L285.375,39.511L285.434,40.129L285.256,40.542L285.238,40.543L285.549,40.222L286.152,40.572L285.948,41.826L284.956,42.191L284.894,42.568L284.157,43.212L284.117,43.267L284.12,43.278L284.014,43.565L281.115,44.225L280.978,44.257L279.276,44.63L278.432,44.807L277.907,44.375L277.77,43.33L278.053,42.951L277.747,41.956L277.713,41.464L277.407,39.192L277.594,38.943L277.556,38.232L277.898,37.678L277.951,36.074L278.189,35.478L278.022,34.969L277.779,33.885L278.631,33.478L278.882,33.01L279.58,32.158L279.623,31.579L278.9,30.578L279.259,29.394L279.052,28.743L279.213,27.16L279.482,26.656L280.284,26.837L280.449,26.341L281.578,29.692Z" + }, + { + "fill": "rgb(211, 238, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.042; geo: [object Object]; name: New Hampshire", + "shape": "M282.576,32.876L283.537,36.044L283.541,36.061L283.541,36.061L284.096,37.651L284.26,38.728L285.375,39.511L285.434,40.129L285.256,40.542L285.238,40.543L285.549,40.222L286.152,40.572L285.948,41.826L284.956,42.191L284.894,42.568L284.157,43.212L284.117,43.267L284.12,43.278L284.014,43.565L281.115,44.225L280.978,44.257L279.276,44.63L278.432,44.807L277.907,44.375L277.77,43.33L278.053,42.951L277.747,41.956L277.713,41.464L277.407,39.192L277.594,38.943L277.556,38.232L277.898,37.678L277.951,36.074L278.189,35.478L278.022,34.969L277.779,33.885L278.631,33.478L278.882,33.01L279.58,32.158L279.623,31.579L278.9,30.578L279.259,29.394L279.052,28.743L279.213,27.16L279.482,26.656L280.284,26.837L280.449,26.341L281.578,29.692Z" + }, + { + "fill": "rgb(157, 216, 184)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.085; geo: [object Object]; name: New Hampshire", + "shape": "M282.576,32.876L283.537,36.044L283.541,36.061L283.541,36.061L284.096,37.651L284.26,38.728L285.375,39.511L285.434,40.129L285.256,40.542L285.238,40.543L285.549,40.222L286.152,40.572L285.948,41.826L284.956,42.191L284.894,42.568L284.157,43.212L284.117,43.267L284.12,43.278L284.014,43.565L281.115,44.225L280.978,44.257L279.276,44.63L278.432,44.807L277.907,44.375L277.77,43.33L278.053,42.951L277.747,41.956L277.713,41.464L277.407,39.192L277.594,38.943L277.556,38.232L277.898,37.678L277.951,36.074L278.189,35.478L278.022,34.969L277.779,33.885L278.631,33.478L278.882,33.01L279.58,32.158L279.623,31.579L278.9,30.578L279.259,29.394L279.052,28.743L279.213,27.16L279.482,26.656L280.284,26.837L280.449,26.341L281.578,29.692Z" + }, + { + "fill": "rgb(152, 215, 185)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.088; geo: [object Object]; name: New Hampshire", + "shape": "M282.576,32.876L283.537,36.044L283.541,36.061L283.541,36.061L284.096,37.651L284.26,38.728L285.375,39.511L285.434,40.129L285.256,40.542L285.238,40.543L285.549,40.222L286.152,40.572L285.948,41.826L284.956,42.191L284.894,42.568L284.157,43.212L284.117,43.267L284.12,43.278L284.014,43.565L281.115,44.225L280.978,44.257L279.276,44.63L278.432,44.807L277.907,44.375L277.77,43.33L278.053,42.951L277.747,41.956L277.713,41.464L277.407,39.192L277.594,38.943L277.556,38.232L277.898,37.678L277.951,36.074L278.189,35.478L278.022,34.969L277.779,33.885L278.631,33.478L278.882,33.01L279.58,32.158L279.623,31.579L278.9,30.578L279.259,29.394L279.052,28.743L279.213,27.16L279.482,26.656L280.284,26.837L280.449,26.341L281.578,29.692Z" + }, + { + "fill": "rgb(96, 193, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.126; geo: [object Object]; name: New Hampshire", + "shape": "M282.576,32.876L283.537,36.044L283.541,36.061L283.541,36.061L284.096,37.651L284.26,38.728L285.375,39.511L285.434,40.129L285.256,40.542L285.238,40.543L285.549,40.222L286.152,40.572L285.948,41.826L284.956,42.191L284.894,42.568L284.157,43.212L284.117,43.267L284.12,43.278L284.014,43.565L281.115,44.225L280.978,44.257L279.276,44.63L278.432,44.807L277.907,44.375L277.77,43.33L278.053,42.951L277.747,41.956L277.713,41.464L277.407,39.192L277.594,38.943L277.556,38.232L277.898,37.678L277.951,36.074L278.189,35.478L278.022,34.969L277.779,33.885L278.631,33.478L278.882,33.01L279.58,32.158L279.623,31.579L278.9,30.578L279.259,29.394L279.052,28.743L279.213,27.16L279.482,26.656L280.284,26.837L280.449,26.341L281.578,29.692Z" + }, + { + "fill": "rgb(75, 183, 193)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.143; geo: [object Object]; name: New Hampshire", + "shape": "M282.576,32.876L283.537,36.044L283.541,36.061L283.541,36.061L284.096,37.651L284.26,38.728L285.375,39.511L285.434,40.129L285.256,40.542L285.238,40.543L285.549,40.222L286.152,40.572L285.948,41.826L284.956,42.191L284.894,42.568L284.157,43.212L284.117,43.267L284.12,43.278L284.014,43.565L281.115,44.225L280.978,44.257L279.276,44.63L278.432,44.807L277.907,44.375L277.77,43.33L278.053,42.951L277.747,41.956L277.713,41.464L277.407,39.192L277.594,38.943L277.556,38.232L277.898,37.678L277.951,36.074L278.189,35.478L278.022,34.969L277.779,33.885L278.631,33.478L278.882,33.01L279.58,32.158L279.623,31.579L278.9,30.578L279.259,29.394L279.052,28.743L279.213,27.16L279.482,26.656L280.284,26.837L280.449,26.341L281.578,29.692Z" + }, + { + "fill": "rgb(40, 149, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.185; geo: [object Object]; name: New Hampshire", + "shape": "M282.576,32.876L283.537,36.044L283.541,36.061L283.541,36.061L284.096,37.651L284.26,38.728L285.375,39.511L285.434,40.129L285.256,40.542L285.238,40.543L285.549,40.222L286.152,40.572L285.948,41.826L284.956,42.191L284.894,42.568L284.157,43.212L284.117,43.267L284.12,43.278L284.014,43.565L281.115,44.225L280.978,44.257L279.276,44.63L278.432,44.807L277.907,44.375L277.77,43.33L278.053,42.951L277.747,41.956L277.713,41.464L277.407,39.192L277.594,38.943L277.556,38.232L277.898,37.678L277.951,36.074L278.189,35.478L278.022,34.969L277.779,33.885L278.631,33.478L278.882,33.01L279.58,32.158L279.623,31.579L278.9,30.578L279.259,29.394L279.052,28.743L279.213,27.16L279.482,26.656L280.284,26.837L280.449,26.341L281.578,29.692Z" + }, + { + "fill": "rgb(52, 165, 193)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.167; geo: [object Object]; name: New Hampshire", + "shape": "M282.576,32.876L283.537,36.044L283.541,36.061L283.541,36.061L284.096,37.651L284.26,38.728L285.375,39.511L285.434,40.129L285.256,40.542L285.238,40.543L285.549,40.222L286.152,40.572L285.948,41.826L284.956,42.191L284.894,42.568L284.157,43.212L284.117,43.267L284.12,43.278L284.014,43.565L281.115,44.225L280.978,44.257L279.276,44.63L278.432,44.807L277.907,44.375L277.77,43.33L278.053,42.951L277.747,41.956L277.713,41.464L277.407,39.192L277.594,38.943L277.556,38.232L277.898,37.678L277.951,36.074L278.189,35.478L278.022,34.969L277.779,33.885L278.631,33.478L278.882,33.01L279.58,32.158L279.623,31.579L278.9,30.578L279.259,29.394L279.052,28.743L279.213,27.16L279.482,26.656L280.284,26.837L280.449,26.341L281.578,29.692Z" + }, + { + "fill": "rgb(187, 228, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.064; geo: [object Object]; name: New Hampshire", + "shape": "M282.576,32.876L283.537,36.044L283.541,36.061L283.541,36.061L284.096,37.651L284.26,38.728L285.375,39.511L285.434,40.129L285.256,40.542L285.238,40.543L285.549,40.222L286.152,40.572L285.948,41.826L284.956,42.191L284.894,42.568L284.157,43.212L284.117,43.267L284.12,43.278L284.014,43.565L281.115,44.225L280.978,44.257L279.276,44.63L278.432,44.807L277.907,44.375L277.77,43.33L278.053,42.951L277.747,41.956L277.713,41.464L277.407,39.192L277.594,38.943L277.556,38.232L277.898,37.678L277.951,36.074L278.189,35.478L278.022,34.969L277.779,33.885L278.631,33.478L278.882,33.01L279.58,32.158L279.623,31.579L278.9,30.578L279.259,29.394L279.052,28.743L279.213,27.16L279.482,26.656L280.284,26.837L280.449,26.341L281.578,29.692Z" + }, + { + "fill": "rgb(198, 233, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.054; geo: [object Object]; name: New Hampshire", + "shape": "M282.576,32.876L283.537,36.044L283.541,36.061L283.541,36.061L284.096,37.651L284.26,38.728L285.375,39.511L285.434,40.129L285.256,40.542L285.238,40.543L285.549,40.222L286.152,40.572L285.948,41.826L284.956,42.191L284.894,42.568L284.157,43.212L284.117,43.267L284.12,43.278L284.014,43.565L281.115,44.225L280.978,44.257L279.276,44.63L278.432,44.807L277.907,44.375L277.77,43.33L278.053,42.951L277.747,41.956L277.713,41.464L277.407,39.192L277.594,38.943L277.556,38.232L277.898,37.678L277.951,36.074L278.189,35.478L278.022,34.969L277.779,33.885L278.631,33.478L278.882,33.01L279.58,32.158L279.623,31.579L278.9,30.578L279.259,29.394L279.052,28.743L279.213,27.16L279.482,26.656L280.284,26.837L280.449,26.341L281.578,29.692Z" + }, + { + "fill": "rgb(196, 232, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.056; geo: [object Object]; name: New Jersey", + "shape": "M269.502,70.425L269.25,70.223L269.21,70.213L269.186,70.192L268.399,69.613L268.417,69.609L268.54,69.053L268.167,68.897L268.116,68.748L268.556,67.583L269.875,66.594L270.112,65.807L270.09,65.793L270.4,65.34L271.517,64.405L271.516,64.401L270.143,63.366L269.464,62.997L269.224,62.176L268.55,61.987L268.49,61.885L268.364,60.736L268.826,59.985L268.349,59.422L268.9,58.423L268.781,58.465L269.064,58.085L269.257,57.065L269.825,56.407L271.687,57.053L272.421,57.274L272.523,57.314L274.258,57.85L274.126,59.255L273.895,60.325L273.613,59.839L273.476,60.203L273.387,60.858L273.221,61.185L273.537,61.824L274.8,61.875L274.984,62.578L274.996,63.898L274.757,63.999L274.663,63.838L274.757,63.999L274.924,65.189L274.752,66.465L274.979,66.629L274.312,67.815L273.943,67.934L273.94,67.92L273.943,67.934L273.927,67.945L274.231,68.689L273.972,69.043L273.744,69.447L273.138,69.944L273.149,69.994L273.623,69.829L273.161,70.957L272.933,72.043L272.132,72.705L272.227,71.442L272.019,71.022L270.994,71.014Z" + }, + { + "fill": "rgb(213, 239, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.04; geo: [object Object]; name: New Jersey", + "shape": "M269.502,70.425L269.25,70.223L269.21,70.213L269.186,70.192L268.399,69.613L268.417,69.609L268.54,69.053L268.167,68.897L268.116,68.748L268.556,67.583L269.875,66.594L270.112,65.807L270.09,65.793L270.4,65.34L271.517,64.405L271.516,64.401L270.143,63.366L269.464,62.997L269.224,62.176L268.55,61.987L268.49,61.885L268.364,60.736L268.826,59.985L268.349,59.422L268.9,58.423L268.781,58.465L269.064,58.085L269.257,57.065L269.825,56.407L271.687,57.053L272.421,57.274L272.523,57.314L274.258,57.85L274.126,59.255L273.895,60.325L273.613,59.839L273.476,60.203L273.387,60.858L273.221,61.185L273.537,61.824L274.8,61.875L274.984,62.578L274.996,63.898L274.757,63.999L274.663,63.838L274.757,63.999L274.924,65.189L274.752,66.465L274.979,66.629L274.312,67.815L273.943,67.934L273.94,67.92L273.943,67.934L273.927,67.945L274.231,68.689L273.972,69.043L273.744,69.447L273.138,69.944L273.149,69.994L273.623,69.829L273.161,70.957L272.933,72.043L272.132,72.705L272.227,71.442L272.019,71.022L270.994,71.014Z" + }, + { + "fill": "rgb(159, 217, 184)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.083; geo: [object Object]; name: New Jersey", + "shape": "M269.502,70.425L269.25,70.223L269.21,70.213L269.186,70.192L268.399,69.613L268.417,69.609L268.54,69.053L268.167,68.897L268.116,68.748L268.556,67.583L269.875,66.594L270.112,65.807L270.09,65.793L270.4,65.34L271.517,64.405L271.516,64.401L270.143,63.366L269.464,62.997L269.224,62.176L268.55,61.987L268.49,61.885L268.364,60.736L268.826,59.985L268.349,59.422L268.9,58.423L268.781,58.465L269.064,58.085L269.257,57.065L269.825,56.407L271.687,57.053L272.421,57.274L272.523,57.314L274.258,57.85L274.126,59.255L273.895,60.325L273.613,59.839L273.476,60.203L273.387,60.858L273.221,61.185L273.537,61.824L274.8,61.875L274.984,62.578L274.996,63.898L274.757,63.999L274.663,63.838L274.757,63.999L274.924,65.189L274.752,66.465L274.979,66.629L274.312,67.815L273.943,67.934L273.94,67.92L273.943,67.934L273.927,67.945L274.231,68.689L273.972,69.043L273.744,69.447L273.138,69.944L273.149,69.994L273.623,69.829L273.161,70.957L272.933,72.043L272.132,72.705L272.227,71.442L272.019,71.022L270.994,71.014Z" + }, + { + "fill": "rgb(165, 220, 183)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.079; geo: [object Object]; name: New Jersey", + "shape": "M269.502,70.425L269.25,70.223L269.21,70.213L269.186,70.192L268.399,69.613L268.417,69.609L268.54,69.053L268.167,68.897L268.116,68.748L268.556,67.583L269.875,66.594L270.112,65.807L270.09,65.793L270.4,65.34L271.517,64.405L271.516,64.401L270.143,63.366L269.464,62.997L269.224,62.176L268.55,61.987L268.49,61.885L268.364,60.736L268.826,59.985L268.349,59.422L268.9,58.423L268.781,58.465L269.064,58.085L269.257,57.065L269.825,56.407L271.687,57.053L272.421,57.274L272.523,57.314L274.258,57.85L274.126,59.255L273.895,60.325L273.613,59.839L273.476,60.203L273.387,60.858L273.221,61.185L273.537,61.824L274.8,61.875L274.984,62.578L274.996,63.898L274.757,63.999L274.663,63.838L274.757,63.999L274.924,65.189L274.752,66.465L274.979,66.629L274.312,67.815L273.943,67.934L273.94,67.92L273.943,67.934L273.927,67.945L274.231,68.689L273.972,69.043L273.744,69.447L273.138,69.944L273.149,69.994L273.623,69.829L273.161,70.957L272.933,72.043L272.132,72.705L272.227,71.442L272.019,71.022L270.994,71.014Z" + }, + { + "fill": "rgb(122, 203, 188)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.108; geo: [object Object]; name: New Jersey", + "shape": "M269.502,70.425L269.25,70.223L269.21,70.213L269.186,70.192L268.399,69.613L268.417,69.609L268.54,69.053L268.167,68.897L268.116,68.748L268.556,67.583L269.875,66.594L270.112,65.807L270.09,65.793L270.4,65.34L271.517,64.405L271.516,64.401L270.143,63.366L269.464,62.997L269.224,62.176L268.55,61.987L268.49,61.885L268.364,60.736L268.826,59.985L268.349,59.422L268.9,58.423L268.781,58.465L269.064,58.085L269.257,57.065L269.825,56.407L271.687,57.053L272.421,57.274L272.523,57.314L274.258,57.85L274.126,59.255L273.895,60.325L273.613,59.839L273.476,60.203L273.387,60.858L273.221,61.185L273.537,61.824L274.8,61.875L274.984,62.578L274.996,63.898L274.757,63.999L274.663,63.838L274.757,63.999L274.924,65.189L274.752,66.465L274.979,66.629L274.312,67.815L273.943,67.934L273.94,67.92L273.943,67.934L273.927,67.945L274.231,68.689L273.972,69.043L273.744,69.447L273.138,69.944L273.149,69.994L273.623,69.829L273.161,70.957L272.933,72.043L272.132,72.705L272.227,71.442L272.019,71.022L270.994,71.014Z" + }, + { + "fill": "rgb(95, 192, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.127; geo: [object Object]; name: New Jersey", + "shape": "M269.502,70.425L269.25,70.223L269.21,70.213L269.186,70.192L268.399,69.613L268.417,69.609L268.54,69.053L268.167,68.897L268.116,68.748L268.556,67.583L269.875,66.594L270.112,65.807L270.09,65.793L270.4,65.34L271.517,64.405L271.516,64.401L270.143,63.366L269.464,62.997L269.224,62.176L268.55,61.987L268.49,61.885L268.364,60.736L268.826,59.985L268.349,59.422L268.9,58.423L268.781,58.465L269.064,58.085L269.257,57.065L269.825,56.407L271.687,57.053L272.421,57.274L272.523,57.314L274.258,57.85L274.126,59.255L273.895,60.325L273.613,59.839L273.476,60.203L273.387,60.858L273.221,61.185L273.537,61.824L274.8,61.875L274.984,62.578L274.996,63.898L274.757,63.999L274.663,63.838L274.757,63.999L274.924,65.189L274.752,66.465L274.979,66.629L274.312,67.815L273.943,67.934L273.94,67.92L273.943,67.934L273.927,67.945L274.231,68.689L273.972,69.043L273.744,69.447L273.138,69.944L273.149,69.994L273.623,69.829L273.161,70.957L272.933,72.043L272.132,72.705L272.227,71.442L272.019,71.022L270.994,71.014Z" + }, + { + "fill": "rgb(56, 169, 193)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.162; geo: [object Object]; name: New Jersey", + "shape": "M269.502,70.425L269.25,70.223L269.21,70.213L269.186,70.192L268.399,69.613L268.417,69.609L268.54,69.053L268.167,68.897L268.116,68.748L268.556,67.583L269.875,66.594L270.112,65.807L270.09,65.793L270.4,65.34L271.517,64.405L271.516,64.401L270.143,63.366L269.464,62.997L269.224,62.176L268.55,61.987L268.49,61.885L268.364,60.736L268.826,59.985L268.349,59.422L268.9,58.423L268.781,58.465L269.064,58.085L269.257,57.065L269.825,56.407L271.687,57.053L272.421,57.274L272.523,57.314L274.258,57.85L274.126,59.255L273.895,60.325L273.613,59.839L273.476,60.203L273.387,60.858L273.221,61.185L273.537,61.824L274.8,61.875L274.984,62.578L274.996,63.898L274.757,63.999L274.663,63.838L274.757,63.999L274.924,65.189L274.752,66.465L274.979,66.629L274.312,67.815L273.943,67.934L273.94,67.92L273.943,67.934L273.927,67.945L274.231,68.689L273.972,69.043L273.744,69.447L273.138,69.944L273.149,69.994L273.623,69.829L273.161,70.957L272.933,72.043L272.132,72.705L272.227,71.442L272.019,71.022L270.994,71.014Z" + }, + { + "fill": "rgb(50, 163, 192)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.169; geo: [object Object]; name: New Jersey", + "shape": "M269.502,70.425L269.25,70.223L269.21,70.213L269.186,70.192L268.399,69.613L268.417,69.609L268.54,69.053L268.167,68.897L268.116,68.748L268.556,67.583L269.875,66.594L270.112,65.807L270.09,65.793L270.4,65.34L271.517,64.405L271.516,64.401L270.143,63.366L269.464,62.997L269.224,62.176L268.55,61.987L268.49,61.885L268.364,60.736L268.826,59.985L268.349,59.422L268.9,58.423L268.781,58.465L269.064,58.085L269.257,57.065L269.825,56.407L271.687,57.053L272.421,57.274L272.523,57.314L274.258,57.85L274.126,59.255L273.895,60.325L273.613,59.839L273.476,60.203L273.387,60.858L273.221,61.185L273.537,61.824L274.8,61.875L274.984,62.578L274.996,63.898L274.757,63.999L274.663,63.838L274.757,63.999L274.924,65.189L274.752,66.465L274.979,66.629L274.312,67.815L273.943,67.934L273.94,67.92L273.943,67.934L273.927,67.945L274.231,68.689L273.972,69.043L273.744,69.447L273.138,69.944L273.149,69.994L273.623,69.829L273.161,70.957L272.933,72.043L272.132,72.705L272.227,71.442L272.019,71.022L270.994,71.014Z" + }, + { + "fill": "rgb(159, 217, 184)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.083; geo: [object Object]; name: New Jersey", + "shape": "M269.502,70.425L269.25,70.223L269.21,70.213L269.186,70.192L268.399,69.613L268.417,69.609L268.54,69.053L268.167,68.897L268.116,68.748L268.556,67.583L269.875,66.594L270.112,65.807L270.09,65.793L270.4,65.34L271.517,64.405L271.516,64.401L270.143,63.366L269.464,62.997L269.224,62.176L268.55,61.987L268.49,61.885L268.364,60.736L268.826,59.985L268.349,59.422L268.9,58.423L268.781,58.465L269.064,58.085L269.257,57.065L269.825,56.407L271.687,57.053L272.421,57.274L272.523,57.314L274.258,57.85L274.126,59.255L273.895,60.325L273.613,59.839L273.476,60.203L273.387,60.858L273.221,61.185L273.537,61.824L274.8,61.875L274.984,62.578L274.996,63.898L274.757,63.999L274.663,63.838L274.757,63.999L274.924,65.189L274.752,66.465L274.979,66.629L274.312,67.815L273.943,67.934L273.94,67.92L273.943,67.934L273.927,67.945L274.231,68.689L273.972,69.043L273.744,69.447L273.138,69.944L273.149,69.994L273.623,69.829L273.161,70.957L272.933,72.043L272.132,72.705L272.227,71.442L272.019,71.022L270.994,71.014Z" + }, + { + "fill": "rgb(146, 212, 185)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.092; geo: [object Object]; name: New Jersey", + "shape": "M269.502,70.425L269.25,70.223L269.21,70.213L269.186,70.192L268.399,69.613L268.417,69.609L268.54,69.053L268.167,68.897L268.116,68.748L268.556,67.583L269.875,66.594L270.112,65.807L270.09,65.793L270.4,65.34L271.517,64.405L271.516,64.401L270.143,63.366L269.464,62.997L269.224,62.176L268.55,61.987L268.49,61.885L268.364,60.736L268.826,59.985L268.349,59.422L268.9,58.423L268.781,58.465L269.064,58.085L269.257,57.065L269.825,56.407L271.687,57.053L272.421,57.274L272.523,57.314L274.258,57.85L274.126,59.255L273.895,60.325L273.613,59.839L273.476,60.203L273.387,60.858L273.221,61.185L273.537,61.824L274.8,61.875L274.984,62.578L274.996,63.898L274.757,63.999L274.663,63.838L274.757,63.999L274.924,65.189L274.752,66.465L274.979,66.629L274.312,67.815L273.943,67.934L273.94,67.92L273.943,67.934L273.927,67.945L274.231,68.689L273.972,69.043L273.744,69.447L273.138,69.944L273.149,69.994L273.623,69.829L273.161,70.957L272.933,72.043L272.132,72.705L272.227,71.442L272.019,71.022L270.994,71.014Z" + }, + { + "fill": "rgb(134, 208, 187)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.1; geo: [object Object]; name: New Mexico", + "shape": "M127.185,96.401L126.916,99.777L126.706,99.762L126.502,102.767L126.344,104.899L126.285,105.693L126.046,108.654L125.931,110.198L125.827,111.597L125.61,114.524L125.605,114.596L125.346,117.81L125.179,119.523L125.068,120.752L124.813,123.635L124.594,126.574L124.376,129.5L124.332,130.089L122.853,129.976L120.624,129.8L119.166,129.679L118.923,129.658L114.268,129.244L113.883,129.208L107.799,128.582L105.656,128.359L104.302,128.22L104.064,128.882L104.646,129.723L100.314,129.223L95.178,128.585L94.789,131.595L90.015,130.964L91.024,123.66L91.349,121.312L91.747,118.428L92.274,114.618L93.053,109.263L93.406,106.711L94.371,99.721L95.295,93.033L98.787,93.503L103.512,94.092L103.833,94.131L108.823,94.752L111.286,95.007L112.821,95.164L115.436,95.429L115.796,95.464L121.847,96.008L126.729,96.367Z" + }, + { + "fill": "rgb(181, 226, 182)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.068; geo: [object Object]; name: New Mexico", + "shape": "M127.185,96.401L126.916,99.777L126.706,99.762L126.502,102.767L126.344,104.899L126.285,105.693L126.046,108.654L125.931,110.198L125.827,111.597L125.61,114.524L125.605,114.596L125.346,117.81L125.179,119.523L125.068,120.752L124.813,123.635L124.594,126.574L124.376,129.5L124.332,130.089L122.853,129.976L120.624,129.8L119.166,129.679L118.923,129.658L114.268,129.244L113.883,129.208L107.799,128.582L105.656,128.359L104.302,128.22L104.064,128.882L104.646,129.723L100.314,129.223L95.178,128.585L94.789,131.595L90.015,130.964L91.024,123.66L91.349,121.312L91.747,118.428L92.274,114.618L93.053,109.263L93.406,106.711L94.371,99.721L95.295,93.033L98.787,93.503L103.512,94.092L103.833,94.131L108.823,94.752L111.286,95.007L112.821,95.164L115.436,95.429L115.796,95.464L121.847,96.008L126.729,96.367Z" + }, + { + "fill": "rgb(91, 191, 192)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.13; geo: [object Object]; name: New Mexico", + "shape": "M127.185,96.401L126.916,99.777L126.706,99.762L126.502,102.767L126.344,104.899L126.285,105.693L126.046,108.654L125.931,110.198L125.827,111.597L125.61,114.524L125.605,114.596L125.346,117.81L125.179,119.523L125.068,120.752L124.813,123.635L124.594,126.574L124.376,129.5L124.332,130.089L122.853,129.976L120.624,129.8L119.166,129.679L118.923,129.658L114.268,129.244L113.883,129.208L107.799,128.582L105.656,128.359L104.302,128.22L104.064,128.882L104.646,129.723L100.314,129.223L95.178,128.585L94.789,131.595L90.015,130.964L91.024,123.66L91.349,121.312L91.747,118.428L92.274,114.618L93.053,109.263L93.406,106.711L94.371,99.721L95.295,93.033L98.787,93.503L103.512,94.092L103.833,94.131L108.823,94.752L111.286,95.007L112.821,95.164L115.436,95.429L115.796,95.464L121.847,96.008L126.729,96.367Z" + }, + { + "fill": "rgb(113, 200, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.114; geo: [object Object]; name: New Mexico", + "shape": "M127.185,96.401L126.916,99.777L126.706,99.762L126.502,102.767L126.344,104.899L126.285,105.693L126.046,108.654L125.931,110.198L125.827,111.597L125.61,114.524L125.605,114.596L125.346,117.81L125.179,119.523L125.068,120.752L124.813,123.635L124.594,126.574L124.376,129.5L124.332,130.089L122.853,129.976L120.624,129.8L119.166,129.679L118.923,129.658L114.268,129.244L113.883,129.208L107.799,128.582L105.656,128.359L104.302,128.22L104.064,128.882L104.646,129.723L100.314,129.223L95.178,128.585L94.789,131.595L90.015,130.964L91.024,123.66L91.349,121.312L91.747,118.428L92.274,114.618L93.053,109.263L93.406,106.711L94.371,99.721L95.295,93.033L98.787,93.503L103.512,94.092L103.833,94.131L108.823,94.752L111.286,95.007L112.821,95.164L115.436,95.429L115.796,95.464L121.847,96.008L126.729,96.367Z" + }, + { + "fill": "rgb(76, 183, 193)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.142; geo: [object Object]; name: New Mexico", + "shape": "M127.185,96.401L126.916,99.777L126.706,99.762L126.502,102.767L126.344,104.899L126.285,105.693L126.046,108.654L125.931,110.198L125.827,111.597L125.61,114.524L125.605,114.596L125.346,117.81L125.179,119.523L125.068,120.752L124.813,123.635L124.594,126.574L124.376,129.5L124.332,130.089L122.853,129.976L120.624,129.8L119.166,129.679L118.923,129.658L114.268,129.244L113.883,129.208L107.799,128.582L105.656,128.359L104.302,128.22L104.064,128.882L104.646,129.723L100.314,129.223L95.178,128.585L94.789,131.595L90.015,130.964L91.024,123.66L91.349,121.312L91.747,118.428L92.274,114.618L93.053,109.263L93.406,106.711L94.371,99.721L95.295,93.033L98.787,93.503L103.512,94.092L103.833,94.131L108.823,94.752L111.286,95.007L112.821,95.164L115.436,95.429L115.796,95.464L121.847,96.008L126.729,96.367Z" + }, + { + "fill": "rgb(119, 202, 188)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.11; geo: [object Object]; name: New Mexico", + "shape": "M127.185,96.401L126.916,99.777L126.706,99.762L126.502,102.767L126.344,104.899L126.285,105.693L126.046,108.654L125.931,110.198L125.827,111.597L125.61,114.524L125.605,114.596L125.346,117.81L125.179,119.523L125.068,120.752L124.813,123.635L124.594,126.574L124.376,129.5L124.332,130.089L122.853,129.976L120.624,129.8L119.166,129.679L118.923,129.658L114.268,129.244L113.883,129.208L107.799,128.582L105.656,128.359L104.302,128.22L104.064,128.882L104.646,129.723L100.314,129.223L95.178,128.585L94.789,131.595L90.015,130.964L91.024,123.66L91.349,121.312L91.747,118.428L92.274,114.618L93.053,109.263L93.406,106.711L94.371,99.721L95.295,93.033L98.787,93.503L103.512,94.092L103.833,94.131L108.823,94.752L111.286,95.007L112.821,95.164L115.436,95.429L115.796,95.464L121.847,96.008L126.729,96.367Z" + }, + { + "fill": "rgb(51, 164, 193)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.168; geo: [object Object]; name: New Mexico", + "shape": "M127.185,96.401L126.916,99.777L126.706,99.762L126.502,102.767L126.344,104.899L126.285,105.693L126.046,108.654L125.931,110.198L125.827,111.597L125.61,114.524L125.605,114.596L125.346,117.81L125.179,119.523L125.068,120.752L124.813,123.635L124.594,126.574L124.376,129.5L124.332,130.089L122.853,129.976L120.624,129.8L119.166,129.679L118.923,129.658L114.268,129.244L113.883,129.208L107.799,128.582L105.656,128.359L104.302,128.22L104.064,128.882L104.646,129.723L100.314,129.223L95.178,128.585L94.789,131.595L90.015,130.964L91.024,123.66L91.349,121.312L91.747,118.428L92.274,114.618L93.053,109.263L93.406,106.711L94.371,99.721L95.295,93.033L98.787,93.503L103.512,94.092L103.833,94.131L108.823,94.752L111.286,95.007L112.821,95.164L115.436,95.429L115.796,95.464L121.847,96.008L126.729,96.367Z" + }, + { + "fill": "rgb(130, 206, 187)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.103; geo: [object Object]; name: New Mexico", + "shape": "M127.185,96.401L126.916,99.777L126.706,99.762L126.502,102.767L126.344,104.899L126.285,105.693L126.046,108.654L125.931,110.198L125.827,111.597L125.61,114.524L125.605,114.596L125.346,117.81L125.179,119.523L125.068,120.752L124.813,123.635L124.594,126.574L124.376,129.5L124.332,130.089L122.853,129.976L120.624,129.8L119.166,129.679L118.923,129.658L114.268,129.244L113.883,129.208L107.799,128.582L105.656,128.359L104.302,128.22L104.064,128.882L104.646,129.723L100.314,129.223L95.178,128.585L94.789,131.595L90.015,130.964L91.024,123.66L91.349,121.312L91.747,118.428L92.274,114.618L93.053,109.263L93.406,106.711L94.371,99.721L95.295,93.033L98.787,93.503L103.512,94.092L103.833,94.131L108.823,94.752L111.286,95.007L112.821,95.164L115.436,95.429L115.796,95.464L121.847,96.008L126.729,96.367Z" + }, + { + "fill": "rgb(216, 240, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.037; geo: [object Object]; name: New Mexico", + "shape": "M127.185,96.401L126.916,99.777L126.706,99.762L126.502,102.767L126.344,104.899L126.285,105.693L126.046,108.654L125.931,110.198L125.827,111.597L125.61,114.524L125.605,114.596L125.346,117.81L125.179,119.523L125.068,120.752L124.813,123.635L124.594,126.574L124.376,129.5L124.332,130.089L122.853,129.976L120.624,129.8L119.166,129.679L118.923,129.658L114.268,129.244L113.883,129.208L107.799,128.582L105.656,128.359L104.302,128.22L104.064,128.882L104.646,129.723L100.314,129.223L95.178,128.585L94.789,131.595L90.015,130.964L91.024,123.66L91.349,121.312L91.747,118.428L92.274,114.618L93.053,109.263L93.406,106.711L94.371,99.721L95.295,93.033L98.787,93.503L103.512,94.092L103.833,94.131L108.823,94.752L111.286,95.007L112.821,95.164L115.436,95.429L115.796,95.464L121.847,96.008L126.729,96.367Z" + }, + { + "fill": "rgb(223, 243, 182)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.028; geo: [object Object]; name: New Mexico", + "shape": "M127.185,96.401L126.916,99.777L126.706,99.762L126.502,102.767L126.344,104.899L126.285,105.693L126.046,108.654L125.931,110.198L125.827,111.597L125.61,114.524L125.605,114.596L125.346,117.81L125.179,119.523L125.068,120.752L124.813,123.635L124.594,126.574L124.376,129.5L124.332,130.089L122.853,129.976L120.624,129.8L119.166,129.679L118.923,129.658L114.268,129.244L113.883,129.208L107.799,128.582L105.656,128.359L104.302,128.22L104.064,128.882L104.646,129.723L100.314,129.223L95.178,128.585L94.789,131.595L90.015,130.964L91.024,123.66L91.349,121.312L91.747,118.428L92.274,114.618L93.053,109.263L93.406,106.711L94.371,99.721L95.295,93.033L98.787,93.503L103.512,94.092L103.833,94.131L108.823,94.752L111.286,95.007L112.821,95.164L115.436,95.429L115.796,95.464L121.847,96.008L126.729,96.367Z" + }, + { + "fill": "rgb(162, 219, 184)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.081; geo: [object Object]; name: New York", + "shape": "M273.327,61.559L273.419,60.519L274.138,60.649ZM282.159,55.724L281.67,55.699L281.727,55.268ZM277.132,59.535L275.962,60.093L275.699,60.317L275.519,60.188L275.597,60.046L275.029,60.087L275.019,60.516L274.485,60.776L274.167,60.534L274.384,59.639L274.547,59.227L275.356,59.113L275.372,58.481L276.02,58.009L276.617,58.253L276.36,57.882L277.056,57.84L276.815,57.536L277.734,57.649L277.934,57.177L279.845,56.72L280.655,56.315L281.756,55.017L281.241,56.208L280.601,56.842L281.258,56.864L281.75,56.016L282.595,55.463L283.072,55.73L283.6,55.035L284.05,55.047L281.813,56.922L281.277,56.941L280.719,57.685L280.272,57.684L279.82,58.262L278.025,58.917ZM247.042,50.015L246.726,49.347L247.277,49.545ZM275.486,57.718L274.964,58.482L275.052,58.931L274.484,59.197L274.159,59.946L274.339,58.664L274.352,58.406L274.163,56.749L273.37,55.813L273.353,55.82L273.354,55.824L274.016,56.907L274.258,57.85L272.523,57.314L272.421,57.274L271.687,57.053L269.825,56.407L269.459,56.01L268.238,55.888L267.659,55.184L267.312,53.8L266.942,53.611L266.354,53.675L265.649,52.875L265.079,53.012L262.055,53.654L261.863,53.694L259.864,54.114L258.071,54.482L257.88,54.521L254.761,55.143L254.085,55.297L251.865,55.701L251.376,55.793L248.392,56.367L247.707,56.469L245.034,56.965L244.279,57.085L243.968,55.283L245.074,54.313L245.855,53.354L246.662,52.757L246.661,52.75L246.933,51.876L247.767,51.058L247.29,50.006L247.325,49.514L246.414,49.292L246.177,48.08L247.324,47.463L248.91,46.842L251.16,46.457L252.548,46.477L253.396,46.905L254.217,46.47L255.278,46.176L256.068,46.209L257.247,45.447L257.24,45.415L257.648,44.803L258.473,43.902L259.328,43.66L259.344,42.647L259.292,42.654L259.258,42.657L258.947,41.858L258.564,41.717L259.295,41.163L258.8,40.658L259.001,40.027L258.409,40.559L257.711,40.007L258.59,38.666L259.828,37.559L260.089,36.734L261.78,34.15L263.127,32.84L264.239,32.511L267.467,31.756L270.602,30.902L270.683,32.03L271.228,33.841L271.355,33.926L271.745,34.589L271.921,35.748L271.684,36.3L271.87,37.434L272.345,38.804L272.499,39.147L272.383,39.994L272.642,40.397L272.986,39.903L273.357,40.323L273.704,41.893L274.212,44.346L274.58,45.633L274.528,47.28L274.47,50.276L274.572,50.468L274.623,50.456L275.075,53.009L275.244,53.943L275.428,55.012L275.968,55.951L274.963,56.999L275.46,57.609L275.463,57.619L275.465,57.708Z" + }, + { + "fill": "rgb(199, 233, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.053; geo: [object Object]; name: New York", + "shape": "M273.327,61.559L273.419,60.519L274.138,60.649ZM282.159,55.724L281.67,55.699L281.727,55.268ZM277.132,59.535L275.962,60.093L275.699,60.317L275.519,60.188L275.597,60.046L275.029,60.087L275.019,60.516L274.485,60.776L274.167,60.534L274.384,59.639L274.547,59.227L275.356,59.113L275.372,58.481L276.02,58.009L276.617,58.253L276.36,57.882L277.056,57.84L276.815,57.536L277.734,57.649L277.934,57.177L279.845,56.72L280.655,56.315L281.756,55.017L281.241,56.208L280.601,56.842L281.258,56.864L281.75,56.016L282.595,55.463L283.072,55.73L283.6,55.035L284.05,55.047L281.813,56.922L281.277,56.941L280.719,57.685L280.272,57.684L279.82,58.262L278.025,58.917ZM247.042,50.015L246.726,49.347L247.277,49.545ZM275.486,57.718L274.964,58.482L275.052,58.931L274.484,59.197L274.159,59.946L274.339,58.664L274.352,58.406L274.163,56.749L273.37,55.813L273.353,55.82L273.354,55.824L274.016,56.907L274.258,57.85L272.523,57.314L272.421,57.274L271.687,57.053L269.825,56.407L269.459,56.01L268.238,55.888L267.659,55.184L267.312,53.8L266.942,53.611L266.354,53.675L265.649,52.875L265.079,53.012L262.055,53.654L261.863,53.694L259.864,54.114L258.071,54.482L257.88,54.521L254.761,55.143L254.085,55.297L251.865,55.701L251.376,55.793L248.392,56.367L247.707,56.469L245.034,56.965L244.279,57.085L243.968,55.283L245.074,54.313L245.855,53.354L246.662,52.757L246.661,52.75L246.933,51.876L247.767,51.058L247.29,50.006L247.325,49.514L246.414,49.292L246.177,48.08L247.324,47.463L248.91,46.842L251.16,46.457L252.548,46.477L253.396,46.905L254.217,46.47L255.278,46.176L256.068,46.209L257.247,45.447L257.24,45.415L257.648,44.803L258.473,43.902L259.328,43.66L259.344,42.647L259.292,42.654L259.258,42.657L258.947,41.858L258.564,41.717L259.295,41.163L258.8,40.658L259.001,40.027L258.409,40.559L257.711,40.007L258.59,38.666L259.828,37.559L260.089,36.734L261.78,34.15L263.127,32.84L264.239,32.511L267.467,31.756L270.602,30.902L270.683,32.03L271.228,33.841L271.355,33.926L271.745,34.589L271.921,35.748L271.684,36.3L271.87,37.434L272.345,38.804L272.499,39.147L272.383,39.994L272.642,40.397L272.986,39.903L273.357,40.323L273.704,41.893L274.212,44.346L274.58,45.633L274.528,47.28L274.47,50.276L274.572,50.468L274.623,50.456L275.075,53.009L275.244,53.943L275.428,55.012L275.968,55.951L274.963,56.999L275.46,57.609L275.463,57.619L275.465,57.708Z" + }, + { + "fill": "rgb(133, 207, 187)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.101; geo: [object Object]; name: New York", + "shape": "M273.327,61.559L273.419,60.519L274.138,60.649ZM282.159,55.724L281.67,55.699L281.727,55.268ZM277.132,59.535L275.962,60.093L275.699,60.317L275.519,60.188L275.597,60.046L275.029,60.087L275.019,60.516L274.485,60.776L274.167,60.534L274.384,59.639L274.547,59.227L275.356,59.113L275.372,58.481L276.02,58.009L276.617,58.253L276.36,57.882L277.056,57.84L276.815,57.536L277.734,57.649L277.934,57.177L279.845,56.72L280.655,56.315L281.756,55.017L281.241,56.208L280.601,56.842L281.258,56.864L281.75,56.016L282.595,55.463L283.072,55.73L283.6,55.035L284.05,55.047L281.813,56.922L281.277,56.941L280.719,57.685L280.272,57.684L279.82,58.262L278.025,58.917ZM247.042,50.015L246.726,49.347L247.277,49.545ZM275.486,57.718L274.964,58.482L275.052,58.931L274.484,59.197L274.159,59.946L274.339,58.664L274.352,58.406L274.163,56.749L273.37,55.813L273.353,55.82L273.354,55.824L274.016,56.907L274.258,57.85L272.523,57.314L272.421,57.274L271.687,57.053L269.825,56.407L269.459,56.01L268.238,55.888L267.659,55.184L267.312,53.8L266.942,53.611L266.354,53.675L265.649,52.875L265.079,53.012L262.055,53.654L261.863,53.694L259.864,54.114L258.071,54.482L257.88,54.521L254.761,55.143L254.085,55.297L251.865,55.701L251.376,55.793L248.392,56.367L247.707,56.469L245.034,56.965L244.279,57.085L243.968,55.283L245.074,54.313L245.855,53.354L246.662,52.757L246.661,52.75L246.933,51.876L247.767,51.058L247.29,50.006L247.325,49.514L246.414,49.292L246.177,48.08L247.324,47.463L248.91,46.842L251.16,46.457L252.548,46.477L253.396,46.905L254.217,46.47L255.278,46.176L256.068,46.209L257.247,45.447L257.24,45.415L257.648,44.803L258.473,43.902L259.328,43.66L259.344,42.647L259.292,42.654L259.258,42.657L258.947,41.858L258.564,41.717L259.295,41.163L258.8,40.658L259.001,40.027L258.409,40.559L257.711,40.007L258.59,38.666L259.828,37.559L260.089,36.734L261.78,34.15L263.127,32.84L264.239,32.511L267.467,31.756L270.602,30.902L270.683,32.03L271.228,33.841L271.355,33.926L271.745,34.589L271.921,35.748L271.684,36.3L271.87,37.434L272.345,38.804L272.499,39.147L272.383,39.994L272.642,40.397L272.986,39.903L273.357,40.323L273.704,41.893L274.212,44.346L274.58,45.633L274.528,47.28L274.47,50.276L274.572,50.468L274.623,50.456L275.075,53.009L275.244,53.943L275.428,55.012L275.968,55.951L274.963,56.999L275.46,57.609L275.463,57.619L275.465,57.708Z" + }, + { + "fill": "rgb(149, 214, 185)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.09; geo: [object Object]; name: New York", + "shape": "M273.327,61.559L273.419,60.519L274.138,60.649ZM282.159,55.724L281.67,55.699L281.727,55.268ZM277.132,59.535L275.962,60.093L275.699,60.317L275.519,60.188L275.597,60.046L275.029,60.087L275.019,60.516L274.485,60.776L274.167,60.534L274.384,59.639L274.547,59.227L275.356,59.113L275.372,58.481L276.02,58.009L276.617,58.253L276.36,57.882L277.056,57.84L276.815,57.536L277.734,57.649L277.934,57.177L279.845,56.72L280.655,56.315L281.756,55.017L281.241,56.208L280.601,56.842L281.258,56.864L281.75,56.016L282.595,55.463L283.072,55.73L283.6,55.035L284.05,55.047L281.813,56.922L281.277,56.941L280.719,57.685L280.272,57.684L279.82,58.262L278.025,58.917ZM247.042,50.015L246.726,49.347L247.277,49.545ZM275.486,57.718L274.964,58.482L275.052,58.931L274.484,59.197L274.159,59.946L274.339,58.664L274.352,58.406L274.163,56.749L273.37,55.813L273.353,55.82L273.354,55.824L274.016,56.907L274.258,57.85L272.523,57.314L272.421,57.274L271.687,57.053L269.825,56.407L269.459,56.01L268.238,55.888L267.659,55.184L267.312,53.8L266.942,53.611L266.354,53.675L265.649,52.875L265.079,53.012L262.055,53.654L261.863,53.694L259.864,54.114L258.071,54.482L257.88,54.521L254.761,55.143L254.085,55.297L251.865,55.701L251.376,55.793L248.392,56.367L247.707,56.469L245.034,56.965L244.279,57.085L243.968,55.283L245.074,54.313L245.855,53.354L246.662,52.757L246.661,52.75L246.933,51.876L247.767,51.058L247.29,50.006L247.325,49.514L246.414,49.292L246.177,48.08L247.324,47.463L248.91,46.842L251.16,46.457L252.548,46.477L253.396,46.905L254.217,46.47L255.278,46.176L256.068,46.209L257.247,45.447L257.24,45.415L257.648,44.803L258.473,43.902L259.328,43.66L259.344,42.647L259.292,42.654L259.258,42.657L258.947,41.858L258.564,41.717L259.295,41.163L258.8,40.658L259.001,40.027L258.409,40.559L257.711,40.007L258.59,38.666L259.828,37.559L260.089,36.734L261.78,34.15L263.127,32.84L264.239,32.511L267.467,31.756L270.602,30.902L270.683,32.03L271.228,33.841L271.355,33.926L271.745,34.589L271.921,35.748L271.684,36.3L271.87,37.434L272.345,38.804L272.499,39.147L272.383,39.994L272.642,40.397L272.986,39.903L273.357,40.323L273.704,41.893L274.212,44.346L274.58,45.633L274.528,47.28L274.47,50.276L274.572,50.468L274.623,50.456L275.075,53.009L275.244,53.943L275.428,55.012L275.968,55.951L274.963,56.999L275.46,57.609L275.463,57.619L275.465,57.708Z" + }, + { + "fill": "rgb(105, 197, 190)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.119; geo: [object Object]; name: New York", + "shape": "M273.327,61.559L273.419,60.519L274.138,60.649ZM282.159,55.724L281.67,55.699L281.727,55.268ZM277.132,59.535L275.962,60.093L275.699,60.317L275.519,60.188L275.597,60.046L275.029,60.087L275.019,60.516L274.485,60.776L274.167,60.534L274.384,59.639L274.547,59.227L275.356,59.113L275.372,58.481L276.02,58.009L276.617,58.253L276.36,57.882L277.056,57.84L276.815,57.536L277.734,57.649L277.934,57.177L279.845,56.72L280.655,56.315L281.756,55.017L281.241,56.208L280.601,56.842L281.258,56.864L281.75,56.016L282.595,55.463L283.072,55.73L283.6,55.035L284.05,55.047L281.813,56.922L281.277,56.941L280.719,57.685L280.272,57.684L279.82,58.262L278.025,58.917ZM247.042,50.015L246.726,49.347L247.277,49.545ZM275.486,57.718L274.964,58.482L275.052,58.931L274.484,59.197L274.159,59.946L274.339,58.664L274.352,58.406L274.163,56.749L273.37,55.813L273.353,55.82L273.354,55.824L274.016,56.907L274.258,57.85L272.523,57.314L272.421,57.274L271.687,57.053L269.825,56.407L269.459,56.01L268.238,55.888L267.659,55.184L267.312,53.8L266.942,53.611L266.354,53.675L265.649,52.875L265.079,53.012L262.055,53.654L261.863,53.694L259.864,54.114L258.071,54.482L257.88,54.521L254.761,55.143L254.085,55.297L251.865,55.701L251.376,55.793L248.392,56.367L247.707,56.469L245.034,56.965L244.279,57.085L243.968,55.283L245.074,54.313L245.855,53.354L246.662,52.757L246.661,52.75L246.933,51.876L247.767,51.058L247.29,50.006L247.325,49.514L246.414,49.292L246.177,48.08L247.324,47.463L248.91,46.842L251.16,46.457L252.548,46.477L253.396,46.905L254.217,46.47L255.278,46.176L256.068,46.209L257.247,45.447L257.24,45.415L257.648,44.803L258.473,43.902L259.328,43.66L259.344,42.647L259.292,42.654L259.258,42.657L258.947,41.858L258.564,41.717L259.295,41.163L258.8,40.658L259.001,40.027L258.409,40.559L257.711,40.007L258.59,38.666L259.828,37.559L260.089,36.734L261.78,34.15L263.127,32.84L264.239,32.511L267.467,31.756L270.602,30.902L270.683,32.03L271.228,33.841L271.355,33.926L271.745,34.589L271.921,35.748L271.684,36.3L271.87,37.434L272.345,38.804L272.499,39.147L272.383,39.994L272.642,40.397L272.986,39.903L273.357,40.323L273.704,41.893L274.212,44.346L274.58,45.633L274.528,47.28L274.47,50.276L274.572,50.468L274.623,50.456L275.075,53.009L275.244,53.943L275.428,55.012L275.968,55.951L274.963,56.999L275.46,57.609L275.463,57.619L275.465,57.708Z" + }, + { + "fill": "rgb(107, 198, 190)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.118; geo: [object Object]; name: New York", + "shape": "M273.327,61.559L273.419,60.519L274.138,60.649ZM282.159,55.724L281.67,55.699L281.727,55.268ZM277.132,59.535L275.962,60.093L275.699,60.317L275.519,60.188L275.597,60.046L275.029,60.087L275.019,60.516L274.485,60.776L274.167,60.534L274.384,59.639L274.547,59.227L275.356,59.113L275.372,58.481L276.02,58.009L276.617,58.253L276.36,57.882L277.056,57.84L276.815,57.536L277.734,57.649L277.934,57.177L279.845,56.72L280.655,56.315L281.756,55.017L281.241,56.208L280.601,56.842L281.258,56.864L281.75,56.016L282.595,55.463L283.072,55.73L283.6,55.035L284.05,55.047L281.813,56.922L281.277,56.941L280.719,57.685L280.272,57.684L279.82,58.262L278.025,58.917ZM247.042,50.015L246.726,49.347L247.277,49.545ZM275.486,57.718L274.964,58.482L275.052,58.931L274.484,59.197L274.159,59.946L274.339,58.664L274.352,58.406L274.163,56.749L273.37,55.813L273.353,55.82L273.354,55.824L274.016,56.907L274.258,57.85L272.523,57.314L272.421,57.274L271.687,57.053L269.825,56.407L269.459,56.01L268.238,55.888L267.659,55.184L267.312,53.8L266.942,53.611L266.354,53.675L265.649,52.875L265.079,53.012L262.055,53.654L261.863,53.694L259.864,54.114L258.071,54.482L257.88,54.521L254.761,55.143L254.085,55.297L251.865,55.701L251.376,55.793L248.392,56.367L247.707,56.469L245.034,56.965L244.279,57.085L243.968,55.283L245.074,54.313L245.855,53.354L246.662,52.757L246.661,52.75L246.933,51.876L247.767,51.058L247.29,50.006L247.325,49.514L246.414,49.292L246.177,48.08L247.324,47.463L248.91,46.842L251.16,46.457L252.548,46.477L253.396,46.905L254.217,46.47L255.278,46.176L256.068,46.209L257.247,45.447L257.24,45.415L257.648,44.803L258.473,43.902L259.328,43.66L259.344,42.647L259.292,42.654L259.258,42.657L258.947,41.858L258.564,41.717L259.295,41.163L258.8,40.658L259.001,40.027L258.409,40.559L257.711,40.007L258.59,38.666L259.828,37.559L260.089,36.734L261.78,34.15L263.127,32.84L264.239,32.511L267.467,31.756L270.602,30.902L270.683,32.03L271.228,33.841L271.355,33.926L271.745,34.589L271.921,35.748L271.684,36.3L271.87,37.434L272.345,38.804L272.499,39.147L272.383,39.994L272.642,40.397L272.986,39.903L273.357,40.323L273.704,41.893L274.212,44.346L274.58,45.633L274.528,47.28L274.47,50.276L274.572,50.468L274.623,50.456L275.075,53.009L275.244,53.943L275.428,55.012L275.968,55.951L274.963,56.999L275.46,57.609L275.463,57.619L275.465,57.708Z" + }, + { + "fill": "rgb(53, 166, 193)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.166; geo: [object Object]; name: New York", + "shape": "M273.327,61.559L273.419,60.519L274.138,60.649ZM282.159,55.724L281.67,55.699L281.727,55.268ZM277.132,59.535L275.962,60.093L275.699,60.317L275.519,60.188L275.597,60.046L275.029,60.087L275.019,60.516L274.485,60.776L274.167,60.534L274.384,59.639L274.547,59.227L275.356,59.113L275.372,58.481L276.02,58.009L276.617,58.253L276.36,57.882L277.056,57.84L276.815,57.536L277.734,57.649L277.934,57.177L279.845,56.72L280.655,56.315L281.756,55.017L281.241,56.208L280.601,56.842L281.258,56.864L281.75,56.016L282.595,55.463L283.072,55.73L283.6,55.035L284.05,55.047L281.813,56.922L281.277,56.941L280.719,57.685L280.272,57.684L279.82,58.262L278.025,58.917ZM247.042,50.015L246.726,49.347L247.277,49.545ZM275.486,57.718L274.964,58.482L275.052,58.931L274.484,59.197L274.159,59.946L274.339,58.664L274.352,58.406L274.163,56.749L273.37,55.813L273.353,55.82L273.354,55.824L274.016,56.907L274.258,57.85L272.523,57.314L272.421,57.274L271.687,57.053L269.825,56.407L269.459,56.01L268.238,55.888L267.659,55.184L267.312,53.8L266.942,53.611L266.354,53.675L265.649,52.875L265.079,53.012L262.055,53.654L261.863,53.694L259.864,54.114L258.071,54.482L257.88,54.521L254.761,55.143L254.085,55.297L251.865,55.701L251.376,55.793L248.392,56.367L247.707,56.469L245.034,56.965L244.279,57.085L243.968,55.283L245.074,54.313L245.855,53.354L246.662,52.757L246.661,52.75L246.933,51.876L247.767,51.058L247.29,50.006L247.325,49.514L246.414,49.292L246.177,48.08L247.324,47.463L248.91,46.842L251.16,46.457L252.548,46.477L253.396,46.905L254.217,46.47L255.278,46.176L256.068,46.209L257.247,45.447L257.24,45.415L257.648,44.803L258.473,43.902L259.328,43.66L259.344,42.647L259.292,42.654L259.258,42.657L258.947,41.858L258.564,41.717L259.295,41.163L258.8,40.658L259.001,40.027L258.409,40.559L257.711,40.007L258.59,38.666L259.828,37.559L260.089,36.734L261.78,34.15L263.127,32.84L264.239,32.511L267.467,31.756L270.602,30.902L270.683,32.03L271.228,33.841L271.355,33.926L271.745,34.589L271.921,35.748L271.684,36.3L271.87,37.434L272.345,38.804L272.499,39.147L272.383,39.994L272.642,40.397L272.986,39.903L273.357,40.323L273.704,41.893L274.212,44.346L274.58,45.633L274.528,47.28L274.47,50.276L274.572,50.468L274.623,50.456L275.075,53.009L275.244,53.943L275.428,55.012L275.968,55.951L274.963,56.999L275.46,57.609L275.463,57.619L275.465,57.708Z" + }, + { + "fill": "rgb(79, 185, 193)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.14; geo: [object Object]; name: New York", + "shape": "M273.327,61.559L273.419,60.519L274.138,60.649ZM282.159,55.724L281.67,55.699L281.727,55.268ZM277.132,59.535L275.962,60.093L275.699,60.317L275.519,60.188L275.597,60.046L275.029,60.087L275.019,60.516L274.485,60.776L274.167,60.534L274.384,59.639L274.547,59.227L275.356,59.113L275.372,58.481L276.02,58.009L276.617,58.253L276.36,57.882L277.056,57.84L276.815,57.536L277.734,57.649L277.934,57.177L279.845,56.72L280.655,56.315L281.756,55.017L281.241,56.208L280.601,56.842L281.258,56.864L281.75,56.016L282.595,55.463L283.072,55.73L283.6,55.035L284.05,55.047L281.813,56.922L281.277,56.941L280.719,57.685L280.272,57.684L279.82,58.262L278.025,58.917ZM247.042,50.015L246.726,49.347L247.277,49.545ZM275.486,57.718L274.964,58.482L275.052,58.931L274.484,59.197L274.159,59.946L274.339,58.664L274.352,58.406L274.163,56.749L273.37,55.813L273.353,55.82L273.354,55.824L274.016,56.907L274.258,57.85L272.523,57.314L272.421,57.274L271.687,57.053L269.825,56.407L269.459,56.01L268.238,55.888L267.659,55.184L267.312,53.8L266.942,53.611L266.354,53.675L265.649,52.875L265.079,53.012L262.055,53.654L261.863,53.694L259.864,54.114L258.071,54.482L257.88,54.521L254.761,55.143L254.085,55.297L251.865,55.701L251.376,55.793L248.392,56.367L247.707,56.469L245.034,56.965L244.279,57.085L243.968,55.283L245.074,54.313L245.855,53.354L246.662,52.757L246.661,52.75L246.933,51.876L247.767,51.058L247.29,50.006L247.325,49.514L246.414,49.292L246.177,48.08L247.324,47.463L248.91,46.842L251.16,46.457L252.548,46.477L253.396,46.905L254.217,46.47L255.278,46.176L256.068,46.209L257.247,45.447L257.24,45.415L257.648,44.803L258.473,43.902L259.328,43.66L259.344,42.647L259.292,42.654L259.258,42.657L258.947,41.858L258.564,41.717L259.295,41.163L258.8,40.658L259.001,40.027L258.409,40.559L257.711,40.007L258.59,38.666L259.828,37.559L260.089,36.734L261.78,34.15L263.127,32.84L264.239,32.511L267.467,31.756L270.602,30.902L270.683,32.03L271.228,33.841L271.355,33.926L271.745,34.589L271.921,35.748L271.684,36.3L271.87,37.434L272.345,38.804L272.499,39.147L272.383,39.994L272.642,40.397L272.986,39.903L273.357,40.323L273.704,41.893L274.212,44.346L274.58,45.633L274.528,47.28L274.47,50.276L274.572,50.468L274.623,50.456L275.075,53.009L275.244,53.943L275.428,55.012L275.968,55.951L274.963,56.999L275.46,57.609L275.463,57.619L275.465,57.708Z" + }, + { + "fill": "rgb(191, 230, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.061; geo: [object Object]; name: New York", + "shape": "M273.327,61.559L273.419,60.519L274.138,60.649ZM282.159,55.724L281.67,55.699L281.727,55.268ZM277.132,59.535L275.962,60.093L275.699,60.317L275.519,60.188L275.597,60.046L275.029,60.087L275.019,60.516L274.485,60.776L274.167,60.534L274.384,59.639L274.547,59.227L275.356,59.113L275.372,58.481L276.02,58.009L276.617,58.253L276.36,57.882L277.056,57.84L276.815,57.536L277.734,57.649L277.934,57.177L279.845,56.72L280.655,56.315L281.756,55.017L281.241,56.208L280.601,56.842L281.258,56.864L281.75,56.016L282.595,55.463L283.072,55.73L283.6,55.035L284.05,55.047L281.813,56.922L281.277,56.941L280.719,57.685L280.272,57.684L279.82,58.262L278.025,58.917ZM247.042,50.015L246.726,49.347L247.277,49.545ZM275.486,57.718L274.964,58.482L275.052,58.931L274.484,59.197L274.159,59.946L274.339,58.664L274.352,58.406L274.163,56.749L273.37,55.813L273.353,55.82L273.354,55.824L274.016,56.907L274.258,57.85L272.523,57.314L272.421,57.274L271.687,57.053L269.825,56.407L269.459,56.01L268.238,55.888L267.659,55.184L267.312,53.8L266.942,53.611L266.354,53.675L265.649,52.875L265.079,53.012L262.055,53.654L261.863,53.694L259.864,54.114L258.071,54.482L257.88,54.521L254.761,55.143L254.085,55.297L251.865,55.701L251.376,55.793L248.392,56.367L247.707,56.469L245.034,56.965L244.279,57.085L243.968,55.283L245.074,54.313L245.855,53.354L246.662,52.757L246.661,52.75L246.933,51.876L247.767,51.058L247.29,50.006L247.325,49.514L246.414,49.292L246.177,48.08L247.324,47.463L248.91,46.842L251.16,46.457L252.548,46.477L253.396,46.905L254.217,46.47L255.278,46.176L256.068,46.209L257.247,45.447L257.24,45.415L257.648,44.803L258.473,43.902L259.328,43.66L259.344,42.647L259.292,42.654L259.258,42.657L258.947,41.858L258.564,41.717L259.295,41.163L258.8,40.658L259.001,40.027L258.409,40.559L257.711,40.007L258.59,38.666L259.828,37.559L260.089,36.734L261.78,34.15L263.127,32.84L264.239,32.511L267.467,31.756L270.602,30.902L270.683,32.03L271.228,33.841L271.355,33.926L271.745,34.589L271.921,35.748L271.684,36.3L271.87,37.434L272.345,38.804L272.499,39.147L272.383,39.994L272.642,40.397L272.986,39.903L273.357,40.323L273.704,41.893L274.212,44.346L274.58,45.633L274.528,47.28L274.47,50.276L274.572,50.468L274.623,50.456L275.075,53.009L275.244,53.943L275.428,55.012L275.968,55.951L274.963,56.999L275.46,57.609L275.463,57.619L275.465,57.708Z" + }, + { + "fill": "rgb(178, 225, 182)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.07; geo: [object Object]; name: New York", + "shape": "M273.327,61.559L273.419,60.519L274.138,60.649ZM282.159,55.724L281.67,55.699L281.727,55.268ZM277.132,59.535L275.962,60.093L275.699,60.317L275.519,60.188L275.597,60.046L275.029,60.087L275.019,60.516L274.485,60.776L274.167,60.534L274.384,59.639L274.547,59.227L275.356,59.113L275.372,58.481L276.02,58.009L276.617,58.253L276.36,57.882L277.056,57.84L276.815,57.536L277.734,57.649L277.934,57.177L279.845,56.72L280.655,56.315L281.756,55.017L281.241,56.208L280.601,56.842L281.258,56.864L281.75,56.016L282.595,55.463L283.072,55.73L283.6,55.035L284.05,55.047L281.813,56.922L281.277,56.941L280.719,57.685L280.272,57.684L279.82,58.262L278.025,58.917ZM247.042,50.015L246.726,49.347L247.277,49.545ZM275.486,57.718L274.964,58.482L275.052,58.931L274.484,59.197L274.159,59.946L274.339,58.664L274.352,58.406L274.163,56.749L273.37,55.813L273.353,55.82L273.354,55.824L274.016,56.907L274.258,57.85L272.523,57.314L272.421,57.274L271.687,57.053L269.825,56.407L269.459,56.01L268.238,55.888L267.659,55.184L267.312,53.8L266.942,53.611L266.354,53.675L265.649,52.875L265.079,53.012L262.055,53.654L261.863,53.694L259.864,54.114L258.071,54.482L257.88,54.521L254.761,55.143L254.085,55.297L251.865,55.701L251.376,55.793L248.392,56.367L247.707,56.469L245.034,56.965L244.279,57.085L243.968,55.283L245.074,54.313L245.855,53.354L246.662,52.757L246.661,52.75L246.933,51.876L247.767,51.058L247.29,50.006L247.325,49.514L246.414,49.292L246.177,48.08L247.324,47.463L248.91,46.842L251.16,46.457L252.548,46.477L253.396,46.905L254.217,46.47L255.278,46.176L256.068,46.209L257.247,45.447L257.24,45.415L257.648,44.803L258.473,43.902L259.328,43.66L259.344,42.647L259.292,42.654L259.258,42.657L258.947,41.858L258.564,41.717L259.295,41.163L258.8,40.658L259.001,40.027L258.409,40.559L257.711,40.007L258.59,38.666L259.828,37.559L260.089,36.734L261.78,34.15L263.127,32.84L264.239,32.511L267.467,31.756L270.602,30.902L270.683,32.03L271.228,33.841L271.355,33.926L271.745,34.589L271.921,35.748L271.684,36.3L271.87,37.434L272.345,38.804L272.499,39.147L272.383,39.994L272.642,40.397L272.986,39.903L273.357,40.323L273.704,41.893L274.212,44.346L274.58,45.633L274.528,47.28L274.47,50.276L274.572,50.468L274.623,50.456L275.075,53.009L275.244,53.943L275.428,55.012L275.968,55.951L274.963,56.999L275.46,57.609L275.463,57.619L275.465,57.708Z" + }, + { + "fill": "rgb(157, 216, 184)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.085; geo: [object Object]; name: North Carolina", + "shape": "M274.254,94.852L274.464,95.353L274.655,97.86L273.527,98.366L273.519,98.327L274.636,97.5L274.495,95.767ZM273.321,94.118L272.599,93.437L273.043,93.478ZM270.844,89.499L270.976,89.471L271.919,91.478L273.289,93.425L272.379,92.692L271.901,91.486L271.704,91.394L270.917,89.655ZM270.207,89.636L270.376,89.6L270.47,89.58L270.695,89.531L270.79,89.976ZM270.948,91.445L270.482,91.013L270.899,91.31L270.659,92.028L269.65,91.35L269.647,91.339L269.366,91.216L269.295,91.068L269.366,91.216L269.647,91.339L269.65,91.35L269.493,91.539L270.351,92.06L270.503,92.403L269.774,92.591L269.248,92.148L269.893,92.778L268.356,93.245L268.592,93.62L267.987,93.842L267.327,93.6L266.991,92.733L267.062,92.028L266.572,91.746L265.564,91.607L266.453,91.737L266.913,92.448L266.875,93.128L267.468,94.094L267.463,94.548L268.97,93.827L269.211,94.129L270.163,93.494L270.755,93.402L271.043,93.734L270.94,94.459L271.192,95.457L270.62,95.468L271.453,95.473L271.275,93.99L272.148,93.36L272.73,94.131L272.995,95.446L272.387,95.849L272.159,95.53L272.287,95.937L271.809,96.49L271.571,97.514L270.813,97.883L269.795,97.484L269.315,97.755L268.638,97.172L269.265,97.038L269.046,96.653L268.481,96.989L268.861,97.961L266.597,97.761L265.906,97.385L265.86,97.45L266.757,98.062L268.677,98.322L268.823,98.741L268.825,98.366L269.549,98.783L268.747,99.525L269.399,99.498L269.147,100.114L268.234,101.011L267.361,100.644L267.342,100.354L266.329,100.667L266.405,100.651L266.773,100.399L267.738,101.22L268.96,101.333L268.978,100.743L269.801,100.376L270.059,99.988L270.109,100.801L271.037,100.458L270.115,102.177L270.139,102.194L270.141,102.205L269.777,102.381L269.488,101.855L269.462,102.602L269.07,101.963L268.964,102.519L268.019,102.701L267.129,103.252L266.621,102.714L266.621,102.717L266.621,102.714L266.918,103.199L266.195,104.192L265.245,104.051L265.92,104.521L265.103,105.26L264.092,106.461L264.094,106.472L264.21,106.446L264.233,106.463L263.63,107.609L263.434,108.264L263.04,107.367L263.308,108.762L262.987,109.403L261.219,109.661L260.2,110.147L260.11,110.097L260.085,110.076L259.597,109.723L256.891,107.784L256.869,107.777L254.453,106.004L254.385,105.957L252.964,105.006L251.666,105.211L249.551,105.52L248.232,105.716L246.953,105.905L246.924,105.111L246.545,104.73L246.117,104.284L245.398,104.616L245.346,103.914L243.749,104.058L243.536,104.087L241.359,104.31L240.797,104.373L240.272,104.429L238.951,104.561L238.203,104.703L237.05,105.184L236.117,105.841L235.412,106.023L234.838,106.293L234.32,106.548L232.312,106.873L231.943,106.921L229.853,107.229L229.484,107.276L228.805,107.362L227.776,107.483L227.75,105.999L228.048,105.552L228.76,105.594L229.109,105.246L229.047,104.444L229.33,104.049L229.371,104.066L230.247,103.261L230.837,103.133L231.708,103.059L232.897,101.997L232.878,101.857L233.752,101.239L234.383,101.141L234.585,100.06L235.008,100.159L235.295,99.56L236.064,99.209L236.095,99.701L236.638,99.546L237.026,98.852L237.025,98.844L237.973,98.13L238.769,98.381L239.036,98.209L239.408,97.179L239.463,97.02L239.84,96.559L240.533,96.51L240.365,96.171L240.43,94.811L242.148,94.639L244.545,94.349L244.889,94.313L246.082,94.13L246.978,94.031L249.028,93.743L249.16,93.721L250.824,93.443L251.881,93.263L252.108,93.223L252.768,93.103L253.428,92.985L253.843,92.911L255.634,92.587L255.974,92.525L257.423,92.249L258.118,92.107L259.568,91.832L260.338,91.681L261.033,91.539L263.498,91.061L264.191,90.912L265.489,90.664L265.478,90.61L267.451,90.216L267.714,90.161L268.633,89.969L269.626,89.759L270.095,89.66L270.105,89.985L270.968,90.808L272.016,92.566Z" + }, + { + "fill": "rgb(187, 228, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.064; geo: [object Object]; name: North Carolina", + "shape": "M274.254,94.852L274.464,95.353L274.655,97.86L273.527,98.366L273.519,98.327L274.636,97.5L274.495,95.767ZM273.321,94.118L272.599,93.437L273.043,93.478ZM270.844,89.499L270.976,89.471L271.919,91.478L273.289,93.425L272.379,92.692L271.901,91.486L271.704,91.394L270.917,89.655ZM270.207,89.636L270.376,89.6L270.47,89.58L270.695,89.531L270.79,89.976ZM270.948,91.445L270.482,91.013L270.899,91.31L270.659,92.028L269.65,91.35L269.647,91.339L269.366,91.216L269.295,91.068L269.366,91.216L269.647,91.339L269.65,91.35L269.493,91.539L270.351,92.06L270.503,92.403L269.774,92.591L269.248,92.148L269.893,92.778L268.356,93.245L268.592,93.62L267.987,93.842L267.327,93.6L266.991,92.733L267.062,92.028L266.572,91.746L265.564,91.607L266.453,91.737L266.913,92.448L266.875,93.128L267.468,94.094L267.463,94.548L268.97,93.827L269.211,94.129L270.163,93.494L270.755,93.402L271.043,93.734L270.94,94.459L271.192,95.457L270.62,95.468L271.453,95.473L271.275,93.99L272.148,93.36L272.73,94.131L272.995,95.446L272.387,95.849L272.159,95.53L272.287,95.937L271.809,96.49L271.571,97.514L270.813,97.883L269.795,97.484L269.315,97.755L268.638,97.172L269.265,97.038L269.046,96.653L268.481,96.989L268.861,97.961L266.597,97.761L265.906,97.385L265.86,97.45L266.757,98.062L268.677,98.322L268.823,98.741L268.825,98.366L269.549,98.783L268.747,99.525L269.399,99.498L269.147,100.114L268.234,101.011L267.361,100.644L267.342,100.354L266.329,100.667L266.405,100.651L266.773,100.399L267.738,101.22L268.96,101.333L268.978,100.743L269.801,100.376L270.059,99.988L270.109,100.801L271.037,100.458L270.115,102.177L270.139,102.194L270.141,102.205L269.777,102.381L269.488,101.855L269.462,102.602L269.07,101.963L268.964,102.519L268.019,102.701L267.129,103.252L266.621,102.714L266.621,102.717L266.621,102.714L266.918,103.199L266.195,104.192L265.245,104.051L265.92,104.521L265.103,105.26L264.092,106.461L264.094,106.472L264.21,106.446L264.233,106.463L263.63,107.609L263.434,108.264L263.04,107.367L263.308,108.762L262.987,109.403L261.219,109.661L260.2,110.147L260.11,110.097L260.085,110.076L259.597,109.723L256.891,107.784L256.869,107.777L254.453,106.004L254.385,105.957L252.964,105.006L251.666,105.211L249.551,105.52L248.232,105.716L246.953,105.905L246.924,105.111L246.545,104.73L246.117,104.284L245.398,104.616L245.346,103.914L243.749,104.058L243.536,104.087L241.359,104.31L240.797,104.373L240.272,104.429L238.951,104.561L238.203,104.703L237.05,105.184L236.117,105.841L235.412,106.023L234.838,106.293L234.32,106.548L232.312,106.873L231.943,106.921L229.853,107.229L229.484,107.276L228.805,107.362L227.776,107.483L227.75,105.999L228.048,105.552L228.76,105.594L229.109,105.246L229.047,104.444L229.33,104.049L229.371,104.066L230.247,103.261L230.837,103.133L231.708,103.059L232.897,101.997L232.878,101.857L233.752,101.239L234.383,101.141L234.585,100.06L235.008,100.159L235.295,99.56L236.064,99.209L236.095,99.701L236.638,99.546L237.026,98.852L237.025,98.844L237.973,98.13L238.769,98.381L239.036,98.209L239.408,97.179L239.463,97.02L239.84,96.559L240.533,96.51L240.365,96.171L240.43,94.811L242.148,94.639L244.545,94.349L244.889,94.313L246.082,94.13L246.978,94.031L249.028,93.743L249.16,93.721L250.824,93.443L251.881,93.263L252.108,93.223L252.768,93.103L253.428,92.985L253.843,92.911L255.634,92.587L255.974,92.525L257.423,92.249L258.118,92.107L259.568,91.832L260.338,91.681L261.033,91.539L263.498,91.061L264.191,90.912L265.489,90.664L265.478,90.61L267.451,90.216L267.714,90.161L268.633,89.969L269.626,89.759L270.095,89.66L270.105,89.985L270.968,90.808L272.016,92.566Z" + }, + { + "fill": "rgb(101, 195, 190)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.122; geo: [object Object]; name: North Carolina", + "shape": "M274.254,94.852L274.464,95.353L274.655,97.86L273.527,98.366L273.519,98.327L274.636,97.5L274.495,95.767ZM273.321,94.118L272.599,93.437L273.043,93.478ZM270.844,89.499L270.976,89.471L271.919,91.478L273.289,93.425L272.379,92.692L271.901,91.486L271.704,91.394L270.917,89.655ZM270.207,89.636L270.376,89.6L270.47,89.58L270.695,89.531L270.79,89.976ZM270.948,91.445L270.482,91.013L270.899,91.31L270.659,92.028L269.65,91.35L269.647,91.339L269.366,91.216L269.295,91.068L269.366,91.216L269.647,91.339L269.65,91.35L269.493,91.539L270.351,92.06L270.503,92.403L269.774,92.591L269.248,92.148L269.893,92.778L268.356,93.245L268.592,93.62L267.987,93.842L267.327,93.6L266.991,92.733L267.062,92.028L266.572,91.746L265.564,91.607L266.453,91.737L266.913,92.448L266.875,93.128L267.468,94.094L267.463,94.548L268.97,93.827L269.211,94.129L270.163,93.494L270.755,93.402L271.043,93.734L270.94,94.459L271.192,95.457L270.62,95.468L271.453,95.473L271.275,93.99L272.148,93.36L272.73,94.131L272.995,95.446L272.387,95.849L272.159,95.53L272.287,95.937L271.809,96.49L271.571,97.514L270.813,97.883L269.795,97.484L269.315,97.755L268.638,97.172L269.265,97.038L269.046,96.653L268.481,96.989L268.861,97.961L266.597,97.761L265.906,97.385L265.86,97.45L266.757,98.062L268.677,98.322L268.823,98.741L268.825,98.366L269.549,98.783L268.747,99.525L269.399,99.498L269.147,100.114L268.234,101.011L267.361,100.644L267.342,100.354L266.329,100.667L266.405,100.651L266.773,100.399L267.738,101.22L268.96,101.333L268.978,100.743L269.801,100.376L270.059,99.988L270.109,100.801L271.037,100.458L270.115,102.177L270.139,102.194L270.141,102.205L269.777,102.381L269.488,101.855L269.462,102.602L269.07,101.963L268.964,102.519L268.019,102.701L267.129,103.252L266.621,102.714L266.621,102.717L266.621,102.714L266.918,103.199L266.195,104.192L265.245,104.051L265.92,104.521L265.103,105.26L264.092,106.461L264.094,106.472L264.21,106.446L264.233,106.463L263.63,107.609L263.434,108.264L263.04,107.367L263.308,108.762L262.987,109.403L261.219,109.661L260.2,110.147L260.11,110.097L260.085,110.076L259.597,109.723L256.891,107.784L256.869,107.777L254.453,106.004L254.385,105.957L252.964,105.006L251.666,105.211L249.551,105.52L248.232,105.716L246.953,105.905L246.924,105.111L246.545,104.73L246.117,104.284L245.398,104.616L245.346,103.914L243.749,104.058L243.536,104.087L241.359,104.31L240.797,104.373L240.272,104.429L238.951,104.561L238.203,104.703L237.05,105.184L236.117,105.841L235.412,106.023L234.838,106.293L234.32,106.548L232.312,106.873L231.943,106.921L229.853,107.229L229.484,107.276L228.805,107.362L227.776,107.483L227.75,105.999L228.048,105.552L228.76,105.594L229.109,105.246L229.047,104.444L229.33,104.049L229.371,104.066L230.247,103.261L230.837,103.133L231.708,103.059L232.897,101.997L232.878,101.857L233.752,101.239L234.383,101.141L234.585,100.06L235.008,100.159L235.295,99.56L236.064,99.209L236.095,99.701L236.638,99.546L237.026,98.852L237.025,98.844L237.973,98.13L238.769,98.381L239.036,98.209L239.408,97.179L239.463,97.02L239.84,96.559L240.533,96.51L240.365,96.171L240.43,94.811L242.148,94.639L244.545,94.349L244.889,94.313L246.082,94.13L246.978,94.031L249.028,93.743L249.16,93.721L250.824,93.443L251.881,93.263L252.108,93.223L252.768,93.103L253.428,92.985L253.843,92.911L255.634,92.587L255.974,92.525L257.423,92.249L258.118,92.107L259.568,91.832L260.338,91.681L261.033,91.539L263.498,91.061L264.191,90.912L265.489,90.664L265.478,90.61L267.451,90.216L267.714,90.161L268.633,89.969L269.626,89.759L270.095,89.66L270.105,89.985L270.968,90.808L272.016,92.566Z" + }, + { + "fill": "rgb(105, 197, 190)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.119; geo: [object Object]; name: North Carolina", + "shape": "M274.254,94.852L274.464,95.353L274.655,97.86L273.527,98.366L273.519,98.327L274.636,97.5L274.495,95.767ZM273.321,94.118L272.599,93.437L273.043,93.478ZM270.844,89.499L270.976,89.471L271.919,91.478L273.289,93.425L272.379,92.692L271.901,91.486L271.704,91.394L270.917,89.655ZM270.207,89.636L270.376,89.6L270.47,89.58L270.695,89.531L270.79,89.976ZM270.948,91.445L270.482,91.013L270.899,91.31L270.659,92.028L269.65,91.35L269.647,91.339L269.366,91.216L269.295,91.068L269.366,91.216L269.647,91.339L269.65,91.35L269.493,91.539L270.351,92.06L270.503,92.403L269.774,92.591L269.248,92.148L269.893,92.778L268.356,93.245L268.592,93.62L267.987,93.842L267.327,93.6L266.991,92.733L267.062,92.028L266.572,91.746L265.564,91.607L266.453,91.737L266.913,92.448L266.875,93.128L267.468,94.094L267.463,94.548L268.97,93.827L269.211,94.129L270.163,93.494L270.755,93.402L271.043,93.734L270.94,94.459L271.192,95.457L270.62,95.468L271.453,95.473L271.275,93.99L272.148,93.36L272.73,94.131L272.995,95.446L272.387,95.849L272.159,95.53L272.287,95.937L271.809,96.49L271.571,97.514L270.813,97.883L269.795,97.484L269.315,97.755L268.638,97.172L269.265,97.038L269.046,96.653L268.481,96.989L268.861,97.961L266.597,97.761L265.906,97.385L265.86,97.45L266.757,98.062L268.677,98.322L268.823,98.741L268.825,98.366L269.549,98.783L268.747,99.525L269.399,99.498L269.147,100.114L268.234,101.011L267.361,100.644L267.342,100.354L266.329,100.667L266.405,100.651L266.773,100.399L267.738,101.22L268.96,101.333L268.978,100.743L269.801,100.376L270.059,99.988L270.109,100.801L271.037,100.458L270.115,102.177L270.139,102.194L270.141,102.205L269.777,102.381L269.488,101.855L269.462,102.602L269.07,101.963L268.964,102.519L268.019,102.701L267.129,103.252L266.621,102.714L266.621,102.717L266.621,102.714L266.918,103.199L266.195,104.192L265.245,104.051L265.92,104.521L265.103,105.26L264.092,106.461L264.094,106.472L264.21,106.446L264.233,106.463L263.63,107.609L263.434,108.264L263.04,107.367L263.308,108.762L262.987,109.403L261.219,109.661L260.2,110.147L260.11,110.097L260.085,110.076L259.597,109.723L256.891,107.784L256.869,107.777L254.453,106.004L254.385,105.957L252.964,105.006L251.666,105.211L249.551,105.52L248.232,105.716L246.953,105.905L246.924,105.111L246.545,104.73L246.117,104.284L245.398,104.616L245.346,103.914L243.749,104.058L243.536,104.087L241.359,104.31L240.797,104.373L240.272,104.429L238.951,104.561L238.203,104.703L237.05,105.184L236.117,105.841L235.412,106.023L234.838,106.293L234.32,106.548L232.312,106.873L231.943,106.921L229.853,107.229L229.484,107.276L228.805,107.362L227.776,107.483L227.75,105.999L228.048,105.552L228.76,105.594L229.109,105.246L229.047,104.444L229.33,104.049L229.371,104.066L230.247,103.261L230.837,103.133L231.708,103.059L232.897,101.997L232.878,101.857L233.752,101.239L234.383,101.141L234.585,100.06L235.008,100.159L235.295,99.56L236.064,99.209L236.095,99.701L236.638,99.546L237.026,98.852L237.025,98.844L237.973,98.13L238.769,98.381L239.036,98.209L239.408,97.179L239.463,97.02L239.84,96.559L240.533,96.51L240.365,96.171L240.43,94.811L242.148,94.639L244.545,94.349L244.889,94.313L246.082,94.13L246.978,94.031L249.028,93.743L249.16,93.721L250.824,93.443L251.881,93.263L252.108,93.223L252.768,93.103L253.428,92.985L253.843,92.911L255.634,92.587L255.974,92.525L257.423,92.249L258.118,92.107L259.568,91.832L260.338,91.681L261.033,91.539L263.498,91.061L264.191,90.912L265.489,90.664L265.478,90.61L267.451,90.216L267.714,90.161L268.633,89.969L269.626,89.759L270.095,89.66L270.105,89.985L270.968,90.808L272.016,92.566Z" + }, + { + "fill": "rgb(68, 179, 194)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.149; geo: [object Object]; name: North Carolina", + "shape": "M274.254,94.852L274.464,95.353L274.655,97.86L273.527,98.366L273.519,98.327L274.636,97.5L274.495,95.767ZM273.321,94.118L272.599,93.437L273.043,93.478ZM270.844,89.499L270.976,89.471L271.919,91.478L273.289,93.425L272.379,92.692L271.901,91.486L271.704,91.394L270.917,89.655ZM270.207,89.636L270.376,89.6L270.47,89.58L270.695,89.531L270.79,89.976ZM270.948,91.445L270.482,91.013L270.899,91.31L270.659,92.028L269.65,91.35L269.647,91.339L269.366,91.216L269.295,91.068L269.366,91.216L269.647,91.339L269.65,91.35L269.493,91.539L270.351,92.06L270.503,92.403L269.774,92.591L269.248,92.148L269.893,92.778L268.356,93.245L268.592,93.62L267.987,93.842L267.327,93.6L266.991,92.733L267.062,92.028L266.572,91.746L265.564,91.607L266.453,91.737L266.913,92.448L266.875,93.128L267.468,94.094L267.463,94.548L268.97,93.827L269.211,94.129L270.163,93.494L270.755,93.402L271.043,93.734L270.94,94.459L271.192,95.457L270.62,95.468L271.453,95.473L271.275,93.99L272.148,93.36L272.73,94.131L272.995,95.446L272.387,95.849L272.159,95.53L272.287,95.937L271.809,96.49L271.571,97.514L270.813,97.883L269.795,97.484L269.315,97.755L268.638,97.172L269.265,97.038L269.046,96.653L268.481,96.989L268.861,97.961L266.597,97.761L265.906,97.385L265.86,97.45L266.757,98.062L268.677,98.322L268.823,98.741L268.825,98.366L269.549,98.783L268.747,99.525L269.399,99.498L269.147,100.114L268.234,101.011L267.361,100.644L267.342,100.354L266.329,100.667L266.405,100.651L266.773,100.399L267.738,101.22L268.96,101.333L268.978,100.743L269.801,100.376L270.059,99.988L270.109,100.801L271.037,100.458L270.115,102.177L270.139,102.194L270.141,102.205L269.777,102.381L269.488,101.855L269.462,102.602L269.07,101.963L268.964,102.519L268.019,102.701L267.129,103.252L266.621,102.714L266.621,102.717L266.621,102.714L266.918,103.199L266.195,104.192L265.245,104.051L265.92,104.521L265.103,105.26L264.092,106.461L264.094,106.472L264.21,106.446L264.233,106.463L263.63,107.609L263.434,108.264L263.04,107.367L263.308,108.762L262.987,109.403L261.219,109.661L260.2,110.147L260.11,110.097L260.085,110.076L259.597,109.723L256.891,107.784L256.869,107.777L254.453,106.004L254.385,105.957L252.964,105.006L251.666,105.211L249.551,105.52L248.232,105.716L246.953,105.905L246.924,105.111L246.545,104.73L246.117,104.284L245.398,104.616L245.346,103.914L243.749,104.058L243.536,104.087L241.359,104.31L240.797,104.373L240.272,104.429L238.951,104.561L238.203,104.703L237.05,105.184L236.117,105.841L235.412,106.023L234.838,106.293L234.32,106.548L232.312,106.873L231.943,106.921L229.853,107.229L229.484,107.276L228.805,107.362L227.776,107.483L227.75,105.999L228.048,105.552L228.76,105.594L229.109,105.246L229.047,104.444L229.33,104.049L229.371,104.066L230.247,103.261L230.837,103.133L231.708,103.059L232.897,101.997L232.878,101.857L233.752,101.239L234.383,101.141L234.585,100.06L235.008,100.159L235.295,99.56L236.064,99.209L236.095,99.701L236.638,99.546L237.026,98.852L237.025,98.844L237.973,98.13L238.769,98.381L239.036,98.209L239.408,97.179L239.463,97.02L239.84,96.559L240.533,96.51L240.365,96.171L240.43,94.811L242.148,94.639L244.545,94.349L244.889,94.313L246.082,94.13L246.978,94.031L249.028,93.743L249.16,93.721L250.824,93.443L251.881,93.263L252.108,93.223L252.768,93.103L253.428,92.985L253.843,92.911L255.634,92.587L255.974,92.525L257.423,92.249L258.118,92.107L259.568,91.832L260.338,91.681L261.033,91.539L263.498,91.061L264.191,90.912L265.489,90.664L265.478,90.61L267.451,90.216L267.714,90.161L268.633,89.969L269.626,89.759L270.095,89.66L270.105,89.985L270.968,90.808L272.016,92.566Z" + }, + { + "fill": "rgb(119, 202, 188)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.11; geo: [object Object]; name: North Carolina", + "shape": "M274.254,94.852L274.464,95.353L274.655,97.86L273.527,98.366L273.519,98.327L274.636,97.5L274.495,95.767ZM273.321,94.118L272.599,93.437L273.043,93.478ZM270.844,89.499L270.976,89.471L271.919,91.478L273.289,93.425L272.379,92.692L271.901,91.486L271.704,91.394L270.917,89.655ZM270.207,89.636L270.376,89.6L270.47,89.58L270.695,89.531L270.79,89.976ZM270.948,91.445L270.482,91.013L270.899,91.31L270.659,92.028L269.65,91.35L269.647,91.339L269.366,91.216L269.295,91.068L269.366,91.216L269.647,91.339L269.65,91.35L269.493,91.539L270.351,92.06L270.503,92.403L269.774,92.591L269.248,92.148L269.893,92.778L268.356,93.245L268.592,93.62L267.987,93.842L267.327,93.6L266.991,92.733L267.062,92.028L266.572,91.746L265.564,91.607L266.453,91.737L266.913,92.448L266.875,93.128L267.468,94.094L267.463,94.548L268.97,93.827L269.211,94.129L270.163,93.494L270.755,93.402L271.043,93.734L270.94,94.459L271.192,95.457L270.62,95.468L271.453,95.473L271.275,93.99L272.148,93.36L272.73,94.131L272.995,95.446L272.387,95.849L272.159,95.53L272.287,95.937L271.809,96.49L271.571,97.514L270.813,97.883L269.795,97.484L269.315,97.755L268.638,97.172L269.265,97.038L269.046,96.653L268.481,96.989L268.861,97.961L266.597,97.761L265.906,97.385L265.86,97.45L266.757,98.062L268.677,98.322L268.823,98.741L268.825,98.366L269.549,98.783L268.747,99.525L269.399,99.498L269.147,100.114L268.234,101.011L267.361,100.644L267.342,100.354L266.329,100.667L266.405,100.651L266.773,100.399L267.738,101.22L268.96,101.333L268.978,100.743L269.801,100.376L270.059,99.988L270.109,100.801L271.037,100.458L270.115,102.177L270.139,102.194L270.141,102.205L269.777,102.381L269.488,101.855L269.462,102.602L269.07,101.963L268.964,102.519L268.019,102.701L267.129,103.252L266.621,102.714L266.621,102.717L266.621,102.714L266.918,103.199L266.195,104.192L265.245,104.051L265.92,104.521L265.103,105.26L264.092,106.461L264.094,106.472L264.21,106.446L264.233,106.463L263.63,107.609L263.434,108.264L263.04,107.367L263.308,108.762L262.987,109.403L261.219,109.661L260.2,110.147L260.11,110.097L260.085,110.076L259.597,109.723L256.891,107.784L256.869,107.777L254.453,106.004L254.385,105.957L252.964,105.006L251.666,105.211L249.551,105.52L248.232,105.716L246.953,105.905L246.924,105.111L246.545,104.73L246.117,104.284L245.398,104.616L245.346,103.914L243.749,104.058L243.536,104.087L241.359,104.31L240.797,104.373L240.272,104.429L238.951,104.561L238.203,104.703L237.05,105.184L236.117,105.841L235.412,106.023L234.838,106.293L234.32,106.548L232.312,106.873L231.943,106.921L229.853,107.229L229.484,107.276L228.805,107.362L227.776,107.483L227.75,105.999L228.048,105.552L228.76,105.594L229.109,105.246L229.047,104.444L229.33,104.049L229.371,104.066L230.247,103.261L230.837,103.133L231.708,103.059L232.897,101.997L232.878,101.857L233.752,101.239L234.383,101.141L234.585,100.06L235.008,100.159L235.295,99.56L236.064,99.209L236.095,99.701L236.638,99.546L237.026,98.852L237.025,98.844L237.973,98.13L238.769,98.381L239.036,98.209L239.408,97.179L239.463,97.02L239.84,96.559L240.533,96.51L240.365,96.171L240.43,94.811L242.148,94.639L244.545,94.349L244.889,94.313L246.082,94.13L246.978,94.031L249.028,93.743L249.16,93.721L250.824,93.443L251.881,93.263L252.108,93.223L252.768,93.103L253.428,92.985L253.843,92.911L255.634,92.587L255.974,92.525L257.423,92.249L258.118,92.107L259.568,91.832L260.338,91.681L261.033,91.539L263.498,91.061L264.191,90.912L265.489,90.664L265.478,90.61L267.451,90.216L267.714,90.161L268.633,89.969L269.626,89.759L270.095,89.66L270.105,89.985L270.968,90.808L272.016,92.566Z" + }, + { + "fill": "rgb(42, 154, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.18; geo: [object Object]; name: North Carolina", + "shape": "M274.254,94.852L274.464,95.353L274.655,97.86L273.527,98.366L273.519,98.327L274.636,97.5L274.495,95.767ZM273.321,94.118L272.599,93.437L273.043,93.478ZM270.844,89.499L270.976,89.471L271.919,91.478L273.289,93.425L272.379,92.692L271.901,91.486L271.704,91.394L270.917,89.655ZM270.207,89.636L270.376,89.6L270.47,89.58L270.695,89.531L270.79,89.976ZM270.948,91.445L270.482,91.013L270.899,91.31L270.659,92.028L269.65,91.35L269.647,91.339L269.366,91.216L269.295,91.068L269.366,91.216L269.647,91.339L269.65,91.35L269.493,91.539L270.351,92.06L270.503,92.403L269.774,92.591L269.248,92.148L269.893,92.778L268.356,93.245L268.592,93.62L267.987,93.842L267.327,93.6L266.991,92.733L267.062,92.028L266.572,91.746L265.564,91.607L266.453,91.737L266.913,92.448L266.875,93.128L267.468,94.094L267.463,94.548L268.97,93.827L269.211,94.129L270.163,93.494L270.755,93.402L271.043,93.734L270.94,94.459L271.192,95.457L270.62,95.468L271.453,95.473L271.275,93.99L272.148,93.36L272.73,94.131L272.995,95.446L272.387,95.849L272.159,95.53L272.287,95.937L271.809,96.49L271.571,97.514L270.813,97.883L269.795,97.484L269.315,97.755L268.638,97.172L269.265,97.038L269.046,96.653L268.481,96.989L268.861,97.961L266.597,97.761L265.906,97.385L265.86,97.45L266.757,98.062L268.677,98.322L268.823,98.741L268.825,98.366L269.549,98.783L268.747,99.525L269.399,99.498L269.147,100.114L268.234,101.011L267.361,100.644L267.342,100.354L266.329,100.667L266.405,100.651L266.773,100.399L267.738,101.22L268.96,101.333L268.978,100.743L269.801,100.376L270.059,99.988L270.109,100.801L271.037,100.458L270.115,102.177L270.139,102.194L270.141,102.205L269.777,102.381L269.488,101.855L269.462,102.602L269.07,101.963L268.964,102.519L268.019,102.701L267.129,103.252L266.621,102.714L266.621,102.717L266.621,102.714L266.918,103.199L266.195,104.192L265.245,104.051L265.92,104.521L265.103,105.26L264.092,106.461L264.094,106.472L264.21,106.446L264.233,106.463L263.63,107.609L263.434,108.264L263.04,107.367L263.308,108.762L262.987,109.403L261.219,109.661L260.2,110.147L260.11,110.097L260.085,110.076L259.597,109.723L256.891,107.784L256.869,107.777L254.453,106.004L254.385,105.957L252.964,105.006L251.666,105.211L249.551,105.52L248.232,105.716L246.953,105.905L246.924,105.111L246.545,104.73L246.117,104.284L245.398,104.616L245.346,103.914L243.749,104.058L243.536,104.087L241.359,104.31L240.797,104.373L240.272,104.429L238.951,104.561L238.203,104.703L237.05,105.184L236.117,105.841L235.412,106.023L234.838,106.293L234.32,106.548L232.312,106.873L231.943,106.921L229.853,107.229L229.484,107.276L228.805,107.362L227.776,107.483L227.75,105.999L228.048,105.552L228.76,105.594L229.109,105.246L229.047,104.444L229.33,104.049L229.371,104.066L230.247,103.261L230.837,103.133L231.708,103.059L232.897,101.997L232.878,101.857L233.752,101.239L234.383,101.141L234.585,100.06L235.008,100.159L235.295,99.56L236.064,99.209L236.095,99.701L236.638,99.546L237.026,98.852L237.025,98.844L237.973,98.13L238.769,98.381L239.036,98.209L239.408,97.179L239.463,97.02L239.84,96.559L240.533,96.51L240.365,96.171L240.43,94.811L242.148,94.639L244.545,94.349L244.889,94.313L246.082,94.13L246.978,94.031L249.028,93.743L249.16,93.721L250.824,93.443L251.881,93.263L252.108,93.223L252.768,93.103L253.428,92.985L253.843,92.911L255.634,92.587L255.974,92.525L257.423,92.249L258.118,92.107L259.568,91.832L260.338,91.681L261.033,91.539L263.498,91.061L264.191,90.912L265.489,90.664L265.478,90.61L267.451,90.216L267.714,90.161L268.633,89.969L269.626,89.759L270.095,89.66L270.105,89.985L270.968,90.808L272.016,92.566Z" + }, + { + "fill": "rgb(130, 206, 187)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.103; geo: [object Object]; name: North Carolina", + "shape": "M274.254,94.852L274.464,95.353L274.655,97.86L273.527,98.366L273.519,98.327L274.636,97.5L274.495,95.767ZM273.321,94.118L272.599,93.437L273.043,93.478ZM270.844,89.499L270.976,89.471L271.919,91.478L273.289,93.425L272.379,92.692L271.901,91.486L271.704,91.394L270.917,89.655ZM270.207,89.636L270.376,89.6L270.47,89.58L270.695,89.531L270.79,89.976ZM270.948,91.445L270.482,91.013L270.899,91.31L270.659,92.028L269.65,91.35L269.647,91.339L269.366,91.216L269.295,91.068L269.366,91.216L269.647,91.339L269.65,91.35L269.493,91.539L270.351,92.06L270.503,92.403L269.774,92.591L269.248,92.148L269.893,92.778L268.356,93.245L268.592,93.62L267.987,93.842L267.327,93.6L266.991,92.733L267.062,92.028L266.572,91.746L265.564,91.607L266.453,91.737L266.913,92.448L266.875,93.128L267.468,94.094L267.463,94.548L268.97,93.827L269.211,94.129L270.163,93.494L270.755,93.402L271.043,93.734L270.94,94.459L271.192,95.457L270.62,95.468L271.453,95.473L271.275,93.99L272.148,93.36L272.73,94.131L272.995,95.446L272.387,95.849L272.159,95.53L272.287,95.937L271.809,96.49L271.571,97.514L270.813,97.883L269.795,97.484L269.315,97.755L268.638,97.172L269.265,97.038L269.046,96.653L268.481,96.989L268.861,97.961L266.597,97.761L265.906,97.385L265.86,97.45L266.757,98.062L268.677,98.322L268.823,98.741L268.825,98.366L269.549,98.783L268.747,99.525L269.399,99.498L269.147,100.114L268.234,101.011L267.361,100.644L267.342,100.354L266.329,100.667L266.405,100.651L266.773,100.399L267.738,101.22L268.96,101.333L268.978,100.743L269.801,100.376L270.059,99.988L270.109,100.801L271.037,100.458L270.115,102.177L270.139,102.194L270.141,102.205L269.777,102.381L269.488,101.855L269.462,102.602L269.07,101.963L268.964,102.519L268.019,102.701L267.129,103.252L266.621,102.714L266.621,102.717L266.621,102.714L266.918,103.199L266.195,104.192L265.245,104.051L265.92,104.521L265.103,105.26L264.092,106.461L264.094,106.472L264.21,106.446L264.233,106.463L263.63,107.609L263.434,108.264L263.04,107.367L263.308,108.762L262.987,109.403L261.219,109.661L260.2,110.147L260.11,110.097L260.085,110.076L259.597,109.723L256.891,107.784L256.869,107.777L254.453,106.004L254.385,105.957L252.964,105.006L251.666,105.211L249.551,105.52L248.232,105.716L246.953,105.905L246.924,105.111L246.545,104.73L246.117,104.284L245.398,104.616L245.346,103.914L243.749,104.058L243.536,104.087L241.359,104.31L240.797,104.373L240.272,104.429L238.951,104.561L238.203,104.703L237.05,105.184L236.117,105.841L235.412,106.023L234.838,106.293L234.32,106.548L232.312,106.873L231.943,106.921L229.853,107.229L229.484,107.276L228.805,107.362L227.776,107.483L227.75,105.999L228.048,105.552L228.76,105.594L229.109,105.246L229.047,104.444L229.33,104.049L229.371,104.066L230.247,103.261L230.837,103.133L231.708,103.059L232.897,101.997L232.878,101.857L233.752,101.239L234.383,101.141L234.585,100.06L235.008,100.159L235.295,99.56L236.064,99.209L236.095,99.701L236.638,99.546L237.026,98.852L237.025,98.844L237.973,98.13L238.769,98.381L239.036,98.209L239.408,97.179L239.463,97.02L239.84,96.559L240.533,96.51L240.365,96.171L240.43,94.811L242.148,94.639L244.545,94.349L244.889,94.313L246.082,94.13L246.978,94.031L249.028,93.743L249.16,93.721L250.824,93.443L251.881,93.263L252.108,93.223L252.768,93.103L253.428,92.985L253.843,92.911L255.634,92.587L255.974,92.525L257.423,92.249L258.118,92.107L259.568,91.832L260.338,91.681L261.033,91.539L263.498,91.061L264.191,90.912L265.489,90.664L265.478,90.61L267.451,90.216L267.714,90.161L268.633,89.969L269.626,89.759L270.095,89.66L270.105,89.985L270.968,90.808L272.016,92.566Z" + }, + { + "fill": "rgb(218, 241, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.035; geo: [object Object]; name: North Carolina", + "shape": "M274.254,94.852L274.464,95.353L274.655,97.86L273.527,98.366L273.519,98.327L274.636,97.5L274.495,95.767ZM273.321,94.118L272.599,93.437L273.043,93.478ZM270.844,89.499L270.976,89.471L271.919,91.478L273.289,93.425L272.379,92.692L271.901,91.486L271.704,91.394L270.917,89.655ZM270.207,89.636L270.376,89.6L270.47,89.58L270.695,89.531L270.79,89.976ZM270.948,91.445L270.482,91.013L270.899,91.31L270.659,92.028L269.65,91.35L269.647,91.339L269.366,91.216L269.295,91.068L269.366,91.216L269.647,91.339L269.65,91.35L269.493,91.539L270.351,92.06L270.503,92.403L269.774,92.591L269.248,92.148L269.893,92.778L268.356,93.245L268.592,93.62L267.987,93.842L267.327,93.6L266.991,92.733L267.062,92.028L266.572,91.746L265.564,91.607L266.453,91.737L266.913,92.448L266.875,93.128L267.468,94.094L267.463,94.548L268.97,93.827L269.211,94.129L270.163,93.494L270.755,93.402L271.043,93.734L270.94,94.459L271.192,95.457L270.62,95.468L271.453,95.473L271.275,93.99L272.148,93.36L272.73,94.131L272.995,95.446L272.387,95.849L272.159,95.53L272.287,95.937L271.809,96.49L271.571,97.514L270.813,97.883L269.795,97.484L269.315,97.755L268.638,97.172L269.265,97.038L269.046,96.653L268.481,96.989L268.861,97.961L266.597,97.761L265.906,97.385L265.86,97.45L266.757,98.062L268.677,98.322L268.823,98.741L268.825,98.366L269.549,98.783L268.747,99.525L269.399,99.498L269.147,100.114L268.234,101.011L267.361,100.644L267.342,100.354L266.329,100.667L266.405,100.651L266.773,100.399L267.738,101.22L268.96,101.333L268.978,100.743L269.801,100.376L270.059,99.988L270.109,100.801L271.037,100.458L270.115,102.177L270.139,102.194L270.141,102.205L269.777,102.381L269.488,101.855L269.462,102.602L269.07,101.963L268.964,102.519L268.019,102.701L267.129,103.252L266.621,102.714L266.621,102.717L266.621,102.714L266.918,103.199L266.195,104.192L265.245,104.051L265.92,104.521L265.103,105.26L264.092,106.461L264.094,106.472L264.21,106.446L264.233,106.463L263.63,107.609L263.434,108.264L263.04,107.367L263.308,108.762L262.987,109.403L261.219,109.661L260.2,110.147L260.11,110.097L260.085,110.076L259.597,109.723L256.891,107.784L256.869,107.777L254.453,106.004L254.385,105.957L252.964,105.006L251.666,105.211L249.551,105.52L248.232,105.716L246.953,105.905L246.924,105.111L246.545,104.73L246.117,104.284L245.398,104.616L245.346,103.914L243.749,104.058L243.536,104.087L241.359,104.31L240.797,104.373L240.272,104.429L238.951,104.561L238.203,104.703L237.05,105.184L236.117,105.841L235.412,106.023L234.838,106.293L234.32,106.548L232.312,106.873L231.943,106.921L229.853,107.229L229.484,107.276L228.805,107.362L227.776,107.483L227.75,105.999L228.048,105.552L228.76,105.594L229.109,105.246L229.047,104.444L229.33,104.049L229.371,104.066L230.247,103.261L230.837,103.133L231.708,103.059L232.897,101.997L232.878,101.857L233.752,101.239L234.383,101.141L234.585,100.06L235.008,100.159L235.295,99.56L236.064,99.209L236.095,99.701L236.638,99.546L237.026,98.852L237.025,98.844L237.973,98.13L238.769,98.381L239.036,98.209L239.408,97.179L239.463,97.02L239.84,96.559L240.533,96.51L240.365,96.171L240.43,94.811L242.148,94.639L244.545,94.349L244.889,94.313L246.082,94.13L246.978,94.031L249.028,93.743L249.16,93.721L250.824,93.443L251.881,93.263L252.108,93.223L252.768,93.103L253.428,92.985L253.843,92.911L255.634,92.587L255.974,92.525L257.423,92.249L258.118,92.107L259.568,91.832L260.338,91.681L261.033,91.539L263.498,91.061L264.191,90.912L265.489,90.664L265.478,90.61L267.451,90.216L267.714,90.161L268.633,89.969L269.626,89.759L270.095,89.66L270.105,89.985L270.968,90.808L272.016,92.566Z" + }, + { + "fill": "rgb(220, 241, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.033; geo: [object Object]; name: North Carolina", + "shape": "M274.254,94.852L274.464,95.353L274.655,97.86L273.527,98.366L273.519,98.327L274.636,97.5L274.495,95.767ZM273.321,94.118L272.599,93.437L273.043,93.478ZM270.844,89.499L270.976,89.471L271.919,91.478L273.289,93.425L272.379,92.692L271.901,91.486L271.704,91.394L270.917,89.655ZM270.207,89.636L270.376,89.6L270.47,89.58L270.695,89.531L270.79,89.976ZM270.948,91.445L270.482,91.013L270.899,91.31L270.659,92.028L269.65,91.35L269.647,91.339L269.366,91.216L269.295,91.068L269.366,91.216L269.647,91.339L269.65,91.35L269.493,91.539L270.351,92.06L270.503,92.403L269.774,92.591L269.248,92.148L269.893,92.778L268.356,93.245L268.592,93.62L267.987,93.842L267.327,93.6L266.991,92.733L267.062,92.028L266.572,91.746L265.564,91.607L266.453,91.737L266.913,92.448L266.875,93.128L267.468,94.094L267.463,94.548L268.97,93.827L269.211,94.129L270.163,93.494L270.755,93.402L271.043,93.734L270.94,94.459L271.192,95.457L270.62,95.468L271.453,95.473L271.275,93.99L272.148,93.36L272.73,94.131L272.995,95.446L272.387,95.849L272.159,95.53L272.287,95.937L271.809,96.49L271.571,97.514L270.813,97.883L269.795,97.484L269.315,97.755L268.638,97.172L269.265,97.038L269.046,96.653L268.481,96.989L268.861,97.961L266.597,97.761L265.906,97.385L265.86,97.45L266.757,98.062L268.677,98.322L268.823,98.741L268.825,98.366L269.549,98.783L268.747,99.525L269.399,99.498L269.147,100.114L268.234,101.011L267.361,100.644L267.342,100.354L266.329,100.667L266.405,100.651L266.773,100.399L267.738,101.22L268.96,101.333L268.978,100.743L269.801,100.376L270.059,99.988L270.109,100.801L271.037,100.458L270.115,102.177L270.139,102.194L270.141,102.205L269.777,102.381L269.488,101.855L269.462,102.602L269.07,101.963L268.964,102.519L268.019,102.701L267.129,103.252L266.621,102.714L266.621,102.717L266.621,102.714L266.918,103.199L266.195,104.192L265.245,104.051L265.92,104.521L265.103,105.26L264.092,106.461L264.094,106.472L264.21,106.446L264.233,106.463L263.63,107.609L263.434,108.264L263.04,107.367L263.308,108.762L262.987,109.403L261.219,109.661L260.2,110.147L260.11,110.097L260.085,110.076L259.597,109.723L256.891,107.784L256.869,107.777L254.453,106.004L254.385,105.957L252.964,105.006L251.666,105.211L249.551,105.52L248.232,105.716L246.953,105.905L246.924,105.111L246.545,104.73L246.117,104.284L245.398,104.616L245.346,103.914L243.749,104.058L243.536,104.087L241.359,104.31L240.797,104.373L240.272,104.429L238.951,104.561L238.203,104.703L237.05,105.184L236.117,105.841L235.412,106.023L234.838,106.293L234.32,106.548L232.312,106.873L231.943,106.921L229.853,107.229L229.484,107.276L228.805,107.362L227.776,107.483L227.75,105.999L228.048,105.552L228.76,105.594L229.109,105.246L229.047,104.444L229.33,104.049L229.371,104.066L230.247,103.261L230.837,103.133L231.708,103.059L232.897,101.997L232.878,101.857L233.752,101.239L234.383,101.141L234.585,100.06L235.008,100.159L235.295,99.56L236.064,99.209L236.095,99.701L236.638,99.546L237.026,98.852L237.025,98.844L237.973,98.13L238.769,98.381L239.036,98.209L239.408,97.179L239.463,97.02L239.84,96.559L240.533,96.51L240.365,96.171L240.43,94.811L242.148,94.639L244.545,94.349L244.889,94.313L246.082,94.13L246.978,94.031L249.028,93.743L249.16,93.721L250.824,93.443L251.881,93.263L252.108,93.223L252.768,93.103L253.428,92.985L253.843,92.911L255.634,92.587L255.974,92.525L257.423,92.249L258.118,92.107L259.568,91.832L260.338,91.681L261.033,91.539L263.498,91.061L264.191,90.912L265.489,90.664L265.478,90.61L267.451,90.216L267.714,90.161L268.633,89.969L269.626,89.759L270.095,89.66L270.105,89.985L270.968,90.808L272.016,92.566Z" + }, + { + "fill": "rgb(181, 226, 182)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.068; geo: [object Object]; name: North Dakota", + "shape": "M158.82,16.965L158.981,18.206L159.372,19.076L159.087,20.003L159.255,20.826L159.14,22.331L159.122,22.455L159.51,23.968L160.225,25.792L160.394,26.957L160.477,28.706L160.439,29.286L160.463,30.247L160.805,30.856L160.601,31.508L160.607,32.761L160.673,32.765L160.881,33.737L161.507,34.772L161.698,36.287L161.611,36.845L161.658,37.424L158.556,37.395L155.052,37.332L154.918,37.329L151.567,37.224L150.26,37.178L146.909,37.055L146.172,37.019L143.208,36.873L136.296,36.483L131.897,36.183L131.647,36.161L126.767,35.774L126.956,33.545L127.104,31.805L127.16,31.135L127.549,26.55L127.587,26.104L127.925,22.129L128.129,19.523L128.267,17.903L128.472,15.486L133.383,15.881L137.484,16.161L139.815,16.303L145.646,16.6L148.586,16.719L150.937,16.793L155.606,16.911Z" + }, + { + "fill": "rgb(204, 235, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.048; geo: [object Object]; name: North Dakota", + "shape": "M158.82,16.965L158.981,18.206L159.372,19.076L159.087,20.003L159.255,20.826L159.14,22.331L159.122,22.455L159.51,23.968L160.225,25.792L160.394,26.957L160.477,28.706L160.439,29.286L160.463,30.247L160.805,30.856L160.601,31.508L160.607,32.761L160.673,32.765L160.881,33.737L161.507,34.772L161.698,36.287L161.611,36.845L161.658,37.424L158.556,37.395L155.052,37.332L154.918,37.329L151.567,37.224L150.26,37.178L146.909,37.055L146.172,37.019L143.208,36.873L136.296,36.483L131.897,36.183L131.647,36.161L126.767,35.774L126.956,33.545L127.104,31.805L127.16,31.135L127.549,26.55L127.587,26.104L127.925,22.129L128.129,19.523L128.267,17.903L128.472,15.486L133.383,15.881L137.484,16.161L139.815,16.303L145.646,16.6L148.586,16.719L150.937,16.793L155.606,16.911Z" + }, + { + "fill": "rgb(134, 208, 187)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.1; geo: [object Object]; name: North Dakota", + "shape": "M158.82,16.965L158.981,18.206L159.372,19.076L159.087,20.003L159.255,20.826L159.14,22.331L159.122,22.455L159.51,23.968L160.225,25.792L160.394,26.957L160.477,28.706L160.439,29.286L160.463,30.247L160.805,30.856L160.601,31.508L160.607,32.761L160.673,32.765L160.881,33.737L161.507,34.772L161.698,36.287L161.611,36.845L161.658,37.424L158.556,37.395L155.052,37.332L154.918,37.329L151.567,37.224L150.26,37.178L146.909,37.055L146.172,37.019L143.208,36.873L136.296,36.483L131.897,36.183L131.647,36.161L126.767,35.774L126.956,33.545L127.104,31.805L127.16,31.135L127.549,26.55L127.587,26.104L127.925,22.129L128.129,19.523L128.267,17.903L128.472,15.486L133.383,15.881L137.484,16.161L139.815,16.303L145.646,16.6L148.586,16.719L150.937,16.793L155.606,16.911Z" + }, + { + "fill": "rgb(128, 206, 187)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.104; geo: [object Object]; name: North Dakota", + "shape": "M158.82,16.965L158.981,18.206L159.372,19.076L159.087,20.003L159.255,20.826L159.14,22.331L159.122,22.455L159.51,23.968L160.225,25.792L160.394,26.957L160.477,28.706L160.439,29.286L160.463,30.247L160.805,30.856L160.601,31.508L160.607,32.761L160.673,32.765L160.881,33.737L161.507,34.772L161.698,36.287L161.611,36.845L161.658,37.424L158.556,37.395L155.052,37.332L154.918,37.329L151.567,37.224L150.26,37.178L146.909,37.055L146.172,37.019L143.208,36.873L136.296,36.483L131.897,36.183L131.647,36.161L126.767,35.774L126.956,33.545L127.104,31.805L127.16,31.135L127.549,26.55L127.587,26.104L127.925,22.129L128.129,19.523L128.267,17.903L128.472,15.486L133.383,15.881L137.484,16.161L139.815,16.303L145.646,16.6L148.586,16.719L150.937,16.793L155.606,16.911Z" + }, + { + "fill": "rgb(77, 184, 193)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.141; geo: [object Object]; name: North Dakota", + "shape": "M158.82,16.965L158.981,18.206L159.372,19.076L159.087,20.003L159.255,20.826L159.14,22.331L159.122,22.455L159.51,23.968L160.225,25.792L160.394,26.957L160.477,28.706L160.439,29.286L160.463,30.247L160.805,30.856L160.601,31.508L160.607,32.761L160.673,32.765L160.881,33.737L161.507,34.772L161.698,36.287L161.611,36.845L161.658,37.424L158.556,37.395L155.052,37.332L154.918,37.329L151.567,37.224L150.26,37.178L146.909,37.055L146.172,37.019L143.208,36.873L136.296,36.483L131.897,36.183L131.647,36.161L126.767,35.774L126.956,33.545L127.104,31.805L127.16,31.135L127.549,26.55L127.587,26.104L127.925,22.129L128.129,19.523L128.267,17.903L128.472,15.486L133.383,15.881L137.484,16.161L139.815,16.303L145.646,16.6L148.586,16.719L150.937,16.793L155.606,16.911Z" + }, + { + "fill": "rgb(80, 185, 193)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.139; geo: [object Object]; name: North Dakota", + "shape": "M158.82,16.965L158.981,18.206L159.372,19.076L159.087,20.003L159.255,20.826L159.14,22.331L159.122,22.455L159.51,23.968L160.225,25.792L160.394,26.957L160.477,28.706L160.439,29.286L160.463,30.247L160.805,30.856L160.601,31.508L160.607,32.761L160.673,32.765L160.881,33.737L161.507,34.772L161.698,36.287L161.611,36.845L161.658,37.424L158.556,37.395L155.052,37.332L154.918,37.329L151.567,37.224L150.26,37.178L146.909,37.055L146.172,37.019L143.208,36.873L136.296,36.483L131.897,36.183L131.647,36.161L126.767,35.774L126.956,33.545L127.104,31.805L127.16,31.135L127.549,26.55L127.587,26.104L127.925,22.129L128.129,19.523L128.267,17.903L128.472,15.486L133.383,15.881L137.484,16.161L139.815,16.303L145.646,16.6L148.586,16.719L150.937,16.793L155.606,16.911Z" + }, + { + "fill": "rgb(40, 147, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.187; geo: [object Object]; name: North Dakota", + "shape": "M158.82,16.965L158.981,18.206L159.372,19.076L159.087,20.003L159.255,20.826L159.14,22.331L159.122,22.455L159.51,23.968L160.225,25.792L160.394,26.957L160.477,28.706L160.439,29.286L160.463,30.247L160.805,30.856L160.601,31.508L160.607,32.761L160.673,32.765L160.881,33.737L161.507,34.772L161.698,36.287L161.611,36.845L161.658,37.424L158.556,37.395L155.052,37.332L154.918,37.329L151.567,37.224L150.26,37.178L146.909,37.055L146.172,37.019L143.208,36.873L136.296,36.483L131.897,36.183L131.647,36.161L126.767,35.774L126.956,33.545L127.104,31.805L127.16,31.135L127.549,26.55L127.587,26.104L127.925,22.129L128.129,19.523L128.267,17.903L128.472,15.486L133.383,15.881L137.484,16.161L139.815,16.303L145.646,16.6L148.586,16.719L150.937,16.793L155.606,16.911Z" + }, + { + "fill": "rgb(86, 188, 192)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.134; geo: [object Object]; name: North Dakota", + "shape": "M158.82,16.965L158.981,18.206L159.372,19.076L159.087,20.003L159.255,20.826L159.14,22.331L159.122,22.455L159.51,23.968L160.225,25.792L160.394,26.957L160.477,28.706L160.439,29.286L160.463,30.247L160.805,30.856L160.601,31.508L160.607,32.761L160.673,32.765L160.881,33.737L161.507,34.772L161.698,36.287L161.611,36.845L161.658,37.424L158.556,37.395L155.052,37.332L154.918,37.329L151.567,37.224L150.26,37.178L146.909,37.055L146.172,37.019L143.208,36.873L136.296,36.483L131.897,36.183L131.647,36.161L126.767,35.774L126.956,33.545L127.104,31.805L127.16,31.135L127.549,26.55L127.587,26.104L127.925,22.129L128.129,19.523L128.267,17.903L128.472,15.486L133.383,15.881L137.484,16.161L139.815,16.303L145.646,16.6L148.586,16.719L150.937,16.793L155.606,16.911Z" + }, + { + "fill": "rgb(215, 239, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.038; geo: [object Object]; name: North Dakota", + "shape": "M158.82,16.965L158.981,18.206L159.372,19.076L159.087,20.003L159.255,20.826L159.14,22.331L159.122,22.455L159.51,23.968L160.225,25.792L160.394,26.957L160.477,28.706L160.439,29.286L160.463,30.247L160.805,30.856L160.601,31.508L160.607,32.761L160.673,32.765L160.881,33.737L161.507,34.772L161.698,36.287L161.611,36.845L161.658,37.424L158.556,37.395L155.052,37.332L154.918,37.329L151.567,37.224L150.26,37.178L146.909,37.055L146.172,37.019L143.208,36.873L136.296,36.483L131.897,36.183L131.647,36.161L126.767,35.774L126.956,33.545L127.104,31.805L127.16,31.135L127.549,26.55L127.587,26.104L127.925,22.129L128.129,19.523L128.267,17.903L128.472,15.486L133.383,15.881L137.484,16.161L139.815,16.303L145.646,16.6L148.586,16.719L150.937,16.793L155.606,16.911Z" + }, + { + "fill": "rgb(212, 238, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.041; geo: [object Object]; name: North Dakota", + "shape": "M158.82,16.965L158.981,18.206L159.372,19.076L159.087,20.003L159.255,20.826L159.14,22.331L159.122,22.455L159.51,23.968L160.225,25.792L160.394,26.957L160.477,28.706L160.439,29.286L160.463,30.247L160.805,30.856L160.601,31.508L160.607,32.761L160.673,32.765L160.881,33.737L161.507,34.772L161.698,36.287L161.611,36.845L161.658,37.424L158.556,37.395L155.052,37.332L154.918,37.329L151.567,37.224L150.26,37.178L146.909,37.055L146.172,37.019L143.208,36.873L136.296,36.483L131.897,36.183L131.647,36.161L126.767,35.774L126.956,33.545L127.104,31.805L127.16,31.135L127.549,26.55L127.587,26.104L127.925,22.129L128.129,19.523L128.267,17.903L128.472,15.486L133.383,15.881L137.484,16.161L139.815,16.303L145.646,16.6L148.586,16.719L150.937,16.793L155.606,16.911Z" + }, + { + "fill": "rgb(158, 217, 184)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.084; geo: [object Object]; name: Ohio", + "shape": "M240.745,58.699L241.129,61.035L241.14,61.103L241.531,63.48L241.54,63.537L241.787,65.039L241.857,65.355L242.073,66.778L241.401,67.275L241.87,67.898L241.802,68.491L242.038,69.035L241.761,69.938L241.683,70.146L241.673,70.995L241.698,71.835L241.421,72.303L241.505,73.17L241.065,74.018L240.664,74.542L240.332,75.154L239.947,75.668L239.179,76.13L238.802,75.743L238.235,76.301L238.236,76.798L237.682,76.838L237.502,77.252L237.392,77.511L237.513,78.067L237.598,79.25L236.907,79.652L236.908,79.276L236.281,78.719L235.852,79.238L235.764,80.042L235.426,80.426L235.834,81.672L235.627,81.805L235.267,81.92L235.197,82.867L234.306,83.227L233.834,83.228L233.384,82.715L232.566,82.389L232.007,81.21L231.315,81.504L231.315,81.501L230.768,82.31L230.194,82.377L230.196,82.387L228.792,82.006L228.24,82.519L227.925,82.556L227.925,82.556L226.779,81.812L226.02,81.887L225.05,81.623L225.011,81.309L224.447,80.375L223.43,79.997L222.841,80.211L222.103,79.809L221.805,80.122L221.646,78.782L221.492,77.317L221.474,77.008L221.347,75.938L221.196,74.66L221.144,74.066L220.938,72.01L220.904,71.721L220.729,70.249L220.605,69.202L220.451,67.899L220.398,67.448L220.188,65.677L220.174,65.558L220.051,64.515L219.95,63.818L219.818,62.703L221.812,62.397L222.006,62.366L224.367,61.978L224.948,61.881L226.319,61.639L226.319,61.639L226.372,61.632L226.408,61.628L226.46,61.617L227.974,62.161L229.043,62.722L229.741,62.288L229.765,62.325L229.765,62.325L230.247,62.672L228.746,63.188L228.657,63.2L228.64,63.203L229.463,63.273L230.425,62.911L231.424,63.323L232.198,62.911L233.758,62.077L233.998,62.111L235.114,62.072L236.222,60.911L237.093,59.895L238.386,59.059L240.605,57.847Z" + }, + { + "fill": "rgb(193, 231, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.059; geo: [object Object]; name: Ohio", + "shape": "M240.745,58.699L241.129,61.035L241.14,61.103L241.531,63.48L241.54,63.537L241.787,65.039L241.857,65.355L242.073,66.778L241.401,67.275L241.87,67.898L241.802,68.491L242.038,69.035L241.761,69.938L241.683,70.146L241.673,70.995L241.698,71.835L241.421,72.303L241.505,73.17L241.065,74.018L240.664,74.542L240.332,75.154L239.947,75.668L239.179,76.13L238.802,75.743L238.235,76.301L238.236,76.798L237.682,76.838L237.502,77.252L237.392,77.511L237.513,78.067L237.598,79.25L236.907,79.652L236.908,79.276L236.281,78.719L235.852,79.238L235.764,80.042L235.426,80.426L235.834,81.672L235.627,81.805L235.267,81.92L235.197,82.867L234.306,83.227L233.834,83.228L233.384,82.715L232.566,82.389L232.007,81.21L231.315,81.504L231.315,81.501L230.768,82.31L230.194,82.377L230.196,82.387L228.792,82.006L228.24,82.519L227.925,82.556L227.925,82.556L226.779,81.812L226.02,81.887L225.05,81.623L225.011,81.309L224.447,80.375L223.43,79.997L222.841,80.211L222.103,79.809L221.805,80.122L221.646,78.782L221.492,77.317L221.474,77.008L221.347,75.938L221.196,74.66L221.144,74.066L220.938,72.01L220.904,71.721L220.729,70.249L220.605,69.202L220.451,67.899L220.398,67.448L220.188,65.677L220.174,65.558L220.051,64.515L219.95,63.818L219.818,62.703L221.812,62.397L222.006,62.366L224.367,61.978L224.948,61.881L226.319,61.639L226.319,61.639L226.372,61.632L226.408,61.628L226.46,61.617L227.974,62.161L229.043,62.722L229.741,62.288L229.765,62.325L229.765,62.325L230.247,62.672L228.746,63.188L228.657,63.2L228.64,63.203L229.463,63.273L230.425,62.911L231.424,63.323L232.198,62.911L233.758,62.077L233.998,62.111L235.114,62.072L236.222,60.911L237.093,59.895L238.386,59.059L240.605,57.847Z" + }, + { + "fill": "rgb(105, 197, 190)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.119; geo: [object Object]; name: Ohio", + "shape": "M240.745,58.699L241.129,61.035L241.14,61.103L241.531,63.48L241.54,63.537L241.787,65.039L241.857,65.355L242.073,66.778L241.401,67.275L241.87,67.898L241.802,68.491L242.038,69.035L241.761,69.938L241.683,70.146L241.673,70.995L241.698,71.835L241.421,72.303L241.505,73.17L241.065,74.018L240.664,74.542L240.332,75.154L239.947,75.668L239.179,76.13L238.802,75.743L238.235,76.301L238.236,76.798L237.682,76.838L237.502,77.252L237.392,77.511L237.513,78.067L237.598,79.25L236.907,79.652L236.908,79.276L236.281,78.719L235.852,79.238L235.764,80.042L235.426,80.426L235.834,81.672L235.627,81.805L235.267,81.92L235.197,82.867L234.306,83.227L233.834,83.228L233.384,82.715L232.566,82.389L232.007,81.21L231.315,81.504L231.315,81.501L230.768,82.31L230.194,82.377L230.196,82.387L228.792,82.006L228.24,82.519L227.925,82.556L227.925,82.556L226.779,81.812L226.02,81.887L225.05,81.623L225.011,81.309L224.447,80.375L223.43,79.997L222.841,80.211L222.103,79.809L221.805,80.122L221.646,78.782L221.492,77.317L221.474,77.008L221.347,75.938L221.196,74.66L221.144,74.066L220.938,72.01L220.904,71.721L220.729,70.249L220.605,69.202L220.451,67.899L220.398,67.448L220.188,65.677L220.174,65.558L220.051,64.515L219.95,63.818L219.818,62.703L221.812,62.397L222.006,62.366L224.367,61.978L224.948,61.881L226.319,61.639L226.319,61.639L226.372,61.632L226.408,61.628L226.46,61.617L227.974,62.161L229.043,62.722L229.741,62.288L229.765,62.325L229.765,62.325L230.247,62.672L228.746,63.188L228.657,63.2L228.64,63.203L229.463,63.273L230.425,62.911L231.424,63.323L232.198,62.911L233.758,62.077L233.998,62.111L235.114,62.072L236.222,60.911L237.093,59.895L238.386,59.059L240.605,57.847Z" + }, + { + "fill": "rgb(116, 201, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.112; geo: [object Object]; name: Ohio", + "shape": "M240.745,58.699L241.129,61.035L241.14,61.103L241.531,63.48L241.54,63.537L241.787,65.039L241.857,65.355L242.073,66.778L241.401,67.275L241.87,67.898L241.802,68.491L242.038,69.035L241.761,69.938L241.683,70.146L241.673,70.995L241.698,71.835L241.421,72.303L241.505,73.17L241.065,74.018L240.664,74.542L240.332,75.154L239.947,75.668L239.179,76.13L238.802,75.743L238.235,76.301L238.236,76.798L237.682,76.838L237.502,77.252L237.392,77.511L237.513,78.067L237.598,79.25L236.907,79.652L236.908,79.276L236.281,78.719L235.852,79.238L235.764,80.042L235.426,80.426L235.834,81.672L235.627,81.805L235.267,81.92L235.197,82.867L234.306,83.227L233.834,83.228L233.384,82.715L232.566,82.389L232.007,81.21L231.315,81.504L231.315,81.501L230.768,82.31L230.194,82.377L230.196,82.387L228.792,82.006L228.24,82.519L227.925,82.556L227.925,82.556L226.779,81.812L226.02,81.887L225.05,81.623L225.011,81.309L224.447,80.375L223.43,79.997L222.841,80.211L222.103,79.809L221.805,80.122L221.646,78.782L221.492,77.317L221.474,77.008L221.347,75.938L221.196,74.66L221.144,74.066L220.938,72.01L220.904,71.721L220.729,70.249L220.605,69.202L220.451,67.899L220.398,67.448L220.188,65.677L220.174,65.558L220.051,64.515L219.95,63.818L219.818,62.703L221.812,62.397L222.006,62.366L224.367,61.978L224.948,61.881L226.319,61.639L226.319,61.639L226.372,61.632L226.408,61.628L226.46,61.617L227.974,62.161L229.043,62.722L229.741,62.288L229.765,62.325L229.765,62.325L230.247,62.672L228.746,63.188L228.657,63.2L228.64,63.203L229.463,63.273L230.425,62.911L231.424,63.323L232.198,62.911L233.758,62.077L233.998,62.111L235.114,62.072L236.222,60.911L237.093,59.895L238.386,59.059L240.605,57.847Z" + }, + { + "fill": "rgb(72, 182, 194)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.145; geo: [object Object]; name: Ohio", + "shape": "M240.745,58.699L241.129,61.035L241.14,61.103L241.531,63.48L241.54,63.537L241.787,65.039L241.857,65.355L242.073,66.778L241.401,67.275L241.87,67.898L241.802,68.491L242.038,69.035L241.761,69.938L241.683,70.146L241.673,70.995L241.698,71.835L241.421,72.303L241.505,73.17L241.065,74.018L240.664,74.542L240.332,75.154L239.947,75.668L239.179,76.13L238.802,75.743L238.235,76.301L238.236,76.798L237.682,76.838L237.502,77.252L237.392,77.511L237.513,78.067L237.598,79.25L236.907,79.652L236.908,79.276L236.281,78.719L235.852,79.238L235.764,80.042L235.426,80.426L235.834,81.672L235.627,81.805L235.267,81.92L235.197,82.867L234.306,83.227L233.834,83.228L233.384,82.715L232.566,82.389L232.007,81.21L231.315,81.504L231.315,81.501L230.768,82.31L230.194,82.377L230.196,82.387L228.792,82.006L228.24,82.519L227.925,82.556L227.925,82.556L226.779,81.812L226.02,81.887L225.05,81.623L225.011,81.309L224.447,80.375L223.43,79.997L222.841,80.211L222.103,79.809L221.805,80.122L221.646,78.782L221.492,77.317L221.474,77.008L221.347,75.938L221.196,74.66L221.144,74.066L220.938,72.01L220.904,71.721L220.729,70.249L220.605,69.202L220.451,67.899L220.398,67.448L220.188,65.677L220.174,65.558L220.051,64.515L219.95,63.818L219.818,62.703L221.812,62.397L222.006,62.366L224.367,61.978L224.948,61.881L226.319,61.639L226.319,61.639L226.372,61.632L226.408,61.628L226.46,61.617L227.974,62.161L229.043,62.722L229.741,62.288L229.765,62.325L229.765,62.325L230.247,62.672L228.746,63.188L228.657,63.2L228.64,63.203L229.463,63.273L230.425,62.911L231.424,63.323L232.198,62.911L233.758,62.077L233.998,62.111L235.114,62.072L236.222,60.911L237.093,59.895L238.386,59.059L240.605,57.847Z" + }, + { + "fill": "rgb(108, 198, 190)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.117; geo: [object Object]; name: Ohio", + "shape": "M240.745,58.699L241.129,61.035L241.14,61.103L241.531,63.48L241.54,63.537L241.787,65.039L241.857,65.355L242.073,66.778L241.401,67.275L241.87,67.898L241.802,68.491L242.038,69.035L241.761,69.938L241.683,70.146L241.673,70.995L241.698,71.835L241.421,72.303L241.505,73.17L241.065,74.018L240.664,74.542L240.332,75.154L239.947,75.668L239.179,76.13L238.802,75.743L238.235,76.301L238.236,76.798L237.682,76.838L237.502,77.252L237.392,77.511L237.513,78.067L237.598,79.25L236.907,79.652L236.908,79.276L236.281,78.719L235.852,79.238L235.764,80.042L235.426,80.426L235.834,81.672L235.627,81.805L235.267,81.92L235.197,82.867L234.306,83.227L233.834,83.228L233.384,82.715L232.566,82.389L232.007,81.21L231.315,81.504L231.315,81.501L230.768,82.31L230.194,82.377L230.196,82.387L228.792,82.006L228.24,82.519L227.925,82.556L227.925,82.556L226.779,81.812L226.02,81.887L225.05,81.623L225.011,81.309L224.447,80.375L223.43,79.997L222.841,80.211L222.103,79.809L221.805,80.122L221.646,78.782L221.492,77.317L221.474,77.008L221.347,75.938L221.196,74.66L221.144,74.066L220.938,72.01L220.904,71.721L220.729,70.249L220.605,69.202L220.451,67.899L220.398,67.448L220.188,65.677L220.174,65.558L220.051,64.515L219.95,63.818L219.818,62.703L221.812,62.397L222.006,62.366L224.367,61.978L224.948,61.881L226.319,61.639L226.319,61.639L226.372,61.632L226.408,61.628L226.46,61.617L227.974,62.161L229.043,62.722L229.741,62.288L229.765,62.325L229.765,62.325L230.247,62.672L228.746,63.188L228.657,63.2L228.64,63.203L229.463,63.273L230.425,62.911L231.424,63.323L232.198,62.911L233.758,62.077L233.998,62.111L235.114,62.072L236.222,60.911L237.093,59.895L238.386,59.059L240.605,57.847Z" + }, + { + "fill": "rgb(40, 148, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.186; geo: [object Object]; name: Ohio", + "shape": "M240.745,58.699L241.129,61.035L241.14,61.103L241.531,63.48L241.54,63.537L241.787,65.039L241.857,65.355L242.073,66.778L241.401,67.275L241.87,67.898L241.802,68.491L242.038,69.035L241.761,69.938L241.683,70.146L241.673,70.995L241.698,71.835L241.421,72.303L241.505,73.17L241.065,74.018L240.664,74.542L240.332,75.154L239.947,75.668L239.179,76.13L238.802,75.743L238.235,76.301L238.236,76.798L237.682,76.838L237.502,77.252L237.392,77.511L237.513,78.067L237.598,79.25L236.907,79.652L236.908,79.276L236.281,78.719L235.852,79.238L235.764,80.042L235.426,80.426L235.834,81.672L235.627,81.805L235.267,81.92L235.197,82.867L234.306,83.227L233.834,83.228L233.384,82.715L232.566,82.389L232.007,81.21L231.315,81.504L231.315,81.501L230.768,82.31L230.194,82.377L230.196,82.387L228.792,82.006L228.24,82.519L227.925,82.556L227.925,82.556L226.779,81.812L226.02,81.887L225.05,81.623L225.011,81.309L224.447,80.375L223.43,79.997L222.841,80.211L222.103,79.809L221.805,80.122L221.646,78.782L221.492,77.317L221.474,77.008L221.347,75.938L221.196,74.66L221.144,74.066L220.938,72.01L220.904,71.721L220.729,70.249L220.605,69.202L220.451,67.899L220.398,67.448L220.188,65.677L220.174,65.558L220.051,64.515L219.95,63.818L219.818,62.703L221.812,62.397L222.006,62.366L224.367,61.978L224.948,61.881L226.319,61.639L226.319,61.639L226.372,61.632L226.408,61.628L226.46,61.617L227.974,62.161L229.043,62.722L229.741,62.288L229.765,62.325L229.765,62.325L230.247,62.672L228.746,63.188L228.657,63.2L228.64,63.203L229.463,63.273L230.425,62.911L231.424,63.323L232.198,62.911L233.758,62.077L233.998,62.111L235.114,62.072L236.222,60.911L237.093,59.895L238.386,59.059L240.605,57.847Z" + }, + { + "fill": "rgb(117, 202, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.111; geo: [object Object]; name: Ohio", + "shape": "M240.745,58.699L241.129,61.035L241.14,61.103L241.531,63.48L241.54,63.537L241.787,65.039L241.857,65.355L242.073,66.778L241.401,67.275L241.87,67.898L241.802,68.491L242.038,69.035L241.761,69.938L241.683,70.146L241.673,70.995L241.698,71.835L241.421,72.303L241.505,73.17L241.065,74.018L240.664,74.542L240.332,75.154L239.947,75.668L239.179,76.13L238.802,75.743L238.235,76.301L238.236,76.798L237.682,76.838L237.502,77.252L237.392,77.511L237.513,78.067L237.598,79.25L236.907,79.652L236.908,79.276L236.281,78.719L235.852,79.238L235.764,80.042L235.426,80.426L235.834,81.672L235.627,81.805L235.267,81.92L235.197,82.867L234.306,83.227L233.834,83.228L233.384,82.715L232.566,82.389L232.007,81.21L231.315,81.504L231.315,81.501L230.768,82.31L230.194,82.377L230.196,82.387L228.792,82.006L228.24,82.519L227.925,82.556L227.925,82.556L226.779,81.812L226.02,81.887L225.05,81.623L225.011,81.309L224.447,80.375L223.43,79.997L222.841,80.211L222.103,79.809L221.805,80.122L221.646,78.782L221.492,77.317L221.474,77.008L221.347,75.938L221.196,74.66L221.144,74.066L220.938,72.01L220.904,71.721L220.729,70.249L220.605,69.202L220.451,67.899L220.398,67.448L220.188,65.677L220.174,65.558L220.051,64.515L219.95,63.818L219.818,62.703L221.812,62.397L222.006,62.366L224.367,61.978L224.948,61.881L226.319,61.639L226.319,61.639L226.372,61.632L226.408,61.628L226.46,61.617L227.974,62.161L229.043,62.722L229.741,62.288L229.765,62.325L229.765,62.325L230.247,62.672L228.746,63.188L228.657,63.2L228.64,63.203L229.463,63.273L230.425,62.911L231.424,63.323L232.198,62.911L233.758,62.077L233.998,62.111L235.114,62.072L236.222,60.911L237.093,59.895L238.386,59.059L240.605,57.847Z" + }, + { + "fill": "rgb(217, 240, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.036; geo: [object Object]; name: Ohio", + "shape": "M240.745,58.699L241.129,61.035L241.14,61.103L241.531,63.48L241.54,63.537L241.787,65.039L241.857,65.355L242.073,66.778L241.401,67.275L241.87,67.898L241.802,68.491L242.038,69.035L241.761,69.938L241.683,70.146L241.673,70.995L241.698,71.835L241.421,72.303L241.505,73.17L241.065,74.018L240.664,74.542L240.332,75.154L239.947,75.668L239.179,76.13L238.802,75.743L238.235,76.301L238.236,76.798L237.682,76.838L237.502,77.252L237.392,77.511L237.513,78.067L237.598,79.25L236.907,79.652L236.908,79.276L236.281,78.719L235.852,79.238L235.764,80.042L235.426,80.426L235.834,81.672L235.627,81.805L235.267,81.92L235.197,82.867L234.306,83.227L233.834,83.228L233.384,82.715L232.566,82.389L232.007,81.21L231.315,81.504L231.315,81.501L230.768,82.31L230.194,82.377L230.196,82.387L228.792,82.006L228.24,82.519L227.925,82.556L227.925,82.556L226.779,81.812L226.02,81.887L225.05,81.623L225.011,81.309L224.447,80.375L223.43,79.997L222.841,80.211L222.103,79.809L221.805,80.122L221.646,78.782L221.492,77.317L221.474,77.008L221.347,75.938L221.196,74.66L221.144,74.066L220.938,72.01L220.904,71.721L220.729,70.249L220.605,69.202L220.451,67.899L220.398,67.448L220.188,65.677L220.174,65.558L220.051,64.515L219.95,63.818L219.818,62.703L221.812,62.397L222.006,62.366L224.367,61.978L224.948,61.881L226.319,61.639L226.319,61.639L226.372,61.632L226.408,61.628L226.46,61.617L227.974,62.161L229.043,62.722L229.741,62.288L229.765,62.325L229.765,62.325L230.247,62.672L228.746,63.188L228.657,63.2L228.64,63.203L229.463,63.273L230.425,62.911L231.424,63.323L232.198,62.911L233.758,62.077L233.998,62.111L235.114,62.072L236.222,60.911L237.093,59.895L238.386,59.059L240.605,57.847Z" + }, + { + "fill": "rgb(221, 242, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.031; geo: [object Object]; name: Ohio", + "shape": "M240.745,58.699L241.129,61.035L241.14,61.103L241.531,63.48L241.54,63.537L241.787,65.039L241.857,65.355L242.073,66.778L241.401,67.275L241.87,67.898L241.802,68.491L242.038,69.035L241.761,69.938L241.683,70.146L241.673,70.995L241.698,71.835L241.421,72.303L241.505,73.17L241.065,74.018L240.664,74.542L240.332,75.154L239.947,75.668L239.179,76.13L238.802,75.743L238.235,76.301L238.236,76.798L237.682,76.838L237.502,77.252L237.392,77.511L237.513,78.067L237.598,79.25L236.907,79.652L236.908,79.276L236.281,78.719L235.852,79.238L235.764,80.042L235.426,80.426L235.834,81.672L235.627,81.805L235.267,81.92L235.197,82.867L234.306,83.227L233.834,83.228L233.384,82.715L232.566,82.389L232.007,81.21L231.315,81.504L231.315,81.501L230.768,82.31L230.194,82.377L230.196,82.387L228.792,82.006L228.24,82.519L227.925,82.556L227.925,82.556L226.779,81.812L226.02,81.887L225.05,81.623L225.011,81.309L224.447,80.375L223.43,79.997L222.841,80.211L222.103,79.809L221.805,80.122L221.646,78.782L221.492,77.317L221.474,77.008L221.347,75.938L221.196,74.66L221.144,74.066L220.938,72.01L220.904,71.721L220.729,70.249L220.605,69.202L220.451,67.899L220.398,67.448L220.188,65.677L220.174,65.558L220.051,64.515L219.95,63.818L219.818,62.703L221.812,62.397L222.006,62.366L224.367,61.978L224.948,61.881L226.319,61.639L226.319,61.639L226.372,61.632L226.408,61.628L226.46,61.617L227.974,62.161L229.043,62.722L229.741,62.288L229.765,62.325L229.765,62.325L230.247,62.672L228.746,63.188L228.657,63.2L228.64,63.203L229.463,63.273L230.425,62.911L231.424,63.323L232.198,62.911L233.758,62.077L233.998,62.111L235.114,62.072L236.222,60.911L237.093,59.895L238.386,59.059L240.605,57.847Z" + }, + { + "fill": "rgb(159, 217, 184)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.083; geo: [object Object]; name: Oklahoma", + "shape": "M142.604,97.287L143.061,97.31L145.515,97.426L145.952,97.442L148.37,97.524L150.788,97.598L151.834,97.632L153.091,97.662L154.729,97.688L156.538,97.719L158.214,97.739L160.309,97.76L161.509,97.771L164.289,97.776L164.48,97.775L165.432,97.774L166.822,97.769L167.432,97.766L169.222,97.751L169.565,97.748L171.621,97.722L171.644,99.297L171.654,99.967L171.671,101.105L172.012,103.385L172.076,103.795L172.421,106.106L172.55,106.923L172.791,108.551L172.792,108.668L172.793,108.679L172.764,111.689L172.747,113.074L172.732,114.571L172.728,116.722L172.715,118.407L172.715,118.41L172.688,120.451L171.249,120.033L170.59,119.758L170.005,118.984L169.548,118.967L168.948,118.479L168.61,118.308L168.099,118.882L166.769,118.817L166.708,118.523L165.618,118.926L165.143,119.156L163.832,119.084L163.176,119.751L162.201,119.922L160.815,119.113L161.035,118.773L160.679,118.647L160.02,119.176L159.486,119.03L159.135,118.355L159.075,118.394L158.651,119.083L158.274,119.122L158.286,119.75L157.691,119.656L157.625,118.606L156.703,119.236L156.248,119.153L156.098,118.577L155.66,118.676L154.976,118.079L153.967,118.99L153.358,118.702L153.549,118.067L152.799,117.931L152.524,116.973L152.341,117.161L151.28,116.853L150.932,117.342L150.611,117.475L149.916,116.817L149.1,117.012L148.051,116.385L146.728,116.324L146.657,115.497L145.78,114.641L145.602,115.213L145.213,115.05L145.213,115.046L144.667,114.877L144.007,115.12L143.234,114.225L142.782,113.73L142.404,113.823L142.404,113.823L142.437,112.566L142.518,110.638L142.562,109.614L142.63,107.995L142.686,106.669L142.76,104.896L142.81,103.715L142.917,100.709L140.025,100.578L137.823,100.468L137.153,100.433L134.281,100.271L132.1,100.133L131.392,100.088L126.916,99.777L127.185,96.401L132.255,96.793L132.331,96.805L134.841,96.94L137.428,97.07L138.075,97.097L139.731,97.17Z" + }, + { + "fill": "rgb(186, 228, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.065; geo: [object Object]; name: Oklahoma", + "shape": "M142.604,97.287L143.061,97.31L145.515,97.426L145.952,97.442L148.37,97.524L150.788,97.598L151.834,97.632L153.091,97.662L154.729,97.688L156.538,97.719L158.214,97.739L160.309,97.76L161.509,97.771L164.289,97.776L164.48,97.775L165.432,97.774L166.822,97.769L167.432,97.766L169.222,97.751L169.565,97.748L171.621,97.722L171.644,99.297L171.654,99.967L171.671,101.105L172.012,103.385L172.076,103.795L172.421,106.106L172.55,106.923L172.791,108.551L172.792,108.668L172.793,108.679L172.764,111.689L172.747,113.074L172.732,114.571L172.728,116.722L172.715,118.407L172.715,118.41L172.688,120.451L171.249,120.033L170.59,119.758L170.005,118.984L169.548,118.967L168.948,118.479L168.61,118.308L168.099,118.882L166.769,118.817L166.708,118.523L165.618,118.926L165.143,119.156L163.832,119.084L163.176,119.751L162.201,119.922L160.815,119.113L161.035,118.773L160.679,118.647L160.02,119.176L159.486,119.03L159.135,118.355L159.075,118.394L158.651,119.083L158.274,119.122L158.286,119.75L157.691,119.656L157.625,118.606L156.703,119.236L156.248,119.153L156.098,118.577L155.66,118.676L154.976,118.079L153.967,118.99L153.358,118.702L153.549,118.067L152.799,117.931L152.524,116.973L152.341,117.161L151.28,116.853L150.932,117.342L150.611,117.475L149.916,116.817L149.1,117.012L148.051,116.385L146.728,116.324L146.657,115.497L145.78,114.641L145.602,115.213L145.213,115.05L145.213,115.046L144.667,114.877L144.007,115.12L143.234,114.225L142.782,113.73L142.404,113.823L142.404,113.823L142.437,112.566L142.518,110.638L142.562,109.614L142.63,107.995L142.686,106.669L142.76,104.896L142.81,103.715L142.917,100.709L140.025,100.578L137.823,100.468L137.153,100.433L134.281,100.271L132.1,100.133L131.392,100.088L126.916,99.777L127.185,96.401L132.255,96.793L132.331,96.805L134.841,96.94L137.428,97.07L138.075,97.097L139.731,97.17Z" + }, + { + "fill": "rgb(99, 194, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.124; geo: [object Object]; name: Oklahoma", + "shape": "M142.604,97.287L143.061,97.31L145.515,97.426L145.952,97.442L148.37,97.524L150.788,97.598L151.834,97.632L153.091,97.662L154.729,97.688L156.538,97.719L158.214,97.739L160.309,97.76L161.509,97.771L164.289,97.776L164.48,97.775L165.432,97.774L166.822,97.769L167.432,97.766L169.222,97.751L169.565,97.748L171.621,97.722L171.644,99.297L171.654,99.967L171.671,101.105L172.012,103.385L172.076,103.795L172.421,106.106L172.55,106.923L172.791,108.551L172.792,108.668L172.793,108.679L172.764,111.689L172.747,113.074L172.732,114.571L172.728,116.722L172.715,118.407L172.715,118.41L172.688,120.451L171.249,120.033L170.59,119.758L170.005,118.984L169.548,118.967L168.948,118.479L168.61,118.308L168.099,118.882L166.769,118.817L166.708,118.523L165.618,118.926L165.143,119.156L163.832,119.084L163.176,119.751L162.201,119.922L160.815,119.113L161.035,118.773L160.679,118.647L160.02,119.176L159.486,119.03L159.135,118.355L159.075,118.394L158.651,119.083L158.274,119.122L158.286,119.75L157.691,119.656L157.625,118.606L156.703,119.236L156.248,119.153L156.098,118.577L155.66,118.676L154.976,118.079L153.967,118.99L153.358,118.702L153.549,118.067L152.799,117.931L152.524,116.973L152.341,117.161L151.28,116.853L150.932,117.342L150.611,117.475L149.916,116.817L149.1,117.012L148.051,116.385L146.728,116.324L146.657,115.497L145.78,114.641L145.602,115.213L145.213,115.05L145.213,115.046L144.667,114.877L144.007,115.12L143.234,114.225L142.782,113.73L142.404,113.823L142.404,113.823L142.437,112.566L142.518,110.638L142.562,109.614L142.63,107.995L142.686,106.669L142.76,104.896L142.81,103.715L142.917,100.709L140.025,100.578L137.823,100.468L137.153,100.433L134.281,100.271L132.1,100.133L131.392,100.088L126.916,99.777L127.185,96.401L132.255,96.793L132.331,96.805L134.841,96.94L137.428,97.07L138.075,97.097L139.731,97.17Z" + }, + { + "fill": "rgb(105, 197, 190)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.119; geo: [object Object]; name: Oklahoma", + "shape": "M142.604,97.287L143.061,97.31L145.515,97.426L145.952,97.442L148.37,97.524L150.788,97.598L151.834,97.632L153.091,97.662L154.729,97.688L156.538,97.719L158.214,97.739L160.309,97.76L161.509,97.771L164.289,97.776L164.48,97.775L165.432,97.774L166.822,97.769L167.432,97.766L169.222,97.751L169.565,97.748L171.621,97.722L171.644,99.297L171.654,99.967L171.671,101.105L172.012,103.385L172.076,103.795L172.421,106.106L172.55,106.923L172.791,108.551L172.792,108.668L172.793,108.679L172.764,111.689L172.747,113.074L172.732,114.571L172.728,116.722L172.715,118.407L172.715,118.41L172.688,120.451L171.249,120.033L170.59,119.758L170.005,118.984L169.548,118.967L168.948,118.479L168.61,118.308L168.099,118.882L166.769,118.817L166.708,118.523L165.618,118.926L165.143,119.156L163.832,119.084L163.176,119.751L162.201,119.922L160.815,119.113L161.035,118.773L160.679,118.647L160.02,119.176L159.486,119.03L159.135,118.355L159.075,118.394L158.651,119.083L158.274,119.122L158.286,119.75L157.691,119.656L157.625,118.606L156.703,119.236L156.248,119.153L156.098,118.577L155.66,118.676L154.976,118.079L153.967,118.99L153.358,118.702L153.549,118.067L152.799,117.931L152.524,116.973L152.341,117.161L151.28,116.853L150.932,117.342L150.611,117.475L149.916,116.817L149.1,117.012L148.051,116.385L146.728,116.324L146.657,115.497L145.78,114.641L145.602,115.213L145.213,115.05L145.213,115.046L144.667,114.877L144.007,115.12L143.234,114.225L142.782,113.73L142.404,113.823L142.404,113.823L142.437,112.566L142.518,110.638L142.562,109.614L142.63,107.995L142.686,106.669L142.76,104.896L142.81,103.715L142.917,100.709L140.025,100.578L137.823,100.468L137.153,100.433L134.281,100.271L132.1,100.133L131.392,100.088L126.916,99.777L127.185,96.401L132.255,96.793L132.331,96.805L134.841,96.94L137.428,97.07L138.075,97.097L139.731,97.17Z" + }, + { + "fill": "rgb(66, 177, 194)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.151; geo: [object Object]; name: Oklahoma", + "shape": "M142.604,97.287L143.061,97.31L145.515,97.426L145.952,97.442L148.37,97.524L150.788,97.598L151.834,97.632L153.091,97.662L154.729,97.688L156.538,97.719L158.214,97.739L160.309,97.76L161.509,97.771L164.289,97.776L164.48,97.775L165.432,97.774L166.822,97.769L167.432,97.766L169.222,97.751L169.565,97.748L171.621,97.722L171.644,99.297L171.654,99.967L171.671,101.105L172.012,103.385L172.076,103.795L172.421,106.106L172.55,106.923L172.791,108.551L172.792,108.668L172.793,108.679L172.764,111.689L172.747,113.074L172.732,114.571L172.728,116.722L172.715,118.407L172.715,118.41L172.688,120.451L171.249,120.033L170.59,119.758L170.005,118.984L169.548,118.967L168.948,118.479L168.61,118.308L168.099,118.882L166.769,118.817L166.708,118.523L165.618,118.926L165.143,119.156L163.832,119.084L163.176,119.751L162.201,119.922L160.815,119.113L161.035,118.773L160.679,118.647L160.02,119.176L159.486,119.03L159.135,118.355L159.075,118.394L158.651,119.083L158.274,119.122L158.286,119.75L157.691,119.656L157.625,118.606L156.703,119.236L156.248,119.153L156.098,118.577L155.66,118.676L154.976,118.079L153.967,118.99L153.358,118.702L153.549,118.067L152.799,117.931L152.524,116.973L152.341,117.161L151.28,116.853L150.932,117.342L150.611,117.475L149.916,116.817L149.1,117.012L148.051,116.385L146.728,116.324L146.657,115.497L145.78,114.641L145.602,115.213L145.213,115.05L145.213,115.046L144.667,114.877L144.007,115.12L143.234,114.225L142.782,113.73L142.404,113.823L142.404,113.823L142.437,112.566L142.518,110.638L142.562,109.614L142.63,107.995L142.686,106.669L142.76,104.896L142.81,103.715L142.917,100.709L140.025,100.578L137.823,100.468L137.153,100.433L134.281,100.271L132.1,100.133L131.392,100.088L126.916,99.777L127.185,96.401L132.255,96.793L132.331,96.805L134.841,96.94L137.428,97.07L138.075,97.097L139.731,97.17Z" + }, + { + "fill": "rgb(116, 201, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.112; geo: [object Object]; name: Oklahoma", + "shape": "M142.604,97.287L143.061,97.31L145.515,97.426L145.952,97.442L148.37,97.524L150.788,97.598L151.834,97.632L153.091,97.662L154.729,97.688L156.538,97.719L158.214,97.739L160.309,97.76L161.509,97.771L164.289,97.776L164.48,97.775L165.432,97.774L166.822,97.769L167.432,97.766L169.222,97.751L169.565,97.748L171.621,97.722L171.644,99.297L171.654,99.967L171.671,101.105L172.012,103.385L172.076,103.795L172.421,106.106L172.55,106.923L172.791,108.551L172.792,108.668L172.793,108.679L172.764,111.689L172.747,113.074L172.732,114.571L172.728,116.722L172.715,118.407L172.715,118.41L172.688,120.451L171.249,120.033L170.59,119.758L170.005,118.984L169.548,118.967L168.948,118.479L168.61,118.308L168.099,118.882L166.769,118.817L166.708,118.523L165.618,118.926L165.143,119.156L163.832,119.084L163.176,119.751L162.201,119.922L160.815,119.113L161.035,118.773L160.679,118.647L160.02,119.176L159.486,119.03L159.135,118.355L159.075,118.394L158.651,119.083L158.274,119.122L158.286,119.75L157.691,119.656L157.625,118.606L156.703,119.236L156.248,119.153L156.098,118.577L155.66,118.676L154.976,118.079L153.967,118.99L153.358,118.702L153.549,118.067L152.799,117.931L152.524,116.973L152.341,117.161L151.28,116.853L150.932,117.342L150.611,117.475L149.916,116.817L149.1,117.012L148.051,116.385L146.728,116.324L146.657,115.497L145.78,114.641L145.602,115.213L145.213,115.05L145.213,115.046L144.667,114.877L144.007,115.12L143.234,114.225L142.782,113.73L142.404,113.823L142.404,113.823L142.437,112.566L142.518,110.638L142.562,109.614L142.63,107.995L142.686,106.669L142.76,104.896L142.81,103.715L142.917,100.709L140.025,100.578L137.823,100.468L137.153,100.433L134.281,100.271L132.1,100.133L131.392,100.088L126.916,99.777L127.185,96.401L132.255,96.793L132.331,96.805L134.841,96.94L137.428,97.07L138.075,97.097L139.731,97.17Z" + }, + { + "fill": "rgb(40, 147, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.187; geo: [object Object]; name: Oklahoma", + "shape": "M142.604,97.287L143.061,97.31L145.515,97.426L145.952,97.442L148.37,97.524L150.788,97.598L151.834,97.632L153.091,97.662L154.729,97.688L156.538,97.719L158.214,97.739L160.309,97.76L161.509,97.771L164.289,97.776L164.48,97.775L165.432,97.774L166.822,97.769L167.432,97.766L169.222,97.751L169.565,97.748L171.621,97.722L171.644,99.297L171.654,99.967L171.671,101.105L172.012,103.385L172.076,103.795L172.421,106.106L172.55,106.923L172.791,108.551L172.792,108.668L172.793,108.679L172.764,111.689L172.747,113.074L172.732,114.571L172.728,116.722L172.715,118.407L172.715,118.41L172.688,120.451L171.249,120.033L170.59,119.758L170.005,118.984L169.548,118.967L168.948,118.479L168.61,118.308L168.099,118.882L166.769,118.817L166.708,118.523L165.618,118.926L165.143,119.156L163.832,119.084L163.176,119.751L162.201,119.922L160.815,119.113L161.035,118.773L160.679,118.647L160.02,119.176L159.486,119.03L159.135,118.355L159.075,118.394L158.651,119.083L158.274,119.122L158.286,119.75L157.691,119.656L157.625,118.606L156.703,119.236L156.248,119.153L156.098,118.577L155.66,118.676L154.976,118.079L153.967,118.99L153.358,118.702L153.549,118.067L152.799,117.931L152.524,116.973L152.341,117.161L151.28,116.853L150.932,117.342L150.611,117.475L149.916,116.817L149.1,117.012L148.051,116.385L146.728,116.324L146.657,115.497L145.78,114.641L145.602,115.213L145.213,115.05L145.213,115.046L144.667,114.877L144.007,115.12L143.234,114.225L142.782,113.73L142.404,113.823L142.404,113.823L142.437,112.566L142.518,110.638L142.562,109.614L142.63,107.995L142.686,106.669L142.76,104.896L142.81,103.715L142.917,100.709L140.025,100.578L137.823,100.468L137.153,100.433L134.281,100.271L132.1,100.133L131.392,100.088L126.916,99.777L127.185,96.401L132.255,96.793L132.331,96.805L134.841,96.94L137.428,97.07L138.075,97.097L139.731,97.17Z" + }, + { + "fill": "rgb(133, 207, 187)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.101; geo: [object Object]; name: Oklahoma", + "shape": "M142.604,97.287L143.061,97.31L145.515,97.426L145.952,97.442L148.37,97.524L150.788,97.598L151.834,97.632L153.091,97.662L154.729,97.688L156.538,97.719L158.214,97.739L160.309,97.76L161.509,97.771L164.289,97.776L164.48,97.775L165.432,97.774L166.822,97.769L167.432,97.766L169.222,97.751L169.565,97.748L171.621,97.722L171.644,99.297L171.654,99.967L171.671,101.105L172.012,103.385L172.076,103.795L172.421,106.106L172.55,106.923L172.791,108.551L172.792,108.668L172.793,108.679L172.764,111.689L172.747,113.074L172.732,114.571L172.728,116.722L172.715,118.407L172.715,118.41L172.688,120.451L171.249,120.033L170.59,119.758L170.005,118.984L169.548,118.967L168.948,118.479L168.61,118.308L168.099,118.882L166.769,118.817L166.708,118.523L165.618,118.926L165.143,119.156L163.832,119.084L163.176,119.751L162.201,119.922L160.815,119.113L161.035,118.773L160.679,118.647L160.02,119.176L159.486,119.03L159.135,118.355L159.075,118.394L158.651,119.083L158.274,119.122L158.286,119.75L157.691,119.656L157.625,118.606L156.703,119.236L156.248,119.153L156.098,118.577L155.66,118.676L154.976,118.079L153.967,118.99L153.358,118.702L153.549,118.067L152.799,117.931L152.524,116.973L152.341,117.161L151.28,116.853L150.932,117.342L150.611,117.475L149.916,116.817L149.1,117.012L148.051,116.385L146.728,116.324L146.657,115.497L145.78,114.641L145.602,115.213L145.213,115.05L145.213,115.046L144.667,114.877L144.007,115.12L143.234,114.225L142.782,113.73L142.404,113.823L142.404,113.823L142.437,112.566L142.518,110.638L142.562,109.614L142.63,107.995L142.686,106.669L142.76,104.896L142.81,103.715L142.917,100.709L140.025,100.578L137.823,100.468L137.153,100.433L134.281,100.271L132.1,100.133L131.392,100.088L126.916,99.777L127.185,96.401L132.255,96.793L132.331,96.805L134.841,96.94L137.428,97.07L138.075,97.097L139.731,97.17Z" + }, + { + "fill": "rgb(222, 242, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.03; geo: [object Object]; name: Oklahoma", + "shape": "M142.604,97.287L143.061,97.31L145.515,97.426L145.952,97.442L148.37,97.524L150.788,97.598L151.834,97.632L153.091,97.662L154.729,97.688L156.538,97.719L158.214,97.739L160.309,97.76L161.509,97.771L164.289,97.776L164.48,97.775L165.432,97.774L166.822,97.769L167.432,97.766L169.222,97.751L169.565,97.748L171.621,97.722L171.644,99.297L171.654,99.967L171.671,101.105L172.012,103.385L172.076,103.795L172.421,106.106L172.55,106.923L172.791,108.551L172.792,108.668L172.793,108.679L172.764,111.689L172.747,113.074L172.732,114.571L172.728,116.722L172.715,118.407L172.715,118.41L172.688,120.451L171.249,120.033L170.59,119.758L170.005,118.984L169.548,118.967L168.948,118.479L168.61,118.308L168.099,118.882L166.769,118.817L166.708,118.523L165.618,118.926L165.143,119.156L163.832,119.084L163.176,119.751L162.201,119.922L160.815,119.113L161.035,118.773L160.679,118.647L160.02,119.176L159.486,119.03L159.135,118.355L159.075,118.394L158.651,119.083L158.274,119.122L158.286,119.75L157.691,119.656L157.625,118.606L156.703,119.236L156.248,119.153L156.098,118.577L155.66,118.676L154.976,118.079L153.967,118.99L153.358,118.702L153.549,118.067L152.799,117.931L152.524,116.973L152.341,117.161L151.28,116.853L150.932,117.342L150.611,117.475L149.916,116.817L149.1,117.012L148.051,116.385L146.728,116.324L146.657,115.497L145.78,114.641L145.602,115.213L145.213,115.05L145.213,115.046L144.667,114.877L144.007,115.12L143.234,114.225L142.782,113.73L142.404,113.823L142.404,113.823L142.437,112.566L142.518,110.638L142.562,109.614L142.63,107.995L142.686,106.669L142.76,104.896L142.81,103.715L142.917,100.709L140.025,100.578L137.823,100.468L137.153,100.433L134.281,100.271L132.1,100.133L131.392,100.088L126.916,99.777L127.185,96.401L132.255,96.793L132.331,96.805L134.841,96.94L137.428,97.07L138.075,97.097L139.731,97.17Z" + }, + { + "fill": "rgb(223, 243, 182)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.028; geo: [object Object]; name: Oklahoma", + "shape": "M142.604,97.287L143.061,97.31L145.515,97.426L145.952,97.442L148.37,97.524L150.788,97.598L151.834,97.632L153.091,97.662L154.729,97.688L156.538,97.719L158.214,97.739L160.309,97.76L161.509,97.771L164.289,97.776L164.48,97.775L165.432,97.774L166.822,97.769L167.432,97.766L169.222,97.751L169.565,97.748L171.621,97.722L171.644,99.297L171.654,99.967L171.671,101.105L172.012,103.385L172.076,103.795L172.421,106.106L172.55,106.923L172.791,108.551L172.792,108.668L172.793,108.679L172.764,111.689L172.747,113.074L172.732,114.571L172.728,116.722L172.715,118.407L172.715,118.41L172.688,120.451L171.249,120.033L170.59,119.758L170.005,118.984L169.548,118.967L168.948,118.479L168.61,118.308L168.099,118.882L166.769,118.817L166.708,118.523L165.618,118.926L165.143,119.156L163.832,119.084L163.176,119.751L162.201,119.922L160.815,119.113L161.035,118.773L160.679,118.647L160.02,119.176L159.486,119.03L159.135,118.355L159.075,118.394L158.651,119.083L158.274,119.122L158.286,119.75L157.691,119.656L157.625,118.606L156.703,119.236L156.248,119.153L156.098,118.577L155.66,118.676L154.976,118.079L153.967,118.99L153.358,118.702L153.549,118.067L152.799,117.931L152.524,116.973L152.341,117.161L151.28,116.853L150.932,117.342L150.611,117.475L149.916,116.817L149.1,117.012L148.051,116.385L146.728,116.324L146.657,115.497L145.78,114.641L145.602,115.213L145.213,115.05L145.213,115.046L144.667,114.877L144.007,115.12L143.234,114.225L142.782,113.73L142.404,113.823L142.404,113.823L142.437,112.566L142.518,110.638L142.562,109.614L142.63,107.995L142.686,106.669L142.76,104.896L142.81,103.715L142.917,100.709L140.025,100.578L137.823,100.468L137.153,100.433L134.281,100.271L132.1,100.133L131.392,100.088L126.916,99.777L127.185,96.401L132.255,96.793L132.331,96.805L134.841,96.94L137.428,97.07L138.075,97.097L139.731,97.17Z" + }, + { + "fill": "rgb(167, 220, 183)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.078; geo: [object Object]; name: Oregon", + "shape": "M37.329,17.223L38.026,16.992L38.613,17.83L39.361,17.834L39.772,17.857L40.574,18.807L40.67,20.461L40.522,21.277L40.449,21.829L40.877,22.23L42.521,23.104L44.165,22.86L44.803,22.642L46.133,22.883L46.425,23.153L47.426,23.639L47.614,24.105L48.174,23.905L48.731,24.167L50.068,23.857L50.776,24.338L52.046,24.47L53.171,24.148L53.812,24.153L54.741,24.245L55.277,23.906L55.915,24.119L57.305,24.366L58.064,24.091L62.56,25.167L62.641,25.187L64.352,25.597L64.905,25.732L67.465,26.335L67.802,27.365L68.818,28.375L68.962,29.369L68.399,29.891L67.459,31.326L66.737,32.466L65.857,33.915L65.035,34.386L64.175,35.71L63.814,35.906L63.559,37.108L64.03,37.359L64.847,38.432L64.343,39.03L64.437,39.477L64.043,40.127L63.783,40.339L63.546,41.391L63.546,41.391L61.058,52.455L55.41,51.171L49.985,49.868L49.812,49.825L46.75,49.035L42.537,47.938L39.833,47.183L35.832,45.987L31.352,44.725L29.968,44.33L28.527,43.94L26.68,43.356L26.221,42.491L26.284,40.961L27.046,38.79L26.686,37.457L27.33,36.799L28.403,34.92L28.379,34.643L29.304,34.124L29.571,34.619L29.575,34.608L29.604,34.572L29.607,34.562L29.609,34.555L29.6,34.525L29.593,34.489L29.515,34.03L28.804,34.388L29.845,32.95L30.54,32.277L30.073,32.501L30.592,31.396L30.944,30.656L31.285,30.839L31.292,30.815L31.014,30.428L31.601,28.796L32.65,26.351L32.836,25.506L33.643,24.02L33.643,24.02L34.039,23.243L34.314,22.102L35.236,19.757L35.243,19.326L35.912,17.637L35.972,16.577L36.464,17.083L36.956,16.897Z" + }, + { + "fill": "rgb(196, 232, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.056; geo: [object Object]; name: Oregon", + "shape": "M37.329,17.223L38.026,16.992L38.613,17.83L39.361,17.834L39.772,17.857L40.574,18.807L40.67,20.461L40.522,21.277L40.449,21.829L40.877,22.23L42.521,23.104L44.165,22.86L44.803,22.642L46.133,22.883L46.425,23.153L47.426,23.639L47.614,24.105L48.174,23.905L48.731,24.167L50.068,23.857L50.776,24.338L52.046,24.47L53.171,24.148L53.812,24.153L54.741,24.245L55.277,23.906L55.915,24.119L57.305,24.366L58.064,24.091L62.56,25.167L62.641,25.187L64.352,25.597L64.905,25.732L67.465,26.335L67.802,27.365L68.818,28.375L68.962,29.369L68.399,29.891L67.459,31.326L66.737,32.466L65.857,33.915L65.035,34.386L64.175,35.71L63.814,35.906L63.559,37.108L64.03,37.359L64.847,38.432L64.343,39.03L64.437,39.477L64.043,40.127L63.783,40.339L63.546,41.391L63.546,41.391L61.058,52.455L55.41,51.171L49.985,49.868L49.812,49.825L46.75,49.035L42.537,47.938L39.833,47.183L35.832,45.987L31.352,44.725L29.968,44.33L28.527,43.94L26.68,43.356L26.221,42.491L26.284,40.961L27.046,38.79L26.686,37.457L27.33,36.799L28.403,34.92L28.379,34.643L29.304,34.124L29.571,34.619L29.575,34.608L29.604,34.572L29.607,34.562L29.609,34.555L29.6,34.525L29.593,34.489L29.515,34.03L28.804,34.388L29.845,32.95L30.54,32.277L30.073,32.501L30.592,31.396L30.944,30.656L31.285,30.839L31.292,30.815L31.014,30.428L31.601,28.796L32.65,26.351L32.836,25.506L33.643,24.02L33.643,24.02L34.039,23.243L34.314,22.102L35.236,19.757L35.243,19.326L35.912,17.637L35.972,16.577L36.464,17.083L36.956,16.897Z" + }, + { + "fill": "rgb(110, 199, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.116; geo: [object Object]; name: Oregon", + "shape": "M37.329,17.223L38.026,16.992L38.613,17.83L39.361,17.834L39.772,17.857L40.574,18.807L40.67,20.461L40.522,21.277L40.449,21.829L40.877,22.23L42.521,23.104L44.165,22.86L44.803,22.642L46.133,22.883L46.425,23.153L47.426,23.639L47.614,24.105L48.174,23.905L48.731,24.167L50.068,23.857L50.776,24.338L52.046,24.47L53.171,24.148L53.812,24.153L54.741,24.245L55.277,23.906L55.915,24.119L57.305,24.366L58.064,24.091L62.56,25.167L62.641,25.187L64.352,25.597L64.905,25.732L67.465,26.335L67.802,27.365L68.818,28.375L68.962,29.369L68.399,29.891L67.459,31.326L66.737,32.466L65.857,33.915L65.035,34.386L64.175,35.71L63.814,35.906L63.559,37.108L64.03,37.359L64.847,38.432L64.343,39.03L64.437,39.477L64.043,40.127L63.783,40.339L63.546,41.391L63.546,41.391L61.058,52.455L55.41,51.171L49.985,49.868L49.812,49.825L46.75,49.035L42.537,47.938L39.833,47.183L35.832,45.987L31.352,44.725L29.968,44.33L28.527,43.94L26.68,43.356L26.221,42.491L26.284,40.961L27.046,38.79L26.686,37.457L27.33,36.799L28.403,34.92L28.379,34.643L29.304,34.124L29.571,34.619L29.575,34.608L29.604,34.572L29.607,34.562L29.609,34.555L29.6,34.525L29.593,34.489L29.515,34.03L28.804,34.388L29.845,32.95L30.54,32.277L30.073,32.501L30.592,31.396L30.944,30.656L31.285,30.839L31.292,30.815L31.014,30.428L31.601,28.796L32.65,26.351L32.836,25.506L33.643,24.02L33.643,24.02L34.039,23.243L34.314,22.102L35.236,19.757L35.243,19.326L35.912,17.637L35.972,16.577L36.464,17.083L36.956,16.897Z" + }, + { + "fill": "rgb(122, 203, 188)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.108; geo: [object Object]; name: Oregon", + "shape": "M37.329,17.223L38.026,16.992L38.613,17.83L39.361,17.834L39.772,17.857L40.574,18.807L40.67,20.461L40.522,21.277L40.449,21.829L40.877,22.23L42.521,23.104L44.165,22.86L44.803,22.642L46.133,22.883L46.425,23.153L47.426,23.639L47.614,24.105L48.174,23.905L48.731,24.167L50.068,23.857L50.776,24.338L52.046,24.47L53.171,24.148L53.812,24.153L54.741,24.245L55.277,23.906L55.915,24.119L57.305,24.366L58.064,24.091L62.56,25.167L62.641,25.187L64.352,25.597L64.905,25.732L67.465,26.335L67.802,27.365L68.818,28.375L68.962,29.369L68.399,29.891L67.459,31.326L66.737,32.466L65.857,33.915L65.035,34.386L64.175,35.71L63.814,35.906L63.559,37.108L64.03,37.359L64.847,38.432L64.343,39.03L64.437,39.477L64.043,40.127L63.783,40.339L63.546,41.391L63.546,41.391L61.058,52.455L55.41,51.171L49.985,49.868L49.812,49.825L46.75,49.035L42.537,47.938L39.833,47.183L35.832,45.987L31.352,44.725L29.968,44.33L28.527,43.94L26.68,43.356L26.221,42.491L26.284,40.961L27.046,38.79L26.686,37.457L27.33,36.799L28.403,34.92L28.379,34.643L29.304,34.124L29.571,34.619L29.575,34.608L29.604,34.572L29.607,34.562L29.609,34.555L29.6,34.525L29.593,34.489L29.515,34.03L28.804,34.388L29.845,32.95L30.54,32.277L30.073,32.501L30.592,31.396L30.944,30.656L31.285,30.839L31.292,30.815L31.014,30.428L31.601,28.796L32.65,26.351L32.836,25.506L33.643,24.02L33.643,24.02L34.039,23.243L34.314,22.102L35.236,19.757L35.243,19.326L35.912,17.637L35.972,16.577L36.464,17.083L36.956,16.897Z" + }, + { + "fill": "rgb(72, 182, 194)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.145; geo: [object Object]; name: Oregon", + "shape": "M37.329,17.223L38.026,16.992L38.613,17.83L39.361,17.834L39.772,17.857L40.574,18.807L40.67,20.461L40.522,21.277L40.449,21.829L40.877,22.23L42.521,23.104L44.165,22.86L44.803,22.642L46.133,22.883L46.425,23.153L47.426,23.639L47.614,24.105L48.174,23.905L48.731,24.167L50.068,23.857L50.776,24.338L52.046,24.47L53.171,24.148L53.812,24.153L54.741,24.245L55.277,23.906L55.915,24.119L57.305,24.366L58.064,24.091L62.56,25.167L62.641,25.187L64.352,25.597L64.905,25.732L67.465,26.335L67.802,27.365L68.818,28.375L68.962,29.369L68.399,29.891L67.459,31.326L66.737,32.466L65.857,33.915L65.035,34.386L64.175,35.71L63.814,35.906L63.559,37.108L64.03,37.359L64.847,38.432L64.343,39.03L64.437,39.477L64.043,40.127L63.783,40.339L63.546,41.391L63.546,41.391L61.058,52.455L55.41,51.171L49.985,49.868L49.812,49.825L46.75,49.035L42.537,47.938L39.833,47.183L35.832,45.987L31.352,44.725L29.968,44.33L28.527,43.94L26.68,43.356L26.221,42.491L26.284,40.961L27.046,38.79L26.686,37.457L27.33,36.799L28.403,34.92L28.379,34.643L29.304,34.124L29.571,34.619L29.575,34.608L29.604,34.572L29.607,34.562L29.609,34.555L29.6,34.525L29.593,34.489L29.515,34.03L28.804,34.388L29.845,32.95L30.54,32.277L30.073,32.501L30.592,31.396L30.944,30.656L31.285,30.839L31.292,30.815L31.014,30.428L31.601,28.796L32.65,26.351L32.836,25.506L33.643,24.02L33.643,24.02L34.039,23.243L34.314,22.102L35.236,19.757L35.243,19.326L35.912,17.637L35.972,16.577L36.464,17.083L36.956,16.897Z" + }, + { + "fill": "rgb(100, 195, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.123; geo: [object Object]; name: Oregon", + "shape": "M37.329,17.223L38.026,16.992L38.613,17.83L39.361,17.834L39.772,17.857L40.574,18.807L40.67,20.461L40.522,21.277L40.449,21.829L40.877,22.23L42.521,23.104L44.165,22.86L44.803,22.642L46.133,22.883L46.425,23.153L47.426,23.639L47.614,24.105L48.174,23.905L48.731,24.167L50.068,23.857L50.776,24.338L52.046,24.47L53.171,24.148L53.812,24.153L54.741,24.245L55.277,23.906L55.915,24.119L57.305,24.366L58.064,24.091L62.56,25.167L62.641,25.187L64.352,25.597L64.905,25.732L67.465,26.335L67.802,27.365L68.818,28.375L68.962,29.369L68.399,29.891L67.459,31.326L66.737,32.466L65.857,33.915L65.035,34.386L64.175,35.71L63.814,35.906L63.559,37.108L64.03,37.359L64.847,38.432L64.343,39.03L64.437,39.477L64.043,40.127L63.783,40.339L63.546,41.391L63.546,41.391L61.058,52.455L55.41,51.171L49.985,49.868L49.812,49.825L46.75,49.035L42.537,47.938L39.833,47.183L35.832,45.987L31.352,44.725L29.968,44.33L28.527,43.94L26.68,43.356L26.221,42.491L26.284,40.961L27.046,38.79L26.686,37.457L27.33,36.799L28.403,34.92L28.379,34.643L29.304,34.124L29.571,34.619L29.575,34.608L29.604,34.572L29.607,34.562L29.609,34.555L29.6,34.525L29.593,34.489L29.515,34.03L28.804,34.388L29.845,32.95L30.54,32.277L30.073,32.501L30.592,31.396L30.944,30.656L31.285,30.839L31.292,30.815L31.014,30.428L31.601,28.796L32.65,26.351L32.836,25.506L33.643,24.02L33.643,24.02L34.039,23.243L34.314,22.102L35.236,19.757L35.243,19.326L35.912,17.637L35.972,16.577L36.464,17.083L36.956,16.897Z" + }, + { + "fill": "rgb(40, 147, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.187; geo: [object Object]; name: Oregon", + "shape": "M37.329,17.223L38.026,16.992L38.613,17.83L39.361,17.834L39.772,17.857L40.574,18.807L40.67,20.461L40.522,21.277L40.449,21.829L40.877,22.23L42.521,23.104L44.165,22.86L44.803,22.642L46.133,22.883L46.425,23.153L47.426,23.639L47.614,24.105L48.174,23.905L48.731,24.167L50.068,23.857L50.776,24.338L52.046,24.47L53.171,24.148L53.812,24.153L54.741,24.245L55.277,23.906L55.915,24.119L57.305,24.366L58.064,24.091L62.56,25.167L62.641,25.187L64.352,25.597L64.905,25.732L67.465,26.335L67.802,27.365L68.818,28.375L68.962,29.369L68.399,29.891L67.459,31.326L66.737,32.466L65.857,33.915L65.035,34.386L64.175,35.71L63.814,35.906L63.559,37.108L64.03,37.359L64.847,38.432L64.343,39.03L64.437,39.477L64.043,40.127L63.783,40.339L63.546,41.391L63.546,41.391L61.058,52.455L55.41,51.171L49.985,49.868L49.812,49.825L46.75,49.035L42.537,47.938L39.833,47.183L35.832,45.987L31.352,44.725L29.968,44.33L28.527,43.94L26.68,43.356L26.221,42.491L26.284,40.961L27.046,38.79L26.686,37.457L27.33,36.799L28.403,34.92L28.379,34.643L29.304,34.124L29.571,34.619L29.575,34.608L29.604,34.572L29.607,34.562L29.609,34.555L29.6,34.525L29.593,34.489L29.515,34.03L28.804,34.388L29.845,32.95L30.54,32.277L30.073,32.501L30.592,31.396L30.944,30.656L31.285,30.839L31.292,30.815L31.014,30.428L31.601,28.796L32.65,26.351L32.836,25.506L33.643,24.02L33.643,24.02L34.039,23.243L34.314,22.102L35.236,19.757L35.243,19.326L35.912,17.637L35.972,16.577L36.464,17.083L36.956,16.897Z" + }, + { + "fill": "rgb(108, 198, 190)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.117; geo: [object Object]; name: Oregon", + "shape": "M37.329,17.223L38.026,16.992L38.613,17.83L39.361,17.834L39.772,17.857L40.574,18.807L40.67,20.461L40.522,21.277L40.449,21.829L40.877,22.23L42.521,23.104L44.165,22.86L44.803,22.642L46.133,22.883L46.425,23.153L47.426,23.639L47.614,24.105L48.174,23.905L48.731,24.167L50.068,23.857L50.776,24.338L52.046,24.47L53.171,24.148L53.812,24.153L54.741,24.245L55.277,23.906L55.915,24.119L57.305,24.366L58.064,24.091L62.56,25.167L62.641,25.187L64.352,25.597L64.905,25.732L67.465,26.335L67.802,27.365L68.818,28.375L68.962,29.369L68.399,29.891L67.459,31.326L66.737,32.466L65.857,33.915L65.035,34.386L64.175,35.71L63.814,35.906L63.559,37.108L64.03,37.359L64.847,38.432L64.343,39.03L64.437,39.477L64.043,40.127L63.783,40.339L63.546,41.391L63.546,41.391L61.058,52.455L55.41,51.171L49.985,49.868L49.812,49.825L46.75,49.035L42.537,47.938L39.833,47.183L35.832,45.987L31.352,44.725L29.968,44.33L28.527,43.94L26.68,43.356L26.221,42.491L26.284,40.961L27.046,38.79L26.686,37.457L27.33,36.799L28.403,34.92L28.379,34.643L29.304,34.124L29.571,34.619L29.575,34.608L29.604,34.572L29.607,34.562L29.609,34.555L29.6,34.525L29.593,34.489L29.515,34.03L28.804,34.388L29.845,32.95L30.54,32.277L30.073,32.501L30.592,31.396L30.944,30.656L31.285,30.839L31.292,30.815L31.014,30.428L31.601,28.796L32.65,26.351L32.836,25.506L33.643,24.02L33.643,24.02L34.039,23.243L34.314,22.102L35.236,19.757L35.243,19.326L35.912,17.637L35.972,16.577L36.464,17.083L36.956,16.897Z" + }, + { + "fill": "rgb(217, 240, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.036; geo: [object Object]; name: Oregon", + "shape": "M37.329,17.223L38.026,16.992L38.613,17.83L39.361,17.834L39.772,17.857L40.574,18.807L40.67,20.461L40.522,21.277L40.449,21.829L40.877,22.23L42.521,23.104L44.165,22.86L44.803,22.642L46.133,22.883L46.425,23.153L47.426,23.639L47.614,24.105L48.174,23.905L48.731,24.167L50.068,23.857L50.776,24.338L52.046,24.47L53.171,24.148L53.812,24.153L54.741,24.245L55.277,23.906L55.915,24.119L57.305,24.366L58.064,24.091L62.56,25.167L62.641,25.187L64.352,25.597L64.905,25.732L67.465,26.335L67.802,27.365L68.818,28.375L68.962,29.369L68.399,29.891L67.459,31.326L66.737,32.466L65.857,33.915L65.035,34.386L64.175,35.71L63.814,35.906L63.559,37.108L64.03,37.359L64.847,38.432L64.343,39.03L64.437,39.477L64.043,40.127L63.783,40.339L63.546,41.391L63.546,41.391L61.058,52.455L55.41,51.171L49.985,49.868L49.812,49.825L46.75,49.035L42.537,47.938L39.833,47.183L35.832,45.987L31.352,44.725L29.968,44.33L28.527,43.94L26.68,43.356L26.221,42.491L26.284,40.961L27.046,38.79L26.686,37.457L27.33,36.799L28.403,34.92L28.379,34.643L29.304,34.124L29.571,34.619L29.575,34.608L29.604,34.572L29.607,34.562L29.609,34.555L29.6,34.525L29.593,34.489L29.515,34.03L28.804,34.388L29.845,32.95L30.54,32.277L30.073,32.501L30.592,31.396L30.944,30.656L31.285,30.839L31.292,30.815L31.014,30.428L31.601,28.796L32.65,26.351L32.836,25.506L33.643,24.02L33.643,24.02L34.039,23.243L34.314,22.102L35.236,19.757L35.243,19.326L35.912,17.637L35.972,16.577L36.464,17.083L36.956,16.897Z" + }, + { + "fill": "rgb(220, 241, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.033; geo: [object Object]; name: Oregon", + "shape": "M37.329,17.223L38.026,16.992L38.613,17.83L39.361,17.834L39.772,17.857L40.574,18.807L40.67,20.461L40.522,21.277L40.449,21.829L40.877,22.23L42.521,23.104L44.165,22.86L44.803,22.642L46.133,22.883L46.425,23.153L47.426,23.639L47.614,24.105L48.174,23.905L48.731,24.167L50.068,23.857L50.776,24.338L52.046,24.47L53.171,24.148L53.812,24.153L54.741,24.245L55.277,23.906L55.915,24.119L57.305,24.366L58.064,24.091L62.56,25.167L62.641,25.187L64.352,25.597L64.905,25.732L67.465,26.335L67.802,27.365L68.818,28.375L68.962,29.369L68.399,29.891L67.459,31.326L66.737,32.466L65.857,33.915L65.035,34.386L64.175,35.71L63.814,35.906L63.559,37.108L64.03,37.359L64.847,38.432L64.343,39.03L64.437,39.477L64.043,40.127L63.783,40.339L63.546,41.391L63.546,41.391L61.058,52.455L55.41,51.171L49.985,49.868L49.812,49.825L46.75,49.035L42.537,47.938L39.833,47.183L35.832,45.987L31.352,44.725L29.968,44.33L28.527,43.94L26.68,43.356L26.221,42.491L26.284,40.961L27.046,38.79L26.686,37.457L27.33,36.799L28.403,34.92L28.379,34.643L29.304,34.124L29.571,34.619L29.575,34.608L29.604,34.572L29.607,34.562L29.609,34.555L29.6,34.525L29.593,34.489L29.515,34.03L28.804,34.388L29.845,32.95L30.54,32.277L30.073,32.501L30.592,31.396L30.944,30.656L31.285,30.839L31.292,30.815L31.014,30.428L31.601,28.796L32.65,26.351L32.836,25.506L33.643,24.02L33.643,24.02L34.039,23.243L34.314,22.102L35.236,19.757L35.243,19.326L35.912,17.637L35.972,16.577L36.464,17.083L36.956,16.897Z" + }, + { + "fill": "rgb(177, 224, 182)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.071; geo: [object Object]; name: Pennsylvania", + "shape": "M245.034,56.965L247.707,56.469L248.392,56.367L251.376,55.793L251.865,55.701L254.085,55.297L254.761,55.143L257.88,54.521L258.071,54.482L259.864,54.114L261.863,53.694L262.055,53.654L265.079,53.012L265.649,52.875L266.354,53.675L266.942,53.611L267.312,53.8L267.659,55.184L268.238,55.888L269.459,56.01L269.825,56.407L269.257,57.065L269.064,58.085L268.781,58.465L268.9,58.423L268.349,59.422L268.826,59.985L268.364,60.736L268.49,61.885L268.55,61.987L269.224,62.176L269.464,62.997L270.143,63.366L271.516,64.401L271.517,64.405L270.4,65.34L270.09,65.793L269.486,66.781L268.541,67.43L267.724,67.385L267.637,67.415L267.637,67.415L266.836,68.389L265.114,68.761L264.611,68.868L264.593,68.872L262.941,69.217L261.846,69.45L260.785,69.666L259.707,69.887L258.483,70.131L258.428,70.138L255.274,70.739L254.048,70.971L253.849,71.008L251.701,71.399L251.087,71.511L248.759,71.938L248.344,72.012L246.899,72.271L246.121,72.404L243.587,72.823L243.08,72.906L242.815,71.299L242.774,70.933L242.599,69.978L242.354,68.379L242.25,67.858L242.073,66.778L241.857,65.355L241.787,65.039L241.54,63.537L241.531,63.48L241.14,61.103L241.129,61.035L240.745,58.699L240.605,57.847L241.437,57.323L243.968,55.283L244.279,57.085Z" + }, + { + "fill": "rgb(195, 231, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.057; geo: [object Object]; name: Pennsylvania", + "shape": "M245.034,56.965L247.707,56.469L248.392,56.367L251.376,55.793L251.865,55.701L254.085,55.297L254.761,55.143L257.88,54.521L258.071,54.482L259.864,54.114L261.863,53.694L262.055,53.654L265.079,53.012L265.649,52.875L266.354,53.675L266.942,53.611L267.312,53.8L267.659,55.184L268.238,55.888L269.459,56.01L269.825,56.407L269.257,57.065L269.064,58.085L268.781,58.465L268.9,58.423L268.349,59.422L268.826,59.985L268.364,60.736L268.49,61.885L268.55,61.987L269.224,62.176L269.464,62.997L270.143,63.366L271.516,64.401L271.517,64.405L270.4,65.34L270.09,65.793L269.486,66.781L268.541,67.43L267.724,67.385L267.637,67.415L267.637,67.415L266.836,68.389L265.114,68.761L264.611,68.868L264.593,68.872L262.941,69.217L261.846,69.45L260.785,69.666L259.707,69.887L258.483,70.131L258.428,70.138L255.274,70.739L254.048,70.971L253.849,71.008L251.701,71.399L251.087,71.511L248.759,71.938L248.344,72.012L246.899,72.271L246.121,72.404L243.587,72.823L243.08,72.906L242.815,71.299L242.774,70.933L242.599,69.978L242.354,68.379L242.25,67.858L242.073,66.778L241.857,65.355L241.787,65.039L241.54,63.537L241.531,63.48L241.14,61.103L241.129,61.035L240.745,58.699L240.605,57.847L241.437,57.323L243.968,55.283L244.279,57.085Z" + }, + { + "fill": "rgb(117, 202, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.111; geo: [object Object]; name: Pennsylvania", + "shape": "M245.034,56.965L247.707,56.469L248.392,56.367L251.376,55.793L251.865,55.701L254.085,55.297L254.761,55.143L257.88,54.521L258.071,54.482L259.864,54.114L261.863,53.694L262.055,53.654L265.079,53.012L265.649,52.875L266.354,53.675L266.942,53.611L267.312,53.8L267.659,55.184L268.238,55.888L269.459,56.01L269.825,56.407L269.257,57.065L269.064,58.085L268.781,58.465L268.9,58.423L268.349,59.422L268.826,59.985L268.364,60.736L268.49,61.885L268.55,61.987L269.224,62.176L269.464,62.997L270.143,63.366L271.516,64.401L271.517,64.405L270.4,65.34L270.09,65.793L269.486,66.781L268.541,67.43L267.724,67.385L267.637,67.415L267.637,67.415L266.836,68.389L265.114,68.761L264.611,68.868L264.593,68.872L262.941,69.217L261.846,69.45L260.785,69.666L259.707,69.887L258.483,70.131L258.428,70.138L255.274,70.739L254.048,70.971L253.849,71.008L251.701,71.399L251.087,71.511L248.759,71.938L248.344,72.012L246.899,72.271L246.121,72.404L243.587,72.823L243.08,72.906L242.815,71.299L242.774,70.933L242.599,69.978L242.354,68.379L242.25,67.858L242.073,66.778L241.857,65.355L241.787,65.039L241.54,63.537L241.531,63.48L241.14,61.103L241.129,61.035L240.745,58.699L240.605,57.847L241.437,57.323L243.968,55.283L244.279,57.085Z" + }, + { + "fill": "rgb(127, 205, 187)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.105; geo: [object Object]; name: Pennsylvania", + "shape": "M245.034,56.965L247.707,56.469L248.392,56.367L251.376,55.793L251.865,55.701L254.085,55.297L254.761,55.143L257.88,54.521L258.071,54.482L259.864,54.114L261.863,53.694L262.055,53.654L265.079,53.012L265.649,52.875L266.354,53.675L266.942,53.611L267.312,53.8L267.659,55.184L268.238,55.888L269.459,56.01L269.825,56.407L269.257,57.065L269.064,58.085L268.781,58.465L268.9,58.423L268.349,59.422L268.826,59.985L268.364,60.736L268.49,61.885L268.55,61.987L269.224,62.176L269.464,62.997L270.143,63.366L271.516,64.401L271.517,64.405L270.4,65.34L270.09,65.793L269.486,66.781L268.541,67.43L267.724,67.385L267.637,67.415L267.637,67.415L266.836,68.389L265.114,68.761L264.611,68.868L264.593,68.872L262.941,69.217L261.846,69.45L260.785,69.666L259.707,69.887L258.483,70.131L258.428,70.138L255.274,70.739L254.048,70.971L253.849,71.008L251.701,71.399L251.087,71.511L248.759,71.938L248.344,72.012L246.899,72.271L246.121,72.404L243.587,72.823L243.08,72.906L242.815,71.299L242.774,70.933L242.599,69.978L242.354,68.379L242.25,67.858L242.073,66.778L241.857,65.355L241.787,65.039L241.54,63.537L241.531,63.48L241.14,61.103L241.129,61.035L240.745,58.699L240.605,57.847L241.437,57.323L243.968,55.283L244.279,57.085Z" + }, + { + "fill": "rgb(81, 186, 193)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.138; geo: [object Object]; name: Pennsylvania", + "shape": "M245.034,56.965L247.707,56.469L248.392,56.367L251.376,55.793L251.865,55.701L254.085,55.297L254.761,55.143L257.88,54.521L258.071,54.482L259.864,54.114L261.863,53.694L262.055,53.654L265.079,53.012L265.649,52.875L266.354,53.675L266.942,53.611L267.312,53.8L267.659,55.184L268.238,55.888L269.459,56.01L269.825,56.407L269.257,57.065L269.064,58.085L268.781,58.465L268.9,58.423L268.349,59.422L268.826,59.985L268.364,60.736L268.49,61.885L268.55,61.987L269.224,62.176L269.464,62.997L270.143,63.366L271.516,64.401L271.517,64.405L270.4,65.34L270.09,65.793L269.486,66.781L268.541,67.43L267.724,67.385L267.637,67.415L267.637,67.415L266.836,68.389L265.114,68.761L264.611,68.868L264.593,68.872L262.941,69.217L261.846,69.45L260.785,69.666L259.707,69.887L258.483,70.131L258.428,70.138L255.274,70.739L254.048,70.971L253.849,71.008L251.701,71.399L251.087,71.511L248.759,71.938L248.344,72.012L246.899,72.271L246.121,72.404L243.587,72.823L243.08,72.906L242.815,71.299L242.774,70.933L242.599,69.978L242.354,68.379L242.25,67.858L242.073,66.778L241.857,65.355L241.787,65.039L241.54,63.537L241.531,63.48L241.14,61.103L241.129,61.035L240.745,58.699L240.605,57.847L241.437,57.323L243.968,55.283L244.279,57.085Z" + }, + { + "fill": "rgb(100, 195, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.123; geo: [object Object]; name: Pennsylvania", + "shape": "M245.034,56.965L247.707,56.469L248.392,56.367L251.376,55.793L251.865,55.701L254.085,55.297L254.761,55.143L257.88,54.521L258.071,54.482L259.864,54.114L261.863,53.694L262.055,53.654L265.079,53.012L265.649,52.875L266.354,53.675L266.942,53.611L267.312,53.8L267.659,55.184L268.238,55.888L269.459,56.01L269.825,56.407L269.257,57.065L269.064,58.085L268.781,58.465L268.9,58.423L268.349,59.422L268.826,59.985L268.364,60.736L268.49,61.885L268.55,61.987L269.224,62.176L269.464,62.997L270.143,63.366L271.516,64.401L271.517,64.405L270.4,65.34L270.09,65.793L269.486,66.781L268.541,67.43L267.724,67.385L267.637,67.415L267.637,67.415L266.836,68.389L265.114,68.761L264.611,68.868L264.593,68.872L262.941,69.217L261.846,69.45L260.785,69.666L259.707,69.887L258.483,70.131L258.428,70.138L255.274,70.739L254.048,70.971L253.849,71.008L251.701,71.399L251.087,71.511L248.759,71.938L248.344,72.012L246.899,72.271L246.121,72.404L243.587,72.823L243.08,72.906L242.815,71.299L242.774,70.933L242.599,69.978L242.354,68.379L242.25,67.858L242.073,66.778L241.857,65.355L241.787,65.039L241.54,63.537L241.531,63.48L241.14,61.103L241.129,61.035L240.745,58.699L240.605,57.847L241.437,57.323L243.968,55.283L244.279,57.085Z" + }, + { + "fill": "rgb(40, 148, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.186; geo: [object Object]; name: Pennsylvania", + "shape": "M245.034,56.965L247.707,56.469L248.392,56.367L251.376,55.793L251.865,55.701L254.085,55.297L254.761,55.143L257.88,54.521L258.071,54.482L259.864,54.114L261.863,53.694L262.055,53.654L265.079,53.012L265.649,52.875L266.354,53.675L266.942,53.611L267.312,53.8L267.659,55.184L268.238,55.888L269.459,56.01L269.825,56.407L269.257,57.065L269.064,58.085L268.781,58.465L268.9,58.423L268.349,59.422L268.826,59.985L268.364,60.736L268.49,61.885L268.55,61.987L269.224,62.176L269.464,62.997L270.143,63.366L271.516,64.401L271.517,64.405L270.4,65.34L270.09,65.793L269.486,66.781L268.541,67.43L267.724,67.385L267.637,67.415L267.637,67.415L266.836,68.389L265.114,68.761L264.611,68.868L264.593,68.872L262.941,69.217L261.846,69.45L260.785,69.666L259.707,69.887L258.483,70.131L258.428,70.138L255.274,70.739L254.048,70.971L253.849,71.008L251.701,71.399L251.087,71.511L248.759,71.938L248.344,72.012L246.899,72.271L246.121,72.404L243.587,72.823L243.08,72.906L242.815,71.299L242.774,70.933L242.599,69.978L242.354,68.379L242.25,67.858L242.073,66.778L241.857,65.355L241.787,65.039L241.54,63.537L241.531,63.48L241.14,61.103L241.129,61.035L240.745,58.699L240.605,57.847L241.437,57.323L243.968,55.283L244.279,57.085Z" + }, + { + "fill": "rgb(98, 194, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.125; geo: [object Object]; name: Pennsylvania", + "shape": "M245.034,56.965L247.707,56.469L248.392,56.367L251.376,55.793L251.865,55.701L254.085,55.297L254.761,55.143L257.88,54.521L258.071,54.482L259.864,54.114L261.863,53.694L262.055,53.654L265.079,53.012L265.649,52.875L266.354,53.675L266.942,53.611L267.312,53.8L267.659,55.184L268.238,55.888L269.459,56.01L269.825,56.407L269.257,57.065L269.064,58.085L268.781,58.465L268.9,58.423L268.349,59.422L268.826,59.985L268.364,60.736L268.49,61.885L268.55,61.987L269.224,62.176L269.464,62.997L270.143,63.366L271.516,64.401L271.517,64.405L270.4,65.34L270.09,65.793L269.486,66.781L268.541,67.43L267.724,67.385L267.637,67.415L267.637,67.415L266.836,68.389L265.114,68.761L264.611,68.868L264.593,68.872L262.941,69.217L261.846,69.45L260.785,69.666L259.707,69.887L258.483,70.131L258.428,70.138L255.274,70.739L254.048,70.971L253.849,71.008L251.701,71.399L251.087,71.511L248.759,71.938L248.344,72.012L246.899,72.271L246.121,72.404L243.587,72.823L243.08,72.906L242.815,71.299L242.774,70.933L242.599,69.978L242.354,68.379L242.25,67.858L242.073,66.778L241.857,65.355L241.787,65.039L241.54,63.537L241.531,63.48L241.14,61.103L241.129,61.035L240.745,58.699L240.605,57.847L241.437,57.323L243.968,55.283L244.279,57.085Z" + }, + { + "fill": "rgb(209, 237, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.044; geo: [object Object]; name: Pennsylvania", + "shape": "M245.034,56.965L247.707,56.469L248.392,56.367L251.376,55.793L251.865,55.701L254.085,55.297L254.761,55.143L257.88,54.521L258.071,54.482L259.864,54.114L261.863,53.694L262.055,53.654L265.079,53.012L265.649,52.875L266.354,53.675L266.942,53.611L267.312,53.8L267.659,55.184L268.238,55.888L269.459,56.01L269.825,56.407L269.257,57.065L269.064,58.085L268.781,58.465L268.9,58.423L268.349,59.422L268.826,59.985L268.364,60.736L268.49,61.885L268.55,61.987L269.224,62.176L269.464,62.997L270.143,63.366L271.516,64.401L271.517,64.405L270.4,65.34L270.09,65.793L269.486,66.781L268.541,67.43L267.724,67.385L267.637,67.415L267.637,67.415L266.836,68.389L265.114,68.761L264.611,68.868L264.593,68.872L262.941,69.217L261.846,69.45L260.785,69.666L259.707,69.887L258.483,70.131L258.428,70.138L255.274,70.739L254.048,70.971L253.849,71.008L251.701,71.399L251.087,71.511L248.759,71.938L248.344,72.012L246.899,72.271L246.121,72.404L243.587,72.823L243.08,72.906L242.815,71.299L242.774,70.933L242.599,69.978L242.354,68.379L242.25,67.858L242.073,66.778L241.857,65.355L241.787,65.039L241.54,63.537L241.531,63.48L241.14,61.103L241.129,61.035L240.745,58.699L240.605,57.847L241.437,57.323L243.968,55.283L244.279,57.085Z" + }, + { + "fill": "rgb(211, 238, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.042; geo: [object Object]; name: Pennsylvania", + "shape": "M245.034,56.965L247.707,56.469L248.392,56.367L251.376,55.793L251.865,55.701L254.085,55.297L254.761,55.143L257.88,54.521L258.071,54.482L259.864,54.114L261.863,53.694L262.055,53.654L265.079,53.012L265.649,52.875L266.354,53.675L266.942,53.611L267.312,53.8L267.659,55.184L268.238,55.888L269.459,56.01L269.825,56.407L269.257,57.065L269.064,58.085L268.781,58.465L268.9,58.423L268.349,59.422L268.826,59.985L268.364,60.736L268.49,61.885L268.55,61.987L269.224,62.176L269.464,62.997L270.143,63.366L271.516,64.401L271.517,64.405L270.4,65.34L270.09,65.793L269.486,66.781L268.541,67.43L267.724,67.385L267.637,67.415L267.637,67.415L266.836,68.389L265.114,68.761L264.611,68.868L264.593,68.872L262.941,69.217L261.846,69.45L260.785,69.666L259.707,69.887L258.483,70.131L258.428,70.138L255.274,70.739L254.048,70.971L253.849,71.008L251.701,71.399L251.087,71.511L248.759,71.938L248.344,72.012L246.899,72.271L246.121,72.404L243.587,72.823L243.08,72.906L242.815,71.299L242.774,70.933L242.599,69.978L242.354,68.379L242.25,67.858L242.073,66.778L241.857,65.355L241.787,65.039L241.54,63.537L241.531,63.48L241.14,61.103L241.129,61.035L240.745,58.699L240.605,57.847L241.437,57.323L243.968,55.283L244.279,57.085Z" + }, + { + "fill": "rgb(167, 220, 183)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.078; geo: [object Object]; name: Rhode Island", + "shape": "M285.926,51.377L286.142,50.523L286.395,51.47ZM286.928,51.177L286.625,51.36L286.255,50.113L286.593,50.132ZM284.821,48.327L285.493,49.61L286.033,49.906L286.001,50.406L285.378,49.802L285.152,49.783L285.175,50.569L285.531,51.846L285.199,52.482L283.708,53.375L283.7,53.201L283.78,52.58L283.54,51.374L283.467,51.093L283.323,50.541L282.771,48.704L284.216,48.262Z" + }, + { + "fill": "rgb(196, 232, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.056; geo: [object Object]; name: Rhode Island", + "shape": "M285.926,51.377L286.142,50.523L286.395,51.47ZM286.928,51.177L286.625,51.36L286.255,50.113L286.593,50.132ZM284.821,48.327L285.493,49.61L286.033,49.906L286.001,50.406L285.378,49.802L285.152,49.783L285.175,50.569L285.531,51.846L285.199,52.482L283.708,53.375L283.7,53.201L283.78,52.58L283.54,51.374L283.467,51.093L283.323,50.541L282.771,48.704L284.216,48.262Z" + }, + { + "fill": "rgb(130, 206, 187)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.103; geo: [object Object]; name: Rhode Island", + "shape": "M285.926,51.377L286.142,50.523L286.395,51.47ZM286.928,51.177L286.625,51.36L286.255,50.113L286.593,50.132ZM284.821,48.327L285.493,49.61L286.033,49.906L286.001,50.406L285.378,49.802L285.152,49.783L285.175,50.569L285.531,51.846L285.199,52.482L283.708,53.375L283.7,53.201L283.78,52.58L283.54,51.374L283.467,51.093L283.323,50.541L282.771,48.704L284.216,48.262Z" + }, + { + "fill": "rgb(148, 213, 185)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.091; geo: [object Object]; name: Rhode Island", + "shape": "M285.926,51.377L286.142,50.523L286.395,51.47ZM286.928,51.177L286.625,51.36L286.255,50.113L286.593,50.132ZM284.821,48.327L285.493,49.61L286.033,49.906L286.001,50.406L285.378,49.802L285.152,49.783L285.175,50.569L285.531,51.846L285.199,52.482L283.708,53.375L283.7,53.201L283.78,52.58L283.54,51.374L283.467,51.093L283.323,50.541L282.771,48.704L284.216,48.262Z" + }, + { + "fill": "rgb(96, 193, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.126; geo: [object Object]; name: Rhode Island", + "shape": "M285.926,51.377L286.142,50.523L286.395,51.47ZM286.928,51.177L286.625,51.36L286.255,50.113L286.593,50.132ZM284.821,48.327L285.493,49.61L286.033,49.906L286.001,50.406L285.378,49.802L285.152,49.783L285.175,50.569L285.531,51.846L285.199,52.482L283.708,53.375L283.7,53.201L283.78,52.58L283.54,51.374L283.467,51.093L283.323,50.541L282.771,48.704L284.216,48.262Z" + }, + { + "fill": "rgb(98, 194, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.125; geo: [object Object]; name: Rhode Island", + "shape": "M285.926,51.377L286.142,50.523L286.395,51.47ZM286.928,51.177L286.625,51.36L286.255,50.113L286.593,50.132ZM284.821,48.327L285.493,49.61L286.033,49.906L286.001,50.406L285.378,49.802L285.152,49.783L285.175,50.569L285.531,51.846L285.199,52.482L283.708,53.375L283.7,53.201L283.78,52.58L283.54,51.374L283.467,51.093L283.323,50.541L282.771,48.704L284.216,48.262Z" + }, + { + "fill": "rgb(46, 160, 192)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.173; geo: [object Object]; name: Rhode Island", + "shape": "M285.926,51.377L286.142,50.523L286.395,51.47ZM286.928,51.177L286.625,51.36L286.255,50.113L286.593,50.132ZM284.821,48.327L285.493,49.61L286.033,49.906L286.001,50.406L285.378,49.802L285.152,49.783L285.175,50.569L285.531,51.846L285.199,52.482L283.708,53.375L283.7,53.201L283.78,52.58L283.54,51.374L283.467,51.093L283.323,50.541L282.771,48.704L284.216,48.262Z" + }, + { + "fill": "rgb(75, 183, 193)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.143; geo: [object Object]; name: Rhode Island", + "shape": "M285.926,51.377L286.142,50.523L286.395,51.47ZM286.928,51.177L286.625,51.36L286.255,50.113L286.593,50.132ZM284.821,48.327L285.493,49.61L286.033,49.906L286.001,50.406L285.378,49.802L285.152,49.783L285.175,50.569L285.531,51.846L285.199,52.482L283.708,53.375L283.7,53.201L283.78,52.58L283.54,51.374L283.467,51.093L283.323,50.541L282.771,48.704L284.216,48.262Z" + }, + { + "fill": "rgb(194, 231, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.058; geo: [object Object]; name: Rhode Island", + "shape": "M285.926,51.377L286.142,50.523L286.395,51.47ZM286.928,51.177L286.625,51.36L286.255,50.113L286.593,50.132ZM284.821,48.327L285.493,49.61L286.033,49.906L286.001,50.406L285.378,49.802L285.152,49.783L285.175,50.569L285.531,51.846L285.199,52.482L283.708,53.375L283.7,53.201L283.78,52.58L283.54,51.374L283.467,51.093L283.323,50.541L282.771,48.704L284.216,48.262Z" + }, + { + "fill": "rgb(206, 236, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.047; geo: [object Object]; name: Rhode Island", + "shape": "M285.926,51.377L286.142,50.523L286.395,51.47ZM286.928,51.177L286.625,51.36L286.255,50.113L286.593,50.132ZM284.821,48.327L285.493,49.61L286.033,49.906L286.001,50.406L285.378,49.802L285.152,49.783L285.175,50.569L285.531,51.846L285.199,52.482L283.708,53.375L283.7,53.201L283.78,52.58L283.54,51.374L283.467,51.093L283.323,50.541L282.771,48.704L284.216,48.262Z" + }, + { + "fill": "rgb(145, 212, 185)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.093; geo: [object Object]; name: South Carolina", + "shape": "M249.748,124.002L250.114,122.835L250.489,123.123ZM250.651,122.854L250.124,121.255L250.814,121.223L251.462,121.675ZM250.386,122.615L249.735,122.14L249.413,121.543L250.084,121.133ZM254.825,118.097L254.904,118.319L254.382,118.728L254.06,118.155L254.528,117.559L254.073,118.351L253.705,117.866L253.984,118.786L254.283,118.863L253.907,119.531L253.818,119.851L252.848,120.408L252.312,119.892L252.144,120.236L252.745,120.4L252.463,120.671L251.983,120.986L251.446,120.337L251.597,121.006L250.633,120.739L250.535,120.891L250.78,121.141L249.682,121.051L249.374,121.428L249.192,120.929L249.313,121.68L249.34,121.976L249.385,122.002L249.356,122.077L249.259,122.235L249.87,122.72L249.848,123.348L249.365,123.279L249.844,123.447L249.258,123.765L249.26,123.776L249.305,123.802L249.312,123.845L249.214,123.875L249.141,123.931L249.025,123.979L249.141,123.931L249.118,124.301L248.244,124.235L248.096,124.207L247.821,123.506L247.805,122.757L247.336,121.983L246.717,121.427L246.717,121.424L246.079,121.263L245.845,120.276L245.653,119.693L244.781,118.385L244.314,118.119L243.439,117.826L243.437,117.548L242.854,117.302L242.283,116.727L242.222,115.911L241.682,115.532L241.59,115.458L241.066,115.179L240.321,114.628L239.841,113.954L238.26,113.136L238.239,113.128L238.028,112.769L237.041,111.581L236.789,111.066L236.144,110.008L235.438,109.937L235.097,109.907L234.764,109.656L233.345,108.839L233.362,108.819L233.258,108.638L233.714,107.463L234.358,106.972L234.32,106.548L234.838,106.293L235.412,106.023L236.117,105.841L237.05,105.184L238.203,104.703L238.951,104.561L240.272,104.429L240.797,104.373L241.359,104.31L243.536,104.087L243.749,104.058L245.346,103.914L245.398,104.616L246.117,104.284L246.545,104.73L246.924,105.111L246.953,105.905L248.232,105.716L249.551,105.52L251.666,105.211L252.964,105.006L254.385,105.957L254.453,106.004L256.869,107.777L256.891,107.784L259.597,109.723L260.085,110.076L260.243,110.272L258.896,111.295L258.133,112.551L257.602,113.764L257.533,114.624L256.981,114.604L257.607,115.266L257.365,115.619L256.414,115.534L256.414,115.534L257.143,115.743L256.464,116.626L255.816,116.648L255.512,117.352Z" + }, + { + "fill": "rgb(183, 227, 182)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.067; geo: [object Object]; name: South Carolina", + "shape": "M249.748,124.002L250.114,122.835L250.489,123.123ZM250.651,122.854L250.124,121.255L250.814,121.223L251.462,121.675ZM250.386,122.615L249.735,122.14L249.413,121.543L250.084,121.133ZM254.825,118.097L254.904,118.319L254.382,118.728L254.06,118.155L254.528,117.559L254.073,118.351L253.705,117.866L253.984,118.786L254.283,118.863L253.907,119.531L253.818,119.851L252.848,120.408L252.312,119.892L252.144,120.236L252.745,120.4L252.463,120.671L251.983,120.986L251.446,120.337L251.597,121.006L250.633,120.739L250.535,120.891L250.78,121.141L249.682,121.051L249.374,121.428L249.192,120.929L249.313,121.68L249.34,121.976L249.385,122.002L249.356,122.077L249.259,122.235L249.87,122.72L249.848,123.348L249.365,123.279L249.844,123.447L249.258,123.765L249.26,123.776L249.305,123.802L249.312,123.845L249.214,123.875L249.141,123.931L249.025,123.979L249.141,123.931L249.118,124.301L248.244,124.235L248.096,124.207L247.821,123.506L247.805,122.757L247.336,121.983L246.717,121.427L246.717,121.424L246.079,121.263L245.845,120.276L245.653,119.693L244.781,118.385L244.314,118.119L243.439,117.826L243.437,117.548L242.854,117.302L242.283,116.727L242.222,115.911L241.682,115.532L241.59,115.458L241.066,115.179L240.321,114.628L239.841,113.954L238.26,113.136L238.239,113.128L238.028,112.769L237.041,111.581L236.789,111.066L236.144,110.008L235.438,109.937L235.097,109.907L234.764,109.656L233.345,108.839L233.362,108.819L233.258,108.638L233.714,107.463L234.358,106.972L234.32,106.548L234.838,106.293L235.412,106.023L236.117,105.841L237.05,105.184L238.203,104.703L238.951,104.561L240.272,104.429L240.797,104.373L241.359,104.31L243.536,104.087L243.749,104.058L245.346,103.914L245.398,104.616L246.117,104.284L246.545,104.73L246.924,105.111L246.953,105.905L248.232,105.716L249.551,105.52L251.666,105.211L252.964,105.006L254.385,105.957L254.453,106.004L256.869,107.777L256.891,107.784L259.597,109.723L260.085,110.076L260.243,110.272L258.896,111.295L258.133,112.551L257.602,113.764L257.533,114.624L256.981,114.604L257.607,115.266L257.365,115.619L256.414,115.534L256.414,115.534L257.143,115.743L256.464,116.626L255.816,116.648L255.512,117.352Z" + }, + { + "fill": "rgb(95, 192, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.127; geo: [object Object]; name: South Carolina", + "shape": "M249.748,124.002L250.114,122.835L250.489,123.123ZM250.651,122.854L250.124,121.255L250.814,121.223L251.462,121.675ZM250.386,122.615L249.735,122.14L249.413,121.543L250.084,121.133ZM254.825,118.097L254.904,118.319L254.382,118.728L254.06,118.155L254.528,117.559L254.073,118.351L253.705,117.866L253.984,118.786L254.283,118.863L253.907,119.531L253.818,119.851L252.848,120.408L252.312,119.892L252.144,120.236L252.745,120.4L252.463,120.671L251.983,120.986L251.446,120.337L251.597,121.006L250.633,120.739L250.535,120.891L250.78,121.141L249.682,121.051L249.374,121.428L249.192,120.929L249.313,121.68L249.34,121.976L249.385,122.002L249.356,122.077L249.259,122.235L249.87,122.72L249.848,123.348L249.365,123.279L249.844,123.447L249.258,123.765L249.26,123.776L249.305,123.802L249.312,123.845L249.214,123.875L249.141,123.931L249.025,123.979L249.141,123.931L249.118,124.301L248.244,124.235L248.096,124.207L247.821,123.506L247.805,122.757L247.336,121.983L246.717,121.427L246.717,121.424L246.079,121.263L245.845,120.276L245.653,119.693L244.781,118.385L244.314,118.119L243.439,117.826L243.437,117.548L242.854,117.302L242.283,116.727L242.222,115.911L241.682,115.532L241.59,115.458L241.066,115.179L240.321,114.628L239.841,113.954L238.26,113.136L238.239,113.128L238.028,112.769L237.041,111.581L236.789,111.066L236.144,110.008L235.438,109.937L235.097,109.907L234.764,109.656L233.345,108.839L233.362,108.819L233.258,108.638L233.714,107.463L234.358,106.972L234.32,106.548L234.838,106.293L235.412,106.023L236.117,105.841L237.05,105.184L238.203,104.703L238.951,104.561L240.272,104.429L240.797,104.373L241.359,104.31L243.536,104.087L243.749,104.058L245.346,103.914L245.398,104.616L246.117,104.284L246.545,104.73L246.924,105.111L246.953,105.905L248.232,105.716L249.551,105.52L251.666,105.211L252.964,105.006L254.385,105.957L254.453,106.004L256.869,107.777L256.891,107.784L259.597,109.723L260.085,110.076L260.243,110.272L258.896,111.295L258.133,112.551L257.602,113.764L257.533,114.624L256.981,114.604L257.607,115.266L257.365,115.619L256.414,115.534L256.414,115.534L257.143,115.743L256.464,116.626L255.816,116.648L255.512,117.352Z" + }, + { + "fill": "rgb(107, 198, 190)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.118; geo: [object Object]; name: South Carolina", + "shape": "M249.748,124.002L250.114,122.835L250.489,123.123ZM250.651,122.854L250.124,121.255L250.814,121.223L251.462,121.675ZM250.386,122.615L249.735,122.14L249.413,121.543L250.084,121.133ZM254.825,118.097L254.904,118.319L254.382,118.728L254.06,118.155L254.528,117.559L254.073,118.351L253.705,117.866L253.984,118.786L254.283,118.863L253.907,119.531L253.818,119.851L252.848,120.408L252.312,119.892L252.144,120.236L252.745,120.4L252.463,120.671L251.983,120.986L251.446,120.337L251.597,121.006L250.633,120.739L250.535,120.891L250.78,121.141L249.682,121.051L249.374,121.428L249.192,120.929L249.313,121.68L249.34,121.976L249.385,122.002L249.356,122.077L249.259,122.235L249.87,122.72L249.848,123.348L249.365,123.279L249.844,123.447L249.258,123.765L249.26,123.776L249.305,123.802L249.312,123.845L249.214,123.875L249.141,123.931L249.025,123.979L249.141,123.931L249.118,124.301L248.244,124.235L248.096,124.207L247.821,123.506L247.805,122.757L247.336,121.983L246.717,121.427L246.717,121.424L246.079,121.263L245.845,120.276L245.653,119.693L244.781,118.385L244.314,118.119L243.439,117.826L243.437,117.548L242.854,117.302L242.283,116.727L242.222,115.911L241.682,115.532L241.59,115.458L241.066,115.179L240.321,114.628L239.841,113.954L238.26,113.136L238.239,113.128L238.028,112.769L237.041,111.581L236.789,111.066L236.144,110.008L235.438,109.937L235.097,109.907L234.764,109.656L233.345,108.839L233.362,108.819L233.258,108.638L233.714,107.463L234.358,106.972L234.32,106.548L234.838,106.293L235.412,106.023L236.117,105.841L237.05,105.184L238.203,104.703L238.951,104.561L240.272,104.429L240.797,104.373L241.359,104.31L243.536,104.087L243.749,104.058L245.346,103.914L245.398,104.616L246.117,104.284L246.545,104.73L246.924,105.111L246.953,105.905L248.232,105.716L249.551,105.52L251.666,105.211L252.964,105.006L254.385,105.957L254.453,106.004L256.869,107.777L256.891,107.784L259.597,109.723L260.085,110.076L260.243,110.272L258.896,111.295L258.133,112.551L257.602,113.764L257.533,114.624L256.981,114.604L257.607,115.266L257.365,115.619L256.414,115.534L256.414,115.534L257.143,115.743L256.464,116.626L255.816,116.648L255.512,117.352Z" + }, + { + "fill": "rgb(70, 180, 194)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.147; geo: [object Object]; name: South Carolina", + "shape": "M249.748,124.002L250.114,122.835L250.489,123.123ZM250.651,122.854L250.124,121.255L250.814,121.223L251.462,121.675ZM250.386,122.615L249.735,122.14L249.413,121.543L250.084,121.133ZM254.825,118.097L254.904,118.319L254.382,118.728L254.06,118.155L254.528,117.559L254.073,118.351L253.705,117.866L253.984,118.786L254.283,118.863L253.907,119.531L253.818,119.851L252.848,120.408L252.312,119.892L252.144,120.236L252.745,120.4L252.463,120.671L251.983,120.986L251.446,120.337L251.597,121.006L250.633,120.739L250.535,120.891L250.78,121.141L249.682,121.051L249.374,121.428L249.192,120.929L249.313,121.68L249.34,121.976L249.385,122.002L249.356,122.077L249.259,122.235L249.87,122.72L249.848,123.348L249.365,123.279L249.844,123.447L249.258,123.765L249.26,123.776L249.305,123.802L249.312,123.845L249.214,123.875L249.141,123.931L249.025,123.979L249.141,123.931L249.118,124.301L248.244,124.235L248.096,124.207L247.821,123.506L247.805,122.757L247.336,121.983L246.717,121.427L246.717,121.424L246.079,121.263L245.845,120.276L245.653,119.693L244.781,118.385L244.314,118.119L243.439,117.826L243.437,117.548L242.854,117.302L242.283,116.727L242.222,115.911L241.682,115.532L241.59,115.458L241.066,115.179L240.321,114.628L239.841,113.954L238.26,113.136L238.239,113.128L238.028,112.769L237.041,111.581L236.789,111.066L236.144,110.008L235.438,109.937L235.097,109.907L234.764,109.656L233.345,108.839L233.362,108.819L233.258,108.638L233.714,107.463L234.358,106.972L234.32,106.548L234.838,106.293L235.412,106.023L236.117,105.841L237.05,105.184L238.203,104.703L238.951,104.561L240.272,104.429L240.797,104.373L241.359,104.31L243.536,104.087L243.749,104.058L245.346,103.914L245.398,104.616L246.117,104.284L246.545,104.73L246.924,105.111L246.953,105.905L248.232,105.716L249.551,105.52L251.666,105.211L252.964,105.006L254.385,105.957L254.453,106.004L256.869,107.777L256.891,107.784L259.597,109.723L260.085,110.076L260.243,110.272L258.896,111.295L258.133,112.551L257.602,113.764L257.533,114.624L256.981,114.604L257.607,115.266L257.365,115.619L256.414,115.534L256.414,115.534L257.143,115.743L256.464,116.626L255.816,116.648L255.512,117.352Z" + }, + { + "fill": "rgb(122, 203, 188)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.108; geo: [object Object]; name: South Carolina", + "shape": "M249.748,124.002L250.114,122.835L250.489,123.123ZM250.651,122.854L250.124,121.255L250.814,121.223L251.462,121.675ZM250.386,122.615L249.735,122.14L249.413,121.543L250.084,121.133ZM254.825,118.097L254.904,118.319L254.382,118.728L254.06,118.155L254.528,117.559L254.073,118.351L253.705,117.866L253.984,118.786L254.283,118.863L253.907,119.531L253.818,119.851L252.848,120.408L252.312,119.892L252.144,120.236L252.745,120.4L252.463,120.671L251.983,120.986L251.446,120.337L251.597,121.006L250.633,120.739L250.535,120.891L250.78,121.141L249.682,121.051L249.374,121.428L249.192,120.929L249.313,121.68L249.34,121.976L249.385,122.002L249.356,122.077L249.259,122.235L249.87,122.72L249.848,123.348L249.365,123.279L249.844,123.447L249.258,123.765L249.26,123.776L249.305,123.802L249.312,123.845L249.214,123.875L249.141,123.931L249.025,123.979L249.141,123.931L249.118,124.301L248.244,124.235L248.096,124.207L247.821,123.506L247.805,122.757L247.336,121.983L246.717,121.427L246.717,121.424L246.079,121.263L245.845,120.276L245.653,119.693L244.781,118.385L244.314,118.119L243.439,117.826L243.437,117.548L242.854,117.302L242.283,116.727L242.222,115.911L241.682,115.532L241.59,115.458L241.066,115.179L240.321,114.628L239.841,113.954L238.26,113.136L238.239,113.128L238.028,112.769L237.041,111.581L236.789,111.066L236.144,110.008L235.438,109.937L235.097,109.907L234.764,109.656L233.345,108.839L233.362,108.819L233.258,108.638L233.714,107.463L234.358,106.972L234.32,106.548L234.838,106.293L235.412,106.023L236.117,105.841L237.05,105.184L238.203,104.703L238.951,104.561L240.272,104.429L240.797,104.373L241.359,104.31L243.536,104.087L243.749,104.058L245.346,103.914L245.398,104.616L246.117,104.284L246.545,104.73L246.924,105.111L246.953,105.905L248.232,105.716L249.551,105.52L251.666,105.211L252.964,105.006L254.385,105.957L254.453,106.004L256.869,107.777L256.891,107.784L259.597,109.723L260.085,110.076L260.243,110.272L258.896,111.295L258.133,112.551L257.602,113.764L257.533,114.624L256.981,114.604L257.607,115.266L257.365,115.619L256.414,115.534L256.414,115.534L257.143,115.743L256.464,116.626L255.816,116.648L255.512,117.352Z" + }, + { + "fill": "rgb(42, 153, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.181; geo: [object Object]; name: South Carolina", + "shape": "M249.748,124.002L250.114,122.835L250.489,123.123ZM250.651,122.854L250.124,121.255L250.814,121.223L251.462,121.675ZM250.386,122.615L249.735,122.14L249.413,121.543L250.084,121.133ZM254.825,118.097L254.904,118.319L254.382,118.728L254.06,118.155L254.528,117.559L254.073,118.351L253.705,117.866L253.984,118.786L254.283,118.863L253.907,119.531L253.818,119.851L252.848,120.408L252.312,119.892L252.144,120.236L252.745,120.4L252.463,120.671L251.983,120.986L251.446,120.337L251.597,121.006L250.633,120.739L250.535,120.891L250.78,121.141L249.682,121.051L249.374,121.428L249.192,120.929L249.313,121.68L249.34,121.976L249.385,122.002L249.356,122.077L249.259,122.235L249.87,122.72L249.848,123.348L249.365,123.279L249.844,123.447L249.258,123.765L249.26,123.776L249.305,123.802L249.312,123.845L249.214,123.875L249.141,123.931L249.025,123.979L249.141,123.931L249.118,124.301L248.244,124.235L248.096,124.207L247.821,123.506L247.805,122.757L247.336,121.983L246.717,121.427L246.717,121.424L246.079,121.263L245.845,120.276L245.653,119.693L244.781,118.385L244.314,118.119L243.439,117.826L243.437,117.548L242.854,117.302L242.283,116.727L242.222,115.911L241.682,115.532L241.59,115.458L241.066,115.179L240.321,114.628L239.841,113.954L238.26,113.136L238.239,113.128L238.028,112.769L237.041,111.581L236.789,111.066L236.144,110.008L235.438,109.937L235.097,109.907L234.764,109.656L233.345,108.839L233.362,108.819L233.258,108.638L233.714,107.463L234.358,106.972L234.32,106.548L234.838,106.293L235.412,106.023L236.117,105.841L237.05,105.184L238.203,104.703L238.951,104.561L240.272,104.429L240.797,104.373L241.359,104.31L243.536,104.087L243.749,104.058L245.346,103.914L245.398,104.616L246.117,104.284L246.545,104.73L246.924,105.111L246.953,105.905L248.232,105.716L249.551,105.52L251.666,105.211L252.964,105.006L254.385,105.957L254.453,106.004L256.869,107.777L256.891,107.784L259.597,109.723L260.085,110.076L260.243,110.272L258.896,111.295L258.133,112.551L257.602,113.764L257.533,114.624L256.981,114.604L257.607,115.266L257.365,115.619L256.414,115.534L256.414,115.534L257.143,115.743L256.464,116.626L255.816,116.648L255.512,117.352Z" + }, + { + "fill": "rgb(134, 208, 187)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.1; geo: [object Object]; name: South Carolina", + "shape": "M249.748,124.002L250.114,122.835L250.489,123.123ZM250.651,122.854L250.124,121.255L250.814,121.223L251.462,121.675ZM250.386,122.615L249.735,122.14L249.413,121.543L250.084,121.133ZM254.825,118.097L254.904,118.319L254.382,118.728L254.06,118.155L254.528,117.559L254.073,118.351L253.705,117.866L253.984,118.786L254.283,118.863L253.907,119.531L253.818,119.851L252.848,120.408L252.312,119.892L252.144,120.236L252.745,120.4L252.463,120.671L251.983,120.986L251.446,120.337L251.597,121.006L250.633,120.739L250.535,120.891L250.78,121.141L249.682,121.051L249.374,121.428L249.192,120.929L249.313,121.68L249.34,121.976L249.385,122.002L249.356,122.077L249.259,122.235L249.87,122.72L249.848,123.348L249.365,123.279L249.844,123.447L249.258,123.765L249.26,123.776L249.305,123.802L249.312,123.845L249.214,123.875L249.141,123.931L249.025,123.979L249.141,123.931L249.118,124.301L248.244,124.235L248.096,124.207L247.821,123.506L247.805,122.757L247.336,121.983L246.717,121.427L246.717,121.424L246.079,121.263L245.845,120.276L245.653,119.693L244.781,118.385L244.314,118.119L243.439,117.826L243.437,117.548L242.854,117.302L242.283,116.727L242.222,115.911L241.682,115.532L241.59,115.458L241.066,115.179L240.321,114.628L239.841,113.954L238.26,113.136L238.239,113.128L238.028,112.769L237.041,111.581L236.789,111.066L236.144,110.008L235.438,109.937L235.097,109.907L234.764,109.656L233.345,108.839L233.362,108.819L233.258,108.638L233.714,107.463L234.358,106.972L234.32,106.548L234.838,106.293L235.412,106.023L236.117,105.841L237.05,105.184L238.203,104.703L238.951,104.561L240.272,104.429L240.797,104.373L241.359,104.31L243.536,104.087L243.749,104.058L245.346,103.914L245.398,104.616L246.117,104.284L246.545,104.73L246.924,105.111L246.953,105.905L248.232,105.716L249.551,105.52L251.666,105.211L252.964,105.006L254.385,105.957L254.453,106.004L256.869,107.777L256.891,107.784L259.597,109.723L260.085,110.076L260.243,110.272L258.896,111.295L258.133,112.551L257.602,113.764L257.533,114.624L256.981,114.604L257.607,115.266L257.365,115.619L256.414,115.534L256.414,115.534L257.143,115.743L256.464,116.626L255.816,116.648L255.512,117.352Z" + }, + { + "fill": "rgb(221, 242, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.031; geo: [object Object]; name: South Carolina", + "shape": "M249.748,124.002L250.114,122.835L250.489,123.123ZM250.651,122.854L250.124,121.255L250.814,121.223L251.462,121.675ZM250.386,122.615L249.735,122.14L249.413,121.543L250.084,121.133ZM254.825,118.097L254.904,118.319L254.382,118.728L254.06,118.155L254.528,117.559L254.073,118.351L253.705,117.866L253.984,118.786L254.283,118.863L253.907,119.531L253.818,119.851L252.848,120.408L252.312,119.892L252.144,120.236L252.745,120.4L252.463,120.671L251.983,120.986L251.446,120.337L251.597,121.006L250.633,120.739L250.535,120.891L250.78,121.141L249.682,121.051L249.374,121.428L249.192,120.929L249.313,121.68L249.34,121.976L249.385,122.002L249.356,122.077L249.259,122.235L249.87,122.72L249.848,123.348L249.365,123.279L249.844,123.447L249.258,123.765L249.26,123.776L249.305,123.802L249.312,123.845L249.214,123.875L249.141,123.931L249.025,123.979L249.141,123.931L249.118,124.301L248.244,124.235L248.096,124.207L247.821,123.506L247.805,122.757L247.336,121.983L246.717,121.427L246.717,121.424L246.079,121.263L245.845,120.276L245.653,119.693L244.781,118.385L244.314,118.119L243.439,117.826L243.437,117.548L242.854,117.302L242.283,116.727L242.222,115.911L241.682,115.532L241.59,115.458L241.066,115.179L240.321,114.628L239.841,113.954L238.26,113.136L238.239,113.128L238.028,112.769L237.041,111.581L236.789,111.066L236.144,110.008L235.438,109.937L235.097,109.907L234.764,109.656L233.345,108.839L233.362,108.819L233.258,108.638L233.714,107.463L234.358,106.972L234.32,106.548L234.838,106.293L235.412,106.023L236.117,105.841L237.05,105.184L238.203,104.703L238.951,104.561L240.272,104.429L240.797,104.373L241.359,104.31L243.536,104.087L243.749,104.058L245.346,103.914L245.398,104.616L246.117,104.284L246.545,104.73L246.924,105.111L246.953,105.905L248.232,105.716L249.551,105.52L251.666,105.211L252.964,105.006L254.385,105.957L254.453,106.004L256.869,107.777L256.891,107.784L259.597,109.723L260.085,110.076L260.243,110.272L258.896,111.295L258.133,112.551L257.602,113.764L257.533,114.624L256.981,114.604L257.607,115.266L257.365,115.619L256.414,115.534L256.414,115.534L257.143,115.743L256.464,116.626L255.816,116.648L255.512,117.352Z" + }, + { + "fill": "rgb(225, 243, 183)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.026; geo: [object Object]; name: South Carolina", + "shape": "M249.748,124.002L250.114,122.835L250.489,123.123ZM250.651,122.854L250.124,121.255L250.814,121.223L251.462,121.675ZM250.386,122.615L249.735,122.14L249.413,121.543L250.084,121.133ZM254.825,118.097L254.904,118.319L254.382,118.728L254.06,118.155L254.528,117.559L254.073,118.351L253.705,117.866L253.984,118.786L254.283,118.863L253.907,119.531L253.818,119.851L252.848,120.408L252.312,119.892L252.144,120.236L252.745,120.4L252.463,120.671L251.983,120.986L251.446,120.337L251.597,121.006L250.633,120.739L250.535,120.891L250.78,121.141L249.682,121.051L249.374,121.428L249.192,120.929L249.313,121.68L249.34,121.976L249.385,122.002L249.356,122.077L249.259,122.235L249.87,122.72L249.848,123.348L249.365,123.279L249.844,123.447L249.258,123.765L249.26,123.776L249.305,123.802L249.312,123.845L249.214,123.875L249.141,123.931L249.025,123.979L249.141,123.931L249.118,124.301L248.244,124.235L248.096,124.207L247.821,123.506L247.805,122.757L247.336,121.983L246.717,121.427L246.717,121.424L246.079,121.263L245.845,120.276L245.653,119.693L244.781,118.385L244.314,118.119L243.439,117.826L243.437,117.548L242.854,117.302L242.283,116.727L242.222,115.911L241.682,115.532L241.59,115.458L241.066,115.179L240.321,114.628L239.841,113.954L238.26,113.136L238.239,113.128L238.028,112.769L237.041,111.581L236.789,111.066L236.144,110.008L235.438,109.937L235.097,109.907L234.764,109.656L233.345,108.839L233.362,108.819L233.258,108.638L233.714,107.463L234.358,106.972L234.32,106.548L234.838,106.293L235.412,106.023L236.117,105.841L237.05,105.184L238.203,104.703L238.951,104.561L240.272,104.429L240.797,104.373L241.359,104.31L243.536,104.087L243.749,104.058L245.346,103.914L245.398,104.616L246.117,104.284L246.545,104.73L246.924,105.111L246.953,105.905L248.232,105.716L249.551,105.52L251.666,105.211L252.964,105.006L254.385,105.957L254.453,106.004L256.869,107.777L256.891,107.784L259.597,109.723L260.085,110.076L260.243,110.272L258.896,111.295L258.133,112.551L257.602,113.764L257.533,114.624L256.981,114.604L257.607,115.266L257.365,115.619L256.414,115.534L256.414,115.534L257.143,115.743L256.464,116.626L255.816,116.648L255.512,117.352Z" + }, + { + "fill": "rgb(187, 228, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.064; geo: [object Object]; name: South Dakota", + "shape": "M136.296,36.483L143.208,36.873L146.172,37.019L146.909,37.055L150.26,37.178L151.567,37.224L154.918,37.329L155.052,37.332L158.556,37.395L161.658,37.424L161.603,38.122L161.162,38.757L160.332,39.384L160.38,39.755L161.079,40.936L162.073,41.511L162.156,41.898L162.147,43.853L162.158,45.004L162.153,46.177L162.133,46.77L162.122,49.1L162.111,51.44L162.111,51.44L162.099,53.793L161.404,53.789L161.748,54.511L161.603,55.416L162.003,55.729L162.086,56.603L161.805,56.83L161.659,57.778L161.215,58.707L161.84,60.132L162.102,60.608L161.186,60.371L160.858,59.517L160.35,59.15L159.317,58.752L158.617,58.487L157.903,58.021L157.042,58.128L156.305,58.105L155.325,57.967L154.821,58.588L154.345,58.662L153.776,58.134L153.776,58.142L153.011,57.826L152.103,57.02L148.409,56.912L147.061,56.864L143.824,56.729L138.804,56.483L134.645,56.224L131.185,55.986L130.172,55.913L127.728,55.726L125.06,55.478L125.313,52.297L125.327,52.124L125.527,49.772L125.691,47.848L125.713,47.582L125.936,44.964L126.161,42.106L126.368,40.672L126.731,36.198L126.767,35.774L131.647,36.161L131.897,36.183Z" + }, + { + "fill": "rgb(194, 231, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.058; geo: [object Object]; name: South Dakota", + "shape": "M136.296,36.483L143.208,36.873L146.172,37.019L146.909,37.055L150.26,37.178L151.567,37.224L154.918,37.329L155.052,37.332L158.556,37.395L161.658,37.424L161.603,38.122L161.162,38.757L160.332,39.384L160.38,39.755L161.079,40.936L162.073,41.511L162.156,41.898L162.147,43.853L162.158,45.004L162.153,46.177L162.133,46.77L162.122,49.1L162.111,51.44L162.111,51.44L162.099,53.793L161.404,53.789L161.748,54.511L161.603,55.416L162.003,55.729L162.086,56.603L161.805,56.83L161.659,57.778L161.215,58.707L161.84,60.132L162.102,60.608L161.186,60.371L160.858,59.517L160.35,59.15L159.317,58.752L158.617,58.487L157.903,58.021L157.042,58.128L156.305,58.105L155.325,57.967L154.821,58.588L154.345,58.662L153.776,58.134L153.776,58.142L153.011,57.826L152.103,57.02L148.409,56.912L147.061,56.864L143.824,56.729L138.804,56.483L134.645,56.224L131.185,55.986L130.172,55.913L127.728,55.726L125.06,55.478L125.313,52.297L125.327,52.124L125.527,49.772L125.691,47.848L125.713,47.582L125.936,44.964L126.161,42.106L126.368,40.672L126.731,36.198L126.767,35.774L131.647,36.161L131.897,36.183Z" + }, + { + "fill": "rgb(117, 202, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.111; geo: [object Object]; name: South Dakota", + "shape": "M136.296,36.483L143.208,36.873L146.172,37.019L146.909,37.055L150.26,37.178L151.567,37.224L154.918,37.329L155.052,37.332L158.556,37.395L161.658,37.424L161.603,38.122L161.162,38.757L160.332,39.384L160.38,39.755L161.079,40.936L162.073,41.511L162.156,41.898L162.147,43.853L162.158,45.004L162.153,46.177L162.133,46.77L162.122,49.1L162.111,51.44L162.111,51.44L162.099,53.793L161.404,53.789L161.748,54.511L161.603,55.416L162.003,55.729L162.086,56.603L161.805,56.83L161.659,57.778L161.215,58.707L161.84,60.132L162.102,60.608L161.186,60.371L160.858,59.517L160.35,59.15L159.317,58.752L158.617,58.487L157.903,58.021L157.042,58.128L156.305,58.105L155.325,57.967L154.821,58.588L154.345,58.662L153.776,58.134L153.776,58.142L153.011,57.826L152.103,57.02L148.409,56.912L147.061,56.864L143.824,56.729L138.804,56.483L134.645,56.224L131.185,55.986L130.172,55.913L127.728,55.726L125.06,55.478L125.313,52.297L125.327,52.124L125.527,49.772L125.691,47.848L125.713,47.582L125.936,44.964L126.161,42.106L126.368,40.672L126.731,36.198L126.767,35.774L131.647,36.161L131.897,36.183Z" + }, + { + "fill": "rgb(113, 200, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.114; geo: [object Object]; name: South Dakota", + "shape": "M136.296,36.483L143.208,36.873L146.172,37.019L146.909,37.055L150.26,37.178L151.567,37.224L154.918,37.329L155.052,37.332L158.556,37.395L161.658,37.424L161.603,38.122L161.162,38.757L160.332,39.384L160.38,39.755L161.079,40.936L162.073,41.511L162.156,41.898L162.147,43.853L162.158,45.004L162.153,46.177L162.133,46.77L162.122,49.1L162.111,51.44L162.111,51.44L162.099,53.793L161.404,53.789L161.748,54.511L161.603,55.416L162.003,55.729L162.086,56.603L161.805,56.83L161.659,57.778L161.215,58.707L161.84,60.132L162.102,60.608L161.186,60.371L160.858,59.517L160.35,59.15L159.317,58.752L158.617,58.487L157.903,58.021L157.042,58.128L156.305,58.105L155.325,57.967L154.821,58.588L154.345,58.662L153.776,58.134L153.776,58.142L153.011,57.826L152.103,57.02L148.409,56.912L147.061,56.864L143.824,56.729L138.804,56.483L134.645,56.224L131.185,55.986L130.172,55.913L127.728,55.726L125.06,55.478L125.313,52.297L125.327,52.124L125.527,49.772L125.691,47.848L125.713,47.582L125.936,44.964L126.161,42.106L126.368,40.672L126.731,36.198L126.767,35.774L131.647,36.161L131.897,36.183Z" + }, + { + "fill": "rgb(58, 170, 193)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.16; geo: [object Object]; name: South Dakota", + "shape": "M136.296,36.483L143.208,36.873L146.172,37.019L146.909,37.055L150.26,37.178L151.567,37.224L154.918,37.329L155.052,37.332L158.556,37.395L161.658,37.424L161.603,38.122L161.162,38.757L160.332,39.384L160.38,39.755L161.079,40.936L162.073,41.511L162.156,41.898L162.147,43.853L162.158,45.004L162.153,46.177L162.133,46.77L162.122,49.1L162.111,51.44L162.111,51.44L162.099,53.793L161.404,53.789L161.748,54.511L161.603,55.416L162.003,55.729L162.086,56.603L161.805,56.83L161.659,57.778L161.215,58.707L161.84,60.132L162.102,60.608L161.186,60.371L160.858,59.517L160.35,59.15L159.317,58.752L158.617,58.487L157.903,58.021L157.042,58.128L156.305,58.105L155.325,57.967L154.821,58.588L154.345,58.662L153.776,58.134L153.776,58.142L153.011,57.826L152.103,57.02L148.409,56.912L147.061,56.864L143.824,56.729L138.804,56.483L134.645,56.224L131.185,55.986L130.172,55.913L127.728,55.726L125.06,55.478L125.313,52.297L125.327,52.124L125.527,49.772L125.691,47.848L125.713,47.582L125.936,44.964L126.161,42.106L126.368,40.672L126.731,36.198L126.767,35.774L131.647,36.161L131.897,36.183Z" + }, + { + "fill": "rgb(87, 189, 192)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.133; geo: [object Object]; name: South Dakota", + "shape": "M136.296,36.483L143.208,36.873L146.172,37.019L146.909,37.055L150.26,37.178L151.567,37.224L154.918,37.329L155.052,37.332L158.556,37.395L161.658,37.424L161.603,38.122L161.162,38.757L160.332,39.384L160.38,39.755L161.079,40.936L162.073,41.511L162.156,41.898L162.147,43.853L162.158,45.004L162.153,46.177L162.133,46.77L162.122,49.1L162.111,51.44L162.111,51.44L162.099,53.793L161.404,53.789L161.748,54.511L161.603,55.416L162.003,55.729L162.086,56.603L161.805,56.83L161.659,57.778L161.215,58.707L161.84,60.132L162.102,60.608L161.186,60.371L160.858,59.517L160.35,59.15L159.317,58.752L158.617,58.487L157.903,58.021L157.042,58.128L156.305,58.105L155.325,57.967L154.821,58.588L154.345,58.662L153.776,58.134L153.776,58.142L153.011,57.826L152.103,57.02L148.409,56.912L147.061,56.864L143.824,56.729L138.804,56.483L134.645,56.224L131.185,55.986L130.172,55.913L127.728,55.726L125.06,55.478L125.313,52.297L125.327,52.124L125.527,49.772L125.691,47.848L125.713,47.582L125.936,44.964L126.161,42.106L126.368,40.672L126.731,36.198L126.767,35.774L131.647,36.161L131.897,36.183Z" + }, + { + "fill": "rgb(35, 135, 185)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.199; geo: [object Object]; name: South Dakota", + "shape": "M136.296,36.483L143.208,36.873L146.172,37.019L146.909,37.055L150.26,37.178L151.567,37.224L154.918,37.329L155.052,37.332L158.556,37.395L161.658,37.424L161.603,38.122L161.162,38.757L160.332,39.384L160.38,39.755L161.079,40.936L162.073,41.511L162.156,41.898L162.147,43.853L162.158,45.004L162.153,46.177L162.133,46.77L162.122,49.1L162.111,51.44L162.111,51.44L162.099,53.793L161.404,53.789L161.748,54.511L161.603,55.416L162.003,55.729L162.086,56.603L161.805,56.83L161.659,57.778L161.215,58.707L161.84,60.132L162.102,60.608L161.186,60.371L160.858,59.517L160.35,59.15L159.317,58.752L158.617,58.487L157.903,58.021L157.042,58.128L156.305,58.105L155.325,57.967L154.821,58.588L154.345,58.662L153.776,58.134L153.776,58.142L153.011,57.826L152.103,57.02L148.409,56.912L147.061,56.864L143.824,56.729L138.804,56.483L134.645,56.224L131.185,55.986L130.172,55.913L127.728,55.726L125.06,55.478L125.313,52.297L125.327,52.124L125.527,49.772L125.691,47.848L125.713,47.582L125.936,44.964L126.161,42.106L126.368,40.672L126.731,36.198L126.767,35.774L131.647,36.161L131.897,36.183Z" + }, + { + "fill": "rgb(128, 206, 187)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.104; geo: [object Object]; name: South Dakota", + "shape": "M136.296,36.483L143.208,36.873L146.172,37.019L146.909,37.055L150.26,37.178L151.567,37.224L154.918,37.329L155.052,37.332L158.556,37.395L161.658,37.424L161.603,38.122L161.162,38.757L160.332,39.384L160.38,39.755L161.079,40.936L162.073,41.511L162.156,41.898L162.147,43.853L162.158,45.004L162.153,46.177L162.133,46.77L162.122,49.1L162.111,51.44L162.111,51.44L162.099,53.793L161.404,53.789L161.748,54.511L161.603,55.416L162.003,55.729L162.086,56.603L161.805,56.83L161.659,57.778L161.215,58.707L161.84,60.132L162.102,60.608L161.186,60.371L160.858,59.517L160.35,59.15L159.317,58.752L158.617,58.487L157.903,58.021L157.042,58.128L156.305,58.105L155.325,57.967L154.821,58.588L154.345,58.662L153.776,58.134L153.776,58.142L153.011,57.826L152.103,57.02L148.409,56.912L147.061,56.864L143.824,56.729L138.804,56.483L134.645,56.224L131.185,55.986L130.172,55.913L127.728,55.726L125.06,55.478L125.313,52.297L125.327,52.124L125.527,49.772L125.691,47.848L125.713,47.582L125.936,44.964L126.161,42.106L126.368,40.672L126.731,36.198L126.767,35.774L131.647,36.161L131.897,36.183Z" + }, + { + "fill": "rgb(223, 243, 182)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.028; geo: [object Object]; name: South Dakota", + "shape": "M136.296,36.483L143.208,36.873L146.172,37.019L146.909,37.055L150.26,37.178L151.567,37.224L154.918,37.329L155.052,37.332L158.556,37.395L161.658,37.424L161.603,38.122L161.162,38.757L160.332,39.384L160.38,39.755L161.079,40.936L162.073,41.511L162.156,41.898L162.147,43.853L162.158,45.004L162.153,46.177L162.133,46.77L162.122,49.1L162.111,51.44L162.111,51.44L162.099,53.793L161.404,53.789L161.748,54.511L161.603,55.416L162.003,55.729L162.086,56.603L161.805,56.83L161.659,57.778L161.215,58.707L161.84,60.132L162.102,60.608L161.186,60.371L160.858,59.517L160.35,59.15L159.317,58.752L158.617,58.487L157.903,58.021L157.042,58.128L156.305,58.105L155.325,57.967L154.821,58.588L154.345,58.662L153.776,58.134L153.776,58.142L153.011,57.826L152.103,57.02L148.409,56.912L147.061,56.864L143.824,56.729L138.804,56.483L134.645,56.224L131.185,55.986L130.172,55.913L127.728,55.726L125.06,55.478L125.313,52.297L125.327,52.124L125.527,49.772L125.691,47.848L125.713,47.582L125.936,44.964L126.161,42.106L126.368,40.672L126.731,36.198L126.767,35.774L131.647,36.161L131.897,36.183Z" + }, + { + "fill": "rgb(222, 242, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.03; geo: [object Object]; name: South Dakota", + "shape": "M136.296,36.483L143.208,36.873L146.172,37.019L146.909,37.055L150.26,37.178L151.567,37.224L154.918,37.329L155.052,37.332L158.556,37.395L161.658,37.424L161.603,38.122L161.162,38.757L160.332,39.384L160.38,39.755L161.079,40.936L162.073,41.511L162.156,41.898L162.147,43.853L162.158,45.004L162.153,46.177L162.133,46.77L162.122,49.1L162.111,51.44L162.111,51.44L162.099,53.793L161.404,53.789L161.748,54.511L161.603,55.416L162.003,55.729L162.086,56.603L161.805,56.83L161.659,57.778L161.215,58.707L161.84,60.132L162.102,60.608L161.186,60.371L160.858,59.517L160.35,59.15L159.317,58.752L158.617,58.487L157.903,58.021L157.042,58.128L156.305,58.105L155.325,57.967L154.821,58.588L154.345,58.662L153.776,58.134L153.776,58.142L153.011,57.826L152.103,57.02L148.409,56.912L147.061,56.864L143.824,56.729L138.804,56.483L134.645,56.224L131.185,55.986L130.172,55.913L127.728,55.726L125.06,55.478L125.313,52.297L125.327,52.124L125.527,49.772L125.691,47.848L125.713,47.582L125.936,44.964L126.161,42.106L126.368,40.672L126.731,36.198L126.767,35.774L131.647,36.161L131.897,36.183Z" + }, + { + "fill": "rgb(151, 214, 185)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.089; geo: [object Object]; name: Tennessee", + "shape": "M208.518,98.294L208.804,98.266L210.422,98.099L211.603,97.978L211.869,97.946L213.465,97.756L214.542,97.753L215.33,97.56L216.423,97.525L217.668,97.471L218.644,97.411L220.511,97.228L221.266,97.092L221.361,97.078L222.967,96.97L223.984,96.931L224.022,96.927L226.768,96.67L226.939,96.649L228.1,96.518L228.52,96.479L229.857,96.215L230.942,96.098L233.507,95.777L234.322,95.66L235.498,95.495L237.165,95.244L237.43,95.206L237.942,95.138L239.608,94.755L240.557,94.63L240.43,94.811L240.365,96.171L240.533,96.51L239.84,96.559L239.463,97.02L239.408,97.179L239.036,98.209L238.769,98.381L237.973,98.13L237.025,98.844L237.026,98.852L236.638,99.546L236.095,99.701L236.064,99.209L235.295,99.56L235.008,100.159L234.585,100.06L234.383,101.141L233.752,101.239L232.878,101.857L232.897,101.997L231.708,103.059L230.837,103.133L230.247,103.261L229.371,104.066L229.33,104.049L229.047,104.444L229.109,105.246L228.76,105.594L228.048,105.552L227.75,105.999L227.776,107.483L226.164,107.679L225.31,107.785L225.116,107.811L224.223,107.916L222.67,108.109L222.127,108.182L221.544,108.25L220.823,108.319L219.42,108.446L216.987,108.682L216.967,108.684L214.437,108.936L214.165,108.963L212.115,109.102L212.037,109.109L209.97,109.267L207.884,109.433L206.74,109.598L205.863,109.669L205.766,109.677L203.562,109.849L203.367,109.864L202.315,109.95L201.3,110.024L200.462,110.087L198.9,110.183L198.471,110.219L195.289,110.412L195.803,110.173L195.98,109.54L196.465,109.477L196.482,108.806L195.945,108.333L196.394,107.708L196.004,107.393L196.296,107.073L196.508,107.668L196.564,107.617L196.479,106.89L196.746,106.487L197.221,106.614L196.963,106.237L197.452,105.979L196.903,105.29L198.2,104.648L197.849,104.325L198.489,104.045L198.117,103.407L198.215,102.839L198.657,102.514L198.439,102.146L198.062,101.708L198.925,101.639L198.478,101.29L198.83,101.088L198.775,99.994L199.081,99.977L199.425,99.949L199.805,99.89L202.54,99.695L202.578,99.688L202.636,99.687L204.223,99.572L204.376,99.563L206.69,99.397L206.512,98.185Z" + }, + { + "fill": "rgb(184, 227, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.066; geo: [object Object]; name: Tennessee", + "shape": "M208.518,98.294L208.804,98.266L210.422,98.099L211.603,97.978L211.869,97.946L213.465,97.756L214.542,97.753L215.33,97.56L216.423,97.525L217.668,97.471L218.644,97.411L220.511,97.228L221.266,97.092L221.361,97.078L222.967,96.97L223.984,96.931L224.022,96.927L226.768,96.67L226.939,96.649L228.1,96.518L228.52,96.479L229.857,96.215L230.942,96.098L233.507,95.777L234.322,95.66L235.498,95.495L237.165,95.244L237.43,95.206L237.942,95.138L239.608,94.755L240.557,94.63L240.43,94.811L240.365,96.171L240.533,96.51L239.84,96.559L239.463,97.02L239.408,97.179L239.036,98.209L238.769,98.381L237.973,98.13L237.025,98.844L237.026,98.852L236.638,99.546L236.095,99.701L236.064,99.209L235.295,99.56L235.008,100.159L234.585,100.06L234.383,101.141L233.752,101.239L232.878,101.857L232.897,101.997L231.708,103.059L230.837,103.133L230.247,103.261L229.371,104.066L229.33,104.049L229.047,104.444L229.109,105.246L228.76,105.594L228.048,105.552L227.75,105.999L227.776,107.483L226.164,107.679L225.31,107.785L225.116,107.811L224.223,107.916L222.67,108.109L222.127,108.182L221.544,108.25L220.823,108.319L219.42,108.446L216.987,108.682L216.967,108.684L214.437,108.936L214.165,108.963L212.115,109.102L212.037,109.109L209.97,109.267L207.884,109.433L206.74,109.598L205.863,109.669L205.766,109.677L203.562,109.849L203.367,109.864L202.315,109.95L201.3,110.024L200.462,110.087L198.9,110.183L198.471,110.219L195.289,110.412L195.803,110.173L195.98,109.54L196.465,109.477L196.482,108.806L195.945,108.333L196.394,107.708L196.004,107.393L196.296,107.073L196.508,107.668L196.564,107.617L196.479,106.89L196.746,106.487L197.221,106.614L196.963,106.237L197.452,105.979L196.903,105.29L198.2,104.648L197.849,104.325L198.489,104.045L198.117,103.407L198.215,102.839L198.657,102.514L198.439,102.146L198.062,101.708L198.925,101.639L198.478,101.29L198.83,101.088L198.775,99.994L199.081,99.977L199.425,99.949L199.805,99.89L202.54,99.695L202.578,99.688L202.636,99.687L204.223,99.572L204.376,99.563L206.69,99.397L206.512,98.185Z" + }, + { + "fill": "rgb(91, 191, 192)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.13; geo: [object Object]; name: Tennessee", + "shape": "M208.518,98.294L208.804,98.266L210.422,98.099L211.603,97.978L211.869,97.946L213.465,97.756L214.542,97.753L215.33,97.56L216.423,97.525L217.668,97.471L218.644,97.411L220.511,97.228L221.266,97.092L221.361,97.078L222.967,96.97L223.984,96.931L224.022,96.927L226.768,96.67L226.939,96.649L228.1,96.518L228.52,96.479L229.857,96.215L230.942,96.098L233.507,95.777L234.322,95.66L235.498,95.495L237.165,95.244L237.43,95.206L237.942,95.138L239.608,94.755L240.557,94.63L240.43,94.811L240.365,96.171L240.533,96.51L239.84,96.559L239.463,97.02L239.408,97.179L239.036,98.209L238.769,98.381L237.973,98.13L237.025,98.844L237.026,98.852L236.638,99.546L236.095,99.701L236.064,99.209L235.295,99.56L235.008,100.159L234.585,100.06L234.383,101.141L233.752,101.239L232.878,101.857L232.897,101.997L231.708,103.059L230.837,103.133L230.247,103.261L229.371,104.066L229.33,104.049L229.047,104.444L229.109,105.246L228.76,105.594L228.048,105.552L227.75,105.999L227.776,107.483L226.164,107.679L225.31,107.785L225.116,107.811L224.223,107.916L222.67,108.109L222.127,108.182L221.544,108.25L220.823,108.319L219.42,108.446L216.987,108.682L216.967,108.684L214.437,108.936L214.165,108.963L212.115,109.102L212.037,109.109L209.97,109.267L207.884,109.433L206.74,109.598L205.863,109.669L205.766,109.677L203.562,109.849L203.367,109.864L202.315,109.95L201.3,110.024L200.462,110.087L198.9,110.183L198.471,110.219L195.289,110.412L195.803,110.173L195.98,109.54L196.465,109.477L196.482,108.806L195.945,108.333L196.394,107.708L196.004,107.393L196.296,107.073L196.508,107.668L196.564,107.617L196.479,106.89L196.746,106.487L197.221,106.614L196.963,106.237L197.452,105.979L196.903,105.29L198.2,104.648L197.849,104.325L198.489,104.045L198.117,103.407L198.215,102.839L198.657,102.514L198.439,102.146L198.062,101.708L198.925,101.639L198.478,101.29L198.83,101.088L198.775,99.994L199.081,99.977L199.425,99.949L199.805,99.89L202.54,99.695L202.578,99.688L202.636,99.687L204.223,99.572L204.376,99.563L206.69,99.397L206.512,98.185Z" + }, + { + "fill": "rgb(101, 195, 190)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.122; geo: [object Object]; name: Tennessee", + "shape": "M208.518,98.294L208.804,98.266L210.422,98.099L211.603,97.978L211.869,97.946L213.465,97.756L214.542,97.753L215.33,97.56L216.423,97.525L217.668,97.471L218.644,97.411L220.511,97.228L221.266,97.092L221.361,97.078L222.967,96.97L223.984,96.931L224.022,96.927L226.768,96.67L226.939,96.649L228.1,96.518L228.52,96.479L229.857,96.215L230.942,96.098L233.507,95.777L234.322,95.66L235.498,95.495L237.165,95.244L237.43,95.206L237.942,95.138L239.608,94.755L240.557,94.63L240.43,94.811L240.365,96.171L240.533,96.51L239.84,96.559L239.463,97.02L239.408,97.179L239.036,98.209L238.769,98.381L237.973,98.13L237.025,98.844L237.026,98.852L236.638,99.546L236.095,99.701L236.064,99.209L235.295,99.56L235.008,100.159L234.585,100.06L234.383,101.141L233.752,101.239L232.878,101.857L232.897,101.997L231.708,103.059L230.837,103.133L230.247,103.261L229.371,104.066L229.33,104.049L229.047,104.444L229.109,105.246L228.76,105.594L228.048,105.552L227.75,105.999L227.776,107.483L226.164,107.679L225.31,107.785L225.116,107.811L224.223,107.916L222.67,108.109L222.127,108.182L221.544,108.25L220.823,108.319L219.42,108.446L216.987,108.682L216.967,108.684L214.437,108.936L214.165,108.963L212.115,109.102L212.037,109.109L209.97,109.267L207.884,109.433L206.74,109.598L205.863,109.669L205.766,109.677L203.562,109.849L203.367,109.864L202.315,109.95L201.3,110.024L200.462,110.087L198.9,110.183L198.471,110.219L195.289,110.412L195.803,110.173L195.98,109.54L196.465,109.477L196.482,108.806L195.945,108.333L196.394,107.708L196.004,107.393L196.296,107.073L196.508,107.668L196.564,107.617L196.479,106.89L196.746,106.487L197.221,106.614L196.963,106.237L197.452,105.979L196.903,105.29L198.2,104.648L197.849,104.325L198.489,104.045L198.117,103.407L198.215,102.839L198.657,102.514L198.439,102.146L198.062,101.708L198.925,101.639L198.478,101.29L198.83,101.088L198.775,99.994L199.081,99.977L199.425,99.949L199.805,99.89L202.54,99.695L202.578,99.688L202.636,99.687L204.223,99.572L204.376,99.563L206.69,99.397L206.512,98.185Z" + }, + { + "fill": "rgb(68, 179, 194)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.149; geo: [object Object]; name: Tennessee", + "shape": "M208.518,98.294L208.804,98.266L210.422,98.099L211.603,97.978L211.869,97.946L213.465,97.756L214.542,97.753L215.33,97.56L216.423,97.525L217.668,97.471L218.644,97.411L220.511,97.228L221.266,97.092L221.361,97.078L222.967,96.97L223.984,96.931L224.022,96.927L226.768,96.67L226.939,96.649L228.1,96.518L228.52,96.479L229.857,96.215L230.942,96.098L233.507,95.777L234.322,95.66L235.498,95.495L237.165,95.244L237.43,95.206L237.942,95.138L239.608,94.755L240.557,94.63L240.43,94.811L240.365,96.171L240.533,96.51L239.84,96.559L239.463,97.02L239.408,97.179L239.036,98.209L238.769,98.381L237.973,98.13L237.025,98.844L237.026,98.852L236.638,99.546L236.095,99.701L236.064,99.209L235.295,99.56L235.008,100.159L234.585,100.06L234.383,101.141L233.752,101.239L232.878,101.857L232.897,101.997L231.708,103.059L230.837,103.133L230.247,103.261L229.371,104.066L229.33,104.049L229.047,104.444L229.109,105.246L228.76,105.594L228.048,105.552L227.75,105.999L227.776,107.483L226.164,107.679L225.31,107.785L225.116,107.811L224.223,107.916L222.67,108.109L222.127,108.182L221.544,108.25L220.823,108.319L219.42,108.446L216.987,108.682L216.967,108.684L214.437,108.936L214.165,108.963L212.115,109.102L212.037,109.109L209.97,109.267L207.884,109.433L206.74,109.598L205.863,109.669L205.766,109.677L203.562,109.849L203.367,109.864L202.315,109.95L201.3,110.024L200.462,110.087L198.9,110.183L198.471,110.219L195.289,110.412L195.803,110.173L195.98,109.54L196.465,109.477L196.482,108.806L195.945,108.333L196.394,107.708L196.004,107.393L196.296,107.073L196.508,107.668L196.564,107.617L196.479,106.89L196.746,106.487L197.221,106.614L196.963,106.237L197.452,105.979L196.903,105.29L198.2,104.648L197.849,104.325L198.489,104.045L198.117,103.407L198.215,102.839L198.657,102.514L198.439,102.146L198.062,101.708L198.925,101.639L198.478,101.29L198.83,101.088L198.775,99.994L199.081,99.977L199.425,99.949L199.805,99.89L202.54,99.695L202.578,99.688L202.636,99.687L204.223,99.572L204.376,99.563L206.69,99.397L206.512,98.185Z" + }, + { + "fill": "rgb(122, 203, 188)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.108; geo: [object Object]; name: Tennessee", + "shape": "M208.518,98.294L208.804,98.266L210.422,98.099L211.603,97.978L211.869,97.946L213.465,97.756L214.542,97.753L215.33,97.56L216.423,97.525L217.668,97.471L218.644,97.411L220.511,97.228L221.266,97.092L221.361,97.078L222.967,96.97L223.984,96.931L224.022,96.927L226.768,96.67L226.939,96.649L228.1,96.518L228.52,96.479L229.857,96.215L230.942,96.098L233.507,95.777L234.322,95.66L235.498,95.495L237.165,95.244L237.43,95.206L237.942,95.138L239.608,94.755L240.557,94.63L240.43,94.811L240.365,96.171L240.533,96.51L239.84,96.559L239.463,97.02L239.408,97.179L239.036,98.209L238.769,98.381L237.973,98.13L237.025,98.844L237.026,98.852L236.638,99.546L236.095,99.701L236.064,99.209L235.295,99.56L235.008,100.159L234.585,100.06L234.383,101.141L233.752,101.239L232.878,101.857L232.897,101.997L231.708,103.059L230.837,103.133L230.247,103.261L229.371,104.066L229.33,104.049L229.047,104.444L229.109,105.246L228.76,105.594L228.048,105.552L227.75,105.999L227.776,107.483L226.164,107.679L225.31,107.785L225.116,107.811L224.223,107.916L222.67,108.109L222.127,108.182L221.544,108.25L220.823,108.319L219.42,108.446L216.987,108.682L216.967,108.684L214.437,108.936L214.165,108.963L212.115,109.102L212.037,109.109L209.97,109.267L207.884,109.433L206.74,109.598L205.863,109.669L205.766,109.677L203.562,109.849L203.367,109.864L202.315,109.95L201.3,110.024L200.462,110.087L198.9,110.183L198.471,110.219L195.289,110.412L195.803,110.173L195.98,109.54L196.465,109.477L196.482,108.806L195.945,108.333L196.394,107.708L196.004,107.393L196.296,107.073L196.508,107.668L196.564,107.617L196.479,106.89L196.746,106.487L197.221,106.614L196.963,106.237L197.452,105.979L196.903,105.29L198.2,104.648L197.849,104.325L198.489,104.045L198.117,103.407L198.215,102.839L198.657,102.514L198.439,102.146L198.062,101.708L198.925,101.639L198.478,101.29L198.83,101.088L198.775,99.994L199.081,99.977L199.425,99.949L199.805,99.89L202.54,99.695L202.578,99.688L202.636,99.687L204.223,99.572L204.376,99.563L206.69,99.397L206.512,98.185Z" + }, + { + "fill": "rgb(42, 154, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.18; geo: [object Object]; name: Tennessee", + "shape": "M208.518,98.294L208.804,98.266L210.422,98.099L211.603,97.978L211.869,97.946L213.465,97.756L214.542,97.753L215.33,97.56L216.423,97.525L217.668,97.471L218.644,97.411L220.511,97.228L221.266,97.092L221.361,97.078L222.967,96.97L223.984,96.931L224.022,96.927L226.768,96.67L226.939,96.649L228.1,96.518L228.52,96.479L229.857,96.215L230.942,96.098L233.507,95.777L234.322,95.66L235.498,95.495L237.165,95.244L237.43,95.206L237.942,95.138L239.608,94.755L240.557,94.63L240.43,94.811L240.365,96.171L240.533,96.51L239.84,96.559L239.463,97.02L239.408,97.179L239.036,98.209L238.769,98.381L237.973,98.13L237.025,98.844L237.026,98.852L236.638,99.546L236.095,99.701L236.064,99.209L235.295,99.56L235.008,100.159L234.585,100.06L234.383,101.141L233.752,101.239L232.878,101.857L232.897,101.997L231.708,103.059L230.837,103.133L230.247,103.261L229.371,104.066L229.33,104.049L229.047,104.444L229.109,105.246L228.76,105.594L228.048,105.552L227.75,105.999L227.776,107.483L226.164,107.679L225.31,107.785L225.116,107.811L224.223,107.916L222.67,108.109L222.127,108.182L221.544,108.25L220.823,108.319L219.42,108.446L216.987,108.682L216.967,108.684L214.437,108.936L214.165,108.963L212.115,109.102L212.037,109.109L209.97,109.267L207.884,109.433L206.74,109.598L205.863,109.669L205.766,109.677L203.562,109.849L203.367,109.864L202.315,109.95L201.3,110.024L200.462,110.087L198.9,110.183L198.471,110.219L195.289,110.412L195.803,110.173L195.98,109.54L196.465,109.477L196.482,108.806L195.945,108.333L196.394,107.708L196.004,107.393L196.296,107.073L196.508,107.668L196.564,107.617L196.479,106.89L196.746,106.487L197.221,106.614L196.963,106.237L197.452,105.979L196.903,105.29L198.2,104.648L197.849,104.325L198.489,104.045L198.117,103.407L198.215,102.839L198.657,102.514L198.439,102.146L198.062,101.708L198.925,101.639L198.478,101.29L198.83,101.088L198.775,99.994L199.081,99.977L199.425,99.949L199.805,99.89L202.54,99.695L202.578,99.688L202.636,99.687L204.223,99.572L204.376,99.563L206.69,99.397L206.512,98.185Z" + }, + { + "fill": "rgb(139, 210, 186)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.097; geo: [object Object]; name: Tennessee", + "shape": "M208.518,98.294L208.804,98.266L210.422,98.099L211.603,97.978L211.869,97.946L213.465,97.756L214.542,97.753L215.33,97.56L216.423,97.525L217.668,97.471L218.644,97.411L220.511,97.228L221.266,97.092L221.361,97.078L222.967,96.97L223.984,96.931L224.022,96.927L226.768,96.67L226.939,96.649L228.1,96.518L228.52,96.479L229.857,96.215L230.942,96.098L233.507,95.777L234.322,95.66L235.498,95.495L237.165,95.244L237.43,95.206L237.942,95.138L239.608,94.755L240.557,94.63L240.43,94.811L240.365,96.171L240.533,96.51L239.84,96.559L239.463,97.02L239.408,97.179L239.036,98.209L238.769,98.381L237.973,98.13L237.025,98.844L237.026,98.852L236.638,99.546L236.095,99.701L236.064,99.209L235.295,99.56L235.008,100.159L234.585,100.06L234.383,101.141L233.752,101.239L232.878,101.857L232.897,101.997L231.708,103.059L230.837,103.133L230.247,103.261L229.371,104.066L229.33,104.049L229.047,104.444L229.109,105.246L228.76,105.594L228.048,105.552L227.75,105.999L227.776,107.483L226.164,107.679L225.31,107.785L225.116,107.811L224.223,107.916L222.67,108.109L222.127,108.182L221.544,108.25L220.823,108.319L219.42,108.446L216.987,108.682L216.967,108.684L214.437,108.936L214.165,108.963L212.115,109.102L212.037,109.109L209.97,109.267L207.884,109.433L206.74,109.598L205.863,109.669L205.766,109.677L203.562,109.849L203.367,109.864L202.315,109.95L201.3,110.024L200.462,110.087L198.9,110.183L198.471,110.219L195.289,110.412L195.803,110.173L195.98,109.54L196.465,109.477L196.482,108.806L195.945,108.333L196.394,107.708L196.004,107.393L196.296,107.073L196.508,107.668L196.564,107.617L196.479,106.89L196.746,106.487L197.221,106.614L196.963,106.237L197.452,105.979L196.903,105.29L198.2,104.648L197.849,104.325L198.489,104.045L198.117,103.407L198.215,102.839L198.657,102.514L198.439,102.146L198.062,101.708L198.925,101.639L198.478,101.29L198.83,101.088L198.775,99.994L199.081,99.977L199.425,99.949L199.805,99.89L202.54,99.695L202.578,99.688L202.636,99.687L204.223,99.572L204.376,99.563L206.69,99.397L206.512,98.185Z" + }, + { + "fill": "rgb(222, 242, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.03; geo: [object Object]; name: Tennessee", + "shape": "M208.518,98.294L208.804,98.266L210.422,98.099L211.603,97.978L211.869,97.946L213.465,97.756L214.542,97.753L215.33,97.56L216.423,97.525L217.668,97.471L218.644,97.411L220.511,97.228L221.266,97.092L221.361,97.078L222.967,96.97L223.984,96.931L224.022,96.927L226.768,96.67L226.939,96.649L228.1,96.518L228.52,96.479L229.857,96.215L230.942,96.098L233.507,95.777L234.322,95.66L235.498,95.495L237.165,95.244L237.43,95.206L237.942,95.138L239.608,94.755L240.557,94.63L240.43,94.811L240.365,96.171L240.533,96.51L239.84,96.559L239.463,97.02L239.408,97.179L239.036,98.209L238.769,98.381L237.973,98.13L237.025,98.844L237.026,98.852L236.638,99.546L236.095,99.701L236.064,99.209L235.295,99.56L235.008,100.159L234.585,100.06L234.383,101.141L233.752,101.239L232.878,101.857L232.897,101.997L231.708,103.059L230.837,103.133L230.247,103.261L229.371,104.066L229.33,104.049L229.047,104.444L229.109,105.246L228.76,105.594L228.048,105.552L227.75,105.999L227.776,107.483L226.164,107.679L225.31,107.785L225.116,107.811L224.223,107.916L222.67,108.109L222.127,108.182L221.544,108.25L220.823,108.319L219.42,108.446L216.987,108.682L216.967,108.684L214.437,108.936L214.165,108.963L212.115,109.102L212.037,109.109L209.97,109.267L207.884,109.433L206.74,109.598L205.863,109.669L205.766,109.677L203.562,109.849L203.367,109.864L202.315,109.95L201.3,110.024L200.462,110.087L198.9,110.183L198.471,110.219L195.289,110.412L195.803,110.173L195.98,109.54L196.465,109.477L196.482,108.806L195.945,108.333L196.394,107.708L196.004,107.393L196.296,107.073L196.508,107.668L196.564,107.617L196.479,106.89L196.746,106.487L197.221,106.614L196.963,106.237L197.452,105.979L196.903,105.29L198.2,104.648L197.849,104.325L198.489,104.045L198.117,103.407L198.215,102.839L198.657,102.514L198.439,102.146L198.062,101.708L198.925,101.639L198.478,101.29L198.83,101.088L198.775,99.994L199.081,99.977L199.425,99.949L199.805,99.89L202.54,99.695L202.578,99.688L202.636,99.687L204.223,99.572L204.376,99.563L206.69,99.397L206.512,98.185Z" + }, + { + "fill": "rgb(223, 242, 182)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.029; geo: [object Object]; name: Tennessee", + "shape": "M208.518,98.294L208.804,98.266L210.422,98.099L211.603,97.978L211.869,97.946L213.465,97.756L214.542,97.753L215.33,97.56L216.423,97.525L217.668,97.471L218.644,97.411L220.511,97.228L221.266,97.092L221.361,97.078L222.967,96.97L223.984,96.931L224.022,96.927L226.768,96.67L226.939,96.649L228.1,96.518L228.52,96.479L229.857,96.215L230.942,96.098L233.507,95.777L234.322,95.66L235.498,95.495L237.165,95.244L237.43,95.206L237.942,95.138L239.608,94.755L240.557,94.63L240.43,94.811L240.365,96.171L240.533,96.51L239.84,96.559L239.463,97.02L239.408,97.179L239.036,98.209L238.769,98.381L237.973,98.13L237.025,98.844L237.026,98.852L236.638,99.546L236.095,99.701L236.064,99.209L235.295,99.56L235.008,100.159L234.585,100.06L234.383,101.141L233.752,101.239L232.878,101.857L232.897,101.997L231.708,103.059L230.837,103.133L230.247,103.261L229.371,104.066L229.33,104.049L229.047,104.444L229.109,105.246L228.76,105.594L228.048,105.552L227.75,105.999L227.776,107.483L226.164,107.679L225.31,107.785L225.116,107.811L224.223,107.916L222.67,108.109L222.127,108.182L221.544,108.25L220.823,108.319L219.42,108.446L216.987,108.682L216.967,108.684L214.437,108.936L214.165,108.963L212.115,109.102L212.037,109.109L209.97,109.267L207.884,109.433L206.74,109.598L205.863,109.669L205.766,109.677L203.562,109.849L203.367,109.864L202.315,109.95L201.3,110.024L200.462,110.087L198.9,110.183L198.471,110.219L195.289,110.412L195.803,110.173L195.98,109.54L196.465,109.477L196.482,108.806L195.945,108.333L196.394,107.708L196.004,107.393L196.296,107.073L196.508,107.668L196.564,107.617L196.479,106.89L196.746,106.487L197.221,106.614L196.963,106.237L197.452,105.979L196.903,105.29L198.2,104.648L197.849,104.325L198.489,104.045L198.117,103.407L198.215,102.839L198.657,102.514L198.439,102.146L198.062,101.708L198.925,101.639L198.478,101.29L198.83,101.088L198.775,99.994L199.081,99.977L199.425,99.949L199.805,99.89L202.54,99.695L202.578,99.688L202.636,99.687L204.223,99.572L204.376,99.563L206.69,99.397L206.512,98.185Z" + }, + { + "fill": "rgb(170, 221, 183)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.076; geo: [object Object]; name: Texas", + "shape": "M156.398,167.387L156.524,167.721L156.711,168.343L156.646,168.295L156.238,167.982L156.394,167.72L156.249,167.217ZM156.398,167.387L156.102,166.889L155.988,165.799L156.054,165.736ZM156.054,165.736L155.925,165.655L156.065,163.422L156.133,163.193L156.141,162.616L156.848,161.177L156.998,161.215L156.219,163.195L156.057,163.988ZM157.332,160.233L157.808,159.797L157.13,160.959ZM158.068,159.463L158.137,158.99L159.066,157.929L159.214,158.009ZM160.759,156.516L161.675,156.154L159.257,157.974L159.301,157.813L159.345,157.68L159.584,157.168L160.095,157.108ZM169.448,151.137L170.885,149.757L171.764,149.461ZM170.717,149.694L169.82,150.37L169.275,150.62L168.842,151.636L169.449,151.241L167.857,152.625L167.204,152.902L166.297,153.435L165.536,153.434L164.669,153.773L164.521,154.248L166.023,153.562L165.072,154.158L164.034,154.521L164.437,154.047L163.335,154.38L162.933,154.156L163.231,153.654L162.383,154.126L161.981,153.912L161.771,153.692L161.725,154.415L161.049,154.131L160.903,153.731L160.924,153.702L160.903,153.731L160.438,153.598L160.417,153.602L160.396,153.591L160.416,153.727L160.644,154.542L161.194,154.718L161.89,155.372L160.484,156.245L159.662,155.419L159.214,155.66L159.612,156.278L159.567,156.568L159.567,156.604L159.564,156.906L159.5,156.938L159.307,157.155L158.749,157.581L158.265,157.044L156.912,157.962L157.401,158.065L157.246,158.555L157.245,158.588L158.131,157.607L158.189,158.175L157.539,159.04L157.539,159.033L157.539,159.04L157.495,159.097L157.233,159.561L156.319,159.154L155.417,159.431L156.08,159.459L156.368,160.263L156.816,160.409L156.375,161.311L155.858,162.881L155.251,163.205L155.479,162.384L154.649,163.124L153.974,162.373L154.327,163.111L153.724,163.143L153.638,163.116L153.724,163.143L155.031,163.503L155.766,163.288L155.579,164.267L155.394,165.045L154.938,165.203L154.859,166.09L155.433,166.704L155.57,167.708L155.67,168.274L155.662,168.764L155.507,168.969L155.876,168.975L156.479,171.063L156.934,171.298L156.664,171.923L157.257,171.662L157.318,172.024L156.509,172.031L155.915,172.33L155.93,172.773L154.65,172.132L154.289,171.497L153.569,171.495L152.985,171.191L151.716,171.326L150.607,171.118L150.353,170.794L148.612,169.838L148.129,169.975L147.306,169.064L146.738,169.151L146.291,168.815L145.617,168.823L145.134,167.64L144.611,165.815L143.573,164.592L143.739,163.587L143.589,162.962L143.306,162.471L143.493,161.466L142.845,160.433L142.08,160.249L141.065,158.866L140.927,158.073L140.63,158.01L140.058,156.929L139.328,156.563L138.863,155.999L138.342,153.917L137.773,153.397L137.756,152.849L136.957,151.453L136.898,150.498L136.317,149.882L136.236,149.409L134.981,148.464L134.76,147.879L133.631,147.402L133.691,146.691L132.584,145.542L132.072,145.707L130.788,145.483L128.729,145.278L128.378,144.89L127.559,144.623L127.152,145.387L126.412,145.185L125.455,145.404L124.055,147.945L123.988,148.872L123.322,149.033L122.316,150.344L120.714,149.726L120.018,148.916L119.514,148.883L118.712,148.106L117.36,147.636L116.629,147.071L116.135,146.203L115.68,146.116L114.589,144.916L114.501,144.27L113.958,143.33L113.886,142.288L114.06,141.528L113.702,140.662L113.198,140.028L113.212,139.209L112.669,138.364L111.426,137.05L110.408,136.653L110.434,136.39L109.58,135.618L109.398,134.968L108.474,134.31L108.028,133.435L107.364,132.703L106.238,132.059L105.457,130.173L104.646,129.723L104.064,128.882L104.302,128.22L105.656,128.359L107.799,128.582L113.883,129.208L114.268,129.244L118.923,129.658L119.166,129.679L120.624,129.8L122.853,129.976L124.332,130.089L124.376,129.5L124.594,126.574L124.813,123.635L125.068,120.752L125.179,119.523L125.346,117.81L125.605,114.596L125.61,114.524L125.827,111.597L125.931,110.198L126.046,108.654L126.285,105.693L126.344,104.899L126.502,102.767L126.706,99.762L126.916,99.777L131.392,100.088L132.1,100.133L134.281,100.271L137.153,100.433L137.823,100.468L140.025,100.578L142.917,100.709L142.81,103.715L142.76,104.896L142.686,106.669L142.63,107.995L142.562,109.614L142.518,110.638L142.437,112.566L142.404,113.823L142.404,113.823L142.782,113.73L143.234,114.225L144.007,115.12L144.667,114.877L145.213,115.046L145.213,115.05L145.602,115.213L145.78,114.641L146.657,115.497L146.728,116.324L148.051,116.385L149.1,117.012L149.916,116.817L150.611,117.475L150.932,117.342L151.28,116.853L152.341,117.161L152.524,116.973L152.799,117.931L153.549,118.067L153.358,118.702L153.967,118.99L154.976,118.079L155.66,118.676L156.098,118.577L156.248,119.153L156.703,119.236L157.625,118.606L157.691,119.656L158.286,119.75L158.274,119.122L158.651,119.083L159.075,118.394L159.135,118.355L159.486,119.03L160.02,119.176L160.679,118.647L161.035,118.773L160.815,119.113L162.201,119.922L163.176,119.751L163.832,119.084L165.143,119.156L165.618,118.926L166.708,118.523L166.769,118.817L168.099,118.882L168.61,118.308L168.948,118.479L169.548,118.967L170.005,118.984L170.59,119.758L171.249,120.033L172.688,120.451L173.256,121.081L174.087,120.754L175.148,120.991L175.207,122.884L175.242,124.588L175.261,125.52L175.287,126.788L175.329,128.817L175.356,130.139L175.529,131.591L176.321,132.49L176.832,133.438L176.626,134.225L177.576,135.48L177.509,136.115L177.926,136.376L178.023,136.948L178.288,136.884L178.242,137.478L178.582,137.921L178.215,138.064L178.322,139.009L177.667,140.883L177.324,141.241L177.589,141.929L177.346,142.176L177.192,142.664L177.558,143.229L177.506,144.526L176.764,145.795L176.354,146.144L176.874,146.954L175.685,147.103L173.9,147.894L173.796,147.939L171.445,149.17L172.003,148.525L173.23,147.93L172.789,147.84L171.558,148.174L171.894,146.688L171.245,146.581L170.876,147.163L170.541,147.134L169.53,146.449L170.227,147.163L170.027,148.034L170.659,148.373Z" + }, + { + "fill": "rgb(198, 233, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.054; geo: [object Object]; name: Texas", + "shape": "M156.398,167.387L156.524,167.721L156.711,168.343L156.646,168.295L156.238,167.982L156.394,167.72L156.249,167.217ZM156.398,167.387L156.102,166.889L155.988,165.799L156.054,165.736ZM156.054,165.736L155.925,165.655L156.065,163.422L156.133,163.193L156.141,162.616L156.848,161.177L156.998,161.215L156.219,163.195L156.057,163.988ZM157.332,160.233L157.808,159.797L157.13,160.959ZM158.068,159.463L158.137,158.99L159.066,157.929L159.214,158.009ZM160.759,156.516L161.675,156.154L159.257,157.974L159.301,157.813L159.345,157.68L159.584,157.168L160.095,157.108ZM169.448,151.137L170.885,149.757L171.764,149.461ZM170.717,149.694L169.82,150.37L169.275,150.62L168.842,151.636L169.449,151.241L167.857,152.625L167.204,152.902L166.297,153.435L165.536,153.434L164.669,153.773L164.521,154.248L166.023,153.562L165.072,154.158L164.034,154.521L164.437,154.047L163.335,154.38L162.933,154.156L163.231,153.654L162.383,154.126L161.981,153.912L161.771,153.692L161.725,154.415L161.049,154.131L160.903,153.731L160.924,153.702L160.903,153.731L160.438,153.598L160.417,153.602L160.396,153.591L160.416,153.727L160.644,154.542L161.194,154.718L161.89,155.372L160.484,156.245L159.662,155.419L159.214,155.66L159.612,156.278L159.567,156.568L159.567,156.604L159.564,156.906L159.5,156.938L159.307,157.155L158.749,157.581L158.265,157.044L156.912,157.962L157.401,158.065L157.246,158.555L157.245,158.588L158.131,157.607L158.189,158.175L157.539,159.04L157.539,159.033L157.539,159.04L157.495,159.097L157.233,159.561L156.319,159.154L155.417,159.431L156.08,159.459L156.368,160.263L156.816,160.409L156.375,161.311L155.858,162.881L155.251,163.205L155.479,162.384L154.649,163.124L153.974,162.373L154.327,163.111L153.724,163.143L153.638,163.116L153.724,163.143L155.031,163.503L155.766,163.288L155.579,164.267L155.394,165.045L154.938,165.203L154.859,166.09L155.433,166.704L155.57,167.708L155.67,168.274L155.662,168.764L155.507,168.969L155.876,168.975L156.479,171.063L156.934,171.298L156.664,171.923L157.257,171.662L157.318,172.024L156.509,172.031L155.915,172.33L155.93,172.773L154.65,172.132L154.289,171.497L153.569,171.495L152.985,171.191L151.716,171.326L150.607,171.118L150.353,170.794L148.612,169.838L148.129,169.975L147.306,169.064L146.738,169.151L146.291,168.815L145.617,168.823L145.134,167.64L144.611,165.815L143.573,164.592L143.739,163.587L143.589,162.962L143.306,162.471L143.493,161.466L142.845,160.433L142.08,160.249L141.065,158.866L140.927,158.073L140.63,158.01L140.058,156.929L139.328,156.563L138.863,155.999L138.342,153.917L137.773,153.397L137.756,152.849L136.957,151.453L136.898,150.498L136.317,149.882L136.236,149.409L134.981,148.464L134.76,147.879L133.631,147.402L133.691,146.691L132.584,145.542L132.072,145.707L130.788,145.483L128.729,145.278L128.378,144.89L127.559,144.623L127.152,145.387L126.412,145.185L125.455,145.404L124.055,147.945L123.988,148.872L123.322,149.033L122.316,150.344L120.714,149.726L120.018,148.916L119.514,148.883L118.712,148.106L117.36,147.636L116.629,147.071L116.135,146.203L115.68,146.116L114.589,144.916L114.501,144.27L113.958,143.33L113.886,142.288L114.06,141.528L113.702,140.662L113.198,140.028L113.212,139.209L112.669,138.364L111.426,137.05L110.408,136.653L110.434,136.39L109.58,135.618L109.398,134.968L108.474,134.31L108.028,133.435L107.364,132.703L106.238,132.059L105.457,130.173L104.646,129.723L104.064,128.882L104.302,128.22L105.656,128.359L107.799,128.582L113.883,129.208L114.268,129.244L118.923,129.658L119.166,129.679L120.624,129.8L122.853,129.976L124.332,130.089L124.376,129.5L124.594,126.574L124.813,123.635L125.068,120.752L125.179,119.523L125.346,117.81L125.605,114.596L125.61,114.524L125.827,111.597L125.931,110.198L126.046,108.654L126.285,105.693L126.344,104.899L126.502,102.767L126.706,99.762L126.916,99.777L131.392,100.088L132.1,100.133L134.281,100.271L137.153,100.433L137.823,100.468L140.025,100.578L142.917,100.709L142.81,103.715L142.76,104.896L142.686,106.669L142.63,107.995L142.562,109.614L142.518,110.638L142.437,112.566L142.404,113.823L142.404,113.823L142.782,113.73L143.234,114.225L144.007,115.12L144.667,114.877L145.213,115.046L145.213,115.05L145.602,115.213L145.78,114.641L146.657,115.497L146.728,116.324L148.051,116.385L149.1,117.012L149.916,116.817L150.611,117.475L150.932,117.342L151.28,116.853L152.341,117.161L152.524,116.973L152.799,117.931L153.549,118.067L153.358,118.702L153.967,118.99L154.976,118.079L155.66,118.676L156.098,118.577L156.248,119.153L156.703,119.236L157.625,118.606L157.691,119.656L158.286,119.75L158.274,119.122L158.651,119.083L159.075,118.394L159.135,118.355L159.486,119.03L160.02,119.176L160.679,118.647L161.035,118.773L160.815,119.113L162.201,119.922L163.176,119.751L163.832,119.084L165.143,119.156L165.618,118.926L166.708,118.523L166.769,118.817L168.099,118.882L168.61,118.308L168.948,118.479L169.548,118.967L170.005,118.984L170.59,119.758L171.249,120.033L172.688,120.451L173.256,121.081L174.087,120.754L175.148,120.991L175.207,122.884L175.242,124.588L175.261,125.52L175.287,126.788L175.329,128.817L175.356,130.139L175.529,131.591L176.321,132.49L176.832,133.438L176.626,134.225L177.576,135.48L177.509,136.115L177.926,136.376L178.023,136.948L178.288,136.884L178.242,137.478L178.582,137.921L178.215,138.064L178.322,139.009L177.667,140.883L177.324,141.241L177.589,141.929L177.346,142.176L177.192,142.664L177.558,143.229L177.506,144.526L176.764,145.795L176.354,146.144L176.874,146.954L175.685,147.103L173.9,147.894L173.796,147.939L171.445,149.17L172.003,148.525L173.23,147.93L172.789,147.84L171.558,148.174L171.894,146.688L171.245,146.581L170.876,147.163L170.541,147.134L169.53,146.449L170.227,147.163L170.027,148.034L170.659,148.373Z" + }, + { + "fill": "rgb(117, 202, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.111; geo: [object Object]; name: Texas", + "shape": "M156.398,167.387L156.524,167.721L156.711,168.343L156.646,168.295L156.238,167.982L156.394,167.72L156.249,167.217ZM156.398,167.387L156.102,166.889L155.988,165.799L156.054,165.736ZM156.054,165.736L155.925,165.655L156.065,163.422L156.133,163.193L156.141,162.616L156.848,161.177L156.998,161.215L156.219,163.195L156.057,163.988ZM157.332,160.233L157.808,159.797L157.13,160.959ZM158.068,159.463L158.137,158.99L159.066,157.929L159.214,158.009ZM160.759,156.516L161.675,156.154L159.257,157.974L159.301,157.813L159.345,157.68L159.584,157.168L160.095,157.108ZM169.448,151.137L170.885,149.757L171.764,149.461ZM170.717,149.694L169.82,150.37L169.275,150.62L168.842,151.636L169.449,151.241L167.857,152.625L167.204,152.902L166.297,153.435L165.536,153.434L164.669,153.773L164.521,154.248L166.023,153.562L165.072,154.158L164.034,154.521L164.437,154.047L163.335,154.38L162.933,154.156L163.231,153.654L162.383,154.126L161.981,153.912L161.771,153.692L161.725,154.415L161.049,154.131L160.903,153.731L160.924,153.702L160.903,153.731L160.438,153.598L160.417,153.602L160.396,153.591L160.416,153.727L160.644,154.542L161.194,154.718L161.89,155.372L160.484,156.245L159.662,155.419L159.214,155.66L159.612,156.278L159.567,156.568L159.567,156.604L159.564,156.906L159.5,156.938L159.307,157.155L158.749,157.581L158.265,157.044L156.912,157.962L157.401,158.065L157.246,158.555L157.245,158.588L158.131,157.607L158.189,158.175L157.539,159.04L157.539,159.033L157.539,159.04L157.495,159.097L157.233,159.561L156.319,159.154L155.417,159.431L156.08,159.459L156.368,160.263L156.816,160.409L156.375,161.311L155.858,162.881L155.251,163.205L155.479,162.384L154.649,163.124L153.974,162.373L154.327,163.111L153.724,163.143L153.638,163.116L153.724,163.143L155.031,163.503L155.766,163.288L155.579,164.267L155.394,165.045L154.938,165.203L154.859,166.09L155.433,166.704L155.57,167.708L155.67,168.274L155.662,168.764L155.507,168.969L155.876,168.975L156.479,171.063L156.934,171.298L156.664,171.923L157.257,171.662L157.318,172.024L156.509,172.031L155.915,172.33L155.93,172.773L154.65,172.132L154.289,171.497L153.569,171.495L152.985,171.191L151.716,171.326L150.607,171.118L150.353,170.794L148.612,169.838L148.129,169.975L147.306,169.064L146.738,169.151L146.291,168.815L145.617,168.823L145.134,167.64L144.611,165.815L143.573,164.592L143.739,163.587L143.589,162.962L143.306,162.471L143.493,161.466L142.845,160.433L142.08,160.249L141.065,158.866L140.927,158.073L140.63,158.01L140.058,156.929L139.328,156.563L138.863,155.999L138.342,153.917L137.773,153.397L137.756,152.849L136.957,151.453L136.898,150.498L136.317,149.882L136.236,149.409L134.981,148.464L134.76,147.879L133.631,147.402L133.691,146.691L132.584,145.542L132.072,145.707L130.788,145.483L128.729,145.278L128.378,144.89L127.559,144.623L127.152,145.387L126.412,145.185L125.455,145.404L124.055,147.945L123.988,148.872L123.322,149.033L122.316,150.344L120.714,149.726L120.018,148.916L119.514,148.883L118.712,148.106L117.36,147.636L116.629,147.071L116.135,146.203L115.68,146.116L114.589,144.916L114.501,144.27L113.958,143.33L113.886,142.288L114.06,141.528L113.702,140.662L113.198,140.028L113.212,139.209L112.669,138.364L111.426,137.05L110.408,136.653L110.434,136.39L109.58,135.618L109.398,134.968L108.474,134.31L108.028,133.435L107.364,132.703L106.238,132.059L105.457,130.173L104.646,129.723L104.064,128.882L104.302,128.22L105.656,128.359L107.799,128.582L113.883,129.208L114.268,129.244L118.923,129.658L119.166,129.679L120.624,129.8L122.853,129.976L124.332,130.089L124.376,129.5L124.594,126.574L124.813,123.635L125.068,120.752L125.179,119.523L125.346,117.81L125.605,114.596L125.61,114.524L125.827,111.597L125.931,110.198L126.046,108.654L126.285,105.693L126.344,104.899L126.502,102.767L126.706,99.762L126.916,99.777L131.392,100.088L132.1,100.133L134.281,100.271L137.153,100.433L137.823,100.468L140.025,100.578L142.917,100.709L142.81,103.715L142.76,104.896L142.686,106.669L142.63,107.995L142.562,109.614L142.518,110.638L142.437,112.566L142.404,113.823L142.404,113.823L142.782,113.73L143.234,114.225L144.007,115.12L144.667,114.877L145.213,115.046L145.213,115.05L145.602,115.213L145.78,114.641L146.657,115.497L146.728,116.324L148.051,116.385L149.1,117.012L149.916,116.817L150.611,117.475L150.932,117.342L151.28,116.853L152.341,117.161L152.524,116.973L152.799,117.931L153.549,118.067L153.358,118.702L153.967,118.99L154.976,118.079L155.66,118.676L156.098,118.577L156.248,119.153L156.703,119.236L157.625,118.606L157.691,119.656L158.286,119.75L158.274,119.122L158.651,119.083L159.075,118.394L159.135,118.355L159.486,119.03L160.02,119.176L160.679,118.647L161.035,118.773L160.815,119.113L162.201,119.922L163.176,119.751L163.832,119.084L165.143,119.156L165.618,118.926L166.708,118.523L166.769,118.817L168.099,118.882L168.61,118.308L168.948,118.479L169.548,118.967L170.005,118.984L170.59,119.758L171.249,120.033L172.688,120.451L173.256,121.081L174.087,120.754L175.148,120.991L175.207,122.884L175.242,124.588L175.261,125.52L175.287,126.788L175.329,128.817L175.356,130.139L175.529,131.591L176.321,132.49L176.832,133.438L176.626,134.225L177.576,135.48L177.509,136.115L177.926,136.376L178.023,136.948L178.288,136.884L178.242,137.478L178.582,137.921L178.215,138.064L178.322,139.009L177.667,140.883L177.324,141.241L177.589,141.929L177.346,142.176L177.192,142.664L177.558,143.229L177.506,144.526L176.764,145.795L176.354,146.144L176.874,146.954L175.685,147.103L173.9,147.894L173.796,147.939L171.445,149.17L172.003,148.525L173.23,147.93L172.789,147.84L171.558,148.174L171.894,146.688L171.245,146.581L170.876,147.163L170.541,147.134L169.53,146.449L170.227,147.163L170.027,148.034L170.659,148.373Z" + }, + { + "fill": "rgb(124, 204, 188)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.107; geo: [object Object]; name: Texas", + "shape": "M156.398,167.387L156.524,167.721L156.711,168.343L156.646,168.295L156.238,167.982L156.394,167.72L156.249,167.217ZM156.398,167.387L156.102,166.889L155.988,165.799L156.054,165.736ZM156.054,165.736L155.925,165.655L156.065,163.422L156.133,163.193L156.141,162.616L156.848,161.177L156.998,161.215L156.219,163.195L156.057,163.988ZM157.332,160.233L157.808,159.797L157.13,160.959ZM158.068,159.463L158.137,158.99L159.066,157.929L159.214,158.009ZM160.759,156.516L161.675,156.154L159.257,157.974L159.301,157.813L159.345,157.68L159.584,157.168L160.095,157.108ZM169.448,151.137L170.885,149.757L171.764,149.461ZM170.717,149.694L169.82,150.37L169.275,150.62L168.842,151.636L169.449,151.241L167.857,152.625L167.204,152.902L166.297,153.435L165.536,153.434L164.669,153.773L164.521,154.248L166.023,153.562L165.072,154.158L164.034,154.521L164.437,154.047L163.335,154.38L162.933,154.156L163.231,153.654L162.383,154.126L161.981,153.912L161.771,153.692L161.725,154.415L161.049,154.131L160.903,153.731L160.924,153.702L160.903,153.731L160.438,153.598L160.417,153.602L160.396,153.591L160.416,153.727L160.644,154.542L161.194,154.718L161.89,155.372L160.484,156.245L159.662,155.419L159.214,155.66L159.612,156.278L159.567,156.568L159.567,156.604L159.564,156.906L159.5,156.938L159.307,157.155L158.749,157.581L158.265,157.044L156.912,157.962L157.401,158.065L157.246,158.555L157.245,158.588L158.131,157.607L158.189,158.175L157.539,159.04L157.539,159.033L157.539,159.04L157.495,159.097L157.233,159.561L156.319,159.154L155.417,159.431L156.08,159.459L156.368,160.263L156.816,160.409L156.375,161.311L155.858,162.881L155.251,163.205L155.479,162.384L154.649,163.124L153.974,162.373L154.327,163.111L153.724,163.143L153.638,163.116L153.724,163.143L155.031,163.503L155.766,163.288L155.579,164.267L155.394,165.045L154.938,165.203L154.859,166.09L155.433,166.704L155.57,167.708L155.67,168.274L155.662,168.764L155.507,168.969L155.876,168.975L156.479,171.063L156.934,171.298L156.664,171.923L157.257,171.662L157.318,172.024L156.509,172.031L155.915,172.33L155.93,172.773L154.65,172.132L154.289,171.497L153.569,171.495L152.985,171.191L151.716,171.326L150.607,171.118L150.353,170.794L148.612,169.838L148.129,169.975L147.306,169.064L146.738,169.151L146.291,168.815L145.617,168.823L145.134,167.64L144.611,165.815L143.573,164.592L143.739,163.587L143.589,162.962L143.306,162.471L143.493,161.466L142.845,160.433L142.08,160.249L141.065,158.866L140.927,158.073L140.63,158.01L140.058,156.929L139.328,156.563L138.863,155.999L138.342,153.917L137.773,153.397L137.756,152.849L136.957,151.453L136.898,150.498L136.317,149.882L136.236,149.409L134.981,148.464L134.76,147.879L133.631,147.402L133.691,146.691L132.584,145.542L132.072,145.707L130.788,145.483L128.729,145.278L128.378,144.89L127.559,144.623L127.152,145.387L126.412,145.185L125.455,145.404L124.055,147.945L123.988,148.872L123.322,149.033L122.316,150.344L120.714,149.726L120.018,148.916L119.514,148.883L118.712,148.106L117.36,147.636L116.629,147.071L116.135,146.203L115.68,146.116L114.589,144.916L114.501,144.27L113.958,143.33L113.886,142.288L114.06,141.528L113.702,140.662L113.198,140.028L113.212,139.209L112.669,138.364L111.426,137.05L110.408,136.653L110.434,136.39L109.58,135.618L109.398,134.968L108.474,134.31L108.028,133.435L107.364,132.703L106.238,132.059L105.457,130.173L104.646,129.723L104.064,128.882L104.302,128.22L105.656,128.359L107.799,128.582L113.883,129.208L114.268,129.244L118.923,129.658L119.166,129.679L120.624,129.8L122.853,129.976L124.332,130.089L124.376,129.5L124.594,126.574L124.813,123.635L125.068,120.752L125.179,119.523L125.346,117.81L125.605,114.596L125.61,114.524L125.827,111.597L125.931,110.198L126.046,108.654L126.285,105.693L126.344,104.899L126.502,102.767L126.706,99.762L126.916,99.777L131.392,100.088L132.1,100.133L134.281,100.271L137.153,100.433L137.823,100.468L140.025,100.578L142.917,100.709L142.81,103.715L142.76,104.896L142.686,106.669L142.63,107.995L142.562,109.614L142.518,110.638L142.437,112.566L142.404,113.823L142.404,113.823L142.782,113.73L143.234,114.225L144.007,115.12L144.667,114.877L145.213,115.046L145.213,115.05L145.602,115.213L145.78,114.641L146.657,115.497L146.728,116.324L148.051,116.385L149.1,117.012L149.916,116.817L150.611,117.475L150.932,117.342L151.28,116.853L152.341,117.161L152.524,116.973L152.799,117.931L153.549,118.067L153.358,118.702L153.967,118.99L154.976,118.079L155.66,118.676L156.098,118.577L156.248,119.153L156.703,119.236L157.625,118.606L157.691,119.656L158.286,119.75L158.274,119.122L158.651,119.083L159.075,118.394L159.135,118.355L159.486,119.03L160.02,119.176L160.679,118.647L161.035,118.773L160.815,119.113L162.201,119.922L163.176,119.751L163.832,119.084L165.143,119.156L165.618,118.926L166.708,118.523L166.769,118.817L168.099,118.882L168.61,118.308L168.948,118.479L169.548,118.967L170.005,118.984L170.59,119.758L171.249,120.033L172.688,120.451L173.256,121.081L174.087,120.754L175.148,120.991L175.207,122.884L175.242,124.588L175.261,125.52L175.287,126.788L175.329,128.817L175.356,130.139L175.529,131.591L176.321,132.49L176.832,133.438L176.626,134.225L177.576,135.48L177.509,136.115L177.926,136.376L178.023,136.948L178.288,136.884L178.242,137.478L178.582,137.921L178.215,138.064L178.322,139.009L177.667,140.883L177.324,141.241L177.589,141.929L177.346,142.176L177.192,142.664L177.558,143.229L177.506,144.526L176.764,145.795L176.354,146.144L176.874,146.954L175.685,147.103L173.9,147.894L173.796,147.939L171.445,149.17L172.003,148.525L173.23,147.93L172.789,147.84L171.558,148.174L171.894,146.688L171.245,146.581L170.876,147.163L170.541,147.134L169.53,146.449L170.227,147.163L170.027,148.034L170.659,148.373Z" + }, + { + "fill": "rgb(80, 185, 193)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.139; geo: [object Object]; name: Texas", + "shape": "M156.398,167.387L156.524,167.721L156.711,168.343L156.646,168.295L156.238,167.982L156.394,167.72L156.249,167.217ZM156.398,167.387L156.102,166.889L155.988,165.799L156.054,165.736ZM156.054,165.736L155.925,165.655L156.065,163.422L156.133,163.193L156.141,162.616L156.848,161.177L156.998,161.215L156.219,163.195L156.057,163.988ZM157.332,160.233L157.808,159.797L157.13,160.959ZM158.068,159.463L158.137,158.99L159.066,157.929L159.214,158.009ZM160.759,156.516L161.675,156.154L159.257,157.974L159.301,157.813L159.345,157.68L159.584,157.168L160.095,157.108ZM169.448,151.137L170.885,149.757L171.764,149.461ZM170.717,149.694L169.82,150.37L169.275,150.62L168.842,151.636L169.449,151.241L167.857,152.625L167.204,152.902L166.297,153.435L165.536,153.434L164.669,153.773L164.521,154.248L166.023,153.562L165.072,154.158L164.034,154.521L164.437,154.047L163.335,154.38L162.933,154.156L163.231,153.654L162.383,154.126L161.981,153.912L161.771,153.692L161.725,154.415L161.049,154.131L160.903,153.731L160.924,153.702L160.903,153.731L160.438,153.598L160.417,153.602L160.396,153.591L160.416,153.727L160.644,154.542L161.194,154.718L161.89,155.372L160.484,156.245L159.662,155.419L159.214,155.66L159.612,156.278L159.567,156.568L159.567,156.604L159.564,156.906L159.5,156.938L159.307,157.155L158.749,157.581L158.265,157.044L156.912,157.962L157.401,158.065L157.246,158.555L157.245,158.588L158.131,157.607L158.189,158.175L157.539,159.04L157.539,159.033L157.539,159.04L157.495,159.097L157.233,159.561L156.319,159.154L155.417,159.431L156.08,159.459L156.368,160.263L156.816,160.409L156.375,161.311L155.858,162.881L155.251,163.205L155.479,162.384L154.649,163.124L153.974,162.373L154.327,163.111L153.724,163.143L153.638,163.116L153.724,163.143L155.031,163.503L155.766,163.288L155.579,164.267L155.394,165.045L154.938,165.203L154.859,166.09L155.433,166.704L155.57,167.708L155.67,168.274L155.662,168.764L155.507,168.969L155.876,168.975L156.479,171.063L156.934,171.298L156.664,171.923L157.257,171.662L157.318,172.024L156.509,172.031L155.915,172.33L155.93,172.773L154.65,172.132L154.289,171.497L153.569,171.495L152.985,171.191L151.716,171.326L150.607,171.118L150.353,170.794L148.612,169.838L148.129,169.975L147.306,169.064L146.738,169.151L146.291,168.815L145.617,168.823L145.134,167.64L144.611,165.815L143.573,164.592L143.739,163.587L143.589,162.962L143.306,162.471L143.493,161.466L142.845,160.433L142.08,160.249L141.065,158.866L140.927,158.073L140.63,158.01L140.058,156.929L139.328,156.563L138.863,155.999L138.342,153.917L137.773,153.397L137.756,152.849L136.957,151.453L136.898,150.498L136.317,149.882L136.236,149.409L134.981,148.464L134.76,147.879L133.631,147.402L133.691,146.691L132.584,145.542L132.072,145.707L130.788,145.483L128.729,145.278L128.378,144.89L127.559,144.623L127.152,145.387L126.412,145.185L125.455,145.404L124.055,147.945L123.988,148.872L123.322,149.033L122.316,150.344L120.714,149.726L120.018,148.916L119.514,148.883L118.712,148.106L117.36,147.636L116.629,147.071L116.135,146.203L115.68,146.116L114.589,144.916L114.501,144.27L113.958,143.33L113.886,142.288L114.06,141.528L113.702,140.662L113.198,140.028L113.212,139.209L112.669,138.364L111.426,137.05L110.408,136.653L110.434,136.39L109.58,135.618L109.398,134.968L108.474,134.31L108.028,133.435L107.364,132.703L106.238,132.059L105.457,130.173L104.646,129.723L104.064,128.882L104.302,128.22L105.656,128.359L107.799,128.582L113.883,129.208L114.268,129.244L118.923,129.658L119.166,129.679L120.624,129.8L122.853,129.976L124.332,130.089L124.376,129.5L124.594,126.574L124.813,123.635L125.068,120.752L125.179,119.523L125.346,117.81L125.605,114.596L125.61,114.524L125.827,111.597L125.931,110.198L126.046,108.654L126.285,105.693L126.344,104.899L126.502,102.767L126.706,99.762L126.916,99.777L131.392,100.088L132.1,100.133L134.281,100.271L137.153,100.433L137.823,100.468L140.025,100.578L142.917,100.709L142.81,103.715L142.76,104.896L142.686,106.669L142.63,107.995L142.562,109.614L142.518,110.638L142.437,112.566L142.404,113.823L142.404,113.823L142.782,113.73L143.234,114.225L144.007,115.12L144.667,114.877L145.213,115.046L145.213,115.05L145.602,115.213L145.78,114.641L146.657,115.497L146.728,116.324L148.051,116.385L149.1,117.012L149.916,116.817L150.611,117.475L150.932,117.342L151.28,116.853L152.341,117.161L152.524,116.973L152.799,117.931L153.549,118.067L153.358,118.702L153.967,118.99L154.976,118.079L155.66,118.676L156.098,118.577L156.248,119.153L156.703,119.236L157.625,118.606L157.691,119.656L158.286,119.75L158.274,119.122L158.651,119.083L159.075,118.394L159.135,118.355L159.486,119.03L160.02,119.176L160.679,118.647L161.035,118.773L160.815,119.113L162.201,119.922L163.176,119.751L163.832,119.084L165.143,119.156L165.618,118.926L166.708,118.523L166.769,118.817L168.099,118.882L168.61,118.308L168.948,118.479L169.548,118.967L170.005,118.984L170.59,119.758L171.249,120.033L172.688,120.451L173.256,121.081L174.087,120.754L175.148,120.991L175.207,122.884L175.242,124.588L175.261,125.52L175.287,126.788L175.329,128.817L175.356,130.139L175.529,131.591L176.321,132.49L176.832,133.438L176.626,134.225L177.576,135.48L177.509,136.115L177.926,136.376L178.023,136.948L178.288,136.884L178.242,137.478L178.582,137.921L178.215,138.064L178.322,139.009L177.667,140.883L177.324,141.241L177.589,141.929L177.346,142.176L177.192,142.664L177.558,143.229L177.506,144.526L176.764,145.795L176.354,146.144L176.874,146.954L175.685,147.103L173.9,147.894L173.796,147.939L171.445,149.17L172.003,148.525L173.23,147.93L172.789,147.84L171.558,148.174L171.894,146.688L171.245,146.581L170.876,147.163L170.541,147.134L169.53,146.449L170.227,147.163L170.027,148.034L170.659,148.373Z" + }, + { + "fill": "rgb(111, 199, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.115; geo: [object Object]; name: Texas", + "shape": "M156.398,167.387L156.524,167.721L156.711,168.343L156.646,168.295L156.238,167.982L156.394,167.72L156.249,167.217ZM156.398,167.387L156.102,166.889L155.988,165.799L156.054,165.736ZM156.054,165.736L155.925,165.655L156.065,163.422L156.133,163.193L156.141,162.616L156.848,161.177L156.998,161.215L156.219,163.195L156.057,163.988ZM157.332,160.233L157.808,159.797L157.13,160.959ZM158.068,159.463L158.137,158.99L159.066,157.929L159.214,158.009ZM160.759,156.516L161.675,156.154L159.257,157.974L159.301,157.813L159.345,157.68L159.584,157.168L160.095,157.108ZM169.448,151.137L170.885,149.757L171.764,149.461ZM170.717,149.694L169.82,150.37L169.275,150.62L168.842,151.636L169.449,151.241L167.857,152.625L167.204,152.902L166.297,153.435L165.536,153.434L164.669,153.773L164.521,154.248L166.023,153.562L165.072,154.158L164.034,154.521L164.437,154.047L163.335,154.38L162.933,154.156L163.231,153.654L162.383,154.126L161.981,153.912L161.771,153.692L161.725,154.415L161.049,154.131L160.903,153.731L160.924,153.702L160.903,153.731L160.438,153.598L160.417,153.602L160.396,153.591L160.416,153.727L160.644,154.542L161.194,154.718L161.89,155.372L160.484,156.245L159.662,155.419L159.214,155.66L159.612,156.278L159.567,156.568L159.567,156.604L159.564,156.906L159.5,156.938L159.307,157.155L158.749,157.581L158.265,157.044L156.912,157.962L157.401,158.065L157.246,158.555L157.245,158.588L158.131,157.607L158.189,158.175L157.539,159.04L157.539,159.033L157.539,159.04L157.495,159.097L157.233,159.561L156.319,159.154L155.417,159.431L156.08,159.459L156.368,160.263L156.816,160.409L156.375,161.311L155.858,162.881L155.251,163.205L155.479,162.384L154.649,163.124L153.974,162.373L154.327,163.111L153.724,163.143L153.638,163.116L153.724,163.143L155.031,163.503L155.766,163.288L155.579,164.267L155.394,165.045L154.938,165.203L154.859,166.09L155.433,166.704L155.57,167.708L155.67,168.274L155.662,168.764L155.507,168.969L155.876,168.975L156.479,171.063L156.934,171.298L156.664,171.923L157.257,171.662L157.318,172.024L156.509,172.031L155.915,172.33L155.93,172.773L154.65,172.132L154.289,171.497L153.569,171.495L152.985,171.191L151.716,171.326L150.607,171.118L150.353,170.794L148.612,169.838L148.129,169.975L147.306,169.064L146.738,169.151L146.291,168.815L145.617,168.823L145.134,167.64L144.611,165.815L143.573,164.592L143.739,163.587L143.589,162.962L143.306,162.471L143.493,161.466L142.845,160.433L142.08,160.249L141.065,158.866L140.927,158.073L140.63,158.01L140.058,156.929L139.328,156.563L138.863,155.999L138.342,153.917L137.773,153.397L137.756,152.849L136.957,151.453L136.898,150.498L136.317,149.882L136.236,149.409L134.981,148.464L134.76,147.879L133.631,147.402L133.691,146.691L132.584,145.542L132.072,145.707L130.788,145.483L128.729,145.278L128.378,144.89L127.559,144.623L127.152,145.387L126.412,145.185L125.455,145.404L124.055,147.945L123.988,148.872L123.322,149.033L122.316,150.344L120.714,149.726L120.018,148.916L119.514,148.883L118.712,148.106L117.36,147.636L116.629,147.071L116.135,146.203L115.68,146.116L114.589,144.916L114.501,144.27L113.958,143.33L113.886,142.288L114.06,141.528L113.702,140.662L113.198,140.028L113.212,139.209L112.669,138.364L111.426,137.05L110.408,136.653L110.434,136.39L109.58,135.618L109.398,134.968L108.474,134.31L108.028,133.435L107.364,132.703L106.238,132.059L105.457,130.173L104.646,129.723L104.064,128.882L104.302,128.22L105.656,128.359L107.799,128.582L113.883,129.208L114.268,129.244L118.923,129.658L119.166,129.679L120.624,129.8L122.853,129.976L124.332,130.089L124.376,129.5L124.594,126.574L124.813,123.635L125.068,120.752L125.179,119.523L125.346,117.81L125.605,114.596L125.61,114.524L125.827,111.597L125.931,110.198L126.046,108.654L126.285,105.693L126.344,104.899L126.502,102.767L126.706,99.762L126.916,99.777L131.392,100.088L132.1,100.133L134.281,100.271L137.153,100.433L137.823,100.468L140.025,100.578L142.917,100.709L142.81,103.715L142.76,104.896L142.686,106.669L142.63,107.995L142.562,109.614L142.518,110.638L142.437,112.566L142.404,113.823L142.404,113.823L142.782,113.73L143.234,114.225L144.007,115.12L144.667,114.877L145.213,115.046L145.213,115.05L145.602,115.213L145.78,114.641L146.657,115.497L146.728,116.324L148.051,116.385L149.1,117.012L149.916,116.817L150.611,117.475L150.932,117.342L151.28,116.853L152.341,117.161L152.524,116.973L152.799,117.931L153.549,118.067L153.358,118.702L153.967,118.99L154.976,118.079L155.66,118.676L156.098,118.577L156.248,119.153L156.703,119.236L157.625,118.606L157.691,119.656L158.286,119.75L158.274,119.122L158.651,119.083L159.075,118.394L159.135,118.355L159.486,119.03L160.02,119.176L160.679,118.647L161.035,118.773L160.815,119.113L162.201,119.922L163.176,119.751L163.832,119.084L165.143,119.156L165.618,118.926L166.708,118.523L166.769,118.817L168.099,118.882L168.61,118.308L168.948,118.479L169.548,118.967L170.005,118.984L170.59,119.758L171.249,120.033L172.688,120.451L173.256,121.081L174.087,120.754L175.148,120.991L175.207,122.884L175.242,124.588L175.261,125.52L175.287,126.788L175.329,128.817L175.356,130.139L175.529,131.591L176.321,132.49L176.832,133.438L176.626,134.225L177.576,135.48L177.509,136.115L177.926,136.376L178.023,136.948L178.288,136.884L178.242,137.478L178.582,137.921L178.215,138.064L178.322,139.009L177.667,140.883L177.324,141.241L177.589,141.929L177.346,142.176L177.192,142.664L177.558,143.229L177.506,144.526L176.764,145.795L176.354,146.144L176.874,146.954L175.685,147.103L173.9,147.894L173.796,147.939L171.445,149.17L172.003,148.525L173.23,147.93L172.789,147.84L171.558,148.174L171.894,146.688L171.245,146.581L170.876,147.163L170.541,147.134L169.53,146.449L170.227,147.163L170.027,148.034L170.659,148.373Z" + }, + { + "fill": "rgb(43, 156, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.178; geo: [object Object]; name: Texas", + "shape": "M156.398,167.387L156.524,167.721L156.711,168.343L156.646,168.295L156.238,167.982L156.394,167.72L156.249,167.217ZM156.398,167.387L156.102,166.889L155.988,165.799L156.054,165.736ZM156.054,165.736L155.925,165.655L156.065,163.422L156.133,163.193L156.141,162.616L156.848,161.177L156.998,161.215L156.219,163.195L156.057,163.988ZM157.332,160.233L157.808,159.797L157.13,160.959ZM158.068,159.463L158.137,158.99L159.066,157.929L159.214,158.009ZM160.759,156.516L161.675,156.154L159.257,157.974L159.301,157.813L159.345,157.68L159.584,157.168L160.095,157.108ZM169.448,151.137L170.885,149.757L171.764,149.461ZM170.717,149.694L169.82,150.37L169.275,150.62L168.842,151.636L169.449,151.241L167.857,152.625L167.204,152.902L166.297,153.435L165.536,153.434L164.669,153.773L164.521,154.248L166.023,153.562L165.072,154.158L164.034,154.521L164.437,154.047L163.335,154.38L162.933,154.156L163.231,153.654L162.383,154.126L161.981,153.912L161.771,153.692L161.725,154.415L161.049,154.131L160.903,153.731L160.924,153.702L160.903,153.731L160.438,153.598L160.417,153.602L160.396,153.591L160.416,153.727L160.644,154.542L161.194,154.718L161.89,155.372L160.484,156.245L159.662,155.419L159.214,155.66L159.612,156.278L159.567,156.568L159.567,156.604L159.564,156.906L159.5,156.938L159.307,157.155L158.749,157.581L158.265,157.044L156.912,157.962L157.401,158.065L157.246,158.555L157.245,158.588L158.131,157.607L158.189,158.175L157.539,159.04L157.539,159.033L157.539,159.04L157.495,159.097L157.233,159.561L156.319,159.154L155.417,159.431L156.08,159.459L156.368,160.263L156.816,160.409L156.375,161.311L155.858,162.881L155.251,163.205L155.479,162.384L154.649,163.124L153.974,162.373L154.327,163.111L153.724,163.143L153.638,163.116L153.724,163.143L155.031,163.503L155.766,163.288L155.579,164.267L155.394,165.045L154.938,165.203L154.859,166.09L155.433,166.704L155.57,167.708L155.67,168.274L155.662,168.764L155.507,168.969L155.876,168.975L156.479,171.063L156.934,171.298L156.664,171.923L157.257,171.662L157.318,172.024L156.509,172.031L155.915,172.33L155.93,172.773L154.65,172.132L154.289,171.497L153.569,171.495L152.985,171.191L151.716,171.326L150.607,171.118L150.353,170.794L148.612,169.838L148.129,169.975L147.306,169.064L146.738,169.151L146.291,168.815L145.617,168.823L145.134,167.64L144.611,165.815L143.573,164.592L143.739,163.587L143.589,162.962L143.306,162.471L143.493,161.466L142.845,160.433L142.08,160.249L141.065,158.866L140.927,158.073L140.63,158.01L140.058,156.929L139.328,156.563L138.863,155.999L138.342,153.917L137.773,153.397L137.756,152.849L136.957,151.453L136.898,150.498L136.317,149.882L136.236,149.409L134.981,148.464L134.76,147.879L133.631,147.402L133.691,146.691L132.584,145.542L132.072,145.707L130.788,145.483L128.729,145.278L128.378,144.89L127.559,144.623L127.152,145.387L126.412,145.185L125.455,145.404L124.055,147.945L123.988,148.872L123.322,149.033L122.316,150.344L120.714,149.726L120.018,148.916L119.514,148.883L118.712,148.106L117.36,147.636L116.629,147.071L116.135,146.203L115.68,146.116L114.589,144.916L114.501,144.27L113.958,143.33L113.886,142.288L114.06,141.528L113.702,140.662L113.198,140.028L113.212,139.209L112.669,138.364L111.426,137.05L110.408,136.653L110.434,136.39L109.58,135.618L109.398,134.968L108.474,134.31L108.028,133.435L107.364,132.703L106.238,132.059L105.457,130.173L104.646,129.723L104.064,128.882L104.302,128.22L105.656,128.359L107.799,128.582L113.883,129.208L114.268,129.244L118.923,129.658L119.166,129.679L120.624,129.8L122.853,129.976L124.332,130.089L124.376,129.5L124.594,126.574L124.813,123.635L125.068,120.752L125.179,119.523L125.346,117.81L125.605,114.596L125.61,114.524L125.827,111.597L125.931,110.198L126.046,108.654L126.285,105.693L126.344,104.899L126.502,102.767L126.706,99.762L126.916,99.777L131.392,100.088L132.1,100.133L134.281,100.271L137.153,100.433L137.823,100.468L140.025,100.578L142.917,100.709L142.81,103.715L142.76,104.896L142.686,106.669L142.63,107.995L142.562,109.614L142.518,110.638L142.437,112.566L142.404,113.823L142.404,113.823L142.782,113.73L143.234,114.225L144.007,115.12L144.667,114.877L145.213,115.046L145.213,115.05L145.602,115.213L145.78,114.641L146.657,115.497L146.728,116.324L148.051,116.385L149.1,117.012L149.916,116.817L150.611,117.475L150.932,117.342L151.28,116.853L152.341,117.161L152.524,116.973L152.799,117.931L153.549,118.067L153.358,118.702L153.967,118.99L154.976,118.079L155.66,118.676L156.098,118.577L156.248,119.153L156.703,119.236L157.625,118.606L157.691,119.656L158.286,119.75L158.274,119.122L158.651,119.083L159.075,118.394L159.135,118.355L159.486,119.03L160.02,119.176L160.679,118.647L161.035,118.773L160.815,119.113L162.201,119.922L163.176,119.751L163.832,119.084L165.143,119.156L165.618,118.926L166.708,118.523L166.769,118.817L168.099,118.882L168.61,118.308L168.948,118.479L169.548,118.967L170.005,118.984L170.59,119.758L171.249,120.033L172.688,120.451L173.256,121.081L174.087,120.754L175.148,120.991L175.207,122.884L175.242,124.588L175.261,125.52L175.287,126.788L175.329,128.817L175.356,130.139L175.529,131.591L176.321,132.49L176.832,133.438L176.626,134.225L177.576,135.48L177.509,136.115L177.926,136.376L178.023,136.948L178.288,136.884L178.242,137.478L178.582,137.921L178.215,138.064L178.322,139.009L177.667,140.883L177.324,141.241L177.589,141.929L177.346,142.176L177.192,142.664L177.558,143.229L177.506,144.526L176.764,145.795L176.354,146.144L176.874,146.954L175.685,147.103L173.9,147.894L173.796,147.939L171.445,149.17L172.003,148.525L173.23,147.93L172.789,147.84L171.558,148.174L171.894,146.688L171.245,146.581L170.876,147.163L170.541,147.134L169.53,146.449L170.227,147.163L170.027,148.034L170.659,148.373Z" + }, + { + "fill": "rgb(96, 193, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.126; geo: [object Object]; name: Texas", + "shape": "M156.398,167.387L156.524,167.721L156.711,168.343L156.646,168.295L156.238,167.982L156.394,167.72L156.249,167.217ZM156.398,167.387L156.102,166.889L155.988,165.799L156.054,165.736ZM156.054,165.736L155.925,165.655L156.065,163.422L156.133,163.193L156.141,162.616L156.848,161.177L156.998,161.215L156.219,163.195L156.057,163.988ZM157.332,160.233L157.808,159.797L157.13,160.959ZM158.068,159.463L158.137,158.99L159.066,157.929L159.214,158.009ZM160.759,156.516L161.675,156.154L159.257,157.974L159.301,157.813L159.345,157.68L159.584,157.168L160.095,157.108ZM169.448,151.137L170.885,149.757L171.764,149.461ZM170.717,149.694L169.82,150.37L169.275,150.62L168.842,151.636L169.449,151.241L167.857,152.625L167.204,152.902L166.297,153.435L165.536,153.434L164.669,153.773L164.521,154.248L166.023,153.562L165.072,154.158L164.034,154.521L164.437,154.047L163.335,154.38L162.933,154.156L163.231,153.654L162.383,154.126L161.981,153.912L161.771,153.692L161.725,154.415L161.049,154.131L160.903,153.731L160.924,153.702L160.903,153.731L160.438,153.598L160.417,153.602L160.396,153.591L160.416,153.727L160.644,154.542L161.194,154.718L161.89,155.372L160.484,156.245L159.662,155.419L159.214,155.66L159.612,156.278L159.567,156.568L159.567,156.604L159.564,156.906L159.5,156.938L159.307,157.155L158.749,157.581L158.265,157.044L156.912,157.962L157.401,158.065L157.246,158.555L157.245,158.588L158.131,157.607L158.189,158.175L157.539,159.04L157.539,159.033L157.539,159.04L157.495,159.097L157.233,159.561L156.319,159.154L155.417,159.431L156.08,159.459L156.368,160.263L156.816,160.409L156.375,161.311L155.858,162.881L155.251,163.205L155.479,162.384L154.649,163.124L153.974,162.373L154.327,163.111L153.724,163.143L153.638,163.116L153.724,163.143L155.031,163.503L155.766,163.288L155.579,164.267L155.394,165.045L154.938,165.203L154.859,166.09L155.433,166.704L155.57,167.708L155.67,168.274L155.662,168.764L155.507,168.969L155.876,168.975L156.479,171.063L156.934,171.298L156.664,171.923L157.257,171.662L157.318,172.024L156.509,172.031L155.915,172.33L155.93,172.773L154.65,172.132L154.289,171.497L153.569,171.495L152.985,171.191L151.716,171.326L150.607,171.118L150.353,170.794L148.612,169.838L148.129,169.975L147.306,169.064L146.738,169.151L146.291,168.815L145.617,168.823L145.134,167.64L144.611,165.815L143.573,164.592L143.739,163.587L143.589,162.962L143.306,162.471L143.493,161.466L142.845,160.433L142.08,160.249L141.065,158.866L140.927,158.073L140.63,158.01L140.058,156.929L139.328,156.563L138.863,155.999L138.342,153.917L137.773,153.397L137.756,152.849L136.957,151.453L136.898,150.498L136.317,149.882L136.236,149.409L134.981,148.464L134.76,147.879L133.631,147.402L133.691,146.691L132.584,145.542L132.072,145.707L130.788,145.483L128.729,145.278L128.378,144.89L127.559,144.623L127.152,145.387L126.412,145.185L125.455,145.404L124.055,147.945L123.988,148.872L123.322,149.033L122.316,150.344L120.714,149.726L120.018,148.916L119.514,148.883L118.712,148.106L117.36,147.636L116.629,147.071L116.135,146.203L115.68,146.116L114.589,144.916L114.501,144.27L113.958,143.33L113.886,142.288L114.06,141.528L113.702,140.662L113.198,140.028L113.212,139.209L112.669,138.364L111.426,137.05L110.408,136.653L110.434,136.39L109.58,135.618L109.398,134.968L108.474,134.31L108.028,133.435L107.364,132.703L106.238,132.059L105.457,130.173L104.646,129.723L104.064,128.882L104.302,128.22L105.656,128.359L107.799,128.582L113.883,129.208L114.268,129.244L118.923,129.658L119.166,129.679L120.624,129.8L122.853,129.976L124.332,130.089L124.376,129.5L124.594,126.574L124.813,123.635L125.068,120.752L125.179,119.523L125.346,117.81L125.605,114.596L125.61,114.524L125.827,111.597L125.931,110.198L126.046,108.654L126.285,105.693L126.344,104.899L126.502,102.767L126.706,99.762L126.916,99.777L131.392,100.088L132.1,100.133L134.281,100.271L137.153,100.433L137.823,100.468L140.025,100.578L142.917,100.709L142.81,103.715L142.76,104.896L142.686,106.669L142.63,107.995L142.562,109.614L142.518,110.638L142.437,112.566L142.404,113.823L142.404,113.823L142.782,113.73L143.234,114.225L144.007,115.12L144.667,114.877L145.213,115.046L145.213,115.05L145.602,115.213L145.78,114.641L146.657,115.497L146.728,116.324L148.051,116.385L149.1,117.012L149.916,116.817L150.611,117.475L150.932,117.342L151.28,116.853L152.341,117.161L152.524,116.973L152.799,117.931L153.549,118.067L153.358,118.702L153.967,118.99L154.976,118.079L155.66,118.676L156.098,118.577L156.248,119.153L156.703,119.236L157.625,118.606L157.691,119.656L158.286,119.75L158.274,119.122L158.651,119.083L159.075,118.394L159.135,118.355L159.486,119.03L160.02,119.176L160.679,118.647L161.035,118.773L160.815,119.113L162.201,119.922L163.176,119.751L163.832,119.084L165.143,119.156L165.618,118.926L166.708,118.523L166.769,118.817L168.099,118.882L168.61,118.308L168.948,118.479L169.548,118.967L170.005,118.984L170.59,119.758L171.249,120.033L172.688,120.451L173.256,121.081L174.087,120.754L175.148,120.991L175.207,122.884L175.242,124.588L175.261,125.52L175.287,126.788L175.329,128.817L175.356,130.139L175.529,131.591L176.321,132.49L176.832,133.438L176.626,134.225L177.576,135.48L177.509,136.115L177.926,136.376L178.023,136.948L178.288,136.884L178.242,137.478L178.582,137.921L178.215,138.064L178.322,139.009L177.667,140.883L177.324,141.241L177.589,141.929L177.346,142.176L177.192,142.664L177.558,143.229L177.506,144.526L176.764,145.795L176.354,146.144L176.874,146.954L175.685,147.103L173.9,147.894L173.796,147.939L171.445,149.17L172.003,148.525L173.23,147.93L172.789,147.84L171.558,148.174L171.894,146.688L171.245,146.581L170.876,147.163L170.541,147.134L169.53,146.449L170.227,147.163L170.027,148.034L170.659,148.373Z" + }, + { + "fill": "rgb(206, 236, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.047; geo: [object Object]; name: Texas", + "shape": "M156.398,167.387L156.524,167.721L156.711,168.343L156.646,168.295L156.238,167.982L156.394,167.72L156.249,167.217ZM156.398,167.387L156.102,166.889L155.988,165.799L156.054,165.736ZM156.054,165.736L155.925,165.655L156.065,163.422L156.133,163.193L156.141,162.616L156.848,161.177L156.998,161.215L156.219,163.195L156.057,163.988ZM157.332,160.233L157.808,159.797L157.13,160.959ZM158.068,159.463L158.137,158.99L159.066,157.929L159.214,158.009ZM160.759,156.516L161.675,156.154L159.257,157.974L159.301,157.813L159.345,157.68L159.584,157.168L160.095,157.108ZM169.448,151.137L170.885,149.757L171.764,149.461ZM170.717,149.694L169.82,150.37L169.275,150.62L168.842,151.636L169.449,151.241L167.857,152.625L167.204,152.902L166.297,153.435L165.536,153.434L164.669,153.773L164.521,154.248L166.023,153.562L165.072,154.158L164.034,154.521L164.437,154.047L163.335,154.38L162.933,154.156L163.231,153.654L162.383,154.126L161.981,153.912L161.771,153.692L161.725,154.415L161.049,154.131L160.903,153.731L160.924,153.702L160.903,153.731L160.438,153.598L160.417,153.602L160.396,153.591L160.416,153.727L160.644,154.542L161.194,154.718L161.89,155.372L160.484,156.245L159.662,155.419L159.214,155.66L159.612,156.278L159.567,156.568L159.567,156.604L159.564,156.906L159.5,156.938L159.307,157.155L158.749,157.581L158.265,157.044L156.912,157.962L157.401,158.065L157.246,158.555L157.245,158.588L158.131,157.607L158.189,158.175L157.539,159.04L157.539,159.033L157.539,159.04L157.495,159.097L157.233,159.561L156.319,159.154L155.417,159.431L156.08,159.459L156.368,160.263L156.816,160.409L156.375,161.311L155.858,162.881L155.251,163.205L155.479,162.384L154.649,163.124L153.974,162.373L154.327,163.111L153.724,163.143L153.638,163.116L153.724,163.143L155.031,163.503L155.766,163.288L155.579,164.267L155.394,165.045L154.938,165.203L154.859,166.09L155.433,166.704L155.57,167.708L155.67,168.274L155.662,168.764L155.507,168.969L155.876,168.975L156.479,171.063L156.934,171.298L156.664,171.923L157.257,171.662L157.318,172.024L156.509,172.031L155.915,172.33L155.93,172.773L154.65,172.132L154.289,171.497L153.569,171.495L152.985,171.191L151.716,171.326L150.607,171.118L150.353,170.794L148.612,169.838L148.129,169.975L147.306,169.064L146.738,169.151L146.291,168.815L145.617,168.823L145.134,167.64L144.611,165.815L143.573,164.592L143.739,163.587L143.589,162.962L143.306,162.471L143.493,161.466L142.845,160.433L142.08,160.249L141.065,158.866L140.927,158.073L140.63,158.01L140.058,156.929L139.328,156.563L138.863,155.999L138.342,153.917L137.773,153.397L137.756,152.849L136.957,151.453L136.898,150.498L136.317,149.882L136.236,149.409L134.981,148.464L134.76,147.879L133.631,147.402L133.691,146.691L132.584,145.542L132.072,145.707L130.788,145.483L128.729,145.278L128.378,144.89L127.559,144.623L127.152,145.387L126.412,145.185L125.455,145.404L124.055,147.945L123.988,148.872L123.322,149.033L122.316,150.344L120.714,149.726L120.018,148.916L119.514,148.883L118.712,148.106L117.36,147.636L116.629,147.071L116.135,146.203L115.68,146.116L114.589,144.916L114.501,144.27L113.958,143.33L113.886,142.288L114.06,141.528L113.702,140.662L113.198,140.028L113.212,139.209L112.669,138.364L111.426,137.05L110.408,136.653L110.434,136.39L109.58,135.618L109.398,134.968L108.474,134.31L108.028,133.435L107.364,132.703L106.238,132.059L105.457,130.173L104.646,129.723L104.064,128.882L104.302,128.22L105.656,128.359L107.799,128.582L113.883,129.208L114.268,129.244L118.923,129.658L119.166,129.679L120.624,129.8L122.853,129.976L124.332,130.089L124.376,129.5L124.594,126.574L124.813,123.635L125.068,120.752L125.179,119.523L125.346,117.81L125.605,114.596L125.61,114.524L125.827,111.597L125.931,110.198L126.046,108.654L126.285,105.693L126.344,104.899L126.502,102.767L126.706,99.762L126.916,99.777L131.392,100.088L132.1,100.133L134.281,100.271L137.153,100.433L137.823,100.468L140.025,100.578L142.917,100.709L142.81,103.715L142.76,104.896L142.686,106.669L142.63,107.995L142.562,109.614L142.518,110.638L142.437,112.566L142.404,113.823L142.404,113.823L142.782,113.73L143.234,114.225L144.007,115.12L144.667,114.877L145.213,115.046L145.213,115.05L145.602,115.213L145.78,114.641L146.657,115.497L146.728,116.324L148.051,116.385L149.1,117.012L149.916,116.817L150.611,117.475L150.932,117.342L151.28,116.853L152.341,117.161L152.524,116.973L152.799,117.931L153.549,118.067L153.358,118.702L153.967,118.99L154.976,118.079L155.66,118.676L156.098,118.577L156.248,119.153L156.703,119.236L157.625,118.606L157.691,119.656L158.286,119.75L158.274,119.122L158.651,119.083L159.075,118.394L159.135,118.355L159.486,119.03L160.02,119.176L160.679,118.647L161.035,118.773L160.815,119.113L162.201,119.922L163.176,119.751L163.832,119.084L165.143,119.156L165.618,118.926L166.708,118.523L166.769,118.817L168.099,118.882L168.61,118.308L168.948,118.479L169.548,118.967L170.005,118.984L170.59,119.758L171.249,120.033L172.688,120.451L173.256,121.081L174.087,120.754L175.148,120.991L175.207,122.884L175.242,124.588L175.261,125.52L175.287,126.788L175.329,128.817L175.356,130.139L175.529,131.591L176.321,132.49L176.832,133.438L176.626,134.225L177.576,135.48L177.509,136.115L177.926,136.376L178.023,136.948L178.288,136.884L178.242,137.478L178.582,137.921L178.215,138.064L178.322,139.009L177.667,140.883L177.324,141.241L177.589,141.929L177.346,142.176L177.192,142.664L177.558,143.229L177.506,144.526L176.764,145.795L176.354,146.144L176.874,146.954L175.685,147.103L173.9,147.894L173.796,147.939L171.445,149.17L172.003,148.525L173.23,147.93L172.789,147.84L171.558,148.174L171.894,146.688L171.245,146.581L170.876,147.163L170.541,147.134L169.53,146.449L170.227,147.163L170.027,148.034L170.659,148.373Z" + }, + { + "fill": "rgb(204, 235, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.048; geo: [object Object]; name: Texas", + "shape": "M156.398,167.387L156.524,167.721L156.711,168.343L156.646,168.295L156.238,167.982L156.394,167.72L156.249,167.217ZM156.398,167.387L156.102,166.889L155.988,165.799L156.054,165.736ZM156.054,165.736L155.925,165.655L156.065,163.422L156.133,163.193L156.141,162.616L156.848,161.177L156.998,161.215L156.219,163.195L156.057,163.988ZM157.332,160.233L157.808,159.797L157.13,160.959ZM158.068,159.463L158.137,158.99L159.066,157.929L159.214,158.009ZM160.759,156.516L161.675,156.154L159.257,157.974L159.301,157.813L159.345,157.68L159.584,157.168L160.095,157.108ZM169.448,151.137L170.885,149.757L171.764,149.461ZM170.717,149.694L169.82,150.37L169.275,150.62L168.842,151.636L169.449,151.241L167.857,152.625L167.204,152.902L166.297,153.435L165.536,153.434L164.669,153.773L164.521,154.248L166.023,153.562L165.072,154.158L164.034,154.521L164.437,154.047L163.335,154.38L162.933,154.156L163.231,153.654L162.383,154.126L161.981,153.912L161.771,153.692L161.725,154.415L161.049,154.131L160.903,153.731L160.924,153.702L160.903,153.731L160.438,153.598L160.417,153.602L160.396,153.591L160.416,153.727L160.644,154.542L161.194,154.718L161.89,155.372L160.484,156.245L159.662,155.419L159.214,155.66L159.612,156.278L159.567,156.568L159.567,156.604L159.564,156.906L159.5,156.938L159.307,157.155L158.749,157.581L158.265,157.044L156.912,157.962L157.401,158.065L157.246,158.555L157.245,158.588L158.131,157.607L158.189,158.175L157.539,159.04L157.539,159.033L157.539,159.04L157.495,159.097L157.233,159.561L156.319,159.154L155.417,159.431L156.08,159.459L156.368,160.263L156.816,160.409L156.375,161.311L155.858,162.881L155.251,163.205L155.479,162.384L154.649,163.124L153.974,162.373L154.327,163.111L153.724,163.143L153.638,163.116L153.724,163.143L155.031,163.503L155.766,163.288L155.579,164.267L155.394,165.045L154.938,165.203L154.859,166.09L155.433,166.704L155.57,167.708L155.67,168.274L155.662,168.764L155.507,168.969L155.876,168.975L156.479,171.063L156.934,171.298L156.664,171.923L157.257,171.662L157.318,172.024L156.509,172.031L155.915,172.33L155.93,172.773L154.65,172.132L154.289,171.497L153.569,171.495L152.985,171.191L151.716,171.326L150.607,171.118L150.353,170.794L148.612,169.838L148.129,169.975L147.306,169.064L146.738,169.151L146.291,168.815L145.617,168.823L145.134,167.64L144.611,165.815L143.573,164.592L143.739,163.587L143.589,162.962L143.306,162.471L143.493,161.466L142.845,160.433L142.08,160.249L141.065,158.866L140.927,158.073L140.63,158.01L140.058,156.929L139.328,156.563L138.863,155.999L138.342,153.917L137.773,153.397L137.756,152.849L136.957,151.453L136.898,150.498L136.317,149.882L136.236,149.409L134.981,148.464L134.76,147.879L133.631,147.402L133.691,146.691L132.584,145.542L132.072,145.707L130.788,145.483L128.729,145.278L128.378,144.89L127.559,144.623L127.152,145.387L126.412,145.185L125.455,145.404L124.055,147.945L123.988,148.872L123.322,149.033L122.316,150.344L120.714,149.726L120.018,148.916L119.514,148.883L118.712,148.106L117.36,147.636L116.629,147.071L116.135,146.203L115.68,146.116L114.589,144.916L114.501,144.27L113.958,143.33L113.886,142.288L114.06,141.528L113.702,140.662L113.198,140.028L113.212,139.209L112.669,138.364L111.426,137.05L110.408,136.653L110.434,136.39L109.58,135.618L109.398,134.968L108.474,134.31L108.028,133.435L107.364,132.703L106.238,132.059L105.457,130.173L104.646,129.723L104.064,128.882L104.302,128.22L105.656,128.359L107.799,128.582L113.883,129.208L114.268,129.244L118.923,129.658L119.166,129.679L120.624,129.8L122.853,129.976L124.332,130.089L124.376,129.5L124.594,126.574L124.813,123.635L125.068,120.752L125.179,119.523L125.346,117.81L125.605,114.596L125.61,114.524L125.827,111.597L125.931,110.198L126.046,108.654L126.285,105.693L126.344,104.899L126.502,102.767L126.706,99.762L126.916,99.777L131.392,100.088L132.1,100.133L134.281,100.271L137.153,100.433L137.823,100.468L140.025,100.578L142.917,100.709L142.81,103.715L142.76,104.896L142.686,106.669L142.63,107.995L142.562,109.614L142.518,110.638L142.437,112.566L142.404,113.823L142.404,113.823L142.782,113.73L143.234,114.225L144.007,115.12L144.667,114.877L145.213,115.046L145.213,115.05L145.602,115.213L145.78,114.641L146.657,115.497L146.728,116.324L148.051,116.385L149.1,117.012L149.916,116.817L150.611,117.475L150.932,117.342L151.28,116.853L152.341,117.161L152.524,116.973L152.799,117.931L153.549,118.067L153.358,118.702L153.967,118.99L154.976,118.079L155.66,118.676L156.098,118.577L156.248,119.153L156.703,119.236L157.625,118.606L157.691,119.656L158.286,119.75L158.274,119.122L158.651,119.083L159.075,118.394L159.135,118.355L159.486,119.03L160.02,119.176L160.679,118.647L161.035,118.773L160.815,119.113L162.201,119.922L163.176,119.751L163.832,119.084L165.143,119.156L165.618,118.926L166.708,118.523L166.769,118.817L168.099,118.882L168.61,118.308L168.948,118.479L169.548,118.967L170.005,118.984L170.59,119.758L171.249,120.033L172.688,120.451L173.256,121.081L174.087,120.754L175.148,120.991L175.207,122.884L175.242,124.588L175.261,125.52L175.287,126.788L175.329,128.817L175.356,130.139L175.529,131.591L176.321,132.49L176.832,133.438L176.626,134.225L177.576,135.48L177.509,136.115L177.926,136.376L178.023,136.948L178.288,136.884L178.242,137.478L178.582,137.921L178.215,138.064L178.322,139.009L177.667,140.883L177.324,141.241L177.589,141.929L177.346,142.176L177.192,142.664L177.558,143.229L177.506,144.526L176.764,145.795L176.354,146.144L176.874,146.954L175.685,147.103L173.9,147.894L173.796,147.939L171.445,149.17L172.003,148.525L173.23,147.93L172.789,147.84L171.558,148.174L171.894,146.688L171.245,146.581L170.876,147.163L170.541,147.134L169.53,146.449L170.227,147.163L170.027,148.034L170.659,148.373Z" + }, + { + "fill": "rgb(199, 233, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.053; geo: [object Object]; name: Utah", + "shape": "M90.123,58.027L89.691,60.848L89.324,63.033L89.054,64.726L94.004,65.497L94.254,65.534L98.967,66.187L98.646,68.509L98.246,71.401L97.725,75.169L97.575,76.261L97.453,77.14L96.612,82.952L96.383,85.293L96.131,87.12L95.745,89.774L95.295,93.033L90.279,92.325L86.35,91.686L82.869,91.14L76.972,90.147L75.097,89.813L69.087,88.696L69.859,84.676L70.573,81.063L71.097,78.237L71.249,77.547L72.356,71.788L72.82,69.373L73.089,67.974L74.252,62.112L75.52,55.515L80.591,56.427L84.65,57.146L84.929,57.201L87.876,57.678Z" + }, + { + "fill": "rgb(212, 238, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.041; geo: [object Object]; name: Utah", + "shape": "M90.123,58.027L89.691,60.848L89.324,63.033L89.054,64.726L94.004,65.497L94.254,65.534L98.967,66.187L98.646,68.509L98.246,71.401L97.725,75.169L97.575,76.261L97.453,77.14L96.612,82.952L96.383,85.293L96.131,87.12L95.745,89.774L95.295,93.033L90.279,92.325L86.35,91.686L82.869,91.14L76.972,90.147L75.097,89.813L69.087,88.696L69.859,84.676L70.573,81.063L71.097,78.237L71.249,77.547L72.356,71.788L72.82,69.373L73.089,67.974L74.252,62.112L75.52,55.515L80.591,56.427L84.65,57.146L84.929,57.201L87.876,57.678Z" + }, + { + "fill": "rgb(148, 213, 185)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.091; geo: [object Object]; name: Utah", + "shape": "M90.123,58.027L89.691,60.848L89.324,63.033L89.054,64.726L94.004,65.497L94.254,65.534L98.967,66.187L98.646,68.509L98.246,71.401L97.725,75.169L97.575,76.261L97.453,77.14L96.612,82.952L96.383,85.293L96.131,87.12L95.745,89.774L95.295,93.033L90.279,92.325L86.35,91.686L82.869,91.14L76.972,90.147L75.097,89.813L69.087,88.696L69.859,84.676L70.573,81.063L71.097,78.237L71.249,77.547L72.356,71.788L72.82,69.373L73.089,67.974L74.252,62.112L75.52,55.515L80.591,56.427L84.65,57.146L84.929,57.201L87.876,57.678Z" + }, + { + "fill": "rgb(145, 212, 185)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.093; geo: [object Object]; name: Utah", + "shape": "M90.123,58.027L89.691,60.848L89.324,63.033L89.054,64.726L94.004,65.497L94.254,65.534L98.967,66.187L98.646,68.509L98.246,71.401L97.725,75.169L97.575,76.261L97.453,77.14L96.612,82.952L96.383,85.293L96.131,87.12L95.745,89.774L95.295,93.033L90.279,92.325L86.35,91.686L82.869,91.14L76.972,90.147L75.097,89.813L69.087,88.696L69.859,84.676L70.573,81.063L71.097,78.237L71.249,77.547L72.356,71.788L72.82,69.373L73.089,67.974L74.252,62.112L75.52,55.515L80.591,56.427L84.65,57.146L84.929,57.201L87.876,57.678Z" + }, + { + "fill": "rgb(73, 182, 194)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.144; geo: [object Object]; name: Utah", + "shape": "M90.123,58.027L89.691,60.848L89.324,63.033L89.054,64.726L94.004,65.497L94.254,65.534L98.967,66.187L98.646,68.509L98.246,71.401L97.725,75.169L97.575,76.261L97.453,77.14L96.612,82.952L96.383,85.293L96.131,87.12L95.745,89.774L95.295,93.033L90.279,92.325L86.35,91.686L82.869,91.14L76.972,90.147L75.097,89.813L69.087,88.696L69.859,84.676L70.573,81.063L71.097,78.237L71.249,77.547L72.356,71.788L72.82,69.373L73.089,67.974L74.252,62.112L75.52,55.515L80.591,56.427L84.65,57.146L84.929,57.201L87.876,57.678Z" + }, + { + "fill": "rgb(72, 182, 194)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.145; geo: [object Object]; name: Utah", + "shape": "M90.123,58.027L89.691,60.848L89.324,63.033L89.054,64.726L94.004,65.497L94.254,65.534L98.967,66.187L98.646,68.509L98.246,71.401L97.725,75.169L97.575,76.261L97.453,77.14L96.612,82.952L96.383,85.293L96.131,87.12L95.745,89.774L95.295,93.033L90.279,92.325L86.35,91.686L82.869,91.14L76.972,90.147L75.097,89.813L69.087,88.696L69.859,84.676L70.573,81.063L71.097,78.237L71.249,77.547L72.356,71.788L72.82,69.373L73.089,67.974L74.252,62.112L75.52,55.515L80.591,56.427L84.65,57.146L84.929,57.201L87.876,57.678Z" + }, + { + "fill": "rgb(33, 120, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.213; geo: [object Object]; name: Utah", + "shape": "M90.123,58.027L89.691,60.848L89.324,63.033L89.054,64.726L94.004,65.497L94.254,65.534L98.967,66.187L98.646,68.509L98.246,71.401L97.725,75.169L97.575,76.261L97.453,77.14L96.612,82.952L96.383,85.293L96.131,87.12L95.745,89.774L95.295,93.033L90.279,92.325L86.35,91.686L82.869,91.14L76.972,90.147L75.097,89.813L69.087,88.696L69.859,84.676L70.573,81.063L71.097,78.237L71.249,77.547L72.356,71.788L72.82,69.373L73.089,67.974L74.252,62.112L75.52,55.515L80.591,56.427L84.65,57.146L84.929,57.201L87.876,57.678Z" + }, + { + "fill": "rgb(79, 185, 193)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.14; geo: [object Object]; name: Utah", + "shape": "M90.123,58.027L89.691,60.848L89.324,63.033L89.054,64.726L94.004,65.497L94.254,65.534L98.967,66.187L98.646,68.509L98.246,71.401L97.725,75.169L97.575,76.261L97.453,77.14L96.612,82.952L96.383,85.293L96.131,87.12L95.745,89.774L95.295,93.033L90.279,92.325L86.35,91.686L82.869,91.14L76.972,90.147L75.097,89.813L69.087,88.696L69.859,84.676L70.573,81.063L71.097,78.237L71.249,77.547L72.356,71.788L72.82,69.373L73.089,67.974L74.252,62.112L75.52,55.515L80.591,56.427L84.65,57.146L84.929,57.201L87.876,57.678Z" + }, + { + "fill": "rgb(210, 237, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.043; geo: [object Object]; name: Utah", + "shape": "M90.123,58.027L89.691,60.848L89.324,63.033L89.054,64.726L94.004,65.497L94.254,65.534L98.967,66.187L98.646,68.509L98.246,71.401L97.725,75.169L97.575,76.261L97.453,77.14L96.612,82.952L96.383,85.293L96.131,87.12L95.745,89.774L95.295,93.033L90.279,92.325L86.35,91.686L82.869,91.14L76.972,90.147L75.097,89.813L69.087,88.696L69.859,84.676L70.573,81.063L71.097,78.237L71.249,77.547L72.356,71.788L72.82,69.373L73.089,67.974L74.252,62.112L75.52,55.515L80.591,56.427L84.65,57.146L84.929,57.201L87.876,57.678Z" + }, + { + "fill": "rgb(215, 239, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.038; geo: [object Object]; name: Utah", + "shape": "M90.123,58.027L89.691,60.848L89.324,63.033L89.054,64.726L94.004,65.497L94.254,65.534L98.967,66.187L98.646,68.509L98.246,71.401L97.725,75.169L97.575,76.261L97.453,77.14L96.612,82.952L96.383,85.293L96.131,87.12L95.745,89.774L95.295,93.033L90.279,92.325L86.35,91.686L82.869,91.14L76.972,90.147L75.097,89.813L69.087,88.696L69.859,84.676L70.573,81.063L71.097,78.237L71.249,77.547L72.356,71.788L72.82,69.373L73.089,67.974L74.252,62.112L75.52,55.515L80.591,56.427L84.65,57.146L84.929,57.201L87.876,57.678Z" + }, + { + "fill": "rgb(195, 231, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.057; geo: [object Object]; name: Vermont", + "shape": "M274.237,30.021L277.252,29.251L279.052,28.743L279.259,29.394L278.9,30.578L279.623,31.579L279.58,32.158L278.882,33.01L278.631,33.478L277.779,33.885L278.022,34.969L278.189,35.478L277.951,36.074L277.898,37.678L277.556,38.232L277.594,38.943L277.407,39.192L277.713,41.464L277.747,41.956L278.053,42.951L277.77,43.33L277.907,44.375L278.432,44.807L276.178,45.285L275.732,45.384L274.58,45.633L274.212,44.346L273.704,41.893L273.357,40.323L272.986,39.903L272.642,40.397L272.383,39.994L272.499,39.147L272.345,38.804L271.87,37.434L271.684,36.3L271.921,35.748L271.745,34.589L271.355,33.926L271.228,33.841L270.683,32.03L270.602,30.902L271.292,30.716Z" + }, + { + "fill": "rgb(192, 230, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.06; geo: [object Object]; name: Vermont", + "shape": "M274.237,30.021L277.252,29.251L279.052,28.743L279.259,29.394L278.9,30.578L279.623,31.579L279.58,32.158L278.882,33.01L278.631,33.478L277.779,33.885L278.022,34.969L278.189,35.478L277.951,36.074L277.898,37.678L277.556,38.232L277.594,38.943L277.407,39.192L277.713,41.464L277.747,41.956L278.053,42.951L277.77,43.33L277.907,44.375L278.432,44.807L276.178,45.285L275.732,45.384L274.58,45.633L274.212,44.346L273.704,41.893L273.357,40.323L272.986,39.903L272.642,40.397L272.383,39.994L272.499,39.147L272.345,38.804L271.87,37.434L271.684,36.3L271.921,35.748L271.745,34.589L271.355,33.926L271.228,33.841L270.683,32.03L270.602,30.902L271.292,30.716Z" + }, + { + "fill": "rgb(131, 207, 187)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.102; geo: [object Object]; name: Vermont", + "shape": "M274.237,30.021L277.252,29.251L279.052,28.743L279.259,29.394L278.9,30.578L279.623,31.579L279.58,32.158L278.882,33.01L278.631,33.478L277.779,33.885L278.022,34.969L278.189,35.478L277.951,36.074L277.898,37.678L277.556,38.232L277.594,38.943L277.407,39.192L277.713,41.464L277.747,41.956L278.053,42.951L277.77,43.33L277.907,44.375L278.432,44.807L276.178,45.285L275.732,45.384L274.58,45.633L274.212,44.346L273.704,41.893L273.357,40.323L272.986,39.903L272.642,40.397L272.383,39.994L272.499,39.147L272.345,38.804L271.87,37.434L271.684,36.3L271.921,35.748L271.745,34.589L271.355,33.926L271.228,33.841L270.683,32.03L270.602,30.902L271.292,30.716Z" + }, + { + "fill": "rgb(130, 206, 187)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.103; geo: [object Object]; name: Vermont", + "shape": "M274.237,30.021L277.252,29.251L279.052,28.743L279.259,29.394L278.9,30.578L279.623,31.579L279.58,32.158L278.882,33.01L278.631,33.478L277.779,33.885L278.022,34.969L278.189,35.478L277.951,36.074L277.898,37.678L277.556,38.232L277.594,38.943L277.407,39.192L277.713,41.464L277.747,41.956L278.053,42.951L277.77,43.33L277.907,44.375L278.432,44.807L276.178,45.285L275.732,45.384L274.58,45.633L274.212,44.346L273.704,41.893L273.357,40.323L272.986,39.903L272.642,40.397L272.383,39.994L272.499,39.147L272.345,38.804L271.87,37.434L271.684,36.3L271.921,35.748L271.745,34.589L271.355,33.926L271.228,33.841L270.683,32.03L270.602,30.902L271.292,30.716Z" + }, + { + "fill": "rgb(75, 183, 193)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.143; geo: [object Object]; name: Vermont", + "shape": "M274.237,30.021L277.252,29.251L279.052,28.743L279.259,29.394L278.9,30.578L279.623,31.579L279.58,32.158L278.882,33.01L278.631,33.478L277.779,33.885L278.022,34.969L278.189,35.478L277.951,36.074L277.898,37.678L277.556,38.232L277.594,38.943L277.407,39.192L277.713,41.464L277.747,41.956L278.053,42.951L277.77,43.33L277.907,44.375L278.432,44.807L276.178,45.285L275.732,45.384L274.58,45.633L274.212,44.346L273.704,41.893L273.357,40.323L272.986,39.903L272.642,40.397L272.383,39.994L272.499,39.147L272.345,38.804L271.87,37.434L271.684,36.3L271.921,35.748L271.745,34.589L271.355,33.926L271.228,33.841L270.683,32.03L270.602,30.902L271.292,30.716Z" + }, + { + "fill": "rgb(81, 186, 193)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.138; geo: [object Object]; name: Vermont", + "shape": "M274.237,30.021L277.252,29.251L279.052,28.743L279.259,29.394L278.9,30.578L279.623,31.579L279.58,32.158L278.882,33.01L278.631,33.478L277.779,33.885L278.022,34.969L278.189,35.478L277.951,36.074L277.898,37.678L277.556,38.232L277.594,38.943L277.407,39.192L277.713,41.464L277.747,41.956L278.053,42.951L277.77,43.33L277.907,44.375L278.432,44.807L276.178,45.285L275.732,45.384L274.58,45.633L274.212,44.346L273.704,41.893L273.357,40.323L272.986,39.903L272.642,40.397L272.383,39.994L272.499,39.147L272.345,38.804L271.87,37.434L271.684,36.3L271.921,35.748L271.745,34.589L271.355,33.926L271.228,33.841L270.683,32.03L270.602,30.902L271.292,30.716Z" + }, + { + "fill": "rgb(36, 138, 186)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.196; geo: [object Object]; name: Vermont", + "shape": "M274.237,30.021L277.252,29.251L279.052,28.743L279.259,29.394L278.9,30.578L279.623,31.579L279.58,32.158L278.882,33.01L278.631,33.478L277.779,33.885L278.022,34.969L278.189,35.478L277.951,36.074L277.898,37.678L277.556,38.232L277.594,38.943L277.407,39.192L277.713,41.464L277.747,41.956L278.053,42.951L277.77,43.33L277.907,44.375L278.432,44.807L276.178,45.285L275.732,45.384L274.58,45.633L274.212,44.346L273.704,41.893L273.357,40.323L272.986,39.903L272.642,40.397L272.383,39.994L272.499,39.147L272.345,38.804L271.87,37.434L271.684,36.3L271.921,35.748L271.745,34.589L271.355,33.926L271.228,33.841L270.683,32.03L270.602,30.902L271.292,30.716Z" + }, + { + "fill": "rgb(98, 194, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.125; geo: [object Object]; name: Vermont", + "shape": "M274.237,30.021L277.252,29.251L279.052,28.743L279.259,29.394L278.9,30.578L279.623,31.579L279.58,32.158L278.882,33.01L278.631,33.478L277.779,33.885L278.022,34.969L278.189,35.478L277.951,36.074L277.898,37.678L277.556,38.232L277.594,38.943L277.407,39.192L277.713,41.464L277.747,41.956L278.053,42.951L277.77,43.33L277.907,44.375L278.432,44.807L276.178,45.285L275.732,45.384L274.58,45.633L274.212,44.346L273.704,41.893L273.357,40.323L272.986,39.903L272.642,40.397L272.383,39.994L272.499,39.147L272.345,38.804L271.87,37.434L271.684,36.3L271.921,35.748L271.745,34.589L271.355,33.926L271.228,33.841L270.683,32.03L270.602,30.902L271.292,30.716Z" + }, + { + "fill": "rgb(211, 238, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.042; geo: [object Object]; name: Vermont", + "shape": "M274.237,30.021L277.252,29.251L279.052,28.743L279.259,29.394L278.9,30.578L279.623,31.579L279.58,32.158L278.882,33.01L278.631,33.478L277.779,33.885L278.022,34.969L278.189,35.478L277.951,36.074L277.898,37.678L277.556,38.232L277.594,38.943L277.407,39.192L277.713,41.464L277.747,41.956L278.053,42.951L277.77,43.33L277.907,44.375L278.432,44.807L276.178,45.285L275.732,45.384L274.58,45.633L274.212,44.346L273.704,41.893L273.357,40.323L272.986,39.903L272.642,40.397L272.383,39.994L272.499,39.147L272.345,38.804L271.87,37.434L271.684,36.3L271.921,35.748L271.745,34.589L271.355,33.926L271.228,33.841L270.683,32.03L270.602,30.902L271.292,30.716Z" + }, + { + "fill": "rgb(218, 241, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.035; geo: [object Object]; name: Vermont", + "shape": "M274.237,30.021L277.252,29.251L279.052,28.743L279.259,29.394L278.9,30.578L279.623,31.579L279.58,32.158L278.882,33.01L278.631,33.478L277.779,33.885L278.022,34.969L278.189,35.478L277.951,36.074L277.898,37.678L277.556,38.232L277.594,38.943L277.407,39.192L277.713,41.464L277.747,41.956L278.053,42.951L277.77,43.33L277.907,44.375L278.432,44.807L276.178,45.285L275.732,45.384L274.58,45.633L274.212,44.346L273.704,41.893L273.357,40.323L272.986,39.903L272.642,40.397L272.383,39.994L272.499,39.147L272.345,38.804L271.87,37.434L271.684,36.3L271.921,35.748L271.745,34.589L271.355,33.926L271.228,33.841L270.683,32.03L270.602,30.902L271.292,30.716Z" + }, + { + "fill": "rgb(193, 231, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.059; geo: [object Object]; name: Virginia", + "shape": "M271.115,80.099L271.136,80.195L270.761,82.452L270.569,82.814L269.991,83.095L269.944,83.325L269.664,84.186L269.756,85.699L269.131,84.958L269.218,82.916L269.674,82.788L269.152,82.881L269.609,81.324L270,81.083L270.15,79.643L270.168,79.639L271.386,79.231ZM266.957,82.912L266.095,82.943L265.334,81.964L265.163,82.069L263.627,81.043L263.321,80.478L262.567,80.063L262.55,80.077L262.813,80.526L263.37,80.531L263.492,81.134L264.291,81.569L265.033,82.278L266.026,83.169L267.299,83.256L266.737,83.709L266.013,83.477L266.666,83.735L267.041,83.589L267.709,84.007L267.565,84.795L266.713,84.145L267.249,85.323L266.678,85.557L265.362,84.436L264.707,83.597L263.9,83.896L263.845,83.818L263.9,83.896L264.632,83.891L265.07,84.429L265.091,84.436L265.62,84.94L265.62,84.94L266.232,85.464L267.139,85.632L267.292,86.176L267.539,85.965L267.497,86.323L268.107,86.355L267.63,87.142L266.211,86.486L266.247,86.193L265.972,85.893L265.433,86.197L264.788,85.98L264.58,85.15L264.729,85.881L264.422,86.088L263.95,85.668L262.631,85.844L262.648,85.443L262.291,85.492L262.394,86.01L262.731,86.054L263.547,85.782L264.075,86.192L265.192,86.154L265.932,86.455L266.182,87.098L267.17,87.458L267.034,87.832L267.666,87.778L267.837,88.132L267.798,88.315L268.354,88.084L268.593,88.018L268.703,87.98L268.762,87.986L268.108,87.842L267.984,87.25L268.806,87.363L269.775,87.154L270.976,89.471L270.844,89.499L270.345,88.449L270.376,89.6L270.207,89.636L270.095,89.66L269.626,89.759L268.633,89.969L267.714,90.161L267.451,90.216L265.478,90.61L265.489,90.664L264.191,90.912L263.498,91.061L261.033,91.539L260.338,91.681L259.568,91.832L258.118,92.107L257.423,92.249L255.974,92.525L255.634,92.587L253.843,92.911L253.428,92.985L252.768,93.103L252.108,93.223L251.881,93.263L250.824,93.443L249.16,93.721L249.028,93.743L246.978,94.031L246.082,94.13L244.889,94.313L244.545,94.349L242.148,94.639L240.43,94.811L240.557,94.63L239.608,94.755L237.942,95.138L237.43,95.206L237.165,95.244L235.498,95.495L234.322,95.66L233.507,95.777L230.942,96.098L229.857,96.215L230.939,95.636L232.591,94.867L232.812,94.087L233.798,93.691L233.778,93.135L234.468,92.572L234.482,91.986L235.151,91.425L235.221,91.374L236.387,90.549L236.404,90.535L237.95,88.679L238.181,88.817L237.872,89.058L238.336,89.857L239.432,90.513L240.402,90.579L241.317,89.54L242.137,90.119L243.349,89.522L243.966,89.055L243.84,88.511L243.842,88.522L244.37,88.82L245.576,87.868L245.847,88.229L246.668,87.51L246.456,87.158L246.944,86.641L246.481,86.276L246.948,84.958L247.415,84.333L247.787,83.495L247.956,82.587L248.407,82.004L248.289,81.759L248.77,80.808L248.786,79.704L249.405,79.885L249.824,80.443L250.706,80.601L251.088,80.083L251.61,78.03L251.814,77.386L252.56,77.85L252.829,76.947L253.155,76.769L253.861,75.591L254.003,75.343L254.433,74.722L254.243,74.11L254.35,72.676L255.041,73.064L256.18,73.717L257.385,74.404L257.703,73.038L257.897,72.974L258.483,72.989L259.135,73.432L258.91,74.106L259.311,74.417L260.026,74.405L261.242,75.004L261.387,75.16L261.57,75.22L261.572,75.23L261.575,75.245L261.576,75.252L261.577,75.259L261.599,75.273L261.6,75.277L261.604,75.294L261.642,75.298L261.644,75.305L261.685,75.323L261.732,75.554L261.73,75.547L261.732,75.554L261.782,75.897L261.913,76.357L261.227,77.193L260.957,76.89L260.883,78.044L261.158,79.039L260.978,79.187L262.517,78.588L262.592,79.338L262.901,79.732L264.408,79.71L265.369,80.098L265.231,80.539L265.567,80.403L266.996,80.899L267.176,81.389L266.589,81.431L266.608,81.431L267.106,82.337L266.845,82.381Z" + }, + { + "fill": "rgb(211, 238, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.042; geo: [object Object]; name: Virginia", + "shape": "M271.115,80.099L271.136,80.195L270.761,82.452L270.569,82.814L269.991,83.095L269.944,83.325L269.664,84.186L269.756,85.699L269.131,84.958L269.218,82.916L269.674,82.788L269.152,82.881L269.609,81.324L270,81.083L270.15,79.643L270.168,79.639L271.386,79.231ZM266.957,82.912L266.095,82.943L265.334,81.964L265.163,82.069L263.627,81.043L263.321,80.478L262.567,80.063L262.55,80.077L262.813,80.526L263.37,80.531L263.492,81.134L264.291,81.569L265.033,82.278L266.026,83.169L267.299,83.256L266.737,83.709L266.013,83.477L266.666,83.735L267.041,83.589L267.709,84.007L267.565,84.795L266.713,84.145L267.249,85.323L266.678,85.557L265.362,84.436L264.707,83.597L263.9,83.896L263.845,83.818L263.9,83.896L264.632,83.891L265.07,84.429L265.091,84.436L265.62,84.94L265.62,84.94L266.232,85.464L267.139,85.632L267.292,86.176L267.539,85.965L267.497,86.323L268.107,86.355L267.63,87.142L266.211,86.486L266.247,86.193L265.972,85.893L265.433,86.197L264.788,85.98L264.58,85.15L264.729,85.881L264.422,86.088L263.95,85.668L262.631,85.844L262.648,85.443L262.291,85.492L262.394,86.01L262.731,86.054L263.547,85.782L264.075,86.192L265.192,86.154L265.932,86.455L266.182,87.098L267.17,87.458L267.034,87.832L267.666,87.778L267.837,88.132L267.798,88.315L268.354,88.084L268.593,88.018L268.703,87.98L268.762,87.986L268.108,87.842L267.984,87.25L268.806,87.363L269.775,87.154L270.976,89.471L270.844,89.499L270.345,88.449L270.376,89.6L270.207,89.636L270.095,89.66L269.626,89.759L268.633,89.969L267.714,90.161L267.451,90.216L265.478,90.61L265.489,90.664L264.191,90.912L263.498,91.061L261.033,91.539L260.338,91.681L259.568,91.832L258.118,92.107L257.423,92.249L255.974,92.525L255.634,92.587L253.843,92.911L253.428,92.985L252.768,93.103L252.108,93.223L251.881,93.263L250.824,93.443L249.16,93.721L249.028,93.743L246.978,94.031L246.082,94.13L244.889,94.313L244.545,94.349L242.148,94.639L240.43,94.811L240.557,94.63L239.608,94.755L237.942,95.138L237.43,95.206L237.165,95.244L235.498,95.495L234.322,95.66L233.507,95.777L230.942,96.098L229.857,96.215L230.939,95.636L232.591,94.867L232.812,94.087L233.798,93.691L233.778,93.135L234.468,92.572L234.482,91.986L235.151,91.425L235.221,91.374L236.387,90.549L236.404,90.535L237.95,88.679L238.181,88.817L237.872,89.058L238.336,89.857L239.432,90.513L240.402,90.579L241.317,89.54L242.137,90.119L243.349,89.522L243.966,89.055L243.84,88.511L243.842,88.522L244.37,88.82L245.576,87.868L245.847,88.229L246.668,87.51L246.456,87.158L246.944,86.641L246.481,86.276L246.948,84.958L247.415,84.333L247.787,83.495L247.956,82.587L248.407,82.004L248.289,81.759L248.77,80.808L248.786,79.704L249.405,79.885L249.824,80.443L250.706,80.601L251.088,80.083L251.61,78.03L251.814,77.386L252.56,77.85L252.829,76.947L253.155,76.769L253.861,75.591L254.003,75.343L254.433,74.722L254.243,74.11L254.35,72.676L255.041,73.064L256.18,73.717L257.385,74.404L257.703,73.038L257.897,72.974L258.483,72.989L259.135,73.432L258.91,74.106L259.311,74.417L260.026,74.405L261.242,75.004L261.387,75.16L261.57,75.22L261.572,75.23L261.575,75.245L261.576,75.252L261.577,75.259L261.599,75.273L261.6,75.277L261.604,75.294L261.642,75.298L261.644,75.305L261.685,75.323L261.732,75.554L261.73,75.547L261.732,75.554L261.782,75.897L261.913,76.357L261.227,77.193L260.957,76.89L260.883,78.044L261.158,79.039L260.978,79.187L262.517,78.588L262.592,79.338L262.901,79.732L264.408,79.71L265.369,80.098L265.231,80.539L265.567,80.403L266.996,80.899L267.176,81.389L266.589,81.431L266.608,81.431L267.106,82.337L266.845,82.381Z" + }, + { + "fill": "rgb(155, 216, 184)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.086; geo: [object Object]; name: Virginia", + "shape": "M271.115,80.099L271.136,80.195L270.761,82.452L270.569,82.814L269.991,83.095L269.944,83.325L269.664,84.186L269.756,85.699L269.131,84.958L269.218,82.916L269.674,82.788L269.152,82.881L269.609,81.324L270,81.083L270.15,79.643L270.168,79.639L271.386,79.231ZM266.957,82.912L266.095,82.943L265.334,81.964L265.163,82.069L263.627,81.043L263.321,80.478L262.567,80.063L262.55,80.077L262.813,80.526L263.37,80.531L263.492,81.134L264.291,81.569L265.033,82.278L266.026,83.169L267.299,83.256L266.737,83.709L266.013,83.477L266.666,83.735L267.041,83.589L267.709,84.007L267.565,84.795L266.713,84.145L267.249,85.323L266.678,85.557L265.362,84.436L264.707,83.597L263.9,83.896L263.845,83.818L263.9,83.896L264.632,83.891L265.07,84.429L265.091,84.436L265.62,84.94L265.62,84.94L266.232,85.464L267.139,85.632L267.292,86.176L267.539,85.965L267.497,86.323L268.107,86.355L267.63,87.142L266.211,86.486L266.247,86.193L265.972,85.893L265.433,86.197L264.788,85.98L264.58,85.15L264.729,85.881L264.422,86.088L263.95,85.668L262.631,85.844L262.648,85.443L262.291,85.492L262.394,86.01L262.731,86.054L263.547,85.782L264.075,86.192L265.192,86.154L265.932,86.455L266.182,87.098L267.17,87.458L267.034,87.832L267.666,87.778L267.837,88.132L267.798,88.315L268.354,88.084L268.593,88.018L268.703,87.98L268.762,87.986L268.108,87.842L267.984,87.25L268.806,87.363L269.775,87.154L270.976,89.471L270.844,89.499L270.345,88.449L270.376,89.6L270.207,89.636L270.095,89.66L269.626,89.759L268.633,89.969L267.714,90.161L267.451,90.216L265.478,90.61L265.489,90.664L264.191,90.912L263.498,91.061L261.033,91.539L260.338,91.681L259.568,91.832L258.118,92.107L257.423,92.249L255.974,92.525L255.634,92.587L253.843,92.911L253.428,92.985L252.768,93.103L252.108,93.223L251.881,93.263L250.824,93.443L249.16,93.721L249.028,93.743L246.978,94.031L246.082,94.13L244.889,94.313L244.545,94.349L242.148,94.639L240.43,94.811L240.557,94.63L239.608,94.755L237.942,95.138L237.43,95.206L237.165,95.244L235.498,95.495L234.322,95.66L233.507,95.777L230.942,96.098L229.857,96.215L230.939,95.636L232.591,94.867L232.812,94.087L233.798,93.691L233.778,93.135L234.468,92.572L234.482,91.986L235.151,91.425L235.221,91.374L236.387,90.549L236.404,90.535L237.95,88.679L238.181,88.817L237.872,89.058L238.336,89.857L239.432,90.513L240.402,90.579L241.317,89.54L242.137,90.119L243.349,89.522L243.966,89.055L243.84,88.511L243.842,88.522L244.37,88.82L245.576,87.868L245.847,88.229L246.668,87.51L246.456,87.158L246.944,86.641L246.481,86.276L246.948,84.958L247.415,84.333L247.787,83.495L247.956,82.587L248.407,82.004L248.289,81.759L248.77,80.808L248.786,79.704L249.405,79.885L249.824,80.443L250.706,80.601L251.088,80.083L251.61,78.03L251.814,77.386L252.56,77.85L252.829,76.947L253.155,76.769L253.861,75.591L254.003,75.343L254.433,74.722L254.243,74.11L254.35,72.676L255.041,73.064L256.18,73.717L257.385,74.404L257.703,73.038L257.897,72.974L258.483,72.989L259.135,73.432L258.91,74.106L259.311,74.417L260.026,74.405L261.242,75.004L261.387,75.16L261.57,75.22L261.572,75.23L261.575,75.245L261.576,75.252L261.577,75.259L261.599,75.273L261.6,75.277L261.604,75.294L261.642,75.298L261.644,75.305L261.685,75.323L261.732,75.554L261.73,75.547L261.732,75.554L261.782,75.897L261.913,76.357L261.227,77.193L260.957,76.89L260.883,78.044L261.158,79.039L260.978,79.187L262.517,78.588L262.592,79.338L262.901,79.732L264.408,79.71L265.369,80.098L265.231,80.539L265.567,80.403L266.996,80.899L267.176,81.389L266.589,81.431L266.608,81.431L267.106,82.337L266.845,82.381Z" + }, + { + "fill": "rgb(152, 215, 185)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.088; geo: [object Object]; name: Virginia", + "shape": "M271.115,80.099L271.136,80.195L270.761,82.452L270.569,82.814L269.991,83.095L269.944,83.325L269.664,84.186L269.756,85.699L269.131,84.958L269.218,82.916L269.674,82.788L269.152,82.881L269.609,81.324L270,81.083L270.15,79.643L270.168,79.639L271.386,79.231ZM266.957,82.912L266.095,82.943L265.334,81.964L265.163,82.069L263.627,81.043L263.321,80.478L262.567,80.063L262.55,80.077L262.813,80.526L263.37,80.531L263.492,81.134L264.291,81.569L265.033,82.278L266.026,83.169L267.299,83.256L266.737,83.709L266.013,83.477L266.666,83.735L267.041,83.589L267.709,84.007L267.565,84.795L266.713,84.145L267.249,85.323L266.678,85.557L265.362,84.436L264.707,83.597L263.9,83.896L263.845,83.818L263.9,83.896L264.632,83.891L265.07,84.429L265.091,84.436L265.62,84.94L265.62,84.94L266.232,85.464L267.139,85.632L267.292,86.176L267.539,85.965L267.497,86.323L268.107,86.355L267.63,87.142L266.211,86.486L266.247,86.193L265.972,85.893L265.433,86.197L264.788,85.98L264.58,85.15L264.729,85.881L264.422,86.088L263.95,85.668L262.631,85.844L262.648,85.443L262.291,85.492L262.394,86.01L262.731,86.054L263.547,85.782L264.075,86.192L265.192,86.154L265.932,86.455L266.182,87.098L267.17,87.458L267.034,87.832L267.666,87.778L267.837,88.132L267.798,88.315L268.354,88.084L268.593,88.018L268.703,87.98L268.762,87.986L268.108,87.842L267.984,87.25L268.806,87.363L269.775,87.154L270.976,89.471L270.844,89.499L270.345,88.449L270.376,89.6L270.207,89.636L270.095,89.66L269.626,89.759L268.633,89.969L267.714,90.161L267.451,90.216L265.478,90.61L265.489,90.664L264.191,90.912L263.498,91.061L261.033,91.539L260.338,91.681L259.568,91.832L258.118,92.107L257.423,92.249L255.974,92.525L255.634,92.587L253.843,92.911L253.428,92.985L252.768,93.103L252.108,93.223L251.881,93.263L250.824,93.443L249.16,93.721L249.028,93.743L246.978,94.031L246.082,94.13L244.889,94.313L244.545,94.349L242.148,94.639L240.43,94.811L240.557,94.63L239.608,94.755L237.942,95.138L237.43,95.206L237.165,95.244L235.498,95.495L234.322,95.66L233.507,95.777L230.942,96.098L229.857,96.215L230.939,95.636L232.591,94.867L232.812,94.087L233.798,93.691L233.778,93.135L234.468,92.572L234.482,91.986L235.151,91.425L235.221,91.374L236.387,90.549L236.404,90.535L237.95,88.679L238.181,88.817L237.872,89.058L238.336,89.857L239.432,90.513L240.402,90.579L241.317,89.54L242.137,90.119L243.349,89.522L243.966,89.055L243.84,88.511L243.842,88.522L244.37,88.82L245.576,87.868L245.847,88.229L246.668,87.51L246.456,87.158L246.944,86.641L246.481,86.276L246.948,84.958L247.415,84.333L247.787,83.495L247.956,82.587L248.407,82.004L248.289,81.759L248.77,80.808L248.786,79.704L249.405,79.885L249.824,80.443L250.706,80.601L251.088,80.083L251.61,78.03L251.814,77.386L252.56,77.85L252.829,76.947L253.155,76.769L253.861,75.591L254.003,75.343L254.433,74.722L254.243,74.11L254.35,72.676L255.041,73.064L256.18,73.717L257.385,74.404L257.703,73.038L257.897,72.974L258.483,72.989L259.135,73.432L258.91,74.106L259.311,74.417L260.026,74.405L261.242,75.004L261.387,75.16L261.57,75.22L261.572,75.23L261.575,75.245L261.576,75.252L261.577,75.259L261.599,75.273L261.6,75.277L261.604,75.294L261.642,75.298L261.644,75.305L261.685,75.323L261.732,75.554L261.73,75.547L261.732,75.554L261.782,75.897L261.913,76.357L261.227,77.193L260.957,76.89L260.883,78.044L261.158,79.039L260.978,79.187L262.517,78.588L262.592,79.338L262.901,79.732L264.408,79.71L265.369,80.098L265.231,80.539L265.567,80.403L266.996,80.899L267.176,81.389L266.589,81.431L266.608,81.431L267.106,82.337L266.845,82.381Z" + }, + { + "fill": "rgb(99, 194, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.124; geo: [object Object]; name: Virginia", + "shape": "M271.115,80.099L271.136,80.195L270.761,82.452L270.569,82.814L269.991,83.095L269.944,83.325L269.664,84.186L269.756,85.699L269.131,84.958L269.218,82.916L269.674,82.788L269.152,82.881L269.609,81.324L270,81.083L270.15,79.643L270.168,79.639L271.386,79.231ZM266.957,82.912L266.095,82.943L265.334,81.964L265.163,82.069L263.627,81.043L263.321,80.478L262.567,80.063L262.55,80.077L262.813,80.526L263.37,80.531L263.492,81.134L264.291,81.569L265.033,82.278L266.026,83.169L267.299,83.256L266.737,83.709L266.013,83.477L266.666,83.735L267.041,83.589L267.709,84.007L267.565,84.795L266.713,84.145L267.249,85.323L266.678,85.557L265.362,84.436L264.707,83.597L263.9,83.896L263.845,83.818L263.9,83.896L264.632,83.891L265.07,84.429L265.091,84.436L265.62,84.94L265.62,84.94L266.232,85.464L267.139,85.632L267.292,86.176L267.539,85.965L267.497,86.323L268.107,86.355L267.63,87.142L266.211,86.486L266.247,86.193L265.972,85.893L265.433,86.197L264.788,85.98L264.58,85.15L264.729,85.881L264.422,86.088L263.95,85.668L262.631,85.844L262.648,85.443L262.291,85.492L262.394,86.01L262.731,86.054L263.547,85.782L264.075,86.192L265.192,86.154L265.932,86.455L266.182,87.098L267.17,87.458L267.034,87.832L267.666,87.778L267.837,88.132L267.798,88.315L268.354,88.084L268.593,88.018L268.703,87.98L268.762,87.986L268.108,87.842L267.984,87.25L268.806,87.363L269.775,87.154L270.976,89.471L270.844,89.499L270.345,88.449L270.376,89.6L270.207,89.636L270.095,89.66L269.626,89.759L268.633,89.969L267.714,90.161L267.451,90.216L265.478,90.61L265.489,90.664L264.191,90.912L263.498,91.061L261.033,91.539L260.338,91.681L259.568,91.832L258.118,92.107L257.423,92.249L255.974,92.525L255.634,92.587L253.843,92.911L253.428,92.985L252.768,93.103L252.108,93.223L251.881,93.263L250.824,93.443L249.16,93.721L249.028,93.743L246.978,94.031L246.082,94.13L244.889,94.313L244.545,94.349L242.148,94.639L240.43,94.811L240.557,94.63L239.608,94.755L237.942,95.138L237.43,95.206L237.165,95.244L235.498,95.495L234.322,95.66L233.507,95.777L230.942,96.098L229.857,96.215L230.939,95.636L232.591,94.867L232.812,94.087L233.798,93.691L233.778,93.135L234.468,92.572L234.482,91.986L235.151,91.425L235.221,91.374L236.387,90.549L236.404,90.535L237.95,88.679L238.181,88.817L237.872,89.058L238.336,89.857L239.432,90.513L240.402,90.579L241.317,89.54L242.137,90.119L243.349,89.522L243.966,89.055L243.84,88.511L243.842,88.522L244.37,88.82L245.576,87.868L245.847,88.229L246.668,87.51L246.456,87.158L246.944,86.641L246.481,86.276L246.948,84.958L247.415,84.333L247.787,83.495L247.956,82.587L248.407,82.004L248.289,81.759L248.77,80.808L248.786,79.704L249.405,79.885L249.824,80.443L250.706,80.601L251.088,80.083L251.61,78.03L251.814,77.386L252.56,77.85L252.829,76.947L253.155,76.769L253.861,75.591L254.003,75.343L254.433,74.722L254.243,74.11L254.35,72.676L255.041,73.064L256.18,73.717L257.385,74.404L257.703,73.038L257.897,72.974L258.483,72.989L259.135,73.432L258.91,74.106L259.311,74.417L260.026,74.405L261.242,75.004L261.387,75.16L261.57,75.22L261.572,75.23L261.575,75.245L261.576,75.252L261.577,75.259L261.599,75.273L261.6,75.277L261.604,75.294L261.642,75.298L261.644,75.305L261.685,75.323L261.732,75.554L261.73,75.547L261.732,75.554L261.782,75.897L261.913,76.357L261.227,77.193L260.957,76.89L260.883,78.044L261.158,79.039L260.978,79.187L262.517,78.588L262.592,79.338L262.901,79.732L264.408,79.71L265.369,80.098L265.231,80.539L265.567,80.403L266.996,80.899L267.176,81.389L266.589,81.431L266.608,81.431L267.106,82.337L266.845,82.381Z" + }, + { + "fill": "rgb(96, 193, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.126; geo: [object Object]; name: Virginia", + "shape": "M271.115,80.099L271.136,80.195L270.761,82.452L270.569,82.814L269.991,83.095L269.944,83.325L269.664,84.186L269.756,85.699L269.131,84.958L269.218,82.916L269.674,82.788L269.152,82.881L269.609,81.324L270,81.083L270.15,79.643L270.168,79.639L271.386,79.231ZM266.957,82.912L266.095,82.943L265.334,81.964L265.163,82.069L263.627,81.043L263.321,80.478L262.567,80.063L262.55,80.077L262.813,80.526L263.37,80.531L263.492,81.134L264.291,81.569L265.033,82.278L266.026,83.169L267.299,83.256L266.737,83.709L266.013,83.477L266.666,83.735L267.041,83.589L267.709,84.007L267.565,84.795L266.713,84.145L267.249,85.323L266.678,85.557L265.362,84.436L264.707,83.597L263.9,83.896L263.845,83.818L263.9,83.896L264.632,83.891L265.07,84.429L265.091,84.436L265.62,84.94L265.62,84.94L266.232,85.464L267.139,85.632L267.292,86.176L267.539,85.965L267.497,86.323L268.107,86.355L267.63,87.142L266.211,86.486L266.247,86.193L265.972,85.893L265.433,86.197L264.788,85.98L264.58,85.15L264.729,85.881L264.422,86.088L263.95,85.668L262.631,85.844L262.648,85.443L262.291,85.492L262.394,86.01L262.731,86.054L263.547,85.782L264.075,86.192L265.192,86.154L265.932,86.455L266.182,87.098L267.17,87.458L267.034,87.832L267.666,87.778L267.837,88.132L267.798,88.315L268.354,88.084L268.593,88.018L268.703,87.98L268.762,87.986L268.108,87.842L267.984,87.25L268.806,87.363L269.775,87.154L270.976,89.471L270.844,89.499L270.345,88.449L270.376,89.6L270.207,89.636L270.095,89.66L269.626,89.759L268.633,89.969L267.714,90.161L267.451,90.216L265.478,90.61L265.489,90.664L264.191,90.912L263.498,91.061L261.033,91.539L260.338,91.681L259.568,91.832L258.118,92.107L257.423,92.249L255.974,92.525L255.634,92.587L253.843,92.911L253.428,92.985L252.768,93.103L252.108,93.223L251.881,93.263L250.824,93.443L249.16,93.721L249.028,93.743L246.978,94.031L246.082,94.13L244.889,94.313L244.545,94.349L242.148,94.639L240.43,94.811L240.557,94.63L239.608,94.755L237.942,95.138L237.43,95.206L237.165,95.244L235.498,95.495L234.322,95.66L233.507,95.777L230.942,96.098L229.857,96.215L230.939,95.636L232.591,94.867L232.812,94.087L233.798,93.691L233.778,93.135L234.468,92.572L234.482,91.986L235.151,91.425L235.221,91.374L236.387,90.549L236.404,90.535L237.95,88.679L238.181,88.817L237.872,89.058L238.336,89.857L239.432,90.513L240.402,90.579L241.317,89.54L242.137,90.119L243.349,89.522L243.966,89.055L243.84,88.511L243.842,88.522L244.37,88.82L245.576,87.868L245.847,88.229L246.668,87.51L246.456,87.158L246.944,86.641L246.481,86.276L246.948,84.958L247.415,84.333L247.787,83.495L247.956,82.587L248.407,82.004L248.289,81.759L248.77,80.808L248.786,79.704L249.405,79.885L249.824,80.443L250.706,80.601L251.088,80.083L251.61,78.03L251.814,77.386L252.56,77.85L252.829,76.947L253.155,76.769L253.861,75.591L254.003,75.343L254.433,74.722L254.243,74.11L254.35,72.676L255.041,73.064L256.18,73.717L257.385,74.404L257.703,73.038L257.897,72.974L258.483,72.989L259.135,73.432L258.91,74.106L259.311,74.417L260.026,74.405L261.242,75.004L261.387,75.16L261.57,75.22L261.572,75.23L261.575,75.245L261.576,75.252L261.577,75.259L261.599,75.273L261.6,75.277L261.604,75.294L261.642,75.298L261.644,75.305L261.685,75.323L261.732,75.554L261.73,75.547L261.732,75.554L261.782,75.897L261.913,76.357L261.227,77.193L260.957,76.89L260.883,78.044L261.158,79.039L260.978,79.187L262.517,78.588L262.592,79.338L262.901,79.732L264.408,79.71L265.369,80.098L265.231,80.539L265.567,80.403L266.996,80.899L267.176,81.389L266.589,81.431L266.608,81.431L267.106,82.337L266.845,82.381Z" + }, + { + "fill": "rgb(44, 157, 192)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.177; geo: [object Object]; name: Virginia", + "shape": "M271.115,80.099L271.136,80.195L270.761,82.452L270.569,82.814L269.991,83.095L269.944,83.325L269.664,84.186L269.756,85.699L269.131,84.958L269.218,82.916L269.674,82.788L269.152,82.881L269.609,81.324L270,81.083L270.15,79.643L270.168,79.639L271.386,79.231ZM266.957,82.912L266.095,82.943L265.334,81.964L265.163,82.069L263.627,81.043L263.321,80.478L262.567,80.063L262.55,80.077L262.813,80.526L263.37,80.531L263.492,81.134L264.291,81.569L265.033,82.278L266.026,83.169L267.299,83.256L266.737,83.709L266.013,83.477L266.666,83.735L267.041,83.589L267.709,84.007L267.565,84.795L266.713,84.145L267.249,85.323L266.678,85.557L265.362,84.436L264.707,83.597L263.9,83.896L263.845,83.818L263.9,83.896L264.632,83.891L265.07,84.429L265.091,84.436L265.62,84.94L265.62,84.94L266.232,85.464L267.139,85.632L267.292,86.176L267.539,85.965L267.497,86.323L268.107,86.355L267.63,87.142L266.211,86.486L266.247,86.193L265.972,85.893L265.433,86.197L264.788,85.98L264.58,85.15L264.729,85.881L264.422,86.088L263.95,85.668L262.631,85.844L262.648,85.443L262.291,85.492L262.394,86.01L262.731,86.054L263.547,85.782L264.075,86.192L265.192,86.154L265.932,86.455L266.182,87.098L267.17,87.458L267.034,87.832L267.666,87.778L267.837,88.132L267.798,88.315L268.354,88.084L268.593,88.018L268.703,87.98L268.762,87.986L268.108,87.842L267.984,87.25L268.806,87.363L269.775,87.154L270.976,89.471L270.844,89.499L270.345,88.449L270.376,89.6L270.207,89.636L270.095,89.66L269.626,89.759L268.633,89.969L267.714,90.161L267.451,90.216L265.478,90.61L265.489,90.664L264.191,90.912L263.498,91.061L261.033,91.539L260.338,91.681L259.568,91.832L258.118,92.107L257.423,92.249L255.974,92.525L255.634,92.587L253.843,92.911L253.428,92.985L252.768,93.103L252.108,93.223L251.881,93.263L250.824,93.443L249.16,93.721L249.028,93.743L246.978,94.031L246.082,94.13L244.889,94.313L244.545,94.349L242.148,94.639L240.43,94.811L240.557,94.63L239.608,94.755L237.942,95.138L237.43,95.206L237.165,95.244L235.498,95.495L234.322,95.66L233.507,95.777L230.942,96.098L229.857,96.215L230.939,95.636L232.591,94.867L232.812,94.087L233.798,93.691L233.778,93.135L234.468,92.572L234.482,91.986L235.151,91.425L235.221,91.374L236.387,90.549L236.404,90.535L237.95,88.679L238.181,88.817L237.872,89.058L238.336,89.857L239.432,90.513L240.402,90.579L241.317,89.54L242.137,90.119L243.349,89.522L243.966,89.055L243.84,88.511L243.842,88.522L244.37,88.82L245.576,87.868L245.847,88.229L246.668,87.51L246.456,87.158L246.944,86.641L246.481,86.276L246.948,84.958L247.415,84.333L247.787,83.495L247.956,82.587L248.407,82.004L248.289,81.759L248.77,80.808L248.786,79.704L249.405,79.885L249.824,80.443L250.706,80.601L251.088,80.083L251.61,78.03L251.814,77.386L252.56,77.85L252.829,76.947L253.155,76.769L253.861,75.591L254.003,75.343L254.433,74.722L254.243,74.11L254.35,72.676L255.041,73.064L256.18,73.717L257.385,74.404L257.703,73.038L257.897,72.974L258.483,72.989L259.135,73.432L258.91,74.106L259.311,74.417L260.026,74.405L261.242,75.004L261.387,75.16L261.57,75.22L261.572,75.23L261.575,75.245L261.576,75.252L261.577,75.259L261.599,75.273L261.6,75.277L261.604,75.294L261.642,75.298L261.644,75.305L261.685,75.323L261.732,75.554L261.73,75.547L261.732,75.554L261.782,75.897L261.913,76.357L261.227,77.193L260.957,76.89L260.883,78.044L261.158,79.039L260.978,79.187L262.517,78.588L262.592,79.338L262.901,79.732L264.408,79.71L265.369,80.098L265.231,80.539L265.567,80.403L266.996,80.899L267.176,81.389L266.589,81.431L266.608,81.431L267.106,82.337L266.845,82.381Z" + }, + { + "fill": "rgb(65, 177, 194)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.152; geo: [object Object]; name: Virginia", + "shape": "M271.115,80.099L271.136,80.195L270.761,82.452L270.569,82.814L269.991,83.095L269.944,83.325L269.664,84.186L269.756,85.699L269.131,84.958L269.218,82.916L269.674,82.788L269.152,82.881L269.609,81.324L270,81.083L270.15,79.643L270.168,79.639L271.386,79.231ZM266.957,82.912L266.095,82.943L265.334,81.964L265.163,82.069L263.627,81.043L263.321,80.478L262.567,80.063L262.55,80.077L262.813,80.526L263.37,80.531L263.492,81.134L264.291,81.569L265.033,82.278L266.026,83.169L267.299,83.256L266.737,83.709L266.013,83.477L266.666,83.735L267.041,83.589L267.709,84.007L267.565,84.795L266.713,84.145L267.249,85.323L266.678,85.557L265.362,84.436L264.707,83.597L263.9,83.896L263.845,83.818L263.9,83.896L264.632,83.891L265.07,84.429L265.091,84.436L265.62,84.94L265.62,84.94L266.232,85.464L267.139,85.632L267.292,86.176L267.539,85.965L267.497,86.323L268.107,86.355L267.63,87.142L266.211,86.486L266.247,86.193L265.972,85.893L265.433,86.197L264.788,85.98L264.58,85.15L264.729,85.881L264.422,86.088L263.95,85.668L262.631,85.844L262.648,85.443L262.291,85.492L262.394,86.01L262.731,86.054L263.547,85.782L264.075,86.192L265.192,86.154L265.932,86.455L266.182,87.098L267.17,87.458L267.034,87.832L267.666,87.778L267.837,88.132L267.798,88.315L268.354,88.084L268.593,88.018L268.703,87.98L268.762,87.986L268.108,87.842L267.984,87.25L268.806,87.363L269.775,87.154L270.976,89.471L270.844,89.499L270.345,88.449L270.376,89.6L270.207,89.636L270.095,89.66L269.626,89.759L268.633,89.969L267.714,90.161L267.451,90.216L265.478,90.61L265.489,90.664L264.191,90.912L263.498,91.061L261.033,91.539L260.338,91.681L259.568,91.832L258.118,92.107L257.423,92.249L255.974,92.525L255.634,92.587L253.843,92.911L253.428,92.985L252.768,93.103L252.108,93.223L251.881,93.263L250.824,93.443L249.16,93.721L249.028,93.743L246.978,94.031L246.082,94.13L244.889,94.313L244.545,94.349L242.148,94.639L240.43,94.811L240.557,94.63L239.608,94.755L237.942,95.138L237.43,95.206L237.165,95.244L235.498,95.495L234.322,95.66L233.507,95.777L230.942,96.098L229.857,96.215L230.939,95.636L232.591,94.867L232.812,94.087L233.798,93.691L233.778,93.135L234.468,92.572L234.482,91.986L235.151,91.425L235.221,91.374L236.387,90.549L236.404,90.535L237.95,88.679L238.181,88.817L237.872,89.058L238.336,89.857L239.432,90.513L240.402,90.579L241.317,89.54L242.137,90.119L243.349,89.522L243.966,89.055L243.84,88.511L243.842,88.522L244.37,88.82L245.576,87.868L245.847,88.229L246.668,87.51L246.456,87.158L246.944,86.641L246.481,86.276L246.948,84.958L247.415,84.333L247.787,83.495L247.956,82.587L248.407,82.004L248.289,81.759L248.77,80.808L248.786,79.704L249.405,79.885L249.824,80.443L250.706,80.601L251.088,80.083L251.61,78.03L251.814,77.386L252.56,77.85L252.829,76.947L253.155,76.769L253.861,75.591L254.003,75.343L254.433,74.722L254.243,74.11L254.35,72.676L255.041,73.064L256.18,73.717L257.385,74.404L257.703,73.038L257.897,72.974L258.483,72.989L259.135,73.432L258.91,74.106L259.311,74.417L260.026,74.405L261.242,75.004L261.387,75.16L261.57,75.22L261.572,75.23L261.575,75.245L261.576,75.252L261.577,75.259L261.599,75.273L261.6,75.277L261.604,75.294L261.642,75.298L261.644,75.305L261.685,75.323L261.732,75.554L261.73,75.547L261.732,75.554L261.782,75.897L261.913,76.357L261.227,77.193L260.957,76.89L260.883,78.044L261.158,79.039L260.978,79.187L262.517,78.588L262.592,79.338L262.901,79.732L264.408,79.71L265.369,80.098L265.231,80.539L265.567,80.403L266.996,80.899L267.176,81.389L266.589,81.431L266.608,81.431L267.106,82.337L266.845,82.381Z" + }, + { + "fill": "rgb(178, 225, 182)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.07; geo: [object Object]; name: Virginia", + "shape": "M271.115,80.099L271.136,80.195L270.761,82.452L270.569,82.814L269.991,83.095L269.944,83.325L269.664,84.186L269.756,85.699L269.131,84.958L269.218,82.916L269.674,82.788L269.152,82.881L269.609,81.324L270,81.083L270.15,79.643L270.168,79.639L271.386,79.231ZM266.957,82.912L266.095,82.943L265.334,81.964L265.163,82.069L263.627,81.043L263.321,80.478L262.567,80.063L262.55,80.077L262.813,80.526L263.37,80.531L263.492,81.134L264.291,81.569L265.033,82.278L266.026,83.169L267.299,83.256L266.737,83.709L266.013,83.477L266.666,83.735L267.041,83.589L267.709,84.007L267.565,84.795L266.713,84.145L267.249,85.323L266.678,85.557L265.362,84.436L264.707,83.597L263.9,83.896L263.845,83.818L263.9,83.896L264.632,83.891L265.07,84.429L265.091,84.436L265.62,84.94L265.62,84.94L266.232,85.464L267.139,85.632L267.292,86.176L267.539,85.965L267.497,86.323L268.107,86.355L267.63,87.142L266.211,86.486L266.247,86.193L265.972,85.893L265.433,86.197L264.788,85.98L264.58,85.15L264.729,85.881L264.422,86.088L263.95,85.668L262.631,85.844L262.648,85.443L262.291,85.492L262.394,86.01L262.731,86.054L263.547,85.782L264.075,86.192L265.192,86.154L265.932,86.455L266.182,87.098L267.17,87.458L267.034,87.832L267.666,87.778L267.837,88.132L267.798,88.315L268.354,88.084L268.593,88.018L268.703,87.98L268.762,87.986L268.108,87.842L267.984,87.25L268.806,87.363L269.775,87.154L270.976,89.471L270.844,89.499L270.345,88.449L270.376,89.6L270.207,89.636L270.095,89.66L269.626,89.759L268.633,89.969L267.714,90.161L267.451,90.216L265.478,90.61L265.489,90.664L264.191,90.912L263.498,91.061L261.033,91.539L260.338,91.681L259.568,91.832L258.118,92.107L257.423,92.249L255.974,92.525L255.634,92.587L253.843,92.911L253.428,92.985L252.768,93.103L252.108,93.223L251.881,93.263L250.824,93.443L249.16,93.721L249.028,93.743L246.978,94.031L246.082,94.13L244.889,94.313L244.545,94.349L242.148,94.639L240.43,94.811L240.557,94.63L239.608,94.755L237.942,95.138L237.43,95.206L237.165,95.244L235.498,95.495L234.322,95.66L233.507,95.777L230.942,96.098L229.857,96.215L230.939,95.636L232.591,94.867L232.812,94.087L233.798,93.691L233.778,93.135L234.468,92.572L234.482,91.986L235.151,91.425L235.221,91.374L236.387,90.549L236.404,90.535L237.95,88.679L238.181,88.817L237.872,89.058L238.336,89.857L239.432,90.513L240.402,90.579L241.317,89.54L242.137,90.119L243.349,89.522L243.966,89.055L243.84,88.511L243.842,88.522L244.37,88.82L245.576,87.868L245.847,88.229L246.668,87.51L246.456,87.158L246.944,86.641L246.481,86.276L246.948,84.958L247.415,84.333L247.787,83.495L247.956,82.587L248.407,82.004L248.289,81.759L248.77,80.808L248.786,79.704L249.405,79.885L249.824,80.443L250.706,80.601L251.088,80.083L251.61,78.03L251.814,77.386L252.56,77.85L252.829,76.947L253.155,76.769L253.861,75.591L254.003,75.343L254.433,74.722L254.243,74.11L254.35,72.676L255.041,73.064L256.18,73.717L257.385,74.404L257.703,73.038L257.897,72.974L258.483,72.989L259.135,73.432L258.91,74.106L259.311,74.417L260.026,74.405L261.242,75.004L261.387,75.16L261.57,75.22L261.572,75.23L261.575,75.245L261.576,75.252L261.577,75.259L261.599,75.273L261.6,75.277L261.604,75.294L261.642,75.298L261.644,75.305L261.685,75.323L261.732,75.554L261.73,75.547L261.732,75.554L261.782,75.897L261.913,76.357L261.227,77.193L260.957,76.89L260.883,78.044L261.158,79.039L260.978,79.187L262.517,78.588L262.592,79.338L262.901,79.732L264.408,79.71L265.369,80.098L265.231,80.539L265.567,80.403L266.996,80.899L267.176,81.389L266.589,81.431L266.608,81.431L267.106,82.337L266.845,82.381Z" + }, + { + "fill": "rgb(170, 221, 183)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.076; geo: [object Object]; name: Virginia", + "shape": "M271.115,80.099L271.136,80.195L270.761,82.452L270.569,82.814L269.991,83.095L269.944,83.325L269.664,84.186L269.756,85.699L269.131,84.958L269.218,82.916L269.674,82.788L269.152,82.881L269.609,81.324L270,81.083L270.15,79.643L270.168,79.639L271.386,79.231ZM266.957,82.912L266.095,82.943L265.334,81.964L265.163,82.069L263.627,81.043L263.321,80.478L262.567,80.063L262.55,80.077L262.813,80.526L263.37,80.531L263.492,81.134L264.291,81.569L265.033,82.278L266.026,83.169L267.299,83.256L266.737,83.709L266.013,83.477L266.666,83.735L267.041,83.589L267.709,84.007L267.565,84.795L266.713,84.145L267.249,85.323L266.678,85.557L265.362,84.436L264.707,83.597L263.9,83.896L263.845,83.818L263.9,83.896L264.632,83.891L265.07,84.429L265.091,84.436L265.62,84.94L265.62,84.94L266.232,85.464L267.139,85.632L267.292,86.176L267.539,85.965L267.497,86.323L268.107,86.355L267.63,87.142L266.211,86.486L266.247,86.193L265.972,85.893L265.433,86.197L264.788,85.98L264.58,85.15L264.729,85.881L264.422,86.088L263.95,85.668L262.631,85.844L262.648,85.443L262.291,85.492L262.394,86.01L262.731,86.054L263.547,85.782L264.075,86.192L265.192,86.154L265.932,86.455L266.182,87.098L267.17,87.458L267.034,87.832L267.666,87.778L267.837,88.132L267.798,88.315L268.354,88.084L268.593,88.018L268.703,87.98L268.762,87.986L268.108,87.842L267.984,87.25L268.806,87.363L269.775,87.154L270.976,89.471L270.844,89.499L270.345,88.449L270.376,89.6L270.207,89.636L270.095,89.66L269.626,89.759L268.633,89.969L267.714,90.161L267.451,90.216L265.478,90.61L265.489,90.664L264.191,90.912L263.498,91.061L261.033,91.539L260.338,91.681L259.568,91.832L258.118,92.107L257.423,92.249L255.974,92.525L255.634,92.587L253.843,92.911L253.428,92.985L252.768,93.103L252.108,93.223L251.881,93.263L250.824,93.443L249.16,93.721L249.028,93.743L246.978,94.031L246.082,94.13L244.889,94.313L244.545,94.349L242.148,94.639L240.43,94.811L240.557,94.63L239.608,94.755L237.942,95.138L237.43,95.206L237.165,95.244L235.498,95.495L234.322,95.66L233.507,95.777L230.942,96.098L229.857,96.215L230.939,95.636L232.591,94.867L232.812,94.087L233.798,93.691L233.778,93.135L234.468,92.572L234.482,91.986L235.151,91.425L235.221,91.374L236.387,90.549L236.404,90.535L237.95,88.679L238.181,88.817L237.872,89.058L238.336,89.857L239.432,90.513L240.402,90.579L241.317,89.54L242.137,90.119L243.349,89.522L243.966,89.055L243.84,88.511L243.842,88.522L244.37,88.82L245.576,87.868L245.847,88.229L246.668,87.51L246.456,87.158L246.944,86.641L246.481,86.276L246.948,84.958L247.415,84.333L247.787,83.495L247.956,82.587L248.407,82.004L248.289,81.759L248.77,80.808L248.786,79.704L249.405,79.885L249.824,80.443L250.706,80.601L251.088,80.083L251.61,78.03L251.814,77.386L252.56,77.85L252.829,76.947L253.155,76.769L253.861,75.591L254.003,75.343L254.433,74.722L254.243,74.11L254.35,72.676L255.041,73.064L256.18,73.717L257.385,74.404L257.703,73.038L257.897,72.974L258.483,72.989L259.135,73.432L258.91,74.106L259.311,74.417L260.026,74.405L261.242,75.004L261.387,75.16L261.57,75.22L261.572,75.23L261.575,75.245L261.576,75.252L261.577,75.259L261.599,75.273L261.6,75.277L261.604,75.294L261.642,75.298L261.644,75.305L261.685,75.323L261.732,75.554L261.73,75.547L261.732,75.554L261.782,75.897L261.913,76.357L261.227,77.193L260.957,76.89L260.883,78.044L261.158,79.039L260.978,79.187L262.517,78.588L262.592,79.338L262.901,79.732L264.408,79.71L265.369,80.098L265.231,80.539L265.567,80.403L266.996,80.899L267.176,81.389L266.589,81.431L266.608,81.431L267.106,82.337L266.845,82.381Z" + }, + { + "fill": "rgb(187, 228, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.064; geo: [object Object]; name: Washington", + "shape": "M42.699,11.915L42.725,11.12L43.097,11.075ZM44.667,11.319L45.108,10.194L45.322,11.118ZM45.036,9.733L44.868,9.075L45.165,8.75ZM46.236,7.788L45.468,6.691L45.7,5.884L45.144,5.3L45.852,4.479L46.408,5.122L45.31,5.252L45.823,5.574L45.736,6.876L45.963,6.38L46.505,6.965ZM45.001,3.876L44.838,3.573L45.33,3.036ZM44.739,2.99L44.41,3.425L44.013,2.603L44.421,2.299ZM45.302,2.783L44.762,2.336L45.309,1.953L46.069,2.508ZM45.979,4.215L46.402,3.561L46.894,4.069L47.122,2.918L47.13,2.016L46.571,2.274L46.712,1.844L46.284,0.957L46.635,0.318L51.059,1.604L54.798,2.605L58.107,3.483L63.506,4.836L66.273,5.505L69.592,6.276L71.305,6.676L71.083,7.663L69.9,12.848L69.799,13.294L68.906,17.263L68.749,17.962L68.556,18.819L67.697,22.636L67.528,23.386L67.527,23.389L67.315,23.876L67.674,25.172L67.298,25.626L67.465,26.335L64.905,25.732L64.352,25.597L62.641,25.187L62.56,25.167L58.064,24.091L57.305,24.366L55.915,24.119L55.277,23.906L54.741,24.245L53.812,24.153L53.171,24.148L52.046,24.47L50.776,24.338L50.068,23.857L48.731,24.167L48.174,23.905L47.614,24.105L47.426,23.639L46.425,23.153L46.133,22.883L44.803,22.642L44.165,22.86L42.521,23.104L40.877,22.23L40.449,21.829L40.522,21.277L40.67,20.461L40.574,18.807L39.772,17.857L39.361,17.834L39.367,17.813L38.911,17.825L38.398,16.851L37.283,16.39L36.529,16.52L35.966,15.448L36.368,13.955L36.524,14.127L36.18,15.43L36.766,15.217L37.032,14.51L36.882,14.033L37.612,13.507L36.524,13.042L36.619,12.673L36.662,11.91L37.018,12.101L38.155,11.995L36.861,11.089L36.967,9.277L36.738,8.791L36.947,7.611L37.039,6.146L36.506,5.056L36.408,4.442L36.518,3.106L37.176,2.137L36.985,1.715L37.398,1.803L39.565,3.947L41.164,4.538L42.228,5.168L43.522,5.308L44.159,6.078L44.748,6.085L45.144,7.583L43.891,7.988L43.628,8.541L43.037,8.936L42.228,9.721L42.04,10.244L42.736,9.441L43.356,8.95L44.188,8.838L44.727,8.089L45.625,7.558L45.556,8.688L44.735,9.122L45.029,10.175L44.58,10.791L44.151,11.689L43.797,11.375L44.251,10.689L44.203,10.675L43.038,11.457L43.396,10.752L43.213,10.852L43.197,10.907L42.698,11.094L42.497,11.61L41.71,12.071L42.414,11.776L42.954,11.922L43.368,12.564L44.452,11.593L44.997,11.48L45.458,11.418L45.464,9.841L45.753,9.961L45.784,9.973L45.543,9.268L45.943,8.579L46.631,7.589L47.232,7.198L46.717,6.398L46.766,5.692L46.093,6.161L46.206,5.413L46.774,5.546L46.774,5.546L46.952,5.277L46.49,4.132Z" + }, + { + "fill": "rgb(209, 237, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.044; geo: [object Object]; name: Washington", + "shape": "M42.699,11.915L42.725,11.12L43.097,11.075ZM44.667,11.319L45.108,10.194L45.322,11.118ZM45.036,9.733L44.868,9.075L45.165,8.75ZM46.236,7.788L45.468,6.691L45.7,5.884L45.144,5.3L45.852,4.479L46.408,5.122L45.31,5.252L45.823,5.574L45.736,6.876L45.963,6.38L46.505,6.965ZM45.001,3.876L44.838,3.573L45.33,3.036ZM44.739,2.99L44.41,3.425L44.013,2.603L44.421,2.299ZM45.302,2.783L44.762,2.336L45.309,1.953L46.069,2.508ZM45.979,4.215L46.402,3.561L46.894,4.069L47.122,2.918L47.13,2.016L46.571,2.274L46.712,1.844L46.284,0.957L46.635,0.318L51.059,1.604L54.798,2.605L58.107,3.483L63.506,4.836L66.273,5.505L69.592,6.276L71.305,6.676L71.083,7.663L69.9,12.848L69.799,13.294L68.906,17.263L68.749,17.962L68.556,18.819L67.697,22.636L67.528,23.386L67.527,23.389L67.315,23.876L67.674,25.172L67.298,25.626L67.465,26.335L64.905,25.732L64.352,25.597L62.641,25.187L62.56,25.167L58.064,24.091L57.305,24.366L55.915,24.119L55.277,23.906L54.741,24.245L53.812,24.153L53.171,24.148L52.046,24.47L50.776,24.338L50.068,23.857L48.731,24.167L48.174,23.905L47.614,24.105L47.426,23.639L46.425,23.153L46.133,22.883L44.803,22.642L44.165,22.86L42.521,23.104L40.877,22.23L40.449,21.829L40.522,21.277L40.67,20.461L40.574,18.807L39.772,17.857L39.361,17.834L39.367,17.813L38.911,17.825L38.398,16.851L37.283,16.39L36.529,16.52L35.966,15.448L36.368,13.955L36.524,14.127L36.18,15.43L36.766,15.217L37.032,14.51L36.882,14.033L37.612,13.507L36.524,13.042L36.619,12.673L36.662,11.91L37.018,12.101L38.155,11.995L36.861,11.089L36.967,9.277L36.738,8.791L36.947,7.611L37.039,6.146L36.506,5.056L36.408,4.442L36.518,3.106L37.176,2.137L36.985,1.715L37.398,1.803L39.565,3.947L41.164,4.538L42.228,5.168L43.522,5.308L44.159,6.078L44.748,6.085L45.144,7.583L43.891,7.988L43.628,8.541L43.037,8.936L42.228,9.721L42.04,10.244L42.736,9.441L43.356,8.95L44.188,8.838L44.727,8.089L45.625,7.558L45.556,8.688L44.735,9.122L45.029,10.175L44.58,10.791L44.151,11.689L43.797,11.375L44.251,10.689L44.203,10.675L43.038,11.457L43.396,10.752L43.213,10.852L43.197,10.907L42.698,11.094L42.497,11.61L41.71,12.071L42.414,11.776L42.954,11.922L43.368,12.564L44.452,11.593L44.997,11.48L45.458,11.418L45.464,9.841L45.753,9.961L45.784,9.973L45.543,9.268L45.943,8.579L46.631,7.589L47.232,7.198L46.717,6.398L46.766,5.692L46.093,6.161L46.206,5.413L46.774,5.546L46.774,5.546L46.952,5.277L46.49,4.132Z" + }, + { + "fill": "rgb(146, 212, 185)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.092; geo: [object Object]; name: Washington", + "shape": "M42.699,11.915L42.725,11.12L43.097,11.075ZM44.667,11.319L45.108,10.194L45.322,11.118ZM45.036,9.733L44.868,9.075L45.165,8.75ZM46.236,7.788L45.468,6.691L45.7,5.884L45.144,5.3L45.852,4.479L46.408,5.122L45.31,5.252L45.823,5.574L45.736,6.876L45.963,6.38L46.505,6.965ZM45.001,3.876L44.838,3.573L45.33,3.036ZM44.739,2.99L44.41,3.425L44.013,2.603L44.421,2.299ZM45.302,2.783L44.762,2.336L45.309,1.953L46.069,2.508ZM45.979,4.215L46.402,3.561L46.894,4.069L47.122,2.918L47.13,2.016L46.571,2.274L46.712,1.844L46.284,0.957L46.635,0.318L51.059,1.604L54.798,2.605L58.107,3.483L63.506,4.836L66.273,5.505L69.592,6.276L71.305,6.676L71.083,7.663L69.9,12.848L69.799,13.294L68.906,17.263L68.749,17.962L68.556,18.819L67.697,22.636L67.528,23.386L67.527,23.389L67.315,23.876L67.674,25.172L67.298,25.626L67.465,26.335L64.905,25.732L64.352,25.597L62.641,25.187L62.56,25.167L58.064,24.091L57.305,24.366L55.915,24.119L55.277,23.906L54.741,24.245L53.812,24.153L53.171,24.148L52.046,24.47L50.776,24.338L50.068,23.857L48.731,24.167L48.174,23.905L47.614,24.105L47.426,23.639L46.425,23.153L46.133,22.883L44.803,22.642L44.165,22.86L42.521,23.104L40.877,22.23L40.449,21.829L40.522,21.277L40.67,20.461L40.574,18.807L39.772,17.857L39.361,17.834L39.367,17.813L38.911,17.825L38.398,16.851L37.283,16.39L36.529,16.52L35.966,15.448L36.368,13.955L36.524,14.127L36.18,15.43L36.766,15.217L37.032,14.51L36.882,14.033L37.612,13.507L36.524,13.042L36.619,12.673L36.662,11.91L37.018,12.101L38.155,11.995L36.861,11.089L36.967,9.277L36.738,8.791L36.947,7.611L37.039,6.146L36.506,5.056L36.408,4.442L36.518,3.106L37.176,2.137L36.985,1.715L37.398,1.803L39.565,3.947L41.164,4.538L42.228,5.168L43.522,5.308L44.159,6.078L44.748,6.085L45.144,7.583L43.891,7.988L43.628,8.541L43.037,8.936L42.228,9.721L42.04,10.244L42.736,9.441L43.356,8.95L44.188,8.838L44.727,8.089L45.625,7.558L45.556,8.688L44.735,9.122L45.029,10.175L44.58,10.791L44.151,11.689L43.797,11.375L44.251,10.689L44.203,10.675L43.038,11.457L43.396,10.752L43.213,10.852L43.197,10.907L42.698,11.094L42.497,11.61L41.71,12.071L42.414,11.776L42.954,11.922L43.368,12.564L44.452,11.593L44.997,11.48L45.458,11.418L45.464,9.841L45.753,9.961L45.784,9.973L45.543,9.268L45.943,8.579L46.631,7.589L47.232,7.198L46.717,6.398L46.766,5.692L46.093,6.161L46.206,5.413L46.774,5.546L46.774,5.546L46.952,5.277L46.49,4.132Z" + }, + { + "fill": "rgb(143, 211, 186)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.094; geo: [object Object]; name: Washington", + "shape": "M42.699,11.915L42.725,11.12L43.097,11.075ZM44.667,11.319L45.108,10.194L45.322,11.118ZM45.036,9.733L44.868,9.075L45.165,8.75ZM46.236,7.788L45.468,6.691L45.7,5.884L45.144,5.3L45.852,4.479L46.408,5.122L45.31,5.252L45.823,5.574L45.736,6.876L45.963,6.38L46.505,6.965ZM45.001,3.876L44.838,3.573L45.33,3.036ZM44.739,2.99L44.41,3.425L44.013,2.603L44.421,2.299ZM45.302,2.783L44.762,2.336L45.309,1.953L46.069,2.508ZM45.979,4.215L46.402,3.561L46.894,4.069L47.122,2.918L47.13,2.016L46.571,2.274L46.712,1.844L46.284,0.957L46.635,0.318L51.059,1.604L54.798,2.605L58.107,3.483L63.506,4.836L66.273,5.505L69.592,6.276L71.305,6.676L71.083,7.663L69.9,12.848L69.799,13.294L68.906,17.263L68.749,17.962L68.556,18.819L67.697,22.636L67.528,23.386L67.527,23.389L67.315,23.876L67.674,25.172L67.298,25.626L67.465,26.335L64.905,25.732L64.352,25.597L62.641,25.187L62.56,25.167L58.064,24.091L57.305,24.366L55.915,24.119L55.277,23.906L54.741,24.245L53.812,24.153L53.171,24.148L52.046,24.47L50.776,24.338L50.068,23.857L48.731,24.167L48.174,23.905L47.614,24.105L47.426,23.639L46.425,23.153L46.133,22.883L44.803,22.642L44.165,22.86L42.521,23.104L40.877,22.23L40.449,21.829L40.522,21.277L40.67,20.461L40.574,18.807L39.772,17.857L39.361,17.834L39.367,17.813L38.911,17.825L38.398,16.851L37.283,16.39L36.529,16.52L35.966,15.448L36.368,13.955L36.524,14.127L36.18,15.43L36.766,15.217L37.032,14.51L36.882,14.033L37.612,13.507L36.524,13.042L36.619,12.673L36.662,11.91L37.018,12.101L38.155,11.995L36.861,11.089L36.967,9.277L36.738,8.791L36.947,7.611L37.039,6.146L36.506,5.056L36.408,4.442L36.518,3.106L37.176,2.137L36.985,1.715L37.398,1.803L39.565,3.947L41.164,4.538L42.228,5.168L43.522,5.308L44.159,6.078L44.748,6.085L45.144,7.583L43.891,7.988L43.628,8.541L43.037,8.936L42.228,9.721L42.04,10.244L42.736,9.441L43.356,8.95L44.188,8.838L44.727,8.089L45.625,7.558L45.556,8.688L44.735,9.122L45.029,10.175L44.58,10.791L44.151,11.689L43.797,11.375L44.251,10.689L44.203,10.675L43.038,11.457L43.396,10.752L43.213,10.852L43.197,10.907L42.698,11.094L42.497,11.61L41.71,12.071L42.414,11.776L42.954,11.922L43.368,12.564L44.452,11.593L44.997,11.48L45.458,11.418L45.464,9.841L45.753,9.961L45.784,9.973L45.543,9.268L45.943,8.579L46.631,7.589L47.232,7.198L46.717,6.398L46.766,5.692L46.093,6.161L46.206,5.413L46.774,5.546L46.774,5.546L46.952,5.277L46.49,4.132Z" + }, + { + "fill": "rgb(87, 189, 192)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.133; geo: [object Object]; name: Washington", + "shape": "M42.699,11.915L42.725,11.12L43.097,11.075ZM44.667,11.319L45.108,10.194L45.322,11.118ZM45.036,9.733L44.868,9.075L45.165,8.75ZM46.236,7.788L45.468,6.691L45.7,5.884L45.144,5.3L45.852,4.479L46.408,5.122L45.31,5.252L45.823,5.574L45.736,6.876L45.963,6.38L46.505,6.965ZM45.001,3.876L44.838,3.573L45.33,3.036ZM44.739,2.99L44.41,3.425L44.013,2.603L44.421,2.299ZM45.302,2.783L44.762,2.336L45.309,1.953L46.069,2.508ZM45.979,4.215L46.402,3.561L46.894,4.069L47.122,2.918L47.13,2.016L46.571,2.274L46.712,1.844L46.284,0.957L46.635,0.318L51.059,1.604L54.798,2.605L58.107,3.483L63.506,4.836L66.273,5.505L69.592,6.276L71.305,6.676L71.083,7.663L69.9,12.848L69.799,13.294L68.906,17.263L68.749,17.962L68.556,18.819L67.697,22.636L67.528,23.386L67.527,23.389L67.315,23.876L67.674,25.172L67.298,25.626L67.465,26.335L64.905,25.732L64.352,25.597L62.641,25.187L62.56,25.167L58.064,24.091L57.305,24.366L55.915,24.119L55.277,23.906L54.741,24.245L53.812,24.153L53.171,24.148L52.046,24.47L50.776,24.338L50.068,23.857L48.731,24.167L48.174,23.905L47.614,24.105L47.426,23.639L46.425,23.153L46.133,22.883L44.803,22.642L44.165,22.86L42.521,23.104L40.877,22.23L40.449,21.829L40.522,21.277L40.67,20.461L40.574,18.807L39.772,17.857L39.361,17.834L39.367,17.813L38.911,17.825L38.398,16.851L37.283,16.39L36.529,16.52L35.966,15.448L36.368,13.955L36.524,14.127L36.18,15.43L36.766,15.217L37.032,14.51L36.882,14.033L37.612,13.507L36.524,13.042L36.619,12.673L36.662,11.91L37.018,12.101L38.155,11.995L36.861,11.089L36.967,9.277L36.738,8.791L36.947,7.611L37.039,6.146L36.506,5.056L36.408,4.442L36.518,3.106L37.176,2.137L36.985,1.715L37.398,1.803L39.565,3.947L41.164,4.538L42.228,5.168L43.522,5.308L44.159,6.078L44.748,6.085L45.144,7.583L43.891,7.988L43.628,8.541L43.037,8.936L42.228,9.721L42.04,10.244L42.736,9.441L43.356,8.95L44.188,8.838L44.727,8.089L45.625,7.558L45.556,8.688L44.735,9.122L45.029,10.175L44.58,10.791L44.151,11.689L43.797,11.375L44.251,10.689L44.203,10.675L43.038,11.457L43.396,10.752L43.213,10.852L43.197,10.907L42.698,11.094L42.497,11.61L41.71,12.071L42.414,11.776L42.954,11.922L43.368,12.564L44.452,11.593L44.997,11.48L45.458,11.418L45.464,9.841L45.753,9.961L45.784,9.973L45.543,9.268L45.943,8.579L46.631,7.589L47.232,7.198L46.717,6.398L46.766,5.692L46.093,6.161L46.206,5.413L46.774,5.546L46.774,5.546L46.952,5.277L46.49,4.132Z" + }, + { + "fill": "rgb(89, 189, 192)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.132; geo: [object Object]; name: Washington", + "shape": "M42.699,11.915L42.725,11.12L43.097,11.075ZM44.667,11.319L45.108,10.194L45.322,11.118ZM45.036,9.733L44.868,9.075L45.165,8.75ZM46.236,7.788L45.468,6.691L45.7,5.884L45.144,5.3L45.852,4.479L46.408,5.122L45.31,5.252L45.823,5.574L45.736,6.876L45.963,6.38L46.505,6.965ZM45.001,3.876L44.838,3.573L45.33,3.036ZM44.739,2.99L44.41,3.425L44.013,2.603L44.421,2.299ZM45.302,2.783L44.762,2.336L45.309,1.953L46.069,2.508ZM45.979,4.215L46.402,3.561L46.894,4.069L47.122,2.918L47.13,2.016L46.571,2.274L46.712,1.844L46.284,0.957L46.635,0.318L51.059,1.604L54.798,2.605L58.107,3.483L63.506,4.836L66.273,5.505L69.592,6.276L71.305,6.676L71.083,7.663L69.9,12.848L69.799,13.294L68.906,17.263L68.749,17.962L68.556,18.819L67.697,22.636L67.528,23.386L67.527,23.389L67.315,23.876L67.674,25.172L67.298,25.626L67.465,26.335L64.905,25.732L64.352,25.597L62.641,25.187L62.56,25.167L58.064,24.091L57.305,24.366L55.915,24.119L55.277,23.906L54.741,24.245L53.812,24.153L53.171,24.148L52.046,24.47L50.776,24.338L50.068,23.857L48.731,24.167L48.174,23.905L47.614,24.105L47.426,23.639L46.425,23.153L46.133,22.883L44.803,22.642L44.165,22.86L42.521,23.104L40.877,22.23L40.449,21.829L40.522,21.277L40.67,20.461L40.574,18.807L39.772,17.857L39.361,17.834L39.367,17.813L38.911,17.825L38.398,16.851L37.283,16.39L36.529,16.52L35.966,15.448L36.368,13.955L36.524,14.127L36.18,15.43L36.766,15.217L37.032,14.51L36.882,14.033L37.612,13.507L36.524,13.042L36.619,12.673L36.662,11.91L37.018,12.101L38.155,11.995L36.861,11.089L36.967,9.277L36.738,8.791L36.947,7.611L37.039,6.146L36.506,5.056L36.408,4.442L36.518,3.106L37.176,2.137L36.985,1.715L37.398,1.803L39.565,3.947L41.164,4.538L42.228,5.168L43.522,5.308L44.159,6.078L44.748,6.085L45.144,7.583L43.891,7.988L43.628,8.541L43.037,8.936L42.228,9.721L42.04,10.244L42.736,9.441L43.356,8.95L44.188,8.838L44.727,8.089L45.625,7.558L45.556,8.688L44.735,9.122L45.029,10.175L44.58,10.791L44.151,11.689L43.797,11.375L44.251,10.689L44.203,10.675L43.038,11.457L43.396,10.752L43.213,10.852L43.197,10.907L42.698,11.094L42.497,11.61L41.71,12.071L42.414,11.776L42.954,11.922L43.368,12.564L44.452,11.593L44.997,11.48L45.458,11.418L45.464,9.841L45.753,9.961L45.784,9.973L45.543,9.268L45.943,8.579L46.631,7.589L47.232,7.198L46.717,6.398L46.766,5.692L46.093,6.161L46.206,5.413L46.774,5.546L46.774,5.546L46.952,5.277L46.49,4.132Z" + }, + { + "fill": "rgb(39, 145, 188)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.189; geo: [object Object]; name: Washington", + "shape": "M42.699,11.915L42.725,11.12L43.097,11.075ZM44.667,11.319L45.108,10.194L45.322,11.118ZM45.036,9.733L44.868,9.075L45.165,8.75ZM46.236,7.788L45.468,6.691L45.7,5.884L45.144,5.3L45.852,4.479L46.408,5.122L45.31,5.252L45.823,5.574L45.736,6.876L45.963,6.38L46.505,6.965ZM45.001,3.876L44.838,3.573L45.33,3.036ZM44.739,2.99L44.41,3.425L44.013,2.603L44.421,2.299ZM45.302,2.783L44.762,2.336L45.309,1.953L46.069,2.508ZM45.979,4.215L46.402,3.561L46.894,4.069L47.122,2.918L47.13,2.016L46.571,2.274L46.712,1.844L46.284,0.957L46.635,0.318L51.059,1.604L54.798,2.605L58.107,3.483L63.506,4.836L66.273,5.505L69.592,6.276L71.305,6.676L71.083,7.663L69.9,12.848L69.799,13.294L68.906,17.263L68.749,17.962L68.556,18.819L67.697,22.636L67.528,23.386L67.527,23.389L67.315,23.876L67.674,25.172L67.298,25.626L67.465,26.335L64.905,25.732L64.352,25.597L62.641,25.187L62.56,25.167L58.064,24.091L57.305,24.366L55.915,24.119L55.277,23.906L54.741,24.245L53.812,24.153L53.171,24.148L52.046,24.47L50.776,24.338L50.068,23.857L48.731,24.167L48.174,23.905L47.614,24.105L47.426,23.639L46.425,23.153L46.133,22.883L44.803,22.642L44.165,22.86L42.521,23.104L40.877,22.23L40.449,21.829L40.522,21.277L40.67,20.461L40.574,18.807L39.772,17.857L39.361,17.834L39.367,17.813L38.911,17.825L38.398,16.851L37.283,16.39L36.529,16.52L35.966,15.448L36.368,13.955L36.524,14.127L36.18,15.43L36.766,15.217L37.032,14.51L36.882,14.033L37.612,13.507L36.524,13.042L36.619,12.673L36.662,11.91L37.018,12.101L38.155,11.995L36.861,11.089L36.967,9.277L36.738,8.791L36.947,7.611L37.039,6.146L36.506,5.056L36.408,4.442L36.518,3.106L37.176,2.137L36.985,1.715L37.398,1.803L39.565,3.947L41.164,4.538L42.228,5.168L43.522,5.308L44.159,6.078L44.748,6.085L45.144,7.583L43.891,7.988L43.628,8.541L43.037,8.936L42.228,9.721L42.04,10.244L42.736,9.441L43.356,8.95L44.188,8.838L44.727,8.089L45.625,7.558L45.556,8.688L44.735,9.122L45.029,10.175L44.58,10.791L44.151,11.689L43.797,11.375L44.251,10.689L44.203,10.675L43.038,11.457L43.396,10.752L43.213,10.852L43.197,10.907L42.698,11.094L42.497,11.61L41.71,12.071L42.414,11.776L42.954,11.922L43.368,12.564L44.452,11.593L44.997,11.48L45.458,11.418L45.464,9.841L45.753,9.961L45.784,9.973L45.543,9.268L45.943,8.579L46.631,7.589L47.232,7.198L46.717,6.398L46.766,5.692L46.093,6.161L46.206,5.413L46.774,5.546L46.774,5.546L46.952,5.277L46.49,4.132Z" + }, + { + "fill": "rgb(70, 180, 194)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.147; geo: [object Object]; name: Washington", + "shape": "M42.699,11.915L42.725,11.12L43.097,11.075ZM44.667,11.319L45.108,10.194L45.322,11.118ZM45.036,9.733L44.868,9.075L45.165,8.75ZM46.236,7.788L45.468,6.691L45.7,5.884L45.144,5.3L45.852,4.479L46.408,5.122L45.31,5.252L45.823,5.574L45.736,6.876L45.963,6.38L46.505,6.965ZM45.001,3.876L44.838,3.573L45.33,3.036ZM44.739,2.99L44.41,3.425L44.013,2.603L44.421,2.299ZM45.302,2.783L44.762,2.336L45.309,1.953L46.069,2.508ZM45.979,4.215L46.402,3.561L46.894,4.069L47.122,2.918L47.13,2.016L46.571,2.274L46.712,1.844L46.284,0.957L46.635,0.318L51.059,1.604L54.798,2.605L58.107,3.483L63.506,4.836L66.273,5.505L69.592,6.276L71.305,6.676L71.083,7.663L69.9,12.848L69.799,13.294L68.906,17.263L68.749,17.962L68.556,18.819L67.697,22.636L67.528,23.386L67.527,23.389L67.315,23.876L67.674,25.172L67.298,25.626L67.465,26.335L64.905,25.732L64.352,25.597L62.641,25.187L62.56,25.167L58.064,24.091L57.305,24.366L55.915,24.119L55.277,23.906L54.741,24.245L53.812,24.153L53.171,24.148L52.046,24.47L50.776,24.338L50.068,23.857L48.731,24.167L48.174,23.905L47.614,24.105L47.426,23.639L46.425,23.153L46.133,22.883L44.803,22.642L44.165,22.86L42.521,23.104L40.877,22.23L40.449,21.829L40.522,21.277L40.67,20.461L40.574,18.807L39.772,17.857L39.361,17.834L39.367,17.813L38.911,17.825L38.398,16.851L37.283,16.39L36.529,16.52L35.966,15.448L36.368,13.955L36.524,14.127L36.18,15.43L36.766,15.217L37.032,14.51L36.882,14.033L37.612,13.507L36.524,13.042L36.619,12.673L36.662,11.91L37.018,12.101L38.155,11.995L36.861,11.089L36.967,9.277L36.738,8.791L36.947,7.611L37.039,6.146L36.506,5.056L36.408,4.442L36.518,3.106L37.176,2.137L36.985,1.715L37.398,1.803L39.565,3.947L41.164,4.538L42.228,5.168L43.522,5.308L44.159,6.078L44.748,6.085L45.144,7.583L43.891,7.988L43.628,8.541L43.037,8.936L42.228,9.721L42.04,10.244L42.736,9.441L43.356,8.95L44.188,8.838L44.727,8.089L45.625,7.558L45.556,8.688L44.735,9.122L45.029,10.175L44.58,10.791L44.151,11.689L43.797,11.375L44.251,10.689L44.203,10.675L43.038,11.457L43.396,10.752L43.213,10.852L43.197,10.907L42.698,11.094L42.497,11.61L41.71,12.071L42.414,11.776L42.954,11.922L43.368,12.564L44.452,11.593L44.997,11.48L45.458,11.418L45.464,9.841L45.753,9.961L45.784,9.973L45.543,9.268L45.943,8.579L46.631,7.589L47.232,7.198L46.717,6.398L46.766,5.692L46.093,6.161L46.206,5.413L46.774,5.546L46.774,5.546L46.952,5.277L46.49,4.132Z" + }, + { + "fill": "rgb(196, 232, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.056; geo: [object Object]; name: Washington", + "shape": "M42.699,11.915L42.725,11.12L43.097,11.075ZM44.667,11.319L45.108,10.194L45.322,11.118ZM45.036,9.733L44.868,9.075L45.165,8.75ZM46.236,7.788L45.468,6.691L45.7,5.884L45.144,5.3L45.852,4.479L46.408,5.122L45.31,5.252L45.823,5.574L45.736,6.876L45.963,6.38L46.505,6.965ZM45.001,3.876L44.838,3.573L45.33,3.036ZM44.739,2.99L44.41,3.425L44.013,2.603L44.421,2.299ZM45.302,2.783L44.762,2.336L45.309,1.953L46.069,2.508ZM45.979,4.215L46.402,3.561L46.894,4.069L47.122,2.918L47.13,2.016L46.571,2.274L46.712,1.844L46.284,0.957L46.635,0.318L51.059,1.604L54.798,2.605L58.107,3.483L63.506,4.836L66.273,5.505L69.592,6.276L71.305,6.676L71.083,7.663L69.9,12.848L69.799,13.294L68.906,17.263L68.749,17.962L68.556,18.819L67.697,22.636L67.528,23.386L67.527,23.389L67.315,23.876L67.674,25.172L67.298,25.626L67.465,26.335L64.905,25.732L64.352,25.597L62.641,25.187L62.56,25.167L58.064,24.091L57.305,24.366L55.915,24.119L55.277,23.906L54.741,24.245L53.812,24.153L53.171,24.148L52.046,24.47L50.776,24.338L50.068,23.857L48.731,24.167L48.174,23.905L47.614,24.105L47.426,23.639L46.425,23.153L46.133,22.883L44.803,22.642L44.165,22.86L42.521,23.104L40.877,22.23L40.449,21.829L40.522,21.277L40.67,20.461L40.574,18.807L39.772,17.857L39.361,17.834L39.367,17.813L38.911,17.825L38.398,16.851L37.283,16.39L36.529,16.52L35.966,15.448L36.368,13.955L36.524,14.127L36.18,15.43L36.766,15.217L37.032,14.51L36.882,14.033L37.612,13.507L36.524,13.042L36.619,12.673L36.662,11.91L37.018,12.101L38.155,11.995L36.861,11.089L36.967,9.277L36.738,8.791L36.947,7.611L37.039,6.146L36.506,5.056L36.408,4.442L36.518,3.106L37.176,2.137L36.985,1.715L37.398,1.803L39.565,3.947L41.164,4.538L42.228,5.168L43.522,5.308L44.159,6.078L44.748,6.085L45.144,7.583L43.891,7.988L43.628,8.541L43.037,8.936L42.228,9.721L42.04,10.244L42.736,9.441L43.356,8.95L44.188,8.838L44.727,8.089L45.625,7.558L45.556,8.688L44.735,9.122L45.029,10.175L44.58,10.791L44.151,11.689L43.797,11.375L44.251,10.689L44.203,10.675L43.038,11.457L43.396,10.752L43.213,10.852L43.197,10.907L42.698,11.094L42.497,11.61L41.71,12.071L42.414,11.776L42.954,11.922L43.368,12.564L44.452,11.593L44.997,11.48L45.458,11.418L45.464,9.841L45.753,9.961L45.784,9.973L45.543,9.268L45.943,8.579L46.631,7.589L47.232,7.198L46.717,6.398L46.766,5.692L46.093,6.161L46.206,5.413L46.774,5.546L46.774,5.546L46.952,5.277L46.49,4.132Z" + }, + { + "fill": "rgb(202, 234, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.05; geo: [object Object]; name: Washington", + "shape": "M42.699,11.915L42.725,11.12L43.097,11.075ZM44.667,11.319L45.108,10.194L45.322,11.118ZM45.036,9.733L44.868,9.075L45.165,8.75ZM46.236,7.788L45.468,6.691L45.7,5.884L45.144,5.3L45.852,4.479L46.408,5.122L45.31,5.252L45.823,5.574L45.736,6.876L45.963,6.38L46.505,6.965ZM45.001,3.876L44.838,3.573L45.33,3.036ZM44.739,2.99L44.41,3.425L44.013,2.603L44.421,2.299ZM45.302,2.783L44.762,2.336L45.309,1.953L46.069,2.508ZM45.979,4.215L46.402,3.561L46.894,4.069L47.122,2.918L47.13,2.016L46.571,2.274L46.712,1.844L46.284,0.957L46.635,0.318L51.059,1.604L54.798,2.605L58.107,3.483L63.506,4.836L66.273,5.505L69.592,6.276L71.305,6.676L71.083,7.663L69.9,12.848L69.799,13.294L68.906,17.263L68.749,17.962L68.556,18.819L67.697,22.636L67.528,23.386L67.527,23.389L67.315,23.876L67.674,25.172L67.298,25.626L67.465,26.335L64.905,25.732L64.352,25.597L62.641,25.187L62.56,25.167L58.064,24.091L57.305,24.366L55.915,24.119L55.277,23.906L54.741,24.245L53.812,24.153L53.171,24.148L52.046,24.47L50.776,24.338L50.068,23.857L48.731,24.167L48.174,23.905L47.614,24.105L47.426,23.639L46.425,23.153L46.133,22.883L44.803,22.642L44.165,22.86L42.521,23.104L40.877,22.23L40.449,21.829L40.522,21.277L40.67,20.461L40.574,18.807L39.772,17.857L39.361,17.834L39.367,17.813L38.911,17.825L38.398,16.851L37.283,16.39L36.529,16.52L35.966,15.448L36.368,13.955L36.524,14.127L36.18,15.43L36.766,15.217L37.032,14.51L36.882,14.033L37.612,13.507L36.524,13.042L36.619,12.673L36.662,11.91L37.018,12.101L38.155,11.995L36.861,11.089L36.967,9.277L36.738,8.791L36.947,7.611L37.039,6.146L36.506,5.056L36.408,4.442L36.518,3.106L37.176,2.137L36.985,1.715L37.398,1.803L39.565,3.947L41.164,4.538L42.228,5.168L43.522,5.308L44.159,6.078L44.748,6.085L45.144,7.583L43.891,7.988L43.628,8.541L43.037,8.936L42.228,9.721L42.04,10.244L42.736,9.441L43.356,8.95L44.188,8.838L44.727,8.089L45.625,7.558L45.556,8.688L44.735,9.122L45.029,10.175L44.58,10.791L44.151,11.689L43.797,11.375L44.251,10.689L44.203,10.675L43.038,11.457L43.396,10.752L43.213,10.852L43.197,10.907L42.698,11.094L42.497,11.61L41.71,12.071L42.414,11.776L42.954,11.922L43.368,12.564L44.452,11.593L44.997,11.48L45.458,11.418L45.464,9.841L45.753,9.961L45.784,9.973L45.543,9.268L45.943,8.579L46.631,7.589L47.232,7.198L46.717,6.398L46.766,5.692L46.093,6.161L46.206,5.413L46.774,5.546L46.774,5.546L46.952,5.277L46.49,4.132Z" + }, + { + "fill": "rgb(128, 206, 187)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.104; geo: [object Object]; name: West Virginia", + "shape": "M242.25,67.858L242.354,68.379L242.599,69.978L242.774,70.933L242.815,71.299L243.08,72.906L243.587,72.823L246.121,72.404L246.899,72.271L248.344,72.012L248.893,75.457L249.84,74.451L250.693,73.253L251.232,73.44L251.854,72.033L252.672,72.515L253.671,72.455L254.19,71.529L254.536,71.579L254.909,70.982L255.782,71.345L256.759,71.268L256.529,71.628L256.938,71.997L257.703,73.038L257.385,74.404L256.18,73.717L255.041,73.064L254.35,72.676L254.243,74.11L254.433,74.722L254.003,75.343L253.861,75.591L253.155,76.769L252.829,76.947L252.56,77.85L251.814,77.386L251.61,78.03L251.088,80.083L250.706,80.601L249.824,80.443L249.405,79.885L248.786,79.704L248.77,80.808L248.289,81.759L248.407,82.004L247.956,82.587L247.787,83.495L247.415,84.333L246.948,84.958L246.481,86.276L246.944,86.641L246.456,87.158L246.668,87.51L245.847,88.229L245.576,87.868L244.37,88.82L243.842,88.522L243.84,88.511L243.966,89.055L243.349,89.522L242.137,90.119L241.317,89.54L240.402,90.579L239.432,90.513L238.336,89.857L237.872,89.058L238.181,88.817L237.95,88.679L237.132,88.704L236.121,88.058L235.844,87.594L235.305,86.896L234.79,86.349L234.888,86.243L233.878,85.137L233.963,84.404L233.963,84.404L233.834,83.228L234.306,83.227L235.197,82.867L235.267,81.92L235.627,81.805L235.834,81.672L235.426,80.426L235.764,80.042L235.852,79.238L236.281,78.719L236.908,79.276L236.907,79.652L237.598,79.25L237.513,78.067L237.392,77.511L237.502,77.252L237.682,76.838L238.236,76.798L238.235,76.301L238.802,75.743L239.179,76.13L239.947,75.668L240.332,75.154L240.664,74.542L241.065,74.018L241.505,73.17L241.421,72.303L241.698,71.835L241.673,70.995L241.683,70.146L241.761,69.938L242.038,69.035L241.802,68.491L241.87,67.898L241.401,67.275L242.073,66.778Z" + }, + { + "fill": "rgb(174, 223, 182)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.073; geo: [object Object]; name: West Virginia", + "shape": "M242.25,67.858L242.354,68.379L242.599,69.978L242.774,70.933L242.815,71.299L243.08,72.906L243.587,72.823L246.121,72.404L246.899,72.271L248.344,72.012L248.893,75.457L249.84,74.451L250.693,73.253L251.232,73.44L251.854,72.033L252.672,72.515L253.671,72.455L254.19,71.529L254.536,71.579L254.909,70.982L255.782,71.345L256.759,71.268L256.529,71.628L256.938,71.997L257.703,73.038L257.385,74.404L256.18,73.717L255.041,73.064L254.35,72.676L254.243,74.11L254.433,74.722L254.003,75.343L253.861,75.591L253.155,76.769L252.829,76.947L252.56,77.85L251.814,77.386L251.61,78.03L251.088,80.083L250.706,80.601L249.824,80.443L249.405,79.885L248.786,79.704L248.77,80.808L248.289,81.759L248.407,82.004L247.956,82.587L247.787,83.495L247.415,84.333L246.948,84.958L246.481,86.276L246.944,86.641L246.456,87.158L246.668,87.51L245.847,88.229L245.576,87.868L244.37,88.82L243.842,88.522L243.84,88.511L243.966,89.055L243.349,89.522L242.137,90.119L241.317,89.54L240.402,90.579L239.432,90.513L238.336,89.857L237.872,89.058L238.181,88.817L237.95,88.679L237.132,88.704L236.121,88.058L235.844,87.594L235.305,86.896L234.79,86.349L234.888,86.243L233.878,85.137L233.963,84.404L233.963,84.404L233.834,83.228L234.306,83.227L235.197,82.867L235.267,81.92L235.627,81.805L235.834,81.672L235.426,80.426L235.764,80.042L235.852,79.238L236.281,78.719L236.908,79.276L236.907,79.652L237.598,79.25L237.513,78.067L237.392,77.511L237.502,77.252L237.682,76.838L238.236,76.798L238.235,76.301L238.802,75.743L239.179,76.13L239.947,75.668L240.332,75.154L240.664,74.542L241.065,74.018L241.505,73.17L241.421,72.303L241.698,71.835L241.673,70.995L241.683,70.146L241.761,69.938L242.038,69.035L241.802,68.491L241.87,67.898L241.401,67.275L242.073,66.778Z" + }, + { + "fill": "rgb(73, 182, 194)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.144; geo: [object Object]; name: West Virginia", + "shape": "M242.25,67.858L242.354,68.379L242.599,69.978L242.774,70.933L242.815,71.299L243.08,72.906L243.587,72.823L246.121,72.404L246.899,72.271L248.344,72.012L248.893,75.457L249.84,74.451L250.693,73.253L251.232,73.44L251.854,72.033L252.672,72.515L253.671,72.455L254.19,71.529L254.536,71.579L254.909,70.982L255.782,71.345L256.759,71.268L256.529,71.628L256.938,71.997L257.703,73.038L257.385,74.404L256.18,73.717L255.041,73.064L254.35,72.676L254.243,74.11L254.433,74.722L254.003,75.343L253.861,75.591L253.155,76.769L252.829,76.947L252.56,77.85L251.814,77.386L251.61,78.03L251.088,80.083L250.706,80.601L249.824,80.443L249.405,79.885L248.786,79.704L248.77,80.808L248.289,81.759L248.407,82.004L247.956,82.587L247.787,83.495L247.415,84.333L246.948,84.958L246.481,86.276L246.944,86.641L246.456,87.158L246.668,87.51L245.847,88.229L245.576,87.868L244.37,88.82L243.842,88.522L243.84,88.511L243.966,89.055L243.349,89.522L242.137,90.119L241.317,89.54L240.402,90.579L239.432,90.513L238.336,89.857L237.872,89.058L238.181,88.817L237.95,88.679L237.132,88.704L236.121,88.058L235.844,87.594L235.305,86.896L234.79,86.349L234.888,86.243L233.878,85.137L233.963,84.404L233.963,84.404L233.834,83.228L234.306,83.227L235.197,82.867L235.267,81.92L235.627,81.805L235.834,81.672L235.426,80.426L235.764,80.042L235.852,79.238L236.281,78.719L236.908,79.276L236.907,79.652L237.598,79.25L237.513,78.067L237.392,77.511L237.502,77.252L237.682,76.838L238.236,76.798L238.235,76.301L238.802,75.743L239.179,76.13L239.947,75.668L240.332,75.154L240.664,74.542L241.065,74.018L241.505,73.17L241.421,72.303L241.698,71.835L241.673,70.995L241.683,70.146L241.761,69.938L242.038,69.035L241.802,68.491L241.87,67.898L241.401,67.275L242.073,66.778Z" + }, + { + "fill": "rgb(105, 197, 190)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.119; geo: [object Object]; name: West Virginia", + "shape": "M242.25,67.858L242.354,68.379L242.599,69.978L242.774,70.933L242.815,71.299L243.08,72.906L243.587,72.823L246.121,72.404L246.899,72.271L248.344,72.012L248.893,75.457L249.84,74.451L250.693,73.253L251.232,73.44L251.854,72.033L252.672,72.515L253.671,72.455L254.19,71.529L254.536,71.579L254.909,70.982L255.782,71.345L256.759,71.268L256.529,71.628L256.938,71.997L257.703,73.038L257.385,74.404L256.18,73.717L255.041,73.064L254.35,72.676L254.243,74.11L254.433,74.722L254.003,75.343L253.861,75.591L253.155,76.769L252.829,76.947L252.56,77.85L251.814,77.386L251.61,78.03L251.088,80.083L250.706,80.601L249.824,80.443L249.405,79.885L248.786,79.704L248.77,80.808L248.289,81.759L248.407,82.004L247.956,82.587L247.787,83.495L247.415,84.333L246.948,84.958L246.481,86.276L246.944,86.641L246.456,87.158L246.668,87.51L245.847,88.229L245.576,87.868L244.37,88.82L243.842,88.522L243.84,88.511L243.966,89.055L243.349,89.522L242.137,90.119L241.317,89.54L240.402,90.579L239.432,90.513L238.336,89.857L237.872,89.058L238.181,88.817L237.95,88.679L237.132,88.704L236.121,88.058L235.844,87.594L235.305,86.896L234.79,86.349L234.888,86.243L233.878,85.137L233.963,84.404L233.963,84.404L233.834,83.228L234.306,83.227L235.197,82.867L235.267,81.92L235.627,81.805L235.834,81.672L235.426,80.426L235.764,80.042L235.852,79.238L236.281,78.719L236.908,79.276L236.907,79.652L237.598,79.25L237.513,78.067L237.392,77.511L237.502,77.252L237.682,76.838L238.236,76.798L238.235,76.301L238.802,75.743L239.179,76.13L239.947,75.668L240.332,75.154L240.664,74.542L241.065,74.018L241.505,73.17L241.421,72.303L241.698,71.835L241.673,70.995L241.683,70.146L241.761,69.938L242.038,69.035L241.802,68.491L241.87,67.898L241.401,67.275L242.073,66.778Z" + }, + { + "fill": "rgb(71, 181, 194)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.146; geo: [object Object]; name: West Virginia", + "shape": "M242.25,67.858L242.354,68.379L242.599,69.978L242.774,70.933L242.815,71.299L243.08,72.906L243.587,72.823L246.121,72.404L246.899,72.271L248.344,72.012L248.893,75.457L249.84,74.451L250.693,73.253L251.232,73.44L251.854,72.033L252.672,72.515L253.671,72.455L254.19,71.529L254.536,71.579L254.909,70.982L255.782,71.345L256.759,71.268L256.529,71.628L256.938,71.997L257.703,73.038L257.385,74.404L256.18,73.717L255.041,73.064L254.35,72.676L254.243,74.11L254.433,74.722L254.003,75.343L253.861,75.591L253.155,76.769L252.829,76.947L252.56,77.85L251.814,77.386L251.61,78.03L251.088,80.083L250.706,80.601L249.824,80.443L249.405,79.885L248.786,79.704L248.77,80.808L248.289,81.759L248.407,82.004L247.956,82.587L247.787,83.495L247.415,84.333L246.948,84.958L246.481,86.276L246.944,86.641L246.456,87.158L246.668,87.51L245.847,88.229L245.576,87.868L244.37,88.82L243.842,88.522L243.84,88.511L243.966,89.055L243.349,89.522L242.137,90.119L241.317,89.54L240.402,90.579L239.432,90.513L238.336,89.857L237.872,89.058L238.181,88.817L237.95,88.679L237.132,88.704L236.121,88.058L235.844,87.594L235.305,86.896L234.79,86.349L234.888,86.243L233.878,85.137L233.963,84.404L233.963,84.404L233.834,83.228L234.306,83.227L235.197,82.867L235.267,81.92L235.627,81.805L235.834,81.672L235.426,80.426L235.764,80.042L235.852,79.238L236.281,78.719L236.908,79.276L236.907,79.652L237.598,79.25L237.513,78.067L237.392,77.511L237.502,77.252L237.682,76.838L238.236,76.798L238.235,76.301L238.802,75.743L239.179,76.13L239.947,75.668L240.332,75.154L240.664,74.542L241.065,74.018L241.505,73.17L241.421,72.303L241.698,71.835L241.673,70.995L241.683,70.146L241.761,69.938L242.038,69.035L241.802,68.491L241.87,67.898L241.401,67.275L242.073,66.778Z" + }, + { + "fill": "rgb(124, 204, 188)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.107; geo: [object Object]; name: West Virginia", + "shape": "M242.25,67.858L242.354,68.379L242.599,69.978L242.774,70.933L242.815,71.299L243.08,72.906L243.587,72.823L246.121,72.404L246.899,72.271L248.344,72.012L248.893,75.457L249.84,74.451L250.693,73.253L251.232,73.44L251.854,72.033L252.672,72.515L253.671,72.455L254.19,71.529L254.536,71.579L254.909,70.982L255.782,71.345L256.759,71.268L256.529,71.628L256.938,71.997L257.703,73.038L257.385,74.404L256.18,73.717L255.041,73.064L254.35,72.676L254.243,74.11L254.433,74.722L254.003,75.343L253.861,75.591L253.155,76.769L252.829,76.947L252.56,77.85L251.814,77.386L251.61,78.03L251.088,80.083L250.706,80.601L249.824,80.443L249.405,79.885L248.786,79.704L248.77,80.808L248.289,81.759L248.407,82.004L247.956,82.587L247.787,83.495L247.415,84.333L246.948,84.958L246.481,86.276L246.944,86.641L246.456,87.158L246.668,87.51L245.847,88.229L245.576,87.868L244.37,88.82L243.842,88.522L243.84,88.511L243.966,89.055L243.349,89.522L242.137,90.119L241.317,89.54L240.402,90.579L239.432,90.513L238.336,89.857L237.872,89.058L238.181,88.817L237.95,88.679L237.132,88.704L236.121,88.058L235.844,87.594L235.305,86.896L234.79,86.349L234.888,86.243L233.878,85.137L233.963,84.404L233.963,84.404L233.834,83.228L234.306,83.227L235.197,82.867L235.267,81.92L235.627,81.805L235.834,81.672L235.426,80.426L235.764,80.042L235.852,79.238L236.281,78.719L236.908,79.276L236.907,79.652L237.598,79.25L237.513,78.067L237.392,77.511L237.502,77.252L237.682,76.838L238.236,76.798L238.235,76.301L238.802,75.743L239.179,76.13L239.947,75.668L240.332,75.154L240.664,74.542L241.065,74.018L241.505,73.17L241.421,72.303L241.698,71.835L241.673,70.995L241.683,70.146L241.761,69.938L242.038,69.035L241.802,68.491L241.87,67.898L241.401,67.275L242.073,66.778Z" + }, + { + "fill": "rgb(46, 159, 192)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.174; geo: [object Object]; name: West Virginia", + "shape": "M242.25,67.858L242.354,68.379L242.599,69.978L242.774,70.933L242.815,71.299L243.08,72.906L243.587,72.823L246.121,72.404L246.899,72.271L248.344,72.012L248.893,75.457L249.84,74.451L250.693,73.253L251.232,73.44L251.854,72.033L252.672,72.515L253.671,72.455L254.19,71.529L254.536,71.579L254.909,70.982L255.782,71.345L256.759,71.268L256.529,71.628L256.938,71.997L257.703,73.038L257.385,74.404L256.18,73.717L255.041,73.064L254.35,72.676L254.243,74.11L254.433,74.722L254.003,75.343L253.861,75.591L253.155,76.769L252.829,76.947L252.56,77.85L251.814,77.386L251.61,78.03L251.088,80.083L250.706,80.601L249.824,80.443L249.405,79.885L248.786,79.704L248.77,80.808L248.289,81.759L248.407,82.004L247.956,82.587L247.787,83.495L247.415,84.333L246.948,84.958L246.481,86.276L246.944,86.641L246.456,87.158L246.668,87.51L245.847,88.229L245.576,87.868L244.37,88.82L243.842,88.522L243.84,88.511L243.966,89.055L243.349,89.522L242.137,90.119L241.317,89.54L240.402,90.579L239.432,90.513L238.336,89.857L237.872,89.058L238.181,88.817L237.95,88.679L237.132,88.704L236.121,88.058L235.844,87.594L235.305,86.896L234.79,86.349L234.888,86.243L233.878,85.137L233.963,84.404L233.963,84.404L233.834,83.228L234.306,83.227L235.197,82.867L235.267,81.92L235.627,81.805L235.834,81.672L235.426,80.426L235.764,80.042L235.852,79.238L236.281,78.719L236.908,79.276L236.907,79.652L237.598,79.25L237.513,78.067L237.392,77.511L237.502,77.252L237.682,76.838L238.236,76.798L238.235,76.301L238.802,75.743L239.179,76.13L239.947,75.668L240.332,75.154L240.664,74.542L241.065,74.018L241.505,73.17L241.421,72.303L241.698,71.835L241.673,70.995L241.683,70.146L241.761,69.938L242.038,69.035L241.802,68.491L241.87,67.898L241.401,67.275L242.073,66.778Z" + }, + { + "fill": "rgb(152, 215, 185)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.088; geo: [object Object]; name: West Virginia", + "shape": "M242.25,67.858L242.354,68.379L242.599,69.978L242.774,70.933L242.815,71.299L243.08,72.906L243.587,72.823L246.121,72.404L246.899,72.271L248.344,72.012L248.893,75.457L249.84,74.451L250.693,73.253L251.232,73.44L251.854,72.033L252.672,72.515L253.671,72.455L254.19,71.529L254.536,71.579L254.909,70.982L255.782,71.345L256.759,71.268L256.529,71.628L256.938,71.997L257.703,73.038L257.385,74.404L256.18,73.717L255.041,73.064L254.35,72.676L254.243,74.11L254.433,74.722L254.003,75.343L253.861,75.591L253.155,76.769L252.829,76.947L252.56,77.85L251.814,77.386L251.61,78.03L251.088,80.083L250.706,80.601L249.824,80.443L249.405,79.885L248.786,79.704L248.77,80.808L248.289,81.759L248.407,82.004L247.956,82.587L247.787,83.495L247.415,84.333L246.948,84.958L246.481,86.276L246.944,86.641L246.456,87.158L246.668,87.51L245.847,88.229L245.576,87.868L244.37,88.82L243.842,88.522L243.84,88.511L243.966,89.055L243.349,89.522L242.137,90.119L241.317,89.54L240.402,90.579L239.432,90.513L238.336,89.857L237.872,89.058L238.181,88.817L237.95,88.679L237.132,88.704L236.121,88.058L235.844,87.594L235.305,86.896L234.79,86.349L234.888,86.243L233.878,85.137L233.963,84.404L233.963,84.404L233.834,83.228L234.306,83.227L235.197,82.867L235.267,81.92L235.627,81.805L235.834,81.672L235.426,80.426L235.764,80.042L235.852,79.238L236.281,78.719L236.908,79.276L236.907,79.652L237.598,79.25L237.513,78.067L237.392,77.511L237.502,77.252L237.682,76.838L238.236,76.798L238.235,76.301L238.802,75.743L239.179,76.13L239.947,75.668L240.332,75.154L240.664,74.542L241.065,74.018L241.505,73.17L241.421,72.303L241.698,71.835L241.673,70.995L241.683,70.146L241.761,69.938L242.038,69.035L241.802,68.491L241.87,67.898L241.401,67.275L242.073,66.778Z" + }, + { + "fill": "rgb(226, 244, 183)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.025; geo: [object Object]; name: West Virginia", + "shape": "M242.25,67.858L242.354,68.379L242.599,69.978L242.774,70.933L242.815,71.299L243.08,72.906L243.587,72.823L246.121,72.404L246.899,72.271L248.344,72.012L248.893,75.457L249.84,74.451L250.693,73.253L251.232,73.44L251.854,72.033L252.672,72.515L253.671,72.455L254.19,71.529L254.536,71.579L254.909,70.982L255.782,71.345L256.759,71.268L256.529,71.628L256.938,71.997L257.703,73.038L257.385,74.404L256.18,73.717L255.041,73.064L254.35,72.676L254.243,74.11L254.433,74.722L254.003,75.343L253.861,75.591L253.155,76.769L252.829,76.947L252.56,77.85L251.814,77.386L251.61,78.03L251.088,80.083L250.706,80.601L249.824,80.443L249.405,79.885L248.786,79.704L248.77,80.808L248.289,81.759L248.407,82.004L247.956,82.587L247.787,83.495L247.415,84.333L246.948,84.958L246.481,86.276L246.944,86.641L246.456,87.158L246.668,87.51L245.847,88.229L245.576,87.868L244.37,88.82L243.842,88.522L243.84,88.511L243.966,89.055L243.349,89.522L242.137,90.119L241.317,89.54L240.402,90.579L239.432,90.513L238.336,89.857L237.872,89.058L238.181,88.817L237.95,88.679L237.132,88.704L236.121,88.058L235.844,87.594L235.305,86.896L234.79,86.349L234.888,86.243L233.878,85.137L233.963,84.404L233.963,84.404L233.834,83.228L234.306,83.227L235.197,82.867L235.267,81.92L235.627,81.805L235.834,81.672L235.426,80.426L235.764,80.042L235.852,79.238L236.281,78.719L236.908,79.276L236.907,79.652L237.598,79.25L237.513,78.067L237.392,77.511L237.502,77.252L237.682,76.838L238.236,76.798L238.235,76.301L238.802,75.743L239.179,76.13L239.947,75.668L240.332,75.154L240.664,74.542L241.065,74.018L241.505,73.17L241.421,72.303L241.698,71.835L241.673,70.995L241.683,70.146L241.761,69.938L242.038,69.035L241.802,68.491L241.87,67.898L241.401,67.275L242.073,66.778Z" + }, + { + "fill": "rgb(229, 245, 185)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.02; geo: [object Object]; name: West Virginia", + "shape": "M242.25,67.858L242.354,68.379L242.599,69.978L242.774,70.933L242.815,71.299L243.08,72.906L243.587,72.823L246.121,72.404L246.899,72.271L248.344,72.012L248.893,75.457L249.84,74.451L250.693,73.253L251.232,73.44L251.854,72.033L252.672,72.515L253.671,72.455L254.19,71.529L254.536,71.579L254.909,70.982L255.782,71.345L256.759,71.268L256.529,71.628L256.938,71.997L257.703,73.038L257.385,74.404L256.18,73.717L255.041,73.064L254.35,72.676L254.243,74.11L254.433,74.722L254.003,75.343L253.861,75.591L253.155,76.769L252.829,76.947L252.56,77.85L251.814,77.386L251.61,78.03L251.088,80.083L250.706,80.601L249.824,80.443L249.405,79.885L248.786,79.704L248.77,80.808L248.289,81.759L248.407,82.004L247.956,82.587L247.787,83.495L247.415,84.333L246.948,84.958L246.481,86.276L246.944,86.641L246.456,87.158L246.668,87.51L245.847,88.229L245.576,87.868L244.37,88.82L243.842,88.522L243.84,88.511L243.966,89.055L243.349,89.522L242.137,90.119L241.317,89.54L240.402,90.579L239.432,90.513L238.336,89.857L237.872,89.058L238.181,88.817L237.95,88.679L237.132,88.704L236.121,88.058L235.844,87.594L235.305,86.896L234.79,86.349L234.888,86.243L233.878,85.137L233.963,84.404L233.963,84.404L233.834,83.228L234.306,83.227L235.197,82.867L235.267,81.92L235.627,81.805L235.834,81.672L235.426,80.426L235.764,80.042L235.852,79.238L236.281,78.719L236.908,79.276L236.907,79.652L237.598,79.25L237.513,78.067L237.392,77.511L237.502,77.252L237.682,76.838L238.236,76.798L238.235,76.301L238.802,75.743L239.179,76.13L239.947,75.668L240.332,75.154L240.664,74.542L241.065,74.018L241.505,73.17L241.421,72.303L241.698,71.835L241.673,70.995L241.683,70.146L241.761,69.938L242.038,69.035L241.802,68.491L241.87,67.898L241.401,67.275L242.073,66.778Z" + }, + { + "fill": "rgb(190, 229, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.062; geo: [object Object]; name: Wisconsin", + "shape": "M207.25,39.413L206.831,39.12L207.377,38.967ZM188.357,31.308L189.071,30.445L189.295,30.597ZM187.755,32.455L188.769,31.868L189.496,32.37L190.116,32.452L190.116,32.456L191.07,32.823L191.57,33.898L192.484,34.089L192.489,34.172L192.484,34.089L196.438,34.9L196.925,35.142L197.204,35.283L198.403,35.59L199.219,35.504L201.092,35.999L201.047,36.674L201.438,36.916L201.438,36.916L202.459,37.22L202.789,37.524L202.598,38.242L202.837,38.659L202.468,39.693L203.608,39.717L203.251,40.685L203.899,41.277L203.916,42.057L203.284,42.243L202.719,43.23L202.379,44.266L202.365,44.296L202.379,44.266L202.362,44.268L202.365,44.296L202.223,45.055L202.566,45.251L203.471,44.397L203.588,44.17L204.073,43.051L205.057,42.397L206.348,39.764L206.605,40.138L206.461,41.322L205.992,41.967L205.984,42.617L205.537,43.154L205.291,44.029L204.911,44.948L204.699,46.429L204.818,47.565L204.398,47.896L204.064,49.425L204.324,50.815L203.974,51.794L203.659,53.006L203.691,54.195L204.207,56.522L204.573,56.88L204.413,57.68L204.533,58.859L202.597,59.004L202.07,59.051L200.101,59.214L199.768,59.25L198.957,59.29L196.879,59.407L196.702,59.416L194.553,59.524L194.13,59.551L191.665,59.695L190.608,59.749L190.262,58.922L189.28,58.696L189.28,58.692L188.502,58.301L187.925,56.647L187.788,56.034L188.303,54.81L187.517,54.125L187.532,53.737L187.454,53.211L187.154,52.443L187.187,51.706L187.186,51.692L187.008,50.896L186.29,50.008L185.639,49.76L184.142,48.699L183.792,47.769L183.017,47.303L182.999,47.3L182.216,47.021L181.868,46.452L180.715,46.3L179.843,45.359L179.494,45.15L179.622,44.373L179.61,42.038L179.641,41.456L180.043,40.371L179.444,39.638L178.92,39.594L178.905,39.144L179.088,38.565L179.671,37.429L181.317,36.569L181.547,35.606L181.48,33.871L181.415,32.223L181.415,32.223L181.831,32.229L181.938,32.005L182.304,31.642L182.702,32.035L183.611,31.953L184.816,31.459L185.663,31.16L186.285,30.659L186.832,30.681L187.429,30.075L187.933,29.919L188.453,30.343L187.877,31.327L188.047,31.724Z" + }, + { + "fill": "rgb(197, 232, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.055; geo: [object Object]; name: Wisconsin", + "shape": "M207.25,39.413L206.831,39.12L207.377,38.967ZM188.357,31.308L189.071,30.445L189.295,30.597ZM187.755,32.455L188.769,31.868L189.496,32.37L190.116,32.452L190.116,32.456L191.07,32.823L191.57,33.898L192.484,34.089L192.489,34.172L192.484,34.089L196.438,34.9L196.925,35.142L197.204,35.283L198.403,35.59L199.219,35.504L201.092,35.999L201.047,36.674L201.438,36.916L201.438,36.916L202.459,37.22L202.789,37.524L202.598,38.242L202.837,38.659L202.468,39.693L203.608,39.717L203.251,40.685L203.899,41.277L203.916,42.057L203.284,42.243L202.719,43.23L202.379,44.266L202.365,44.296L202.379,44.266L202.362,44.268L202.365,44.296L202.223,45.055L202.566,45.251L203.471,44.397L203.588,44.17L204.073,43.051L205.057,42.397L206.348,39.764L206.605,40.138L206.461,41.322L205.992,41.967L205.984,42.617L205.537,43.154L205.291,44.029L204.911,44.948L204.699,46.429L204.818,47.565L204.398,47.896L204.064,49.425L204.324,50.815L203.974,51.794L203.659,53.006L203.691,54.195L204.207,56.522L204.573,56.88L204.413,57.68L204.533,58.859L202.597,59.004L202.07,59.051L200.101,59.214L199.768,59.25L198.957,59.29L196.879,59.407L196.702,59.416L194.553,59.524L194.13,59.551L191.665,59.695L190.608,59.749L190.262,58.922L189.28,58.696L189.28,58.692L188.502,58.301L187.925,56.647L187.788,56.034L188.303,54.81L187.517,54.125L187.532,53.737L187.454,53.211L187.154,52.443L187.187,51.706L187.186,51.692L187.008,50.896L186.29,50.008L185.639,49.76L184.142,48.699L183.792,47.769L183.017,47.303L182.999,47.3L182.216,47.021L181.868,46.452L180.715,46.3L179.843,45.359L179.494,45.15L179.622,44.373L179.61,42.038L179.641,41.456L180.043,40.371L179.444,39.638L178.92,39.594L178.905,39.144L179.088,38.565L179.671,37.429L181.317,36.569L181.547,35.606L181.48,33.871L181.415,32.223L181.415,32.223L181.831,32.229L181.938,32.005L182.304,31.642L182.702,32.035L183.611,31.953L184.816,31.459L185.663,31.16L186.285,30.659L186.832,30.681L187.429,30.075L187.933,29.919L188.453,30.343L187.877,31.327L188.047,31.724Z" + }, + { + "fill": "rgb(117, 202, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.111; geo: [object Object]; name: Wisconsin", + "shape": "M207.25,39.413L206.831,39.12L207.377,38.967ZM188.357,31.308L189.071,30.445L189.295,30.597ZM187.755,32.455L188.769,31.868L189.496,32.37L190.116,32.452L190.116,32.456L191.07,32.823L191.57,33.898L192.484,34.089L192.489,34.172L192.484,34.089L196.438,34.9L196.925,35.142L197.204,35.283L198.403,35.59L199.219,35.504L201.092,35.999L201.047,36.674L201.438,36.916L201.438,36.916L202.459,37.22L202.789,37.524L202.598,38.242L202.837,38.659L202.468,39.693L203.608,39.717L203.251,40.685L203.899,41.277L203.916,42.057L203.284,42.243L202.719,43.23L202.379,44.266L202.365,44.296L202.379,44.266L202.362,44.268L202.365,44.296L202.223,45.055L202.566,45.251L203.471,44.397L203.588,44.17L204.073,43.051L205.057,42.397L206.348,39.764L206.605,40.138L206.461,41.322L205.992,41.967L205.984,42.617L205.537,43.154L205.291,44.029L204.911,44.948L204.699,46.429L204.818,47.565L204.398,47.896L204.064,49.425L204.324,50.815L203.974,51.794L203.659,53.006L203.691,54.195L204.207,56.522L204.573,56.88L204.413,57.68L204.533,58.859L202.597,59.004L202.07,59.051L200.101,59.214L199.768,59.25L198.957,59.29L196.879,59.407L196.702,59.416L194.553,59.524L194.13,59.551L191.665,59.695L190.608,59.749L190.262,58.922L189.28,58.696L189.28,58.692L188.502,58.301L187.925,56.647L187.788,56.034L188.303,54.81L187.517,54.125L187.532,53.737L187.454,53.211L187.154,52.443L187.187,51.706L187.186,51.692L187.008,50.896L186.29,50.008L185.639,49.76L184.142,48.699L183.792,47.769L183.017,47.303L182.999,47.3L182.216,47.021L181.868,46.452L180.715,46.3L179.843,45.359L179.494,45.15L179.622,44.373L179.61,42.038L179.641,41.456L180.043,40.371L179.444,39.638L178.92,39.594L178.905,39.144L179.088,38.565L179.671,37.429L181.317,36.569L181.547,35.606L181.48,33.871L181.415,32.223L181.415,32.223L181.831,32.229L181.938,32.005L182.304,31.642L182.702,32.035L183.611,31.953L184.816,31.459L185.663,31.16L186.285,30.659L186.832,30.681L187.429,30.075L187.933,29.919L188.453,30.343L187.877,31.327L188.047,31.724Z" + }, + { + "fill": "rgb(124, 204, 188)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.107; geo: [object Object]; name: Wisconsin", + "shape": "M207.25,39.413L206.831,39.12L207.377,38.967ZM188.357,31.308L189.071,30.445L189.295,30.597ZM187.755,32.455L188.769,31.868L189.496,32.37L190.116,32.452L190.116,32.456L191.07,32.823L191.57,33.898L192.484,34.089L192.489,34.172L192.484,34.089L196.438,34.9L196.925,35.142L197.204,35.283L198.403,35.59L199.219,35.504L201.092,35.999L201.047,36.674L201.438,36.916L201.438,36.916L202.459,37.22L202.789,37.524L202.598,38.242L202.837,38.659L202.468,39.693L203.608,39.717L203.251,40.685L203.899,41.277L203.916,42.057L203.284,42.243L202.719,43.23L202.379,44.266L202.365,44.296L202.379,44.266L202.362,44.268L202.365,44.296L202.223,45.055L202.566,45.251L203.471,44.397L203.588,44.17L204.073,43.051L205.057,42.397L206.348,39.764L206.605,40.138L206.461,41.322L205.992,41.967L205.984,42.617L205.537,43.154L205.291,44.029L204.911,44.948L204.699,46.429L204.818,47.565L204.398,47.896L204.064,49.425L204.324,50.815L203.974,51.794L203.659,53.006L203.691,54.195L204.207,56.522L204.573,56.88L204.413,57.68L204.533,58.859L202.597,59.004L202.07,59.051L200.101,59.214L199.768,59.25L198.957,59.29L196.879,59.407L196.702,59.416L194.553,59.524L194.13,59.551L191.665,59.695L190.608,59.749L190.262,58.922L189.28,58.696L189.28,58.692L188.502,58.301L187.925,56.647L187.788,56.034L188.303,54.81L187.517,54.125L187.532,53.737L187.454,53.211L187.154,52.443L187.187,51.706L187.186,51.692L187.008,50.896L186.29,50.008L185.639,49.76L184.142,48.699L183.792,47.769L183.017,47.303L182.999,47.3L182.216,47.021L181.868,46.452L180.715,46.3L179.843,45.359L179.494,45.15L179.622,44.373L179.61,42.038L179.641,41.456L180.043,40.371L179.444,39.638L178.92,39.594L178.905,39.144L179.088,38.565L179.671,37.429L181.317,36.569L181.547,35.606L181.48,33.871L181.415,32.223L181.415,32.223L181.831,32.229L181.938,32.005L182.304,31.642L182.702,32.035L183.611,31.953L184.816,31.459L185.663,31.16L186.285,30.659L186.832,30.681L187.429,30.075L187.933,29.919L188.453,30.343L187.877,31.327L188.047,31.724Z" + }, + { + "fill": "rgb(70, 180, 194)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.147; geo: [object Object]; name: Wisconsin", + "shape": "M207.25,39.413L206.831,39.12L207.377,38.967ZM188.357,31.308L189.071,30.445L189.295,30.597ZM187.755,32.455L188.769,31.868L189.496,32.37L190.116,32.452L190.116,32.456L191.07,32.823L191.57,33.898L192.484,34.089L192.489,34.172L192.484,34.089L196.438,34.9L196.925,35.142L197.204,35.283L198.403,35.59L199.219,35.504L201.092,35.999L201.047,36.674L201.438,36.916L201.438,36.916L202.459,37.22L202.789,37.524L202.598,38.242L202.837,38.659L202.468,39.693L203.608,39.717L203.251,40.685L203.899,41.277L203.916,42.057L203.284,42.243L202.719,43.23L202.379,44.266L202.365,44.296L202.379,44.266L202.362,44.268L202.365,44.296L202.223,45.055L202.566,45.251L203.471,44.397L203.588,44.17L204.073,43.051L205.057,42.397L206.348,39.764L206.605,40.138L206.461,41.322L205.992,41.967L205.984,42.617L205.537,43.154L205.291,44.029L204.911,44.948L204.699,46.429L204.818,47.565L204.398,47.896L204.064,49.425L204.324,50.815L203.974,51.794L203.659,53.006L203.691,54.195L204.207,56.522L204.573,56.88L204.413,57.68L204.533,58.859L202.597,59.004L202.07,59.051L200.101,59.214L199.768,59.25L198.957,59.29L196.879,59.407L196.702,59.416L194.553,59.524L194.13,59.551L191.665,59.695L190.608,59.749L190.262,58.922L189.28,58.696L189.28,58.692L188.502,58.301L187.925,56.647L187.788,56.034L188.303,54.81L187.517,54.125L187.532,53.737L187.454,53.211L187.154,52.443L187.187,51.706L187.186,51.692L187.008,50.896L186.29,50.008L185.639,49.76L184.142,48.699L183.792,47.769L183.017,47.303L182.999,47.3L182.216,47.021L181.868,46.452L180.715,46.3L179.843,45.359L179.494,45.15L179.622,44.373L179.61,42.038L179.641,41.456L180.043,40.371L179.444,39.638L178.92,39.594L178.905,39.144L179.088,38.565L179.671,37.429L181.317,36.569L181.547,35.606L181.48,33.871L181.415,32.223L181.415,32.223L181.831,32.229L181.938,32.005L182.304,31.642L182.702,32.035L183.611,31.953L184.816,31.459L185.663,31.16L186.285,30.659L186.832,30.681L187.429,30.075L187.933,29.919L188.453,30.343L187.877,31.327L188.047,31.724Z" + }, + { + "fill": "rgb(90, 190, 192)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.131; geo: [object Object]; name: Wisconsin", + "shape": "M207.25,39.413L206.831,39.12L207.377,38.967ZM188.357,31.308L189.071,30.445L189.295,30.597ZM187.755,32.455L188.769,31.868L189.496,32.37L190.116,32.452L190.116,32.456L191.07,32.823L191.57,33.898L192.484,34.089L192.489,34.172L192.484,34.089L196.438,34.9L196.925,35.142L197.204,35.283L198.403,35.59L199.219,35.504L201.092,35.999L201.047,36.674L201.438,36.916L201.438,36.916L202.459,37.22L202.789,37.524L202.598,38.242L202.837,38.659L202.468,39.693L203.608,39.717L203.251,40.685L203.899,41.277L203.916,42.057L203.284,42.243L202.719,43.23L202.379,44.266L202.365,44.296L202.379,44.266L202.362,44.268L202.365,44.296L202.223,45.055L202.566,45.251L203.471,44.397L203.588,44.17L204.073,43.051L205.057,42.397L206.348,39.764L206.605,40.138L206.461,41.322L205.992,41.967L205.984,42.617L205.537,43.154L205.291,44.029L204.911,44.948L204.699,46.429L204.818,47.565L204.398,47.896L204.064,49.425L204.324,50.815L203.974,51.794L203.659,53.006L203.691,54.195L204.207,56.522L204.573,56.88L204.413,57.68L204.533,58.859L202.597,59.004L202.07,59.051L200.101,59.214L199.768,59.25L198.957,59.29L196.879,59.407L196.702,59.416L194.553,59.524L194.13,59.551L191.665,59.695L190.608,59.749L190.262,58.922L189.28,58.696L189.28,58.692L188.502,58.301L187.925,56.647L187.788,56.034L188.303,54.81L187.517,54.125L187.532,53.737L187.454,53.211L187.154,52.443L187.187,51.706L187.186,51.692L187.008,50.896L186.29,50.008L185.639,49.76L184.142,48.699L183.792,47.769L183.017,47.303L182.999,47.3L182.216,47.021L181.868,46.452L180.715,46.3L179.843,45.359L179.494,45.15L179.622,44.373L179.61,42.038L179.641,41.456L180.043,40.371L179.444,39.638L178.92,39.594L178.905,39.144L179.088,38.565L179.671,37.429L181.317,36.569L181.547,35.606L181.48,33.871L181.415,32.223L181.415,32.223L181.831,32.229L181.938,32.005L182.304,31.642L182.702,32.035L183.611,31.953L184.816,31.459L185.663,31.16L186.285,30.659L186.832,30.681L187.429,30.075L187.933,29.919L188.453,30.343L187.877,31.327L188.047,31.724Z" + }, + { + "fill": "rgb(35, 135, 185)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.199; geo: [object Object]; name: Wisconsin", + "shape": "M207.25,39.413L206.831,39.12L207.377,38.967ZM188.357,31.308L189.071,30.445L189.295,30.597ZM187.755,32.455L188.769,31.868L189.496,32.37L190.116,32.452L190.116,32.456L191.07,32.823L191.57,33.898L192.484,34.089L192.489,34.172L192.484,34.089L196.438,34.9L196.925,35.142L197.204,35.283L198.403,35.59L199.219,35.504L201.092,35.999L201.047,36.674L201.438,36.916L201.438,36.916L202.459,37.22L202.789,37.524L202.598,38.242L202.837,38.659L202.468,39.693L203.608,39.717L203.251,40.685L203.899,41.277L203.916,42.057L203.284,42.243L202.719,43.23L202.379,44.266L202.365,44.296L202.379,44.266L202.362,44.268L202.365,44.296L202.223,45.055L202.566,45.251L203.471,44.397L203.588,44.17L204.073,43.051L205.057,42.397L206.348,39.764L206.605,40.138L206.461,41.322L205.992,41.967L205.984,42.617L205.537,43.154L205.291,44.029L204.911,44.948L204.699,46.429L204.818,47.565L204.398,47.896L204.064,49.425L204.324,50.815L203.974,51.794L203.659,53.006L203.691,54.195L204.207,56.522L204.573,56.88L204.413,57.68L204.533,58.859L202.597,59.004L202.07,59.051L200.101,59.214L199.768,59.25L198.957,59.29L196.879,59.407L196.702,59.416L194.553,59.524L194.13,59.551L191.665,59.695L190.608,59.749L190.262,58.922L189.28,58.696L189.28,58.692L188.502,58.301L187.925,56.647L187.788,56.034L188.303,54.81L187.517,54.125L187.532,53.737L187.454,53.211L187.154,52.443L187.187,51.706L187.186,51.692L187.008,50.896L186.29,50.008L185.639,49.76L184.142,48.699L183.792,47.769L183.017,47.303L182.999,47.3L182.216,47.021L181.868,46.452L180.715,46.3L179.843,45.359L179.494,45.15L179.622,44.373L179.61,42.038L179.641,41.456L180.043,40.371L179.444,39.638L178.92,39.594L178.905,39.144L179.088,38.565L179.671,37.429L181.317,36.569L181.547,35.606L181.48,33.871L181.415,32.223L181.415,32.223L181.831,32.229L181.938,32.005L182.304,31.642L182.702,32.035L183.611,31.953L184.816,31.459L185.663,31.16L186.285,30.659L186.832,30.681L187.429,30.075L187.933,29.919L188.453,30.343L187.877,31.327L188.047,31.724Z" + }, + { + "fill": "rgb(100, 195, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.123; geo: [object Object]; name: Wisconsin", + "shape": "M207.25,39.413L206.831,39.12L207.377,38.967ZM188.357,31.308L189.071,30.445L189.295,30.597ZM187.755,32.455L188.769,31.868L189.496,32.37L190.116,32.452L190.116,32.456L191.07,32.823L191.57,33.898L192.484,34.089L192.489,34.172L192.484,34.089L196.438,34.9L196.925,35.142L197.204,35.283L198.403,35.59L199.219,35.504L201.092,35.999L201.047,36.674L201.438,36.916L201.438,36.916L202.459,37.22L202.789,37.524L202.598,38.242L202.837,38.659L202.468,39.693L203.608,39.717L203.251,40.685L203.899,41.277L203.916,42.057L203.284,42.243L202.719,43.23L202.379,44.266L202.365,44.296L202.379,44.266L202.362,44.268L202.365,44.296L202.223,45.055L202.566,45.251L203.471,44.397L203.588,44.17L204.073,43.051L205.057,42.397L206.348,39.764L206.605,40.138L206.461,41.322L205.992,41.967L205.984,42.617L205.537,43.154L205.291,44.029L204.911,44.948L204.699,46.429L204.818,47.565L204.398,47.896L204.064,49.425L204.324,50.815L203.974,51.794L203.659,53.006L203.691,54.195L204.207,56.522L204.573,56.88L204.413,57.68L204.533,58.859L202.597,59.004L202.07,59.051L200.101,59.214L199.768,59.25L198.957,59.29L196.879,59.407L196.702,59.416L194.553,59.524L194.13,59.551L191.665,59.695L190.608,59.749L190.262,58.922L189.28,58.696L189.28,58.692L188.502,58.301L187.925,56.647L187.788,56.034L188.303,54.81L187.517,54.125L187.532,53.737L187.454,53.211L187.154,52.443L187.187,51.706L187.186,51.692L187.008,50.896L186.29,50.008L185.639,49.76L184.142,48.699L183.792,47.769L183.017,47.303L182.999,47.3L182.216,47.021L181.868,46.452L180.715,46.3L179.843,45.359L179.494,45.15L179.622,44.373L179.61,42.038L179.641,41.456L180.043,40.371L179.444,39.638L178.92,39.594L178.905,39.144L179.088,38.565L179.671,37.429L181.317,36.569L181.547,35.606L181.48,33.871L181.415,32.223L181.415,32.223L181.831,32.229L181.938,32.005L182.304,31.642L182.702,32.035L183.611,31.953L184.816,31.459L185.663,31.16L186.285,30.659L186.832,30.681L187.429,30.075L187.933,29.919L188.453,30.343L187.877,31.327L188.047,31.724Z" + }, + { + "fill": "rgb(218, 241, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.035; geo: [object Object]; name: Wisconsin", + "shape": "M207.25,39.413L206.831,39.12L207.377,38.967ZM188.357,31.308L189.071,30.445L189.295,30.597ZM187.755,32.455L188.769,31.868L189.496,32.37L190.116,32.452L190.116,32.456L191.07,32.823L191.57,33.898L192.484,34.089L192.489,34.172L192.484,34.089L196.438,34.9L196.925,35.142L197.204,35.283L198.403,35.59L199.219,35.504L201.092,35.999L201.047,36.674L201.438,36.916L201.438,36.916L202.459,37.22L202.789,37.524L202.598,38.242L202.837,38.659L202.468,39.693L203.608,39.717L203.251,40.685L203.899,41.277L203.916,42.057L203.284,42.243L202.719,43.23L202.379,44.266L202.365,44.296L202.379,44.266L202.362,44.268L202.365,44.296L202.223,45.055L202.566,45.251L203.471,44.397L203.588,44.17L204.073,43.051L205.057,42.397L206.348,39.764L206.605,40.138L206.461,41.322L205.992,41.967L205.984,42.617L205.537,43.154L205.291,44.029L204.911,44.948L204.699,46.429L204.818,47.565L204.398,47.896L204.064,49.425L204.324,50.815L203.974,51.794L203.659,53.006L203.691,54.195L204.207,56.522L204.573,56.88L204.413,57.68L204.533,58.859L202.597,59.004L202.07,59.051L200.101,59.214L199.768,59.25L198.957,59.29L196.879,59.407L196.702,59.416L194.553,59.524L194.13,59.551L191.665,59.695L190.608,59.749L190.262,58.922L189.28,58.696L189.28,58.692L188.502,58.301L187.925,56.647L187.788,56.034L188.303,54.81L187.517,54.125L187.532,53.737L187.454,53.211L187.154,52.443L187.187,51.706L187.186,51.692L187.008,50.896L186.29,50.008L185.639,49.76L184.142,48.699L183.792,47.769L183.017,47.303L182.999,47.3L182.216,47.021L181.868,46.452L180.715,46.3L179.843,45.359L179.494,45.15L179.622,44.373L179.61,42.038L179.641,41.456L180.043,40.371L179.444,39.638L178.92,39.594L178.905,39.144L179.088,38.565L179.671,37.429L181.317,36.569L181.547,35.606L181.48,33.871L181.415,32.223L181.415,32.223L181.831,32.229L181.938,32.005L182.304,31.642L182.702,32.035L183.611,31.953L184.816,31.459L185.663,31.16L186.285,30.659L186.832,30.681L187.429,30.075L187.933,29.919L188.453,30.343L187.877,31.327L188.047,31.724Z" + }, + { + "fill": "rgb(222, 242, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.03; geo: [object Object]; name: Wisconsin", + "shape": "M207.25,39.413L206.831,39.12L207.377,38.967ZM188.357,31.308L189.071,30.445L189.295,30.597ZM187.755,32.455L188.769,31.868L189.496,32.37L190.116,32.452L190.116,32.456L191.07,32.823L191.57,33.898L192.484,34.089L192.489,34.172L192.484,34.089L196.438,34.9L196.925,35.142L197.204,35.283L198.403,35.59L199.219,35.504L201.092,35.999L201.047,36.674L201.438,36.916L201.438,36.916L202.459,37.22L202.789,37.524L202.598,38.242L202.837,38.659L202.468,39.693L203.608,39.717L203.251,40.685L203.899,41.277L203.916,42.057L203.284,42.243L202.719,43.23L202.379,44.266L202.365,44.296L202.379,44.266L202.362,44.268L202.365,44.296L202.223,45.055L202.566,45.251L203.471,44.397L203.588,44.17L204.073,43.051L205.057,42.397L206.348,39.764L206.605,40.138L206.461,41.322L205.992,41.967L205.984,42.617L205.537,43.154L205.291,44.029L204.911,44.948L204.699,46.429L204.818,47.565L204.398,47.896L204.064,49.425L204.324,50.815L203.974,51.794L203.659,53.006L203.691,54.195L204.207,56.522L204.573,56.88L204.413,57.68L204.533,58.859L202.597,59.004L202.07,59.051L200.101,59.214L199.768,59.25L198.957,59.29L196.879,59.407L196.702,59.416L194.553,59.524L194.13,59.551L191.665,59.695L190.608,59.749L190.262,58.922L189.28,58.696L189.28,58.692L188.502,58.301L187.925,56.647L187.788,56.034L188.303,54.81L187.517,54.125L187.532,53.737L187.454,53.211L187.154,52.443L187.187,51.706L187.186,51.692L187.008,50.896L186.29,50.008L185.639,49.76L184.142,48.699L183.792,47.769L183.017,47.303L182.999,47.3L182.216,47.021L181.868,46.452L180.715,46.3L179.843,45.359L179.494,45.15L179.622,44.373L179.61,42.038L179.641,41.456L180.043,40.371L179.444,39.638L178.92,39.594L178.905,39.144L179.088,38.565L179.671,37.429L181.317,36.569L181.547,35.606L181.48,33.871L181.415,32.223L181.415,32.223L181.831,32.229L181.938,32.005L182.304,31.642L182.702,32.035L183.611,31.953L184.816,31.459L185.663,31.16L186.285,30.659L186.832,30.681L187.429,30.075L187.933,29.919L188.453,30.343L187.877,31.327L188.047,31.724Z" + }, + { + "fill": "rgb(204, 235, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.048; geo: [object Object]; name: Wyoming", + "shape": "M104.682,39.738L106.434,39.976L108.021,40.165L111.883,40.667L115.767,41.127L116.883,41.246L121.303,41.645L121.54,41.668L126.161,42.106L125.936,44.964L125.713,47.582L125.691,47.848L125.527,49.772L125.327,52.124L125.313,52.297L125.06,55.478L124.835,58.122L124.487,62.224L124.313,64.268L124.237,65.168L124.139,66.323L123.915,68.961L119.461,68.584L117.793,68.424L113.221,67.954L112.576,67.88L109.892,67.558L107.602,67.282L104.614,66.923L98.967,66.187L94.254,65.534L94.004,65.497L89.054,64.726L89.324,63.033L89.691,60.848L90.123,58.027L90.668,54.617L91.224,51.24L91.539,49.269L91.735,48.039L92.231,44.824L92.751,41.569L92.905,40.28L93.327,38.067L94.896,38.38L99.16,38.955Z" + }, + { + "fill": "rgb(202, 234, 181)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.05; geo: [object Object]; name: Wyoming", + "shape": "M104.682,39.738L106.434,39.976L108.021,40.165L111.883,40.667L115.767,41.127L116.883,41.246L121.303,41.645L121.54,41.668L126.161,42.106L125.936,44.964L125.713,47.582L125.691,47.848L125.527,49.772L125.327,52.124L125.313,52.297L125.06,55.478L124.835,58.122L124.487,62.224L124.313,64.268L124.237,65.168L124.139,66.323L123.915,68.961L119.461,68.584L117.793,68.424L113.221,67.954L112.576,67.88L109.892,67.558L107.602,67.282L104.614,66.923L98.967,66.187L94.254,65.534L94.004,65.497L89.054,64.726L89.324,63.033L89.691,60.848L90.123,58.027L90.668,54.617L91.224,51.24L91.539,49.269L91.735,48.039L92.231,44.824L92.751,41.569L92.905,40.28L93.327,38.067L94.896,38.38L99.16,38.955Z" + }, + { + "fill": "rgb(137, 209, 186)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.098; geo: [object Object]; name: Wyoming", + "shape": "M104.682,39.738L106.434,39.976L108.021,40.165L111.883,40.667L115.767,41.127L116.883,41.246L121.303,41.645L121.54,41.668L126.161,42.106L125.936,44.964L125.713,47.582L125.691,47.848L125.527,49.772L125.327,52.124L125.313,52.297L125.06,55.478L124.835,58.122L124.487,62.224L124.313,64.268L124.237,65.168L124.139,66.323L123.915,68.961L119.461,68.584L117.793,68.424L113.221,67.954L112.576,67.88L109.892,67.558L107.602,67.282L104.614,66.923L98.967,66.187L94.254,65.534L94.004,65.497L89.054,64.726L89.324,63.033L89.691,60.848L90.123,58.027L90.668,54.617L91.224,51.24L91.539,49.269L91.735,48.039L92.231,44.824L92.751,41.569L92.905,40.28L93.327,38.067L94.896,38.38L99.16,38.955Z" + }, + { + "fill": "rgb(130, 206, 187)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.103; geo: [object Object]; name: Wyoming", + "shape": "M104.682,39.738L106.434,39.976L108.021,40.165L111.883,40.667L115.767,41.127L116.883,41.246L121.303,41.645L121.54,41.668L126.161,42.106L125.936,44.964L125.713,47.582L125.691,47.848L125.527,49.772L125.327,52.124L125.313,52.297L125.06,55.478L124.835,58.122L124.487,62.224L124.313,64.268L124.237,65.168L124.139,66.323L123.915,68.961L119.461,68.584L117.793,68.424L113.221,67.954L112.576,67.88L109.892,67.558L107.602,67.282L104.614,66.923L98.967,66.187L94.254,65.534L94.004,65.497L89.054,64.726L89.324,63.033L89.691,60.848L90.123,58.027L90.668,54.617L91.224,51.24L91.539,49.269L91.735,48.039L92.231,44.824L92.751,41.569L92.905,40.28L93.327,38.067L94.896,38.38L99.16,38.955Z" + }, + { + "fill": "rgb(80, 185, 193)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.139; geo: [object Object]; name: Wyoming", + "shape": "M104.682,39.738L106.434,39.976L108.021,40.165L111.883,40.667L115.767,41.127L116.883,41.246L121.303,41.645L121.54,41.668L126.161,42.106L125.936,44.964L125.713,47.582L125.691,47.848L125.527,49.772L125.327,52.124L125.313,52.297L125.06,55.478L124.835,58.122L124.487,62.224L124.313,64.268L124.237,65.168L124.139,66.323L123.915,68.961L119.461,68.584L117.793,68.424L113.221,67.954L112.576,67.88L109.892,67.558L107.602,67.282L104.614,66.923L98.967,66.187L94.254,65.534L94.004,65.497L89.054,64.726L89.324,63.033L89.691,60.848L90.123,58.027L90.668,54.617L91.224,51.24L91.539,49.269L91.735,48.039L92.231,44.824L92.751,41.569L92.905,40.28L93.327,38.067L94.896,38.38L99.16,38.955Z" + }, + { + "fill": "rgb(76, 183, 193)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.142; geo: [object Object]; name: Wyoming", + "shape": "M104.682,39.738L106.434,39.976L108.021,40.165L111.883,40.667L115.767,41.127L116.883,41.246L121.303,41.645L121.54,41.668L126.161,42.106L125.936,44.964L125.713,47.582L125.691,47.848L125.527,49.772L125.327,52.124L125.313,52.297L125.06,55.478L124.835,58.122L124.487,62.224L124.313,64.268L124.237,65.168L124.139,66.323L123.915,68.961L119.461,68.584L117.793,68.424L113.221,67.954L112.576,67.88L109.892,67.558L107.602,67.282L104.614,66.923L98.967,66.187L94.254,65.534L94.004,65.497L89.054,64.726L89.324,63.033L89.691,60.848L90.123,58.027L90.668,54.617L91.224,51.24L91.539,49.269L91.735,48.039L92.231,44.824L92.751,41.569L92.905,40.28L93.327,38.067L94.896,38.38L99.16,38.955Z" + }, + { + "fill": "rgb(36, 138, 186)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.196; geo: [object Object]; name: Wyoming", + "shape": "M104.682,39.738L106.434,39.976L108.021,40.165L111.883,40.667L115.767,41.127L116.883,41.246L121.303,41.645L121.54,41.668L126.161,42.106L125.936,44.964L125.713,47.582L125.691,47.848L125.527,49.772L125.327,52.124L125.313,52.297L125.06,55.478L124.835,58.122L124.487,62.224L124.313,64.268L124.237,65.168L124.139,66.323L123.915,68.961L119.461,68.584L117.793,68.424L113.221,67.954L112.576,67.88L109.892,67.558L107.602,67.282L104.614,66.923L98.967,66.187L94.254,65.534L94.004,65.497L89.054,64.726L89.324,63.033L89.691,60.848L90.123,58.027L90.668,54.617L91.224,51.24L91.539,49.269L91.735,48.039L92.231,44.824L92.751,41.569L92.905,40.28L93.327,38.067L94.896,38.38L99.16,38.955Z" + }, + { + "fill": "rgb(66, 177, 194)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.151; geo: [object Object]; name: Wyoming", + "shape": "M104.682,39.738L106.434,39.976L108.021,40.165L111.883,40.667L115.767,41.127L116.883,41.246L121.303,41.645L121.54,41.668L126.161,42.106L125.936,44.964L125.713,47.582L125.691,47.848L125.527,49.772L125.327,52.124L125.313,52.297L125.06,55.478L124.835,58.122L124.487,62.224L124.313,64.268L124.237,65.168L124.139,66.323L123.915,68.961L119.461,68.584L117.793,68.424L113.221,67.954L112.576,67.88L109.892,67.558L107.602,67.282L104.614,66.923L98.967,66.187L94.254,65.534L94.004,65.497L89.054,64.726L89.324,63.033L89.691,60.848L90.123,58.027L90.668,54.617L91.224,51.24L91.539,49.269L91.735,48.039L92.231,44.824L92.751,41.569L92.905,40.28L93.327,38.067L94.896,38.38L99.16,38.955Z" + }, + { + "fill": "rgb(209, 237, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.044; geo: [object Object]; name: Wyoming", + "shape": "M104.682,39.738L106.434,39.976L108.021,40.165L111.883,40.667L115.767,41.127L116.883,41.246L121.303,41.645L121.54,41.668L126.161,42.106L125.936,44.964L125.713,47.582L125.691,47.848L125.527,49.772L125.327,52.124L125.313,52.297L125.06,55.478L124.835,58.122L124.487,62.224L124.313,64.268L124.237,65.168L124.139,66.323L123.915,68.961L119.461,68.584L117.793,68.424L113.221,67.954L112.576,67.88L109.892,67.558L107.602,67.282L104.614,66.923L98.967,66.187L94.254,65.534L94.004,65.497L89.054,64.726L89.324,63.033L89.691,60.848L90.123,58.027L90.668,54.617L91.224,51.24L91.539,49.269L91.735,48.039L92.231,44.824L92.751,41.569L92.905,40.28L93.327,38.067L94.896,38.38L99.16,38.955Z" + }, + { + "fill": "rgb(223, 242, 182)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.029; geo: [object Object]; name: Wyoming", + "shape": "M104.682,39.738L106.434,39.976L108.021,40.165L111.883,40.667L115.767,41.127L116.883,41.246L121.303,41.645L121.54,41.668L126.161,42.106L125.936,44.964L125.713,47.582L125.691,47.848L125.527,49.772L125.327,52.124L125.313,52.297L125.06,55.478L124.835,58.122L124.487,62.224L124.313,64.268L124.237,65.168L124.139,66.323L123.915,68.961L119.461,68.584L117.793,68.424L113.221,67.954L112.576,67.88L109.892,67.558L107.602,67.282L104.614,66.923L98.967,66.187L94.254,65.534L94.004,65.497L89.054,64.726L89.324,63.033L89.691,60.848L90.123,58.027L90.668,54.617L91.224,51.24L91.539,49.269L91.735,48.039L92.231,44.824L92.751,41.569L92.905,40.28L93.327,38.067L94.896,38.38L99.16,38.955Z" + }, + { + "fill": "rgb(28, 49, 133)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.289; geo: [object Object]; name: Puerto Rico", + "shape": "" + }, + { + "fill": "rgb(107, 198, 190)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.118; geo: [object Object]; name: Puerto Rico", + "shape": "" + }, + { + "fill": "rgb(40, 148, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.186; geo: [object Object]; name: Puerto Rico", + "shape": "" + }, + { + "fill": "rgb(100, 195, 191)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.123; geo: [object Object]; name: Puerto Rico", + "shape": "" + }, + { + "fill": "rgb(110, 199, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.116; geo: [object Object]; name: Puerto Rico", + "shape": "" + }, + { + "fill": "rgb(218, 241, 180)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.035; geo: [object Object]; name: Puerto Rico", + "shape": "" + }, + { + "fill": "rgb(143, 211, 186)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.094; geo: [object Object]; name: Puerto Rico", + "shape": "" + }, + { + "fill": "rgb(226, 244, 183)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.024; geo: [object Object]; name: Puerto Rico", + "shape": "" + }, + { + "fill": "rgb(238, 248, 188)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.008; geo: [object Object]; name: Puerto Rico", + "shape": "" + }, + { + "fill": "rgb(239, 249, 189)", + "ariaRoleDescription": "geoshape", + "description": "pct: 0.006; geo: [object Object]; name: Puerto Rico", + "shape": "" + } + ], + "marktype": "shape", + "name": "marks", + "role": "mark", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "x": 0, + "y": 0, + "width": 16, + "height": 175, + "stroke": "#ddd", + "strokeWidth": 0, + "fill": { + "gradient": "linear", + "x1": 0, + "y1": 1, + "x2": 0, + "y2": 0, + "stops": [ + { + "offset": 0, + "color": "rgb(239, 249, 189)" + }, + { + "offset": 0.04946996466431096, + "color": "rgb(229, 245, 185)" + }, + { + "offset": 0.12014134275618377, + "color": "rgb(213, 239, 180)" + }, + { + "offset": 0.19081272084805656, + "color": "rgb(192, 230, 181)" + }, + { + "offset": 0.26148409893992935, + "color": "rgb(164, 219, 183)" + }, + { + "offset": 0.33215547703180215, + "color": "rgb(134, 208, 187)" + }, + { + "offset": 0.4028268551236749, + "color": "rgb(104, 197, 190)" + }, + { + "offset": 0.4734982332155478, + "color": "rgb(79, 185, 193)" + }, + { + "offset": 0.5441696113074206, + "color": "rgb(58, 170, 193)" + }, + { + "offset": 0.6148409893992933, + "color": "rgb(42, 154, 191)" + }, + { + "offset": 0.6855123674911662, + "color": "rgb(35, 134, 185)" + }, + { + "offset": 0.7561837455830389, + "color": "rgb(33, 113, 176)" + }, + { + "offset": 0.8268551236749117, + "color": "rgb(34, 91, 166)" + }, + { + "offset": 0.8975265017667845, + "color": "rgb(35, 72, 156)" + }, + { + "offset": 0.9681978798586575, + "color": "rgb(30, 56, 140)" + }, + { + "offset": 1, + "color": "rgb(28, 49, 133)" + } + ] + } + } + ], + "marktype": "rect", + "role": "legend-gradient", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "align": "left", + "baseline": "bottom", + "y": 175, + "x": 18, + "text": "0.0" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "align": "left", + "baseline": "top", + "y": 0, + "x": 18, + "text": "0.3" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "x": 0, + "y": 16 + } + ], + "marktype": "group", + "role": "legend-entry", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "orient": "top", + "text": "pct", + "limit": 180, + "x": 0, + "y": 0, + "angle": 0, + "align": "left", + "baseline": "top" + } + ], + "marktype": "text", + "role": "legend-title", + "zindex": 0 + } + ], + "orient": "right", + "x": 318, + "y": 0, + "width": 32, + "height": 191 + } + ], + "marktype": "group", + "role": "legend", + "zindex": 0 + } + ], + "fill": "transparent", + "x": 0, + "y": 0, + "width": 300, + "height": 175 + } + ], + "marktype": "group", + "name": "root", + "role": "frame", + "zindex": 0 + } +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/maptile_background.png b/avenger-vega-test-data/vega-scenegraphs/vl-convert/maptile_background.png new file mode 100644 index 0000000..e8e1f5e Binary files /dev/null and b/avenger-vega-test-data/vega-scenegraphs/vl-convert/maptile_background.png differ diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/maptile_background.sg.json b/avenger-vega-test-data/vega-scenegraphs/vl-convert/maptile_background.sg.json new file mode 100644 index 0000000..31f24f4 --- /dev/null +++ b/avenger-vega-test-data/vega-scenegraphs/vl-convert/maptile_background.sg.json @@ -0,0 +1,1679 @@ +{ + "width": 610, + "height": 610, + "origin": [ + 5, + 5 + ], + "scenegraph": { + "clip": false, + "interactive": true, + "items": [ + { + "items": [ + { + "clip": true, + "interactive": true, + "items": [ + { + "description": "x: −398.131700798; y: 76.318530718; url: https://tile.openstreetmap.org/1/0/0.png", + "width": 1246.6370614359173, + "height": 1246.6370614359173, + "url": "https://tile.openstreetmap.org/1/0/0.png", + "x": -1021.4502315156906, + "y": -547 + }, + { + "description": "x: 858.505360638; y: 76.318530718; url: https://tile.openstreetmap.org/1/1/0.png", + "width": 1246.6370614359173, + "height": 1246.6370614359173, + "url": "https://tile.openstreetmap.org/1/1/0.png", + "x": 235.18682992022673, + "y": -547 + } + ], + "marktype": "image", + "name": "layer_0_marks", + "role": "mark", + "zindex": 0 + }, + { + "clip": true, + "interactive": true, + "items": [ + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(218, 241, 180)", + "ariaRoleDescription": "geoshape", + "description": "id: 4", + "shape": "M657.511,437.583L664.648,440.833L669.901,439.688L671.359,435.792L676.863,434.493L680.809,431.859L682.191,424.902L688.072,423.21L689.178,420.068L692.471,422.423L694.582,422.705L698.452,422.765L703.73,424.605L705.866,425.672L710.918,422.869L713.256,424.561L715.517,420.531L719.69,420.71L720.77,419.426L721.499,415.845L724.515,412.758L728.285,414.778L727.531,417.496L729.642,417.915L728.989,425.302L731.753,428.168L734.191,426.323L737.283,425.464L741.631,421.53L746.456,422.185L753.644,422.199L754.901,424.709L750.829,425.701L747.286,427.313L739.268,428.316L731.779,430.141L727.682,433.924L729.341,437.569L730.145,441.831L726.651,445.406L726.953,448.662L725.043,451.704L718.383,451.447L721.147,456.986L716.699,459.105L713.733,464.11L714.11,469.067L711.396,471.374L708.807,470.61L703.479,471.679L702.7,473.978L697.497,473.965L693.627,478.57L693.375,485.455L684.302,488.801L679.427,488.095L678.019,489.845L673.847,488.828L666.86,490.021L655.173,485.932L661.507,478.597L660.929,473.356L655.651,471.971L655.098,466.753L652.811,460.134L655.801,455.57L652.76,454.336L654.671,448.204Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(212, 238, 180)", + "ariaRoleDescription": "geoshape", + "description": "id: 24", + "shape": "M397.133,781.022L397.862,783.237L397.057,786.686L398.289,790.032L397.258,792.717L397.862,795.176L383.31,795.092L382.983,818.039L387.708,823.991L392.257,828.556L379.439,831.546L362.525,830.515L357.699,826.996L329.399,827.317L328.344,827.825L324.172,824.523L319.648,824.313L315.476,825.548L312.108,826.946L311.454,822.35L312.409,815.963L314.822,809.334L315.199,806.231L317.461,799.753L319.12,796.802L323.116,792.124L325.378,788.944L326.107,783.659L325.73,779.626L323.644,777.09L321.784,772.794L320.075,768.541L320.452,767.081L322.588,764.272L320.477,757.469L319.045,752.752L315.551,748.303L316.204,746.936L319.095,745.997L321.105,746.128L323.568,745.284L344.178,745.379L345.887,750.61L347.897,754.823L349.506,757.099L352.17,760.785L356.794,760.224L359.081,759.233L362.952,760.224L364.007,758.458L365.742,754.359L370.065,754.085L370.441,752.859L374.01,752.835L373.407,755.371L381.877,755.312L382.003,759.746L383.41,762.468L382.38,766.722L382.907,771.068L385.245,773.693L384.868,782.141L386.577,781.491L389.618,781.672L393.941,780.601ZM315.224,744.762L313.364,739.492L316.179,736.468L318.291,735.283L320.904,737.689L318.366,739.16L317.235,740.963L317.009,744.025Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(217, 240, 180)", + "ariaRoleDescription": "geoshape", + "description": "id: 8", + "shape": "M373.935,381.959L373.055,385.139L374.036,389.134L376.926,391.388L376.8,393.804L374.513,395.125L374.111,398.099L370.869,402.517L369.662,401.888L369.537,399.888L365.666,396.815L365.063,392.449L365.641,386.133L366.596,383.227L365.415,381.753L364.963,378.762L367.978,374.102L368.431,375.884L370.316,375.05L371.799,377.596L373.457,378.554Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(35, 74, 158)", + "ariaRoleDescription": "geoshape", + "description": "id: 784", + "shape": "M590.28,529.723L591.511,529.347L591.788,531.445L597.242,530.241L603.022,530.435L607.245,530.669L612.02,525.476L617.222,520.53L621.646,515.754L622.953,518.408L623.908,524.499L620.339,524.538L619.761,529.529L621.017,530.591L617.851,532.105L617.826,535.215L615.79,538.368L615.614,541.421L614.206,543.021L593.22,539.203L590.556,531.484Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(209, 237, 180)", + "ariaRoleDescription": "geoshape", + "description": "id: 32", + "shape": "M-237.274,1164.722L-241.497,1164.393L-248.961,1164.373L-248.961,1138.005L-246.297,1143.369L-242.804,1152.164L-233.731,1159.327L-223.954,1162.324L-227.095,1168.414L-233.731,1169.015ZM-207.441,863.664L-194.598,876.045L-188.893,877.196L-180.373,882.867L-173.185,885.877L-172.18,889.291L-179.041,901.134L-172.004,903.261L-164.162,904.473L-158.633,903.208L-152.3,897.2L-151.169,890.34L-147.7,888.846L-144.207,893.323L-144.358,899.556L-150.239,903.887L-154.913,907.103L-162.805,914.798L-172.104,925.744L-173.864,932.239L-175.724,940.654L-175.648,948.896L-177.181,950.759L-177.709,956.178L-178.187,960.576L-169.315,967.863L-170.27,973.795L-165.922,977.558L-166.274,981.815L-172.984,993.097L-183.339,997.88L-197.338,999.745L-205.004,998.85L-203.521,1004.211L-204.953,1011.009L-203.671,1015.635L-207.869,1018.884L-215.006,1020.17L-221.717,1016.789L-224.431,1019.213L-223.451,1028.484L-218.726,1031.323L-214.906,1028.356L-212.845,1033.261L-219.254,1036.204L-224.859,1042.152L-225.889,1051.926L-227.548,1057.185L-234.133,1057.219L-239.612,1062.292L-241.622,1069.817L-234.761,1077.273L-228.076,1079.34L-230.488,1088.661L-238.732,1094.589L-243.256,1107.125L-249.64,1111.433L-252.48,1116.56L-250.243,1128.152L-245.593,1134.725L-248.534,1134.145L-254.993,1132.352L-271.882,1130.833L-274.773,1124.272L-274.622,1115.944L-279.271,1116.653L-281.735,1112.673L-282.338,1101.201L-276.984,1096.509L-274.773,1089.813L-275.602,1084.534L-271.882,1075.75L-269.344,1062.393L-270.098,1056.567L-267.032,1054.699L-267.786,1050.999L-271.028,1049.05L-268.716,1044.977L-271.882,1041.322L-273.516,1030.333L-270.701,1028.42L-271.882,1017.07L-270.249,1007.693L-268.364,999.639L-264.192,996.382L-266.303,987.737L-266.328,979.69L-261.05,974.029L-261.226,966.851L-257.23,958.574L-257.205,950.844L-259.014,949.319L-262.231,935.071L-257.934,926.716L-258.612,918.923L-256.099,911.674L-251.525,904.247L-246.599,899.37L-248.685,896.302L-247.227,893.796L-247.453,880.916L-239.863,877.144L-237.45,869.233L-238.305,867.335L-232.499,860.515L-223.351,862.35L-219.254,867.809L-216.514,861.738L-208.572,862.044Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(204, 235, 181)", + "ariaRoleDescription": "geoshape", + "description": "id: 51", + "shape": "M544.161,387.628L545.593,390.059L548.257,391.669L546.85,393.975L550.57,397.109L548.609,400.027L551.575,402.486L554.691,403.973L554.867,410.217L552.329,410.475L549.489,405.272L549.514,403.881L546.423,403.912L544.362,401.473L542.904,401.719L540.165,399.071L534.962,396.799L535.641,392.324L534.459,389.072Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(216, 240, 180)", + "ariaRoleDescription": "geoshape", + "description": "id: 10", + "shape": "M-189.798,1721.118L-204.425,1715.046L-220.033,1717.659L-228.779,1703.167L-228.779,1701.508L-232.6,1689.175L-216.891,1690.784L-201.837,1694.87L-196.634,1678.02L-192.94,1664.132L-185.701,1680.404L-187.762,1701.508ZM-894.703,1664.329L-903.851,1650.894L-907.948,1637.826L-908.225,1635.678L-912.749,1625.881L-908.501,1612.942L-895.507,1618.362L-888.546,1629.362L-883.217,1642.156L-881.307,1659.044ZM-122.241,1722.253L-138.778,1719.61L-147.952,1705.05L-146.72,1687.781L-131.816,1676.664L-125.809,1663.542L-121.436,1647.225L-118.27,1633.602L-114.047,1621.069L-109.523,1606.965L-105.98,1606.965L-95.574,1599.783L-85.044,1606.965L-76.448,1621.779L-73.432,1643.589L-72.603,1659.758L-72.326,1679.79L-83.134,1692.681L-94.494,1703.383L-107.613,1713.56ZM-609.192,1491.449L-618.894,1489.428L-625.881,1480.6L-624.373,1472.408L-616.028,1476.713L-607.006,1480.6L-598.662,1476.255L-602.633,1484.99ZM-635.708,1485.968L-639.829,1484.99L-648.852,1482.536L-658.428,1475.757L-653.351,1470.518L-646.389,1476.255ZM-441.43,1453.292L-446.883,1451.486L-455.353,1452.388L-463.974,1451.486L-473.424,1452.859L-480.537,1448.325L-484.206,1438.983L-479.833,1435.047L-470.961,1438.109L-460.832,1439.858L-453.167,1442.956L-445.526,1440.316ZM-266.026,1452.898L-275.175,1452.466L-271.757,1443.455L-279.975,1446.579L-287.766,1449.727L-293.095,1442.994L-293.497,1433.768L-285.831,1425.181L-281.056,1422.613L-272.988,1423.455L-270.927,1412.565L-270.525,1404.815L-270.676,1388.474L-266.705,1379.193L-260.271,1376.132L-256.576,1383.408L-254.943,1390.809L-251.927,1399.968L-249.615,1408.867L-247.704,1418.428L-246.875,1428.172L-248.107,1436.821L-250.017,1445.226L-258.21,1448.364ZM-769.631,1960.91L-768.887,1960.038L-767.379,1923.733L-794.875,1920.872L-817.444,1903.998L-823.325,1877.434L-842.049,1863.436L-840.818,1835.817L-838.229,1812.141L-835.615,1791.843L-836.998,1770.549L-848.609,1756.953L-853.937,1740.061L-864.745,1725.676L-847.78,1728.359L-831.644,1721.27L-821.541,1736.436L-809.1,1723.087L-797.614,1706.723L-792.01,1692.61L-794.473,1675.852L-803.495,1665.052L-813.75,1653.763L-828.101,1651.53L-840.667,1646.407L-854.214,1642.779L-858.738,1629.301L-867.761,1618.303L-873.214,1606.281L-875.401,1569.691L-871.983,1572.723L-865.7,1582.548L-854.214,1579.443L-843.13,1575.144L-837.4,1588.831L-826.316,1585.678L-817.017,1578.856L-808.271,1570.316L-800.354,1560.165L-789.823,1557.224L-790.1,1546.253L-792.537,1535.568L-790.502,1525.713L-781.479,1520.873L-777.382,1530.043L-766.701,1524.638L-758.633,1517.646L-748.655,1517.096L-739.23,1514.49L-729.78,1508.205L-722.266,1502.5L-713.796,1496.916L-708.317,1498.447L-703.542,1500.468L-693.136,1496.916L-683.837,1501.483L-674.262,1500.997L-665.113,1497.44L-655.688,1499.94L-645.283,1502.5L-635.582,1501.483L-625.453,1502.013L-615.073,1502.5L-605.498,1501.483L-598.385,1493.87L-589.915,1489.9L-581.144,1495.39L-572.825,1490.889L-565.285,1482.03L-560.786,1489.9L-558.323,1498.93L-553.799,1507.667L-546.561,1499.94L-538.217,1509.733L-528.792,1512.899L-520.724,1520.318L-510.872,1518.704L-501.975,1513.944L-491.469,1514.992L-482.019,1518.704L-472.444,1523.519L-468.749,1511.856L-473.273,1503.031L-476.691,1493.87L-485.714,1491.88L-489.685,1482.494L-491.193,1473.315L-493.656,1455.54L-488.303,1458.756L-479.154,1460.153L-470.131,1458.756L-461.913,1462.479L-454.8,1469.535L-451.809,1478.13L-442.359,1479.593L-433.337,1476.214L-423.761,1471.421L-415.166,1468.555L-408.053,1474.265L-398.754,1472.367L-392.747,1454.197L-387.117,1464.818L-379.049,1469.045L-370.303,1466.682L-364.573,1476.214L-355.399,1477.17L-346.93,1480.054L-338.585,1485.458L-333.106,1476.214L-330.392,1467.618L-323.405,1477.17L-313.829,1474.762L-306.717,1480.054L-301.941,1488.4L-292.642,1485.925L-285.404,1480.558L-278.291,1474.265L-269.821,1470.928L-259.969,1468.106L-251.072,1464.818L-244.236,1459.714L-240.139,1452.349L-238.506,1442.495L-239.31,1433.243L-241.497,1424.666L-243.96,1416.224L-246.146,1407.983L-247.931,1400.662L-248.333,1392.714L-247.654,1384.878L-244.387,1377.578L-241.647,1369.656L-240.542,1362.259L-241.924,1354.238L-242.728,1347.067L-239.31,1338.989L-235.49,1333.815L-230.966,1327.322L-226.191,1321.907L-220.586,1316.93L-217.846,1309.695L-214.026,1305.16L-209.653,1300.974L-202.943,1300.037L-198.569,1294.946L-193.643,1291.826L-187.913,1289.939L-182.836,1285.92L-178.89,1280.986L-173.411,1279.17L-169.315,1283.155L-171.903,1288.38L-179.016,1293.071L-182.032,1296.527L-187.209,1294.021L-192.965,1295.599L-197.74,1299.404L-202.817,1303.548L-206.235,1308.403L-207.19,1314.932L-206.763,1321.242L-203.496,1326.971L-208.271,1331.059L-214.831,1332.42L-218.676,1338.298L-222.773,1343.891L-227.146,1351.721L-228.252,1358.592L-225.788,1366.31L-222.094,1372.28L-216.338,1376.822L-211.01,1382.941L-208.145,1390.741L-206.637,1398.272L-204.576,1406.361L-201.309,1413.316L-199.248,1421.262L-198.293,1441.576L-196.257,1450.078L-195.704,1459.235L-193.518,1468.555L-194.473,1481.525L-198.293,1491.88L-202.39,1500.468L-211.689,1504.052L-214.831,1513.398L-219.078,1522.449L-229.609,1532.796L-238.908,1537.249L-247.654,1543.409L-257.104,1549.712L-262.709,1561.95L-273.918,1563.128L-286.208,1561.95L-297.292,1564.309L-309.054,1564.309L-306.868,1576.413L-296.211,1581.957L-288.395,1590.746L-284.022,1602.313L-291.813,1612.884L-303.852,1609.54L-313.829,1618.303L-314.257,1632.812L-314.533,1647.162L-306.315,1659.693L-304.807,1674.234L-295.935,1689.315L-281.156,1695.862L-268.59,1707.526L-258.587,1721.27L-245.87,1735.574L-228.528,1742.841L-211.412,1755.964L-199.525,1770.549L-186.531,1787.725L-179.695,1813.278L-176.276,1834.714L-167.807,1814.323L-156.321,1798.191L-144.157,1781.538L-129.655,1768.591L-117.214,1755.059L-99.847,1754.074L-82.757,1760.767L-68.682,1772.517L-64.158,1751.216L-54.457,1737.379L-36.814,1736.436L-22.99,1726.594L-9.871,1716.91L4.631,1710.9L20.062,1703.311L30.87,1692.61L25.944,1678.156L22.953,1664.263L22.953,1650.069L9.406,1651.53L-4.945,1657.491L-18.617,1657.491L-20.552,1643.527L-19.572,1616.956L-16.431,1609.54L-6.453,1601.693L5.309,1593.939L13.779,1584.434L22.249,1575.144L28.557,1563.128L38.108,1557.831L47.558,1553.751L52.333,1551.403L63.14,1550.259L73.395,1546.253L82.015,1540.585L90.485,1533.893L98.151,1527.308L107.852,1518.704L114.01,1509.733L120.569,1502.013L122.63,1491.88L115.241,1485.925L117.704,1475.715L122.354,1468.106L129.592,1463.405L137.258,1457.84L144.37,1450.547L149.824,1441.576L153.242,1431.11L158.319,1425.071L166.638,1426.36L170.056,1433.693L178.4,1434.557L178.677,1426.36L182.246,1417.921L189.76,1420.024L191.545,1428.098L199.864,1429.36L208.912,1425.512L217.658,1422.979L225.575,1424.225L228.591,1433.243L236.256,1425.954L243.369,1422.101L251.286,1419.152L259.077,1416.224L266.19,1411.246L273.981,1407.983L280.013,1403.484L284.235,1396.274L289.438,1401.496L296.676,1398.687L301.753,1408.372L305.699,1415.828L313.641,1411.673L316.783,1403.484L323.895,1397.858L333.069,1399.067L335.783,1406.748L341.539,1399.067L349.053,1396.686L357.247,1395.896L364.636,1396.274L372.427,1398.687L379.967,1399.864L383.234,1406.748L387.758,1412.923L395.399,1409.221L403.617,1408.372L411.534,1408.372L419.325,1407.983L426.312,1405.13L433.701,1402.681L439.859,1397.065L446.419,1393.498L453.531,1391.522L458.859,1386.051L462.68,1375.313L466.651,1368.914L473.889,1371.923L476.628,1378.731L482.635,1383.341L489.899,1381.81L494.825,1388.778L500.002,1393.908L507.115,1389.183L509.578,1380.648L515.861,1377.216L523.124,1370.788L529.961,1368.173L538.154,1364.455L543.633,1360.421L549.363,1356.049L554.842,1352.093L561.402,1354.238L567.685,1347.804L572.209,1342.858L578.769,1343.192L584.524,1338.989L585.882,1332.776L591.763,1327.997L597.493,1324.606L604.48,1321.907L610.914,1320.578L617.046,1321.589L623.631,1323.269L629.236,1327.997L629.915,1335.513L636.072,1341.433L640.294,1346.363L648.639,1348.51L653.288,1353.522L659.044,1358.592L665.729,1359.695L671.334,1356.049L677.366,1348.51L683.925,1352.434L690.761,1354.612L697.321,1356.77L704.157,1358.214L711.119,1358.214L716.875,1377.973L716.598,1382.941L715.769,1391.93L709.083,1397.065L703.604,1404.709L704.559,1412.923L712.351,1412.494L711.396,1420.861L707.852,1428.951L704.559,1438.071L709.888,1445.149L717.955,1447.393L726.023,1443.378L729.868,1434.557L732.181,1426.36L736.026,1419.588L740.399,1413.316L742.158,1405.938L745.853,1395.896L750.226,1393.908L758.168,1393.089L765.13,1390.741L772.243,1387.597L775.661,1379.887L777.722,1372.671L782.497,1365.574L789.333,1360.769L795.214,1357.146L799.06,1351.009L803.005,1347.804L808.082,1344.957L815.044,1346.73L821.327,1344.957L828.164,1342.858L835.829,1343.891L840.881,1338.989L844.45,1327.322L847.038,1332.094L850.331,1340.406L856.212,1343.891L862.897,1345.324L869.608,1343.192L876.72,1344.591L883.28,1344.957L887.653,1343.192L893.534,1344.256L898.863,1348.141L905.146,1345.66L912.686,1345.66L919.095,1343.192L926.358,1345.66L931.008,1339.682L934.552,1333.815L939.352,1328.995L948.098,1316.273L952.597,1318.593L957.925,1323.269L962.575,1329.348L971.472,1340.044L978.308,1340.406L984.742,1340.406L992.257,1338.298L999.772,1335.871L1005.527,1331.059L1010.302,1325.948L1018.094,1325.277L1023.296,1321.589L1028.775,1324.956L1032.319,1330.38L1037.245,1335.871L1044.91,1335.185L1049.686,1339.682L1058.03,1344.256L1066.776,1346.026L1074.014,1344.591L1079.493,1338.989L1084.143,1333.458L1090.426,1332.094L1096.735,1334.499L1103.973,1336.23L1110.533,1333.458L1116.816,1333.458L1122.974,1335.185L1129.408,1336.918L1135.691,1333.815L1143.206,1331.059L1150.318,1330.38L1158.26,1330.38L1164.669,1328.672L1170.978,1327.322L1172.888,1318.909L1173.164,1311.981L1177.537,1316.587L1178.769,1324.257L1181.081,1331.413L1183.971,1337.248L1189.852,1340.406L1197.769,1339.35L1206.943,1338.989L1213.226,1337.937L1222.375,1337.937L1228.959,1337.607L1238.108,1338.298L1245.899,1339.682L1250.825,1345.324L1249.468,1352.093L1253.967,1357.491L1261.481,1361.878L1269.273,1366.695L1278.321,1370.044L1287.745,1373.029L1294.858,1376.067L1302.775,1376.46L1307.299,1370.044L1313.457,1375.313L1318.785,1381.411L1324.942,1386.051L1333.412,1388.002L1341.48,1390.334L1344.898,1398.272L1352.84,1403.1L1358.168,1410.428L1365.959,1413.746L1374.027,1413.316L1381.542,1414.57L1389.886,1414.14L1398.23,1415.828L1406.021,1418.754L1413.26,1423.822L1420.523,1428.098L1425.424,1434.557L1424.62,1443.378L1420.925,1451.447L1417.784,1461.997L1415.321,1470.477L1412.028,1480.558L1402.88,1484.482L1398.783,1493.393L1389.735,1498.93L1386.594,1509.238L1381.818,1519.256L1376.767,1527.872L1373.876,1539.47L1372.117,1550.259L1371.413,1563.692L1371.564,1575.144L1375.535,1587.578L1377.043,1599.727L1380.31,1611.555L1393.304,1616.255L1396.044,1631.416L1383.452,1637.088L1372.796,1644.965L1359.525,1646.407L1353.644,1668.09L1352.413,1686.947L1349.422,1702.517L1345.727,1718.708L1355.026,1733.7L1358.57,1753.174L1364.577,1771.489L1373.072,1788.706L1382.773,1805.664L1393.304,1823.27L1409.289,1841.68L1412.857,1872.237L1432.964,1886.55L1434.296,1891.705L1439.524,1912.407L1458.801,1894.482L1474.785,1916.679L1487.226,1935.131L1493.384,1893.207L1505.975,1915.209L1506.779,1912.65L1514.169,1890.439L1514.169,1890.439L1515.124,1891.244L1515.928,1891.705L1526.031,1921.12L1534.878,1891.705L1536.462,1887.804L1556.637,1876.302L1556.637,1960.91L1556.637,1960.91ZM-956.637,1960.91L-956.637,1876.302L-956.637,1876.302L-956.304,1876.101L-949.644,1891.705L-946.377,1899.976L-935.846,1923.733L-916.016,1943.045L-904.79,1960.91L-956.637,1960.91Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(122, 203, 188)", + "ariaRoleDescription": "geoshape", + "description": "id: 260", + "shape": "M710.114,1106.1L709.938,1100.386L710.968,1095.988L711.446,1093.82L715.945,1097.156L722.555,1098.489L722.781,1100.512L720.846,1105.405Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(208, 237, 180)", + "ariaRoleDescription": "geoshape", + "description": "id: 36", + "shape": "M1255.525,1043.505L1254.092,1042.983L1249.795,1042.673L1245.497,1034.498L1244.542,1028.261L1240.521,1020.123L1240.696,1015.884L1245.246,1016.695L1252.006,1019.888L1255.801,1018.618L1261.255,1016.851L1265.427,1017.461L1265.93,1028.531L1263.542,1031.771L1262.814,1039.438L1260.376,1036.817ZM1251.68,1000.718L1245.899,996.745L1241.626,995.174L1242.707,990.546L1238.887,992.225L1232.78,998.683L1226.748,996.261L1222.777,994.843L1218.781,994.21L1212.02,991.64L1207.521,986.203L1206.214,979.558L1204.606,975.183L1201.162,971.681L1194.452,970.648L1196.739,966.489L1195.055,960.19L1191.637,966.056L1185.429,967.632L1189.098,962.915L1190.154,958.031L1192.843,953.917L1192.29,947.727L1186.61,954.855L1182.237,957.731L1179.573,964.47L1174.119,960.978L1174.345,956.505L1169.972,950.42L1166.278,947.305L1167.585,945.381L1158.637,940.375L1153.736,940.138L1147.026,936.151L1134.51,936.927L1125.487,939.86L1117.52,942.608L1110.859,942.063L1103.47,946.307L1097.413,948.234L1096.081,952.599L1093.493,956.007L1087.561,956.22L1083.188,956.961L1077.005,955.438L1072.004,956.349L1067.203,956.733L1063.057,961.236L1061.021,960.863L1057.502,963.261L1054.159,965.955L1049.057,965.623L1044.383,965.623L1036.968,960.204L1033.224,958.588L1033.374,953.775L1036.843,952.627L1038.024,950.731L1037.773,947.741L1038.627,941.979L1037.848,937.108L1034.154,928.854L1033.023,924.242L1033.324,919.669L1030.534,914.46L1030.358,912.117L1027.267,908.963L1026.387,902.782L1022.416,896.592L1021.436,893.27L1024.502,896.632L1022.165,889.422L1025.608,891.666L1027.694,894.679L1027.569,890.694L1024.1,884.612L1023.447,882.19L1021.813,879.891L1022.592,875.477L1024,873.593L1024.955,869.798L1024.226,865.364L1027.091,859.943L1027.619,865.683L1030.585,860.503L1036.24,857.985L1039.658,854.79L1044.986,852.045L1048.153,851.464L1050.088,852.386L1055.592,849.61L1059.814,848.778L1060.87,847.155L1062.73,846.476L1066.575,846.652L1073.914,844.478L1077.709,841.195L1079.493,837.246L1083.59,833.509L1083.917,830.577L1084.093,826.6L1088.969,820.402L1091.909,826.699L1094.9,825.239L1092.412,821.795L1094.598,818.261L1097.665,819.836L1098.519,814.318L1102.339,810.753L1104.023,807.904L1107.542,806.671L1107.642,804.658L1110.709,805.499L1110.834,803.695L1113.901,802.66L1117.268,801.686L1122.421,804.987L1126.316,809.26L1130.664,809.309L1135.113,809.994L1133.63,806.024L1136.973,800.263L1140.139,798.38L1139.034,796.595L1142.075,792.499L1146.297,789.983L1149.866,790.83L1155.747,789.488L1155.621,785.841L1150.494,783.49L1154.214,782.454L1158.838,784.225L1162.558,787.144L1168.439,788.968L1170.425,788.243L1174.748,790.443L1178.819,788.4L1181.458,789.016L1183.092,787.651L1186.284,791.18L1184.424,795.007L1181.785,797.906L1179.372,798.149L1180.176,801.017L1178.14,804.609L1175.652,808.16L1176.155,810.19L1181.709,814.195L1187.088,816.515L1190.682,819.023L1195.734,823.337L1197.694,823.325L1201.338,825.19L1202.419,827.454L1209.079,829.932L1213.679,827.429L1215.061,823.51L1216.468,820.279L1217.323,816.294L1219.459,810.532L1218.479,807.037L1218.982,804.951L1218.177,800.823L1219.107,795.419L1220.439,793.965L1219.359,791.58L1221.042,787.796L1222.349,783.876L1222.525,781.852L1225.139,779.181L1227.1,782.659L1227.577,787.132L1229.336,787.99L1229.613,790.999L1232.151,794.631L1232.679,798.696L1232.428,801.297L1234.941,806.951L1239.44,804.231L1241.752,807.281L1245.095,810.104L1244.366,813.312L1245.874,819.528L1246.929,823.164L1248.689,824.053L1250.574,830.304L1249.895,834.119L1252.157,839.107L1259.722,842.973L1264.673,846.501L1269.348,849.736L1268.418,851.54L1272.414,856.234L1275.129,864.367L1277.918,862.707L1280.758,865.978L1282.468,864.814L1283.674,872.846L1288.625,877.533L1291.867,880.462L1297.321,886.687L1299.282,892.915L1299.457,897.359L1298.98,902.197L1302.297,908.896L1301.895,915.932L1300.689,919.642L1298.804,926.825L1298.955,931.481L1297.572,937.33L1294.481,944.834L1289.329,948.91L1286.765,955.395L1284.428,959.56L1282.367,966.894L1279.678,971.157L1277.918,977.617L1277.014,983.62L1277.366,986.397L1273.369,989.454L1265.553,989.783L1259.094,993.412L1255.902,996.866Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(207, 236, 180)", + "ariaRoleDescription": "geoshape", + "description": "id: 40", + "shape": "M348.727,319.997L348.199,324.247L344.278,324.282L345.61,326.525L343.298,333.131L341.966,334.856L335.858,335.097L332.34,337.399L326.584,336.627L316.581,333.994L315.023,330.446L308.137,332.214L307.333,334.166L303.085,332.716L299.516,332.439L296.375,330.567L297.43,328.044L297.179,326.228L299.265,325.65L302.809,328.515L303.789,325.79L309.946,326.228L314.948,324.37L318.291,324.686L320.477,326.805L321.131,325.054L320.125,318.26L322.639,316.926L325.102,312.062L330.279,315.464L334.225,311.127L336.688,310.334L342.091,313.569L345.384,313.031L348.601,315.018L348.023,316.356Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(210, 237, 180)", + "ariaRoleDescription": "geoshape", + "description": "id: 31", + "shape": "M552.329,410.475L547.554,409.292L544.01,405.135L542.904,401.719L544.362,401.473L546.423,403.912L549.514,403.881L549.489,405.272ZM569.369,382.403L573.039,387.313L576.582,393.866L579.85,394.302L581.986,396.768L576.256,397.496L575.024,404.554L573.818,407.712L571.279,409.808L571.455,414.236L569.721,414.673L565.373,410.005L567.761,405.563L565.7,402.9L563.086,403.575L554.867,410.217L554.691,403.973L551.575,402.486L548.609,400.027L550.57,397.109L546.85,393.975L548.257,391.669L545.593,390.059L544.161,387.628L545.87,386.117L551.072,388.774L554.817,389.338L555.772,388.24L552.354,383.211L554.164,381.911L556.124,382.229L560.924,387.895L563.991,388.523L565.197,386.164Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(186, 228, 181)", + "ariaRoleDescription": "geoshape", + "description": "id: 108", + "shape": "M435.008,735.721L434.581,727.276L432.822,724.105L437.069,724.649L439.205,720.675L442.9,721.124L443.302,723.88L444.81,725.466L444.885,727.738L443.151,729.206L440.437,732.854L437.898,735.389Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(202, 234, 181)", + "ariaRoleDescription": "geoshape", + "description": "id: 56", + "shape": "M253.322,285.171L258.449,286.059L264.908,283.731L269.331,288.602L273.177,291.189L272.373,298.615L270.563,299.02L269.809,305.081L263.702,300.161L260.108,301.005L255.232,295.861L251.99,291.451L248.748,291.264L247.742,287.379Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(146, 212, 185)", + "ariaRoleDescription": "geoshape", + "description": "id: 204", + "shape": "M243.218,661.306L241.484,656.465L241.811,640.273L240.403,638.812L240.127,635.337L237.714,632.853L235.578,630.763L236.458,627.023L238.87,626.216L240.278,623.107L243.696,622.432L245.229,620.307L247.566,618.217L250.08,618.192L255.408,622.299L255.131,624.674L256.69,628.888L255.332,631.749L256.061,633.657L252.668,638.046L250.507,640.213L249.2,644.661L249.376,649.15L248.974,660.485Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(31, 58, 142)", + "ariaRoleDescription": "geoshape", + "description": "id: 854", + "shape": "M210.445,636.632L205.67,634.809L202.402,635.073L199.964,636.859L196.823,635.361L195.591,633.021L192.45,631.472L191.997,627.348L193.907,624.337L193.731,621.925L199.286,616.003L200.316,611.093L202.226,609.345L205.594,610.304L208.51,608.846L209.465,606.998L214.893,603.77L216.225,601.526L222.735,598.52L226.58,597.492L228.34,598.887L232.813,598.85L232.26,602.343L233.19,605.623L237.111,610.316L237.337,613.786L245.38,615.409L245.229,620.307L243.696,622.432L240.278,623.107L238.87,626.216L236.458,627.023L230.35,626.867L227.133,626.301L224.871,627.456L221.78,626.939L209.666,627.264L209.49,631.304Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(204, 235, 181)", + "ariaRoleDescription": "geoshape", + "description": "id: 50", + "shape": "M877.173,546.456L877.022,551.847L874.584,550.705L875.037,556.733L873.051,552.836L872.649,549.015L871.317,545.384L868.401,540.985L861.967,540.69L862.596,543.801L860.409,547.997L857.443,546.468L856.413,547.844L854.453,547.016L851.738,546.341L850.658,540.126L848.245,534.416L849.426,529.814L845.128,527.751L846.687,524.955L851.035,522.086L846.008,517.988L848.471,512.711L854,516.07L857.343,516.464L857.946,521.837L864.606,522.895L871.066,522.791L875.087,524.108L871.87,530.604L868.753,531.044L866.592,535.383L870.412,539.318L871.568,534.468L873.478,534.442Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(189, 229, 181)", + "ariaRoleDescription": "geoshape", + "description": "id: 100", + "shape": "M388.361,359.221L390.372,363.215L393.086,362.51L398.44,364.017L408.694,364.524L412.162,362.067L420.381,359.798L425.458,363.33L429.554,364.344L425.935,368.335L423.397,375.146L425.634,380.529L419.627,379.272L412.514,382.229L412.439,386.873L406.105,387.753L401.179,384.508L395.6,387.061L390.422,386.794L389.92,380.609L386.426,377.596L387.582,376.252L386.828,375.13L388.009,372.105L390.648,369.114L387.255,364.965L386.652,361.427Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(206, 236, 180)", + "ariaRoleDescription": "geoshape", + "description": "id: 44", + "shape": "M-312.824,533.81L-314.583,529.412L-317.197,527.193L-315.689,522.308L-313.578,522.608L-311.14,528.997L-311.115,533.435ZM-320.716,512.922L-321.193,510.028L-317.926,509.406L-313.302,509.644L-313.101,511.668ZM-308.577,517.121L-309.858,516.136L-309.758,512.064L-312.874,508.968L-312.899,508.08L-307.37,511.589Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(198, 233, 181)", + "ariaRoleDescription": "geoshape", + "description": "id: 70", + "shape": "M362.876,353.103L365.39,353.07L363.656,357.388L367.023,361.131L365.993,365.683L364.359,366.123L363.052,366.986L360.79,369.227L359.76,374.472L353.577,370.862L350.938,366.856L348.274,364.736L345.082,361.115L343.549,358.099L340.131,353.503L341.614,349.407L344.102,351.684L345.61,349.625L348.877,349.407L354.884,351.049L359.71,350.915Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(184, 227, 181)", + "ariaRoleDescription": "geoshape", + "description": "id: 112", + "shape": "M394.142,255.647L400.878,255.727L408.468,251.234L410.076,244.447L415.807,240.532L415.153,235.04L419.401,232.943L426.89,228.128L434.254,231.28L435.234,234.349L438.904,232.88L445.74,235.834L446.419,241.586L444.911,244.858L449.284,252.73L452.124,254.904L451.722,257.049L456.421,259.125L458.432,262.243L455.718,264.79L450.088,264.396L448.731,265.479L450.39,269.319L452.099,276.663L446.092,277.336L443.955,279.808L443.503,285.473L440.713,284.395L434.43,284.925L432.595,282.306L429.982,284.262L427.343,282.63L421.864,282.401L414.072,279.712L407.01,278.813L401.606,279.081L397.786,282.135L394.444,282.572L394.293,277.547L392.156,272.258L396.328,269.905L396.379,265.302L394.444,260.855Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(194, 231, 181)", + "ariaRoleDescription": "geoshape", + "description": "id: 84", + "shape": "M-392.144,577.899L-392.194,576.819L-391.365,576.483L-390.083,577.353L-387.595,572.912L-386.263,572.813L-386.238,573.896L-384.905,573.934L-385.031,575.924L-386.162,579.102L-385.559,580.23L-386.288,582.854L-385.835,583.546L-386.64,587.236L-388.022,589.158L-389.279,589.392L-390.661,591.912L-392.747,591.912L-392.194,583.694Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(199, 233, 181)", + "ariaRoleDescription": "geoshape", + "description": "id: 68", + "shape": "M-238.305,867.335L-243.331,868.373L-246.071,857.985L-249.841,849.597L-247.629,842.41L-251.298,839.282L-252.228,833.97L-255.646,828.977L-251.248,821.092L-254.239,814.993L-252.656,812.553L-253.887,809.872L-251.173,806.268L-251.022,800.142L-250.695,795.104L-249.187,792.681L-255.219,781.202L-250.042,781.804L-246.448,781.648L-244.89,779.494L-238.782,776.622L-235.088,773.957L-225.964,772.758L-226.693,778.075L-225.839,780.805L-226.417,785.576L-218.827,791.967L-211.01,793.153L-208.271,795.819L-203.546,797.238L-200.655,799.327L-196.257,799.254L-192.211,801.382L-191.909,805.548L-190.527,807.647L-190.452,810.765L-192.487,810.887L-189.798,819.331L-176.402,819.627L-177.433,823.843L-176.679,826.723L-172.884,828.779L-171.225,833.335L-172.456,839.132L-174.392,842.372L-173.713,846.601L-175.899,848.136L-176,845.847L-182.509,842.059L-188.994,841.946L-201.158,844.102L-204.501,850.644L-204.677,854.663L-207.441,863.664L-208.572,862.044L-216.514,861.738L-219.254,867.809L-223.351,862.35L-232.499,860.515Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(196, 232, 181)", + "ariaRoleDescription": "geoshape", + "description": "id: 76", + "shape": "M-172.104,925.744L-162.805,914.798L-154.913,907.103L-150.239,903.887L-144.358,899.556L-144.207,893.323L-147.7,888.846L-151.169,890.34L-149.811,885.877L-148.856,881.319L-148.856,877.106L-151.37,875.722L-153.984,876.963L-156.572,876.627L-157.402,873.683L-158.055,866.733L-159.362,864.469L-164.062,862.427L-166.927,863.907L-174.291,862.465L-173.839,852.285L-175.899,848.136L-173.713,846.601L-174.392,842.372L-172.456,839.132L-171.225,833.335L-172.884,828.779L-176.679,826.723L-177.433,823.843L-176.402,819.627L-189.798,819.331L-192.487,810.887L-190.452,810.765L-190.527,807.647L-191.909,805.548L-192.211,801.382L-196.257,799.254L-200.655,799.327L-203.546,797.238L-208.271,795.819L-211.01,793.153L-218.827,791.967L-226.417,785.576L-225.839,780.805L-226.693,778.075L-225.964,772.758L-235.088,773.957L-238.782,776.622L-244.89,779.494L-246.448,781.648L-250.042,781.804L-255.219,781.202L-259.165,782.43L-262.332,781.612L-261.879,770.828L-267.61,775.001L-273.767,774.821L-276.406,771.044L-281.031,770.636L-279.548,767.596L-283.444,763.304L-286.334,756.956L-284.499,755.669L-284.499,752.692L-280.277,750.657L-280.981,746.865L-279.196,744.417L-278.693,741.153L-270.701,736.385L-264.996,735.034L-264.066,733.979L-257.758,734.311L-254.616,715.142L-254.465,712.116L-255.546,708.11L-258.637,705.569L-258.612,700.488L-254.691,699.342L-253.284,700.063L-253.058,697.392L-257.129,696.671L-257.23,692.298L-243.633,692.451L-241.321,690.051L-239.385,692.262L-238.003,696.387L-236.696,695.525L-232.851,699.212L-227.422,698.763L-226.065,696.624L-220.888,694.993L-217.997,693.846L-217.193,690.891L-212.217,688.904L-212.594,687.438L-218.5,686.835L-219.48,682.434L-219.179,677.746L-222.32,675.934L-221.013,675.282L-215.836,676.183L-210.281,677.935L-208.271,676.277L-203.244,675.187L-195.453,672.568L-192.889,669.901L-193.819,667.92L-190.175,667.611L-188.567,669.225L-189.471,672.296L-187.059,673.363L-185.475,676.609L-187.41,679.084L-188.516,685.025L-186.732,688.561L-186.229,691.801L-181.931,695.075L-178.488,695.418L-177.734,694.047L-175.523,693.752L-172.356,692.522L-170.094,690.666L-166.223,691.257L-164.539,691.009L-160.744,691.576L-160.116,690.158L-161.272,688.762L-160.568,686.74L-157.753,687.367L-154.461,686.645L-150.465,688.124L-147.424,689.566L-145.262,687.674L-143.704,687.97L-142.749,689.933L-139.406,689.436L-136.717,686.787L-134.581,681.629L-130.459,675.235L-128.071,674.903L-126.337,678.776L-122.442,690.997L-118.697,692.144L-118.521,696.966L-123.749,702.721L-121.587,704.825L-109.247,705.912L-108.995,712.919L-103.692,708.334L-94.921,710.839L-83.31,715.106L-79.917,719.197L-81.048,723.064L-72.93,720.911L-59.358,724.614L-48.928,724.342L-38.598,730.129L-29.676,737.974L-24.297,739.99L-18.341,740.275L-15.802,742.482L-13.44,751.419L-12.284,755.681L-15.048,767.344L-18.617,771.955L-28.444,781.828L-32.893,789.886L-38.07,796.098L-39.804,796.231L-41.765,801.516L-41.262,815.042L-43.197,826.253L-43.951,831.086L-46.163,833.982L-47.395,843.851L-54.482,853.562L-55.663,861.305L-61.318,864.571L-62.952,869.117L-70.542,869.091L-81.525,872.009L-86.426,875.4L-94.242,877.636L-102.461,883.739L-108.367,891.403L-109.398,897.213L-108.241,901.533L-109.523,909.499L-111.107,913.382L-116.008,917.771L-123.749,931.977L-129.881,938.455L-134.631,942.315L-137.823,950.208L-142.422,954.983L-144.358,950.251L-141.291,946.307L-145.313,940.682L-150.792,936.137L-157.98,930.903L-160.568,931.15L-167.58,924.883Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(190, 229, 181)", + "ariaRoleDescription": "geoshape", + "description": "id: 96", + "shape": "M1027.493,672.64L1030.258,670.019L1036.189,666.187L1035.863,669.64L1035.46,674.109L1032.118,673.884L1030.66,676.277Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(200, 233, 181)", + "ariaRoleDescription": "geoshape", + "description": "id: 64", + "shape": "M870.362,502.317L873.202,504.837L872.699,509.657L866.994,509.882L861.113,509.366L856.715,510.584L850.381,507.615L850.23,506.035L854.855,500.177L858.625,498.167L863.601,500.003L867.296,500.191Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(197, 232, 181)", + "ariaRoleDescription": "geoshape", + "description": "id: 72", + "shape": "M435.662,862.465L425.784,868.027L419.526,873.709L417.189,878.789L415.103,881.67L411.283,882.281L410.076,885.969L409.373,888.374L404.899,890.183L399.219,889.802L395.876,887.628L392.936,886.7L389.543,888.492L387.834,892.205L384.516,894.534L381.022,898.02L376.021,898.814L374.463,896.077L375.116,891.337L370.969,883.986L369.084,882.84L369.084,860.643L375.971,860.388L376.172,833.908L381.374,833.671L392.131,831.099L394.795,834.119L399.244,831.248L401.38,831.223L405.301,829.572L406.558,830.118L409.247,836L410.654,837.309L412.841,841.583L420.758,849.736L423.749,850.543L423.749,853.17L425.809,857.922L431.213,859.065Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(172, 222, 183)", + "ariaRoleDescription": "geoshape", + "description": "id: 140", + "shape": "M336.864,652.309L342.619,651.785L343.926,649.973L345.082,650.104L346.816,651.701L355.613,649.007L358.579,646.262L362.223,643.789L361.519,641.302L363.48,640.656L370.24,641.086L376.8,637.818L381.852,630.078L385.396,627.204L389.819,625.988L390.598,629.032L394.619,633.465L394.645,636.356L393.514,639.303L393.966,641.505L396.379,643.538L401.707,646.62L405.527,649.472L405.577,651.761L410.277,655.43L413.193,658.464L414.952,662.684L420.18,665.463L421.286,667.682L418.998,668.43L414.525,668.264L409.272,667.528L406.658,668.133L405.628,669.83L403.366,670.043L400.601,668.56L392.835,672.059L389.643,671.347L388.688,671.893L386.602,676.123L381.399,674.761L376.297,674.062L371.849,671.478L366.093,669.106L362.349,671.359L359.634,674.915L359.006,679.794L354.532,679.404L349.807,678.231L345.635,681.937L341.966,688.443L341.237,686.409L340.935,683.227L337.743,680.978L335.155,677.367L334.577,674.856L331.259,671.193L331.837,669.106L331.133,666.151L331.661,660.711L333.345,659.439Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(179, 225, 182)", + "ariaRoleDescription": "geoshape", + "description": "id: 124", + "shape": "M-208.748,342.077L-217.62,337.81L-219.354,334.408L-216.715,331.244L-214.278,336.215L-209.201,337.57L-202.742,337.296L-206.185,341.43ZM-204.702,309.829L-213.75,306.463L-220.234,301.372L-217.821,300.473L-208.648,303.184L-201.51,307.678L-201.309,309.631ZM-635.582,317.407L-647.043,312.6L-649.154,308.836L-655.387,305.081L-656.643,302.013L-663.831,300.05L-666.521,294.116L-665.917,291.563L-658.604,293.967L-654.306,295.62L-647.746,296.787L-645.384,300.546L-641.915,305.663L-634.954,310.082L-632.063,315.946ZM-143.453,335.51L-148.052,333.597L-146.544,325.177L-148.479,323.86L-156.572,332.802L-160.744,332.439L-155.818,327.626L-162.529,325.107L-170.018,325.72L-183.565,325.405L-184.646,322.329L-180.298,318.65L-183.339,315.804L-177.458,309.414L-170.245,292.142L-165.922,285.832L-159.865,281.964L-156.622,282.458L-157.98,285.492L-161.699,292.478L-166.324,302.032L-161.775,298.375L-157.075,300.693L-159.538,304.461L-153.33,307.406L-150.113,304.789L-143.151,308.094L-145.313,315.875L-140.437,314.07L-139.532,319.643L-137.371,326.105L-140.311,335.131ZM-685.622,275.758L-688.411,275.739L-692.609,270.509L-695.197,265.184L-698.716,261.55L-699.998,256.369L-699.596,252.588L-696.303,254.12L-689.593,253.173L-691.704,266.52ZM-325.918,154.098L-329.01,152.853L-330.844,148.442L-330.518,147.408L-327.828,142.919L-324.963,143.25L-323.204,146.322ZM-349.744,146.296L-354.67,145.967L-356.204,141.898L-351.001,134.868L-341.425,135.024L-341.576,137.972ZM-366.885,132.761L-369.273,123.648L-378.748,125.162L-372.666,117.35L-371.786,104.619L-369.398,89.302L-364.347,90.709L-363.065,98.072L-359.471,95.499L-355.424,99.872L-347.784,105.535L-339.792,110.606L-339.163,118.24L-334.036,116.999L-329.035,122.262L-335.243,127.199L-346.1,123.435L-350.021,116.296L-356.932,124.711ZM-307.295,65.577L-309.029,56.712L-306.063,46.33L-299.654,43.718L-294.2,48.893L-294.125,56.805L-294.929,59.338L-299.453,64.665ZM-441.907,34.746L-451.307,28.869L-456.987,31.012L-466.537,22.171L-460.38,15.98L-455.504,7.166L-448.09,12.971L-443.918,16.593L-441.807,20.387L-437.559,27.942ZM-367.262,34.224L-366.86,12.49L-356.958,14.067L-346.628,17.035L-337.253,26.88L-336.826,36.504L-342.029,46.615L-337.103,56.526L-338.007,65.365L-351.68,77.734L-361.381,80.413L-368.594,75.157L-370.68,83.891L-377.416,98.156L-379.452,105.396L-387.544,116.323L-397.522,117.377L-403.051,124.073L-403.504,134.167L-411.622,136.086L-420.167,148.316L-427.732,164.766L-430.446,175.95L-430.849,191.937L-420.569,194.2L-417.428,206.641L-414.16,216.484L-404.409,213.933L-391.415,219.498L-384.453,224.335L-379.452,230.267L-370.705,233.699L-363.316,238.875L-351.78,239.58L-344.19,240.781L-345.321,251.234L-343.16,263.113L-338.108,276.009L-327.703,286.701L-322.324,283.067L-318.554,271.403L-322.199,252.911L-327.125,246.597L-315.941,240.925L-308.049,232.27L-304.178,223.543L-304.756,215.003L-309.481,203.924L-317.976,193.88L-309.733,179.54L-312.774,166.778L-315.111,143.912L-310.235,140.414L-298.272,144.522L-291.084,145.967L-285.303,142.026L-278.819,147.105L-270.224,155.687L-268.087,161.327L-255.646,162.427L-255.848,174.383L-253.535,191.823L-247.152,193.926L-242.1,201.798L-231.996,194.382L-225.311,179.282L-220.686,172.786L-215.258,185.199L-206.16,202.403L-198.444,218.026L-201.259,226.001L-191.959,233.048L-185.676,240.098L-174.567,243.235L-170.069,247.108L-167.304,257.209L-161.875,258.767L-159.06,263.192L-158.558,276.143L-163.635,280.4L-168.636,284.338L-180.147,288.302L-188.918,297.36L-200.731,299.13L-215.66,296.824L-226.14,296.75L-233.354,297.507L-239.21,305.281L-248.107,310.028L-258.185,323.948L-266.227,333.441L-260.296,331.764L-249.087,318.153L-234.434,309.324L-224.004,308.275L-217.821,313.479L-224.406,320.546L-222.194,331.695L-219.907,339.367L-210.834,344.384L-199.298,342.926L-192.311,331.539L-191.834,338.923L-187.31,342.57L-195.956,349.105L-211.412,354.967L-218.349,358.924L-226.14,365.911L-231.443,365.193L-231.72,356.974L-219.581,348.836L-230.765,349.155L-238.531,350.362L-243.08,344.74L-243.08,330.949L-246.171,327.975L-250.871,329.716L-253.183,327.015L-258.512,334.752L-260.623,342.621L-263.111,347.171L-266.077,348.702L-268.314,349.205L-269.017,351.651L-281.885,351.651L-292.491,351.718L-295.633,353.536L-303.022,360.572L-303.877,361.328L-306.114,365.112L-312.522,365.095L-319.384,365.144L-322.525,366.66L-321.42,368.546L-320.791,371.476L-320.917,372.444L-330.04,377.149L-337.228,378.634L-345.346,383.654L-347.105,383.654L-349.468,382.181L-350.247,380.832L-350.096,379.861L-348.563,376.557L-345.271,371.331L-343.235,365.666L-344.642,357.222L-346.125,348.281L-353.414,343.605L-352.534,341.822L-353.565,340.579L-355.475,340.579L-356.882,338.991L-357.234,336.593L-358.591,337.639L-360.476,337.33L-360.049,336.318L-361.683,335.321L-362.361,332.647L-367.79,329.368L-373.42,325.93L-380.256,321.906L-386.816,318.118L-393.049,321.076L-395.336,321.182L-403.931,318.455L-409.586,319.82L-416.347,316.57L-423.485,314.893L-428.36,314.249L-430.522,312.457L-431.753,306.59L-434.116,306.644L-434.141,310.749L-448.592,310.749L-472.494,310.749L-496.219,310.749L-517.155,310.749L-538.116,310.749L-558.7,310.749L-579.988,310.749L-586.849,310.749L-607.584,310.749L-627.389,310.749L-628.344,310.731L-641.84,300.161L-646.842,295.453L-659.483,290.908L-663.379,281.03L-662.374,274.059L-671.321,269.163L-672.527,259.782L-680.972,251.173L-681.123,244.981L-677.252,239.103L-677.428,231.301L-689.316,223.307L-696.454,208.635L-700.802,199.166L-707.211,193.127L-711.911,187.564L-715.605,180.434L-722.617,184.92L-729.403,192.532L-735.611,183.57L-740.487,177.489L-747.298,173.597L-754.159,173.191L-754.134,84.851L-754.084,15.946L-741.065,20.758L-730.057,30.255L-722.793,32.031L-716.661,23.847L-708.216,17.646L-697.836,20.083L-687.381,11.251L-675.946,6.121L-671.145,14.581L-665.943,9.836L-664.384,0.116L-659.559,2.338L-647.746,20.589L-638.472,6.853L-637.517,22.204L-628.947,18.934L-626.308,13.039L-617.838,14.204L-607.182,22.607L-590.845,29.826L-581.219,33.113L-574.383,31.867L-564.983,41.605L-574.785,50.908L-562.168,54.879L-543.319,52.695L-537.387,49.461L-529.948,60.476L-522.358,51.191L-529.47,43.239L-524.972,36.731L-516.477,35.854L-510.872,33.93L-505.242,38.513L-498.23,48.767L-490.439,47.281L-478.099,55.626L-467.266,52.695L-457.087,53.133L-457.892,41.509L-451.684,38.19L-440.852,44.612L-440.902,62.071L-436.453,47.408L-430.849,47.914L-427.682,28.703L-435.171,16.491L-443.315,8.278L-442.762,-15.007L-434.493,-31.033L-425.294,-27.431L-418.232,-17.691L-408.732,6.191L-414.939,16.184L-401.946,20.252L-401.971,40.159L-392.646,24.983L-384.302,37.477L-386.388,51.442L-379.628,63.782L-372.339,50.563ZM-530.777,34.322L-548.471,37.185L-560.887,38.998L-564.682,29.892L-574.207,24.549L-580.39,26.747L-589.01,10.907L-584.361,8.763L-573.579,5.248L-563.727,6.156L-554.629,2.549L-568.125,-2.332L-583.054,-0.663L-592.956,-1.089L-596.626,-8.857L-580.44,-17.507L-591.197,-17.175L-603.387,-22.962L-597.531,-39.844L-592.68,-49.082L-573.981,-63.601L-566.843,-58.936L-570.337,-47.812L-554.804,-54.967L-545.103,-43.123L-537.211,-55.128L-530.828,-47.377L-525.122,-25.022L-521.604,-34.282L-526.555,-58.204L-520.423,-61.712L-513.486,-57.879L-505.669,-48.288L-501.271,-26.074L-499.11,-10.667L-487.398,-0.168L-474.781,9.594L-475.56,18.494L-487.021,20.117L-482.547,27.71L-484.91,34.844L-497.552,31.801L-509.565,26.515L-517.658,27.71ZM-505.494,-50.356L-516.401,-67.155L-514.014,-70.615L-504.664,-71.62L-499.361,-66.202ZM-324.737,-49.918L-326.748,-51.354L-334.438,-64.054L-334.137,-72.923L-330.794,-74.567L-314.81,-71.914L-302.771,-58.488L-302.143,-51.914L-309.582,-52.595L-317.097,-53.116ZM-231.745,149.699L-250.67,143.734L-265.649,134.92L-274.119,127.41L-271.681,122.982L-282.086,114.806L-292.265,106.974L-292.14,111.673L-312.321,114.235L-318.228,108.683L-313.628,96.547L-300.509,96.264L-286.158,94.107L-288.47,88.064L-286.057,79.502L-277.01,62.224L-278.945,54.163L-281.634,47.787L-292.316,38.642L-306.465,32.097L-301.992,27.146L-309.381,14.786L-315.538,13.622L-321.043,6.679L-324.787,12.73L-337.429,15.332L-362.839,10.803L-377.617,4.759L-388.927,1.634L-394.732,-5.725L-387.444,-15.52L-397.346,-15.594L-399.558,-38.175L-394.205,-59.139L-387.017,-69.069L-368.996,-75.71L-374.123,-59.832L-368.619,-45.047L-362.185,-64.26L-344.492,-74.356L-332.503,-49.321L-333.559,-34.205L-319.736,-40.856L-313.126,-50.117L-297.644,-38.369L-288.018,-27.582L-287.113,-17.949L-274.169,-22.925L-266.881,-9.11L-250.042,-0.734L-243.96,7.618L-237.35,26.415L-250.167,35.463L-233.731,47.851L-222.647,51.944L-212.594,68.633L-201.611,69.808L-203.797,82.082L-216.037,101.721L-224.632,94.59L-235.615,78.147L-244.638,80.325L-245.518,90.135L-238.179,99.9L-228.704,107.471L-225.839,111.782L-221.29,127.463L-223.702,138.538L-232.499,134.401L-250.017,121.941L-240.139,135.335L-232.876,144.496ZM-456.484,-16.696L-463.22,-18.54L-468.045,-26.94L-485.387,-44.497L-485.262,-51.994L-471.011,-49.082L-478.702,-64.714L-470.433,-76.685L-462.114,-71.453L-449.648,-74.61L-447.838,-67.405L-454.348,-55.814L-443.792,-45.678L-445.049,-25.209ZM-427.933,-33.362L-435.9,-34.205L-440.248,-54.604L-440.148,-66.616L-436.503,-77.152L-429.567,-84.054L-415.015,-83.19L-401.694,-77.025L-412.124,-55.249L-420.444,-50.635ZM-629.148,-8.712L-632.842,-18.171L-648.953,-29.854L-645.962,-39.455L-641.136,-56.582L-635.079,-72.586L-641.915,-88.093L-618.316,-92.172L-608.338,-86.786L-590.518,-85.353L-583.733,-78.004L-576.243,-67.529L-585.014,-61.385L-602.13,-44.733L-610.776,-28.754L-610.776,-19.132ZM-427.154,-95.891L-437.283,-97.853L-445.752,-104.837L-442.033,-117.105L-432.005,-124.616L-425.897,-114.818L-423.359,-106.203ZM-466.613,-104.02L-474.102,-108.305L-473.977,-124.425L-485.412,-122.239L-485.865,-144.488L-478.35,-143.589L-467.819,-153.746L-458.017,-152.01L-457.464,-155.951L-452.136,-142.144L-451.91,-127.342L-455.102,-106.75ZM-563.903,-90.72L-564.782,-99.285L-550.281,-111.156L-581.822,-107.939L-591.599,-112.821L-582.074,-140.456L-575.489,-148.712L-555.835,-138.775L-543.444,-121.86L-531.255,-119.735L-541.233,-147.249L-534.824,-158.221L-527.636,-154.719L-525.273,-140.505L-522.534,-130.231L-516.326,-135.043L-509.012,-133.774L-507.781,-119.923L-512.028,-106.887L-535.653,-102.752L-553.271,-91.336ZM-385.207,-90.676L-396.492,-93.895L-415.04,-102.39L-417.453,-117.339L-418.307,-131.295L-425.319,-143.988L-439.746,-147.601L-447.838,-156.93L-445.225,-169.601L-430.823,-167.638L-423.082,-157.704L-409.335,-157.756L-403.303,-147.853L-404.911,-136.806L-396.894,-130.279L-392.445,-123.568L-383.046,-122.334L-372.842,-119.97L-361.758,-126.048L-347.533,-128.495L-336.198,-126.479L-328.708,-115.936L-327.15,-104.701L-331.523,-97.629L-341.928,-91.996L-350.85,-95.18L-370.881,-91.16ZM-618.039,-131.78L-627.514,-138.036L-615.651,-160.399L-601.326,-180.813L-590.619,-180.322L-581.043,-185.098L-581.998,-160.763L-587.377,-150.231L-593.886,-148.762L-606.88,-136.218ZM-428.109,-180.103L-441.203,-182.182L-443.063,-191.331L-429.014,-190.826L-424.113,-184.767L-424.942,-181.032ZM-552.09,-177.493L-562.42,-187.98L-556.79,-198.571L-546.586,-202.01L-536.734,-196.749L-539.071,-186.814ZM-543.922,-210.736L-555.508,-210.795L-555.383,-215.765L-548.22,-226.439L-544.475,-224.793L-535.402,-217.554ZM-449.171,-191.836L-454.851,-199.657L-457.841,-212.504L-458.394,-227.235L-449.346,-225.768L-445.275,-223.396L-436.931,-211.148L-438.841,-198.743ZM-465.658,-193.749L-477.043,-197.488L-488.529,-208.566L-504.086,-209.796L-497.35,-220.254L-505.77,-228.891L-506.298,-243.09L-492.575,-237.966L-473.7,-224.671L-468.372,-207.923ZM-403.755,-204.145L-418.207,-208.566L-425.721,-222.85L-425.621,-236.085L-420.092,-246.029L-432.859,-245.772L-440.55,-258.529L-444.973,-276.646L-440.123,-295.176L-435.297,-308.415L-428.134,-311.567L-431.2,-321.869L-414.965,-324.195L-406.042,-300.419L-394.28,-291.215L-382.845,-283.268L-377.315,-256.748L-368.921,-244.429L-378.497,-233.341L-391.39,-206.583ZM-332.227,-139.812L-350.473,-147.954L-370.982,-143.389L-381.387,-146.946L-394.582,-148.509L-395.461,-163.112L-382.543,-170.133L-385.986,-193.523L-381.714,-195.841L-363.065,-181.634L-372.59,-202.932L-383.9,-209.503L-378.245,-223.153L-365.88,-231.791L-363.894,-244.749L-373.746,-259.787L-376.712,-280.466L-357.636,-278.656L-352.107,-274.234L-341.224,-289.356L-356.932,-294.236L-381.362,-291.502L-393.702,-306.178L-399.533,-324.35L-407.676,-338.032L-409.209,-354.617L-398.829,-364.115L-390.686,-365.749L-376.989,-374.105L-366.709,-393.934L-358.063,-391.172L-350.524,-376.222L-345.22,-405.461L-335.997,-414.595L-323.48,-420.966L-302.143,-423.344L-298.423,-417.131L-278.266,-427.038L-263.161,-423.244L-248.031,-419.585L-229.383,-414.984L-214.378,-407.749L-201.611,-392.643L-201.912,-378.438L-218.952,-356.213L-235.842,-346.322L-242.15,-335.546L-226.945,-335.786L-243.432,-308.116L-254.792,-295.827L-266.755,-262.249L-281.156,-255.762L-285.605,-247.957L-306.742,-243.855L-297.116,-239.163L-301.941,-232.596L-296.161,-214.873L-302.796,-203.048L-313.578,-193.523L-316.896,-180.649L-326.647,-171.146L-325.667,-164.055L-313.729,-165.263L-313.578,-157.756Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(34, 82, 161)", + "ariaRoleDescription": "geoshape", + "description": "id: 756", + "shape": "M297.179,326.228L297.43,328.044L296.375,330.567L299.516,332.439L303.085,332.716L302.532,336.884L299.466,338.598L294.289,337.313L292.781,341.396L289.463,341.72L288.257,340.118L284.336,343.52L280.968,343.995L277.952,341.856L275.564,337.433L272.222,339.008L272.347,334.425L277.449,328.672L277.223,326.053L280.39,326.997L282.325,325.229L288.257,325.299L289.689,323.051Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(167, 221, 183)", + "ariaRoleDescription": "geoshape", + "description": "id: 152", + "shape": "M-248.961,1138.005L-248.961,1164.373L-241.497,1164.393L-237.274,1164.722L-239.587,1169.658L-245.568,1173.471L-249.011,1173.074L-253.133,1172.072L-258.21,1168.393L-265.524,1166.616L-274.32,1159.856L-281.433,1153.448L-291.059,1140.328L-285.303,1142.759L-275.502,1150.584L-266.227,1154.836L-262.633,1149.408L-260.371,1141.405L-253.937,1136.644ZM-238.305,867.335L-237.45,869.233L-239.863,877.144L-247.453,880.916L-247.227,893.796L-248.685,896.302L-246.599,899.37L-251.525,904.247L-256.099,911.674L-258.612,918.923L-257.934,926.716L-262.231,935.071L-259.014,949.319L-257.205,950.844L-257.23,958.574L-261.226,966.851L-261.05,974.029L-266.328,979.69L-266.303,987.737L-264.192,996.382L-268.364,999.639L-270.249,1007.693L-271.882,1017.07L-270.701,1028.42L-273.516,1030.333L-271.882,1041.322L-268.716,1044.977L-271.028,1049.05L-267.786,1050.999L-267.032,1054.699L-270.098,1056.567L-269.344,1062.393L-271.882,1075.75L-275.602,1084.534L-274.773,1089.813L-276.984,1096.509L-282.338,1101.201L-281.735,1112.673L-279.271,1116.653L-274.622,1115.944L-274.773,1124.272L-271.882,1130.833L-254.993,1132.352L-248.534,1134.145L-254.742,1134.068L-258.11,1136.877L-264.393,1141.032L-265.524,1151.964L-268.489,1152.244L-276.356,1148.413L-284.348,1140.289L-293.044,1133.72L-295.231,1126.551L-293.245,1120.007L-296.764,1112.673L-297.669,1094.339L-294.678,1084.27L-287.314,1076.303L-297.92,1073.335L-291.26,1064.422L-288.897,1048.029L-281.131,1051.462L-277.487,1031.547L-282.162,1029.041L-284.348,1040.915L-288.747,1039.568L-286.56,1026.022L-284.172,1008.91L-280.981,1002.714L-282.991,993.984L-283.544,984.035L-280.604,983.753L-276.331,969.762L-271.505,956.178L-268.54,943.741L-270.148,931.453L-268.062,924.774L-268.917,914.865L-264.82,905.193L-263.563,890.078L-261.327,874.122L-259.14,857.224L-259.643,845.018L-261.1,834.617L-257.506,832.739L-255.646,828.977L-252.228,833.97L-251.298,839.282L-247.629,842.41L-249.841,849.597L-246.071,857.985L-243.331,868.373Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(166, 220, 183)", + "ariaRoleDescription": "geoshape", + "description": "id: 156", + "shape": "M994.469,575.041L988.738,572.763L988.537,566.404L991.98,563.055L999.621,560.968L1003.617,561.144L1005.175,563.984L1002.109,567.243L1000.5,571.504ZM1142.225,376.877L1137.727,371.282L1134.937,376.605L1124.155,380.657L1125.261,385.597L1119.204,385.25L1115.911,382.324L1111.111,388.931L1103.42,393.897L1097.715,399.765L1087.963,402.394L1082.836,406.63L1075.296,409.079L1079.016,404.906L1077.558,401.381L1083.087,395.249L1079.393,390.419L1073.311,393.68L1065.419,400.042L1061.121,405.883L1054.285,406.325L1050.716,410.505L1054.411,416.536L1060.116,417.99L1060.342,421.946L1065.871,424.516L1073.688,418.23L1079.896,421.664L1084.394,421.887L1085.525,426.485L1075.648,428.92L1072.381,433.602L1065.595,437.918L1062.026,443.909L1069.541,448.576L1072.28,456.844L1076.528,464.46L1081.278,470.791L1081.152,476.863L1076.779,479.078L1078.438,483.394L1082.56,485.905L1081.479,492.43L1079.695,498.73L1075.799,499.441L1070.697,507.974L1065.042,518.198L1058.558,527.4L1048.957,534.455L1039.256,540.857L1031.389,541.728L1027.116,545.078L1024.704,542.624L1020.758,546.379L1011.006,550.146L1003.617,551.289L1001.229,559.18L997.359,559.621L995.524,554.204L997.183,551.314L987.808,548.913L984.516,550.133L977.479,548.175L974.161,545.116L975.267,540.767L968.883,539.382L965.515,536.529L959.584,540.575L952.773,541.446L947.219,541.408L943.474,543.264L939.855,544.363L940.91,552.963L937.19,552.76L936.562,550.997L936.336,547.895L931.234,550.083L928.193,548.697L923.015,545.869L925.051,539.6L920.628,538.124L918.969,531.109L911.605,532.376L912.434,523.274L919.044,516.819L919.321,510.398L919.12,504.397L916.079,502.517L913.741,497.858L909.67,498.448L902.13,497.254L904.492,493.915L901.225,488.95L896.249,492.322L890.393,490.36L882.325,495.438L875.992,501.328L870.362,502.317L867.296,500.191L863.601,500.003L858.625,498.167L854.855,500.177L850.23,506.035L849.652,499.829L845.38,501.488L837.237,500.726L829.345,498.904L823.69,495.424L818.261,493.848L815.924,490.008L811.978,488.869L804.941,483.627L799.336,481.137L796.446,483.066L786.744,477.401L779.883,472.234L777.923,463.156L782.949,464.264L783.175,460.035L780.386,455.754L781.089,448.891L773.6,438.92L762.114,435.442L760.053,428.787L754.901,424.709L753.644,422.199L752.589,417.166L752.84,413.709L748.593,411.686L746.305,412.577L744.546,404.279L746.532,402.195L745.551,400.073L752.237,395.761L757.062,393.96L764.451,395.203L767.09,389.307L776.038,388.209L778.526,384.524L789.534,379.447L790.514,377.308L789.961,371.896L794.737,369.405L788.453,352.536L802.277,348.584L805.871,346.378L810.897,328.236L824.745,331.608L828.641,326.962L828.968,316.517L834.748,315.518L840.077,308.456L842.816,307.569L844.651,315L850.507,320.564L860.459,324.475L865.285,332.768L862.596,344.57L865.109,348.886L873.403,350.58L882.803,351.968L891.247,358.082L895.545,359.172L898.737,368.075L902.834,373.748L910.524,373.523L924.951,375.659L934.225,374.343L941.111,375.756L951.441,381.483L959.886,381.467L962.977,384.381L971.12,379.336L982.38,376.06L992.86,375.707L1001.003,372.363L1006.03,367.246L1010.906,364L1009.775,360.802L1007.538,357.057L1011.207,350.714L1015.128,351.601L1022.316,353.603L1029.278,348.365L1039.909,344.503L1045.036,337.845L1049.937,334.959L1060.091,333.614L1065.595,334.752L1066.349,331.123L1060.041,323.913L1054.436,320.581L1049.057,324.44L1042.171,322.822L1038.225,324.124L1036.416,319.874L1041.367,309.324L1044.76,301.207L1053.129,305.281L1062.981,298.449L1062.906,293.633L1069.214,281.83L1073.11,278.219L1073.009,271.928L1069.189,269.183L1074.944,263.41L1083.615,261.312L1092.889,260.994L1103.32,264.475L1109.452,268.733L1113.775,280.247L1116.389,285.076L1118.827,291.899L1121.415,302.599L1133.555,306.045L1141.823,313.623L1144.638,323.473L1155.269,323.491L1161.301,319.378L1172.837,316.267L1169.168,325.667L1166.479,329.438L1164.066,340.579L1159.391,350.295L1150.896,348.55L1144.915,352.035L1146.749,360.424L1145.744,371.799L1142.175,372.057Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(74, 182, 193)", + "ariaRoleDescription": "geoshape", + "description": "id: 384", + "shape": "M210.244,669.355L207.077,669.438L202.201,668.062L197.728,668.145L189.459,669.367L184.608,671.383L177.697,673.955L176.339,673.777L176.892,668.003L177.546,667.125L177.345,664.359L174.379,661.424L172.167,660.949L170.132,659.023L171.64,655.906L170.936,652.5L171.263,650.45L172.368,650.45L172.796,647.372L172.243,646.011L172.921,645.031L175.51,644.183L173.776,638.525L172.167,635.589L172.745,633.189L174.128,632.637L175.032,631.989L176.968,633.057L182.371,633.117L183.653,631.052L184.859,631.184L186.87,630.379L187.951,633.417L189.584,632.529L192.45,631.472L195.591,633.021L196.823,635.361L199.964,636.859L202.402,635.073L205.67,634.809L210.445,636.632L212.305,646.692L209.364,652.607L207.529,660.545L210.571,666.591Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(181, 226, 182)", + "ariaRoleDescription": "geoshape", + "description": "id: 120", + "shape": "M321.482,688.443L320.603,688.065L316.481,688.963L312.233,688.029L308.916,688.479L297.556,688.325L298.561,682.812L295.847,678.184L292.655,677L291.247,673.86L289.438,672.853L289.538,670.921L291.323,665.961L294.64,659.189L296.676,659.118L300.823,655.013L303.462,654.894L307.383,657.786L312.183,655.418L312.837,652.488L314.42,649.651L315.501,646.083L319.22,643.179L320.628,638.225L322.111,636.644L323.091,632.961L324.951,628.431L330.832,622.926L331.184,620.561L331.963,619.268L329.198,616.426L329.424,614.15L331.385,613.738L334.175,618.313L334.627,623.047L334.376,627.781L338.171,634.233L334.275,634.161L332.315,634.665L329.123,633.945L327.615,637.291L331.737,641.421L334.778,642.617L335.758,645.545L337.945,650.402L336.864,652.309L333.345,659.439L331.661,660.711L331.133,666.151L331.837,669.106L331.259,671.193L334.577,674.856L335.155,677.367L337.743,680.978L340.935,683.227L341.237,686.409L341.966,688.443L341.463,692.215L335.934,690.56L330.279,688.715Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(156, 216, 184)", + "ariaRoleDescription": "geoshape", + "description": "id: 180", + "shape": "M445.438,679.759L445.036,687.935L447.826,688.881L445.589,691.364L442.9,693.22L440.236,696.86L438.753,700.098L438.376,705.711L436.742,708.37L436.692,713.64L434.681,715.591L434.43,719.741L433.475,720.285L432.822,724.105L434.581,727.276L435.008,735.721L436.265,742.173L435.586,745.819L436.969,749.896L441.015,753.823L444.785,762.707L442.045,761.99L432.671,763.172L430.786,764.021L428.8,768.529L430.359,771.655L429.127,780.047L428.273,787.193L430.157,788.461L435.033,791.241L436.943,789.947L437.521,797.663L432.193,797.603L429.328,793.662L426.739,790.612L421.386,789.621L419.828,785.877L415.555,788.134L409.976,787.132L407.638,783.9L403.215,783.237L399.922,783.418L399.546,781.202L397.133,781.022L393.941,780.601L389.618,781.672L386.577,781.491L384.868,782.141L385.245,773.693L382.907,771.068L382.38,766.722L383.41,762.468L382.003,759.746L381.877,755.312L373.407,755.371L374.01,752.835L370.441,752.859L370.065,754.085L365.742,754.359L364.007,758.458L362.952,760.224L359.081,759.233L356.794,760.224L352.17,760.785L349.506,757.099L347.897,754.823L345.887,750.61L344.178,745.379L323.568,745.284L321.105,746.128L319.095,745.997L316.204,746.936L315.224,744.762L317.009,744.025L317.235,740.963L318.366,739.16L320.904,737.689L322.739,738.401L325.127,735.721L328.947,735.792L329.374,737.772L331.988,739.017L336.11,734.631L340.156,731.207L341.941,728.969L341.689,723.218L344.73,716.43L347.922,712.837L352.522,709.469L353.326,707.235L353.502,704.683L354.633,702.26L354.281,698.302L355.136,692.108L356.518,687.757L358.604,684.019L359.006,679.794L359.634,674.915L362.349,671.359L366.093,669.106L371.849,671.478L376.297,674.062L381.399,674.761L386.602,676.123L388.688,671.893L389.643,671.347L392.835,672.059L400.601,668.56L403.366,670.043L405.628,669.83L406.658,668.133L409.272,667.528L414.525,668.264L418.998,668.43L421.286,667.682L425.533,673.469L428.65,674.311L430.534,673.137L433.752,673.6L437.647,672.118L439.306,675.104Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(157, 216, 184)", + "ariaRoleDescription": "geoshape", + "description": "id: 178", + "shape": "M320.904,737.689L318.291,735.283L316.179,736.468L313.364,739.492L307.634,732.072L312.962,728.212L310.323,723.585L312.711,721.834L317.411,720.971L317.989,717.884L321.709,721.231L327.866,721.526L330.003,718.227L330.907,713.581L330.128,708.133L326.836,703.997L329.852,695.915L328.118,694.532L322.915,695.099L320.955,691.494L321.482,688.443L330.279,688.715L335.934,690.56L341.463,692.215L341.966,688.443L345.635,681.937L349.807,678.231L354.532,679.404L359.006,679.794L358.604,684.019L356.518,687.757L355.136,692.108L354.281,698.302L354.633,702.26L353.502,704.683L353.326,707.235L352.522,709.469L347.922,712.837L344.73,716.43L341.689,723.218L341.941,728.969L340.156,731.207L336.11,734.631L331.988,739.017L329.374,737.772L328.947,735.792L325.127,735.721L322.739,738.401Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(160, 218, 184)", + "ariaRoleDescription": "geoshape", + "description": "id: 170", + "shape": "M-296.01,705.333L-299.001,703.678L-302.444,701.374L-304.43,702.485L-310.336,701.516L-312.045,698.503L-313.352,698.621L-320.339,694.626L-321.269,692.463L-318.68,691.943L-318.982,688.443L-317.348,685.912L-313.88,685.439L-310.939,681.049L-308.275,677.379L-310.839,675.709L-309.532,671.644L-311.09,665.237L-309.607,663.397L-310.713,657.453L-313.528,653.703L-312.623,650.283L-310.386,650.796L-309.079,648.697L-310.688,644.542L-309.833,643.514L-306.239,643.729L-300.986,638.8L-298.121,638.046L-298.046,635.709L-296.764,629.706L-292.768,626.409L-288.37,626.277L-287.817,624.795L-282.338,625.385L-276.859,621.792L-274.119,620.199L-270.751,616.753L-268.288,617.189L-266.454,619.075L-267.811,621.478L-272.285,622.673L-274.069,626.228L-276.758,628.263L-278.794,630.908L-279.648,635.972L-281.584,640.105L-277.965,640.584L-277.085,643.825L-275.527,645.378L-274.999,648.219L-275.828,650.831L-275.577,652.297L-273.843,652.881L-272.184,655.346L-263.212,654.668L-259.165,655.561L-254.239,661.603L-251.424,660.854L-246.398,661.234L-242.427,660.426L-239.938,661.638L-241.195,665.415L-242.753,667.777L-243.306,672.794L-241.899,677.45L-239.913,679.522L-239.687,681.096L-243.206,684.575L-240.692,686.113L-238.833,688.561L-236.696,695.525L-238.003,696.387L-239.385,692.262L-241.321,690.051L-243.633,692.451L-257.23,692.298L-257.129,696.671L-253.058,697.392L-253.284,700.063L-254.691,699.342L-258.612,700.488L-258.637,705.569L-255.546,708.11L-254.465,712.116L-254.616,715.142L-257.758,734.311L-261.251,730.591L-263.337,730.425L-258.838,723.301L-264.192,720.036L-268.364,720.639L-270.902,719.421L-274.748,721.278L-279.95,720.403L-284.047,713.073L-287.289,711.277L-289.526,707.98L-294.15,704.671Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(153, 215, 185)", + "ariaRoleDescription": "geoshape", + "description": "id: 188", + "shape": "M-349.016,646.656L-352.811,645.091L-354.218,643.61L-353.414,642.378L-353.69,640.823L-355.626,639.123L-358.365,637.734L-360.753,636.824L-361.23,634.749L-363.065,633.489L-362.612,635.553L-363.995,637.243L-365.603,635.277L-367.84,634.581L-368.795,633.141L-368.745,630.992L-367.84,628.744L-369.801,627.745L-368.192,626.373L-367.136,625.458L-362.537,627.336L-360.954,626.409L-358.717,627.011L-357.561,628.467L-355.5,628.948L-353.841,627.432L-352.082,631.292L-349.367,634.149L-346.1,637.171L-348.789,637.806L-348.764,640.656L-347.307,641.708L-348.337,642.546L-348.086,643.825L-348.664,645.258Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(151, 214, 185)", + "ariaRoleDescription": "geoshape", + "description": "id: 192", + "shape": "M-312.648,562.791L-307.973,558.651L-310.813,556.707L-315.312,556.215L-317.725,554.052L-319.384,549.79L-323.33,550.083L-329.839,548.061L-331.925,546.481L-341.023,545.32L-343.461,543.852L-340.847,541.959L-347.709,541.575L-352.71,545.499L-355.6,545.601L-356.606,547.437L-360.074,548.264L-363.04,547.551L-359.37,545.218L-357.862,542.496L-354.696,540.819L-351.127,539.331L-345.849,538.612L-344.165,537.777L-338.133,538.316L-332.629,538.406L-326.069,540.985L-323.304,543.75L-316.77,542.906L-314.307,544.669L-308.401,549.333L-304.053,552.722L-301.74,552.621L-297.593,554.141L-298.096,556.253L-292.944,556.556L-287.666,559.609L-288.495,561.346L-293.145,562.289L-297.845,562.653L-302.645,562.075Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(239, 249, 189)", + "ariaRoleDescription": "geoshape", + "description": "id: −99", + "shape": "M458.709,441.946L459.186,441.903L460.191,439.833L465.218,439.949L471.577,437.394L466.852,441.035L467.379,442.64L466.625,442.336L465.293,442.986L464.238,442.813L463.886,443.13L463.76,442.279L463.258,441.744L461.9,441.657L460.015,442.394Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(149, 213, 185)", + "ariaRoleDescription": "geoshape", + "description": "id: 196", + "shape": "M467.379,442.64L467.581,443.332L460.418,446.785L457,445.679L455.391,442.264L458.709,441.946L460.015,442.394L461.9,441.657L463.258,441.744L463.76,442.279L463.886,443.13L464.238,442.813L465.293,442.986L466.625,442.336Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(146, 212, 185)", + "ariaRoleDescription": "geoshape", + "description": "id: 203", + "shape": "M348.601,315.018L345.384,313.031L342.091,313.569L336.688,310.334L334.225,311.127L330.279,315.464L325.102,312.062L321.156,307.478L317.612,304.899L316.858,300.344L315.626,297.101L320.703,294.711L323.292,291.974L328.319,289.841L330.078,287.718L331.913,288.997L335.029,287.831L338.347,291.413L343.549,292.366L343.122,295.398L346.917,297.655L347.947,294.822L352.748,296.046L353.401,299.462L358.604,300.124L361.796,305.445L359.735,305.463L358.654,307.388L357.046,307.859L356.593,310.28L355.236,310.785L355.06,311.774L352.672,312.87L349.581,312.69Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(115, 201, 189)", + "ariaRoleDescription": "geoshape", + "description": "id: 276", + "shape": "M299.466,242.782L299.566,247.455L306.629,250.262L306.553,254.502L313.666,252.265L317.587,248.982L325.453,253.697L328.771,257.489L330.38,263.449L328.444,266.56L330.983,270.664L332.717,276.778L332.164,280.687L335.029,287.831L331.913,288.997L330.078,287.718L328.319,289.841L323.292,291.974L320.703,294.711L315.626,297.101L316.858,300.344L317.612,304.899L321.156,307.478L325.102,312.062L322.639,316.926L320.125,318.26L321.131,325.054L320.477,326.805L318.291,324.686L314.948,324.37L309.946,326.228L303.789,325.79L302.809,328.515L299.265,325.65L297.179,326.228L289.689,323.051L288.257,325.299L282.325,325.229L283.205,317.798L286.723,310.568L276.67,308.601L273.378,305.79L273.78,301.06L272.373,298.615L273.177,291.189L271.996,279.483L276.193,279.483L277.952,275.218L279.686,264.672L278.404,260.716L279.762,258.228L285.593,257.589L286.899,260.18L291.624,254.361L290.041,249.876L289.714,243.029L294.992,244.632Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(121, 203, 188)", + "ariaRoleDescription": "geoshape", + "description": "id: 262", + "shape": "M530.941,614.877L532.6,617.092L532.373,620.054L528.402,621.768L531.393,623.71L528.83,627.529L527.271,626.253L525.587,626.758L521.692,626.638L521.591,624.47L521.038,622.504L523.401,619.159L525.864,616.003L528.855,616.62Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(144, 212, 185)", + "ariaRoleDescription": "geoshape", + "description": "id: 208", + "shape": "M314.596,245.001L307.282,238.127L306.302,232.985L316.556,228.87L318.768,235.103ZM299.466,242.782L294.992,244.632L289.714,243.029L286.874,236.231L286.673,223.457L287.829,220.038L289.84,216.202L295.972,215.396L298.435,211.83L304.04,208.148L303.814,214.829L301.753,219L302.582,222.578L306.377,224.485L304.668,229.231L302.582,227.873L297.556,236.815Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(141, 211, 186)", + "ariaRoleDescription": "geoshape", + "description": "id: 214", + "shape": "M-270.45,563.846L-269.595,562.578L-264.141,562.615L-259.994,564.524L-258.16,564.336L-256.903,566.955L-253.083,566.817L-253.309,569.019L-250.193,569.281L-246.775,571.99L-249.363,574.979L-252.681,573.386L-255.873,573.697L-258.185,573.348L-259.442,574.68L-262.106,575.141L-263.186,573.348L-265.499,574.407L-268.288,579.437L-270.073,578.271L-270.425,576.16L-270.299,574.158L-272.083,571.953L-270.374,570.718L-269.847,567.869Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(215, 240, 180)", + "ariaRoleDescription": "geoshape", + "description": "id: 12", + "shape": "M313.968,535.628L290.041,550.032L269.834,564.687L259.982,567.981L252.241,568.706L252.166,563.997L248.923,562.791L244.575,560.666L242.917,557.175L219.367,540.78L195.817,524.121L169.553,505.276L169.704,503.758L169.679,503.224L169.629,493.834L180.914,487.932L187.875,486.708L193.581,484.541L196.27,480.506L204.413,477.29L204.715,471.235L208.761,470.527L211.928,467.479L221.051,466.097L222.333,462.876L220.498,461.119L218.085,452.288L217.658,447.158L215.044,441.701L221.755,437.016L229.295,435.53L233.693,431.962L240.429,429.317L252.266,427.77L263.802,427.061L267.321,428.345L273.906,424.916L281.37,424.842L284.21,426.869L288.985,426.352L287.553,430.817L288.659,439.036L287.025,446.067L282.727,450.791L283.331,457.113L289.036,462.075L289.111,464.082L293.409,467.409L296.375,482.068L298.637,489.181L299.014,492.889L297.782,499.374L298.31,502.984L297.405,507.284L298.008,512.196L295.244,515.452L299.365,521.105L299.642,524.408L302.13,528.699L305.397,527.284L310.901,530.85Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(140, 210, 186)", + "ariaRoleDescription": "geoshape", + "description": "id: 218", + "shape": "M-330.442,728.058L-326.723,722.827L-328.231,719.776L-330.895,723.029L-335.067,719.965L-333.659,717.991L-334.841,711.655L-332.403,710.603L-331.096,706.254L-328.457,701.752L-328.959,698.904L-325.114,697.415L-320.339,694.626L-313.352,698.621L-312.045,698.503L-310.336,701.516L-304.43,702.485L-302.444,701.374L-299.001,703.678L-296.01,705.333L-295.055,710.638L-297.216,715.177L-304.832,722.496L-313.226,725.253L-317.499,731.337L-318.831,736.053L-322.777,738.934L-325.692,735.401L-328.532,734.643L-331.397,735.2L-331.598,732.64L-329.613,730.97Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(33, 66, 151)", + "ariaRoleDescription": "geoshape", + "description": "id: 818", + "shape": "M473.989,488.556L472.029,491.781L470.521,497.791L468.636,501.916L467.002,503.291L464.665,500.739L461.523,497.213L456.547,485.755L455.818,486.476L458.709,494.926L463.006,502.891L468.284,515.083L470.848,519.299L473.11,523.665L479.368,532.156L477.986,533.487L478.212,538.432L486.33,545.218L487.561,546.761L459.865,546.761L432.796,546.761L404.723,546.761L404.723,518.657L404.723,490.672L402.637,484.2L404.421,479.202L403.341,475.719L405.879,471.804L415.153,471.665L421.889,473.826L428.8,476.243L432.042,477.511L437.421,474.918L440.286,472.58L446.444,471.901L451.42,472.941L453.305,476.987L454.939,474.324L460.518,476.257L465.972,476.712L469.415,474.656Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(134, 208, 187)", + "ariaRoleDescription": "geoshape", + "description": "id: 232", + "shape": "M525.864,616.003L523.476,613.689L520.611,609.49L517.495,607.18L515.71,604.697L509.628,601.807L504.828,601.721L503.144,600.207L499.047,601.904L494.825,598.63L492.638,604.014L484.52,602.502L483.766,599.62L486.782,588.973L487.461,584.127L489.672,581.889L494.8,580.688L498.343,576.508L502.39,584.979L504.325,591.654L508.145,595.189L517.671,602.014L521.541,606.11L525.336,610.256L527.523,612.719L530.941,614.877L528.855,616.62Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(34, 91, 166)", + "ariaRoleDescription": "geoshape", + "description": "id: 724", + "shape": "M167.116,381.721L167.467,375.018L164.602,370.878L174.48,363.951L183.025,365.683L192.399,365.634L199.839,367.279L205.619,366.774L216.904,367.084L219.694,370.814L232.537,375.13L235.075,373.088L242.942,377.372L251.035,376.14L251.412,381.626L244.802,387.832L235.854,389.792L235.226,392.901L230.928,397.975L228.239,405.364L230.953,410.505L226.932,414.477L225.424,420.233L220.146,421.991L215.195,428.714L206.348,428.846L199.688,428.684L195.315,431.756L192.651,435.019L189.233,434.304L186.644,431.39L184.658,426.382L178.149,425.02L177.571,422.125L180.16,418.813L181.115,416.401L178.702,413.769L180.637,407.894L177.847,402.471L180.863,401.734L181.14,397.418L182.271,396.087L182.346,388.899L185.588,386.385L183.628,381.705L179.556,381.372L178.375,382.562L174.253,382.562L172.494,377.964L169.654,379.336Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(133, 208, 187)", + "ariaRoleDescription": "geoshape", + "description": "id: 233", + "shape": "M399.922,207.328L400.727,199.527L398.163,201.214L393.74,196.474L393.137,188.696L401.958,184.897L410.755,182.893L418.32,185.153L425.533,184.758L426.589,187.148L421.612,194.974L423.698,207.351L420.682,211.478L414.927,211.456L408.92,206.618L405.879,204.995Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(134, 208, 187)", + "ariaRoleDescription": "geoshape", + "description": "id: 231", + "shape": "M525.864,616.003L523.401,619.159L521.038,622.504L521.591,624.47L521.692,626.638L525.587,626.758L527.271,626.253L528.83,627.529L527.297,630.042L529.885,633.945L532.449,637.363L535.113,639.878L557.959,648.267L563.815,648.219L544.085,669.308L534.987,669.616L528.779,674.559L524.306,674.69L522.396,676.893L517.62,676.893L514.805,674.524L508.422,677.45L506.361,680.374L501.711,679.818L500.153,679.013L498.519,679.202L496.333,679.131L487.486,673.185L482.635,673.185L480.248,670.885L480.248,666.947L476.603,665.772L472.481,658.131L469.29,656.501L468.083,653.691L464.539,650.259L460.242,649.758L462.629,645.736L466.324,645.569L467.379,643.406L467.279,637.051L469.34,629.634L472.657,627.637L473.361,624.735L476.352,619.292L480.574,615.748L483.389,608.688L484.52,602.502L492.638,604.014L494.825,598.63L499.047,601.904L503.144,600.207L504.828,601.721L509.628,601.807L515.71,604.697L517.495,607.18L520.611,609.49L523.476,613.689Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(128, 205, 187)", + "ariaRoleDescription": "geoshape", + "description": "id: 246", + "shape": "M429.806,28.769L428.775,42.247L439.457,54.693L433.023,68.332L441.141,88.179L436.441,102.531L442.724,114.643L439.884,124.976L450.214,135.594L447.575,143.326L441.09,151.929L426.161,170.416L413.494,171.543L401.204,176.685L389.844,179.634L385.798,171.973L379.037,167.334L380.595,153.052L377.202,139.567L380.545,130.618L386.878,120.791L402.838,103.312L407.488,99.844L406.784,92.768L397.057,84.735L394.72,77.999L394.519,50.28L383.636,37.445L374.312,27.975L378.509,22.775L386.275,33.113L395.373,32.162L402.863,36.829L409.523,28.24L412.967,13.657L423.799,6.748L432.746,14.854Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(129, 206, 187)", + "ariaRoleDescription": "geoshape", + "description": "id: 242", + "shape": "M1472.398,834.169L1468.552,833.261L1467.874,830.031L1470.563,827.516L1473.73,828.432L1475.464,827.218L1477.877,829.337L1476.72,833.161ZM1477.927,824.819L1477.022,822.103L1480.516,820.612L1482.727,820.205L1486.824,817.941L1486.824,821.499L1482.375,823.288ZM1486.824,821.499L1486.824,817.941L1488.256,817.609L1487.402,821.105Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(131, 207, 187)", + "ariaRoleDescription": "geoshape", + "description": "id: 238", + "shape": "M-193.568,1134.145L-197.061,1129.032L-188.692,1122.305L-182.761,1125.106L-178.564,1120.627L-172.984,1125.657L-175.07,1129.606L-184.495,1133.007L-187.637,1129.032Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(126, 205, 188)", + "ariaRoleDescription": "geoshape", + "description": "id: 250", + "shape": "M-150.465,688.124L-148.706,685.143L-148.102,681.96L-146.896,678.966L-149.585,674.832L-150.138,670.043L-146.519,664.014L-144.131,664.786L-139.004,666.448L-131.615,672.367L-130.459,675.235L-134.581,681.629L-136.717,686.787L-139.406,689.436L-142.749,689.933L-143.704,687.97L-145.262,687.674L-147.424,689.566ZM294.615,386.4L291.448,384.508L289.84,378.187L291.247,374.681L295.746,371.04L296.927,379.176ZM269.809,305.081L271.367,306.027L273.378,305.79L276.67,308.601L286.723,310.568L283.205,317.798L282.325,325.229L280.39,326.997L277.223,326.053L277.449,328.672L272.347,334.425L272.222,339.008L275.564,337.433L277.952,341.856L277.676,344.689L279.737,348.433L277.299,351.45L279.108,359.04L282.903,360.276L282.099,364.475L275.766,369.908L261.993,367.311L251.839,370.425L251.035,376.14L242.942,377.372L235.075,373.088L232.537,375.13L219.694,370.814L216.904,367.084L220.523,361.295L221.855,341.618L214.642,330.967L209.49,325.755L198.833,321.765L198.13,314.106L207.178,311.792L218.89,314.517L216.678,302.416L223.288,307.043L239.524,298.615L241.635,289.616L247.742,287.379L248.748,291.264L251.99,291.451L255.232,295.861L260.108,301.005L263.702,300.161Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(119, 202, 188)", + "ariaRoleDescription": "geoshape", + "description": "id: 266", + "shape": "M307.634,732.072L300.471,725.016L295.847,719.244L291.599,712.033L291.825,709.717L293.359,707.483L295.043,702.402L296.45,697.226L298.812,696.813L308.966,696.884L308.916,688.479L312.233,688.029L316.481,688.963L320.603,688.065L321.482,688.443L320.955,691.494L322.915,695.099L328.118,694.532L329.852,695.915L326.836,703.997L330.128,708.133L330.907,713.581L330.003,718.227L327.866,721.526L321.709,721.231L317.989,717.884L317.411,720.971L312.711,721.834L310.323,723.585L312.962,728.212Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(33, 64, 149)", + "ariaRoleDescription": "geoshape", + "description": "id: 826", + "shape": "M186.92,256.168L181.642,253.717L177.32,253.899L178.752,247.475L177.32,240.967L183.176,240.47L190.665,247.965ZM215.622,231.386L216.175,232.691L222.408,247.128L227.183,249.064L231.481,262.56L233.467,267.148L241.937,269.358L241.082,276.682L237.513,279.999L240.303,285.795L234.02,291.619L224.695,291.507L212.807,294.544L209.54,292.384L204.941,297.507L198.482,296.268L193.581,300.436L189.861,298.264L200.09,286.682L206.348,284.281L206.298,284.262L195.39,282.401L193.405,277.912L200.718,274.388L196.898,268.186L198.205,260.558L208.585,261.629L208.61,261.629L209.615,254.784L204.941,247.414L204.84,247.251L196.37,245.124L194.712,241.834L197.25,236.356L194.938,232.943L191.193,238.771L190.766,226.81L187.247,220.361L189.786,206.996L195.214,196.224L200.794,197.29L209.213,196.179L201.749,210.466L208.861,208.679L216.502,208.745L214.692,219.26L208.409,230.584Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(118, 202, 188)", + "ariaRoleDescription": "geoshape", + "description": "id: 268", + "shape": "M520.284,384.95L521.34,380.959L519.581,374.52L515.559,371.007L511.689,369.908L509.125,366.97L509.98,365.829L515.886,367.474L526.166,369.033L535.666,373.604L536.872,375.371L541.12,373.877L547.629,375.868L549.765,379.734L554.164,381.911L552.354,383.211L555.772,388.24L554.817,389.338L551.072,388.774L545.87,386.117L544.161,387.628L534.459,389.072L527.724,384.508Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(109, 199, 189)", + "ariaRoleDescription": "geoshape", + "description": "id: 288", + "shape": "M237.588,662.803L226.631,666.911L222.76,669.32L216.477,671.347L210.244,669.355L210.571,666.591L207.529,660.545L209.364,652.607L212.305,646.692L210.445,636.632L209.49,631.304L209.666,627.264L221.78,626.939L224.871,627.456L227.133,626.301L230.35,626.867L229.848,629.08L232.763,632.745L232.738,637.89L233.416,643.466L235.151,646.035L233.617,652.381L234.17,655.882L236.03,660.343Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(96, 193, 191)", + "ariaRoleDescription": "geoshape", + "description": "id: 324", + "shape": "M171.263,650.45L169.302,650.271L167.87,653.108L165.909,653.072L164.527,651.57L165.004,648.744L162.089,644.422L160.254,645.223L158.771,645.378L156.836,645.784L156.912,643.191L155.806,641.338L156.032,639.291L154.524,636.308L152.564,633.777L146.984,633.765L145.35,635.109L143.44,635.265L142.234,636.8L141.43,638.752L137.71,641.864L134.644,637.686L131.929,634.905L130.145,633.993L128.411,632.577L127.607,629.441L126.576,627.878L124.565,626.71L127.657,623.24L129.768,623.373L131.603,622.178L133.136,622.166L134.242,621.225L133.638,618.857L134.418,618.108L134.543,615.688L137.911,615.761L142.938,617.503L144.471,617.346L144.999,616.547L148.794,617.116L149.799,616.717L150.201,619.329L151.307,619.317L153.142,618.374L154.298,618.604L156.233,620.416L159.224,620.996L161.134,619.45L163.396,618.495L165.08,617.491L166.462,617.672L168.02,619.244L168.85,621.213L171.715,624.204L170.282,626.036L170.006,628.347L171.489,627.649L172.368,628.479L171.991,630.595L174.128,632.637L172.745,633.189L172.167,635.589L173.776,638.525L175.51,644.183L172.921,645.031L172.243,646.011L172.796,647.372L172.368,650.45Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(117, 202, 189)", + "ariaRoleDescription": "geoshape", + "description": "id: 270", + "shape": "M113.507,608.457L121.097,608.251L122.68,606.548L124.892,606.438L127.657,608.202L129.818,608.239L132.13,607.034L133.538,609.102L130.522,610.717L127.481,610.584L124.49,609.077L121.901,610.729L120.645,610.79L118.961,611.797L112.602,611.64Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(33, 121, 180)", + "ariaRoleDescription": "geoshape", + "description": "id: 624", + "shape": "M124.565,626.71L120.821,623.734L117.88,623.264L116.297,621.261L116.322,620.174L114.211,618.664L113.758,617.128L117.453,615.966L119.765,616.196L121.65,615.385L134.543,615.688L134.418,618.108L133.638,618.857L134.242,621.225L133.136,622.166L131.603,622.178L129.768,623.373L127.657,623.24Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(136, 209, 186)", + "ariaRoleDescription": "geoshape", + "description": "id: 226", + "shape": "M296.45,697.226L295.143,696.163L297.556,688.325L308.916,688.479L308.966,696.884L298.812,696.813Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(104, 197, 190)", + "ariaRoleDescription": "geoshape", + "description": "id: 300", + "shape": "M402.788,443.822L402.863,442.409L394.343,440.746L395.65,437.103L399.47,439.993L404.899,439.5L410.101,440.109L409.925,441.599L413.721,440.572L412.841,443.101ZM412.087,391.56L407.839,391.294L404.195,390.419L395.75,392.823L400.576,397.975L397.032,399.457L393.162,399.472L389.467,394.752L388.16,396.768L389.719,402.21L393.212,406.447L390.573,408.411L394.469,412.547L397.912,415.124L398.012,420.128L391.553,417.781L393.614,422.289L389.191,423.21L391.83,430.905L387.205,431.023L381.475,427.239L378.861,420.218L377.63,414.326L374.915,410.217L371.321,405.089L370.869,402.517L374.111,398.099L374.513,395.125L376.8,393.804L376.926,391.388L381.5,390.559L384.164,388.538L387.934,388.727L389.09,387.109L390.422,386.794L395.6,387.061L401.179,384.508L406.105,387.753L412.439,386.873L412.514,382.229L415.907,384.713L413.746,390.512Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(103, 196, 190)", + "ariaRoleDescription": "geoshape", + "description": "id: 304", + "shape": "M-82.48,176.969L-92.785,165.421L-106.759,165.349L-113.519,157.418L-118.194,142.944L-130.283,123.807L-133.827,113.446L-134.782,98.776L-144.433,83.133L-141.92,70.258L-146.594,63.965L-139.683,42.375L-129.177,35.268L-126.413,27.146L-124.955,11.561L-132.947,18.697L-136.742,21.667L-143,24.482L-151.571,17.986L-152.048,4.164L-149.309,-6.982L-142.824,-7.306L-128.574,-1.692L-140.588,-15.227L-146.846,-22.701L-153.782,-19.614L-159.613,-25.097L-151.822,-46.27L-156.07,-55.047L-161.599,-71.872L-170.018,-99.016L-178.89,-109.452L-178.815,-120.961L-197.539,-137.642L-212.367,-139.763L-231.041,-138.578L-248.056,-136.414L-256.174,-145.74L-268.288,-164.843L-249.966,-174.738L-235.917,-176.41L-265.775,-184.822L-281.533,-198.343L-280.553,-211.619L-254.139,-228.768L-228.553,-246.606L-225.864,-260.584L-244.714,-274.991L-238.606,-291.502L-214.454,-322.256L-204.3,-327.159L-207.19,-348.462L-190.653,-361.549L-169.189,-369.557L-147.751,-369.992L-140.135,-354.282L-121.612,-382.459L-104.949,-363.087L-95.147,-359.169L-80.645,-343.214L-97.233,-369.992L-96.278,-392.643L-72.854,-426.536L-48.35,-423.841L-39.452,-446.138L-14.772,-452.177L13.385,-449.213L40.998,-444.354L64.081,-421.111L84.654,-398.02L71.761,-377.373L45.07,-375.074L7.471,-369.992L10.989,-360.953L35.72,-366.525L56.731,-349.289L70.303,-364.544L76.109,-346.733L68.443,-319.403L86.212,-336.667L120.092,-355.456L141.028,-345.994L144.948,-325.752L116.498,-294.236L112.552,-284.534L90.234,-277.407L106.394,-275.473L98.251,-246.799L92.621,-222.911L92.848,-184.877L101.217,-164.107L90.309,-162.85L78.823,-153.183L91.717,-137.494L93.35,-113.516L85.886,-110.972L94.934,-88.181L79.427,-86.351L87.519,-76.006L85.232,-67.28L75.405,-63.519L65.654,-63.437L74.4,-47.297L74.501,-37.015L60.702,-46.546L57.108,-40.35L66.533,-34.627L75.682,-20.987L78.321,-3.65L65.88,0.398L60.501,-7.738L51.856,-20.17L54.243,-5.546L46.15,5.458L64.548,6.33L74.174,7.444L55.45,24.983L36.474,40.255L16.041,46.774L8.35,46.837L1.112,54.007L-8.589,73.043L-23.594,85.228L-28.419,85.924L-37.718,90.107L-47.746,94.05L-53.728,104.314L-53.829,115.7L-57.372,126.089L-68.758,138.41L-65.943,150.151L-69.084,162.232L-72.653,176.116Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(97, 193, 191)", + "ariaRoleDescription": "geoshape", + "description": "id: 320", + "shape": "M-398.804,607.448L-402.373,606.195L-406.746,606.061L-409.938,604.636L-413.683,601.66L-413.507,599.559L-412.703,597.871L-413.683,596.512L-410.34,590.61L-401.368,590.585L-401.192,588.111L-402.323,587.668L-403.102,586.09L-405.69,584.411L-408.279,581.963L-405.138,581.951L-405.112,577.824L-398.603,577.812L-392.144,577.899L-392.194,583.694L-392.747,591.912L-390.661,591.912L-388.399,593.226L-387.796,592.146L-385.735,593.067L-388.927,595.826L-392.219,597.859L-392.722,599.241L-392.169,600.659L-393.627,602.49L-395.26,602.941L-394.883,603.783L-396.19,604.587L-398.578,606.402Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(94, 192, 191)", + "ariaRoleDescription": "geoshape", + "description": "id: 328", + "shape": "M-187.008,645.653L-182.409,648.243L-178.111,652.834L-177.91,656.453L-175.271,656.62L-171.526,660.057L-168.787,662.494L-169.893,668.809L-174.14,670.636L-173.763,672.284L-175.045,675.898L-171.954,680.978L-169.717,680.99L-168.787,684.93L-164.539,691.009L-166.223,691.257L-170.094,690.666L-172.356,692.522L-175.523,693.752L-177.734,694.047L-178.488,695.418L-181.931,695.075L-186.229,691.801L-186.732,688.561L-188.516,685.025L-187.41,679.084L-185.475,676.609L-187.059,673.363L-189.471,672.296L-188.567,669.225L-190.175,667.611L-193.819,667.92L-198.544,662.601L-196.659,660.664L-196.785,657.417L-192.487,656.287L-190.753,654.977L-193.141,652.357L-192.538,649.794Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(90, 190, 192)", + "ariaRoleDescription": "geoshape", + "description": "id: 340", + "shape": "M-379.401,612.841L-380.608,610.596L-382.719,609.976L-382.241,607.095L-383.196,606.316L-384.629,605.805L-387.695,606.657L-387.947,605.696L-390.058,604.538L-391.566,603.1L-393.627,602.49L-392.169,600.659L-392.722,599.241L-392.219,597.859L-388.927,595.826L-385.735,593.067L-385.006,593.349L-383.473,592.072L-381.487,591.974L-380.834,592.563L-379.753,592.207L-376.511,592.858L-373.294,592.674L-371.032,591.863L-370.228,591.052L-367.991,591.433L-366.332,591.925L-364.497,591.753L-363.115,591.126L-359.923,592.134L-358.817,592.293L-356.681,593.644L-354.67,595.263L-352.132,596.378L-350.297,598.361L-352.685,598.214L-353.64,599.204L-356.078,600.146L-357.837,600.146L-359.37,601.074L-360.778,600.744L-361.959,599.645L-362.688,599.852L-363.593,601.575L-364.271,601.514L-364.372,602.99L-366.81,604.977L-368.091,605.83L-368.82,606.73L-370.881,605.269L-372.389,607.193L-373.847,607.144L-375.481,607.314L-375.33,610.839L-376.36,610.899L-377.24,612.537Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(151, 214, 185)", + "ariaRoleDescription": "geoshape", + "description": "id: 191", + "shape": "M361.645,342.672L363.329,346.547L365.566,349.39L362.876,353.103L359.71,350.915L354.884,351.049L348.877,349.407L345.61,349.625L344.102,351.684L341.614,349.407L340.131,353.503L343.549,358.099L345.082,361.115L348.274,364.736L350.938,366.856L353.577,370.862L359.76,374.472L358.981,376.076L352.421,372.573L348.375,369.13L341.991,366.27L336.135,359.155L337.542,358.412L334.351,354.302L334.225,350.965L329.726,349.407L327.59,353.669L325.529,350.362L325.68,346.918L325.931,346.766L330.807,347.103L332.089,345.416L334.451,347.053L337.191,347.238L337.165,344.452L339.603,343.435L340.282,339.367L345.836,336.678L348.048,337.93L353.276,342.247L359.031,344.181Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(93, 191, 191)", + "ariaRoleDescription": "geoshape", + "description": "id: 332", + "shape": "M-270.45,563.846L-269.847,567.869L-270.374,570.718L-272.083,571.953L-270.299,574.158L-270.425,576.16L-275.074,574.917L-278.367,575.427L-282.614,574.892L-285.881,576.259L-289.626,573.971L-289.023,571.603L-282.589,572.626L-277.311,573.211L-274.798,571.578L-277.99,568.381L-277.939,565.552L-282.338,564.398L-280.779,562.352L-276.507,562.678Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(87, 188, 192)", + "ariaRoleDescription": "geoshape", + "description": "id: 348", + "shape": "M343.298,333.131L345.61,326.525L344.278,324.282L348.199,324.247L348.727,319.997L352.27,322.664L354.859,323.807L360.715,322.523L361.268,320.44L364.058,320.121L367.451,318.491L368.205,319.165L371.472,317.851L373.131,315.375L375.418,314.732L382.882,317.94L384.365,316.855L388.261,319.714L388.738,322.523L384.466,324.686L381.173,331.677L376.951,338.581L371.346,340.476L366.998,340.033L361.645,342.672L359.031,344.181L353.276,342.247L348.048,337.93L345.836,336.678L344.479,333.234Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(83, 186, 192)", + "ariaRoleDescription": "geoshape", + "description": "id: 360", + "shape": "M1069.993,776.273L1060.744,771.307L1067.254,769.918L1070.923,772.074L1073.361,774.233L1072.934,776.141ZM1102.641,766.603L1103.345,768.002L1103.47,770.145L1098.921,775.433L1092.94,776.994L1092.11,776.141L1092.739,773.729L1095.729,769.415ZM1048.932,767.655L1045.187,767.596L1047.575,763.531L1051.42,763.471L1053.28,760.976L1055.793,762.862L1060.116,762.289L1061.85,765.287L1053.782,766.71ZM1076.704,766.902L1067.405,766.029L1067.405,763.447L1072.934,761.978L1077.307,764.092L1081.957,763.555L1088.215,760.976L1087.184,764.893ZM1030.007,765.61L1022.316,762.766L1016.008,762.957L1008.769,762.432L1002.235,761.166L994.142,758.482L989.015,757.779L986.099,758.661L973.382,755.764L972.176,752.74L965.767,752.216L970.567,745.51L979.037,745.926L984.667,748.671L987.557,749.206L988.512,751.704L1001.908,752.406L1003.441,749.504L1016.385,752.883L1018.923,757.445L1029.403,758.733L1037.974,762.922ZM1167.157,752.525L1166.479,747.233L1167.71,744.714L1169.168,742.34L1170.751,744.394L1170.751,747.744ZM1115.936,730.757L1111.111,729.478L1109.754,726.472L1116.816,726.128L1118.55,728.436ZM1143.583,731.231L1137.701,728.342L1131.871,727.762L1127.925,728.223L1123.099,727.975L1124.733,724.129L1133.379,723.845L1141.044,725.88ZM1214.558,722.437L1214.684,745.249L1214.784,768.194L1208.577,762.396L1201.489,760.987L1199.755,762.993L1190.908,763.208L1193.874,757.469L1198.272,755.514L1196.462,747.875L1193.095,741.983L1179.573,736.053L1173.818,735.46L1163.337,728.993L1161.276,732.392L1158.587,733.008L1157.004,730.449L1156.978,727.407L1151.65,723.975L1159.165,721.455L1164.141,721.586L1163.563,719.741L1153.334,719.729L1150.57,715.567L1144.337,714.279L1141.396,710.816L1150.796,709.126L1154.365,706.857L1165.574,709.717L1166.68,712.317L1168.64,723.608L1175.853,727.797L1181.684,720.379L1189.702,716.17L1195.91,716.158L1201.891,718.594L1207.069,721.101ZM1066.525,743.942L1063.534,741.889L1065.52,735.437L1064.439,728.685L1061.498,728.638L1059.337,723.845L1062.227,719.268L1063.232,713.723L1066.726,703.194L1068.184,700.323L1074.14,695.134L1079.594,697.191L1088.391,698.16L1096.408,697.865L1103.32,692.794L1104.526,694.354L1098.921,701.292L1093.668,702.627L1086.958,701.268L1075.321,701.611L1069.214,702.615L1068.234,707.897L1074.467,714.113L1078.237,710.946L1091.256,708.57L1090.703,711.785L1087.662,710.768L1084.621,714.87L1078.463,717.577L1085.073,726.531L1083.816,728.934L1090.074,737.013L1090.024,741.616L1086.305,743.669L1083.565,741.212L1086.933,735.472L1080.072,738.187L1078.337,736.243L1079.242,733.541L1074.216,729.443L1074.743,722.626L1070.069,724.744L1070.672,732.901L1070.948,742.933ZM1124.482,710.556L1121.667,706.136L1119.606,697.215L1121.013,691.636L1123.325,689.093L1123.828,692.9L1127.95,693.515L1128.603,696.364L1128.226,702.473L1124.632,701.788L1123.577,706.03L1126.442,709.717ZM995.775,690.264L996.957,694.934L1001.732,698.881L1006.231,697.451L1010.679,697.959L1014.751,694.425L1018.094,693.811L1024.704,695.773L1030.384,694.283L1033.978,684.564L1036.667,682.138L1039.08,674.18L1047.097,674.18L1053.154,675.365L1049.183,681.676L1054.31,688.301L1053.104,691.517L1060.945,697.971L1052.677,698.798L1050.339,703.56L1050.641,709.882L1043.93,714.657L1043.754,721.621L1041.065,732.309L1040.035,729.822L1032.093,732.972L1029.328,728.697L1024.352,728.294L1020.858,726.057L1012.564,728.567L1010.026,725.194L1005.452,725.572L999.696,724.768L998.616,715.39L995.147,713.451L991.779,707.483L990.824,701.374L991.629,694.898ZM961.192,745.344L955.311,739.48L946.364,733.766L943.373,729.526L938.095,723.833L934.627,718.594L929.299,708.819L923.166,702.993L921.13,696.99L918.542,691.541L912.259,687.142L908.614,681.156L903.361,677.248L896.073,669.521L895.47,665.961L899.943,666.246L910.751,667.599L916.933,674.441L922.337,679.19L926.182,682.102L932.792,689.614L939.905,689.72L945.761,694.508L949.807,700.358L955.11,703.548L952.321,709.244L956.317,711.667L958.83,711.844L960.011,716.714L962.449,720.616L967.576,721.231L970.969,725.655L969.21,734.358L968.933,745.201Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(84, 187, 192)", + "ariaRoleDescription": "geoshape", + "description": "id: 356", + "shape": "M773.6,438.92L781.089,448.891L780.386,455.754L783.175,460.035L782.949,464.264L777.923,463.156L779.883,472.234L786.744,477.401L796.446,483.066L792.022,486.721L789.308,494.212L796.069,497.227L802.654,501.1L811.752,505.529L821.327,506.54L825.349,510.531L830.752,511.271L839.147,513.094L844.952,512.962L845.757,509.869L844.852,504.89L845.38,501.488L849.652,499.829L850.23,506.035L850.381,507.615L856.715,510.584L861.113,509.366L866.994,509.882L872.699,509.657L873.202,504.837L870.362,502.317L875.992,501.328L882.325,495.438L890.393,490.36L896.249,492.322L901.225,488.95L904.492,493.915L902.13,497.254L909.67,498.448L910.173,501.448L907.735,502.891L908.313,507.735L903.311,506.314L894.288,511.721L894.49,516.175L890.644,522.673L890.292,526.426L887.176,532.738L881.722,530.992L881.445,538.882L879.862,541.459L880.616,544.669L877.173,546.456L873.478,534.442L871.568,534.468L870.412,539.318L866.592,535.383L868.753,531.044L871.87,530.604L875.087,524.108L871.066,522.791L864.606,522.895L857.946,521.837L857.343,516.464L854,516.07L848.471,512.711L846.008,517.988L851.035,522.086L846.687,524.955L845.128,527.751L849.426,529.814L848.245,534.416L850.658,540.126L851.738,546.341L850.758,549.091L846.008,549.002L837.387,550.553L837.789,556.19L834.07,560.591L824.017,565.59L816.2,574.27L810.947,578.904L804.011,583.694L803.986,587.039L800.517,588.838L794.209,591.445L790.967,591.826L788.856,597.345L790.313,606.73L790.69,612.683L787.725,619.474L787.699,631.568L784.08,631.917L780.914,637.315L783.025,639.65L776.666,641.661L774.329,646.453L771.514,648.482L764.904,641.888L761.687,631.977L758.998,624.807L756.56,621.442L752.84,614.574L751.106,605.598L749.899,601.098L743.541,591.163L740.65,577.017L738.564,567.593L738.59,558.6L737.232,551.606L727.079,556.076L722.153,555.191L713.054,546.099L716.397,543.366L714.336,540.396L706.143,533.952L710.792,528.841L726.174,528.867L724.766,522.268L720.846,518.342L720.067,512.355L715.492,508.849L723.183,500.606L731.301,501.207L738.59,492.876L742.963,484.746L749.749,476.615L749.648,470.791L755.579,466.027L749.95,461.935L747.537,456.292L745.049,448.934L748.492,445.276L759.073,447.344L766.864,446.081Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(78, 184, 193)", + "ariaRoleDescription": "geoshape", + "description": "id: 372", + "shape": "M186.92,256.168L188.077,264.554L182.799,274.852L170.408,281.545L160.531,279.846L166.186,267.912L162.541,256.008L172.042,246.638L177.32,240.967L178.752,247.475L177.32,253.899L181.642,253.717Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(81, 186, 193)", + "ariaRoleDescription": "geoshape", + "description": "id: 364", + "shape": "M606.641,424.131L612.774,422.437L617.725,417.391L622.4,417.646L625.466,415.996L630.417,416.821L638.158,421.291L643.713,422.259L651.705,429.994L656.907,430.303L657.511,437.583L654.671,448.204L652.76,454.336L655.801,455.57L652.811,460.134L655.098,466.753L655.651,471.971L660.929,473.356L661.507,478.597L655.173,485.932L658.616,490.143L661.431,494.967L668.117,498.462L668.293,505.409L671.635,506.686L672.213,510.293L662.16,514.32L659.521,523.326L646.377,520.988L638.761,519.207L630.895,518.211L627.929,508.65L624.586,507.257L619.208,508.663L612.171,512.447L603.651,509.856L596.588,503.824L589.878,501.582L585.203,494.05L580.051,483.353L576.306,484.664L571.857,481.986L569.243,485.141L565.398,480.89L565.323,476.574L563.086,476.574L564.242,470.652L560.648,464.39L552.103,459.838L547.252,451.875L548.886,445.276L552.379,442.336L551.851,437.336L547.277,434.756L542.753,424.383L538.933,417.331L540.315,414.582L538.129,404.294L542.904,401.719L544.01,405.135L547.554,409.292L552.329,410.475L554.867,410.217L563.086,403.575L565.7,402.9L567.761,405.563L565.373,410.005L569.721,414.673L571.455,414.236L573.667,420.77L580.277,422.601L585.128,426.988L595.055,428.493L605.963,426.19Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(80, 185, 193)", + "ariaRoleDescription": "geoshape", + "description": "id: 368", + "shape": "M565.122,484.746L560.422,484.077L555.295,491.781L542.326,491.145L522.622,474.904L512.242,469.165L503.822,466.935L501.007,456.816L516.464,448.075L519.103,437.758L518.45,431.463L522.27,429.317L525.839,423.864L528.83,422.497L536.973,423.641L539.411,425.864L542.753,424.383L547.277,434.756L551.851,437.336L552.379,442.336L548.886,445.276L547.252,451.875L552.103,459.838L560.648,464.39L564.242,470.652L563.086,476.574L565.323,476.574L565.398,480.89L569.243,485.141Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(85, 188, 192)", + "ariaRoleDescription": "geoshape", + "description": "id: 352", + "shape": "M99.935,125.851L90.762,123.541L71.283,118.536L78.145,111.454L62.939,103.479L75.305,100.293L75.003,95.385L60.351,91.482L65.076,80.325L75.657,77.763L86.539,89.417L97.145,80.09L105.917,84.967L117.302,75.721L128.888,76.965L127.28,88.121L135.172,99.591L126.099,112.083L105.967,123.008Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(77, 184, 193)", + "ariaRoleDescription": "geoshape", + "description": "id: 376", + "shape": "M478.337,465.006L475.824,463.857L474.366,469.359L476.101,470.277L474.316,471.402L474.015,473.563L477.307,472.456L477.483,475.636L473.989,488.556L469.415,474.656L471.426,471.971L470.948,471.499L472.808,467.66L474.216,461.415L475.221,459.316L475.422,459.232L477.759,459.246L478.388,457.778L480.273,457.665L480.373,461.077L479.418,462.342L479.569,462.398Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(75, 183, 193)", + "ariaRoleDescription": "geoshape", + "description": "id: 380", + "shape": "M335.607,429.185L330.254,425.908L326.71,424.961L316.984,420.501L317.939,415.951L326.107,416.761L333.245,415.8L338.548,415.034L336.034,421.991L337.065,424.709ZM291.675,408.988L289.036,406.615L288.759,395.653L287.151,390.387L290.996,390.856L294.49,387.989L298.662,394.535L297.681,406.569L294.515,405.99ZM326.584,336.627L325.805,341.601L327.489,345.855L321.935,344.401L316.255,347.945L316.632,352.853L315.777,355.648L318.064,360.621L324.624,365.503L328.143,373.41L335.909,381.022L341.363,380.975L343.072,383.037L341.111,384.903L347.369,388.272L352.497,391.06L358.478,395.854L359.207,397.573L357.9,400.827L354.03,396.567L347.947,395.063L345.032,400.966L350.059,404.325L349.229,409.034L346.314,409.565L342.594,417.196L339.679,417.885L339.704,415.169L341.136,410.384L342.644,408.472L339.93,403.253L337.794,398.67L334.903,397.527L332.843,393.571L328.344,391.903L325.328,388.177L320.15,387.58L314.697,383.369L308.313,377.261L303.563,371.799L301.401,362.281L297.933,361.164L292.253,357.95L289.036,359.271L284.989,363.771L282.099,364.475L282.903,360.276L279.108,359.04L277.299,351.45L279.737,348.433L277.676,344.689L277.952,341.856L280.968,343.995L284.336,343.52L288.257,340.118L289.463,341.72L292.781,341.396L294.289,337.313L299.466,338.598L302.532,336.884L303.085,332.716L307.333,334.166L308.137,332.214L315.023,330.446L316.581,333.994Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(72, 182, 194)", + "ariaRoleDescription": "geoshape", + "description": "id: 388", + "shape": "M-308.803,578.68L-312.724,577.501L-316.72,574.83L-315.865,573.149L-312.95,572.638L-311.341,572.887L-306.641,573.548L-302.947,575.315L-301.791,577.315L-306.692,577.452Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(68, 179, 194)", + "ariaRoleDescription": "geoshape", + "description": "id: 400", + "shape": "M479.569,462.398L487.335,465.677L501.007,456.816L503.822,466.935L502.49,468.176L488.516,472.289L495.478,480.437L493.166,481.821L492.01,484.514L486.682,485.632L485.023,488.529L482.007,490.997L474.216,489.723L473.989,488.556L477.483,475.636L477.307,472.456L478.337,470.055L478.337,465.006Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(71, 181, 194)", + "ariaRoleDescription": "geoshape", + "description": "id: 392", + "shape": "M1158.813,462.441L1154.264,460.078L1154.314,456.108L1158.185,451.105L1162.156,452.074L1165.021,448.533L1170.148,450.349L1171.028,453.241L1167.107,458.3L1164.242,455.627L1160.648,457.566ZM1142.552,476.202L1139.159,473.037L1140.893,465.621L1136.47,463.212L1133.63,457.509L1140.24,454.932L1143.884,449.649L1150.921,445.262L1156.023,439.442L1169.922,436.87L1177.386,438.629L1184.7,423.21L1189.35,427.386L1199.604,418.604L1203.575,415.169L1207.948,404.202L1206.767,393.96L1209.708,388.115L1217.122,386.416L1220.942,399.179L1220.716,406.524L1214.282,415.53L1214.382,424.635L1211.768,431.595L1212.975,435.923L1209.331,441.961L1200.408,445.966L1188.143,446.483L1178.191,456.108L1173.516,452.886L1173.214,446.569L1161.075,448.433L1152.806,452.416L1144.638,452.573L1151.726,458.738L1147.051,472.774ZM1207.27,384.634L1206.289,375.29L1209.758,367.945L1217.197,367.409L1219.233,353.969L1221.319,346.26L1229.512,356.543L1234.866,359.815L1239.767,361.887L1244.718,357.768L1246.276,368.627L1235.921,371.25L1229.789,380.657L1218.831,374.199L1215.011,384.492Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(69, 180, 194)", + "ariaRoleDescription": "geoshape", + "description": "id: 398", + "shape": "M725.596,378.107L721.6,379.845L712.376,386.369L709.335,392.979L706.721,393.041L704.811,388.664L695.939,388.366L694.506,380.72L691.113,380.657L691.641,371.153L683.272,364.148L671.309,364.899L663.115,366.302L656.455,357.553L650.75,353.853L639.917,346.766L638.611,345.906L620.64,351.768L620.917,387.061L617.348,387.518L612.447,380.195L607.722,377.548L599.805,379.511L596.714,382.641L596.337,380.355L598.046,376.428L596.714,373.121L588.621,369.859L585.479,361.213L581.609,358.743L581.383,355.565L588.169,356.493L588.445,349.289L594.376,347.676L600.484,349.155L601.74,339.401L600.484,333.131L593.497,333.614L587.565,331.123L579.498,335.613L572.988,337.742L569.419,336.094L570.148,330.845L565.7,323.948L560.497,324.247L554.591,317.158L558.612,309.125L556.576,306.953L562.156,295.045L569.319,301.354L570.199,293.391L584.6,281.278L595.507,280.992L610.889,288.734L619.158,293.204L626.572,288.546L637.63,288.32L646.578,294.042L648.588,290.778L658.415,291.245L660.15,285.984L648.84,278.257L655.55,272.704L654.243,269.573L660.929,266.579L655.902,258.567L659.094,254.522L685.207,250.383L688.625,247.414L706.093,242.947L712.376,237.877L724.917,240.512L727.129,253.012L734.417,250.099L743.365,254.18L742.787,260.617L749.497,259.961L766.99,248.738L764.426,252.487L773.348,261.629L788.931,290.515L792.651,284.698L802.277,291.096L812.305,288.264L816.175,290.253L819.518,296.602L824.394,298.725L827.384,303.33L836.382,301.885L840.077,308.456L834.748,315.518L828.968,316.517L828.641,326.962L824.745,331.608L810.897,328.236L805.871,346.378L802.277,348.584L788.453,352.536L794.737,369.405L789.961,371.896L790.514,377.308L786.217,375.916L782.698,372.508L772.343,371.508L760.757,371.25L758.244,372.299L748.291,368.286L744.32,370.264L743.239,375.884L731.753,372.605L727.154,373.957Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(67, 179, 194)", + "ariaRoleDescription": "geoshape", + "description": "id: 404", + "shape": "M520.511,716.028L515.61,718.818L513.901,721.727L511.287,722.248L510.281,727.17L508.045,729.987L506.687,734.643L503.873,736.954L493.844,729.964L493.367,725.904L468.058,711.678L466.877,710.91L466.801,703.501L468.812,700.677L472.255,696.056L474.794,690.962L471.702,682.943L470.898,679.439L467.581,674.571L471.878,670.399L476.603,665.772L480.248,666.947L480.248,670.885L482.635,673.185L487.486,673.185L496.333,679.131L498.519,679.202L500.153,679.013L501.711,679.818L506.361,680.374L508.422,677.45L514.805,674.524L517.62,676.893L522.396,676.893L516.288,684.824L516.364,710.26Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(64, 176, 194)", + "ariaRoleDescription": "geoshape", + "description": "id: 417", + "shape": "M725.596,378.107L727.154,373.957L731.753,372.605L743.239,375.884L744.32,370.264L748.291,368.286L758.244,372.299L760.757,371.25L772.343,371.508L782.698,372.508L786.217,375.916L790.514,377.308L789.534,379.447L778.526,384.524L776.038,388.209L767.09,389.307L764.451,395.203L757.062,393.96L752.237,395.761L745.551,400.073L746.532,402.195L744.546,404.279L731.326,405.639L722.706,402.701L715.14,403.406L715.794,398.176L723.409,399.688L725.948,396.877L731.276,397.774L740.198,391.169L731.929,386.29L726.953,388.601L721.801,385.092L727.682,379.033Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(182, 226, 182)", + "ariaRoleDescription": "geoshape", + "description": "id: 116", + "shape": "M946.364,618.543L944.705,609.904L949.179,603.917L958.202,602.551L964.761,603.575L970.517,606.402L973.684,601.44L979.866,604.087L981.475,608.883L980.62,617.467L968.883,622.962L971.949,627.276L964.611,627.793L958.579,630.655L952.723,629.609L949.908,625.915Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(66, 177, 194)", + "ariaRoleDescription": "geoshape", + "description": "id: 410", + "shape": "M1126.241,411.625L1132.273,422.08L1133.982,427.755L1134.057,437.729L1131.418,442.437L1125.085,444.067L1119.505,447.588L1113.222,448.318L1112.443,443.693L1113.725,437.278L1110.658,428.271L1115.836,426.81L1111.061,419.292L1111.488,418.484L1114.604,418.798L1117.319,414.808L1122.27,414.371L1125.236,413.784Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(239, 249, 189)", + "ariaRoleDescription": "geoshape", + "description": "id: −99", + "shape": "M373.935,381.959L373.457,378.554L371.799,377.596L370.316,375.05L371.623,372.927L373.282,372.234L374.237,369.065L375.493,368.53L376.499,369.891L377.805,370.474L378.71,371.992L379.866,372.444L381.224,374.215L382.204,374.15L381.425,376.46L380.595,377.596L380.821,378.299L379.263,378.666L375.141,380.116L374.815,382.038Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(65, 176, 194)", + "ariaRoleDescription": "geoshape", + "description": "id: 414", + "shape": "M565.122,484.746L566.579,488.298L565.951,490.13L568.188,496.138L563.262,496.353L561.528,492.552L555.295,491.781L560.422,484.077Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(64, 175, 194)", + "ariaRoleDescription": "geoshape", + "description": "id: 418", + "shape": "M964.761,603.575L967.023,600.329L967.325,594.208L961.695,587.877L961.243,580.676L955.94,574.718L950.662,574.22L949.254,576.769L945.158,576.98L943.072,575.688L935.708,580.069L935.557,573.485L937.266,565.702L932.541,565.364L932.139,560.905L929.123,558.613L930.606,555.861L936.562,550.997L937.19,552.76L940.91,552.963L939.855,544.363L943.474,543.264L947.545,549.206L950.687,556.013L959.282,556.076L961.997,562.565L957.523,564.511L955.512,567.168L963.882,571.578L969.687,580.267L974.086,586.694L979.364,591.753L981.123,596.88L979.866,604.087L973.684,601.44L970.517,606.402Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(63, 175, 194)", + "ariaRoleDescription": "geoshape", + "description": "id: 422", + "shape": "M480.273,457.665L478.388,457.778L477.759,459.246L475.422,459.232L477.91,452.402L481.379,446.454L481.504,446.153L484.646,446.598L485.777,449.906L481.982,453.085Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(61, 173, 193)", + "ariaRoleDescription": "geoshape", + "description": "id: 430", + "shape": "M176.339,673.777L174.505,673.837L167.317,670.494L160.983,665.166L155.027,661.317L150.327,656.787L151.986,654.537L152.363,652.488L155.529,648.673L158.771,645.378L160.254,645.223L162.089,644.422L165.004,648.744L164.527,651.57L165.909,653.072L167.87,653.108L169.302,650.271L171.263,650.45L170.936,652.5L171.64,655.906L170.132,659.023L172.167,660.949L174.379,661.424L177.345,664.359L177.546,667.125L176.892,668.003Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(60, 172, 193)", + "ariaRoleDescription": "geoshape", + "description": "id: 434", + "shape": "M333.873,540.242L328.922,543.059L325.001,538.907L313.968,535.628L310.901,530.85L305.397,527.284L302.13,528.699L299.642,524.408L299.365,521.105L295.244,515.452L298.008,512.196L297.405,507.284L298.31,502.984L297.782,499.374L299.014,492.889L298.637,489.181L296.375,482.068L299.793,480.191L300.396,476.753L299.642,473.384L304.442,470.221L306.604,467.59L309.997,465.216L310.399,458.837L318.592,461.71L321.533,460.993L327.364,462.37L336.612,466.069L339.88,473.384L346.163,474.96L355.99,478.377L363.429,482.396L366.847,480.3L370.19,476.56L368.557,470.305L370.743,466.292L375.77,462.412L380.595,461.288L390.02,462.988L392.408,466.683L395.022,466.711L397.233,468.12L404.17,469.095L405.879,471.804L403.341,475.719L404.421,479.202L402.637,484.2L404.723,490.672L404.723,518.657L404.723,546.761L404.723,561.698L396.68,561.723L396.605,564.837L368.758,550.565L340.91,536.091Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(171, 222, 183)", + "ariaRoleDescription": "geoshape", + "description": "id: 144", + "shape": "M791.118,662.529L787.8,656.941L786.568,646.823L789.735,635.349L794.561,639.279L797.803,644.255L801.171,651.606L800.115,658.928L797.2,660.925Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(62, 174, 193)", + "ariaRoleDescription": "geoshape", + "description": "id: 426", + "shape": "M423.925,929.211L418.672,923.001L422.391,917.92L426.186,914.784L429.454,913.167L432.495,915.621L434.908,918.028L432.771,921.938L431.59,924.556L427.694,925.826L426.413,928.402Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(58, 171, 193)", + "ariaRoleDescription": "geoshape", + "description": "id: 440", + "shape": "M388.889,250.687L388.311,247.638L389.065,244.324L385.974,242.391L378.66,240.263L377.177,229.865L385.169,226.022L396.881,226.832L403.743,225.574L404.723,228.192L408.443,228.998L415.153,235.04L415.807,240.532L410.076,244.447L408.468,251.234L400.878,255.727L394.142,255.647L392.458,251.982Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(58, 170, 193)", + "ariaRoleDescription": "geoshape", + "description": "id: 442", + "shape": "M272.373,298.615L273.78,301.06L273.378,305.79L271.367,306.027L269.809,305.081L270.563,299.02Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(61, 173, 193)", + "ariaRoleDescription": "geoshape", + "description": "id: 428", + "shape": "M377.177,229.865L377.428,220.361L380.847,212.291L387.431,207.838L392.986,217.527L398.59,217.267L399.922,207.328L405.879,204.995L408.92,206.618L414.927,211.456L420.682,211.478L424.05,214.458L424.653,220.685L426.89,228.128L419.401,232.943L415.153,235.04L408.443,228.998L404.723,228.192L403.743,225.574L396.881,226.832L385.169,226.022Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(43, 156, 191)", + "ariaRoleDescription": "geoshape", + "description": "id: 504", + "shape": "M215.044,441.701L217.658,447.158L218.085,452.288L220.498,461.119L222.333,462.876L221.051,466.097L211.928,467.479L208.761,470.527L204.715,471.235L204.413,477.29L196.27,480.506L193.581,484.541L187.875,486.708L180.914,487.932L169.629,493.834L169.679,503.224L168.624,503.224L168.799,507.443L164.477,507.695L162.215,509.472L159.048,509.472L156.535,508.465L150.653,509.3L148.366,515.373L146.205,515.952L142.913,525.697L133.211,533.952L130.899,544.427L128.034,547.806L127.204,550.514L111.496,551.124L111.371,551.111L111.697,547.628L114.361,545.576L116.649,541.639L116.196,539.074L118.609,533.706L122.505,528.841L124.842,527.608L126.702,523.13L126.853,519.011L129.366,514.214L134.015,511.364L138.464,503.358L138.59,503.251L142.083,500.217L148.593,499.347L154.072,493.915L157.59,491.781L163.421,485.087L161.662,475.001L164.326,467.953L165.256,463.591L169.755,457.976L176.742,454.151L181.919,450.677L186.594,441.888L188.78,436.637L193.932,436.666L198.13,440.312L204.765,439.717L212.003,441.614Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(44, 158, 192)", + "ariaRoleDescription": "geoshape", + "description": "id: 498", + "shape": "M416.033,318.97L417.692,317.425L422.341,316.392L427.468,319.661L430.359,320.051L433.5,322.858L432.998,326.368L435.536,328.062L436.541,332.353L438.979,334.942L438.502,336.455L439.809,337.485L437.949,338.238L433.827,337.93L433.148,336.541L431.691,337.348L432.193,339.162L430.283,342.366L429.052,345.804L427.292,346.884L426.036,342.315L426.79,338.016L426.563,333.562L422.542,327.451L420.305,323.086L418.144,319.997Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(56, 168, 193)", + "ariaRoleDescription": "geoshape", + "description": "id: 450", + "shape": "M547.202,889.265L543.181,887.288L537.651,884.534L535.716,880.475L535.264,873.696L532.801,867.642L532.147,862.21L533.404,856.792L536.621,855.499L536.646,853.006L539.989,847.368L540.617,842.635L538.983,839.132L537.676,834.492L537.098,827.738L539.536,823.646L540.491,819.023L543.96,818.753L547.855,817.265L550.444,815.95L553.51,815.864L557.481,811.732L563.237,807.281L565.323,803.659L564.368,800.579L567.333,801.443L571.179,796.462L571.33,792.148L573.642,788.956L576.055,792.027L577.914,795.067L579.649,799.801L580.78,808.466L582.589,811.842L581.885,815.324L580.654,817.461L578.291,813.202L576.959,815.349L578.291,820.735L577.688,823.819L575.753,825.511L575.301,831.707L572.561,840.294L569.118,850.518L564.795,864.737L562.131,875.283L558.989,884.169L553.309,885.995Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(47, 161, 192)", + "ariaRoleDescription": "geoshape", + "description": "id: 484", + "shape": "M-447.989,517.2L-450.679,523.978L-451.91,529.516L-452.413,539.716L-453.091,543.417L-451.885,547.526L-449.723,551.187L-448.316,556.985L-443.692,562.527L-442.058,566.755L-439.318,570.393L-431.904,572.352L-429.039,575.427L-422.907,573.373L-417.578,572.626L-412.351,571.304L-407.952,570.043L-403.529,567.03L-401.845,562.703L-401.292,556.455L-400.086,554.267L-395.361,552.304L-387.972,550.565L-381.789,550.832L-377.541,550.197L-375.883,551.784L-376.109,555.393L-379.854,559.823L-381.513,564.348L-380.231,565.64L-381.286,568.831L-383.02,574.581L-384.805,572.688L-386.263,572.813L-387.595,572.912L-390.083,577.353L-391.365,576.483L-392.194,576.819L-392.144,577.899L-398.603,577.812L-405.112,577.824L-405.138,581.951L-408.279,581.963L-405.69,584.411L-403.102,586.09L-402.323,587.668L-401.192,588.111L-401.368,590.585L-410.34,590.61L-413.683,596.512L-412.703,597.871L-413.507,599.559L-413.683,601.66L-421.574,593.877L-425.194,591.532L-430.874,589.625L-434.794,590.155L-440.399,592.895L-443.918,593.607L-448.844,591.691L-454.071,590.314L-460.606,586.977L-465.834,585.954L-473.725,582.557L-479.581,579.065L-481.341,577.104L-485.236,576.669L-492.374,574.344L-495.29,570.98L-502.804,566.792L-506.298,562.113L-507.957,558.487L-505.619,557.768L-506.348,555.633L-504.74,553.698L-504.714,551.111L-507.052,547.73L-507.68,544.733L-510.043,540.921L-516.175,533.371L-523.212,527.387L-526.605,522.595L-532.587,519.443L-533.869,517.542L-532.813,512.737L-536.382,510.914L-540.504,507.111L-542.238,501.622L-545.983,500.98L-550.054,496.81L-553.322,492.93L-553.623,490.441L-557.368,484.378L-559.856,478.185L-559.731,475.056L-564.782,471.818L-567.12,472.165L-571.116,469.902L-572.222,473.231L-571.066,477.153L-570.387,483.244L-567.999,486.558L-562.822,492.079L-561.666,493.956L-560.61,494.522L-559.68,497.254L-558.449,497.146L-557.041,502.25L-554.905,504.251L-553.422,507.045L-549.049,511.02L-546.737,518.263L-544.651,521.654L-542.716,525.268L-542.339,529.308L-538.971,529.567L-536.156,533.035L-533.643,536.439L-533.793,537.802L-536.734,540.588L-537.965,540.549L-539.825,535.937L-544.374,531.587L-549.426,527.881L-552.995,525.931L-552.769,520.294L-553.824,516.096L-557.142,513.687L-561.942,510.2L-562.872,511.205L-564.631,509.167L-568.929,507.27L-573.051,502.704L-572.548,502.116L-569.658,502.557L-567.069,499.601L-566.818,496.03L-572.197,490.333L-576.293,488.122L-578.857,483.094L-581.445,477.772L-584.688,471.249L-587.528,463.843L-579.586,463.198L-570.714,462.3L-571.367,463.928L-560.836,467.939L-544.902,473.716L-531.029,473.66L-525.474,473.66L-525.474,470.277L-513.385,470.277L-510.822,473.19L-507.253,475.76L-503.106,479.339L-500.794,483.572L-499.06,488L-495.44,490.414L-489.66,492.808L-485.262,486.476L-479.556,486.327L-474.63,489.533L-471.137,494.994L-468.724,499.641L-464.602,504.144L-463.069,509.644L-461.109,513.305L-455.655,515.728L-450.704,517.437Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(34, 68, 153)", + "ariaRoleDescription": "geoshape", + "description": "id: 807", + "shape": "M373.935,381.959L374.815,382.038L375.141,380.116L379.263,378.666L380.821,378.299L383.209,377.74L386.426,377.596L389.92,380.609L390.422,386.794L389.09,387.109L387.934,388.727L384.164,388.538L381.5,390.559L376.926,391.388L374.036,389.134L373.055,385.139Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(52, 165, 193)", + "ariaRoleDescription": "geoshape", + "description": "id: 466", + "shape": "M145.225,601.098L147.562,599.791L148.743,595.532L150.955,595.361L155.831,597.382L159.777,595.949L162.466,596.427L163.522,594.821L191.52,594.711L193.078,589.625L191.872,588.727L188.504,556.947L185.136,524.252L195.817,524.121L219.367,540.78L242.917,557.175L244.575,560.666L248.923,562.791L252.166,563.997L252.241,568.706L259.982,567.981L260.007,584.892L256.187,589.749L255.584,594.22L249.376,595.373L239.85,595.998L237.287,598.569L232.813,598.85L228.34,598.887L226.58,597.492L222.735,598.52L216.225,601.526L214.893,603.77L209.465,606.998L208.51,608.846L205.594,610.304L202.226,609.345L200.316,611.093L199.286,616.003L193.731,621.925L193.907,624.337L191.997,627.348L192.45,631.472L189.584,632.529L187.951,633.417L186.87,630.379L184.859,631.184L183.653,631.052L182.371,633.117L176.968,633.057L175.032,631.989L174.128,632.637L171.991,630.595L172.368,628.479L171.489,627.649L170.006,628.347L170.282,626.036L171.715,624.204L168.85,621.213L168.02,619.244L166.462,617.672L165.08,617.491L163.396,618.495L161.134,619.45L159.224,620.996L156.233,620.416L154.298,618.604L153.142,618.374L151.307,619.317L150.201,619.329L149.799,616.717L150.126,614.489L149.522,611.712L146.909,609.697L145.551,605.586Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(187, 228, 181)", + "ariaRoleDescription": "geoshape", + "description": "id: 104", + "shape": "M918.215,634.581L917.536,629.309L919.698,623.867L917.335,619.643L917.913,611.846L915.073,608.129L912.811,599.51L911.555,590.364L908.514,584.324L903.914,587.988L895.998,593.165L892.077,592.514L887.754,590.819L890.167,581.79L888.709,574.917L883.23,566.417L884.084,563.746L879.988,562.791L875.037,556.733L874.584,550.705L877.022,551.847L877.173,546.456L880.616,544.669L879.862,541.459L881.445,538.882L881.722,530.992L887.176,532.738L890.292,526.426L890.644,522.673L894.49,516.175L894.288,511.721L903.311,506.314L908.313,507.735L907.735,502.891L910.173,501.448L909.67,498.448L913.741,497.858L916.079,502.517L919.12,504.397L919.321,510.398L919.044,516.819L912.434,523.274L911.605,532.376L918.969,531.109L920.628,538.124L925.051,539.6L923.015,545.869L928.193,548.697L931.234,550.083L936.336,547.895L936.562,550.997L930.606,555.861L929.123,558.613L925.127,560.339L921.055,563.557L916.129,563.884L912.937,571.878L909.997,573.211L913.364,579.66L917.813,584.991L920.653,589.798L918.115,596.108L915.702,597.443L917.361,601.062L922.01,606.791L922.814,610.802L922.714,614.125L925.428,620.645L921.608,627.288Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(44, 157, 192)", + "ariaRoleDescription": "geoshape", + "description": "id: 499", + "shape": "M363.957,381.022L361.997,377.964L358.981,376.076L359.76,374.472L360.79,369.227L363.052,366.986L364.359,366.123L366.219,367.766L367.224,369.097L369.512,370.118L372.176,372.105L371.623,372.927L370.316,375.05L368.431,375.884L367.978,374.102L364.963,378.762L365.415,381.753Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(44, 158, 192)", + "ariaRoleDescription": "geoshape", + "description": "id: 496", + "shape": "M842.816,307.569L850.155,305.718L863.475,296.38L874.107,291.208L880.189,294.599L887.452,294.748L892.127,299.848L899.089,300.252L909.192,302.965L915.978,295.398L913.138,288.903L920.377,277.278L928.193,281.945L934.526,283.257L942.745,286.135L944.077,294.432L953.979,299.02L960.589,297.009L969.411,295.564L976.423,297.009L983.259,302.233L987.482,307.732L993.966,307.623L1002.762,309.36L1009.171,306.717L1018.37,304.935L1028.599,297.304L1032.771,298.467L1036.441,302.105L1044.76,301.207L1041.367,309.324L1036.416,319.874L1038.225,324.124L1042.171,322.822L1049.057,324.44L1054.436,320.581L1060.041,323.913L1066.349,331.123L1065.595,334.752L1060.091,333.614L1049.937,334.959L1045.036,337.845L1039.909,344.503L1029.278,348.365L1022.316,353.603L1015.128,351.601L1011.207,350.714L1007.538,357.057L1009.775,360.802L1010.906,364L1006.03,367.246L1001.003,372.363L992.86,375.707L982.38,376.06L971.12,379.336L962.977,384.381L959.886,381.467L951.441,381.483L941.111,375.756L934.225,374.343L924.951,375.659L910.524,373.523L902.834,373.748L898.737,368.075L895.545,359.172L891.247,358.082L882.803,351.968L873.403,350.58L865.109,348.886L862.596,344.57L865.285,332.768L860.459,324.475L850.507,320.564L844.651,315Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(43, 155, 191)", + "ariaRoleDescription": "geoshape", + "description": "id: 508", + "shape": "M471.451,785.25L476.704,784.671L485.098,786.674L486.933,785.781L491.784,785.588L494.272,783.454L498.469,783.575L506.084,780.805L511.639,776.694L512.77,779.879L512.493,786.963L513.348,793.238L513.624,804.451L514.856,807.989L512.77,813.153L510.055,818.187L505.607,822.695L499.223,825.474L491.356,829.027L483.49,836.91L480.8,838.257L475.925,843.513L473.034,845.219L472.456,850.518L475.774,856.183L477.131,860.579L477.232,862.835L478.463,862.465L478.262,869.875L477.131,873.413L478.765,874.715L477.734,877.882L474.819,880.618L469.063,883.205L460.669,887.38L457.603,890.248L458.206,893.507L459.99,894.033L459.387,898.139L454.084,898.073L453.481,894.626L452.45,891.14L451.872,888.361L453.104,879.774L451.294,874.354L447.952,863.677L455.29,855.144L457.15,849.761L458.206,849.093L458.985,844.717L457.854,842.522L458.156,836.997L459.513,831.906L459.513,822.646L455.869,820.304L452.551,819.774L451.043,817.978L447.826,816.442L441.995,816.589L441.543,813.889L440.889,808.735L462.076,802.794L466.073,806.256L468.008,805.597L470.772,807.415L471.175,810.312L469.692,813.668L470.219,818.79L474.769,823.288L476.905,818.236L479.921,816.712L479.318,807.403L476.402,802.197L473.889,799.874L471.451,799.984L469.516,790.672Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(49, 162, 192)", + "ariaRoleDescription": "geoshape", + "description": "id: 478", + "shape": "M145.225,601.098L140.6,596.145L136.378,590.806L131.753,588.875L128.411,586.743L124.515,586.817L121.122,588.407L117.654,587.779L115.241,590.105L114.638,586.188L116.598,582.594L117.453,575.688L116.699,568.419L115.844,564.737L116.548,561.031L114.738,557.49L111.069,554.267L112.577,551.771L139.922,551.822L138.59,540.947L140.299,537.044L146.858,536.362L146.632,516.701L169.528,517.108L169.553,505.276L195.817,524.121L185.136,524.252L188.504,556.947L191.872,588.727L193.078,589.625L191.52,594.711L163.522,594.821L162.466,596.427L159.777,595.949L155.831,597.382L150.955,595.361L148.743,595.532L147.562,599.791Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(55, 167, 193)", + "ariaRoleDescription": "geoshape", + "description": "id: 454", + "shape": "M471.451,785.25L469.516,790.672L471.451,799.984L473.889,799.874L476.402,802.197L479.318,807.403L479.921,816.712L476.905,818.236L474.769,823.288L470.219,818.79L469.692,813.668L471.175,810.312L470.772,807.415L468.008,805.597L466.073,806.256L462.076,802.794L458.382,800.932L460.518,794.267L462.705,791.785L461.373,785.865L462.78,780.095L463.961,778.172L462.177,772.158L458.884,768.996L465.746,770.313L467.128,772.278L469.516,775.577Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(54, 167, 193)", + "ariaRoleDescription": "geoshape", + "description": "id: 458", + "shape": "M943.273,660.747L944.881,661.413L949.003,665.641L951.918,670.34L952.321,675.057L951.592,678.243L952.27,680.647L952.773,684.776L955.236,686.705L957.975,692.889L957.85,695.241L952.899,695.714L946.289,690.536L938.02,684.989L937.216,681.428L933.169,676.751L932.214,670.956L929.701,667.137L930.455,662.019L928.922,659.047L930.128,657.798L935.833,660.866L936.386,664.477L940.986,663.634ZM1053.154,675.365L1047.097,674.18L1039.08,674.18L1036.667,682.138L1033.978,684.564L1030.384,694.283L1024.704,695.773L1018.094,693.811L1014.751,694.425L1010.679,697.959L1006.231,697.451L1001.732,698.881L996.957,694.934L995.775,690.264L1000.903,692.652L1006.281,691.352L1007.689,685.439L1010.679,684.114L1019.049,682.599L1024.05,677.071L1027.493,672.64L1030.66,676.277L1032.118,673.884L1035.46,674.109L1035.863,669.64L1036.189,666.187L1041.568,661.306L1045.086,655.811L1047.901,655.787L1051.495,659.344L1051.822,662.399L1056.421,664.359L1062.227,666.46L1061.724,669.213L1057.05,669.557L1058.306,672.983Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(42, 153, 190)", + "ariaRoleDescription": "geoshape", + "description": "id: 516", + "shape": "M344.303,912.601L339.101,906.622L336.386,900.869L334.828,893.27L333.119,887.655L330.782,875.826L330.606,866.733L329.726,862.618L327.012,859.523L323.393,853.322L319.723,844.403L318.215,839.757L312.535,832.564L312.108,826.946L315.476,825.548L319.648,824.313L324.172,824.523L328.344,827.825L329.399,827.317L357.699,826.996L362.525,830.515L379.439,831.546L392.257,828.556L397.987,826.897L402.511,827.317L405.251,828.965L405.301,829.572L401.38,831.223L399.244,831.248L394.795,834.119L392.131,831.099L381.374,833.671L376.172,833.908L375.971,860.388L369.084,860.643L369.084,882.84L369.084,911.687L362.851,915.756L359.107,916.337L354.708,914.825L351.567,914.245L350.385,910.854L347.646,908.682Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(39, 146, 189)", + "ariaRoleDescription": "geoshape", + "description": "id: 540", + "shape": "M1394.259,864.801L1390.414,862.758L1385.412,859.37L1380.913,855.398L1376.289,850.139L1375.334,847.607L1378.325,847.721L1382.246,850.253L1385.312,852.778L1387.549,854.878L1393.279,859.523L1396.898,862.988Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(37, 140, 187)", + "ariaRoleDescription": "geoshape", + "description": "id: 562", + "shape": "M245.229,620.307L245.38,615.409L237.337,613.786L237.111,610.316L233.19,605.623L232.26,602.343L232.813,598.85L237.287,598.569L239.85,595.998L249.376,595.373L255.584,594.22L256.187,589.749L260.007,584.892L259.982,567.981L269.834,564.687L290.041,550.032L313.968,535.628L325.001,538.907L328.922,543.059L333.873,540.242L335.582,551.961L338.196,553.9L338.296,556.278L341.212,558.84L339.704,562.037L337.015,577.017L336.638,586.534L327.741,593.386L324.725,602.905L327.615,605.574L327.615,610.195L332.089,610.353L331.385,613.738L329.424,614.15L329.198,616.426L327.891,616.584L323.166,608.737L321.533,608.445L316.079,612.465L310.675,610.365L306.905,609.952L304.895,610.96L300.798,610.741L296.676,613.798L293.132,613.968L284.663,610.268L281.37,612.028L277.801,611.907L275.187,609.199L268.175,606.511L260.686,607.363L258.876,608.919L257.896,613.047L255.885,615.93L255.408,622.299L250.08,618.192L247.566,618.217Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(36, 138, 186)", + "ariaRoleDescription": "geoshape", + "description": "id: 566", + "shape": "M289.538,670.921L282.275,673.446L279.636,673.078L276.947,674.642L271.367,674.488L267.622,670.102L265.335,665.035L260.384,660.414L255.131,660.497L248.974,660.485L249.376,649.15L249.2,644.661L250.507,640.213L252.668,638.046L256.061,633.657L255.332,631.749L256.69,628.888L255.131,624.674L255.408,622.299L255.885,615.93L257.896,613.047L258.876,608.919L260.686,607.363L268.175,606.511L275.187,609.199L277.801,611.907L281.37,612.028L284.663,610.268L293.132,613.968L296.676,613.798L300.798,610.741L304.895,610.96L306.905,609.952L310.675,610.365L316.079,612.465L321.533,608.445L323.166,608.737L327.891,616.584L329.198,616.426L331.963,619.268L331.184,620.561L330.832,622.926L324.951,628.431L323.091,632.961L322.111,636.644L320.628,638.225L319.22,643.179L315.501,646.083L314.42,649.651L312.837,652.488L312.183,655.418L307.383,657.786L303.462,654.894L300.823,655.013L296.676,659.118L294.64,659.189L291.323,665.961Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(37, 141, 187)", + "ariaRoleDescription": "geoshape", + "description": "id: 558", + "shape": "M-368.192,626.373L-370.605,624.132L-373.872,621.261L-375.405,618.845L-378.346,616.608L-381.864,613.374L-381.085,612.27L-379.929,613.338L-379.401,612.841L-377.24,612.537L-376.36,610.899L-375.33,610.839L-375.481,607.314L-373.847,607.144L-372.389,607.193L-370.881,605.269L-368.82,606.73L-368.091,605.83L-366.81,604.977L-364.372,602.99L-364.271,601.514L-363.593,601.575L-362.688,599.852L-361.959,599.645L-360.778,600.744L-359.37,601.074L-357.837,600.146L-356.078,600.146L-353.64,599.204L-352.685,598.214L-350.297,598.361L-350.901,599.058L-351.252,600.671L-350.524,603.307L-352.132,605.769L-352.886,608.652L-353.112,611.822L-352.735,613.665L-352.559,616.886L-353.64,617.588L-354.293,620.645L-353.816,622.528L-355.223,624.349L-354.922,626.265L-353.841,627.432L-355.5,628.948L-357.561,628.467L-358.717,627.011L-360.954,626.409L-362.537,627.336L-367.136,625.458Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(41, 149, 189)", + "ariaRoleDescription": "geoshape", + "description": "id: 528", + "shape": "M278.404,260.716L279.686,264.672L277.952,275.218L276.193,279.483L271.996,279.483L273.177,291.189L269.331,288.602L264.908,283.731L258.449,286.059L253.322,285.171L256.916,282.097L263.048,265.282L272.599,260.379Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(35, 135, 185)", + "ariaRoleDescription": "geoshape", + "description": "id: 578", + "shape": "M447.323,19.036L435.435,26.98L429.806,28.769L432.746,14.854L423.799,6.748L412.967,13.657L409.523,28.24L402.863,36.829L395.373,32.162L386.275,33.113L378.509,22.775L374.312,27.975L369.989,28.769L368.959,41.445L355.814,38.384L353.954,48.893L347.244,48.83L342.644,61.918L335.657,81.526L324.825,105.202L327.364,110.77L324.926,117.134L318.014,116.864L313.49,131.586L313.917,151.629L318.366,159.07L316.054,175.832L310.248,185.339L307.182,193.196L302.482,184.827L288.709,200.473L279.385,203.567L269.734,196.791L267.245,182.168L265.034,149.121L271.468,139.438L289.89,126.512L303.688,110.112L316.456,86.909L333.245,52.601L344.932,38.481L364.108,13.828L379.439,4.864L390.925,5.947L401.556,-11.466L414.273,-10.522L426.815,-14.823L448.655,0.752L439.658,6.296ZM387.205,-178.633L374.89,-186.149L379.69,-194.652L375.493,-205.478L389.945,-212.445L392.709,-199.543L402.788,-191.948ZM341.287,-157.497L326.258,-176.573L332.591,-188.091L322.136,-197.659L308.539,-227.112L303.11,-256.485L322.136,-270.676L325.956,-256.814L335.909,-257.341L338.548,-270.88L348.802,-272.246L357.599,-258.397L380.595,-230.307L363.027,-216.182L359.132,-191.05L353.024,-184.877L349.707,-158.687ZM390.925,-246.799L370.341,-253.143L369.084,-263.92L359.081,-264.658L351.441,-283.268L373.005,-295.031L383.134,-284.887L390.196,-297.571L407.839,-286.938L421.537,-272.519L411.182,-251.321Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(41, 150, 190)", + "ariaRoleDescription": "geoshape", + "description": "id: 524", + "shape": "M845.38,501.488L844.852,504.89L845.757,509.869L844.952,512.962L839.147,513.094L830.752,511.271L825.349,510.531L821.327,506.54L811.752,505.529L802.654,501.1L796.069,497.227L789.308,494.212L792.022,486.721L796.446,483.066L799.336,481.137L804.941,483.627L811.978,488.869L815.924,490.008L818.261,493.848L823.69,495.424L829.345,498.904L837.237,500.726Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(38, 142, 187)", + "ariaRoleDescription": "geoshape", + "description": "id: 554", + "shape": "M1412.355,1073.266L1405.921,1073.042L1401.397,1069.715L1393.807,1068.997L1392.651,1065.303L1396.395,1057.922L1405.167,1048.243L1409.666,1046.419L1414.692,1042.739L1420.674,1037.706L1424.871,1032.78L1427.962,1025.752L1430.627,1023.397L1431.657,1018.211L1436.558,1013.955L1438.091,1017.867L1439.674,1021.695L1444.651,1017.945L1446.661,1021.852L1446.661,1025.784L1444.073,1030.141L1439.498,1037.124L1435.93,1040.98L1438.518,1045.615L1433.14,1045.73L1427.158,1049.397L1425.273,1055.816L1421.327,1065.863L1415.823,1070.365ZM1453.598,1025.024L1452.392,1022.576L1449.476,1021.238L1453.498,1013.644L1451.21,1008.602L1443.696,1004.977L1443.897,1001.708L1448.948,998.577L1450.13,991.715L1449.803,986.01L1446.963,980.147L1447.164,978.616L1443.821,975.037L1438.342,967.429L1435.402,961.408L1438.016,960.748L1441.811,965.464L1447.239,967.675L1449.2,975.33L1454.277,984.495L1454.402,978.542L1457.569,980.914L1458.6,987.543L1464.229,990.411L1468.954,991.13L1472.925,987.752L1476.469,988.782L1474.785,996.654L1472.649,1001.891L1467.321,1001.708L1465.461,1004.441L1466.114,1008.34L1465.084,1010.036L1462.445,1014.981L1458.977,1021.301Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(42, 154, 191)", + "ariaRoleDescription": "geoshape", + "description": "id: 512", + "shape": "M616.041,579.189L616.066,582.136L612.698,584.176L608.853,583.484L604.178,585.942L600.961,586.361L598.674,581.258L593.22,569.131L614.156,561.723L618.806,546.761L615.614,541.421L615.79,538.368L617.826,535.215L617.851,532.105L621.017,530.591L619.761,529.529L620.339,524.538L623.908,524.499L627.049,529.749L630.945,532.518L636.047,533.526L640.194,534.906L643.336,539.267L645.221,541.779L647.734,542.739L647.709,544.427L645.17,548.913L644.064,551.022L641.124,553.419L638.51,558.525L635.343,558.134L633.886,559.911L632.78,563.683L633.634,568.631L632.981,569.531L629.764,569.506L625.391,572.264L624.712,575.849L623.129,577.402L618.781,577.34ZM622.953,518.408L621.646,515.754L623.656,513.107L624.536,513.779L623.883,516.99Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(34, 133, 185)", + "ariaRoleDescription": "geoshape", + "description": "id: 586", + "shape": "M754.901,424.709L760.053,428.787L762.114,435.442L773.6,438.92L766.864,446.081L759.073,447.344L748.492,445.276L745.049,448.934L747.537,456.292L749.95,461.935L755.579,466.027L749.648,470.791L749.749,476.615L742.963,484.746L738.59,492.876L731.301,501.207L723.183,500.606L715.492,508.849L720.067,512.355L720.846,518.342L724.766,522.268L726.174,528.867L710.792,528.841L706.143,533.952L701.041,532.014L698.955,526.517L693.551,520.648L680.683,522.099L669.348,522.242L659.521,523.326L662.16,514.32L672.213,510.293L671.635,506.686L668.293,505.409L668.117,498.462L661.431,494.967L658.616,490.143L655.173,485.932L666.86,490.021L673.847,488.828L678.019,489.845L679.427,488.095L684.302,488.801L693.375,485.455L693.627,478.57L697.497,473.965L702.7,473.978L703.479,471.679L708.807,470.61L711.396,471.374L714.11,469.067L713.733,464.11L716.699,459.105L721.147,456.986L718.383,451.447L725.043,451.704L726.953,448.662L726.651,445.406L730.145,441.831L729.341,437.569L727.682,433.924L731.779,430.141L739.268,428.316L747.286,427.313L750.829,425.701Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(34, 131, 184)", + "ariaRoleDescription": "geoshape", + "description": "id: 591", + "shape": "M-313.528,653.703L-315.865,651.678L-317.348,647.873L-315.639,645.987L-317.398,645.509L-318.705,643.167L-322.174,641.206L-325.24,641.661L-326.647,644.111L-329.462,645.891L-330.995,646.13L-331.674,647.599L-328.356,651.427L-330.241,652.333L-331.247,653.37L-334.514,653.727L-335.72,649.52L-336.625,650.724L-338.937,650.307L-340.345,647.467L-343.21,647.002L-345.019,646.178L-348.01,646.19L-348.211,647.718L-349.016,646.656L-348.664,645.258L-348.086,643.825L-348.337,642.546L-347.307,641.708L-348.764,640.656L-348.789,637.806L-346.1,637.171L-343.587,639.71L-343.738,641.218L-340.948,641.529L-340.294,640.955L-338.359,642.689L-334.941,642.187L-331.95,640.392L-327.728,638.968L-325.34,636.859L-321.495,637.267L-321.746,637.962L-317.851,638.213L-314.734,639.435L-312.472,641.553L-309.833,643.514L-310.688,644.542L-309.079,648.697L-310.386,650.796L-312.623,650.283Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(33, 128, 183)", + "ariaRoleDescription": "geoshape", + "description": "id: 604", + "shape": "M-255.646,828.977L-257.506,832.739L-261.1,834.617L-268.112,830.391L-268.716,827.392L-282.564,820.07L-295.08,812.136L-300.459,807.672L-303.349,801.723L-302.193,799.655L-308.124,790.261L-315.011,777.126L-321.595,763.029L-324.461,759.818L-326.647,754.633L-332.076,750.039L-337.052,747.197L-334.79,744.061L-338.158,737.381L-335.997,732.474L-330.442,728.058L-329.613,730.97L-331.598,732.64L-331.397,735.2L-328.532,734.643L-325.692,735.401L-322.777,738.934L-318.831,736.053L-317.499,731.337L-313.226,725.253L-304.832,722.496L-297.216,715.177L-295.055,710.638L-296.01,705.333L-294.15,704.671L-289.526,707.98L-287.289,711.277L-284.047,713.073L-279.95,720.403L-274.748,721.278L-270.902,719.421L-268.364,720.639L-264.192,720.036L-258.838,723.301L-263.337,730.425L-261.251,730.591L-257.758,734.311L-264.066,733.979L-264.996,735.034L-270.701,736.385L-278.693,741.153L-279.196,744.417L-280.981,746.865L-280.277,750.657L-284.499,752.692L-284.499,755.669L-286.334,756.956L-283.444,763.304L-279.548,767.596L-281.031,770.636L-276.406,771.044L-273.767,774.821L-267.61,775.001L-261.879,770.828L-262.332,781.612L-259.165,782.43L-255.219,781.202L-249.187,792.681L-250.695,795.104L-251.022,800.142L-251.173,806.268L-253.887,809.872L-252.656,812.553L-254.239,814.993L-251.248,821.092Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(33, 126, 182)", + "ariaRoleDescription": "geoshape", + "description": "id: 608", + "shape": "M1105.632,665.249L1097.413,661.175L1095.453,656.084L1097.564,652.75L1093.141,649.412L1090.954,652.333L1087.662,652.059L1082.509,655.989L1081.353,653.929L1084.093,647.993L1088.491,646.011L1092.286,643.347L1094.749,646.548L1100.077,644.613L1101.208,641.457L1106.134,641.278L1105.732,635.805L1111.387,639.159L1111.965,642.713L1112.468,645.318L1113.172,649.997L1113.574,653.953L1111.211,660.378L1108.648,653.215L1105.38,656.787L1107.617,661.959ZM1088.868,641.027L1084.57,636.128L1086.003,634.233L1087.762,632.253L1088.516,627.841L1092.362,627.42L1091.256,632.205L1096.408,625.349L1095.755,632.121L1093.241,634.461L1091.055,638.932ZM1048.228,645.653L1051.646,640.703L1056.673,636.344L1060.87,631.436L1064.539,624.373L1065.771,630.174L1061.172,634.077L1057.502,638.944ZM1081.931,630.98L1081.68,627.673L1082.183,624.048L1081.102,620.645L1085.274,622.854L1089.723,622.842L1089.597,625.819L1086.355,628.84ZM1101.46,633.153L1101.183,628.154L1099.072,627.781L1097.991,623.481L1102.088,624.048L1101.988,621.346L1097.74,615.894L1104.425,616.051L1106.361,618.712L1108.321,626.674L1102.943,624.783L1103.068,627.18L1104.777,631.556ZM1076.754,618.41L1073.763,614.84L1070.194,609.381L1076.176,609.648L1078.614,612.234ZM1096.408,616.039L1090.979,612.525L1088.391,608.761L1086.606,611.397L1082.158,607.095L1075.799,608.153L1072.331,606.572L1072.682,603.6L1074.869,601.758L1072.783,600.097L1071.878,602.697L1068.435,598.544L1067.405,595.397L1067.128,588.444L1069.943,590.843L1070.672,579.424L1072.934,572.775L1077.181,572.788L1081.479,574.879L1083.615,572.975L1084.269,574.842L1083.113,577.886L1085.5,583.126L1083.666,589.182L1079.544,591.593L1078.463,597.431L1080.021,603.185L1083.716,603.978L1086.807,603.124L1095.528,607.12L1094.85,611.021L1097.137,612.744Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(33, 129, 184)", + "ariaRoleDescription": "geoshape", + "description": "id: 598", + "shape": "M1316.472,752.704L1313.457,750.003L1310.39,745.546L1308.907,740.204L1309.862,739.527L1310.616,741.604L1312.728,743.194L1316.121,747.649L1319.413,750.027L1318.433,752.002ZM1279.075,748.469L1275.355,748.457L1269.625,746.425L1265.654,744.465L1266.232,742.292L1272.49,743.313L1276.31,742.767L1277.366,739.409L1278.371,739.231L1279.049,742.957L1283.02,742.423L1284.981,740.026L1288.876,737.523L1288.122,733.398L1292.295,733.268L1293.702,734.417L1293.576,738.294L1291.239,742.577L1287.57,743.147L1286.464,745.118L1282.643,746.829ZM1214.784,768.194L1214.684,745.249L1214.558,722.437L1226.672,727.253L1239.566,731.254L1244.391,734.832L1248.262,738.353L1249.342,742.494L1260.954,746.829L1262.663,750.55L1256.229,751.312L1257.787,755.991L1264.02,760.617L1268.544,768.11L1272.54,767.871L1272.264,771.008L1277.667,772.206L1275.556,773.537L1282.97,776.526L1282.216,778.58L1277.592,779.073L1275.858,777.234L1269.876,776.442L1262.814,775.373L1257.385,770.852L1253.414,766.962L1249.795,760.785L1240.696,757.695L1234.79,759.711L1230.518,762.038L1231.397,767.249L1225.918,769.678L1222.023,768.493ZM1297.12,737.582L1295.813,733.458L1294.18,730.745L1291.013,728.46L1287.042,725.478L1282.015,723.419L1283.95,721.727L1287.72,723.691L1290.083,725.229L1293.023,726.91L1295.813,729.845L1298.477,732.084L1299.307,735.721Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(33, 124, 181)", + "ariaRoleDescription": "geoshape", + "description": "id: 616", + "shape": "M335.029,287.831L332.164,280.687L332.717,276.778L330.983,270.664L328.444,266.56L330.38,263.449L328.771,257.489L333.521,253.999L344.429,248.474L353.225,244.386L360.187,246.434L360.715,249.368L367.451,249.511L376.046,250.87L388.889,250.687L392.458,251.982L394.142,255.647L394.444,260.855L396.379,265.302L396.328,269.905L392.156,272.258L394.293,277.547L394.444,282.572L397.937,292.272L397.208,295.36L393.74,296.639L387.406,305.645L389.191,310.46L387.683,309.829L381.048,305.718L376.021,307.243L372.729,306.136L368.582,308.438L365.063,304.625L362.198,306.099L361.796,305.445L358.604,300.124L353.401,299.462L352.748,296.046L347.947,294.822L346.917,297.655L343.122,295.398L343.549,292.366L338.347,291.413Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(33, 119, 179)", + "ariaRoleDescription": "geoshape", + "description": "id: 630", + "shape": "M-238.858,576.881L-239.26,573.734L-238.254,572.663L-232.549,572.7L-228.98,573.348L-227.724,574.817L-229.508,576.669L-234.761,576.62Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(66, 178, 194)", + "ariaRoleDescription": "geoshape", + "description": "id: 408", + "shape": "M1143.206,378.538L1140.542,377.964L1137.526,381.149L1135.44,384.35L1135.691,391.013L1132.097,393.041L1130.84,394.675L1128.226,397.372L1123.577,398.871L1120.536,401.319L1120.309,405.242L1119.505,406.234L1122.295,407.696L1126.241,411.625L1125.236,413.784L1122.27,414.371L1117.319,414.808L1114.604,418.798L1111.488,418.484L1111.061,419.292L1107.668,417.616L1106.813,419.277L1104.777,420.009L1104.526,418.335L1102.716,417.526L1100.831,416.116L1102.741,412.199L1104.4,411.156L1103.772,409.52L1105.556,404.661L1105.104,403.192L1101.007,402.195L1097.715,399.765L1103.42,393.897L1111.111,388.931L1115.911,382.324L1119.204,385.25L1125.261,385.597L1124.155,380.657L1134.937,376.605L1137.727,371.282L1142.225,376.877Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(33, 123, 181)", + "ariaRoleDescription": "geoshape", + "description": "id: 620", + "shape": "M167.116,381.721L169.654,379.336L172.494,377.964L174.253,382.562L178.375,382.562L179.556,381.372L183.628,381.705L185.588,386.385L182.346,388.899L182.271,396.087L181.14,397.418L180.863,401.734L177.847,402.471L180.637,407.894L178.702,413.769L181.115,416.401L180.16,418.813L177.571,422.125L178.149,425.02L175.334,427.283L171.665,426.056L168.071,427.017L169.126,420.158L168.473,414.718L165.356,413.889L163.672,410.505L164.225,404.631L167.015,401.335L167.518,397.65L168.975,392.137L168.825,388.224L167.417,384.887Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(33, 129, 183)", + "ariaRoleDescription": "geoshape", + "description": "id: 600", + "shape": "M-207.441,863.664L-204.677,854.663L-204.501,850.644L-201.158,844.102L-188.994,841.946L-182.509,842.059L-176,845.847L-175.899,848.136L-173.839,852.285L-174.291,862.465L-166.927,863.907L-164.062,862.427L-159.362,864.469L-158.055,866.733L-157.402,873.683L-156.572,876.627L-153.984,876.963L-151.37,875.722L-148.856,877.106L-148.856,881.319L-149.811,885.877L-151.169,890.34L-152.3,897.2L-158.633,903.208L-164.162,904.473L-172.004,903.261L-179.041,901.134L-172.18,889.291L-173.185,885.877L-180.373,882.867L-188.893,877.196L-194.598,876.045Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(115, 201, 189)", + "ariaRoleDescription": "geoshape", + "description": "id: 275", + "shape": "M478.337,465.006L478.337,470.055L477.307,472.456L474.015,473.563L474.316,471.402L476.101,470.277L474.366,469.359L475.824,463.857Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(33, 118, 179)", + "ariaRoleDescription": "geoshape", + "description": "id: 634", + "shape": "M584.901,525.814L584.449,520.203L586.334,516.136L588.244,515.294L590.355,517.725L590.481,522.255L588.948,526.79L587.012,527.335Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(33, 116, 178)", + "ariaRoleDescription": "geoshape", + "description": "id: 642", + "shape": "M388.738,322.523L391.754,320.281L396.077,321.429L400.551,321.482L403.793,324.018L406.181,322.417L411.333,321.429L413.067,318.97L416.033,318.97L418.144,319.997L420.305,323.086L422.542,327.451L426.563,333.562L426.79,338.016L426.036,342.315L427.292,346.884L430.409,348.718L433.701,347.12L436.868,348.819L437.019,351.367L433.626,353.503L431.515,352.569L429.554,364.344L425.458,363.33L420.381,359.798L412.162,362.067L408.694,364.524L398.44,364.017L393.086,362.51L390.372,363.215L388.361,359.221L387.08,357.52L388.713,355.88L386.979,354.651L384.792,356.858L380.721,354.002L380.168,349.927L375.92,347.592L375.141,344.418L371.346,340.476L376.951,338.581L381.173,331.677L384.466,324.686Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(33, 115, 177)", + "ariaRoleDescription": "geoshape", + "description": "id: 643", + "shape": "M1222.173,342.094L1220.892,333.597L1221.671,323.579L1220.867,312.241L1222.475,304.17L1222.802,289.56L1218.705,278.545L1219.308,262.817L1225.767,257.429L1223.003,251.922L1226.094,250.241L1227.929,258.108L1230.342,269.339L1230.166,280.553L1233.031,291.824L1240.068,311.001L1229.739,307.478L1225.441,322.734L1232.252,333.286L1232.051,340.374L1226.748,334.27ZM388.889,250.687L376.046,250.87L367.451,249.511L369.034,244.201L378.66,240.263L385.974,242.391L389.065,244.324L388.311,247.638ZM-956.637,84.382L-955.927,85.257L-956.637,86.004L-956.637,84.382ZM1556.637,86.004L1550.41,92.654L1538.975,94.391L1538.799,110.523L1536.009,113.855L1536.009,113.855L1529.475,113.392L1524.146,107.747L1514.872,102.977L1513.314,95.754L1506.201,93.025L1498.285,95.187L1494.489,89.273L1495.997,82.929L1487.628,86.995L1490.795,94.96L1486.824,102.029L1486.824,30.749L1503.939,45.344L1522.236,63.66L1521.633,74.711L1526.333,79.06L1524.724,66.245L1543.675,68.904L1556.637,84.382L1556.637,86.004ZM1479.158,-6.156L1477.927,-12.922L1486.824,-22.029L1486.824,-7.234ZM1486.824,-7.234L1486.824,-22.029L1487.729,-22.925L1493.635,-22.888L1503.738,-16.623L1503.135,-13.653L1495.947,-8.532ZM1222.148,-60.976L1207.848,-63.684L1206.616,-64.961L1213.226,-74.736L1221.972,-77.025L1231.875,-67.529L1232.729,-61.139ZM1274.425,-98.434L1263.266,-100.812L1250.297,-111.433L1251.956,-120.395L1264.975,-116.216L1282.493,-109.039ZM1200.283,-96.425L1186.459,-113.888L1190.204,-133.189L1199.403,-138.627L1217.851,-137.347L1243.084,-122.239L1237.58,-101.939L1211.869,-102.662ZM627.728,-3.009L604.932,-5.761L603.072,-15.263L590.431,-21.099L589.425,-33.17L596.563,-38.02L596.312,-50.715L610.16,-71.285L603.751,-74.356L620.465,-96.826L618.58,-108.947L634.187,-123.521L657.234,-141.994L680.482,-147.5L692.42,-158.738L706.017,-162.693L710.868,-150.687L706.168,-141.448L681.437,-127.15L660.124,-113.841L638.435,-88.53L628.03,-64.054L617.097,-41.285L618.504,-22.552L631.85,-4.865ZM1012.916,-75.286L1019.225,-80.053L1022.768,-64.137L1025.835,-70.489L1036.994,-74.398L1059.412,-70.322L1061.096,-58.936L1090.301,-55.37L1090.678,-73.976L1105.506,-69.611L1116.64,-69.778L1127.925,-56.947L1131.142,-41.91L1126.995,-32.368L1135.766,-14.97L1146.749,-6.263L1153.485,-29.133L1164.694,-19.169L1176.582,-25.097L1190.104,-18.319L1195.231,-24.497L1206.666,-21.396L1201.615,-42.34L1210.839,-52.475L1242.937,-46.037L1273.897,-37.363L1279.829,-24.009L1298.1,-7.45L1326.299,-11.502L1340.198,-7.954L1346.004,0.752L1345.174,15.741L1353.77,21.431L1363.119,17.341L1375.485,16.831L1388.68,20.758L1401.9,18.528L1414.064,35.984L1422.71,29.793L1417.08,17.137L1420.171,8.139L1442.439,13.828L1456.966,12.593L1477.047,22.171L1486.824,30.749L1486.824,102.029L1486.774,102.112L1477.801,109.316L1468.753,108.105L1475.037,116.702L1479.209,129.674L1482.426,133.829L1483.23,140.131L1481.445,144.141L1468.427,140.849L1448.898,152.104L1442.69,153.824L1432.009,164.036L1421.88,172.762L1419.317,179.14L1409.339,169.407L1391.143,180.434L1387.976,175.262L1381.24,181.231L1371.916,179.329L1369.654,188.373L1361.285,201.394L1361.536,206.729L1369.478,209.651L1368.548,228.255L1362.064,228.722L1359.073,239.082L1361.988,244.345L1349.774,250.505L1347.361,263.982L1336.931,266.815L1334.845,278.449L1324.791,288.903L1322.203,281.202L1319.212,264.495L1315.316,237.919L1318.684,220.577L1324.565,212.905L1324.917,206.818L1335.775,203.879L1348.241,186.963L1360.279,172.666L1372.821,161.278L1378.425,140.414L1369.955,141.693L1365.758,153.973L1348.04,169.84L1342.334,152.029L1324.314,157.023L1306.821,180.856L1312.602,189.272L1297.02,192.807L1286.212,194.2L1286.715,184.362L1275.883,182.262L1267.237,189.019L1245.874,186.661L1222.902,190.699L1200.308,216.463L1173.541,245.861L1184.549,247.373L1187.967,254.864L1194.753,257.509L1199.227,251.578L1206.893,252.346L1216.971,265.302L1217.197,275.102L1211.743,286.361L1211.165,299.499L1207.998,316.606L1197.493,331.625L1195.13,338.666L1185.655,350.312L1176.256,361.624L1171.757,367.328L1162.457,372.927L1158.059,373.056L1153.661,368.416L1144.286,375.387L1143.206,378.538L1142.225,376.877L1142.175,372.057L1145.744,371.799L1146.749,360.424L1144.915,352.035L1150.896,348.55L1159.391,350.295L1164.066,340.579L1166.479,329.438L1169.168,325.667L1172.837,316.267L1161.301,319.378L1155.269,323.491L1144.638,323.473L1141.823,313.623L1133.555,306.045L1121.415,302.599L1118.827,291.899L1116.389,285.076L1113.775,280.247L1109.452,268.733L1103.32,264.475L1092.889,260.994L1083.615,261.312L1074.944,263.41L1069.189,269.183L1073.009,271.928L1073.11,278.219L1069.214,281.83L1062.906,293.633L1062.981,298.449L1053.129,305.281L1044.76,301.207L1036.441,302.105L1032.771,298.467L1028.599,297.304L1018.37,304.935L1009.171,306.717L1002.762,309.36L993.966,307.623L987.482,307.732L983.259,302.233L976.423,297.009L969.411,295.564L960.589,297.009L953.979,299.02L944.077,294.432L942.745,286.135L934.526,283.257L928.193,281.945L920.377,277.278L913.138,288.903L915.978,295.398L909.192,302.965L899.089,300.252L892.127,299.848L887.452,294.748L880.189,294.599L874.107,291.208L863.475,296.38L850.155,305.718L842.816,307.569L840.077,308.456L836.382,301.885L827.384,303.33L824.394,298.725L819.518,296.602L816.175,290.253L812.305,288.264L802.277,291.096L792.651,284.698L788.931,290.515L773.348,261.629L764.426,252.487L766.99,248.738L749.497,259.961L742.787,260.617L743.365,254.18L734.417,250.099L727.129,253.012L724.917,240.512L712.376,237.877L706.093,242.947L688.625,247.414L685.207,250.383L659.094,254.522L655.902,258.567L660.929,266.579L654.243,269.573L655.55,272.704L648.84,278.257L660.15,285.984L658.415,291.245L648.588,290.778L646.578,294.042L637.63,288.32L626.572,288.546L619.158,293.204L610.889,288.734L595.507,280.992L584.6,281.278L570.199,293.391L569.319,301.354L562.156,295.045L556.576,306.953L558.612,309.125L554.591,317.158L560.497,324.247L565.7,323.948L570.148,330.845L569.419,336.094L572.988,337.742L569.796,343.706L563.036,345.348L556.099,355.565L562.432,364.801L561.754,371.266L569.369,382.403L565.197,386.164L563.991,388.523L560.924,387.895L556.124,382.229L554.164,381.911L549.765,379.734L547.629,375.868L541.12,373.877L536.872,375.371L535.666,373.604L526.166,369.033L515.886,367.474L509.98,365.829L509.125,366.97L500.228,358.792L492.261,355.1L486.229,349.306L491.306,347.709L497.112,339.333L493.191,335.321L503.496,331.157L503.294,328.916L497.036,330.567L497.263,326L500.857,323.104L507.617,322.347L508.723,318.863L507.165,313.049L510.005,307.46L509.93,304.316L499.625,300.803L495.554,300.913L491.231,295.805L485.877,297.544L477.031,293.688L477.181,291.525L474.693,286.72L469.114,286.172L468.536,282.706L470.295,280.419L465.821,274.001L458.583,275.102L456.472,274.523L454.712,277.105L452.099,276.663L450.39,269.319L448.731,265.479L450.088,264.396L455.718,264.79L458.432,262.243L456.421,259.125L451.722,257.049L452.124,254.904L449.284,252.73L444.911,244.858L446.419,241.586L445.74,235.834L438.904,232.88L435.234,234.349L434.254,231.28L426.89,228.128L424.653,220.685L424.05,214.458L420.682,211.478L423.698,207.351L421.612,194.974L426.589,187.148L425.533,184.758L433.475,177.087L426.161,170.416L441.09,151.929L447.575,143.326L450.214,135.594L439.884,124.976L442.724,114.643L436.441,102.531L441.141,88.179L433.023,68.332L439.457,54.693L428.775,42.247L429.806,28.769L435.435,26.98L447.323,19.036L454.511,12.009L465.972,24.148L485.098,28.802L511.488,50.343L516.841,59.092L517.294,71.039L509.553,80.266L498.142,84.851L466.977,71.608L461.85,73.848L473.235,86.562L473.688,94.42L474.14,111.263L483.138,116.161L488.592,120.282L489.496,112.547L485.274,105.563L489.723,99.31L506.612,109.536L512.468,105.563L507.793,93.395L524.054,76.61L530.488,77.616L537.023,83.658L541.069,71.668L535.264,60.998L538.682,50.028L533.555,38.319L553.083,44.421L557.054,54.848L548.232,57.114L548.257,67.153L553.762,73.252L564.544,69.416L566.253,57.919L580.83,49.114L605.209,32.818L610.462,33.767L603.6,45.344L612.246,47.281L617.247,40.834L630.342,40.32L640.697,32.359L648.664,43.878L656.581,31.21L649.267,19.779L652.911,13.142L673.52,19.239L683.196,25.449L708.48,47.376L713.155,37.477L706.067,27.212L705.866,23.043L697.447,21.095L699.759,11.561L696.014,-4.615L695.813,-11.43L708.681,-31.337L713.281,-52.314L718.458,-56.987L736.956,-50.715L738.389,-37.827L731.779,-19.688L736.127,-12.74L738.363,2.056L736.78,29.628L744.496,41.413L741.48,53.913L727.808,79.325L735.8,81.878L738.564,75.602L746.255,71.099L748.115,62.224L754.147,53.539L750.075,42.919L753.343,30.255L745.702,28.637L744.018,17.646L749.598,-2.973L740.525,-20.504L753.016,-35.55L751.407,-52.074L754.901,-52.595L758.545,-39.65L755.806,-18.06L763.27,-14.091L760.078,-29.968L771.765,-38.912L786.267,-40.116L799.16,-27.204L792.952,-46.191L792.249,-71.83L804.388,-76.855L821.202,-75.752L836.332,-79.027L830.652,-92.437L838.719,-109.912L846.737,-110.649L860.309,-124.377L878.756,-128.158L881.094,-136.022L899.416,-138.726L905.121,-132.217L920.804,-147.752L933.622,-147.249L935.557,-160.295L942.217,-173.608L958.704,-186.814L970.668,-176.356L961.167,-168.539L976.976,-163.793L978.861,-148.762L985.245,-156.054L1005.653,-155.694L1021.386,-141.1L1026.991,-130.279L1025.256,-115.703L1017.541,-107.618L999.194,-92.878L993.941,-85.223L1002.612,-81.64ZM924.398,-194.2L937.14,-240.552L942.896,-244.749L948.123,-242.327L965.817,-221.52L963.756,-207.282ZM562.407,-270.608L554.842,-280.257L558.813,-293.37L543.281,-294.669L556.903,-302.477L567.509,-303.067L568.942,-291.43L572.938,-301.741L579.523,-308.938L589.878,-299.394L587.188,-292.867L577.814,-287.293L571.531,-284.112L570.55,-277.338ZM912.661,-223.092L893.233,-233.528L881.621,-247.828L876.268,-276.025L866.743,-284.182L884.889,-313.682L899.969,-323.884L913.54,-301.447L929.625,-261.449L927.891,-227.541Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(33, 114, 177)", + "ariaRoleDescription": "geoshape", + "description": "id: 646", + "shape": "M442.548,712.198L445.313,716.135L444.911,720.249L442.9,721.124L439.205,720.675L437.069,724.649L432.822,724.105L433.475,720.285L434.43,719.741L434.681,715.591L436.692,713.64L438.376,714.35Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(34, 89, 165)", + "ariaRoleDescription": "geoshape", + "description": "id: 732", + "shape": "M169.679,503.224L169.704,503.758L169.553,505.276L169.528,517.108L146.632,516.701L146.858,536.362L140.299,537.044L138.59,540.947L139.922,551.822L112.577,551.771L111.069,554.267L111.371,551.111L111.496,551.124L127.204,550.514L128.034,547.806L130.899,544.427L133.211,533.952L142.913,525.697L146.205,515.952L148.366,515.373L150.653,509.3L156.535,508.465L159.048,509.472L162.215,509.472L164.477,507.695L168.799,507.443L168.624,503.224Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(33, 103, 172)", + "ariaRoleDescription": "geoshape", + "description": "id: 682", + "shape": "M528.855,588.567L527.925,585.46L525.839,583.262L525.286,580.341L521.692,577.713L517.972,571.554L515.987,565.527L511.161,560.427L508.045,559.205L503.42,552.088L502.616,546.863L502.917,542.394L498.921,533.977L495.654,530.992L491.884,529.412L489.572,525.007L489.949,523.274L488.014,519.273L485.978,517.542L483.263,511.747L478.991,505.436L475.447,500.017L471.954,500.057L473.06,495.694L473.361,492.916L474.216,489.723L482.007,490.997L485.023,488.529L486.682,485.632L492.01,484.514L493.166,481.821L495.478,480.437L488.516,472.289L502.49,468.176L503.822,466.935L512.242,469.165L522.622,474.904L542.326,491.145L555.295,491.781L561.528,492.552L563.262,496.353L568.188,496.138L570.927,502.971L574.371,504.77L575.552,507.523L580.327,510.822L580.729,514.03L580.051,516.622L580.93,519.233L582.941,521.393L583.871,523.926L584.901,525.814L587.012,527.335L588.948,526.79L590.28,529.723L590.556,531.484L593.22,539.203L614.206,543.021L615.614,541.421L618.806,546.761L614.156,561.723L593.22,569.131L573.089,571.953L566.579,575.265L561.578,582.953L558.311,584.176L556.551,581.741L553.887,582.112L547.126,581.369L545.87,580.639L537.802,580.812L535.917,581.468L533.052,579.573L531.192,583.163L531.896,586.238Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(34, 90, 165)", + "ariaRoleDescription": "geoshape", + "description": "id: 729", + "shape": "M396.379,643.538L393.966,641.505L393.514,639.303L394.645,636.356L394.619,633.465L390.598,629.032L389.819,625.988L389.894,624.265L387.331,622.166L387.255,618.023L385.798,615.264L383.335,615.676L384.038,613.047L385.848,610.061L385.044,607.083L387.356,604.88L385.898,603.197L387.733,598.74L390.925,593.41L396.957,593.914L396.605,564.837L396.68,561.723L404.723,561.698L404.723,546.761L432.796,546.761L459.865,546.761L487.561,546.761L489.823,554.128L488.29,555.482L489.295,563.143L491.859,571.978L494.523,573.784L498.343,576.508L494.8,580.688L489.672,581.889L487.461,584.127L486.782,588.973L483.766,599.62L484.52,602.502L483.389,608.688L480.574,615.748L476.352,619.292L473.361,624.735L472.657,627.637L469.34,629.634L467.279,637.051L467.304,637.902L466.324,637.758L466.45,634.233L465.62,631.797L462.026,628.996L461.172,623.867L462.026,618.604L458.784,618.108L458.306,619.703L454.109,620.066L455.793,622.154L456.371,626.433L452.551,630.331L449.083,635.445L445.463,636.176L439.607,632.037L436.969,633.501L436.24,635.565L432.646,636.907L432.419,638.369L425.458,638.369L424.503,636.907L419.476,636.668L416.963,637.878L415.027,637.267L411.433,633.141L410.227,631.184L405.2,632.157L403.29,635.445L401.481,641.768L399.093,643.096L396.957,643.872Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(34, 90, 165)", + "ariaRoleDescription": "geoshape", + "description": "id: 728", + "shape": "M467.379,643.406L466.324,645.569L462.629,645.736L460.242,649.758L464.539,650.259L468.083,653.691L469.29,656.501L472.481,658.131L476.603,665.772L471.878,670.399L467.581,674.571L463.283,677.793L458.382,677.781L452.752,679.415L448.329,677.852L445.438,679.759L439.306,675.104L437.647,672.118L433.752,673.6L430.534,673.137L428.65,674.311L425.533,673.469L421.286,667.682L420.18,665.463L414.952,662.684L413.193,658.464L410.277,655.43L405.577,651.761L405.527,649.472L401.707,646.62L396.957,643.872L399.093,643.096L401.481,641.768L403.29,635.445L405.2,632.157L410.227,631.184L411.433,633.141L415.027,637.267L416.963,637.878L419.476,636.668L424.503,636.907L425.458,638.369L432.419,638.369L432.646,636.907L436.24,635.565L436.969,633.501L439.607,632.037L445.463,636.176L449.083,635.445L452.551,630.331L456.371,626.433L455.793,622.154L454.109,620.066L458.306,619.703L458.784,618.108L462.026,618.604L461.172,623.867L462.026,628.996L465.62,631.797L466.45,634.233L466.324,637.758L467.304,637.902Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(33, 102, 171)", + "ariaRoleDescription": "geoshape", + "description": "id: 686", + "shape": "M113.507,608.457L110.617,602.856L107.148,600.292L110.214,598.923L113.582,593.84L115.241,590.105L117.654,587.779L121.122,588.407L124.515,586.817L128.411,586.743L131.753,588.875L136.378,590.806L140.6,596.145L145.225,601.098L145.551,605.586L146.909,609.697L149.522,611.712L150.126,614.489L149.799,616.717L148.794,617.116L144.999,616.547L144.471,617.346L142.938,617.503L137.911,615.761L134.543,615.688L121.65,615.385L119.765,616.196L117.453,615.966L113.758,617.128L112.602,611.64L118.961,611.797L120.645,610.79L121.901,610.729L124.49,609.077L127.481,610.584L130.522,610.717L133.538,609.102L132.13,607.034L129.818,608.239L127.657,608.202L124.892,606.438L122.68,606.548L121.097,608.251Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(192, 230, 181)", + "ariaRoleDescription": "geoshape", + "description": "id: 90", + "shape": "M1363.949,780.312L1359.073,780.264L1356.409,775.901L1360.581,777.607L1361.988,777.871ZM1350.427,773.705L1346.155,772.986L1344.697,771.895L1345.124,769.08L1349.723,770.193L1352.011,771.679L1353.142,773.537ZM1357.867,772.914L1352.689,766.782L1351.257,762.563L1353.619,762.563L1356.132,768.218L1358.922,771.607ZM1346.632,764.104L1341.153,761.107L1337.333,758.578L1334.719,756.229L1335.749,755.514L1338.966,757.206L1344.697,760.45L1346.33,762.683ZM1328.612,756.11L1325.571,754.514L1322.705,751.621L1323.057,750.443L1327.229,753.418L1330.019,755.717Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(33, 99, 170)", + "ariaRoleDescription": "geoshape", + "description": "id: 694", + "shape": "M150.327,656.787L148.442,656.263L143.415,653.429L139.796,649.663L138.565,647.085L137.71,641.864L141.43,638.752L142.234,636.8L143.44,635.265L145.35,635.109L146.984,633.765L152.564,633.777L154.524,636.308L156.032,639.291L155.806,641.338L156.912,643.191L156.836,645.784L158.771,645.378L155.529,648.673L152.363,652.488L151.986,654.537Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(138, 209, 186)", + "ariaRoleDescription": "geoshape", + "description": "id: 222", + "shape": "M-383.498,611.664L-387.544,611.555L-390.058,610.863L-392.948,609.442L-396.819,608.992L-398.804,607.448L-398.578,606.402L-396.19,604.587L-394.883,603.783L-395.26,602.941L-393.627,602.49L-391.566,603.1L-390.058,604.538L-387.947,605.696L-387.695,606.657L-384.629,605.805L-383.196,606.316L-382.241,607.095L-382.719,609.976Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(239, 249, 189)", + "ariaRoleDescription": "geoshape", + "description": "id: −99", + "shape": "M563.815,648.219L557.959,648.267L535.113,639.878L532.449,637.363L529.885,633.945L527.297,630.042L528.83,627.529L531.393,623.71L533.68,625.024L535.037,627.974L538.179,630.944L541.647,630.968L548.232,629.153L555.822,628.311L561.98,626.096L565.448,625.626L567.937,624.325L571.908,624.084L571.857,624.192L571.832,627.131L571.832,634.293L571.832,637.986L568.691,642.33Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(33, 96, 169)", + "ariaRoleDescription": "geoshape", + "description": "id: 706", + "shape": "M520.511,716.028L516.364,710.26L516.288,684.824L522.396,676.893L524.306,674.69L528.779,674.559L534.987,669.616L544.085,669.308L563.815,648.219L568.691,642.33L571.832,637.986L571.832,634.293L571.832,627.131L571.857,624.192L571.908,624.084L574.144,623.939L577.361,622.878L581.056,622.166L584.374,619.727L587.012,619.703L587.163,621.671L586.535,625.819L586.56,629.549L585.077,632.121L583.117,639.782L579.749,647.658L575.426,656.656L569.445,666.947L563.488,674.785L555.27,684.327L548.283,689.992L537.852,696.919L531.343,702.237L523.702,710.686L522.094,714.373Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(33, 101, 171)", + "ariaRoleDescription": "geoshape", + "description": "id: 688", + "shape": "M388.361,359.221L386.652,361.427L387.255,364.965L390.648,369.114L388.009,372.105L386.828,375.13L387.582,376.252L386.426,377.596L383.209,377.74L380.821,378.299L380.595,377.596L381.425,376.46L382.204,374.15L381.224,374.215L379.866,372.444L378.71,371.992L377.805,370.474L376.499,369.891L375.493,368.53L374.237,369.065L373.282,372.234L371.623,372.927L372.176,372.105L369.512,370.118L367.224,369.097L366.219,367.766L364.359,366.123L365.993,365.683L367.023,361.131L363.656,357.388L365.39,353.07L362.876,353.103L365.566,349.39L363.329,346.547L361.645,342.672L366.998,340.033L371.346,340.476L375.141,344.418L375.92,347.592L380.168,349.927L380.721,354.002L384.792,356.858L386.979,354.651L388.713,355.88L387.08,357.52Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(34, 86, 164)", + "ariaRoleDescription": "geoshape", + "description": "id: 740", + "shape": "M-168.787,662.494L-160.418,663.907L-159.664,662.636L-154.009,662.125L-146.519,664.014L-150.138,670.043L-149.585,674.832L-146.846,678.989L-148.077,681.996L-148.68,685.191L-150.465,688.124L-154.461,686.645L-157.753,687.367L-160.568,686.74L-161.272,688.762L-160.116,690.158L-160.744,691.576L-164.539,691.009L-168.787,684.93L-169.717,680.99L-171.954,680.978L-175.045,675.898L-173.763,672.284L-174.14,670.636L-169.893,668.809Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(33, 97, 169)", + "ariaRoleDescription": "geoshape", + "description": "id: 703", + "shape": "M361.796,305.445L362.198,306.099L365.063,304.625L368.582,308.438L372.729,306.136L376.021,307.243L381.048,305.718L387.683,309.829L385.747,312.6L384.365,316.855L382.882,317.94L375.418,314.732L373.131,315.375L371.472,317.851L368.205,319.165L367.451,318.491L364.058,320.121L361.268,320.44L360.715,322.523L354.859,323.807L352.27,322.664L348.727,319.997L348.023,316.356L348.601,315.018L349.581,312.69L352.672,312.87L355.06,311.774L355.236,310.785L356.593,310.28L357.046,307.859L358.654,307.388L359.735,305.463Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(33, 96, 169)", + "ariaRoleDescription": "geoshape", + "description": "id: 705", + "shape": "M326.584,336.627L332.34,337.399L335.858,335.097L341.966,334.856L343.298,333.131L344.479,333.234L345.836,336.678L340.282,339.367L339.603,343.435L337.165,344.452L337.191,347.238L334.451,347.053L332.089,345.416L330.807,347.103L325.931,346.766L327.489,345.855L325.805,341.601Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(34, 83, 162)", + "ariaRoleDescription": "geoshape", + "description": "id: 752", + "shape": "M307.182,193.196L310.248,185.339L316.054,175.832L318.366,159.07L313.917,151.629L313.49,131.586L318.014,116.864L324.926,117.134L327.364,110.77L324.825,105.202L335.657,81.526L342.644,61.918L347.244,48.83L353.954,48.893L355.814,38.384L368.959,41.445L369.989,28.769L374.312,27.975L383.636,37.445L394.519,50.28L394.72,77.999L397.057,84.735L385.044,89.561L378.283,101.274L379.364,111.263L368.28,124.073L354.784,137.404L349.707,158.38L354.683,168.516L361.343,176.353L354.934,191.869L347.671,195.02L345.007,217.071L341.061,228.955L332.591,227.746L328.62,237.586L320.553,238.147L318.316,226.406L312.485,211.896Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(34, 84, 163)", + "ariaRoleDescription": "geoshape", + "description": "id: 748", + "shape": "M454.084,898.073L452.677,901.559L448.58,902.397L444.408,898.152L444.358,895.457L446.268,892.533L446.921,890.274L448.932,889.724L452.45,891.14L453.481,894.626Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(34, 81, 161)", + "ariaRoleDescription": "geoshape", + "description": "id: 760", + "shape": "M501.007,456.816L487.335,465.677L479.569,462.398L479.418,462.342L480.373,461.077L480.273,457.665L481.982,453.085L485.777,449.906L484.646,446.598L481.504,446.153L480.851,439.63L482.56,436.098L484.42,434.216L486.305,432.313L486.682,427.475L488.969,429.17L496.659,426.736L500.354,428.389L506.109,428.36L514.152,425.079L517.897,425.228L525.839,423.864L522.27,429.317L518.45,431.463L519.103,437.758L516.464,448.075Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(169, 221, 183)", + "ariaRoleDescription": "geoshape", + "description": "id: 148", + "shape": "M331.385,613.738L332.089,610.353L327.615,610.195L327.615,605.574L324.725,602.905L327.741,593.386L336.638,586.534L337.015,577.017L339.704,562.037L341.212,558.84L338.296,556.278L338.196,553.9L335.582,551.961L333.873,540.242L340.91,536.091L368.758,550.565L396.605,564.837L396.957,593.914L390.925,593.41L387.733,598.74L385.898,603.197L387.356,604.88L385.044,607.083L385.848,610.061L384.038,613.047L383.335,615.676L385.798,615.264L387.255,618.023L387.331,622.166L389.894,624.265L389.819,625.988L385.396,627.204L381.852,630.078L376.8,637.818L370.24,641.086L363.48,640.656L361.519,641.302L362.223,643.789L358.579,646.262L355.613,649.007L346.816,651.701L345.082,650.104L343.926,649.973L342.619,651.785L336.864,652.309L337.945,650.402L335.758,645.545L334.778,642.617L331.737,641.421L327.615,637.291L329.123,633.945L332.315,634.665L334.275,634.161L338.171,634.233L334.376,627.781L334.627,623.047L334.175,618.313Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(34, 79, 160)", + "ariaRoleDescription": "geoshape", + "description": "id: 768", + "shape": "M237.588,662.803L236.03,660.343L234.17,655.882L233.617,652.381L235.151,646.035L233.416,643.466L232.738,637.89L232.763,632.745L229.848,629.08L230.35,626.867L236.458,627.023L235.578,630.763L237.714,632.853L240.127,635.337L240.403,638.812L241.811,640.273L241.484,656.465L243.218,661.306Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(34, 80, 160)", + "ariaRoleDescription": "geoshape", + "description": "id: 764", + "shape": "M946.364,618.543L940.106,615.264L934.124,615.397L935.155,609.77L928.997,609.806L928.444,617.685L924.674,628.094L922.412,634.365L922.89,639.495L927.439,639.71L930.279,646.154L931.536,652.262L935.431,656.287L939.654,657.108L943.273,660.747L940.986,663.634L936.386,664.477L935.833,660.866L930.128,657.798L928.922,659.047L926.157,656.346L924.976,652.869L921.256,648.887L917.863,645.545L916.732,649.687L915.4,645.772L916.154,641.362L918.215,634.581L921.608,627.288L925.428,620.645L922.714,614.125L922.814,610.802L922.01,606.791L917.361,601.062L915.702,597.443L918.115,596.108L920.653,589.798L917.813,584.991L913.364,579.66L909.997,573.211L912.937,571.878L916.129,563.884L921.055,563.557L925.127,560.339L929.123,558.613L932.139,560.905L932.541,565.364L937.266,565.702L935.557,573.485L935.708,580.069L943.072,575.688L945.158,576.98L949.254,576.769L950.662,574.22L955.94,574.718L961.243,580.676L961.695,587.877L967.325,594.208L967.023,600.329L964.761,603.575L958.202,602.551L949.179,603.917L944.705,609.904Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(34, 80, 161)", + "ariaRoleDescription": "geoshape", + "description": "id: 762", + "shape": "M725.948,396.877L723.409,399.688L715.794,398.176L715.14,403.406L722.706,402.701L731.326,405.639L744.546,404.279L746.305,412.577L748.593,411.686L752.84,413.709L752.589,417.166L753.644,422.199L746.456,422.185L741.631,421.53L737.283,425.464L734.191,426.323L731.753,428.168L728.989,425.302L729.642,417.915L727.531,417.496L728.285,414.778L724.515,412.758L721.499,415.845L720.77,419.426L719.69,420.71L715.517,420.531L713.256,424.561L710.918,422.869L705.866,425.672L703.73,424.605L707.651,415.68L706.143,409.034L701.016,406.905L702.825,402.916L708.656,403.345L711.974,398.33L714.211,392.433L723.535,390.293L722.077,394.566L723.083,397.109Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(35, 71, 156)", + "ariaRoleDescription": "geoshape", + "description": "id: 795", + "shape": "M657.511,437.583L656.907,430.303L651.705,429.994L643.713,422.259L638.158,421.291L630.417,416.821L625.466,415.996L622.4,417.646L617.725,417.391L612.774,422.437L606.641,424.131L605.334,417.915L606.34,408.593L600.911,405.547L602.695,399.333L598.071,398.809L599.604,391.075L606.189,393.337L612.321,390.387L607.245,384.808L605.234,379.447L599.604,381.848L598.9,388.68L596.714,382.641L599.805,379.511L607.722,377.548L612.447,380.195L617.348,387.518L620.917,387.061L628.784,386.936L627.653,382.244L633.609,379.001L639.49,373.507L648.89,378.506L649.644,385.975L652.308,387.879L659.873,387.455L662.21,389.15L665.654,398.624L673.621,404.89L678.17,409.125L685.484,413.498L694.758,417.301L694.582,422.705L692.471,422.423L689.178,420.068L688.072,423.21L682.191,424.902L680.809,431.859L676.863,434.493L671.359,435.792L669.901,439.688L664.648,440.833Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(33, 121, 180)", + "ariaRoleDescription": "geoshape", + "description": "id: 626", + "shape": "M1102.641,766.603L1103.445,764.941L1109.452,763.352L1114.328,763.113L1116.514,762.229L1119.153,763.113L1116.59,765.024L1109.326,768.11L1103.47,770.145L1103.345,768.002Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(35, 75, 158)", + "ariaRoleDescription": "geoshape", + "description": "id: 780", + "shape": "M-201.058,634.101L-202.314,633.465L-200.279,631.508L-200.429,628.708L-196.408,627.781L-194.95,628.034L-195.227,633.321Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(35, 73, 157)", + "ariaRoleDescription": "geoshape", + "description": "id: 788", + "shape": "M296.375,482.068L293.409,467.409L289.111,464.082L289.036,462.075L283.331,457.113L282.727,450.791L287.025,446.067L288.659,439.036L287.553,430.817L288.985,426.352L296.576,422.809L301.477,423.864L301.25,428.286L307.182,425.079L307.684,426.751L304.191,431.023L304.141,435.019L306.553,437.161L305.649,444.557L301.049,448.819L302.381,453.412L305.975,453.554L307.735,457.537L310.399,458.837L309.997,465.216L306.604,467.59L304.442,470.221L299.642,473.384L300.396,476.753L299.793,480.191Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(35, 72, 156)", + "ariaRoleDescription": "geoshape", + "description": "id: 792", + "shape": "M497.916,390.403L506.034,388.978L512.041,389.808L520.284,384.95L527.724,384.508L534.459,389.072L535.641,392.324L534.962,396.799L540.165,399.071L542.904,401.719L538.129,404.294L540.315,414.582L538.933,417.331L542.753,424.383L539.411,425.864L536.973,423.641L528.83,422.497L525.839,423.864L517.897,425.228L514.152,425.079L506.109,428.36L500.354,428.389L496.659,426.736L488.969,429.17L486.682,427.475L486.305,432.313L484.42,434.216L482.56,436.098L479.996,432.182L482.635,428.92L478.388,429.671L472.532,427.667L467.731,432.665L457.15,433.631L451.495,428.979L443.955,428.684L442.347,432.284L437.521,433.309L430.786,428.699L423.171,428.861L419.024,420.143L413.922,415.229L417.315,408.289L412.891,403.973L420.632,395.265L431.389,394.908L434.33,387.895L447.625,389.119L456.019,383.084L464.162,380.434L475.698,380.227L487.888,386.825ZM414.198,397.728L412.011,393.446L412.087,391.56L413.746,390.512L415.907,384.713L412.514,382.229L419.627,379.272L425.634,380.529L426.463,384.144L432.57,387.14L431.288,389.417L422.995,389.933L420.029,392.776Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(165, 220, 183)", + "ariaRoleDescription": "geoshape", + "description": "id: 158", + "shape": "M1073.16,546.991L1069.491,540.614L1068.686,534.983L1072.783,527.465L1078.388,521.641L1081.58,523.939L1080.348,528.582L1076.151,540.793Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(32, 62, 147)", + "ariaRoleDescription": "geoshape", + "description": "id: 834", + "shape": "M466.877,710.91L468.058,711.678L493.367,725.904L493.844,729.964L503.873,736.954L500.656,745.593L501.058,749.575L505.531,752.145L505.732,753.966L503.822,758.22L504.224,760.367L503.772,763.734L506.21,768.158L509.1,775.145L511.639,776.694L506.084,780.805L498.469,783.575L494.272,783.454L491.784,785.588L486.933,785.781L485.098,786.674L476.704,784.671L471.451,785.25L469.516,775.577L467.128,772.278L465.746,770.313L458.884,768.996L454.939,766.878L450.49,765.682L447.7,764.499L444.785,762.707L441.015,753.823L436.969,749.884L435.586,745.819L436.265,742.173L435.008,735.721L437.898,735.389L440.437,732.854L443.151,729.206L444.885,727.738L444.81,725.466L443.302,723.88L442.9,721.124L444.911,720.249L445.313,716.135L442.548,712.198L445.011,711.359L452.652,711.442Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(35, 70, 155)", + "ariaRoleDescription": "geoshape", + "description": "id: 800", + "shape": "M442.548,712.198L438.376,714.35L436.692,713.64L436.742,708.37L438.376,705.711L438.753,700.098L440.236,696.86L442.9,693.22L445.589,691.364L447.826,688.881L445.036,687.935L445.438,679.759L448.329,677.852L452.752,679.415L458.382,677.781L463.283,677.793L467.581,674.571L470.898,679.439L471.702,682.943L474.794,690.962L472.255,696.056L468.812,700.677L466.801,703.501L466.877,710.91L452.652,711.442L445.011,711.359Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(34, 69, 154)", + "ariaRoleDescription": "geoshape", + "description": "id: 804", + "shape": "M452.099,276.663L454.712,277.105L456.472,274.523L458.583,275.102L465.821,274.001L470.295,280.419L468.536,282.706L469.114,286.172L474.693,286.72L477.181,291.525L477.031,293.688L485.877,297.544L491.231,295.805L495.554,300.913L499.625,300.803L509.93,304.316L510.005,307.46L507.165,313.049L508.723,318.863L507.617,322.347L500.857,323.104L497.263,326L497.036,330.567L491.457,331.4L486.807,334.701L480.273,335.234L474.266,339.008L474.668,345.264L478.086,347.659L485.224,347.07L483.842,350.597L476.201,352.319L466.726,357.999L462.856,355.996L464.389,351.383L456.748,348.483L458.005,346.581L464.665,343.249L462.654,340.954L451.797,338.41L451.319,334.614L444.86,335.871L442.272,341.43L436.868,348.819L433.701,347.12L430.409,348.718L427.292,346.884L429.052,345.804L430.283,342.366L432.193,339.162L431.691,337.348L433.148,336.541L433.827,337.93L437.949,338.238L439.809,337.485L438.502,336.455L438.979,334.942L436.541,332.353L435.536,328.062L432.998,326.368L433.5,322.858L430.359,320.051L427.468,319.661L422.341,316.392L417.692,317.425L416.033,318.97L413.067,318.97L411.333,321.429L406.181,322.417L403.793,324.018L400.551,321.482L396.077,321.429L391.754,320.281L388.738,322.523L388.261,319.714L384.365,316.855L385.747,312.6L387.683,309.829L389.191,310.46L387.406,305.645L393.74,296.639L397.208,295.36L397.937,292.272L394.444,282.572L397.786,282.135L401.606,279.081L407.01,278.813L414.072,279.712L421.864,282.401L427.343,282.63L429.982,284.262L432.595,282.306L434.43,284.925L440.713,284.395L443.503,285.473L443.955,279.808L446.092,277.336Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(31, 57, 141)", + "ariaRoleDescription": "geoshape", + "description": "id: 858", + "shape": "M-172.104,925.744L-167.58,924.883L-160.568,931.15L-157.98,930.903L-150.792,936.137L-145.313,940.682L-141.291,946.307L-144.358,950.251L-142.422,954.983L-145.463,960.29L-153.33,965.003L-158.482,963.304L-162.277,964.21L-168.711,960.576L-173.462,960.849L-177.709,956.178L-177.181,950.759L-175.648,948.896L-175.724,940.654L-173.864,932.239Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(32, 61, 146)", + "ariaRoleDescription": "geoshape", + "description": "id: 840", + "shape": "M-856.727,569.744L-858.461,568.694L-858.26,566.629L-859.416,563.921L-859.065,563.105L-857.858,561.886L-858.336,560.427L-857.934,559.735L-857.406,559.873L-854.716,561.132L-853.485,561.773L-852.354,562.766L-850.57,565.364L-850.745,565.778L-853.46,567.356L-855.697,568.506ZM-861.804,557.465L-862.985,555.886L-863.79,555.279L-863.865,554.811L-863.186,554.179L-860.698,554.887L-858.863,556.025L-859.441,556.922ZM-864.418,553.748L-868.163,553.533L-867.635,552.621L-864.192,552.95ZM-870.827,552.291L-871.304,552.19L-873.742,551.923L-874.622,550.235L-874.898,549.93L-873.038,548.888L-872.46,549.371L-870.45,551.86ZM-883.092,547.64L-885.429,546.277L-885.077,545.729L-883.996,544.989L-882.388,545.142L-882.262,546.902ZM-238.531,350.362L-237.325,353.603L-244.764,358.346L-251.952,361.706L-259.316,364.573L-263.01,370.28L-264.192,372.428L-264.267,377.452L-261.955,382.435L-259.065,382.672L-259.793,379.24L-257.707,381.324L-258.26,384.002L-262.985,385.518L-266.328,385.344L-271.48,386.967L-274.521,387.423L-278.593,387.879L-284.399,390.559L-274.144,388.821L-272.083,390.575L-281.86,393.337L-286.309,393.353L-286.108,392.231L-288.219,394.783L-286.158,395.203L-287.666,401.75L-292.768,408.7L-293.271,406.386L-294.804,405.929L-297.091,403.667L-295.658,408.517L-293.924,410.111L-293.798,413.482L-296.035,416.941L-299.981,423.982L-300.609,423.626L-298.448,417.631L-302.017,414.251L-302.846,406.813L-304.178,410.687L-302.695,416.341L-307.295,414.943L-302.494,417.811L-302.193,426.175L-300.207,426.781L-299.478,429.788L-298.498,438.426L-302.922,444.773L-310.16,447.287L-314.734,452.231L-318.228,452.772L-321.771,455.853L-322.752,458.668L-330.417,464.054L-334.363,467.981L-337.655,472.857L-338.736,478.639L-337.48,484.268L-335.167,491.132L-332.051,496.77L-332.026,500.204L-328.708,509.326L-328.934,514.583L-329.236,517.607L-330.97,522.334L-333.056,523.313L-336.499,522.373L-337.605,518.984L-340.244,517.2L-343.964,510.504L-347.206,504.504L-348.262,501.421L-346.829,496.151L-348.764,491.768L-354.218,485.06L-356.932,483.831L-363.995,487.483L-365.226,487.075L-368.619,483.326L-372.992,481.315L-380.884,482.342L-387.092,481.438L-392.42,481.999L-395.285,483.258L-394.029,485.4L-394.154,488.665L-392.672,490.252L-394.004,491.294L-396.592,490.116L-399.206,491.632L-404.283,491.389L-409.486,487.157L-415.568,488.149L-420.645,486.286L-424.993,486.858L-430.874,488.733L-437.232,494.657L-444.169,498.086L-447.989,501.862L-449.573,505.409L-449.648,510.809L-449.296,514.557L-447.989,517.2L-450.704,517.437L-455.655,515.728L-461.109,513.305L-463.069,509.644L-464.602,504.144L-468.724,499.641L-471.137,494.994L-474.63,489.533L-479.556,486.327L-485.262,486.476L-489.66,492.808L-495.44,490.414L-499.06,488L-500.794,483.572L-503.106,479.339L-507.253,475.76L-510.822,473.19L-513.385,470.277L-525.474,470.277L-525.474,473.66L-531.029,473.66L-544.902,473.716L-560.836,467.939L-571.367,463.928L-570.714,462.3L-579.586,463.198L-587.528,463.843L-588.684,459.598L-593.208,454.79L-596.475,453.782L-597.229,451.376L-601.15,450.948L-603.663,448.676L-610.147,447.831L-611.932,446.469L-612.761,441.802L-619.547,433.163L-625.353,421.038L-625.101,418.993L-628.193,416.071L-633.596,408.593L-634.551,401.227L-638.271,396.242L-636.738,388.617L-636.989,380.609L-639.226,373.362L-636.487,364.328L-635.632,355.498L-634.803,346.53L-636.059,333.01L-638.271,324.194L-640.282,319.36L-639.452,317.318L-629.349,320.864L-625.629,330.637L-623.895,327.922L-625.026,319.413L-627.389,310.749L-607.584,310.749L-586.849,310.749L-579.988,310.749L-558.7,310.749L-538.116,310.749L-517.155,310.749L-496.219,310.749L-472.494,310.749L-448.592,310.749L-434.141,310.749L-434.116,306.644L-431.753,306.59L-430.522,312.457L-428.36,314.249L-423.485,314.893L-416.347,316.57L-409.586,319.82L-403.931,318.455L-395.336,321.182L-393.049,321.076L-386.816,318.118L-380.256,321.906L-373.42,325.93L-367.79,329.368L-362.361,332.647L-361.683,335.321L-360.049,336.318L-360.476,337.33L-358.591,337.639L-357.234,336.593L-356.882,338.991L-355.475,340.579L-353.565,340.579L-352.534,341.822L-353.414,343.605L-346.125,348.281L-344.642,357.222L-343.235,365.666L-345.271,371.331L-348.563,376.557L-350.096,379.861L-350.247,380.832L-349.468,382.181L-347.105,383.654L-345.346,383.654L-337.228,378.634L-330.04,377.149L-320.917,372.444L-320.791,371.476L-321.42,368.546L-322.525,366.66L-319.384,365.144L-312.522,365.095L-306.114,365.112L-303.877,361.328L-303.022,360.572L-295.633,353.536L-292.491,351.718L-281.885,351.651L-269.017,351.651L-268.314,349.205L-266.077,348.702L-263.111,347.171L-260.623,342.621L-258.512,334.752L-253.183,327.015L-250.871,329.716L-246.171,327.975L-243.08,330.949L-243.08,344.74ZM-844.965,220.986L-848.534,217.701L-849.614,211.654L-843.281,207.018L-839.561,205.017L-834.912,205.907L-831.971,209.959L-838.003,216.115ZM-930.065,180.903L-934.639,178.315L-938.862,174.502L-931.975,172.093L-926.446,173.382L-925.767,178.74ZM1556.637,131.834L1554.608,130.566L1551.943,127.753L1545.786,128.649L1544.127,127.278L1544.554,121.353L1548.852,124.365L1553.2,122.742L1556.637,125.245L1556.637,131.834ZM-956.637,125.245L-954.419,126.882L-947.482,128.964L-948.06,130.644L-953.363,133.907L-953.363,133.907L-956.637,131.834L-956.637,125.245ZM-754.084,15.946L-754.134,84.851L-754.159,173.191L-747.298,173.597L-740.487,177.489L-735.611,183.57L-729.403,192.532L-722.617,184.92L-715.605,180.434L-711.911,187.564L-707.211,193.127L-700.802,199.166L-696.454,208.635L-689.316,223.307L-677.428,231.301L-677.252,239.103L-681.123,244.981L-684.968,240.388L-691.126,236.481L-693.086,225.617L-702.084,215.309L-705.854,202.985L-712.564,202.134L-723.648,201.798L-731.841,197.969L-746.268,183.896L-752.953,181.278L-765.168,176.306L-774.844,177.513L-788.566,171.04L-796.86,164.96L-804.626,167.986L-803.169,177.796L-807.039,178.693L-815.107,181.583L-821.264,186.221L-829.005,189.134L-829.986,181.044L-826.844,167.237L-819.43,162.818L-821.34,159.193L-830.237,167.213L-835.012,176.637L-845.065,186.476L-839.963,193.081L-846.548,202.672L-854.063,208.192L-861.05,212.159L-862.784,217.852L-873.692,224.421L-875.878,230.33L-884.047,235.625L-888.847,234.684L-895.357,238.127L-902.444,242.288L-908.25,246.332L-920.238,249.775L-921.319,247.761L-913.678,242.102L-906.867,238.335L-899.428,231.554L-890.757,230.161L-887.314,224.998L-877.638,217.397L-876.08,214.807L-870.927,210.246L-869.721,200.27L-866.177,192.349L-874.22,196.429L-876.482,194.109L-880.252,198.986L-884.801,192.166L-886.686,196.995L-889.299,190.285L-896.286,195.679L-900.559,195.679L-901.162,187.61L-899.906,182.589L-904.404,177.631L-913.477,180.293L-919.384,173.74L-924.159,170.344L-924.184,162.256L-929.563,156.058L-926.848,147.56L-921.168,139.156L-918.68,131.299L-913.025,130.172L-908.225,132.631L-902.595,125.135L-897.543,126.486L-892.215,121.621L-893.522,114.344L-897.417,111.454L-892.265,105.174L-896.538,105.368L-903.952,108.904L-906.088,112.492L-911.592,108.904L-921.445,110.743L-931.674,106.836L-934.614,100.209L-943.436,90.48L-933.634,83.338L-918.052,74.83L-912.321,74.83L-913.276,83.542L-898.548,82.871L-904.203,72.057L-912.799,65.273L-917.75,56.185L-924.461,48.293L-934.036,42.343L-930.141,32.326L-917.75,31.703L-908.953,22.741L-907.295,13.005L-900.157,3.252L-893.346,0.858L-880.126,-8.496L-873.692,-7.054L-862.96,-18.54L-852.379,-13.982L-847.327,-4.365L-844.236,-8.459L-832.449,-7.198L-832.851,-2.332L-822.169,1.246L-815.057,-0.841L-800.354,5.702L-786.933,7.653L-781.554,10.32L-772.255,6.992L-761.674,13.108Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(30, 57, 141)", + "ariaRoleDescription": "geoshape", + "description": "id: 860", + "shape": "M694.582,422.705L694.758,417.301L685.484,413.498L678.17,409.125L673.621,404.89L665.654,398.624L662.21,389.15L659.873,387.455L652.308,387.879L649.644,385.975L648.89,378.506L639.49,373.507L633.609,379.001L627.653,382.244L628.784,386.936L620.917,387.061L620.64,351.768L638.611,345.906L639.917,346.766L650.75,353.853L656.455,357.553L663.115,366.302L671.309,364.899L683.272,364.148L691.641,371.153L691.113,380.657L694.506,380.72L695.939,388.366L704.811,388.664L706.721,393.041L709.335,392.979L712.376,386.369L721.6,379.845L725.596,378.107L727.682,379.033L721.801,385.092L726.953,388.601L731.929,386.29L740.198,391.169L731.276,397.774L725.948,396.877L723.083,397.109L722.077,394.566L723.535,390.293L714.211,392.433L711.974,398.33L708.656,403.345L702.825,402.916L701.016,406.905L706.143,409.034L707.651,415.68L703.73,424.605L698.452,422.765Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(30, 56, 140)", + "ariaRoleDescription": "geoshape", + "description": "id: 862", + "shape": "M-267.811,621.478L-268.012,623.155L-272.109,623.987L-269.821,627.216L-269.897,630.932L-272.988,635.061L-270.349,640.668L-267.333,640.213L-265.775,635.097L-267.937,632.601L-268.288,627.228L-259.592,624.325L-260.547,620.971L-258.11,618.724L-255.596,623.734L-250.695,623.843L-246.171,627.817L-245.895,630.162L-239.637,630.235L-232.172,629.501L-228.176,632.673L-222.823,633.561L-218.927,631.34L-218.827,629.549L-210.181,629.129L-201.812,629.02L-207.743,631.124L-205.355,634.473L-199.776,635.001L-194.498,638.489L-193.367,644.147L-189.748,643.992L-187.008,645.653L-192.538,649.794L-193.141,652.357L-190.753,654.977L-192.487,656.287L-196.785,657.417L-196.659,660.664L-198.544,662.601L-193.819,667.92L-192.889,669.901L-195.453,672.568L-203.244,675.187L-208.271,676.277L-210.281,677.935L-215.836,676.183L-221.013,675.282L-222.32,675.934L-219.179,677.746L-219.48,682.434L-218.5,686.835L-212.594,687.438L-212.217,688.904L-217.193,690.891L-217.997,693.846L-220.888,694.993L-226.065,696.624L-227.422,698.763L-232.851,699.212L-236.696,695.525L-238.833,688.561L-240.692,686.113L-243.206,684.575L-239.687,681.096L-239.913,679.522L-241.899,677.45L-243.306,672.794L-242.753,667.777L-241.195,665.415L-239.938,661.638L-242.427,660.426L-246.398,661.234L-251.424,660.854L-254.239,661.603L-259.165,655.561L-263.212,654.668L-272.184,655.346L-273.843,652.881L-275.577,652.297L-275.828,650.831L-274.999,648.219L-275.527,645.378L-277.085,643.825L-277.965,640.584L-281.584,640.105L-279.648,635.972L-278.794,630.908L-276.758,628.263L-274.069,626.228L-272.285,622.673Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(33, 97, 169)", + "ariaRoleDescription": "geoshape", + "description": "id: 704", + "shape": "M984.516,550.133L975.192,556.531L969.386,563.557L967.853,568.694L973.181,576.458L979.716,586.016L986.049,590.511L990.296,596.341L993.488,609.673L992.558,622.251L986.728,626.939L978.735,631.52L973.03,637.423L964.334,644.004L961.796,639.483L963.756,634.677L958.579,630.655L964.611,627.793L971.949,627.276L968.883,622.962L980.62,617.467L981.475,608.883L979.866,604.087L981.123,596.88L979.364,591.753L974.086,586.694L969.687,580.267L963.882,571.578L955.512,567.168L957.523,564.511L961.997,562.565L959.282,556.076L950.687,556.013L947.545,549.206L943.474,543.264L947.219,541.408L952.773,541.446L959.584,540.575L965.515,536.529L968.883,539.382L975.267,540.767L974.161,545.116L977.479,548.175Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(38, 144, 188)", + "ariaRoleDescription": "geoshape", + "description": "id: 548", + "shape": "M1399.663,821.807L1397.325,818.617L1397.577,816.675L1401.975,820.846ZM1397.954,815.57L1396.069,814.661L1394.611,815.054L1393.631,813.055L1393.48,807.513L1396.823,809.737Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(28, 51, 135)", + "ariaRoleDescription": "geoshape", + "description": "id: 887", + "shape": "M595.91,588.308L594.552,591.544L594.402,594.012L587.44,597.063L576.281,600.439L570.023,605.525L566.956,605.927L564.87,605.501L560.774,608.482L556.325,609.867L550.469,610.231L548.71,610.644L547.177,612.537L545.342,613.059L544.261,614.877L540.818,614.719L538.581,615.688L533.756,615.325L531.946,611.142L532.147,607.217L530.991,605.099L529.634,599.767L527.623,596.794L529.031,596.439L528.302,593.128L529.156,591.728L528.855,588.567L531.896,586.238L531.192,583.163L533.052,579.573L535.917,581.468L537.802,580.812L545.87,580.639L547.126,581.369L553.887,582.112L556.551,581.741L558.311,584.176L561.578,582.953L566.579,575.265L573.089,571.953L593.22,569.131L598.674,581.258L600.961,586.361Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(33, 95, 168)", + "ariaRoleDescription": "geoshape", + "description": "id: 710", + "shape": "M427.192,946.672L421.914,950.462L414.625,953.705L411.082,954.145L410.177,956.477L405.929,955.224L402.461,956.833L394.896,955.21L390.674,956.235L387.783,955.793L380.595,959.117L374.614,960.462L370.316,963.663L367.124,963.865L364.183,960.849L361.821,960.691L358.805,956.918L358.478,958.088L357.548,955.822L357.599,950.915L355.337,945.339L357.573,943.825L357.397,937.51L352.823,929.871L349.33,923.014L349.305,923.001L344.303,912.601L347.646,908.682L350.385,910.854L351.567,914.245L354.708,914.825L359.107,916.337L362.851,915.756L369.084,911.687L369.084,882.84L370.969,883.986L375.116,891.337L374.463,896.077L376.021,898.814L381.022,898.02L384.516,894.534L387.834,892.205L389.543,888.492L392.936,886.7L395.876,887.628L399.219,889.802L404.899,890.183L409.373,888.374L410.076,885.969L411.283,882.281L415.103,881.67L417.189,878.789L419.526,873.709L425.784,868.027L435.662,862.465L438.502,862.554L441.869,863.83L444.232,862.924L447.952,863.677L451.294,874.354L453.104,879.774L451.872,888.361L452.45,891.14L448.932,889.724L446.921,890.274L446.268,892.533L444.358,895.457L444.408,898.152L448.58,902.397L452.677,901.559L454.084,898.073L459.387,898.139L457.628,903.847L456.824,910.411L455.014,914.002L450.239,918.028L448.882,919.194L445.916,923.273L443.981,927.414L440.01,933.246L432.118,941.7ZM423.925,929.211L426.413,928.402L427.694,925.826L431.59,924.556L432.771,921.938L434.908,918.028L432.495,915.621L429.454,913.167L426.186,914.784L422.391,917.92L418.672,923.001Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(28, 49, 133)", + "ariaRoleDescription": "geoshape", + "description": "id: 894", + "shape": "M458.884,768.996L462.177,772.158L463.961,778.172L462.78,780.095L461.373,785.865L462.705,791.785L460.518,794.267L458.382,800.932L462.076,802.794L440.889,808.735L441.543,813.889L436.265,814.882L432.269,817.769L431.439,820.291L428.926,820.858L422.869,826.859L418.998,831.608L416.636,831.769L414.374,830.925L406.558,830.118L405.301,829.572L405.251,828.965L402.511,827.317L397.987,826.897L392.257,828.556L387.708,823.991L382.983,818.039L383.31,795.092L397.862,795.176L397.258,792.717L398.289,790.032L397.057,786.686L397.862,783.237L397.133,781.022L399.546,781.202L399.922,783.418L403.215,783.237L407.638,783.9L409.976,787.132L415.555,788.134L419.828,785.877L421.386,789.621L426.739,790.612L429.328,793.662L432.193,797.603L437.521,797.663L436.943,789.947L435.033,791.241L430.157,788.461L428.273,787.193L429.127,780.047L430.359,771.655L428.8,768.529L430.786,764.021L432.671,763.172L442.045,761.99L444.785,762.707L447.7,764.499L450.49,765.682L454.939,766.878Z" + }, + { + "fillOpacity": 0.1, + "stroke": "orange", + "strokeWidth": 2, + "fill": "rgb(33, 93, 167)", + "ariaRoleDescription": "geoshape", + "description": "id: 716", + "shape": "M447.952,863.677L444.232,862.924L441.869,863.83L438.502,862.554L435.662,862.465L431.213,859.065L425.809,857.922L423.749,853.17L423.749,850.543L420.758,849.736L412.841,841.583L410.654,837.309L409.247,836L406.558,830.118L414.374,830.925L416.636,831.769L418.998,831.608L422.869,826.859L428.926,820.858L431.439,820.291L432.269,817.769L436.265,814.882L441.543,813.889L441.995,816.589L447.826,816.442L451.043,817.978L452.551,819.774L455.869,820.304L459.513,822.646L459.513,831.906L458.156,836.997L457.854,842.522L458.985,844.717L458.206,849.093L457.15,849.761L455.29,855.144Z" + } + ], + "marktype": "shape", + "name": "layer_1_marks", + "role": "mark", + "zindex": 0 + }, + { + "clip": false, + "interactive": true, + "items": [ + { + "font": "sans-serif", + "fontSize": 11, + "align": "left", + "text": "(C) OpenStreetMap contributors", + "dx": 3, + "dy": -8, + "fill": "black", + "x": 0, + "y": 600, + "baseline": "middle" + } + ], + "marktype": "text", + "name": "layer_2_marks", + "role": "mark", + "zindex": 0 + } + ], + "fill": "transparent", + "stroke": "#ddd", + "x": 0, + "y": 0, + "width": 600, + "height": 600 + } + ], + "marktype": "group", + "name": "root", + "role": "frame", + "zindex": 0 + } +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/no_text_in_font_metrics.png b/avenger-vega-test-data/vega-scenegraphs/vl-convert/no_text_in_font_metrics.png new file mode 100644 index 0000000..16231a5 Binary files /dev/null and b/avenger-vega-test-data/vega-scenegraphs/vl-convert/no_text_in_font_metrics.png differ diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/no_text_in_font_metrics.sg.json b/avenger-vega-test-data/vega-scenegraphs/vl-convert/no_text_in_font_metrics.sg.json new file mode 100644 index 0000000..50aae36 --- /dev/null +++ b/avenger-vega-test-data/vega-scenegraphs/vl-convert/no_text_in_font_metrics.sg.json @@ -0,0 +1,467 @@ +{ + "width": 93, + "height": 237, + "origin": [ + 41, + 10 + ], + "scenegraph": { + "clip": false, + "interactive": true, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 200, + "x2": 20 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 167, + "x2": 20 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 133, + "x2": 20 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 100, + "x2": 20 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 67, + "x2": 20 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 33, + "x2": 20 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 0, + "x2": 20 + } + ], + "marktype": "rule", + "role": "axis-grid", + "zindex": 0 + } + ], + "orient": "left", + "offset": 0, + "x": 0.5, + "y": 0.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0, + "aria": false + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 19 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 1 + } + ], + "marktype": "rule", + "role": "axis-tick", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 10, + "y": 7, + "angle": 270, + "limit": 180, + "text": "", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": null, + "y": 7, + "angle": 270, + "limit": 180, + "align": "right", + "baseline": "middle" + } + ], + "marktype": "text", + "role": "axis-label", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "x": 0, + "x2": 20, + "y": 0 + } + ], + "marktype": "rule", + "role": "axis-domain", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "align": "center", + "angle": 0, + "baseline": "top", + "text": "column_name", + "x": 10, + "y": 11 + } + ], + "marktype": "text", + "role": "axis-title", + "zindex": 0 + } + ], + "orient": "bottom", + "offset": 0, + "x": 0.5, + "y": 200.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 200, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 167, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 133, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 100, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 67, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 33, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "x": 0, + "x2": -5 + } + ], + "marktype": "rule", + "role": "axis-tick", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 200, + "angle": 0, + "limit": 180, + "text": "0.0", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 166.66666666666666, + "angle": 0, + "limit": 180, + "text": "0.2", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 133.33333333333331, + "angle": 0, + "limit": 180, + "text": "0.4", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 100, + "angle": 0, + "limit": 180, + "text": "0.6", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 66.66666666666666, + "angle": 0, + "limit": 180, + "text": "0.8", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 33.33333333333333, + "angle": 0, + "limit": 180, + "text": "1.0", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 0, + "angle": 0, + "limit": 180, + "text": "1.2", + "align": "right", + "baseline": "middle" + } + ], + "marktype": "text", + "role": "axis-label", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "x": 0, + "y": 200, + "y2": 0 + } + ], + "marktype": "rule", + "role": "axis-domain", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "align": "center", + "angle": -90, + "baseline": "bottom", + "text": "previous_sum", + "y": 100, + "x": -24.9013671875 + } + ], + "marktype": "text", + "role": "axis-title", + "zindex": 0 + } + ], + "orient": "left", + "offset": 0, + "x": 0.5, + "y": 0.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0 + }, + { + "clip": false, + "interactive": true, + "items": [ + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "column_name: Prior; previous_sum: 1.2", + "width": 60, + "y": 0, + "y2": 200, + "x": -20, + "height": 200 + } + ], + "marktype": "rect", + "name": "layer_0_marks", + "role": "mark", + "zindex": 0 + } + ], + "fill": "transparent", + "stroke": "#ddd", + "x": 0, + "y": 0, + "width": 20, + "height": 200 + } + ], + "marktype": "group", + "name": "root", + "role": "frame", + "zindex": 0 + } +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/numeric_font_weight.png b/avenger-vega-test-data/vega-scenegraphs/vl-convert/numeric_font_weight.png new file mode 100644 index 0000000..c348377 Binary files /dev/null and b/avenger-vega-test-data/vega-scenegraphs/vl-convert/numeric_font_weight.png differ diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/numeric_font_weight.sg.json b/avenger-vega-test-data/vega-scenegraphs/vl-convert/numeric_font_weight.sg.json new file mode 100644 index 0000000..2c1672f --- /dev/null +++ b/avenger-vega-test-data/vega-scenegraphs/vl-convert/numeric_font_weight.sg.json @@ -0,0 +1,705 @@ +{ + "width": 229, + "height": 264, + "origin": [ + 44, + 27 + ], + "scenegraph": { + "clip": false, + "interactive": true, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 200, + "x2": 180 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 160, + "x2": 180 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 120, + "x2": 180 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 80, + "x2": 180 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 40, + "x2": 180 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 0, + "x2": 180 + } + ], + "marktype": "rule", + "role": "axis-grid", + "zindex": 0 + } + ], + "orient": "left", + "offset": 0, + "x": 0.5, + "y": 0.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0, + "aria": false + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 10 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 30 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 50 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 70 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 90 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 110 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 130 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 150 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 170 + } + ], + "marktype": "rule", + "role": "axis-tick", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 9.5, + "y": 7, + "angle": 0, + "limit": 180, + "text": "A", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 29.5, + "y": 7, + "angle": 0, + "limit": 180, + "text": "B", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 49.5, + "y": 7, + "angle": 0, + "limit": 180, + "text": "C", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 69.5, + "y": 7, + "angle": 0, + "limit": 180, + "text": "D", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 89.5, + "y": 7, + "angle": 0, + "limit": 180, + "text": "E", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 109.5, + "y": 7, + "angle": 0, + "limit": 180, + "text": "F", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 129.5, + "y": 7, + "angle": 0, + "limit": 180, + "text": "G", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 149.5, + "y": 7, + "angle": 0, + "limit": 180, + "text": "H", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 169.5, + "y": 7, + "angle": 0, + "limit": 180, + "text": "I", + "align": "center", + "baseline": "top" + } + ], + "marktype": "text", + "role": "axis-label", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "x": 0, + "x2": 180, + "y": 0 + } + ], + "marktype": "rule", + "role": "axis-domain", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "align": "center", + "angle": 0, + "baseline": "top", + "text": "a", + "x": 90, + "y": 21 + } + ], + "marktype": "text", + "role": "axis-title", + "zindex": 0 + } + ], + "orient": "bottom", + "offset": 0, + "x": 0.5, + "y": 200.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 200, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 160, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 120, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 80, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 40, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "x": 0, + "x2": -5 + } + ], + "marktype": "rule", + "role": "axis-tick", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 200, + "angle": 0, + "limit": 180, + "text": "0", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 160, + "angle": 0, + "limit": 180, + "text": "20", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 120, + "angle": 0, + "limit": 180, + "text": "40", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 80, + "angle": 0, + "limit": 180, + "text": "60", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 39.99999999999999, + "angle": 0, + "limit": 180, + "text": "80", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 0, + "angle": 0, + "limit": 180, + "text": "100", + "align": "right", + "baseline": "middle" + } + ], + "marktype": "text", + "role": "axis-label", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "x": 0, + "y": 200, + "y2": 0 + } + ], + "marktype": "rule", + "role": "axis-domain", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "align": "center", + "angle": -90, + "baseline": "bottom", + "text": "b", + "y": 100, + "x": -27.6845703125 + } + ], + "marktype": "text", + "role": "axis-title", + "zindex": 0 + } + ], + "orient": "left", + "offset": 0, + "x": 0.5, + "y": 0.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0 + }, + { + "clip": false, + "interactive": true, + "items": [ + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "a: A; b: 28", + "x": 1, + "width": 18, + "y": 144, + "y2": 200, + "height": 56 + }, + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "a: B; b: 55", + "x": 21, + "width": 18, + "y": 89.99999999999999, + "y2": 200, + "height": 110.00000000000001 + }, + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "a: C; b: 43", + "x": 41, + "width": 18, + "y": 114.00000000000001, + "y2": 200, + "height": 85.99999999999999 + }, + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "a: D; b: 91", + "x": 61, + "width": 18, + "y": 17.999999999999993, + "y2": 200, + "height": 182 + }, + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "a: E; b: 81", + "x": 81, + "width": 18, + "y": 37.999999999999986, + "y2": 200, + "height": 162 + }, + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "a: F; b: 53", + "x": 101, + "width": 18, + "y": 94, + "y2": 200, + "height": 106 + }, + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "a: G; b: 19", + "x": 121, + "width": 18, + "y": 162, + "y2": 200, + "height": 38 + }, + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "a: H; b: 87", + "x": 141, + "width": 18, + "y": 26, + "y2": 200, + "height": 174 + }, + { + "fill": "#4c78a8", + "ariaRoleDescription": "bar", + "description": "a: I; b: 52", + "x": 161, + "width": 18, + "y": 96, + "y2": 200, + "height": 104 + } + ], + "marktype": "rect", + "name": "marks", + "role": "mark", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 13, + "fontWeight": 600, + "opacity": 1, + "text": "Some title", + "baseline": "top", + "align": "center", + "angle": 0 + } + ], + "marktype": "text", + "role": "title-text", + "zindex": 0 + } + ], + "orient": "top", + "offset": 4, + "align": "center", + "angle": 0, + "x": 90, + "y": -22 + } + ], + "marktype": "group", + "role": "title", + "zindex": 0 + } + ], + "fill": "transparent", + "stroke": "#ddd", + "x": 0, + "y": 0, + "width": 180, + "height": 200 + } + ], + "marktype": "group", + "name": "root", + "role": "frame", + "zindex": 0 + } +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/quakes_initial_selection.png b/avenger-vega-test-data/vega-scenegraphs/vl-convert/quakes_initial_selection.png new file mode 100644 index 0000000..8364be1 Binary files /dev/null and b/avenger-vega-test-data/vega-scenegraphs/vl-convert/quakes_initial_selection.png differ diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/quakes_initial_selection.sg.json b/avenger-vega-test-data/vega-scenegraphs/vl-convert/quakes_initial_selection.sg.json new file mode 100644 index 0000000..75adf8e --- /dev/null +++ b/avenger-vega-test-data/vega-scenegraphs/vl-convert/quakes_initial_selection.sg.json @@ -0,0 +1,1635 @@ +{ + "width": 375, + "height": 310, + "origin": [ + 8, + 5 + ], + "scenegraph": { + "clip": false, + "interactive": true, + "items": [ + { + "items": [ + { + "clip": true, + "interactive": true, + "items": [ + { + "fill": "#333", + "fillOpacity": 0.125, + "x": 42.773173956930336, + "y": 0, + "x2": 97.99857027585085, + "y2": 300, + "width": 55.22539631892052, + "height": 300 + } + ], + "marktype": "rect", + "name": "param_9_brush_bg", + "role": "mark", + "zindex": 0 + }, + { + "clip": false, + "interactive": true, + "items": [ + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −118.6671667; lat: 34.4945; mag: 2", + "x": 34.795712024102826, + "y": 140.48954562962263, + "size": 7.65722615576843, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −118.0873333; lat: 34.12; mag: 1.6", + "x": 35.329404179335285, + "y": 140.9068439844251, + "size": 3.7267998334027492, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −116.7943333; lat: 33.518; mag: 0.54", + "x": 36.519511470008, + "y": 141.57379112002116, + "size": 1.0353792292544775, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −149.145; lat: 55.7729; mag: 3.8", + "x": 6.743204975194601, + "y": 112.22896149087725, + "size": 87.75763698458974, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −122.8560028; lat: 38.8246651; mag: 0.66", + "x": 30.94020979514447, + "y": 135.51871439755743, + "size": 1.0789494429987505, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −149.6259; lat: 63.8969; mag: 1.7", + "x": 6.300573423698438, + "y": 97.26091412801722, + "size": 4.475113660974593, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −148.6001; lat: 56.5687; mag: 3.1", + "x": 7.244743616097594, + "y": 110.9132081376506, + "size": 39.42555097875886, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −117.137; lat: 34.0473333; mag: 1.23", + "x": 36.204113064794726, + "y": 140.98760045064552, + "size": 1.9523438332319867, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −148.6645; lat: 56.2823; mag: 2.8", + "x": 7.18546835738195, + "y": 111.38988233795362, + "size": 26.57439999999999, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −150.2399; lat: 61.7028; mag: 3.8", + "x": 5.735433534701485, + "y": 101.68129995714621, + "size": 87.75763698458974, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −149.8542; lat: 61.6978; mag: 3.5", + "x": 6.0904407907049745, + "y": 101.69100735133237, + "size": 63.4375, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −147.408; lat: 64.9794; mag: 1.4", + "x": 8.34198019862734, + "y": 94.95144288625006, + "size": 2.5983999999999994, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −156.4712; lat: 57.8731; mag: 2.6", + "x": -2.842170943040401e-14, + "y": 108.69535132137388, + "size": 20.013703623490215, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −122.8541641; lat: 38.8250008; mag: 0.96", + "x": 30.941902177414647, + "y": 135.51831778678377, + "size": 1.353393258408996, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: 121.6773; lat: 23.9887; mag: 4.7", + "x": 256.0143524668878, + "y": 151.59689383836056, + "size": 204.03212490628906, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −116.7895; lat: 33.5021667; mag: 0.48", + "x": 36.523960151808495, + "y": 141.5912695750725, + "size": 1.0220870786505623, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: 121.7221; lat: 24.0424; mag: 4.7", + "x": 256.05558742947255, + "y": 151.54278300368296, + "size": 204.03212490628906, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −150.4985; lat: 62.0043; mag: 1.9", + "x": 5.497412076566945, + "y": 101.09301425441078, + "size": 6.422352311536859, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −151.5091; lat: 63.0943; mag: 1", + "x": 4.567232317901926, + "y": 98.91639639825875, + "size": 1.416076634735527, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −120.5753326; lat: 36.0098343; mag: 1.56", + "x": 33.03939172294032, + "y": 138.7814920721249, + "size": 3.464175989604332, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −117.2048; lat: 40.7226; mag: 2.1", + "x": 36.14170836695435, + "y": 133.2455632141873, + "size": 9.0919, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −116.6631667; lat: 33.6496667; mag: 0.33", + "x": 36.64024026115476, + "y": 141.42831946059255, + "size": 1.004934340187422, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −116.7865; lat: 33.4858333; mag: 0.82", + "x": 36.526721421624416, + "y": 141.60929674294573, + "size": 1.1881173003915035, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −116.3719; lat: 40.9433; mag: 2", + "x": 36.908328910188175, + "y": 132.97708239753666, + "size": 7.65722615576843, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: 72.5446; lat: 38.1608; mag: 5", + "x": 210.79147197157732, + "y": 136.2994154212011, + "size": 261.0478967097043, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −122.7938309; lat: 38.8209991; mag: 0.55", + "x": 30.997434258767797, + "y": 135.52304544980217, + "size": 1.0380736125572678, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: 70.4201; lat: 36.6781; mag: 4.2", + "x": 208.83603273025156, + "y": 138.0178488588793, + "size": 130.4704, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −118.9148; lat: 38.3974; mag: 1.6", + "x": 34.56778457186512, + "y": 136.02199907915437, + "size": 3.7267998334027492, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "goldenrod", + "ariaRoleDescription": "circle", + "description": "lon: −84.6085; lat: 9.4429; mag: 4.4", + "x": 66.14410146746151, + "y": 165.62044077402547, + "size": 156.94951703456897, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −147.7124; lat: 61.0186; mag: 1.4", + "x": 8.061803354636027, + "y": 102.99527944381555, + "size": 2.5983999999999994, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −149.8753; lat: 62.34; mag: 1.8", + "x": 6.071019859666137, + "y": 100.43110605519156, + "size": 5.367806080799667, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −149.3296; lat: 55.8526; mag: 3.9", + "x": 6.57329483918673, + "y": 112.09840826811515, + "size": 97.25687459391919, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: 121.7366; lat: 24.054; mag: 4.9", + "x": 256.0689335669163, + "y": 151.53109128742983, + "size": 240.85990000000007, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −148.4808; lat: 62.2947; mag: 3", + "x": 7.354550112445054, + "y": 100.5208553543167, + "size": 34.702207413577675, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −152.7284; lat: 60.2249; mag: 2.4", + "x": 3.4449602223742772, + "y": 104.48452296249599, + "size": 14.804424156601415, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −152.9563; lat: 60.0371; mag: 2.3", + "x": 3.2351957586895708, + "y": 104.83161045373625, + "size": 12.643530154102452, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −152.5878; lat: 59.8703; mag: 2.1", + "x": 3.574371734414939, + "y": 105.13823534694578, + "size": 9.0919, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −121.5946655; lat: 36.9138336; mag: 1.51", + "x": 32.101173999883414, + "y": 137.7468920827037, + "size": 3.1631225131153684, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −155.3447; lat: 58.1913; mag: 1", + "x": 1.0368568158877451, + "y": 108.1421638656581, + "size": 1.416076634735527, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −116.7953333; lat: 33.4961667; mag: 0.53", + "x": 36.518591046736034, + "y": 141.5978921681538, + "size": 1.032830447809246, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −117.0976667; lat: 33.7835; mag: 0.63", + "x": 36.240316349478576, + "y": 141.28022580830444, + "size": 1.06554439, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "goldenrod", + "ariaRoleDescription": "circle", + "description": "lon: −70.3349; lat: −32.4714; mag: 4.5", + "x": 79.2818550824239, + "y": 205.98067020500977, + "size": 171.61742503123696, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −117.1061667; lat: 33.2346667; mag: 0.95", + "x": 36.232492751666726, + "y": 141.88608283637012, + "size": 1.3388970194710537, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −153.399; lat: 58.9587; mag: 2.6", + "x": 2.827724376183113, + "y": 106.78736763851174, + "size": 20.013703623490215, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: 121.7751; lat: 23.9506; mag: 4.8", + "x": 256.1043698628876, + "y": 151.63527163733983, + "size": 221.87078650562265, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: 72.1924; lat: 37.7994; mag: 4", + "x": 210.46729889518528, + "y": 136.7214299337766, + "size": 107.51561849229488, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −121.1765; lat: 40.2825; mag: 2.31", + "x": 32.486063257623414, + "y": 133.778299868071, + "size": 12.84735079, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −122.7841644; lat: 38.8380013; mag: 0.56", + "x": 31.006331530326435, + "y": 135.502956984377, + "size": 1.0409190400000001, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: 121.7566; lat: 23.942; mag: 5.4", + "x": 256.08734203235593, + "y": 151.64393277384045, + "size": 354.7922925447731, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −117.5008333; lat: 35.6961667; mag: 1.1", + "x": 35.86923242835273, + "y": 139.13769161405912, + "size": 1.6091778009162852, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −122.8290024; lat: 38.8371658; mag: 0.57", + "x": 30.96506159165729, + "y": 135.5039442577268, + "size": 1.0439210537234487, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: 169.4658; lat: −18.9718; mag: 5.6", + "x": 300, + "y": 192.1417353362897, + "size": 410.19039999999984, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −118.1963; lat: 37.2339; mag: 0.2", + "x": 35.229108692784195, + "y": 137.37765717693964, + "size": 1.0006657226155768, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "goldenrod", + "ariaRoleDescription": "circle", + "description": "lon: −68.4818; lat: 18.171; mag: 2.71", + "x": 80.98749144773376, + "y": 157.33888031945963, + "size": 23.44142815709704, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: 121.759; lat: 24.0413; mag: 5.3", + "x": 256.0895510482087, + "y": 151.5438916460893, + "size": 329.30447809246147, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: 121.756; lat: 24.0521; mag: 5.2", + "x": 256.08678977839276, + "y": 151.5330063822614, + "size": 305.21925797584345, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −115.5586; lat: 39.9385; mag: 2", + "x": 37.65690915729114, + "y": 134.19229747624095, + "size": 7.65722615576843, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "goldenrod", + "ariaRoleDescription": "circle", + "description": "lon: −66.7358; lat: 17.911; mag: 1.71", + "x": 82.59455048061434, + "y": 157.59056464233834, + "size": 4.557605351599333, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −120.6545; lat: 39.8157; mag: 0.5", + "x": 32.966524205598006, + "y": 134.33958033804706, + "size": 1.0260047896709705, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −116.5465; lat: 33.1596667; mag: 0.5", + "x": 36.74762300690011, + "y": 141.96857861178063, + "size": 1.0260047896709705, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −122.8040009; lat: 38.8214989; mag: 1", + "x": 30.988073554091727, + "y": 135.52245499377787, + "size": 1.416076634735527, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −155.2733333; lat: 19.3948333; mag: 1.4", + "x": 1.1025443874123084, + "y": 156.14904498240418, + "size": 2.5983999999999994, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −116.2853333; lat: 33.3198333; mag: 1.12", + "x": 36.988006915446846, + "y": 141.7923185270382, + "size": 1.6547046400000003, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −155.2771667; lat: 19.3831667; mag: 0.93", + "x": 1.0990160368414763, + "y": 156.1604288103102, + "size": 1.3112469629279468, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −122.2388306; lat: 37.9975014; mag: 1.1", + "x": 31.508269450844807, + "y": 136.4903601339301, + "size": 1.6091778009162852, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −122.8034973; lat: 38.8223343; mag: 0.88", + "x": 30.988537079251515, + "y": 135.52146805582797, + "size": 1.2495192272553104, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −149.9556; lat: 65.4043; mag: 1.4", + "x": 5.997109870925954, + "y": 94.01932979499026, + "size": 2.5983999999999994, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −155.5506667; lat: 19.1508333; mag: 1.97", + "x": 0.8472802719544177, + "y": 156.3869619179531, + "size": 7.266690306201582, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −150.0793; lat: 56.1815; mag: 3.7", + "x": 5.883253512181824, + "y": 111.5568007342081, + "size": 78.97946018325699, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: 121.654; lat: 23.9342; mag: 5.1", + "x": 255.9929066046506, + "y": 151.65178772404948, + "size": 282.4842065389421, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −118.9056; lat: 38.3726; mag: 1.1", + "x": 34.57625246596734, + "y": 136.05111985668324, + "size": 1.6091778009162852, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −116.6651667; lat: 33.577; mag: 0.52", + "x": 36.6383994146108, + "y": 141.5086325460333, + "size": 1.0304219257975844, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: 121.653; lat: 24.1737; mag: 6.4", + "x": 255.99198618137865, + "y": 151.41038304250506, + "size": 699.0607573511038, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −116.814; lat: 33.5786667; mag: 1.37", + "x": 36.501409781644924, + "y": 141.50679122504565, + "size": 2.4657354670512293, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −116.7773333; lat: 33.4973333; mag: 0.46", + "x": 36.53515866563171, + "y": 141.59660455125203, + "size": 1.018629648246564, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −112.6238333; lat: 45.3583333; mag: −0.07", + "x": 40.358136725808976, + "y": 127.4031777647053, + "size": 0.99999001, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −116.9461667; lat: 33.6703333; mag: 0.89", + "x": 36.37976047518384, + "y": 141.40546583025468, + "size": 1.261055804910454, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −148.3011; lat: 56.2507; mag: 4.4", + "x": 7.519950174420217, + "y": 111.44225720948245, + "size": 156.94951703456897, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −155.2419; lat: 57.9207; mag: 1", + "x": 1.1314763282474871, + "y": 108.61291155084974, + "size": 1.416076634735527, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −121.0294; lat: 40.0627; mag: 1.4", + "x": 32.62145752093197, + "y": 134.04306641030655, + "size": 2.5983999999999994, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −118.9343338; lat: 37.6343346; mag: 1.66", + "x": 34.549805207754886, + "y": 136.91349289423687, + "size": 4.1594077587005405, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −121.0054; lat: 40.048; mag: 1.7", + "x": 32.64354767945953, + "y": 134.06074319809034, + "size": 4.475113660974593, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "goldenrod", + "ariaRoleDescription": "circle", + "description": "lon: −68.3323; lat: 19.0268; mag: 3.24", + "x": 81.12509472689507, + "y": 156.50776786679305, + "size": 46.8514811138026, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −116.3998333; lat: 33.2496667; mag: 0.81", + "x": 36.88261845080491, + "y": 141.8695751951073, + "size": 1.1791073481007914, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −121.1480026; lat: 36.5584984; mag: 0.88", + "x": 32.512292927774396, + "y": 138.155003647513, + "size": 1.2495192272553104, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −121.4188309; lat: 36.9329987; mag: 1.7", + "x": 32.26301625774305, + "y": 137.72482660970846, + "size": 4.475113660974593, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −152.0545; lat: 60.5649; mag: 1.5", + "x": 4.065233465362951, + "y": 103.85105127110756, + "size": 3.106387963348605, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: 140.8677; lat: 36.7501; mag: 4.2", + "x": 273.6776432255313, + "y": 137.93517904275183, + "size": 130.4704, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −147.3152; lat: 61.4805; mag: 1.9", + "x": 8.427395478267272, + "y": 102.1113789209504, + "size": 6.422352311536859, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −116.0961667; lat: 33.7426667; mag: 1.09", + "x": 37.16212025636857, + "y": 141.32543450485446, + "size": 1.587326125943357, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −147.1244; lat: 60.5003; mag: 2.3", + "x": 8.603012238561433, + "y": 103.97192126404482, + "size": 12.643530154102452, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −116.09; lat: 33.7415; mag: 0.86", + "x": 37.1677962305599, + "y": 141.32672590347303, + "size": 1.2275973143856727, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "goldenrod", + "ariaRoleDescription": "circle", + "description": "lon: −67.1968; lat: 18.2985; mag: 2.68", + "x": 82.17023535223066, + "y": 157.21532150106435, + "size": 22.46409116628072, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −118.976; lat: 37.5316667; mag: 0.41", + "x": 34.51145466761983, + "y": 137.03273763070925, + "size": 1.011757331274469, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −146.414; lat: 61.5779; mag: 1.9", + "x": 9.256880930977474, + "y": 101.92332086377532, + "size": 6.422352311536859, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −121.1191635; lat: 36.5750008; mag: 1", + "x": 32.538837106557395, + "y": 138.13609193649037, + "size": 1.416076634735527, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −122.831665; lat: 38.8371658; mag: 0.81", + "x": 30.9626108726533, + "y": 135.5039442577268, + "size": 1.1791073481007914, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −118.8825; lat: 38.0526; mag: 0.7", + "x": 34.59751424355014, + "y": 136.42598109841583, + "size": 1.0998999999999999, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −116.5515; lat: 33.4958333; mag: 0.64", + "x": 36.743020890540194, + "y": 141.59826015011518, + "size": 1.0698060757351104, + "shape": "circle" + }, + { + "strokeWidth": 2, + "opacity": 0.35, + "fill": "steelblue", + "ariaRoleDescription": "circle", + "description": "lon: −118.9881667; lat: 37.6145; mag: 0.43", + "x": 34.50025615379661, + "y": 136.93654282667552, + "size": 1.0142248321491045, + "shape": "circle" + } + ], + "marktype": "symbol", + "name": "view_10_marks", + "role": "mark", + "zindex": 0 + }, + { + "clip": true, + "interactive": true, + "items": [ + { + "fill": "transparent", + "x": 42.773173956930336, + "y": 0, + "x2": 97.99857027585085, + "y2": 300, + "stroke": "white", + "width": 55.22539631892052, + "height": 300 + } + ], + "marktype": "rect", + "name": "param_9_brush", + "role": "mark", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 0.35, + "x": 17, + "y": 5, + "fill": "steelblue", + "shape": "circle", + "size": 1, + "stroke": "transparent", + "strokeWidth": 1.5 + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 38, + "y": 5, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "0" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 43.5615234375, + "height": 10, + "opacity": 1, + "x": 0, + "y": 0 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 0.35, + "x": 17, + "y": 5, + "fill": "steelblue", + "shape": "circle", + "size": 1.416076634735527, + "stroke": "transparent", + "strokeWidth": 1.5 + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 38, + "y": 5, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "1" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 43.5615234375, + "height": 10, + "opacity": 1, + "x": 0, + "y": 12 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 0.35, + "x": 17, + "y": 5, + "fill": "steelblue", + "shape": "circle", + "size": 7.65722615576843, + "stroke": "transparent", + "strokeWidth": 1.5 + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 38, + "y": 5, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "2" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 43.5615234375, + "height": 10, + "opacity": 1, + "x": 0, + "y": 24 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 0.35, + "x": 17, + "y": 5, + "fill": "steelblue", + "shape": "circle", + "size": 34.702207413577675, + "stroke": "transparent", + "strokeWidth": 1.5 + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 38, + "y": 5, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "3" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 43.5615234375, + "height": 10, + "opacity": 1, + "x": 0, + "y": 36 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 0.35, + "x": 17, + "y": 6, + "fill": "steelblue", + "shape": "circle", + "size": 107.51561849229488, + "stroke": "transparent", + "strokeWidth": 1.5 + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 38, + "y": 6, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "4" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 43.5615234375, + "height": 12.68448691994432, + "opacity": 1, + "x": 0, + "y": 49 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 0.35, + "x": 17, + "y": 9, + "fill": "steelblue", + "shape": "circle", + "size": 261.0478967097043, + "stroke": "transparent", + "strokeWidth": 1.5 + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 38, + "y": 9, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "5" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 43.5615234375, + "height": 18.578488359676328, + "opacity": 1, + "x": 0, + "y": 65 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 0.35, + "x": 17, + "y": 12.5, + "fill": "steelblue", + "shape": "circle", + "size": 540.2353186172428, + "stroke": "transparent", + "strokeWidth": 1.5 + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 38, + "y": 12.5, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "6" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 43.5615234375, + "height": 25.621481388115313, + "opacity": 1, + "x": 0, + "y": 87 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 0.35, + "x": 17, + "y": 17, + "fill": "steelblue", + "shape": "circle", + "size": 1000, + "stroke": "transparent", + "strokeWidth": 1.5 + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 38, + "y": 17, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "7" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 43.5615234375, + "height": 34.311388300841884, + "opacity": 1, + "x": 0, + "y": 116 + } + ], + "marktype": "group", + "role": "scope", + "zindex": 0 + } + ], + "x": 0, + "y": 16 + } + ], + "marktype": "group", + "role": "legend-entry", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "orient": "top", + "text": "mag", + "limit": 180, + "x": 0, + "y": 0, + "angle": 0, + "align": "left", + "baseline": "top" + } + ], + "marktype": "text", + "role": "legend-title", + "zindex": 0 + } + ], + "orient": "right", + "x": 318, + "y": 0, + "width": 44, + "height": 167 + } + ], + "marktype": "group", + "role": "legend", + "zindex": 0 + } + ], + "fill": "transparent", + "x": 0, + "y": 0, + "width": 300, + "height": 300 + } + ], + "marktype": "group", + "name": "root", + "role": "frame", + "zindex": 0 + } +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/remote_images.png b/avenger-vega-test-data/vega-scenegraphs/vl-convert/remote_images.png new file mode 100644 index 0000000..bed1bf3 Binary files /dev/null and b/avenger-vega-test-data/vega-scenegraphs/vl-convert/remote_images.png differ diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/remote_images.sg.json b/avenger-vega-test-data/vega-scenegraphs/vl-convert/remote_images.sg.json new file mode 100644 index 0000000..cb09918 --- /dev/null +++ b/avenger-vega-test-data/vega-scenegraphs/vl-convert/remote_images.sg.json @@ -0,0 +1,612 @@ +{ + "width": 264, + "height": 260, + "origin": [ + 41, + 23 + ], + "scenegraph": { + "clip": false, + "interactive": true, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": -200, + "y2": 0 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 38, + "y": -200, + "y2": 0 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 77, + "y": -200, + "y2": 0 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 115, + "y": -200, + "y2": 0 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 154, + "y": -200, + "y2": 0 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 192, + "y": -200, + "y2": 0 + } + ], + "marktype": "rule", + "role": "axis-grid", + "zindex": 0 + } + ], + "orient": "bottom", + "offset": 0, + "x": 0.5, + "y": 200.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0, + "aria": false + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 200, + "x2": 200 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 162, + "x2": 200 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 123, + "x2": 200 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 85, + "x2": 200 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 46, + "x2": 200 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 8, + "x2": 200 + } + ], + "marktype": "rule", + "role": "axis-grid", + "zindex": 0 + } + ], + "orient": "left", + "offset": 0, + "x": 0.5, + "y": 0.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0, + "aria": false + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 0 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 38 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 77 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 115 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 154 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 192 + } + ], + "marktype": "rule", + "role": "axis-tick", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 0, + "y": 7, + "angle": 0, + "limit": 180, + "text": "0.0", + "align": "left", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 38.46153846153846, + "y": 7, + "angle": 0, + "limit": 180, + "text": "0.5", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 76.92307692307692, + "y": 7, + "angle": 0, + "limit": 180, + "text": "1.0", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 115.38461538461537, + "y": 7, + "angle": 0, + "limit": 180, + "text": "1.5", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 153.84615384615384, + "y": 7, + "angle": 0, + "limit": 180, + "text": "2.0", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 192.3076923076923, + "y": 7, + "angle": 0, + "limit": 180, + "text": "2.5", + "align": "center", + "baseline": "top" + } + ], + "marktype": "text", + "role": "axis-label", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "x": 0, + "x2": 200, + "y": 0 + } + ], + "marktype": "rule", + "role": "axis-domain", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "align": "center", + "angle": 0, + "baseline": "top", + "text": "x", + "x": 100, + "y": 21 + } + ], + "marktype": "text", + "role": "axis-title", + "zindex": 0 + } + ], + "orient": "bottom", + "offset": 0, + "x": 0.5, + "y": 200.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 200, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 162, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 123, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 85, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 46, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 8, + "x": 0, + "x2": -5 + } + ], + "marktype": "rule", + "role": "axis-tick", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 200, + "angle": 0, + "limit": 180, + "text": "0.0", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 161.53846153846155, + "angle": 0, + "limit": 180, + "text": "0.5", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 123.07692307692308, + "angle": 0, + "limit": 180, + "text": "1.0", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 84.61538461538463, + "angle": 0, + "limit": 180, + "text": "1.5", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 46.15384615384617, + "angle": 0, + "limit": 180, + "text": "2.0", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 7.692307692307709, + "angle": 0, + "limit": 180, + "text": "2.5", + "align": "right", + "baseline": "middle" + } + ], + "marktype": "text", + "role": "axis-label", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "x": 0, + "y": 200, + "y2": 0 + } + ], + "marktype": "rule", + "role": "axis-domain", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "align": "center", + "angle": -90, + "baseline": "bottom", + "text": "y", + "y": 100, + "x": -24.9013671875 + } + ], + "marktype": "text", + "role": "axis-title", + "zindex": 0 + } + ], + "orient": "left", + "offset": 0, + "x": 0.5, + "y": 0.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0 + }, + { + "clip": false, + "interactive": true, + "items": [ + { + "description": "x: 0.5; y: 0.5; img: https://upload.wikimedia.org/wikipedia/commons/a/a0/Firefox_logo%2C_2019.svg", + "width": 50, + "height": 50, + "url": "https://upload.wikimedia.org/wikipedia/commons/a/a0/Firefox_logo%2C_2019.svg", + "x": 13.46153846153846, + "y": 136.53846153846155 + }, + { + "description": "x: 1.5; y: 1.5; img: https://vega.github.io/vega-datasets/data/gimp.png", + "width": 50, + "height": 50, + "url": "https://vega.github.io/vega-datasets/data/gimp.png", + "x": 90.38461538461537, + "y": 59.61538461538463 + }, + { + "description": "x: 2.5; y: 2.5; img: https://vega.github.io/vega-datasets/data/7zip.png", + "width": 50, + "height": 50, + "url": "https://vega.github.io/vega-datasets/data/7zip.png", + "x": 167.3076923076923, + "y": -17.307692307692292 + } + ], + "marktype": "image", + "name": "marks", + "role": "mark", + "zindex": 0 + } + ], + "fill": "transparent", + "stroke": "#ddd", + "x": 0, + "y": 0, + "width": 200, + "height": 200 + } + ], + "marktype": "group", + "name": "root", + "role": "frame", + "zindex": 0 + } +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/seattle-weather.png b/avenger-vega-test-data/vega-scenegraphs/vl-convert/seattle-weather.png new file mode 100644 index 0000000..55b6a5d Binary files /dev/null and b/avenger-vega-test-data/vega-scenegraphs/vl-convert/seattle-weather.png differ diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/seattle-weather.sg.json b/avenger-vega-test-data/vega-scenegraphs/vl-convert/seattle-weather.sg.json new file mode 100644 index 0000000..9b9af9b --- /dev/null +++ b/avenger-vega-test-data/vega-scenegraphs/vl-convert/seattle-weather.sg.json @@ -0,0 +1,19944 @@ +{ + "width": 752, + "height": 520, + "origin": [ + 57, + 28 + ], + "scenegraph": { + "clip": false, + "interactive": true, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": true, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": -300, + "y2": 0 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 51, + "y": -300, + "y2": 0 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 99, + "y": -300, + "y2": 0 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 150, + "y": -300, + "y2": 0 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 199, + "y": -300, + "y2": 0 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 250, + "y": -300, + "y2": 0 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 299, + "y": -300, + "y2": 0 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 350, + "y": -300, + "y2": 0 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 401, + "y": -300, + "y2": 0 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 450, + "y": -300, + "y2": 0 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 501, + "y": -300, + "y2": 0 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 551, + "y": -300, + "y2": 0 + } + ], + "marktype": "rule", + "role": "axis-grid", + "zindex": 0 + } + ], + "orient": "bottom", + "offset": 0, + "x": 0.5, + "y": 300.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0, + "aria": false + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 300, + "x2": 600 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 267, + "x2": 600 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 233, + "x2": 600 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 200, + "x2": 600 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 167, + "x2": 600 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 133, + "x2": 600 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 100, + "x2": 600 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 67, + "x2": 600 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 33, + "x2": 600 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 0, + "x2": 600 + } + ], + "marktype": "rule", + "role": "axis-grid", + "zindex": 0 + } + ], + "orient": "left", + "offset": 0, + "x": 0.5, + "y": 0.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0, + "aria": false + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 0 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 51 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 99 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 150 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 199 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 250 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 299 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 350 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 401 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 450 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 501 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 551 + } + ], + "marktype": "rule", + "role": "axis-tick", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 0, + "y": 7, + "angle": 0, + "limit": 180, + "text": "Jan", + "align": "left", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 50.95890410958904, + "y": 7, + "angle": 0, + "limit": 180, + "text": "Feb", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 98.63013698630137, + "y": 7, + "angle": 0, + "limit": 180, + "text": "Mar", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 149.52054794520546, + "y": 7, + "angle": 0, + "limit": 180, + "text": "Apr", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 198.83561643835617, + "y": 7, + "angle": 0, + "limit": 180, + "text": "May", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 249.7945205479452, + "y": 7, + "angle": 0, + "limit": 180, + "text": "Jun", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 299.1095890410959, + "y": 7, + "angle": 0, + "limit": 180, + "text": "Jul", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 350.06849315068496, + "y": 7, + "angle": 0, + "limit": 180, + "text": "Aug", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 401.027397260274, + "y": 7, + "angle": 0, + "limit": 180, + "text": "Sep", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 450.3424657534247, + "y": 7, + "angle": 0, + "limit": 180, + "text": "Oct", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 501.3013698630137, + "y": 7, + "angle": 0, + "limit": 180, + "text": "Nov", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 550.6849315068494, + "y": 7, + "angle": 0, + "limit": 180, + "text": "Dec", + "align": "center", + "baseline": "top" + } + ], + "marktype": "text", + "role": "axis-label", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "x": 0, + "x2": 600, + "y": 0 + } + ], + "marktype": "rule", + "role": "axis-domain", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "align": "center", + "angle": 0, + "baseline": "top", + "text": "Date", + "x": 300, + "y": 21 + } + ], + "marktype": "text", + "role": "axis-title", + "zindex": 0 + } + ], + "orient": "bottom", + "offset": 0, + "x": 0.5, + "y": 300.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 300, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 267, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 233, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 200, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 167, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 133, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 100, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 67, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 33, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "x": 0, + "x2": -5 + } + ], + "marktype": "rule", + "role": "axis-tick", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 300, + "angle": 0, + "limit": 180, + "text": "−5", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 266.66666666666663, + "angle": 0, + "limit": 180, + "text": "0", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 233.33333333333334, + "angle": 0, + "limit": 180, + "text": "5", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 200.00000000000003, + "angle": 0, + "limit": 180, + "text": "10", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 166.66666666666669, + "angle": 0, + "limit": 180, + "text": "15", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 133.33333333333331, + "angle": 0, + "limit": 180, + "text": "20", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 100.00000000000001, + "angle": 0, + "limit": 180, + "text": "25", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 66.66666666666666, + "angle": 0, + "limit": 180, + "text": "30", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 33.33333333333335, + "angle": 0, + "limit": 180, + "text": "35", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 0, + "angle": 0, + "limit": 180, + "text": "40", + "align": "right", + "baseline": "middle" + } + ], + "marktype": "text", + "role": "axis-label", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "x": 0, + "y": 300, + "y2": 0 + } + ], + "marktype": "rule", + "role": "axis-domain", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "align": "center", + "angle": -90, + "baseline": "bottom", + "text": "Maximum Daily Temperature (C)", + "y": 150, + "x": -22.4013671875 + } + ], + "marktype": "text", + "role": "axis-title", + "zindex": 0 + } + ], + "orient": "left", + "offset": 0, + "x": 0.5, + "y": 0.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0 + }, + { + "clip": true, + "interactive": true, + "items": [ + { + "fill": "#333", + "fillOpacity": 0.125, + "x": 0, + "y": 0, + "x2": 0, + "y2": 0, + "width": 0, + "height": 0 + } + ], + "marktype": "rect", + "name": "brush_brush_bg", + "role": "mark", + "zindex": 0 + }, + { + "clip": false, + "interactive": true, + "items": [ + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 12.8; Weather: drizzle; Precipitation: 0", + "x": 600, + "y": 181.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 10.6; Weather: rain; Precipitation: 10.9", + "x": 0, + "y": 196, + "size": 84.23333333333333 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 11.7; Weather: rain; Precipitation: 0.8", + "x": 1.643835616438356, + "y": 188.66666666666666, + "size": 12.741176470588234 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 12.2; Weather: rain; Precipitation: 20.3", + "x": 3.287671232876712, + "y": 185.33333333333331, + "size": 150.77058823529413 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 8.9; Weather: rain; Precipitation: 1.3", + "x": 4.931506849315068, + "y": 207.33333333333334, + "size": 16.280392156862746 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 4.4; Weather: rain; Precipitation: 2.5", + "x": 6.575342465753424, + "y": 237.33333333333334, + "size": 24.77450980392157 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 7.2; Weather: rain; Precipitation: 0", + "x": 8.21917808219178, + "y": 218.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 10; Weather: sun; Precipitation: 0", + "x": 9.863013698630136, + "y": 200.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 9.4; Weather: rain; Precipitation: 4.3", + "x": 11.506849315068493, + "y": 203.99999999999997, + "size": 37.515686274509804 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 6.1; Weather: rain; Precipitation: 1", + "x": 13.150684931506849, + "y": 226.00000000000003, + "size": 14.156862745098039 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 6.1; Weather: sun; Precipitation: 0", + "x": 14.794520547945204, + "y": 226.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 6.1; Weather: sun; Precipitation: 0", + "x": 16.43835616438356, + "y": 226.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 5; Weather: sun; Precipitation: 0", + "x": 18.08219178082192, + "y": 233.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#9467bd", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 4.4; Weather: snow; Precipitation: 4.1", + "x": 19.72602739726027, + "y": 237.33333333333334, + "size": 36.099999999999994 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#9467bd", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 1.1; Weather: snow; Precipitation: 5.3", + "x": 21.36986301369863, + "y": 259.3333333333333, + "size": 44.59411764705882 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#9467bd", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 1.7; Weather: snow; Precipitation: 2.5", + "x": 23.013698630136986, + "y": 255.33333333333334, + "size": 24.77450980392157 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#9467bd", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 3.3; Weather: snow; Precipitation: 8.1", + "x": 24.65753424657534, + "y": 244.66666666666669, + "size": 64.41372549019609 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#9467bd", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 0; Weather: snow; Precipitation: 19.8", + "x": 26.301369863013697, + "y": 266.66666666666663, + "size": 147.2313725490196 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#9467bd", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): −1.1; Weather: snow; Precipitation: 15.2", + "x": 27.945205479452056, + "y": 274, + "size": 114.6705882352941 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#9467bd", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 7.2; Weather: snow; Precipitation: 13.5", + "x": 29.58904109589041, + "y": 218.66666666666669, + "size": 102.63725490196079 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 8.3; Weather: rain; Precipitation: 3", + "x": 31.232876712328768, + "y": 211.33333333333331, + "size": 28.313725490196077 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 6.7; Weather: rain; Precipitation: 6.1", + "x": 32.87671232876712, + "y": 222, + "size": 50.25686274509804 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 8.3; Weather: rain; Precipitation: 0", + "x": 34.52054794520548, + "y": 211.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 10; Weather: rain; Precipitation: 8.6", + "x": 36.16438356164384, + "y": 200.00000000000003, + "size": 67.95294117647059 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 8.9; Weather: rain; Precipitation: 8.1", + "x": 37.8082191780822, + "y": 207.33333333333334, + "size": 64.41372549019609 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 8.9; Weather: rain; Precipitation: 4.8", + "x": 39.45205479452054, + "y": 207.33333333333334, + "size": 41.05490196078431 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 6.7; Weather: drizzle; Precipitation: 0", + "x": 41.0958904109589, + "y": 222, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 6.7; Weather: rain; Precipitation: 0", + "x": 42.73972602739726, + "y": 222, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 9.4; Weather: rain; Precipitation: 27.7", + "x": 44.38356164383562, + "y": 203.99999999999997, + "size": 203.15098039215687 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 8.3; Weather: rain; Precipitation: 3.6", + "x": 46.02739726027397, + "y": 211.33333333333331, + "size": 32.56078431372549 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 9.4; Weather: rain; Precipitation: 1.8", + "x": 47.67123287671233, + "y": 203.99999999999997, + "size": 19.819607843137256 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 8.9; Weather: rain; Precipitation: 13.5", + "x": 49.31506849315068, + "y": 207.33333333333334, + "size": 102.63725490196079 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 8.3; Weather: sun; Precipitation: 0", + "x": 50.95890410958904, + "y": 211.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 14.4; Weather: sun; Precipitation: 0", + "x": 52.602739726027394, + "y": 170.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 15.6; Weather: sun; Precipitation: 0", + "x": 54.24657534246575, + "y": 162.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 13.9; Weather: sun; Precipitation: 0", + "x": 55.89041095890411, + "y": 174.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 16.1; Weather: sun; Precipitation: 0", + "x": 57.534246575342465, + "y": 159.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 15.6; Weather: rain; Precipitation: 0.3", + "x": 59.17808219178082, + "y": 162.66666666666666, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 10; Weather: rain; Precipitation: 2.8", + "x": 60.821917808219176, + "y": 200.00000000000003, + "size": 26.898039215686275 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 2.5", + "x": 62.465753424657535, + "y": 192.66666666666669, + "size": 24.77450980392157 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 12.8; Weather: rain; Precipitation: 2.5", + "x": 64.10958904109589, + "y": 181.33333333333334, + "size": 24.77450980392157 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 8.9; Weather: rain; Precipitation: 0.8", + "x": 65.75342465753424, + "y": 207.33333333333334, + "size": 12.741176470588234 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 8.3; Weather: rain; Precipitation: 1", + "x": 67.3972602739726, + "y": 211.33333333333331, + "size": 14.156862745098039 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 7.2; Weather: rain; Precipitation: 11.4", + "x": 69.04109589041096, + "y": 218.66666666666669, + "size": 87.77254901960784 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 6.7; Weather: rain; Precipitation: 2.5", + "x": 70.68493150684931, + "y": 222, + "size": 24.77450980392157 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 7.2; Weather: drizzle; Precipitation: 0", + "x": 72.32876712328768, + "y": 218.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 7.2; Weather: rain; Precipitation: 1.8", + "x": 73.97260273972603, + "y": 218.66666666666669, + "size": 19.819607843137256 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 10; Weather: rain; Precipitation: 17.3", + "x": 75.6164383561644, + "y": 200.00000000000003, + "size": 129.53529411764706 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 6.7; Weather: rain; Precipitation: 6.4", + "x": 77.26027397260273, + "y": 222, + "size": 52.38039215686275 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 6.7; Weather: sun; Precipitation: 0", + "x": 78.90410958904108, + "y": 222, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 7.8; Weather: rain; Precipitation: 3", + "x": 80.54794520547945, + "y": 214.66666666666666, + "size": 28.313725490196077 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 10; Weather: rain; Precipitation: 0.8", + "x": 82.1917808219178, + "y": 200.00000000000003, + "size": 12.741176470588234 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 10; Weather: rain; Precipitation: 8.6", + "x": 83.83561643835617, + "y": 200.00000000000003, + "size": 67.95294117647059 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 8.3; Weather: sun; Precipitation: 0", + "x": 85.47945205479452, + "y": 211.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 6.7; Weather: rain; Precipitation: 11.4", + "x": 87.12328767123287, + "y": 222, + "size": 87.77254901960784 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 7.2; Weather: rain; Precipitation: 0", + "x": 88.76712328767124, + "y": 218.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#9467bd", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 5; Weather: snow; Precipitation: 1.3", + "x": 90.41095890410958, + "y": 233.33333333333334, + "size": 16.280392156862746 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 6.7; Weather: sun; Precipitation: 0", + "x": 92.05479452054794, + "y": 222, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#9467bd", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 6.7; Weather: snow; Precipitation: 3.6", + "x": 93.6986301369863, + "y": 222, + "size": 32.56078431372549 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#9467bd", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 5; Weather: snow; Precipitation: 0.8", + "x": 95.34246575342466, + "y": 233.33333333333334, + "size": 12.741176470588234 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 6.1; Weather: sun; Precipitation: 0", + "x": 96.98630136986301, + "y": 226.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 6.7; Weather: rain; Precipitation: 2", + "x": 98.63013698630137, + "y": 222, + "size": 21.235294117647058 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 12.2; Weather: sun; Precipitation: 0", + "x": 100.27397260273973, + "y": 185.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 10.6; Weather: rain; Precipitation: 0", + "x": 101.91780821917808, + "y": 196, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 7.8; Weather: rain; Precipitation: 6.9", + "x": 103.56164383561645, + "y": 214.66666666666666, + "size": 55.91960784313726 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#9467bd", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 6.7; Weather: snow; Precipitation: 0.5", + "x": 105.20547945205479, + "y": 222, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 8.9; Weather: sun; Precipitation: 0", + "x": 106.84931506849314, + "y": 207.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 15.6; Weather: sun; Precipitation: 0", + "x": 108.4931506849315, + "y": 162.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 9.4; Weather: rain; Precipitation: 3.6", + "x": 110.13698630136986, + "y": 203.99999999999997, + "size": 32.56078431372549 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 7.2; Weather: rain; Precipitation: 10.4", + "x": 111.78082191780823, + "y": 218.66666666666669, + "size": 80.69411764705883 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 6.7; Weather: rain; Precipitation: 13.7", + "x": 113.42465753424658, + "y": 222, + "size": 104.05294117647058 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#9467bd", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 8.3; Weather: snow; Precipitation: 19.3", + "x": 115.06849315068493, + "y": 211.33333333333331, + "size": 143.69215686274512 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#9467bd", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 5.6; Weather: snow; Precipitation: 9.4", + "x": 116.64383561643835, + "y": 229.33333333333334, + "size": 73.6156862745098 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 7.8; Weather: rain; Precipitation: 8.6", + "x": 118.2876712328767, + "y": 214.66666666666666, + "size": 67.95294117647059 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#9467bd", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 11.1; Weather: snow; Precipitation: 23.9", + "x": 119.93150684931507, + "y": 192.66666666666669, + "size": 176.25294117647059 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 8.9; Weather: rain; Precipitation: 8.4", + "x": 121.57534246575342, + "y": 207.33333333333334, + "size": 66.5372549019608 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#9467bd", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 10; Weather: snow; Precipitation: 9.4", + "x": 123.21917808219179, + "y": 200.00000000000003, + "size": 73.6156862745098 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 5; Weather: rain; Precipitation: 3.6", + "x": 124.86301369863014, + "y": 233.33333333333334, + "size": 32.56078431372549 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 7.2; Weather: rain; Precipitation: 2", + "x": 126.5068493150685, + "y": 218.66666666666669, + "size": 21.235294117647058 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 7.8; Weather: rain; Precipitation: 3.6", + "x": 128.15068493150685, + "y": 214.66666666666666, + "size": 32.56078431372549 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 8.9; Weather: rain; Precipitation: 1.3", + "x": 129.7945205479452, + "y": 207.33333333333334, + "size": 16.280392156862746 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 10; Weather: rain; Precipitation: 4.1", + "x": 131.43835616438358, + "y": 200.00000000000003, + "size": 36.099999999999994 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 12.2; Weather: sun; Precipitation: 0", + "x": 133.08219178082192, + "y": 185.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 15; Weather: sun; Precipitation: 0", + "x": 134.72602739726025, + "y": 166.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 13.3; Weather: rain; Precipitation: 0", + "x": 136.36986301369862, + "y": 177.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 12.8; Weather: drizzle; Precipitation: 0", + "x": 138.013698630137, + "y": 181.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 14.4; Weather: rain; Precipitation: 4.8", + "x": 139.65753424657535, + "y": 170.66666666666669, + "size": 41.05490196078431 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 10.6; Weather: rain; Precipitation: 1.3", + "x": 141.3013698630137, + "y": 196, + "size": 16.280392156862746 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 10; Weather: rain; Precipitation: 27.4", + "x": 142.94520547945206, + "y": 200.00000000000003, + "size": 201.02745098039216 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 9.4; Weather: rain; Precipitation: 5.6", + "x": 144.58904109589042, + "y": 203.99999999999997, + "size": 46.71764705882352 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 10; Weather: rain; Precipitation: 13.2", + "x": 146.23287671232876, + "y": 200.00000000000003, + "size": 100.51372549019608 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 8.9; Weather: rain; Precipitation: 1.5", + "x": 147.87671232876713, + "y": 207.33333333333334, + "size": 17.69607843137255 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 16.7; Weather: sun; Precipitation: 0", + "x": 149.52054794520546, + "y": 155.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 11.7; Weather: rain; Precipitation: 1.5", + "x": 151.16438356164383, + "y": 188.66666666666666, + "size": 17.69607843137255 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 10.6; Weather: sun; Precipitation: 0", + "x": 152.8082191780822, + "y": 196, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#9467bd", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 9.4; Weather: snow; Precipitation: 4.6", + "x": 154.45205479452054, + "y": 203.99999999999997, + "size": 39.63921568627451 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 0.3", + "x": 156.0958904109589, + "y": 192.66666666666669, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 16.1; Weather: sun; Precipitation: 0", + "x": 157.73972602739727, + "y": 159.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 21.1; Weather: sun; Precipitation: 0", + "x": 159.38356164383563, + "y": 125.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 20; Weather: sun; Precipitation: 0", + "x": 161.02739726027397, + "y": 133.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 17.8; Weather: rain; Precipitation: 0", + "x": 162.67123287671234, + "y": 148, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 2.3", + "x": 164.31506849315068, + "y": 192.66666666666669, + "size": 23.35882352941176 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 13.9; Weather: rain; Precipitation: 0.5", + "x": 165.95890410958904, + "y": 174.00000000000003, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 15; Weather: drizzle; Precipitation: 0", + "x": 167.6027397260274, + "y": 166.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 15.6; Weather: sun; Precipitation: 0", + "x": 169.24657534246575, + "y": 162.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 16.1; Weather: rain; Precipitation: 0", + "x": 170.8904109589041, + "y": 159.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 13.3; Weather: rain; Precipitation: 8.1", + "x": 172.53424657534245, + "y": 177.99999999999997, + "size": 64.41372549019609 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 10; Weather: rain; Precipitation: 1.8", + "x": 174.17808219178085, + "y": 200.00000000000003, + "size": 19.819607843137256 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 13.3; Weather: rain; Precipitation: 1.8", + "x": 175.82191780821918, + "y": 177.99999999999997, + "size": 19.819607843137256 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 13.9; Weather: rain; Precipitation: 10.9", + "x": 177.46575342465752, + "y": 174.00000000000003, + "size": 84.23333333333333 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 13.3; Weather: rain; Precipitation: 6.6", + "x": 179.1095890410959, + "y": 177.99999999999997, + "size": 53.79607843137255 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 20; Weather: sun; Precipitation: 0", + "x": 180.75342465753423, + "y": 133.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 23.3; Weather: rain; Precipitation: 0", + "x": 182.39726027397262, + "y": 111.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 21.7; Weather: sun; Precipitation: 0", + "x": 184.04109589041096, + "y": 122.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 13.9; Weather: rain; Precipitation: 4.3", + "x": 185.68493150684932, + "y": 174.00000000000003, + "size": 37.515686274509804 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 16.7; Weather: rain; Precipitation: 10.7", + "x": 187.32876712328766, + "y": 155.33333333333334, + "size": 82.81764705882352 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 13.9; Weather: rain; Precipitation: 3.8", + "x": 188.97260273972603, + "y": 174.00000000000003, + "size": 33.976470588235294 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 13.3; Weather: rain; Precipitation: 0.8", + "x": 190.6164383561644, + "y": 177.99999999999997, + "size": 12.741176470588234 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 16.1; Weather: drizzle; Precipitation: 0", + "x": 192.26027397260276, + "y": 159.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 15.6; Weather: rain; Precipitation: 4.3", + "x": 193.9041095890411, + "y": 162.66666666666666, + "size": 37.515686274509804 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 12.8; Weather: rain; Precipitation: 4.3", + "x": 195.54794520547944, + "y": 181.33333333333334, + "size": 37.515686274509804 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 11.7; Weather: rain; Precipitation: 0.5", + "x": 197.1917808219178, + "y": 188.66666666666666, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 13.3; Weather: rain; Precipitation: 0.5", + "x": 198.83561643835617, + "y": 177.99999999999997, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 18.5", + "x": 200.47945205479454, + "y": 192.66666666666669, + "size": 138.02941176470588 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 12.2; Weather: rain; Precipitation: 1.8", + "x": 202.12328767123287, + "y": 185.33333333333331, + "size": 19.819607843137256 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 13.3; Weather: sun; Precipitation: 0", + "x": 203.76712328767124, + "y": 177.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 17.8; Weather: sun; Precipitation: 0", + "x": 205.41095890410958, + "y": 148, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 23.9; Weather: sun; Precipitation: 0", + "x": 207.05479452054794, + "y": 107.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 18.3; Weather: sun; Precipitation: 0", + "x": 208.6986301369863, + "y": 144.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 13.3; Weather: rain; Precipitation: 0", + "x": 210.34246575342465, + "y": 177.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 14.4; Weather: sun; Precipitation: 0", + "x": 211.986301369863, + "y": 170.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 18.3; Weather: sun; Precipitation: 0", + "x": 213.63013698630135, + "y": 144.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 24.4; Weather: sun; Precipitation: 0", + "x": 215.27397260273975, + "y": 104, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 25.6; Weather: sun; Precipitation: 0", + "x": 216.91780821917808, + "y": 95.99999999999999, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 26.7; Weather: sun; Precipitation: 0", + "x": 218.56164383561645, + "y": 88.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 24.4; Weather: drizzle; Precipitation: 0", + "x": 220.2054794520548, + "y": 104, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 19.4; Weather: sun; Precipitation: 0", + "x": 221.84931506849313, + "y": 137.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 17.8; Weather: rain; Precipitation: 0", + "x": 223.49315068493152, + "y": 148, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 15.6; Weather: rain; Precipitation: 0", + "x": 225.13698630136986, + "y": 162.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 19.4; Weather: sun; Precipitation: 0", + "x": 226.78082191780823, + "y": 137.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 14.4; Weather: rain; Precipitation: 6.4", + "x": 228.42465753424656, + "y": 170.66666666666669, + "size": 52.38039215686275 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 16.7; Weather: rain; Precipitation: 14", + "x": 230.06849315068493, + "y": 155.33333333333334, + "size": 106.1764705882353 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 12.8; Weather: rain; Precipitation: 6.1", + "x": 231.7123287671233, + "y": 181.33333333333334, + "size": 50.25686274509804 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 14.4; Weather: rain; Precipitation: 0.3", + "x": 233.35616438356166, + "y": 170.66666666666669, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 17.2; Weather: rain; Precipitation: 0", + "x": 235, + "y": 152, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 22.2; Weather: rain; Precipitation: 0", + "x": 236.64383561643834, + "y": 118.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 22.2; Weather: sun; Precipitation: 0", + "x": 238.2876712328767, + "y": 118.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 17.2; Weather: sun; Precipitation: 0", + "x": 239.93150684931507, + "y": 152, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 16.7; Weather: rain; Precipitation: 0", + "x": 241.57534246575344, + "y": 155.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 16.1; Weather: sun; Precipitation: 0", + "x": 243.21917808219177, + "y": 159.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 18.9; Weather: rain; Precipitation: 0.3", + "x": 244.86301369863014, + "y": 140.66666666666669, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 17.8; Weather: rain; Precipitation: 3.8", + "x": 246.50684931506848, + "y": 148, + "size": 33.976470588235294 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 20; Weather: rain; Precipitation: 6.6", + "x": 248.15068493150687, + "y": 133.33333333333331, + "size": 53.79607843137255 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 18.9; Weather: rain; Precipitation: 0.3", + "x": 249.7945205479452, + "y": 140.66666666666669, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 17.2; Weather: sun; Precipitation: 0", + "x": 251.43835616438355, + "y": 152, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 12.8; Weather: rain; Precipitation: 1.3", + "x": 253.08219178082192, + "y": 181.33333333333334, + "size": 16.280392156862746 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 13.3; Weather: rain; Precipitation: 16", + "x": 254.72602739726025, + "y": 177.99999999999997, + "size": 120.33333333333333 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 16.1; Weather: sun; Precipitation: 0", + "x": 256.36986301369865, + "y": 159.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 16.1; Weather: rain; Precipitation: 16.5", + "x": 258.013698630137, + "y": 159.33333333333331, + "size": 123.87254901960785 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 15; Weather: rain; Precipitation: 1.5", + "x": 259.6575342465753, + "y": 166.66666666666669, + "size": 17.69607843137255 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 17.2; Weather: rain; Precipitation: 0", + "x": 261.3013698630137, + "y": 152, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 18.9; Weather: sun; Precipitation: 0", + "x": 262.94520547945206, + "y": 140.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 23.3; Weather: rain; Precipitation: 0", + "x": 264.5890410958904, + "y": 111.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 18.3; Weather: rain; Precipitation: 0.8", + "x": 266.2328767123288, + "y": 144.66666666666666, + "size": 12.741176470588234 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 16.1; Weather: sun; Precipitation: 0", + "x": 267.8767123287671, + "y": 159.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 17.2; Weather: sun; Precipitation: 0", + "x": 269.52054794520546, + "y": 152, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 22.2; Weather: sun; Precipitation: 0", + "x": 271.16438356164383, + "y": 118.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 21.1; Weather: rain; Precipitation: 0", + "x": 272.8082191780822, + "y": 125.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 18.9; Weather: sun; Precipitation: 0", + "x": 274.45205479452056, + "y": 140.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 17.2; Weather: rain; Precipitation: 3", + "x": 276.0958904109589, + "y": 152, + "size": 28.313725490196077 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 19.4; Weather: rain; Precipitation: 1", + "x": 277.73972602739724, + "y": 137.33333333333334, + "size": 14.156862745098039 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 24.4; Weather: sun; Precipitation: 0", + "x": 279.3835616438356, + "y": 104, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 23.9; Weather: sun; Precipitation: 0", + "x": 281.027397260274, + "y": 107.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 13.9; Weather: rain; Precipitation: 15.7", + "x": 282.67123287671234, + "y": 174.00000000000003, + "size": 118.20980392156862 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 15.6; Weather: rain; Precipitation: 8.6", + "x": 284.3150684931507, + "y": 162.66666666666666, + "size": 67.95294117647059 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 19.4; Weather: drizzle; Precipitation: 0", + "x": 285.958904109589, + "y": 137.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 19.4; Weather: rain; Precipitation: 0.5", + "x": 287.60273972602744, + "y": 137.33333333333334, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 18.3; Weather: rain; Precipitation: 0", + "x": 289.24657534246575, + "y": 144.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 22.8; Weather: sun; Precipitation: 0", + "x": 290.8904109589041, + "y": 114.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 22.2; Weather: rain; Precipitation: 0", + "x": 292.5342465753425, + "y": 118.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 21.7; Weather: rain; Precipitation: 0.3", + "x": 294.1780821917808, + "y": 122.00000000000001, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 20; Weather: rain; Precipitation: 3", + "x": 295.8219178082192, + "y": 133.33333333333331, + "size": 28.313725490196077 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 20; Weather: rain; Precipitation: 0", + "x": 297.4657534246575, + "y": 133.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 18.9; Weather: rain; Precipitation: 2", + "x": 299.1095890410959, + "y": 140.66666666666669, + "size": 21.235294117647058 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 18.3; Weather: rain; Precipitation: 5.8", + "x": 300.75342465753425, + "y": 144.66666666666666, + "size": 48.13333333333333 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 20.6; Weather: sun; Precipitation: 0", + "x": 302.3972602739726, + "y": 129.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 24.4; Weather: drizzle; Precipitation: 0", + "x": 304.041095890411, + "y": 104, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 25; Weather: sun; Precipitation: 0", + "x": 305.6849315068493, + "y": 100.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 26.7; Weather: sun; Precipitation: 0", + "x": 307.32876712328766, + "y": 88.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 28.3; Weather: rain; Precipitation: 0", + "x": 308.972602739726, + "y": 78, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 25; Weather: rain; Precipitation: 1.5", + "x": 310.6164383561644, + "y": 100.00000000000001, + "size": 17.69607843137255 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 23.9; Weather: drizzle; Precipitation: 0", + "x": 312.2602739726027, + "y": 107.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 27.8; Weather: fog; Precipitation: 0", + "x": 313.90410958904107, + "y": 81.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 25.6; Weather: drizzle; Precipitation: 0", + "x": 315.5479452054795, + "y": 95.99999999999999, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 23.3; Weather: rain; Precipitation: 0.5", + "x": 317.19178082191786, + "y": 111.33333333333331, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 25; Weather: rain; Precipitation: 0", + "x": 318.83561643835617, + "y": 100.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 18.9; Weather: rain; Precipitation: 0", + "x": 320.47945205479454, + "y": 140.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 26.1; Weather: rain; Precipitation: 0.3", + "x": 322.1232876712329, + "y": 92.66666666666666, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 21.7; Weather: sun; Precipitation: 0", + "x": 323.7671232876712, + "y": 122.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 21.1; Weather: sun; Precipitation: 0", + "x": 325.4109589041096, + "y": 125.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 25; Weather: sun; Precipitation: 0", + "x": 327.05479452054794, + "y": 100.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 19.4; Weather: rain; Precipitation: 15.2", + "x": 328.69863013698625, + "y": 137.33333333333334, + "size": 114.6705882352941 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 23.9; Weather: sun; Precipitation: 0", + "x": 330.3424657534246, + "y": 107.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 20.6; Weather: rain; Precipitation: 1", + "x": 331.98630136986304, + "y": 129.33333333333334, + "size": 14.156862745098039 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 18.9; Weather: rain; Precipitation: 0", + "x": 333.6301369863014, + "y": 140.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 23.3; Weather: sun; Precipitation: 0", + "x": 335.2739726027397, + "y": 111.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 26.7; Weather: sun; Precipitation: 0", + "x": 336.9178082191781, + "y": 88.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 25.6; Weather: drizzle; Precipitation: 0", + "x": 338.56164383561645, + "y": 95.99999999999999, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 18.9; Weather: drizzle; Precipitation: 0", + "x": 340.2054794520548, + "y": 140.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 22.2; Weather: drizzle; Precipitation: 0", + "x": 341.8493150684931, + "y": 118.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 22.8; Weather: sun; Precipitation: 0", + "x": 343.4931506849315, + "y": 114.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 19.4; Weather: sun; Precipitation: 0", + "x": 345.13698630136986, + "y": 137.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 22.8; Weather: sun; Precipitation: 0", + "x": 346.78082191780817, + "y": 114.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 23.9; Weather: drizzle; Precipitation: 0", + "x": 348.4246575342466, + "y": 107.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 23.3; Weather: sun; Precipitation: 0", + "x": 350.06849315068496, + "y": 111.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 27.2; Weather: sun; Precipitation: 0", + "x": 351.7123287671233, + "y": 85.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 33.9; Weather: sun; Precipitation: 0", + "x": 353.35616438356163, + "y": 40.666666666666664, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 33.9; Weather: sun; Precipitation: 0", + "x": 355, + "y": 40.666666666666664, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 28.3; Weather: rain; Precipitation: 0", + "x": 356.64383561643837, + "y": 78, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 21.1; Weather: drizzle; Precipitation: 0", + "x": 358.2876712328767, + "y": 125.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 22.2; Weather: sun; Precipitation: 0", + "x": 359.93150684931504, + "y": 118.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 24.4; Weather: drizzle; Precipitation: 0", + "x": 361.5753424657534, + "y": 104, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 25.6; Weather: sun; Precipitation: 0", + "x": 363.2191780821918, + "y": 95.99999999999999, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 28.3; Weather: sun; Precipitation: 0", + "x": 364.86301369863014, + "y": 78, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 30.6; Weather: sun; Precipitation: 0", + "x": 366.5068493150685, + "y": 62.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 30.6; Weather: sun; Precipitation: 0", + "x": 368.1506849315069, + "y": 62.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 28.9; Weather: sun; Precipitation: 0", + "x": 369.79452054794524, + "y": 74.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 31.1; Weather: sun; Precipitation: 0", + "x": 371.43835616438355, + "y": 59.333333333333314, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 34.4; Weather: sun; Precipitation: 0", + "x": 373.0821917808219, + "y": 37.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 32.8; Weather: sun; Precipitation: 0", + "x": 374.7260273972603, + "y": 48.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 21.7; Weather: drizzle; Precipitation: 0", + "x": 376.3698630136986, + "y": 122.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 23.3; Weather: drizzle; Precipitation: 0", + "x": 378.01369863013696, + "y": 111.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 25.6; Weather: sun; Precipitation: 0", + "x": 379.6575342465753, + "y": 95.99999999999999, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 23.3; Weather: rain; Precipitation: 0", + "x": 381.30136986301375, + "y": 111.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 22.2; Weather: sun; Precipitation: 0", + "x": 382.94520547945206, + "y": 118.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 21.1; Weather: sun; Precipitation: 0", + "x": 384.5890410958904, + "y": 125.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 22.2; Weather: sun; Precipitation: 0", + "x": 386.2328767123288, + "y": 118.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 26.1; Weather: sun; Precipitation: 0", + "x": 387.8767123287671, + "y": 92.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 21.1; Weather: sun; Precipitation: 0", + "x": 389.52054794520546, + "y": 125.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 23.9; Weather: sun; Precipitation: 0", + "x": 391.16438356164383, + "y": 107.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 22.8; Weather: sun; Precipitation: 0", + "x": 392.8082191780822, + "y": 114.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 22.8; Weather: sun; Precipitation: 0", + "x": 394.4520547945205, + "y": 114.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 22.8; Weather: sun; Precipitation: 0", + "x": 396.0958904109589, + "y": 114.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 22.2; Weather: sun; Precipitation: 0", + "x": 397.7397260273973, + "y": 118.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 21.7; Weather: sun; Precipitation: 0", + "x": 399.38356164383566, + "y": 122.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 21.1; Weather: sun; Precipitation: 0", + "x": 401.027397260274, + "y": 125.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 22.8; Weather: sun; Precipitation: 0", + "x": 402.67123287671234, + "y": 114.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 24.4; Weather: sun; Precipitation: 0", + "x": 404.3150684931507, + "y": 104, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 26.1; Weather: sun; Precipitation: 0", + "x": 405.958904109589, + "y": 92.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 28.3; Weather: sun; Precipitation: 0", + "x": 407.6027397260274, + "y": 78, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 32.2; Weather: sun; Precipitation: 0", + "x": 409.24657534246575, + "y": 51.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 25; Weather: sun; Precipitation: 0", + "x": 410.8904109589041, + "y": 100.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 18.9; Weather: rain; Precipitation: 0.3", + "x": 412.5342465753424, + "y": 140.66666666666669, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 20; Weather: rain; Precipitation: 0.3", + "x": 414.17808219178085, + "y": 133.33333333333331, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 20; Weather: sun; Precipitation: 0", + "x": 415.8219178082192, + "y": 133.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 22.2; Weather: sun; Precipitation: 0", + "x": 417.4657534246575, + "y": 118.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 27.8; Weather: sun; Precipitation: 0", + "x": 419.1095890410959, + "y": 81.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 26.1; Weather: sun; Precipitation: 0", + "x": 420.75342465753425, + "y": 92.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 22.2; Weather: sun; Precipitation: 0", + "x": 422.3972602739726, + "y": 118.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 24.4; Weather: sun; Precipitation: 0", + "x": 424.04109589041093, + "y": 104, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 27.8; Weather: fog; Precipitation: 0", + "x": 425.6849315068493, + "y": 81.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 27.8; Weather: sun; Precipitation: 0", + "x": 427.32876712328766, + "y": 81.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 23.9; Weather: drizzle; Precipitation: 0", + "x": 428.97260273972597, + "y": 107.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 19.4; Weather: drizzle; Precipitation: 0", + "x": 430.6164383561644, + "y": 137.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 16.1; Weather: drizzle; Precipitation: 0", + "x": 432.26027397260276, + "y": 159.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 19.4; Weather: rain; Precipitation: 0.3", + "x": 433.9041095890411, + "y": 137.33333333333334, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 19.4; Weather: fog; Precipitation: 0", + "x": 435.54794520547944, + "y": 137.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 21.1; Weather: fog; Precipitation: 0", + "x": 437.1917808219178, + "y": 125.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 19.4; Weather: sun; Precipitation: 0", + "x": 438.83561643835617, + "y": 137.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 19.4; Weather: drizzle; Precipitation: 0", + "x": 440.4794520547945, + "y": 137.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 22.8; Weather: drizzle; Precipitation: 0", + "x": 442.12328767123284, + "y": 114.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 25; Weather: rain; Precipitation: 0", + "x": 443.7671232876712, + "y": 100.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 20.6; Weather: sun; Precipitation: 0", + "x": 445.41095890410963, + "y": 129.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 21.1; Weather: sun; Precipitation: 0", + "x": 447.05479452054794, + "y": 125.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 23.3; Weather: sun; Precipitation: 0", + "x": 448.6986301369863, + "y": 111.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 17.8; Weather: sun; Precipitation: 0", + "x": 450.3424657534247, + "y": 148, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 18.9; Weather: sun; Precipitation: 0", + "x": 451.98630136986304, + "y": 140.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 18.9; Weather: sun; Precipitation: 0", + "x": 453.63013698630135, + "y": 140.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 21.7; Weather: sun; Precipitation: 0", + "x": 455.2739726027397, + "y": 122.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 23.9; Weather: sun; Precipitation: 0", + "x": 456.9178082191781, + "y": 107.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 23.9; Weather: sun; Precipitation: 0", + "x": 458.5616438356164, + "y": 107.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 21.1; Weather: sun; Precipitation: 0", + "x": 460.20547945205476, + "y": 125.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 16.1; Weather: drizzle; Precipitation: 0", + "x": 461.8493150684932, + "y": 159.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 12.2; Weather: drizzle; Precipitation: 0", + "x": 463.49315068493155, + "y": 185.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 13.9; Weather: drizzle; Precipitation: 0", + "x": 465.13698630136986, + "y": 174.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 13.9; Weather: rain; Precipitation: 2", + "x": 466.7808219178082, + "y": 174.00000000000003, + "size": 21.235294117647058 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 15.6; Weather: rain; Precipitation: 4.8", + "x": 468.4246575342466, + "y": 162.66666666666666, + "size": 41.05490196078431 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 17.8; Weather: rain; Precipitation: 16.5", + "x": 470.06849315068496, + "y": 148, + "size": 123.87254901960785 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 17.2; Weather: rain; Precipitation: 7.9", + "x": 471.71232876712327, + "y": 152, + "size": 62.99803921568628 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 16.1; Weather: sun; Precipitation: 0", + "x": 473.35616438356163, + "y": 159.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 14.4; Weather: sun; Precipitation: 0", + "x": 475, + "y": 170.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 17.8; Weather: rain; Precipitation: 20.8", + "x": 476.6438356164383, + "y": 148, + "size": 154.30980392156863 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 15; Weather: rain; Precipitation: 4.8", + "x": 478.28767123287673, + "y": 166.66666666666669, + "size": 41.05490196078431 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 0.5", + "x": 479.9315068493151, + "y": 192.66666666666669, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 11.7; Weather: rain; Precipitation: 6.4", + "x": 481.57534246575347, + "y": 188.66666666666666, + "size": 52.38039215686275 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 7.8; Weather: rain; Precipitation: 8.9", + "x": 483.2191780821918, + "y": 214.66666666666666, + "size": 70.0764705882353 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 0", + "x": 484.86301369863014, + "y": 192.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 11.7; Weather: rain; Precipitation: 7.1", + "x": 486.5068493150685, + "y": 188.66666666666666, + "size": 57.33529411764705 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 11.7; Weather: sun; Precipitation: 0", + "x": 488.1506849315068, + "y": 188.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 1.5", + "x": 489.7945205479452, + "y": 192.66666666666669, + "size": 17.69607843137255 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 14.4; Weather: rain; Precipitation: 23.1", + "x": 491.43835616438355, + "y": 170.66666666666669, + "size": 170.59019607843138 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 14.4; Weather: rain; Precipitation: 6.1", + "x": 493.0821917808219, + "y": 170.66666666666669, + "size": 50.25686274509804 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 15.6; Weather: rain; Precipitation: 10.9", + "x": 494.7260273972603, + "y": 162.66666666666666, + "size": 84.23333333333333 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 15; Weather: rain; Precipitation: 34.5", + "x": 496.36986301369865, + "y": 166.66666666666669, + "size": 251.2843137254902 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 15.6; Weather: rain; Precipitation: 14.5", + "x": 498.013698630137, + "y": 162.66666666666666, + "size": 109.71568627450979 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 15; Weather: rain; Precipitation: 9.7", + "x": 499.6575342465753, + "y": 166.66666666666669, + "size": 75.7392156862745 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 15; Weather: rain; Precipitation: 5.6", + "x": 501.3013698630137, + "y": 166.66666666666669, + "size": 46.71764705882352 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 15.6; Weather: rain; Precipitation: 0.5", + "x": 502.94520547945206, + "y": 162.66666666666666, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 17.8; Weather: rain; Precipitation: 8.1", + "x": 504.5890410958904, + "y": 148, + "size": 64.41372549019609 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 15; Weather: rain; Precipitation: 0.8", + "x": 506.23287671232873, + "y": 166.66666666666669, + "size": 12.741176470588234 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 12.8; Weather: rain; Precipitation: 0.3", + "x": 507.94520547945206, + "y": 181.33333333333334, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 12.2; Weather: rain; Precipitation: 0", + "x": 509.58904109589037, + "y": 185.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 10; Weather: rain; Precipitation: 0", + "x": 511.2328767123288, + "y": 200.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 8.9; Weather: rain; Precipitation: 0", + "x": 512.8767123287671, + "y": 207.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 7.8; Weather: sun; Precipitation: 0", + "x": 514.5205479452055, + "y": 214.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 8.9; Weather: rain; Precipitation: 15.2", + "x": 516.1643835616438, + "y": 207.33333333333334, + "size": 114.6705882352941 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 12.8; Weather: rain; Precipitation: 3.6", + "x": 517.8082191780821, + "y": 181.33333333333334, + "size": 32.56078431372549 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 5.3", + "x": 519.4520547945206, + "y": 192.66666666666669, + "size": 44.59411764705882 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 0.8", + "x": 521.0958904109589, + "y": 192.66666666666669, + "size": 12.741176470588234 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 9.4; Weather: drizzle; Precipitation: 0", + "x": 522.7397260273973, + "y": 203.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 9.4; Weather: rain; Precipitation: 5.6", + "x": 524.3835616438356, + "y": 203.99999999999997, + "size": 46.71764705882352 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 12.2; Weather: rain; Precipitation: 6.1", + "x": 526.0273972602739, + "y": 185.33333333333331, + "size": 50.25686274509804 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 10; Weather: rain; Precipitation: 7.9", + "x": 527.6712328767123, + "y": 200.00000000000003, + "size": 62.99803921568628 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 13.3; Weather: rain; Precipitation: 54.1", + "x": 529.3150684931508, + "y": 177.99999999999997, + "size": 390.02156862745096 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 3.8", + "x": 530.9589041095891, + "y": 192.66666666666669, + "size": 33.976470588235294 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 8.3; Weather: rain; Precipitation: 11.2", + "x": 532.6027397260274, + "y": 211.33333333333331, + "size": 86.35686274509803 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 8.9; Weather: rain; Precipitation: 0", + "x": 534.2465753424658, + "y": 207.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 9.4; Weather: rain; Precipitation: 32", + "x": 535.8904109589041, + "y": 203.99999999999997, + "size": 233.58823529411765 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 8.9; Weather: rain; Precipitation: 0", + "x": 537.5342465753424, + "y": 207.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 8.3; Weather: drizzle; Precipitation: 0", + "x": 539.1780821917808, + "y": 211.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 9.4; Weather: fog; Precipitation: 0", + "x": 540.8219178082192, + "y": 203.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 10; Weather: sun; Precipitation: 0", + "x": 542.4657534246575, + "y": 200.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 9.4; Weather: rain; Precipitation: 2.8", + "x": 544.1095890410959, + "y": 203.99999999999997, + "size": 26.898039215686275 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 12.8; Weather: rain; Precipitation: 1.5", + "x": 545.7534246575343, + "y": 181.33333333333334, + "size": 17.69607843137255 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 15; Weather: rain; Precipitation: 35.6", + "x": 547.3972602739726, + "y": 166.66666666666669, + "size": 259.0705882352941 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 13.3; Weather: rain; Precipitation: 4.1", + "x": 549.0410958904109, + "y": 177.99999999999997, + "size": 36.099999999999994 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 8.3; Weather: rain; Precipitation: 19.6", + "x": 550.6849315068494, + "y": 211.33333333333331, + "size": 145.8156862745098 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 9.4; Weather: rain; Precipitation: 13", + "x": 552.3287671232877, + "y": 203.99999999999997, + "size": 99.09803921568628 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 11.7; Weather: rain; Precipitation: 14.2", + "x": 553.972602739726, + "y": 188.66666666666666, + "size": 107.5921568627451 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 8.9; Weather: rain; Precipitation: 1.5", + "x": 555.6164383561644, + "y": 207.33333333333334, + "size": 17.69607843137255 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 7.2; Weather: rain; Precipitation: 1.5", + "x": 557.2602739726027, + "y": 218.66666666666669, + "size": 17.69607843137255 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 7.8; Weather: rain; Precipitation: 1", + "x": 558.904109589041, + "y": 214.66666666666666, + "size": 14.156862745098039 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 6.7; Weather: sun; Precipitation: 0", + "x": 560.5479452054794, + "y": 222, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 6.7; Weather: rain; Precipitation: 1.5", + "x": 562.1917808219179, + "y": 222, + "size": 17.69607843137255 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 7.2; Weather: rain; Precipitation: 0.5", + "x": 563.8356164383562, + "y": 218.66666666666669, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 7.8; Weather: rain; Precipitation: 3", + "x": 565.4794520547945, + "y": 214.66666666666666, + "size": 28.313725490196077 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 6.7; Weather: rain; Precipitation: 8.1", + "x": 567.1232876712329, + "y": 222, + "size": 64.41372549019609 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 7.2; Weather: rain; Precipitation: 2.3", + "x": 568.7671232876712, + "y": 218.66666666666669, + "size": 23.35882352941176 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 6.1; Weather: rain; Precipitation: 7.9", + "x": 570.4109589041095, + "y": 226.00000000000003, + "size": 62.99803921568628 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#9467bd", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 4.4; Weather: snow; Precipitation: 5.3", + "x": 572.054794520548, + "y": 237.33333333333334, + "size": 44.59411764705882 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#9467bd", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 6.7; Weather: snow; Precipitation: 22.6", + "x": 573.6986301369863, + "y": 222, + "size": 167.05098039215687 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 8.3; Weather: rain; Precipitation: 2", + "x": 575.3424657534247, + "y": 211.33333333333331, + "size": 21.235294117647058 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#9467bd", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 3.9; Weather: snow; Precipitation: 3.3", + "x": 576.986301369863, + "y": 240.66666666666666, + "size": 30.43725490196078 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#9467bd", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 8.3; Weather: snow; Precipitation: 13.7", + "x": 578.6301369863014, + "y": 211.33333333333331, + "size": 104.05294117647058 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 7.2; Weather: rain; Precipitation: 13.2", + "x": 580.2739726027397, + "y": 218.66666666666669, + "size": 100.51372549019608 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 8.3; Weather: rain; Precipitation: 1.8", + "x": 581.9178082191781, + "y": 211.33333333333331, + "size": 19.819607843137256 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 8.3; Weather: rain; Precipitation: 3.3", + "x": 583.5616438356165, + "y": 211.33333333333331, + "size": 30.43725490196078 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 7.2; Weather: rain; Precipitation: 6.6", + "x": 585.2054794520548, + "y": 218.66666666666669, + "size": 53.79607843137255 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 5.6; Weather: rain; Precipitation: 0.3", + "x": 586.8493150684932, + "y": 229.33333333333334, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#9467bd", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 5.6; Weather: snow; Precipitation: 13.5", + "x": 588.4931506849315, + "y": 229.33333333333334, + "size": 102.63725490196079 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 6.7; Weather: rain; Precipitation: 4.6", + "x": 590.1369863013698, + "y": 222, + "size": 39.63921568627451 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 7.8; Weather: rain; Precipitation: 4.1", + "x": 591.7808219178082, + "y": 214.66666666666666, + "size": 36.099999999999994 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 8.3; Weather: rain; Precipitation: 0", + "x": 593.4246575342466, + "y": 211.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 5; Weather: rain; Precipitation: 1.5", + "x": 595.068493150685, + "y": 233.33333333333334, + "size": 17.69607843137255 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 4.4; Weather: drizzle; Precipitation: 0", + "x": 596.7123287671233, + "y": 237.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 3.3; Weather: drizzle; Precipitation: 0", + "x": 598.3561643835617, + "y": 244.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 5; Weather: sun; Precipitation: 0", + "x": 600, + "y": 233.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 6.1; Weather: sun; Precipitation: 0", + "x": 0, + "y": 226.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 6.7; Weather: rain; Precipitation: 4.1", + "x": 1.643835616438356, + "y": 222, + "size": 36.099999999999994 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 10; Weather: rain; Precipitation: 2.5", + "x": 3.287671232876712, + "y": 200.00000000000003, + "size": 24.77450980392157 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 6.7; Weather: rain; Precipitation: 3", + "x": 4.931506849315068, + "y": 222, + "size": 28.313725490196077 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 7.2; Weather: rain; Precipitation: 2", + "x": 6.575342465753424, + "y": 218.66666666666669, + "size": 21.235294117647058 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 10; Weather: rain; Precipitation: 2.3", + "x": 8.21917808219178, + "y": 200.00000000000003, + "size": 23.35882352941176 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 11.7; Weather: rain; Precipitation: 16.3", + "x": 9.863013698630136, + "y": 188.66666666666666, + "size": 122.45686274509805 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 10; Weather: rain; Precipitation: 38.4", + "x": 11.506849315068493, + "y": 200.00000000000003, + "size": 278.89019607843136 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#9467bd", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 3.3; Weather: snow; Precipitation: 0.3", + "x": 13.150684931506849, + "y": 244.66666666666669, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 2.8; Weather: drizzle; Precipitation: 0", + "x": 14.794520547945204, + "y": 248, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 2.8; Weather: sun; Precipitation: 0", + "x": 16.43835616438356, + "y": 248, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 2.2; Weather: sun; Precipitation: 0", + "x": 18.08219178082192, + "y": 252, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 3.3; Weather: sun; Precipitation: 0", + "x": 19.72602739726027, + "y": 244.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 6.7; Weather: sun; Precipitation: 0", + "x": 21.36986301369863, + "y": 222, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 6.1; Weather: drizzle; Precipitation: 0", + "x": 23.013698630136986, + "y": 226.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 3.9; Weather: drizzle; Precipitation: 0", + "x": 24.65753424657534, + "y": 240.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 3.3; Weather: drizzle; Precipitation: 0", + "x": 26.301369863013697, + "y": 244.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 1.1; Weather: drizzle; Precipitation: 0", + "x": 27.945205479452056, + "y": 259.3333333333333, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 3.3; Weather: drizzle; Precipitation: 0", + "x": 29.58904109589041, + "y": 244.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 2.2; Weather: drizzle; Precipitation: 0", + "x": 31.232876712328768, + "y": 252, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 3.3; Weather: drizzle; Precipitation: 0", + "x": 32.87671232876712, + "y": 244.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 7.2; Weather: rain; Precipitation: 5.1", + "x": 34.52054794520548, + "y": 218.66666666666669, + "size": 43.178431372549014 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 7.2; Weather: rain; Precipitation: 5.8", + "x": 36.16438356164384, + "y": 218.66666666666669, + "size": 48.13333333333333 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 10.6; Weather: rain; Precipitation: 3", + "x": 37.8082191780822, + "y": 196, + "size": 28.313725490196077 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 8.3; Weather: rain; Precipitation: 2.3", + "x": 39.45205479452054, + "y": 211.33333333333331, + "size": 23.35882352941176 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 5.6; Weather: rain; Precipitation: 1.8", + "x": 41.0958904109589, + "y": 229.33333333333334, + "size": 19.819607843137256 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 6.1; Weather: rain; Precipitation: 7.9", + "x": 42.73972602739726, + "y": 226.00000000000003, + "size": 62.99803921568628 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 8.3; Weather: rain; Precipitation: 4.3", + "x": 44.38356164383562, + "y": 211.33333333333331, + "size": 37.515686274509804 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 8.9; Weather: rain; Precipitation: 3.6", + "x": 46.02739726027397, + "y": 207.33333333333334, + "size": 32.56078431372549 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 9.4; Weather: rain; Precipitation: 3", + "x": 47.67123287671233, + "y": 203.99999999999997, + "size": 28.313725490196077 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 11.7; Weather: rain; Precipitation: 0.3", + "x": 49.31506849315068, + "y": 188.66666666666666, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 6.1; Weather: drizzle; Precipitation: 0", + "x": 50.95890410958904, + "y": 226.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 8.9; Weather: rain; Precipitation: 2.3", + "x": 52.602739726027394, + "y": 207.33333333333334, + "size": 23.35882352941176 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 10.6; Weather: rain; Precipitation: 0", + "x": 54.24657534246575, + "y": 196, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 10; Weather: rain; Precipitation: 3.3", + "x": 55.89041095890411, + "y": 200.00000000000003, + "size": 30.43725490196078 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 10.6; Weather: rain; Precipitation: 1", + "x": 57.534246575342465, + "y": 196, + "size": 14.156862745098039 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 9.4; Weather: rain; Precipitation: 1.3", + "x": 59.17808219178082, + "y": 203.99999999999997, + "size": 16.280392156862746 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 7.8; Weather: sun; Precipitation: 0", + "x": 60.821917808219176, + "y": 214.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 8.3; Weather: rain; Precipitation: 0.3", + "x": 62.465753424657535, + "y": 211.33333333333331, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 8.9; Weather: drizzle; Precipitation: 0", + "x": 64.10958904109589, + "y": 207.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 8.3; Weather: rain; Precipitation: 0.3", + "x": 65.75342465753424, + "y": 211.33333333333331, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 1", + "x": 67.3972602739726, + "y": 192.66666666666669, + "size": 14.156862745098039 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 9.4; Weather: rain; Precipitation: 2.3", + "x": 69.04109589041096, + "y": 203.99999999999997, + "size": 23.35882352941176 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 9.4; Weather: rain; Precipitation: 1", + "x": 70.68493150684931, + "y": 203.99999999999997, + "size": 14.156862745098039 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 13.3; Weather: drizzle; Precipitation: 0", + "x": 72.32876712328768, + "y": 177.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 0", + "x": 73.97260273972603, + "y": 192.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 9.4; Weather: rain; Precipitation: 0", + "x": 75.6164383561644, + "y": 203.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 7.8; Weather: rain; Precipitation: 0", + "x": 77.26027397260273, + "y": 214.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 10.6; Weather: sun; Precipitation: 0", + "x": 78.90410958904108, + "y": 196, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 7.8; Weather: rain; Precipitation: 1.5", + "x": 80.54794520547945, + "y": 214.66666666666666, + "size": 17.69607843137255 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 6.7; Weather: rain; Precipitation: 0.5", + "x": 82.1917808219178, + "y": 222, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 7.8; Weather: rain; Precipitation: 9.4", + "x": 83.83561643835617, + "y": 214.66666666666666, + "size": 73.6156862745098 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 10; Weather: rain; Precipitation: 0.3", + "x": 85.47945205479452, + "y": 200.00000000000003, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 8.9; Weather: rain; Precipitation: 0", + "x": 87.12328767123287, + "y": 207.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 10.6; Weather: rain; Precipitation: 2.3", + "x": 88.76712328767124, + "y": 196, + "size": 23.35882352941176 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 8.9; Weather: rain; Precipitation: 0.5", + "x": 90.41095890410958, + "y": 207.33333333333334, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 10; Weather: rain; Precipitation: 4.6", + "x": 92.05479452054794, + "y": 200.00000000000003, + "size": 39.63921568627451 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 11.7; Weather: rain; Precipitation: 8.1", + "x": 93.6986301369863, + "y": 188.66666666666666, + "size": 64.41372549019609 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 15; Weather: rain; Precipitation: 4.1", + "x": 95.34246575342466, + "y": 166.66666666666669, + "size": 36.099999999999994 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 13.9; Weather: rain; Precipitation: 0.8", + "x": 98.63013698630137, + "y": 174.00000000000003, + "size": 12.741176470588234 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 11.1; Weather: sun; Precipitation: 0", + "x": 100.27397260273973, + "y": 192.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 13.3; Weather: sun; Precipitation: 0", + "x": 101.91780821917808, + "y": 177.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 9.4; Weather: rain; Precipitation: 0", + "x": 103.56164383561645, + "y": 203.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 7.2; Weather: rain; Precipitation: 11.9", + "x": 105.20547945205479, + "y": 218.66666666666669, + "size": 91.31176470588235 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 12.2; Weather: rain; Precipitation: 7.4", + "x": 106.84931506849314, + "y": 185.33333333333331, + "size": 59.45882352941177 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 11.7; Weather: drizzle; Precipitation: 0", + "x": 108.4931506849315, + "y": 188.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 12.8; Weather: fog; Precipitation: 0", + "x": 110.13698630136986, + "y": 181.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 7.8; Weather: rain; Precipitation: 0.8", + "x": 111.78082191780823, + "y": 214.66666666666666, + "size": 12.741176470588234 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 10.6; Weather: rain; Precipitation: 1.3", + "x": 113.42465753424658, + "y": 196, + "size": 16.280392156862746 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 12.8; Weather: rain; Precipitation: 2", + "x": 115.06849315068493, + "y": 181.33333333333334, + "size": 21.235294117647058 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 11.7; Weather: rain; Precipitation: 2.3", + "x": 116.64383561643835, + "y": 188.66666666666666, + "size": 23.35882352941176 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 11.7; Weather: rain; Precipitation: 2.8", + "x": 118.2876712328767, + "y": 188.66666666666666, + "size": 26.898039215686275 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 14.4; Weather: rain; Precipitation: 0", + "x": 119.93150684931507, + "y": 170.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 10.6; Weather: rain; Precipitation: 4.3", + "x": 121.57534246575342, + "y": 196, + "size": 37.515686274509804 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 8.9; Weather: sun; Precipitation: 0", + "x": 123.21917808219179, + "y": 207.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 11.7; Weather: rain; Precipitation: 0", + "x": 124.86301369863014, + "y": 188.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 12.8; Weather: rain; Precipitation: 11.7", + "x": 126.5068493150685, + "y": 181.33333333333334, + "size": 89.89607843137254 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 9.9", + "x": 128.15068493150685, + "y": 192.66666666666669, + "size": 77.15490196078431 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#9467bd", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 10; Weather: snow; Precipitation: 8.1", + "x": 129.7945205479452, + "y": 200.00000000000003, + "size": 64.41372549019609 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 9.4; Weather: sun; Precipitation: 0", + "x": 131.43835616438358, + "y": 203.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 10; Weather: sun; Precipitation: 0", + "x": 133.08219178082192, + "y": 200.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 12.2; Weather: sun; Precipitation: 0", + "x": 134.72602739726025, + "y": 185.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 16.7; Weather: sun; Precipitation: 0", + "x": 136.36986301369862, + "y": 155.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 16.7; Weather: sun; Precipitation: 0", + "x": 138.013698630137, + "y": 155.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 13.3; Weather: rain; Precipitation: 0.3", + "x": 139.65753424657535, + "y": 177.99999999999997, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 16.1; Weather: rain; Precipitation: 2", + "x": 141.3013698630137, + "y": 159.33333333333331, + "size": 21.235294117647058 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 18.3; Weather: rain; Precipitation: 0", + "x": 142.94520547945206, + "y": 144.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 20; Weather: drizzle; Precipitation: 0", + "x": 144.58904109589042, + "y": 133.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 20.6; Weather: sun; Precipitation: 0", + "x": 146.23287671232876, + "y": 129.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 17.2; Weather: sun; Precipitation: 0", + "x": 147.87671232876713, + "y": 152, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 13.9; Weather: sun; Precipitation: 0", + "x": 149.52054794520546, + "y": 174.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 16.7; Weather: sun; Precipitation: 0", + "x": 151.16438356164383, + "y": 155.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 14.4; Weather: rain; Precipitation: 8.4", + "x": 152.8082191780822, + "y": 170.66666666666669, + "size": 66.5372549019608 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 13.9; Weather: rain; Precipitation: 18.5", + "x": 154.45205479452054, + "y": 174.00000000000003, + "size": 138.02941176470588 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 12.2; Weather: rain; Precipitation: 12.7", + "x": 156.0958904109589, + "y": 185.33333333333331, + "size": 96.97450980392156 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 8.3; Weather: rain; Precipitation: 39.1", + "x": 157.73972602739727, + "y": 211.33333333333331, + "size": 283.84509803921566 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 13.3; Weather: rain; Precipitation: 0.8", + "x": 159.38356164383563, + "y": 177.99999999999997, + "size": 12.741176470588234 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 12.2; Weather: sun; Precipitation: 0", + "x": 161.02739726027397, + "y": 185.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 15; Weather: rain; Precipitation: 9.4", + "x": 162.67123287671234, + "y": 166.66666666666669, + "size": 73.6156862745098 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 12.2; Weather: rain; Precipitation: 1.5", + "x": 164.31506849315068, + "y": 185.33333333333331, + "size": 17.69607843137255 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 7.8; Weather: rain; Precipitation: 9.7", + "x": 165.95890410958904, + "y": 214.66666666666666, + "size": 75.7392156862745 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 10.6; Weather: rain; Precipitation: 9.4", + "x": 167.6027397260274, + "y": 196, + "size": 73.6156862745098 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 12.8; Weather: rain; Precipitation: 5.8", + "x": 169.24657534246575, + "y": 181.33333333333334, + "size": 48.13333333333333 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 13.9; Weather: fog; Precipitation: 0", + "x": 170.8904109589041, + "y": 174.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 13.9; Weather: rain; Precipitation: 0.3", + "x": 172.53424657534245, + "y": 174.00000000000003, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 15; Weather: drizzle; Precipitation: 0", + "x": 174.17808219178085, + "y": 166.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 11.7; Weather: rain; Precipitation: 5.3", + "x": 175.82191780821918, + "y": 188.66666666666666, + "size": 44.59411764705882 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 13.3; Weather: rain; Precipitation: 20.6", + "x": 177.46575342465752, + "y": 177.99999999999997, + "size": 152.89411764705883 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 13.9; Weather: sun; Precipitation: 0", + "x": 179.1095890410959, + "y": 174.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 12.2; Weather: rain; Precipitation: 3.3", + "x": 180.75342465753423, + "y": 185.33333333333331, + "size": 30.43725490196078 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 16.1; Weather: sun; Precipitation: 0", + "x": 182.39726027397262, + "y": 159.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 17.8; Weather: sun; Precipitation: 0", + "x": 184.04109589041096, + "y": 148, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 21.1; Weather: sun; Precipitation: 0", + "x": 185.68493150684932, + "y": 125.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 21.7; Weather: sun; Precipitation: 0", + "x": 187.32876712328766, + "y": 122.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 20.6; Weather: fog; Precipitation: 0", + "x": 188.97260273972603, + "y": 129.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 13.9; Weather: sun; Precipitation: 0", + "x": 190.6164383561644, + "y": 174.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 15; Weather: rain; Precipitation: 1", + "x": 192.26027397260276, + "y": 166.66666666666669, + "size": 14.156862745098039 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 13.9; Weather: rain; Precipitation: 3.8", + "x": 193.9041095890411, + "y": 174.00000000000003, + "size": 33.976470588235294 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 12.8; Weather: sun; Precipitation: 0", + "x": 195.54794520547944, + "y": 181.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 18.3; Weather: sun; Precipitation: 0", + "x": 197.1917808219178, + "y": 144.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 20.6; Weather: sun; Precipitation: 0", + "x": 198.83561643835617, + "y": 129.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 21.7; Weather: sun; Precipitation: 0", + "x": 200.47945205479454, + "y": 122.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 25; Weather: sun; Precipitation: 0", + "x": 202.12328767123287, + "y": 100.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 28.9; Weather: sun; Precipitation: 0", + "x": 203.76712328767124, + "y": 74.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 30.6; Weather: sun; Precipitation: 0", + "x": 205.41095890410958, + "y": 62.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 20.6; Weather: sun; Precipitation: 0", + "x": 207.05479452054794, + "y": 129.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 19.4; Weather: sun; Precipitation: 0", + "x": 208.6986301369863, + "y": 137.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 22.8; Weather: sun; Precipitation: 0", + "x": 210.34246575342465, + "y": 114.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 26.1; Weather: sun; Precipitation: 0", + "x": 211.986301369863, + "y": 92.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 27.2; Weather: sun; Precipitation: 0", + "x": 213.63013698630135, + "y": 85.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 21.7; Weather: rain; Precipitation: 6.6", + "x": 215.27397260273975, + "y": 122.00000000000001, + "size": 53.79607843137255 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 18.9; Weather: rain; Precipitation: 3.3", + "x": 216.91780821917808, + "y": 140.66666666666669, + "size": 30.43725490196078 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 18.3; Weather: sun; Precipitation: 0", + "x": 218.56164383561645, + "y": 144.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 17.2; Weather: rain; Precipitation: 1", + "x": 220.2054794520548, + "y": 152, + "size": 14.156862745098039 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 21.7; Weather: fog; Precipitation: 0", + "x": 221.84931506849313, + "y": 122.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 17.2; Weather: rain; Precipitation: 0.5", + "x": 223.49315068493152, + "y": 152, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 16.7; Weather: sun; Precipitation: 0", + "x": 225.13698630136986, + "y": 155.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 18.3; Weather: sun; Precipitation: 0", + "x": 226.78082191780823, + "y": 144.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 19.4; Weather: sun; Precipitation: 0", + "x": 228.42465753424656, + "y": 137.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 15.6; Weather: rain; Precipitation: 13.7", + "x": 230.06849315068493, + "y": 162.66666666666666, + "size": 104.05294117647058 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 13.7", + "x": 231.7123287671233, + "y": 192.66666666666669, + "size": 104.05294117647058 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 12.2; Weather: rain; Precipitation: 4.1", + "x": 233.35616438356166, + "y": 185.33333333333331, + "size": 36.099999999999994 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 16.7; Weather: rain; Precipitation: 0.3", + "x": 235, + "y": 155.33333333333334, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 17.8; Weather: sun; Precipitation: 0", + "x": 236.64383561643834, + "y": 148, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 18.3; Weather: rain; Precipitation: 1.5", + "x": 238.2876712328767, + "y": 144.66666666666666, + "size": 17.69607843137255 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 16.7; Weather: rain; Precipitation: 9.7", + "x": 239.93150684931507, + "y": 155.33333333333334, + "size": 75.7392156862745 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 17.2; Weather: rain; Precipitation: 0.5", + "x": 241.57534246575344, + "y": 152, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 16.1; Weather: rain; Precipitation: 5.6", + "x": 243.21917808219177, + "y": 159.33333333333331, + "size": 46.71764705882352 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 16.7; Weather: sun; Precipitation: 0", + "x": 244.86301369863014, + "y": 155.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 19.4; Weather: sun; Precipitation: 0", + "x": 246.50684931506848, + "y": 137.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 22.8; Weather: sun; Precipitation: 0", + "x": 248.15068493150687, + "y": 114.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 20.6; Weather: rain; Precipitation: 1", + "x": 249.7945205479452, + "y": 129.33333333333334, + "size": 14.156862745098039 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 22.2; Weather: sun; Precipitation: 0", + "x": 251.43835616438355, + "y": 118.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 26.1; Weather: sun; Precipitation: 0", + "x": 253.08219178082192, + "y": 92.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 26.7; Weather: sun; Precipitation: 0", + "x": 254.72602739726025, + "y": 88.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 26.7; Weather: sun; Precipitation: 0", + "x": 256.36986301369865, + "y": 88.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 21.7; Weather: sun; Precipitation: 0", + "x": 258.013698630137, + "y": 122.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 20.6; Weather: sun; Precipitation: 0", + "x": 259.6575342465753, + "y": 129.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 20.6; Weather: sun; Precipitation: 0", + "x": 261.3013698630137, + "y": 129.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 21.7; Weather: sun; Precipitation: 0", + "x": 262.94520547945206, + "y": 122.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 20; Weather: sun; Precipitation: 0", + "x": 264.5890410958904, + "y": 133.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 20.6; Weather: rain; Precipitation: 0.3", + "x": 266.2328767123288, + "y": 129.33333333333334, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 21.1; Weather: sun; Precipitation: 0", + "x": 267.8767123287671, + "y": 125.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 20; Weather: sun; Precipitation: 0", + "x": 269.52054794520546, + "y": 133.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 25.6; Weather: sun; Precipitation: 0", + "x": 271.16438356164383, + "y": 95.99999999999999, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 23.9; Weather: sun; Precipitation: 0", + "x": 272.8082191780822, + "y": 107.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 25.6; Weather: sun; Precipitation: 0", + "x": 274.45205479452056, + "y": 95.99999999999999, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 23.3; Weather: rain; Precipitation: 0.3", + "x": 276.0958904109589, + "y": 111.33333333333331, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 20; Weather: sun; Precipitation: 0", + "x": 277.73972602739724, + "y": 133.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 17.2; Weather: rain; Precipitation: 3", + "x": 279.3835616438356, + "y": 152, + "size": 28.313725490196077 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 20.6; Weather: rain; Precipitation: 0.3", + "x": 281.027397260274, + "y": 129.33333333333334, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 25.6; Weather: sun; Precipitation: 0", + "x": 282.67123287671234, + "y": 95.99999999999999, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 22.2; Weather: rain; Precipitation: 7.9", + "x": 284.3150684931507, + "y": 118.66666666666667, + "size": 62.99803921568628 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 21.1; Weather: rain; Precipitation: 4.8", + "x": 285.958904109589, + "y": 125.99999999999997, + "size": 41.05490196078431 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 23.3; Weather: rain; Precipitation: 9.9", + "x": 287.60273972602744, + "y": 111.33333333333331, + "size": 77.15490196078431 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 22.2; Weather: rain; Precipitation: 2", + "x": 289.24657534246575, + "y": 118.66666666666667, + "size": 21.235294117647058 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 21.1; Weather: rain; Precipitation: 3.6", + "x": 290.8904109589041, + "y": 125.99999999999997, + "size": 32.56078431372549 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 30.6; Weather: sun; Precipitation: 0", + "x": 292.5342465753425, + "y": 62.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 30; Weather: sun; Precipitation: 0", + "x": 294.1780821917808, + "y": 66.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 33.9; Weather: sun; Precipitation: 0", + "x": 295.8219178082192, + "y": 40.666666666666664, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 31.7; Weather: sun; Precipitation: 0", + "x": 297.4657534246575, + "y": 55.33333333333332, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 28.3; Weather: sun; Precipitation: 0", + "x": 299.1095890410959, + "y": 78, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 26.1; Weather: sun; Precipitation: 0", + "x": 300.75342465753425, + "y": 92.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 21.7; Weather: fog; Precipitation: 0", + "x": 302.3972602739726, + "y": 122.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 23.3; Weather: sun; Precipitation: 0", + "x": 304.041095890411, + "y": 111.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 26.1; Weather: sun; Precipitation: 0", + "x": 305.6849315068493, + "y": 92.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 23.9; Weather: sun; Precipitation: 0", + "x": 307.32876712328766, + "y": 107.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 26.7; Weather: sun; Precipitation: 0", + "x": 308.972602739726, + "y": 88.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 30; Weather: sun; Precipitation: 0", + "x": 310.6164383561644, + "y": 66.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 22.2; Weather: sun; Precipitation: 0", + "x": 312.2602739726027, + "y": 118.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 22.8; Weather: sun; Precipitation: 0", + "x": 313.90410958904107, + "y": 114.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 19.4; Weather: sun; Precipitation: 0", + "x": 315.5479452054795, + "y": 137.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 26.1; Weather: sun; Precipitation: 0", + "x": 317.19178082191786, + "y": 92.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 27.8; Weather: sun; Precipitation: 0", + "x": 318.83561643835617, + "y": 81.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 27.8; Weather: sun; Precipitation: 0", + "x": 320.47945205479454, + "y": 81.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 31.1; Weather: sun; Precipitation: 0", + "x": 322.1232876712329, + "y": 59.333333333333314, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 22.2; Weather: sun; Precipitation: 0", + "x": 323.7671232876712, + "y": 118.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 26.1; Weather: sun; Precipitation: 0", + "x": 325.4109589041096, + "y": 92.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 27.8; Weather: sun; Precipitation: 0", + "x": 327.05479452054794, + "y": 81.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 25; Weather: sun; Precipitation: 0", + "x": 328.69863013698625, + "y": 100.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 23.9; Weather: sun; Precipitation: 0", + "x": 330.3424657534246, + "y": 107.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 26.1; Weather: fog; Precipitation: 0", + "x": 331.98630136986304, + "y": 92.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 31.1; Weather: sun; Precipitation: 0", + "x": 333.6301369863014, + "y": 59.333333333333314, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 31.1; Weather: sun; Precipitation: 0", + "x": 335.2739726027397, + "y": 59.333333333333314, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 31.1; Weather: sun; Precipitation: 0", + "x": 336.9178082191781, + "y": 59.333333333333314, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 31.1; Weather: sun; Precipitation: 0", + "x": 338.56164383561645, + "y": 59.333333333333314, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 25.6; Weather: sun; Precipitation: 0", + "x": 340.2054794520548, + "y": 95.99999999999999, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 21.1; Weather: fog; Precipitation: 0", + "x": 341.8493150684931, + "y": 125.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 25; Weather: sun; Precipitation: 0", + "x": 343.4931506849315, + "y": 100.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 25; Weather: sun; Precipitation: 0", + "x": 345.13698630136986, + "y": 100.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 21.7; Weather: sun; Precipitation: 0", + "x": 346.78082191780817, + "y": 122.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 20.6; Weather: sun; Precipitation: 0", + "x": 348.4246575342466, + "y": 129.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 17.2; Weather: rain; Precipitation: 2", + "x": 350.06849315068496, + "y": 152, + "size": 21.235294117647058 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 25; Weather: fog; Precipitation: 0", + "x": 351.7123287671233, + "y": 100.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 28.9; Weather: sun; Precipitation: 0", + "x": 353.35616438356163, + "y": 74.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 30; Weather: sun; Precipitation: 0", + "x": 355, + "y": 66.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 30.6; Weather: sun; Precipitation: 0", + "x": 356.64383561643837, + "y": 62.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 31.1; Weather: sun; Precipitation: 0", + "x": 358.2876712328767, + "y": 59.333333333333314, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 28.3; Weather: sun; Precipitation: 0", + "x": 359.93150684931504, + "y": 78, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 28.3; Weather: sun; Precipitation: 0", + "x": 361.5753424657534, + "y": 78, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 25.6; Weather: rain; Precipitation: 2.3", + "x": 363.2191780821918, + "y": 95.99999999999999, + "size": 23.35882352941176 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 25; Weather: sun; Precipitation: 0", + "x": 364.86301369863014, + "y": 100.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 25.6; Weather: sun; Precipitation: 0", + "x": 366.5068493150685, + "y": 95.99999999999999, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 27.8; Weather: sun; Precipitation: 0", + "x": 368.1506849315069, + "y": 81.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 27.2; Weather: rain; Precipitation: 0.8", + "x": 369.79452054794524, + "y": 85.33333333333331, + "size": 12.741176470588234 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 21.1; Weather: rain; Precipitation: 1.8", + "x": 371.43835616438355, + "y": 125.99999999999997, + "size": 19.819607843137256 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 28.9; Weather: fog; Precipitation: 0", + "x": 373.0821917808219, + "y": 74.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 25.6; Weather: sun; Precipitation: 0", + "x": 374.7260273972603, + "y": 95.99999999999999, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 26.1; Weather: sun; Precipitation: 0", + "x": 376.3698630136986, + "y": 92.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 26.7; Weather: sun; Precipitation: 0", + "x": 378.01369863013696, + "y": 88.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 25.6; Weather: sun; Precipitation: 0", + "x": 379.6575342465753, + "y": 95.99999999999999, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 27.8; Weather: sun; Precipitation: 0", + "x": 381.30136986301375, + "y": 81.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 28.9; Weather: sun; Precipitation: 0", + "x": 382.94520547945206, + "y": 74.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 25; Weather: sun; Precipitation: 0", + "x": 384.5890410958904, + "y": 100.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 25; Weather: sun; Precipitation: 0", + "x": 386.2328767123288, + "y": 100.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 22.2; Weather: rain; Precipitation: 0.3", + "x": 387.8767123287671, + "y": 118.66666666666667, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 24.4; Weather: rain; Precipitation: 1", + "x": 389.52054794520546, + "y": 104, + "size": 14.156862745098039 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 26.7; Weather: rain; Precipitation: 1.3", + "x": 391.16438356164383, + "y": 88.66666666666667, + "size": 16.280392156862746 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 26.7; Weather: rain; Precipitation: 5.6", + "x": 392.8082191780822, + "y": 88.66666666666667, + "size": 46.71764705882352 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 23.9; Weather: rain; Precipitation: 19.3", + "x": 394.4520547945205, + "y": 107.33333333333336, + "size": 143.69215686274512 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 26.1; Weather: sun; Precipitation: 0", + "x": 396.0958904109589, + "y": 92.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 27.8; Weather: sun; Precipitation: 0", + "x": 397.7397260273973, + "y": 81.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 27.8; Weather: sun; Precipitation: 0", + "x": 399.38356164383566, + "y": 81.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 27.8; Weather: sun; Precipitation: 0", + "x": 401.027397260274, + "y": 81.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 25; Weather: rain; Precipitation: 2.3", + "x": 402.67123287671234, + "y": 100.00000000000001, + "size": 23.35882352941176 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 22.8; Weather: rain; Precipitation: 0.3", + "x": 404.3150684931507, + "y": 114.66666666666667, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 20; Weather: rain; Precipitation: 27.7", + "x": 405.958904109589, + "y": 133.33333333333331, + "size": 203.15098039215687 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 21.7; Weather: rain; Precipitation: 21.3", + "x": 407.6027397260274, + "y": 122.00000000000001, + "size": 157.84901960784313 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 23.3; Weather: sun; Precipitation: 0", + "x": 409.24657534246575, + "y": 111.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 26.7; Weather: fog; Precipitation: 0", + "x": 410.8904109589041, + "y": 88.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 26.1; Weather: sun; Precipitation: 0", + "x": 412.5342465753424, + "y": 92.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 26.7; Weather: sun; Precipitation: 0", + "x": 414.17808219178085, + "y": 88.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 33.9; Weather: sun; Precipitation: 0", + "x": 415.8219178082192, + "y": 40.666666666666664, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 25.6; Weather: sun; Precipitation: 0", + "x": 417.4657534246575, + "y": 95.99999999999999, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 18.9; Weather: sun; Precipitation: 0", + "x": 419.1095890410959, + "y": 140.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 21.7; Weather: fog; Precipitation: 0", + "x": 420.75342465753425, + "y": 122.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 18.9; Weather: rain; Precipitation: 3.3", + "x": 422.3972602739726, + "y": 140.66666666666669, + "size": 30.43725490196078 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 21.7; Weather: rain; Precipitation: 0.3", + "x": 424.04109589041093, + "y": 122.00000000000001, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 17.8; Weather: sun; Precipitation: 0", + "x": 425.6849315068493, + "y": 148, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 21.1; Weather: sun; Precipitation: 0", + "x": 427.32876712328766, + "y": 125.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 25.6; Weather: sun; Precipitation: 0", + "x": 428.97260273972597, + "y": 95.99999999999999, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 23.3; Weather: rain; Precipitation: 3.6", + "x": 430.6164383561644, + "y": 111.33333333333331, + "size": 32.56078431372549 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 21.1; Weather: sun; Precipitation: 0", + "x": 432.26027397260276, + "y": 125.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 17.2; Weather: rain; Precipitation: 13.5", + "x": 433.9041095890411, + "y": 152, + "size": 102.63725490196079 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 16.1; Weather: rain; Precipitation: 2.8", + "x": 435.54794520547944, + "y": 159.33333333333331, + "size": 26.898039215686275 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 17.8; Weather: sun; Precipitation: 0", + "x": 437.1917808219178, + "y": 148, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 16.1; Weather: rain; Precipitation: 2", + "x": 438.83561643835617, + "y": 159.33333333333331, + "size": 21.235294117647058 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 17.2; Weather: sun; Precipitation: 0", + "x": 440.4794520547945, + "y": 152, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 13.9; Weather: rain; Precipitation: 1", + "x": 442.12328767123284, + "y": 174.00000000000003, + "size": 14.156862745098039 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 16.7; Weather: rain; Precipitation: 43.4", + "x": 443.7671232876712, + "y": 155.33333333333334, + "size": 314.2823529411765 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 14.4; Weather: rain; Precipitation: 16.8", + "x": 445.41095890410963, + "y": 170.66666666666669, + "size": 125.99607843137257 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 13.9; Weather: rain; Precipitation: 18.5", + "x": 447.05479452054794, + "y": 174.00000000000003, + "size": 138.02941176470588 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 14.4; Weather: rain; Precipitation: 7.9", + "x": 448.6986301369863, + "y": 170.66666666666669, + "size": 62.99803921568628 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 12.8; Weather: rain; Precipitation: 5.3", + "x": 450.3424657534247, + "y": 181.33333333333334, + "size": 44.59411764705882 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 14.4; Weather: rain; Precipitation: 0.8", + "x": 451.98630136986304, + "y": 170.66666666666669, + "size": 12.741176470588234 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 17.8; Weather: sun; Precipitation: 0", + "x": 453.63013698630135, + "y": 148, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 20; Weather: sun; Precipitation: 0", + "x": 455.2739726027397, + "y": 133.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 22.8; Weather: rain; Precipitation: 4.1", + "x": 456.9178082191781, + "y": 114.66666666666667, + "size": 36.099999999999994 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 16.1; Weather: rain; Precipitation: 0.5", + "x": 458.5616438356164, + "y": 159.33333333333331, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 13.9; Weather: rain; Precipitation: 6.9", + "x": 460.20547945205476, + "y": 174.00000000000003, + "size": 55.91960784313726 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 15; Weather: sun; Precipitation: 0", + "x": 461.8493150684932, + "y": 166.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 14.4; Weather: rain; Precipitation: 1", + "x": 463.49315068493155, + "y": 170.66666666666669, + "size": 14.156862745098039 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 13.9; Weather: rain; Precipitation: 9.1", + "x": 465.13698630136986, + "y": 174.00000000000003, + "size": 71.49215686274509 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 14.4; Weather: rain; Precipitation: 1", + "x": 466.7808219178082, + "y": 170.66666666666669, + "size": 14.156862745098039 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 15; Weather: fog; Precipitation: 0", + "x": 468.4246575342466, + "y": 166.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 15.6; Weather: sun; Precipitation: 0", + "x": 470.06849315068496, + "y": 162.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 15.6; Weather: sun; Precipitation: 0", + "x": 471.71232876712327, + "y": 162.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 12.8; Weather: fog; Precipitation: 0", + "x": 473.35616438356163, + "y": 181.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 14.4; Weather: fog; Precipitation: 0", + "x": 475, + "y": 170.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 12.8; Weather: sun; Precipitation: 0", + "x": 476.6438356164383, + "y": 181.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 10.6; Weather: sun; Precipitation: 0", + "x": 478.28767123287673, + "y": 196, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 10.6; Weather: sun; Precipitation: 0", + "x": 479.9315068493151, + "y": 196, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 11.7; Weather: sun; Precipitation: 0", + "x": 481.57534246575347, + "y": 188.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 14.4; Weather: sun; Precipitation: 0", + "x": 483.2191780821918, + "y": 170.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 12.8; Weather: sun; Precipitation: 0", + "x": 484.86301369863014, + "y": 181.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 10; Weather: sun; Precipitation: 0", + "x": 486.5068493150685, + "y": 200.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 12.2; Weather: sun; Precipitation: 0", + "x": 488.1506849315068, + "y": 185.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 11.7; Weather: sun; Precipitation: 0", + "x": 489.7945205479452, + "y": 188.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 13.9; Weather: rain; Precipitation: 1.8", + "x": 491.43835616438355, + "y": 174.00000000000003, + "size": 19.819607843137256 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 14.4; Weather: sun; Precipitation: 0", + "x": 493.0821917808219, + "y": 170.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 13.3; Weather: sun; Precipitation: 0", + "x": 494.7260273972603, + "y": 177.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 15; Weather: rain; Precipitation: 0.5", + "x": 496.36986301369865, + "y": 166.66666666666669, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 14.4; Weather: rain; Precipitation: 0.3", + "x": 498.013698630137, + "y": 170.66666666666669, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 17.8; Weather: rain; Precipitation: 1.3", + "x": 499.6575342465753, + "y": 148, + "size": 16.280392156862746 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 14.4; Weather: rain; Precipitation: 12.7", + "x": 501.3013698630137, + "y": 170.66666666666669, + "size": 96.97450980392156 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 12.2; Weather: rain; Precipitation: 0.5", + "x": 502.94520547945206, + "y": 185.33333333333331, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 10.6; Weather: drizzle; Precipitation: 0", + "x": 504.5890410958904, + "y": 196, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 13.3; Weather: rain; Precipitation: 2.5", + "x": 506.23287671232873, + "y": 177.99999999999997, + "size": 24.77450980392157 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 12.8; Weather: rain; Precipitation: 3.8", + "x": 507.94520547945206, + "y": 181.33333333333334, + "size": 33.976470588235294 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 30", + "x": 509.58904109589037, + "y": 192.66666666666669, + "size": 219.43137254901958 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 13.3; Weather: sun; Precipitation: 0", + "x": 511.2328767123288, + "y": 177.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 1.8", + "x": 512.8767123287671, + "y": 192.66666666666669, + "size": 19.819607843137256 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 11.1; Weather: sun; Precipitation: 0", + "x": 514.5205479452055, + "y": 192.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 16.1; Weather: fog; Precipitation: 0", + "x": 516.1643835616438, + "y": 159.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 15.6; Weather: rain; Precipitation: 4.1", + "x": 517.8082191780821, + "y": 162.66666666666666, + "size": 36.099999999999994 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 13.9; Weather: sun; Precipitation: 0", + "x": 519.4520547945206, + "y": 174.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 1.3", + "x": 521.0958904109589, + "y": 192.66666666666669, + "size": 16.280392156862746 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 10.6; Weather: rain; Precipitation: 3", + "x": 522.7397260273973, + "y": 196, + "size": 28.313725490196077 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 10; Weather: sun; Precipitation: 0", + "x": 524.3835616438356, + "y": 200.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 11.7; Weather: rain; Precipitation: 5.3", + "x": 526.0273972602739, + "y": 188.66666666666666, + "size": 44.59411764705882 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 12.8; Weather: rain; Precipitation: 26.2", + "x": 527.6712328767123, + "y": 181.33333333333334, + "size": 192.53333333333333 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 13.3; Weather: rain; Precipitation: 1", + "x": 529.3150684931508, + "y": 177.99999999999997, + "size": 14.156862745098039 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 7.8; Weather: sun; Precipitation: 0", + "x": 530.9589041095891, + "y": 214.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 7.8; Weather: sun; Precipitation: 0", + "x": 532.6027397260274, + "y": 214.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 9.4; Weather: sun; Precipitation: 0", + "x": 534.2465753424658, + "y": 203.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 11.1; Weather: sun; Precipitation: 0", + "x": 535.8904109589041, + "y": 192.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 11.7; Weather: fog; Precipitation: 0", + "x": 537.5342465753424, + "y": 188.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 12.2; Weather: sun; Precipitation: 0", + "x": 539.1780821917808, + "y": 185.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 12.2; Weather: sun; Precipitation: 0", + "x": 540.8219178082192, + "y": 185.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 14.4; Weather: sun; Precipitation: 0", + "x": 542.4657534246575, + "y": 170.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 11.7; Weather: sun; Precipitation: 0", + "x": 544.1095890410959, + "y": 188.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 9.4; Weather: rain; Precipitation: 0.5", + "x": 545.7534246575343, + "y": 203.99999999999997, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 2.3", + "x": 547.3972602739726, + "y": 192.66666666666669, + "size": 23.35882352941176 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 13.3; Weather: rain; Precipitation: 3", + "x": 549.0410958904109, + "y": 177.99999999999997, + "size": 28.313725490196077 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 7.8; Weather: rain; Precipitation: 4.6", + "x": 550.6849315068494, + "y": 214.66666666666666, + "size": 39.63921568627451 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 5; Weather: sun; Precipitation: 0", + "x": 552.3287671232877, + "y": 233.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 4.4; Weather: sun; Precipitation: 0", + "x": 553.972602739726, + "y": 237.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 1.1; Weather: sun; Precipitation: 0", + "x": 555.6164383561644, + "y": 259.3333333333333, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 1.1; Weather: sun; Precipitation: 0", + "x": 557.2602739726027, + "y": 259.3333333333333, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 0; Weather: sun; Precipitation: 0", + "x": 558.904109589041, + "y": 266.66666666666663, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 2.2; Weather: sun; Precipitation: 0", + "x": 560.5479452054794, + "y": 252, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 1.1; Weather: sun; Precipitation: 0", + "x": 562.1917808219179, + "y": 259.3333333333333, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 5.6; Weather: sun; Precipitation: 0", + "x": 563.8356164383562, + "y": 229.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 5; Weather: sun; Precipitation: 0", + "x": 565.4794520547945, + "y": 233.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 5.6; Weather: rain; Precipitation: 6.9", + "x": 567.1232876712329, + "y": 229.33333333333334, + "size": 55.91960784313726 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 9.4; Weather: rain; Precipitation: 0.5", + "x": 568.7671232876712, + "y": 203.99999999999997, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 9.4; Weather: sun; Precipitation: 0", + "x": 570.4109589041095, + "y": 203.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 11.7; Weather: rain; Precipitation: 1.3", + "x": 572.054794520548, + "y": 188.66666666666666, + "size": 16.280392156862746 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 10; Weather: rain; Precipitation: 0.3", + "x": 573.6986301369863, + "y": 200.00000000000003, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 8.3; Weather: sun; Precipitation: 0", + "x": 575.3424657534247, + "y": 211.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 7.8; Weather: rain; Precipitation: 1.3", + "x": 576.986301369863, + "y": 214.66666666666666, + "size": 16.280392156862746 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 5; Weather: sun; Precipitation: 0", + "x": 578.6301369863014, + "y": 233.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#9467bd", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 8.3; Weather: snow; Precipitation: 5.6", + "x": 580.2739726027397, + "y": 211.33333333333331, + "size": 46.71764705882352 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 8.9; Weather: rain; Precipitation: 5.6", + "x": 581.9178082191781, + "y": 207.33333333333334, + "size": 46.71764705882352 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 10.6; Weather: rain; Precipitation: 10.7", + "x": 583.5616438356165, + "y": 196, + "size": 82.81764705882352 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 11.7; Weather: rain; Precipitation: 1.5", + "x": 585.2054794520548, + "y": 188.66666666666666, + "size": 17.69607843137255 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 8.3; Weather: sun; Precipitation: 0", + "x": 586.8493150684932, + "y": 211.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 6.7; Weather: sun; Precipitation: 0", + "x": 588.4931506849315, + "y": 222, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 6.7; Weather: sun; Precipitation: 0", + "x": 590.1369863013698, + "y": 222, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 8.9; Weather: rain; Precipitation: 0.3", + "x": 591.7808219178082, + "y": 207.33333333333334, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 9.4; Weather: sun; Precipitation: 0", + "x": 593.4246575342466, + "y": 203.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 7.2; Weather: sun; Precipitation: 0", + "x": 595.068493150685, + "y": 218.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 8.9; Weather: rain; Precipitation: 0.3", + "x": 596.7123287671233, + "y": 207.33333333333334, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 8.3; Weather: rain; Precipitation: 0.5", + "x": 598.3561643835617, + "y": 211.33333333333331, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 7.2; Weather: sun; Precipitation: 0", + "x": 600, + "y": 218.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 10.6; Weather: rain; Precipitation: 4.1", + "x": 0, + "y": 196, + "size": 36.099999999999994 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 8.9; Weather: rain; Precipitation: 1.5", + "x": 1.643835616438356, + "y": 207.33333333333334, + "size": 17.69607843137255 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 7.8; Weather: fog; Precipitation: 0", + "x": 3.287671232876712, + "y": 214.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 8.3; Weather: sun; Precipitation: 0", + "x": 4.931506849315068, + "y": 211.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 7.8; Weather: rain; Precipitation: 0.3", + "x": 6.575342465753424, + "y": 214.66666666666666, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 8.3; Weather: rain; Precipitation: 12.2", + "x": 8.21917808219178, + "y": 211.33333333333331, + "size": 93.43529411764705 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 10; Weather: rain; Precipitation: 9.7", + "x": 9.863013698630136, + "y": 200.00000000000003, + "size": 75.7392156862745 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 9.4; Weather: rain; Precipitation: 5.8", + "x": 11.506849315068493, + "y": 203.99999999999997, + "size": 48.13333333333333 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 12.8; Weather: rain; Precipitation: 4.3", + "x": 13.150684931506849, + "y": 181.33333333333334, + "size": 37.515686274509804 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 14.4; Weather: rain; Precipitation: 21.3", + "x": 14.794520547945204, + "y": 170.66666666666669, + "size": 157.84901960784313 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 1.5", + "x": 16.43835616438356, + "y": 192.66666666666669, + "size": 17.69607843137255 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 10.6; Weather: sun; Precipitation: 0", + "x": 18.08219178082192, + "y": 196, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 11.1; Weather: sun; Precipitation: 0", + "x": 19.72602739726027, + "y": 192.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 11.1; Weather: sun; Precipitation: 0", + "x": 21.36986301369863, + "y": 192.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 6.7; Weather: sun; Precipitation: 0", + "x": 23.013698630136986, + "y": 222, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 5.6; Weather: sun; Precipitation: 0", + "x": 24.65753424657534, + "y": 229.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 9.4; Weather: sun; Precipitation: 0", + "x": 26.301369863013697, + "y": 203.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 6.1; Weather: sun; Precipitation: 0", + "x": 27.945205479452056, + "y": 226.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 10; Weather: sun; Precipitation: 0", + "x": 29.58904109589041, + "y": 200.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 10; Weather: sun; Precipitation: 0", + "x": 31.232876712328768, + "y": 200.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 9.4; Weather: rain; Precipitation: 0.5", + "x": 32.87671232876712, + "y": 203.99999999999997, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 10; Weather: fog; Precipitation: 0", + "x": 34.52054794520548, + "y": 200.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 12.8; Weather: sun; Precipitation: 0", + "x": 36.16438356164384, + "y": 181.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 12.2; Weather: sun; Precipitation: 0", + "x": 37.8082191780822, + "y": 185.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 8.3; Weather: sun; Precipitation: 0", + "x": 39.45205479452054, + "y": 211.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 9.4; Weather: sun; Precipitation: 0", + "x": 41.0958904109589, + "y": 203.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 8.9", + "x": 42.73972602739726, + "y": 192.66666666666669, + "size": 70.0764705882353 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 21.6", + "x": 44.38356164383562, + "y": 192.66666666666669, + "size": 159.97254901960787 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 8.3; Weather: sun; Precipitation: 0", + "x": 46.02739726027397, + "y": 211.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 7.8; Weather: rain; Precipitation: 2.3", + "x": 47.67123287671233, + "y": 214.66666666666666, + "size": 23.35882352941176 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 7.8; Weather: rain; Precipitation: 2", + "x": 49.31506849315068, + "y": 214.66666666666666, + "size": 21.235294117647058 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 8.9; Weather: sun; Precipitation: 0", + "x": 50.95890410958904, + "y": 207.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 5; Weather: sun; Precipitation: 0", + "x": 52.602739726027394, + "y": 233.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 2.8; Weather: sun; Precipitation: 0", + "x": 54.24657534246575, + "y": 248, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): −0.5; Weather: sun; Precipitation: 0", + "x": 55.89041095890411, + "y": 270, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): −1.6; Weather: sun; Precipitation: 0", + "x": 57.534246575342465, + "y": 277.3333333333333, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 3.3; Weather: sun; Precipitation: 0", + "x": 59.17808219178082, + "y": 244.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#9467bd", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 5.6; Weather: snow; Precipitation: 5.1", + "x": 60.821917808219176, + "y": 229.33333333333334, + "size": 43.178431372549014 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 3.9; Weather: rain; Precipitation: 0.5", + "x": 62.465753424657535, + "y": 240.66666666666666, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 10; Weather: rain; Precipitation: 18.3", + "x": 64.10958904109589, + "y": 200.00000000000003, + "size": 136.61372549019606 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 12.2; Weather: rain; Precipitation: 17", + "x": 65.75342465753424, + "y": 185.33333333333331, + "size": 127.41176470588236 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 12.2; Weather: rain; Precipitation: 4.6", + "x": 67.3972602739726, + "y": 185.33333333333331, + "size": 39.63921568627451 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 12.8; Weather: rain; Precipitation: 1.8", + "x": 69.04109589041096, + "y": 181.33333333333334, + "size": 19.819607843137256 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 11.7; Weather: rain; Precipitation: 9.4", + "x": 70.68493150684931, + "y": 188.66666666666666, + "size": 73.6156862745098 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 11.7", + "x": 72.32876712328768, + "y": 192.66666666666669, + "size": 89.89607843137254 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 9.4; Weather: rain; Precipitation: 26.4", + "x": 73.97260273972603, + "y": 203.99999999999997, + "size": 193.94901960784313 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 8.3; Weather: rain; Precipitation: 14.5", + "x": 75.6164383561644, + "y": 211.33333333333331, + "size": 109.71568627450979 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 8.9; Weather: rain; Precipitation: 15.2", + "x": 77.26027397260273, + "y": 207.33333333333334, + "size": 114.6705882352941 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 8.3; Weather: rain; Precipitation: 1", + "x": 78.90410958904108, + "y": 211.33333333333331, + "size": 14.156862745098039 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 10; Weather: rain; Precipitation: 3", + "x": 80.54794520547945, + "y": 200.00000000000003, + "size": 28.313725490196077 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 6.7; Weather: rain; Precipitation: 2.8", + "x": 82.1917808219178, + "y": 222, + "size": 26.898039215686275 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 5.6; Weather: rain; Precipitation: 2.5", + "x": 83.83561643835617, + "y": 229.33333333333334, + "size": 24.77450980392157 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 7.2; Weather: rain; Precipitation: 6.1", + "x": 85.47945205479452, + "y": 218.66666666666669, + "size": 50.25686274509804 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 6.7; Weather: rain; Precipitation: 13", + "x": 87.12328767123287, + "y": 222, + "size": 99.09803921568628 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 12.2; Weather: rain; Precipitation: 0.3", + "x": 88.76712328767124, + "y": 185.33333333333331, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 13.9; Weather: sun; Precipitation: 0", + "x": 90.41095890410958, + "y": 174.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 12.8; Weather: sun; Precipitation: 0", + "x": 92.05479452054794, + "y": 181.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 14.4; Weather: sun; Precipitation: 0", + "x": 93.6986301369863, + "y": 170.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 7.2; Weather: rain; Precipitation: 0.5", + "x": 95.34246575342466, + "y": 218.66666666666669, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 19.1", + "x": 98.63013698630137, + "y": 192.66666666666669, + "size": 142.2764705882353 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 14.4; Weather: rain; Precipitation: 10.7", + "x": 100.27397260273973, + "y": 170.66666666666669, + "size": 82.81764705882352 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 13.9; Weather: rain; Precipitation: 16.5", + "x": 101.91780821917808, + "y": 174.00000000000003, + "size": 123.87254901960785 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 15.6; Weather: rain; Precipitation: 46.7", + "x": 103.56164383561645, + "y": 162.66666666666666, + "size": 337.6411764705882 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 13.3; Weather: rain; Precipitation: 3", + "x": 105.20547945205479, + "y": 177.99999999999997, + "size": 28.313725490196077 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 15.6; Weather: sun; Precipitation: 0", + "x": 106.84931506849314, + "y": 162.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 12.8; Weather: rain; Precipitation: 32.3", + "x": 108.4931506849315, + "y": 181.33333333333334, + "size": 235.71176470588233 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 15; Weather: rain; Precipitation: 4.3", + "x": 110.13698630136986, + "y": 166.66666666666669, + "size": 37.515686274509804 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 12.2; Weather: rain; Precipitation: 18.8", + "x": 111.78082191780823, + "y": 185.33333333333331, + "size": 140.1529411764706 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 14.4; Weather: fog; Precipitation: 0", + "x": 113.42465753424658, + "y": 170.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 16.1; Weather: fog; Precipitation: 0", + "x": 115.06849315068493, + "y": 159.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 13.9; Weather: rain; Precipitation: 0.5", + "x": 116.64383561643835, + "y": 174.00000000000003, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 14.4; Weather: rain; Precipitation: 6.9", + "x": 118.2876712328767, + "y": 170.66666666666669, + "size": 55.91960784313726 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 16.7; Weather: rain; Precipitation: 8.1", + "x": 119.93150684931507, + "y": 155.33333333333334, + "size": 64.41372549019609 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 10.6; Weather: rain; Precipitation: 27.7", + "x": 121.57534246575342, + "y": 196, + "size": 203.15098039215687 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 10; Weather: rain; Precipitation: 0.3", + "x": 123.21917808219179, + "y": 200.00000000000003, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 10; Weather: sun; Precipitation: 0", + "x": 124.86301369863014, + "y": 200.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 0.5", + "x": 126.5068493150685, + "y": 192.66666666666669, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 11.1; Weather: sun; Precipitation: 0", + "x": 128.15068493150685, + "y": 192.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 10.6; Weather: sun; Precipitation: 0", + "x": 129.7945205479452, + "y": 196, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 11.1; Weather: sun; Precipitation: 0", + "x": 131.43835616438358, + "y": 192.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 12.8; Weather: sun; Precipitation: 0", + "x": 133.08219178082192, + "y": 181.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 18.9; Weather: sun; Precipitation: 0", + "x": 134.72602739726025, + "y": 140.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 13.9; Weather: rain; Precipitation: 4.1", + "x": 136.36986301369862, + "y": 174.00000000000003, + "size": 36.099999999999994 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 3.6", + "x": 138.013698630137, + "y": 192.66666666666669, + "size": 32.56078431372549 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 12.2; Weather: rain; Precipitation: 0.3", + "x": 139.65753424657535, + "y": 185.33333333333331, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 11.7; Weather: rain; Precipitation: 22.1", + "x": 141.3013698630137, + "y": 188.66666666666666, + "size": 163.51176470588234 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 11.7; Weather: rain; Precipitation: 14", + "x": 142.94520547945206, + "y": 188.66666666666666, + "size": 106.1764705882353 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 11.1; Weather: sun; Precipitation: 0", + "x": 144.58904109589042, + "y": 192.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 15.6; Weather: sun; Precipitation: 0", + "x": 146.23287671232876, + "y": 162.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 14.4; Weather: sun; Precipitation: 0", + "x": 147.87671232876713, + "y": 170.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 14.4; Weather: sun; Precipitation: 0", + "x": 149.52054794520546, + "y": 170.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 13.3; Weather: rain; Precipitation: 2.5", + "x": 151.16438356164383, + "y": 177.99999999999997, + "size": 24.77450980392157 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 12.8; Weather: sun; Precipitation: 0", + "x": 152.8082191780822, + "y": 181.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 11.7; Weather: rain; Precipitation: 4.6", + "x": 154.45205479452054, + "y": 188.66666666666666, + "size": 39.63921568627451 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 13.9; Weather: sun; Precipitation: 0", + "x": 156.0958904109589, + "y": 174.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 21.1; Weather: sun; Precipitation: 0", + "x": 157.73972602739727, + "y": 125.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 15.6; Weather: rain; Precipitation: 4.6", + "x": 159.38356164383563, + "y": 162.66666666666666, + "size": 39.63921568627451 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 14.4; Weather: sun; Precipitation: 0", + "x": 161.02739726027397, + "y": 170.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 15; Weather: sun; Precipitation: 0", + "x": 162.67123287671234, + "y": 166.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 17.2; Weather: sun; Precipitation: 0", + "x": 164.31506849315068, + "y": 152, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 16.1; Weather: sun; Precipitation: 0", + "x": 165.95890410958904, + "y": 159.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 20.6; Weather: sun; Precipitation: 0", + "x": 167.6027397260274, + "y": 129.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 20; Weather: sun; Precipitation: 0", + "x": 169.24657534246575, + "y": 133.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 14.4; Weather: rain; Precipitation: 0.5", + "x": 170.8904109589041, + "y": 170.66666666666669, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 10.9", + "x": 172.53424657534245, + "y": 192.66666666666669, + "size": 84.23333333333333 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 11.7; Weather: rain; Precipitation: 18.5", + "x": 174.17808219178085, + "y": 188.66666666666666, + "size": 138.02941176470588 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 14.4; Weather: sun; Precipitation: 0", + "x": 175.82191780821918, + "y": 170.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 11.7; Weather: rain; Precipitation: 13.7", + "x": 177.46575342465752, + "y": 188.66666666666666, + "size": 104.05294117647058 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 15.6; Weather: sun; Precipitation: 0", + "x": 179.1095890410959, + "y": 162.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 17.2; Weather: rain; Precipitation: 5.1", + "x": 180.75342465753423, + "y": 152, + "size": 43.178431372549014 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 12.2; Weather: rain; Precipitation: 14.2", + "x": 182.39726027397262, + "y": 185.33333333333331, + "size": 107.5921568627451 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 11.7; Weather: rain; Precipitation: 8.9", + "x": 184.04109589041096, + "y": 188.66666666666666, + "size": 70.0764705882353 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 13.9; Weather: rain; Precipitation: 12.4", + "x": 185.68493150684932, + "y": 174.00000000000003, + "size": 94.85098039215687 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 14.4; Weather: sun; Precipitation: 0", + "x": 187.32876712328766, + "y": 170.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 15; Weather: rain; Precipitation: 3.3", + "x": 188.97260273972603, + "y": 166.66666666666669, + "size": 30.43725490196078 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 6.9", + "x": 190.6164383561644, + "y": 192.66666666666669, + "size": 55.91960784313726 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 16.1; Weather: sun; Precipitation: 0", + "x": 192.26027397260276, + "y": 159.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 25; Weather: sun; Precipitation: 0", + "x": 193.9041095890411, + "y": 100.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 27.8; Weather: sun; Precipitation: 0", + "x": 195.54794520547944, + "y": 81.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 29.4; Weather: sun; Precipitation: 0", + "x": 197.1917808219178, + "y": 70.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 18.3; Weather: sun; Precipitation: 0", + "x": 198.83561643835617, + "y": 144.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 15; Weather: rain; Precipitation: 33.3", + "x": 200.47945205479454, + "y": 166.66666666666669, + "size": 242.79019607843136 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 14.4; Weather: rain; Precipitation: 16", + "x": 202.12328767123287, + "y": 170.66666666666669, + "size": 120.33333333333333 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 15.6; Weather: rain; Precipitation: 5.1", + "x": 203.76712328767124, + "y": 162.66666666666666, + "size": 43.178431372549014 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 16.7; Weather: sun; Precipitation: 0", + "x": 205.41095890410958, + "y": 155.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 18.3; Weather: sun; Precipitation: 0", + "x": 207.05479452054794, + "y": 144.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 13.9; Weather: rain; Precipitation: 13.7", + "x": 208.6986301369863, + "y": 174.00000000000003, + "size": 104.05294117647058 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 13.3; Weather: rain; Precipitation: 2", + "x": 210.34246575342465, + "y": 177.99999999999997, + "size": 21.235294117647058 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 15.6; Weather: rain; Precipitation: 0.5", + "x": 211.986301369863, + "y": 162.66666666666666, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 18.9; Weather: sun; Precipitation: 0", + "x": 213.63013698630135, + "y": 140.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 24.4; Weather: sun; Precipitation: 0", + "x": 215.27397260273975, + "y": 104, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 26.7; Weather: sun; Precipitation: 0", + "x": 216.91780821917808, + "y": 88.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 27.8; Weather: sun; Precipitation: 0", + "x": 218.56164383561645, + "y": 81.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 26.7; Weather: sun; Precipitation: 0", + "x": 220.2054794520548, + "y": 88.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 20; Weather: sun; Precipitation: 0", + "x": 221.84931506849313, + "y": 133.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 20; Weather: sun; Precipitation: 0", + "x": 223.49315068493152, + "y": 133.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 20; Weather: sun; Precipitation: 0", + "x": 225.13698630136986, + "y": 133.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 21.1; Weather: sun; Precipitation: 0", + "x": 226.78082191780823, + "y": 125.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 22.2; Weather: sun; Precipitation: 0", + "x": 228.42465753424656, + "y": 118.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 20; Weather: sun; Precipitation: 0", + "x": 230.06849315068493, + "y": 133.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 24.4; Weather: sun; Precipitation: 0", + "x": 231.7123287671233, + "y": 104, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 20; Weather: rain; Precipitation: 3.8", + "x": 233.35616438356166, + "y": 133.33333333333331, + "size": 33.976470588235294 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 18.3; Weather: sun; Precipitation: 0", + "x": 235, + "y": 144.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 15; Weather: rain; Precipitation: 5.6", + "x": 236.64383561643834, + "y": 166.66666666666669, + "size": 46.71764705882352 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 18.3; Weather: sun; Precipitation: 0", + "x": 238.2876712328767, + "y": 144.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 20; Weather: sun; Precipitation: 0", + "x": 239.93150684931507, + "y": 133.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 18.9; Weather: sun; Precipitation: 0", + "x": 241.57534246575344, + "y": 140.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 18.9; Weather: sun; Precipitation: 0", + "x": 243.21917808219177, + "y": 140.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 20.6; Weather: sun; Precipitation: 0", + "x": 244.86301369863014, + "y": 129.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 23.3; Weather: sun; Precipitation: 0", + "x": 246.50684931506848, + "y": 111.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 22.2; Weather: sun; Precipitation: 0", + "x": 248.15068493150687, + "y": 118.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 23.3; Weather: sun; Precipitation: 0", + "x": 249.7945205479452, + "y": 111.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 18.3; Weather: sun; Precipitation: 0", + "x": 251.43835616438355, + "y": 144.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 19.4; Weather: sun; Precipitation: 0", + "x": 253.08219178082192, + "y": 137.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 22.2; Weather: sun; Precipitation: 0", + "x": 254.72602739726025, + "y": 118.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 25; Weather: sun; Precipitation: 0", + "x": 256.36986301369865, + "y": 100.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 24.4; Weather: sun; Precipitation: 0", + "x": 258.013698630137, + "y": 104, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 23.3; Weather: sun; Precipitation: 0", + "x": 259.6575342465753, + "y": 111.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 21.1; Weather: sun; Precipitation: 0", + "x": 261.3013698630137, + "y": 125.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 20; Weather: sun; Precipitation: 0", + "x": 262.94520547945206, + "y": 133.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 23.9; Weather: sun; Precipitation: 0", + "x": 264.5890410958904, + "y": 107.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 21.7; Weather: rain; Precipitation: 1.8", + "x": 266.2328767123288, + "y": 122.00000000000001, + "size": 19.819607843137256 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 15.6; Weather: rain; Precipitation: 6.4", + "x": 267.8767123287671, + "y": 162.66666666666666, + "size": 52.38039215686275 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 17.8; Weather: sun; Precipitation: 0", + "x": 269.52054794520546, + "y": 148, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 18.3; Weather: rain; Precipitation: 0.5", + "x": 271.16438356164383, + "y": 144.66666666666666, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 17.8; Weather: rain; Precipitation: 3.6", + "x": 272.8082191780822, + "y": 148, + "size": 32.56078431372549 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 17.8; Weather: rain; Precipitation: 1.3", + "x": 274.45205479452056, + "y": 148, + "size": 16.280392156862746 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 18.9; Weather: sun; Precipitation: 0", + "x": 276.0958904109589, + "y": 140.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 25.6; Weather: rain; Precipitation: 0.8", + "x": 277.73972602739724, + "y": 95.99999999999999, + "size": 12.741176470588234 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 20; Weather: rain; Precipitation: 0.3", + "x": 279.3835616438356, + "y": 133.33333333333331, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 22.2; Weather: sun; Precipitation: 0", + "x": 281.027397260274, + "y": 118.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 25; Weather: sun; Precipitation: 0", + "x": 282.67123287671234, + "y": 100.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 25; Weather: sun; Precipitation: 0", + "x": 284.3150684931507, + "y": 100.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 24.4; Weather: sun; Precipitation: 0", + "x": 285.958904109589, + "y": 104, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 26.1; Weather: sun; Precipitation: 0", + "x": 287.60273972602744, + "y": 92.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 21.1; Weather: sun; Precipitation: 0", + "x": 289.24657534246575, + "y": 125.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 21.1; Weather: rain; Precipitation: 1.8", + "x": 290.8904109589041, + "y": 125.99999999999997, + "size": 19.819607843137256 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 20; Weather: rain; Precipitation: 2.3", + "x": 292.5342465753425, + "y": 133.33333333333331, + "size": 23.35882352941176 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 20.6; Weather: sun; Precipitation: 0", + "x": 294.1780821917808, + "y": 129.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 25.6; Weather: sun; Precipitation: 0", + "x": 295.8219178082192, + "y": 95.99999999999999, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 34.4; Weather: sun; Precipitation: 0", + "x": 297.4657534246575, + "y": 37.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 27.2; Weather: sun; Precipitation: 0", + "x": 299.1095890410959, + "y": 85.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 21.7; Weather: sun; Precipitation: 0", + "x": 300.75342465753425, + "y": 122.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 23.9; Weather: sun; Precipitation: 0", + "x": 302.3972602739726, + "y": 107.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 24.4; Weather: fog; Precipitation: 0", + "x": 304.041095890411, + "y": 104, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 28.9; Weather: sun; Precipitation: 0", + "x": 305.6849315068493, + "y": 74.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 27.2; Weather: fog; Precipitation: 0", + "x": 307.32876712328766, + "y": 85.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 30; Weather: sun; Precipitation: 0", + "x": 308.972602739726, + "y": 66.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 26.7; Weather: sun; Precipitation: 0", + "x": 310.6164383561644, + "y": 88.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 28.9; Weather: fog; Precipitation: 0", + "x": 312.2602739726027, + "y": 74.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 31.1; Weather: sun; Precipitation: 0", + "x": 313.90410958904107, + "y": 59.333333333333314, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 32.2; Weather: sun; Precipitation: 0", + "x": 315.5479452054795, + "y": 51.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 29.4; Weather: sun; Precipitation: 0", + "x": 317.19178082191786, + "y": 70.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 27.8; Weather: sun; Precipitation: 0", + "x": 318.83561643835617, + "y": 81.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 31.1; Weather: sun; Precipitation: 0", + "x": 320.47945205479454, + "y": 59.333333333333314, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 31.1; Weather: sun; Precipitation: 0", + "x": 322.1232876712329, + "y": 59.333333333333314, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 26.7; Weather: sun; Precipitation: 0", + "x": 323.7671232876712, + "y": 88.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 23.9; Weather: sun; Precipitation: 0", + "x": 325.4109589041096, + "y": 107.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 25.6; Weather: fog; Precipitation: 0", + "x": 327.05479452054794, + "y": 95.99999999999999, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 19.4; Weather: sun; Precipitation: 0", + "x": 328.69863013698625, + "y": 137.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 23.9; Weather: sun; Precipitation: 0", + "x": 330.3424657534246, + "y": 107.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 21.1; Weather: rain; Precipitation: 0.3", + "x": 331.98630136986304, + "y": 125.99999999999997, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 18.9; Weather: rain; Precipitation: 19.3", + "x": 333.6301369863014, + "y": 140.66666666666669, + "size": 143.69215686274512 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 20.6; Weather: sun; Precipitation: 0", + "x": 335.2739726027397, + "y": 129.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 22.8; Weather: sun; Precipitation: 0", + "x": 336.9178082191781, + "y": 114.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 26.1; Weather: sun; Precipitation: 0", + "x": 338.56164383561645, + "y": 92.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 28.3; Weather: sun; Precipitation: 0", + "x": 340.2054794520548, + "y": 78, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 30.6; Weather: sun; Precipitation: 0", + "x": 341.8493150684931, + "y": 62.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 30; Weather: sun; Precipitation: 0", + "x": 343.4931506849315, + "y": 66.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 29.4; Weather: sun; Precipitation: 0", + "x": 345.13698630136986, + "y": 70.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 30.6; Weather: sun; Precipitation: 0", + "x": 346.78082191780817, + "y": 62.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 28.9; Weather: sun; Precipitation: 0", + "x": 348.4246575342466, + "y": 74.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 29.4; Weather: rain; Precipitation: 0.5", + "x": 350.06849315068496, + "y": 70.66666666666669, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 31.7; Weather: sun; Precipitation: 0", + "x": 351.7123287671233, + "y": 55.33333333333332, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 32.8; Weather: sun; Precipitation: 0", + "x": 353.35616438356163, + "y": 48.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 25; Weather: sun; Precipitation: 0", + "x": 355, + "y": 100.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 26.1; Weather: fog; Precipitation: 0", + "x": 356.64383561643837, + "y": 92.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 25.6; Weather: fog; Precipitation: 0", + "x": 358.2876712328767, + "y": 95.99999999999999, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 25.6; Weather: sun; Precipitation: 0", + "x": 359.93150684931504, + "y": 95.99999999999999, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 27.2; Weather: sun; Precipitation: 0", + "x": 361.5753424657534, + "y": 85.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 30.6; Weather: sun; Precipitation: 0", + "x": 363.2191780821918, + "y": 62.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 35.6; Weather: rain; Precipitation: 0.5", + "x": 364.86301369863014, + "y": 29.33333333333332, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 27.2; Weather: rain; Precipitation: 12.7", + "x": 366.5068493150685, + "y": 85.33333333333331, + "size": 96.97450980392156 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 23.3; Weather: rain; Precipitation: 21.6", + "x": 368.1506849315069, + "y": 111.33333333333331, + "size": 159.97254901960787 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 21.1; Weather: sun; Precipitation: 0", + "x": 369.79452054794524, + "y": 125.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 24.4; Weather: rain; Precipitation: 1", + "x": 371.43835616438355, + "y": 104, + "size": 14.156862745098039 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 25.6; Weather: sun; Precipitation: 0", + "x": 373.0821917808219, + "y": 95.99999999999999, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 27.8; Weather: sun; Precipitation: 0", + "x": 374.7260273972603, + "y": 81.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 29.4; Weather: sun; Precipitation: 0", + "x": 376.3698630136986, + "y": 70.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 27.2; Weather: sun; Precipitation: 0", + "x": 378.01369863013696, + "y": 85.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 21.7; Weather: sun; Precipitation: 0", + "x": 379.6575342465753, + "y": 122.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 21.1; Weather: sun; Precipitation: 0", + "x": 381.30136986301375, + "y": 125.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 23.9; Weather: sun; Precipitation: 0", + "x": 382.94520547945206, + "y": 107.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 27.8; Weather: sun; Precipitation: 0", + "x": 384.5890410958904, + "y": 81.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 25; Weather: sun; Precipitation: 0", + "x": 386.2328767123288, + "y": 100.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 28.9; Weather: sun; Precipitation: 0", + "x": 387.8767123287671, + "y": 74.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 31.1; Weather: sun; Precipitation: 0", + "x": 389.52054794520546, + "y": 59.333333333333314, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 28.9; Weather: sun; Precipitation: 0", + "x": 391.16438356164383, + "y": 74.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 23.3; Weather: sun; Precipitation: 0", + "x": 392.8082191780822, + "y": 111.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 22.8; Weather: sun; Precipitation: 0", + "x": 394.4520547945205, + "y": 114.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 17.8; Weather: rain; Precipitation: 8.4", + "x": 396.0958904109589, + "y": 148, + "size": 66.5372549019608 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 21.1; Weather: rain; Precipitation: 1.3", + "x": 397.7397260273973, + "y": 125.99999999999997, + "size": 16.280392156862746 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 23.3; Weather: sun; Precipitation: 0", + "x": 399.38356164383566, + "y": 111.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 20; Weather: rain; Precipitation: 3", + "x": 401.027397260274, + "y": 133.33333333333331, + "size": 28.313725490196077 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 20.6; Weather: sun; Precipitation: 0", + "x": 402.67123287671234, + "y": 129.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 23.9; Weather: fog; Precipitation: 0", + "x": 404.3150684931507, + "y": 107.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 27.8; Weather: fog; Precipitation: 0", + "x": 405.958904109589, + "y": 81.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 32.2; Weather: sun; Precipitation: 0", + "x": 407.6027397260274, + "y": 51.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 28.3; Weather: sun; Precipitation: 0", + "x": 409.24657534246575, + "y": 78, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 21.1; Weather: sun; Precipitation: 0", + "x": 410.8904109589041, + "y": 125.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 21.7; Weather: sun; Precipitation: 0", + "x": 412.5342465753424, + "y": 122.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 22.2; Weather: sun; Precipitation: 0", + "x": 414.17808219178085, + "y": 118.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 24.4; Weather: sun; Precipitation: 0", + "x": 415.8219178082192, + "y": 104, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 24.4; Weather: sun; Precipitation: 0", + "x": 417.4657534246575, + "y": 104, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 28.3; Weather: sun; Precipitation: 0", + "x": 419.1095890410959, + "y": 78, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 30; Weather: sun; Precipitation: 0", + "x": 420.75342465753425, + "y": 66.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 30.6; Weather: sun; Precipitation: 0", + "x": 422.3972602739726, + "y": 62.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 22.2; Weather: sun; Precipitation: 0", + "x": 424.04109589041093, + "y": 118.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 22.8; Weather: rain; Precipitation: 0.5", + "x": 425.6849315068493, + "y": 114.66666666666667, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 19.4; Weather: rain; Precipitation: 0.3", + "x": 427.32876712328766, + "y": 137.33333333333334, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 23.9; Weather: sun; Precipitation: 0", + "x": 428.97260273972597, + "y": 107.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 24.4; Weather: fog; Precipitation: 0", + "x": 430.6164383561644, + "y": 104, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 26.1; Weather: sun; Precipitation: 0", + "x": 432.26027397260276, + "y": 92.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 22.2; Weather: rain; Precipitation: 0.3", + "x": 433.9041095890411, + "y": 118.66666666666667, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 18.9; Weather: rain; Precipitation: 18.3", + "x": 435.54794520547944, + "y": 140.66666666666669, + "size": 136.61372549019606 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 18.9; Weather: rain; Precipitation: 20.3", + "x": 437.1917808219178, + "y": 140.66666666666669, + "size": 150.77058823529413 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 21.7; Weather: rain; Precipitation: 4.3", + "x": 438.83561643835617, + "y": 122.00000000000001, + "size": 37.515686274509804 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 20; Weather: rain; Precipitation: 8.9", + "x": 440.4794520547945, + "y": 133.33333333333331, + "size": 70.0764705882353 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 20.6; Weather: fog; Precipitation: 0", + "x": 442.12328767123284, + "y": 129.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 18.9; Weather: fog; Precipitation: 0", + "x": 443.7671232876712, + "y": 140.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 16.7; Weather: rain; Precipitation: 0.8", + "x": 445.41095890410963, + "y": 155.33333333333334, + "size": 12.741176470588234 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 19.4; Weather: sun; Precipitation: 0", + "x": 447.05479452054794, + "y": 137.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 18.3; Weather: sun; Precipitation: 0", + "x": 448.6986301369863, + "y": 144.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 19.4; Weather: sun; Precipitation: 0", + "x": 450.3424657534247, + "y": 137.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 22.2; Weather: sun; Precipitation: 0", + "x": 451.98630136986304, + "y": 118.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 21.7; Weather: sun; Precipitation: 0", + "x": 453.63013698630135, + "y": 122.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 23.9; Weather: fog; Precipitation: 0", + "x": 455.2739726027397, + "y": 107.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 25.6; Weather: fog; Precipitation: 0", + "x": 456.9178082191781, + "y": 95.99999999999999, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 18.9; Weather: fog; Precipitation: 0", + "x": 458.5616438356164, + "y": 140.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 20.6; Weather: fog; Precipitation: 0", + "x": 460.20547945205476, + "y": 129.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 17.2; Weather: fog; Precipitation: 0", + "x": 461.8493150684932, + "y": 152, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 18.3; Weather: rain; Precipitation: 0.3", + "x": 463.49315068493155, + "y": 144.66666666666666, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 18.3; Weather: rain; Precipitation: 7.4", + "x": 465.13698630136986, + "y": 144.66666666666666, + "size": 59.45882352941177 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 17.8; Weather: sun; Precipitation: 0", + "x": 466.7808219178082, + "y": 148, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 21.1; Weather: rain; Precipitation: 7.6", + "x": 468.4246575342466, + "y": 125.99999999999997, + "size": 60.87450980392156 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 16.7; Weather: rain; Precipitation: 7.1", + "x": 470.06849315068496, + "y": 155.33333333333334, + "size": 57.33529411764705 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 16.1; Weather: rain; Precipitation: 8.6", + "x": 471.71232876712327, + "y": 159.33333333333331, + "size": 67.95294117647059 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 20.6; Weather: sun; Precipitation: 0", + "x": 473.35616438356163, + "y": 129.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 16.7; Weather: rain; Precipitation: 3.3", + "x": 475, + "y": 155.33333333333334, + "size": 30.43725490196078 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 19.4; Weather: rain; Precipitation: 15", + "x": 476.6438356164383, + "y": 137.33333333333334, + "size": 113.25490196078431 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 22.2; Weather: sun; Precipitation: 0", + "x": 478.28767123287673, + "y": 118.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 16.1; Weather: rain; Precipitation: 11.7", + "x": 479.9315068493151, + "y": 159.33333333333331, + "size": 89.89607843137254 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 16.1; Weather: rain; Precipitation: 1", + "x": 481.57534246575347, + "y": 159.33333333333331, + "size": 14.156862745098039 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 15.6; Weather: rain; Precipitation: 32", + "x": 483.2191780821918, + "y": 162.66666666666666, + "size": 233.58823529411765 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 14.4; Weather: rain; Precipitation: 9.4", + "x": 484.86301369863014, + "y": 170.66666666666669, + "size": 73.6156862745098 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 14.4; Weather: rain; Precipitation: 4.1", + "x": 486.5068493150685, + "y": 170.66666666666669, + "size": 36.099999999999994 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 16.7; Weather: rain; Precipitation: 6.1", + "x": 488.1506849315068, + "y": 155.33333333333334, + "size": 50.25686274509804 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 12.8; Weather: rain; Precipitation: 1.5", + "x": 489.7945205479452, + "y": 181.33333333333334, + "size": 17.69607843137255 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 15.6; Weather: rain; Precipitation: 0.8", + "x": 491.43835616438355, + "y": 162.66666666666666, + "size": 12.741176470588234 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 15; Weather: rain; Precipitation: 12.7", + "x": 493.0821917808219, + "y": 166.66666666666669, + "size": 96.97450980392156 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 16.7; Weather: rain; Precipitation: 0.5", + "x": 494.7260273972603, + "y": 155.33333333333334, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 15.6; Weather: rain; Precipitation: 25.4", + "x": 496.36986301369865, + "y": 162.66666666666666, + "size": 186.8705882352941 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 12.8; Weather: rain; Precipitation: 17", + "x": 498.013698630137, + "y": 181.33333333333334, + "size": 127.41176470588236 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 11.1; Weather: fog; Precipitation: 0", + "x": 499.6575342465753, + "y": 192.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 13.3; Weather: rain; Precipitation: 1.8", + "x": 501.3013698630137, + "y": 177.99999999999997, + "size": 19.819607843137256 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 13.9; Weather: rain; Precipitation: 10.9", + "x": 502.94520547945206, + "y": 174.00000000000003, + "size": 84.23333333333333 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 14.4; Weather: rain; Precipitation: 4.1", + "x": 504.5890410958904, + "y": 170.66666666666669, + "size": 36.099999999999994 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 15; Weather: rain; Precipitation: 4.8", + "x": 506.23287671232873, + "y": 166.66666666666669, + "size": 41.05490196078431 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 16.7; Weather: rain; Precipitation: 4.1", + "x": 507.94520547945206, + "y": 155.33333333333334, + "size": 36.099999999999994 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 14.4; Weather: sun; Precipitation: 0", + "x": 509.58904109589037, + "y": 170.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 12.8; Weather: fog; Precipitation: 0", + "x": 511.2328767123288, + "y": 181.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 13.3; Weather: rain; Precipitation: 5.1", + "x": 512.8767123287671, + "y": 177.99999999999997, + "size": 43.178431372549014 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 11.1; Weather: sun; Precipitation: 0", + "x": 514.5205479452055, + "y": 192.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 7.8; Weather: sun; Precipitation: 0", + "x": 516.1643835616438, + "y": 214.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 6.7; Weather: sun; Precipitation: 0", + "x": 517.8082191780821, + "y": 222, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 7.2; Weather: sun; Precipitation: 0", + "x": 519.4520547945206, + "y": 218.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 7.2; Weather: sun; Precipitation: 0", + "x": 521.0958904109589, + "y": 218.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 8.3; Weather: sun; Precipitation: 0", + "x": 522.7397260273973, + "y": 211.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 9.4; Weather: sun; Precipitation: 0", + "x": 524.3835616438356, + "y": 203.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 10.6; Weather: sun; Precipitation: 0", + "x": 526.0273972602739, + "y": 196, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 7.2; Weather: sun; Precipitation: 0", + "x": 527.6712328767123, + "y": 218.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 11.1; Weather: sun; Precipitation: 0", + "x": 529.3150684931508, + "y": 192.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 3.6", + "x": 530.9589041095891, + "y": 192.66666666666669, + "size": 32.56078431372549 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 15.2", + "x": 532.6027397260274, + "y": 192.66666666666669, + "size": 114.6705882352941 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 9.4; Weather: rain; Precipitation: 0.5", + "x": 534.2465753424658, + "y": 203.99999999999997, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 12.8; Weather: rain; Precipitation: 11.9", + "x": 535.8904109589041, + "y": 181.33333333333334, + "size": 91.31176470588235 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 11.7; Weather: rain; Precipitation: 1.3", + "x": 537.5342465753424, + "y": 188.66666666666666, + "size": 16.280392156862746 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 13.9; Weather: rain; Precipitation: 18.3", + "x": 539.1780821917808, + "y": 174.00000000000003, + "size": 136.61372549019606 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 15; Weather: rain; Precipitation: 0.3", + "x": 540.8219178082192, + "y": 166.66666666666669, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 14.4; Weather: rain; Precipitation: 3.3", + "x": 542.4657534246575, + "y": 170.66666666666669, + "size": 30.43725490196078 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 12.8; Weather: rain; Precipitation: 34.3", + "x": 544.1095890410959, + "y": 181.33333333333334, + "size": 249.8686274509804 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#9467bd", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 4.4; Weather: snow; Precipitation: 3.6", + "x": 545.7534246575343, + "y": 237.33333333333334, + "size": 32.56078431372549 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 2.8; Weather: sun; Precipitation: 0", + "x": 547.3972602739726, + "y": 248, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 4.4; Weather: sun; Precipitation: 0", + "x": 549.0410958904109, + "y": 237.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 5.6; Weather: fog; Precipitation: 0", + "x": 550.6849315068494, + "y": 229.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 10; Weather: sun; Precipitation: 0", + "x": 552.3287671232877, + "y": 200.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 8.3; Weather: rain; Precipitation: 0.8", + "x": 553.972602739726, + "y": 211.33333333333331, + "size": 12.741176470588234 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 12.8; Weather: rain; Precipitation: 3", + "x": 555.6164383561644, + "y": 181.33333333333334, + "size": 28.313725490196077 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 11.7; Weather: rain; Precipitation: 7.4", + "x": 557.2602739726027, + "y": 188.66666666666666, + "size": 59.45882352941177 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 14.4; Weather: sun; Precipitation: 0", + "x": 558.904109589041, + "y": 170.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 14.4; Weather: rain; Precipitation: 9.1", + "x": 560.5479452054794, + "y": 170.66666666666669, + "size": 71.49215686274509 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 16.1; Weather: rain; Precipitation: 9.9", + "x": 562.1917808219179, + "y": 159.33333333333331, + "size": 77.15490196078431 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 18.9; Weather: rain; Precipitation: 13", + "x": 563.8356164383562, + "y": 140.66666666666669, + "size": 99.09803921568628 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 14.4; Weather: rain; Precipitation: 6.9", + "x": 565.4794520547945, + "y": 170.66666666666669, + "size": 55.91960784313726 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 11.1; Weather: sun; Precipitation: 0", + "x": 567.1232876712329, + "y": 192.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 10; Weather: fog; Precipitation: 0", + "x": 568.7671232876712, + "y": 200.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 12.8; Weather: fog; Precipitation: 0", + "x": 570.4109589041095, + "y": 181.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 12.2; Weather: sun; Precipitation: 0", + "x": 572.054794520548, + "y": 185.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 10; Weather: sun; Precipitation: 0", + "x": 573.6986301369863, + "y": 200.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 8.9; Weather: rain; Precipitation: 2.8", + "x": 575.3424657534247, + "y": 207.33333333333334, + "size": 26.898039215686275 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 9.4; Weather: rain; Precipitation: 13", + "x": 576.986301369863, + "y": 203.99999999999997, + "size": 99.09803921568628 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 3", + "x": 578.6301369863014, + "y": 192.66666666666669, + "size": 28.313725490196077 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 12.8; Weather: rain; Precipitation: 19.6", + "x": 580.2739726027397, + "y": 181.33333333333334, + "size": 145.8156862745098 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 12.8; Weather: sun; Precipitation: 0", + "x": 581.9178082191781, + "y": 181.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 10.6; Weather: sun; Precipitation: 0", + "x": 583.5616438356165, + "y": 196, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 12.2; Weather: rain; Precipitation: 20.6", + "x": 585.2054794520548, + "y": 185.33333333333331, + "size": 152.89411764705883 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 7.2; Weather: rain; Precipitation: 5.3", + "x": 586.8493150684932, + "y": 218.66666666666669, + "size": 44.59411764705882 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 7.8; Weather: fog; Precipitation: 0", + "x": 588.4931506849315, + "y": 214.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 5.6; Weather: fog; Precipitation: 0", + "x": 590.1369863013698, + "y": 229.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 9.4; Weather: rain; Precipitation: 3.3", + "x": 591.7808219178082, + "y": 203.99999999999997, + "size": 30.43725490196078 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 6.7; Weather: rain; Precipitation: 4.1", + "x": 593.4246575342466, + "y": 222, + "size": 36.099999999999994 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 6.1; Weather: fog; Precipitation: 0", + "x": 595.068493150685, + "y": 226.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 3.3; Weather: sun; Precipitation: 0", + "x": 596.7123287671233, + "y": 244.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 3.3; Weather: sun; Precipitation: 0", + "x": 598.3561643835617, + "y": 244.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 5.6; Weather: sun; Precipitation: 0", + "x": 600, + "y": 229.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 5.6; Weather: rain; Precipitation: 1.5", + "x": 0, + "y": 229.33333333333334, + "size": 17.69607843137255 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 5; Weather: fog; Precipitation: 0", + "x": 1.643835616438356, + "y": 233.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 10.6; Weather: rain; Precipitation: 10.2", + "x": 3.287671232876712, + "y": 196, + "size": 79.27843137254902 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 12.2; Weather: rain; Precipitation: 8.1", + "x": 4.931506849315068, + "y": 185.33333333333331, + "size": 64.41372549019609 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 12.2; Weather: fog; Precipitation: 0", + "x": 6.575342465753424, + "y": 185.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 7.8; Weather: fog; Precipitation: 0", + "x": 8.21917808219178, + "y": 214.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 7.8; Weather: fog; Precipitation: 0", + "x": 9.863013698630136, + "y": 214.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 10; Weather: rain; Precipitation: 0.3", + "x": 11.506849315068493, + "y": 200.00000000000003, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 7.8; Weather: rain; Precipitation: 5.8", + "x": 13.150684931506849, + "y": 214.66666666666666, + "size": 48.13333333333333 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 9.4; Weather: rain; Precipitation: 1.5", + "x": 14.794520547945204, + "y": 203.99999999999997, + "size": 17.69607843137255 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 11.1; Weather: fog; Precipitation: 0", + "x": 16.43835616438356, + "y": 192.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 9.4; Weather: fog; Precipitation: 0", + "x": 18.08219178082192, + "y": 203.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 6.1; Weather: fog; Precipitation: 0", + "x": 19.72602739726027, + "y": 226.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 7.8; Weather: rain; Precipitation: 9.7", + "x": 21.36986301369863, + "y": 214.66666666666666, + "size": 75.7392156862745 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 11.7; Weather: fog; Precipitation: 0", + "x": 23.013698630136986, + "y": 188.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 13.3; Weather: rain; Precipitation: 26.2", + "x": 24.65753424657534, + "y": 177.99999999999997, + "size": 192.53333333333333 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 13.9; Weather: rain; Precipitation: 21.3", + "x": 26.301369863013697, + "y": 174.00000000000003, + "size": 157.84901960784313 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 10; Weather: rain; Precipitation: 0.5", + "x": 27.945205479452056, + "y": 200.00000000000003, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 10; Weather: fog; Precipitation: 0", + "x": 29.58904109589041, + "y": 200.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 7.2; Weather: fog; Precipitation: 0", + "x": 31.232876712328768, + "y": 218.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 9.4; Weather: rain; Precipitation: 0.8", + "x": 32.87671232876712, + "y": 203.99999999999997, + "size": 12.741176470588234 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 12.2; Weather: rain; Precipitation: 5.8", + "x": 34.52054794520548, + "y": 185.33333333333331, + "size": 48.13333333333333 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 14.4; Weather: rain; Precipitation: 0.5", + "x": 36.16438356164384, + "y": 170.66666666666669, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 17.2; Weather: fog; Precipitation: 0", + "x": 37.8082191780822, + "y": 152, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 16.1; Weather: fog; Precipitation: 0", + "x": 39.45205479452054, + "y": 159.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 0.8", + "x": 41.0958904109589, + "y": 192.66666666666669, + "size": 12.741176470588234 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 12.2; Weather: fog; Precipitation: 0", + "x": 42.73972602739726, + "y": 185.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 12.2; Weather: sun; Precipitation: 0", + "x": 44.38356164383562, + "y": 185.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 8.3; Weather: fog; Precipitation: 0", + "x": 46.02739726027397, + "y": 211.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 7.2; Weather: fog; Precipitation: 0", + "x": 47.67123287671233, + "y": 218.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jan; Maximum Daily Temperature (C): 9.4; Weather: rain; Precipitation: 1.5", + "x": 49.31506849315068, + "y": 203.99999999999997, + "size": 17.69607843137255 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 7.4", + "x": 50.95890410958904, + "y": 192.66666666666669, + "size": 59.45882352941177 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 10; Weather: rain; Precipitation: 1.3", + "x": 52.602739726027394, + "y": 200.00000000000003, + "size": 16.280392156862746 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 10.6; Weather: rain; Precipitation: 8.4", + "x": 54.24657534246575, + "y": 196, + "size": 66.5372549019608 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 13.3; Weather: rain; Precipitation: 26.2", + "x": 55.89041095890411, + "y": 177.99999999999997, + "size": 192.53333333333333 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 14.4; Weather: rain; Precipitation: 17.3", + "x": 57.534246575342465, + "y": 170.66666666666669, + "size": 129.53529411764706 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 12.2; Weather: rain; Precipitation: 23.6", + "x": 59.17808219178082, + "y": 185.33333333333331, + "size": 174.12941176470588 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 15; Weather: rain; Precipitation: 3.6", + "x": 60.821917808219176, + "y": 166.66666666666669, + "size": 32.56078431372549 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 13.3; Weather: rain; Precipitation: 6.1", + "x": 62.465753424657535, + "y": 177.99999999999997, + "size": 50.25686274509804 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 12.8; Weather: rain; Precipitation: 0.3", + "x": 64.10958904109589, + "y": 181.33333333333334, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 12.8; Weather: fog; Precipitation: 0", + "x": 65.75342465753424, + "y": 181.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 16.7; Weather: rain; Precipitation: 1", + "x": 67.3972602739726, + "y": 155.33333333333334, + "size": 14.156862745098039 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 15.6; Weather: fog; Precipitation: 0", + "x": 69.04109589041096, + "y": 162.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 14.4; Weather: rain; Precipitation: 0.3", + "x": 70.68493150684931, + "y": 170.66666666666669, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 12.2; Weather: sun; Precipitation: 0", + "x": 72.32876712328768, + "y": 185.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 15; Weather: fog; Precipitation: 0", + "x": 73.97260273972603, + "y": 166.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 16.1; Weather: sun; Precipitation: 0", + "x": 75.6164383561644, + "y": 159.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 12.2; Weather: sun; Precipitation: 0", + "x": 77.26027397260273, + "y": 185.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 10.6; Weather: rain; Precipitation: 4.6", + "x": 78.90410958904108, + "y": 196, + "size": 39.63921568627451 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 0.8", + "x": 80.54794520547945, + "y": 192.66666666666669, + "size": 12.741176470588234 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 12.2; Weather: sun; Precipitation: 0", + "x": 82.1917808219178, + "y": 185.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 11.7; Weather: sun; Precipitation: 0", + "x": 83.83561643835617, + "y": 188.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 12.8; Weather: sun; Precipitation: 0", + "x": 85.47945205479452, + "y": 181.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 11.1; Weather: sun; Precipitation: 0", + "x": 87.12328767123287, + "y": 192.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 10; Weather: rain; Precipitation: 4.1", + "x": 88.76712328767124, + "y": 200.00000000000003, + "size": 36.099999999999994 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 11.7; Weather: rain; Precipitation: 9.4", + "x": 90.41095890410958, + "y": 188.66666666666666, + "size": 73.6156862745098 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 10; Weather: rain; Precipitation: 18.3", + "x": 92.05479452054794, + "y": 200.00000000000003, + "size": 136.61372549019606 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 12.2; Weather: sun; Precipitation: 0", + "x": 93.6986301369863, + "y": 185.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Feb; Maximum Daily Temperature (C): 11.1; Weather: sun; Precipitation: 0", + "x": 95.34246575342466, + "y": 192.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 11.1; Weather: sun; Precipitation: 0", + "x": 98.63013698630137, + "y": 192.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 10.6; Weather: sun; Precipitation: 0", + "x": 100.27397260273973, + "y": 196, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 12.8; Weather: sun; Precipitation: 0", + "x": 101.91780821917808, + "y": 181.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 13.3; Weather: sun; Precipitation: 0", + "x": 103.56164383561645, + "y": 177.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 15; Weather: sun; Precipitation: 0", + "x": 105.20547945205479, + "y": 166.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 16.7; Weather: fog; Precipitation: 0", + "x": 106.84931506849314, + "y": 155.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 17.2; Weather: fog; Precipitation: 0", + "x": 108.4931506849315, + "y": 152, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 14.4; Weather: fog; Precipitation: 0", + "x": 110.13698630136986, + "y": 170.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 13.3; Weather: rain; Precipitation: 0.8", + "x": 111.78082191780823, + "y": 177.99999999999997, + "size": 12.741176470588234 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 14.4; Weather: rain; Precipitation: 2.5", + "x": 113.42465753424658, + "y": 170.66666666666669, + "size": 24.77450980392157 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 17.8; Weather: sun; Precipitation: 0", + "x": 115.06849315068493, + "y": 148, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 17.2; Weather: rain; Precipitation: 2", + "x": 116.64383561643835, + "y": 152, + "size": 21.235294117647058 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 13.9; Weather: rain; Precipitation: 17", + "x": 118.2876712328767, + "y": 174.00000000000003, + "size": 127.41176470588236 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 10.6; Weather: rain; Precipitation: 55.9", + "x": 119.93150684931507, + "y": 196, + "size": 402.7627450980392 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 13.9; Weather: rain; Precipitation: 1", + "x": 121.57534246575342, + "y": 174.00000000000003, + "size": 14.156862745098039 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 13.3; Weather: rain; Precipitation: 0.8", + "x": 123.21917808219179, + "y": 177.99999999999997, + "size": 12.741176470588234 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 15.6; Weather: sun; Precipitation: 0", + "x": 124.86301369863014, + "y": 162.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 15.6; Weather: sun; Precipitation: 0", + "x": 126.5068493150685, + "y": 162.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 13.9; Weather: rain; Precipitation: 4.1", + "x": 128.15068493150685, + "y": 174.00000000000003, + "size": 36.099999999999994 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 13.3; Weather: rain; Precipitation: 3.8", + "x": 129.7945205479452, + "y": 177.99999999999997, + "size": 33.976470588235294 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 11.7; Weather: rain; Precipitation: 1", + "x": 131.43835616438358, + "y": 188.66666666666666, + "size": 14.156862745098039 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 8.1", + "x": 133.08219178082192, + "y": 192.66666666666669, + "size": 64.41372549019609 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 12.8; Weather: rain; Precipitation: 7.6", + "x": 134.72602739726025, + "y": 181.33333333333334, + "size": 60.87450980392156 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 14.4; Weather: rain; Precipitation: 5.1", + "x": 136.36986301369862, + "y": 170.66666666666669, + "size": 43.178431372549014 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 20.6; Weather: sun; Precipitation: 0", + "x": 138.013698630137, + "y": 129.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 18.3; Weather: rain; Precipitation: 1", + "x": 139.65753424657535, + "y": 144.66666666666666, + "size": 14.156862745098039 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 15.6; Weather: sun; Precipitation: 0", + "x": 141.3013698630137, + "y": 162.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 15.6; Weather: sun; Precipitation: 0", + "x": 142.94520547945206, + "y": 162.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 17.8; Weather: rain; Precipitation: 1.8", + "x": 144.58904109589042, + "y": 148, + "size": 19.819607843137256 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 12.8; Weather: rain; Precipitation: 1", + "x": 146.23287671232876, + "y": 181.33333333333334, + "size": 14.156862745098039 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Mar; Maximum Daily Temperature (C): 12.8; Weather: rain; Precipitation: 5.1", + "x": 147.87671232876713, + "y": 181.33333333333334, + "size": 43.178431372549014 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 13.3; Weather: sun; Precipitation: 0", + "x": 149.52054794520546, + "y": 177.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 1.5", + "x": 151.16438356164383, + "y": 192.66666666666669, + "size": 17.69607843137255 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 12.8; Weather: sun; Precipitation: 0", + "x": 152.8082191780822, + "y": 181.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 16.7; Weather: sun; Precipitation: 0", + "x": 154.45205479452054, + "y": 155.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 13.9; Weather: rain; Precipitation: 1", + "x": 156.0958904109589, + "y": 174.00000000000003, + "size": 14.156862745098039 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 14.4; Weather: rain; Precipitation: 0.5", + "x": 157.73972602739727, + "y": 170.66666666666669, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 17.2; Weather: sun; Precipitation: 0", + "x": 159.38356164383563, + "y": 152, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 17.2; Weather: sun; Precipitation: 0", + "x": 161.02739726027397, + "y": 152, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 13.9; Weather: rain; Precipitation: 10.9", + "x": 162.67123287671234, + "y": 174.00000000000003, + "size": 84.23333333333333 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 11.7; Weather: sun; Precipitation: 0", + "x": 164.31506849315068, + "y": 188.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 13.3; Weather: sun; Precipitation: 0", + "x": 165.95890410958904, + "y": 177.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 11.7; Weather: rain; Precipitation: 14", + "x": 167.6027397260274, + "y": 188.66666666666666, + "size": 106.1764705882353 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 11.7; Weather: rain; Precipitation: 3.3", + "x": 169.24657534246575, + "y": 188.66666666666666, + "size": 30.43725490196078 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 13.9; Weather: sun; Precipitation: 0", + "x": 170.8904109589041, + "y": 174.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 17.8; Weather: sun; Precipitation: 0", + "x": 172.53424657534245, + "y": 148, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 18.9; Weather: sun; Precipitation: 0", + "x": 174.17808219178085, + "y": 140.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 18.9; Weather: sun; Precipitation: 0", + "x": 175.82191780821918, + "y": 140.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 21.1; Weather: sun; Precipitation: 0", + "x": 177.46575342465752, + "y": 125.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 22.8; Weather: sun; Precipitation: 0", + "x": 179.1095890410959, + "y": 114.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 17.2; Weather: rain; Precipitation: 5.6", + "x": 180.75342465753423, + "y": 152, + "size": 46.71764705882352 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 15.6; Weather: sun; Precipitation: 0", + "x": 182.39726027397262, + "y": 162.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 12.2; Weather: rain; Precipitation: 3", + "x": 184.04109589041096, + "y": 185.33333333333331, + "size": 28.313725490196077 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 12.2; Weather: rain; Precipitation: 3.3", + "x": 185.68493150684932, + "y": 185.33333333333331, + "size": 30.43725490196078 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 13.3; Weather: rain; Precipitation: 1.3", + "x": 187.32876712328766, + "y": 177.99999999999997, + "size": 16.280392156862746 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 15.6; Weather: fog; Precipitation: 0", + "x": 188.97260273972603, + "y": 162.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 25; Weather: rain; Precipitation: 0.3", + "x": 190.6164383561644, + "y": 100.00000000000001, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 15.6; Weather: rain; Precipitation: 1.8", + "x": 192.26027397260276, + "y": 162.66666666666666, + "size": 19.819607843137256 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 16.1; Weather: sun; Precipitation: 0", + "x": 193.9041095890411, + "y": 159.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 17.2; Weather: sun; Precipitation: 0", + "x": 195.54794520547944, + "y": 152, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Apr; Maximum Daily Temperature (C): 18.3; Weather: sun; Precipitation: 0", + "x": 197.1917808219178, + "y": 144.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 18.3; Weather: sun; Precipitation: 0", + "x": 198.83561643835617, + "y": 144.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 20.6; Weather: sun; Precipitation: 0", + "x": 200.47945205479454, + "y": 129.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 17.2; Weather: sun; Precipitation: 0", + "x": 202.12328767123287, + "y": 152, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 14.4; Weather: rain; Precipitation: 6.1", + "x": 203.76712328767124, + "y": 170.66666666666669, + "size": 50.25686274509804 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 16.7; Weather: fog; Precipitation: 0", + "x": 205.41095890410958, + "y": 155.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 20.6; Weather: sun; Precipitation: 0", + "x": 207.05479452054794, + "y": 129.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 23.9; Weather: sun; Precipitation: 0", + "x": 208.6986301369863, + "y": 107.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 26.7; Weather: sun; Precipitation: 0", + "x": 210.34246575342465, + "y": 88.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 19.4; Weather: sun; Precipitation: 0", + "x": 211.986301369863, + "y": 137.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 13.9; Weather: fog; Precipitation: 0", + "x": 213.63013698630135, + "y": 174.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 15.6; Weather: rain; Precipitation: 4.3", + "x": 215.27397260273975, + "y": 162.66666666666666, + "size": 37.515686274509804 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 12.2; Weather: rain; Precipitation: 4.1", + "x": 216.91780821917808, + "y": 185.33333333333331, + "size": 36.099999999999994 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 17.8; Weather: rain; Precipitation: 0.3", + "x": 218.56164383561645, + "y": 148, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 20; Weather: fog; Precipitation: 0", + "x": 220.2054794520548, + "y": 133.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 15.6; Weather: sun; Precipitation: 0", + "x": 221.84931506849313, + "y": 162.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 19.4; Weather: sun; Precipitation: 0", + "x": 223.49315068493152, + "y": 137.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 25.6; Weather: sun; Precipitation: 0", + "x": 225.13698630136986, + "y": 95.99999999999999, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 21.7; Weather: sun; Precipitation: 0", + "x": 226.78082191780823, + "y": 122.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 23.3; Weather: fog; Precipitation: 0", + "x": 228.42465753424656, + "y": 111.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 25.6; Weather: sun; Precipitation: 0", + "x": 230.06849315068493, + "y": 95.99999999999999, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 16.7; Weather: sun; Precipitation: 0", + "x": 231.7123287671233, + "y": 155.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 16.1; Weather: sun; Precipitation: 0", + "x": 233.35616438356166, + "y": 159.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 17.8; Weather: sun; Precipitation: 0", + "x": 235, + "y": 148, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 15.6; Weather: sun; Precipitation: 0", + "x": 236.64383561643834, + "y": 162.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 21.7; Weather: sun; Precipitation: 0", + "x": 238.2876712328767, + "y": 122.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 24.4; Weather: sun; Precipitation: 0", + "x": 239.93150684931507, + "y": 104, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 27.8; Weather: sun; Precipitation: 0", + "x": 241.57534246575344, + "y": 81.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 26.1; Weather: sun; Precipitation: 0", + "x": 243.21917808219177, + "y": 92.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 22.8; Weather: sun; Precipitation: 0", + "x": 244.86301369863014, + "y": 114.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 25; Weather: sun; Precipitation: 0", + "x": 246.50684931506848, + "y": 100.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: May; Maximum Daily Temperature (C): 16.1; Weather: rain; Precipitation: 4.6", + "x": 248.15068493150687, + "y": 159.33333333333331, + "size": 39.63921568627451 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 17.8; Weather: rain; Precipitation: 0.5", + "x": 249.7945205479452, + "y": 148, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 20; Weather: sun; Precipitation: 0", + "x": 251.43835616438355, + "y": 133.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 22.8; Weather: sun; Precipitation: 0", + "x": 253.08219178082192, + "y": 114.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 26.7; Weather: sun; Precipitation: 0", + "x": 254.72602739726025, + "y": 88.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 29.4; Weather: sun; Precipitation: 0", + "x": 256.36986301369865, + "y": 70.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 31.1; Weather: sun; Precipitation: 0", + "x": 258.013698630137, + "y": 59.333333333333314, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 30.6; Weather: sun; Precipitation: 0", + "x": 259.6575342465753, + "y": 62.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 28.9; Weather: sun; Precipitation: 0", + "x": 261.3013698630137, + "y": 74.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 25.6; Weather: sun; Precipitation: 0", + "x": 262.94520547945206, + "y": 95.99999999999999, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 24.4; Weather: sun; Precipitation: 0", + "x": 264.5890410958904, + "y": 104, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 20; Weather: sun; Precipitation: 0", + "x": 266.2328767123288, + "y": 133.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 23.9; Weather: sun; Precipitation: 0", + "x": 267.8767123287671, + "y": 107.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 27.8; Weather: sun; Precipitation: 0", + "x": 269.52054794520546, + "y": 81.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 30; Weather: drizzle; Precipitation: 0", + "x": 271.16438356164383, + "y": 66.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 22.8; Weather: sun; Precipitation: 0", + "x": 272.8082191780822, + "y": 114.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 25; Weather: sun; Precipitation: 0", + "x": 274.45205479452056, + "y": 100.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 24.4; Weather: sun; Precipitation: 0", + "x": 276.0958904109589, + "y": 104, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 23.9; Weather: rain; Precipitation: 0.5", + "x": 277.73972602739724, + "y": 107.33333333333336, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 25; Weather: sun; Precipitation: 0", + "x": 279.3835616438356, + "y": 100.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 25.6; Weather: sun; Precipitation: 0", + "x": 281.027397260274, + "y": 95.99999999999999, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 25; Weather: sun; Precipitation: 0", + "x": 282.67123287671234, + "y": 100.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 26.1; Weather: sun; Precipitation: 0", + "x": 284.3150684931507, + "y": 92.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 25.6; Weather: sun; Precipitation: 0", + "x": 285.958904109589, + "y": 95.99999999999999, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 30.6; Weather: sun; Precipitation: 0", + "x": 287.60273972602744, + "y": 62.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 31.7; Weather: sun; Precipitation: 0", + "x": 289.24657534246575, + "y": 55.33333333333332, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 33.3; Weather: sun; Precipitation: 0", + "x": 290.8904109589041, + "y": 44.666666666666686, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 28.3; Weather: rain; Precipitation: 0.3", + "x": 292.5342465753425, + "y": 78, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 28.9; Weather: sun; Precipitation: 0", + "x": 294.1780821917808, + "y": 74.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 30.6; Weather: fog; Precipitation: 0", + "x": 295.8219178082192, + "y": 62.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jun; Maximum Daily Temperature (C): 32.2; Weather: sun; Precipitation: 0", + "x": 297.4657534246575, + "y": 51.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 33.9; Weather: sun; Precipitation: 0", + "x": 299.1095890410959, + "y": 40.666666666666664, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 33.3; Weather: sun; Precipitation: 0", + "x": 300.75342465753425, + "y": 44.666666666666686, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 33.3; Weather: sun; Precipitation: 0", + "x": 302.3972602739726, + "y": 44.666666666666686, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 32.8; Weather: sun; Precipitation: 0", + "x": 304.041095890411, + "y": 48.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 29.4; Weather: drizzle; Precipitation: 0", + "x": 305.6849315068493, + "y": 70.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 27.2; Weather: sun; Precipitation: 0", + "x": 307.32876712328766, + "y": 85.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 30; Weather: drizzle; Precipitation: 0", + "x": 308.972602739726, + "y": 66.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 28.9; Weather: sun; Precipitation: 0", + "x": 310.6164383561644, + "y": 74.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 21.1; Weather: sun; Precipitation: 0", + "x": 312.2602739726027, + "y": 125.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 22.2; Weather: sun; Precipitation: 0", + "x": 313.90410958904107, + "y": 118.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 26.1; Weather: sun; Precipitation: 0", + "x": 315.5479452054795, + "y": 92.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 25.6; Weather: sun; Precipitation: 0", + "x": 317.19178082191786, + "y": 95.99999999999999, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 27.8; Weather: sun; Precipitation: 0", + "x": 318.83561643835617, + "y": 81.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 26.1; Weather: sun; Precipitation: 0", + "x": 320.47945205479454, + "y": 92.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 26.1; Weather: sun; Precipitation: 0", + "x": 322.1232876712329, + "y": 92.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 27.8; Weather: sun; Precipitation: 0", + "x": 323.7671232876712, + "y": 81.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 33.3; Weather: sun; Precipitation: 0", + "x": 325.4109589041096, + "y": 44.666666666666686, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 35; Weather: sun; Precipitation: 0", + "x": 327.05479452054794, + "y": 33.33333333333335, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 26.7; Weather: sun; Precipitation: 0", + "x": 328.69863013698625, + "y": 88.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 23.9; Weather: sun; Precipitation: 0", + "x": 330.3424657534246, + "y": 107.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 23.9; Weather: sun; Precipitation: 0", + "x": 331.98630136986304, + "y": 107.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 26.1; Weather: sun; Precipitation: 0", + "x": 333.6301369863014, + "y": 92.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 22.8; Weather: rain; Precipitation: 0.3", + "x": 335.2739726027397, + "y": 114.66666666666667, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 21.1; Weather: fog; Precipitation: 0", + "x": 336.9178082191781, + "y": 125.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 22.2; Weather: rain; Precipitation: 2", + "x": 338.56164383561645, + "y": 118.66666666666667, + "size": 21.235294117647058 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 23.3; Weather: fog; Precipitation: 0", + "x": 340.2054794520548, + "y": 111.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 27.8; Weather: sun; Precipitation: 0", + "x": 341.8493150684931, + "y": 81.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 32.2; Weather: sun; Precipitation: 0", + "x": 343.4931506849315, + "y": 51.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 34.4; Weather: sun; Precipitation: 0", + "x": 345.13698630136986, + "y": 37.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 34.4; Weather: sun; Precipitation: 0", + "x": 346.78082191780817, + "y": 37.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Jul; Maximum Daily Temperature (C): 33.3; Weather: sun; Precipitation: 0", + "x": 348.4246575342466, + "y": 44.666666666666686, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 30.6; Weather: sun; Precipitation: 0", + "x": 350.06849315068496, + "y": 62.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 28.3; Weather: sun; Precipitation: 0", + "x": 351.7123287671233, + "y": 78, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 26.1; Weather: fog; Precipitation: 0", + "x": 353.35616438356163, + "y": 92.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 23.3; Weather: sun; Precipitation: 0", + "x": 355, + "y": 111.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 25; Weather: sun; Precipitation: 0", + "x": 356.64383561643837, + "y": 100.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 28.3; Weather: sun; Precipitation: 0", + "x": 358.2876712328767, + "y": 78, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 25; Weather: fog; Precipitation: 0", + "x": 359.93150684931504, + "y": 100.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 28.3; Weather: sun; Precipitation: 0", + "x": 361.5753424657534, + "y": 78, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 28.9; Weather: sun; Precipitation: 0", + "x": 363.2191780821918, + "y": 74.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 30; Weather: sun; Precipitation: 0", + "x": 364.86301369863014, + "y": 66.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 28.3; Weather: rain; Precipitation: 7.6", + "x": 366.5068493150685, + "y": 78, + "size": 60.87450980392156 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 28.3; Weather: sun; Precipitation: 0", + "x": 368.1506849315069, + "y": 78, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 18.3; Weather: rain; Precipitation: 30.5", + "x": 369.79452054794524, + "y": 144.66666666666666, + "size": 222.97058823529412 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 21.7; Weather: sun; Precipitation: 0", + "x": 371.43835616438355, + "y": 122.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 25; Weather: sun; Precipitation: 0", + "x": 373.0821917808219, + "y": 100.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 27.2; Weather: sun; Precipitation: 0", + "x": 374.7260273972603, + "y": 85.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 30; Weather: sun; Precipitation: 0", + "x": 376.3698630136986, + "y": 66.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 31.7; Weather: drizzle; Precipitation: 0", + "x": 378.01369863013696, + "y": 55.33333333333332, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 22.8; Weather: rain; Precipitation: 2", + "x": 379.6575342465753, + "y": 114.66666666666667, + "size": 21.235294117647058 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 22.2; Weather: sun; Precipitation: 0", + "x": 381.30136986301375, + "y": 118.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 26.7; Weather: drizzle; Precipitation: 0", + "x": 382.94520547945206, + "y": 88.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 27.8; Weather: drizzle; Precipitation: 0", + "x": 384.5890410958904, + "y": 81.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 23.9; Weather: sun; Precipitation: 0", + "x": 386.2328767123288, + "y": 107.33333333333336, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 25.6; Weather: sun; Precipitation: 0", + "x": 387.8767123287671, + "y": 95.99999999999999, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 28.3; Weather: sun; Precipitation: 0", + "x": 389.52054794520546, + "y": 78, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 29.4; Weather: sun; Precipitation: 0", + "x": 391.16438356164383, + "y": 70.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 23.3; Weather: rain; Precipitation: 0.5", + "x": 392.8082191780822, + "y": 111.33333333333331, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 22.2; Weather: rain; Precipitation: 32.5", + "x": 394.4520547945205, + "y": 118.66666666666667, + "size": 237.12745098039215 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 20; Weather: rain; Precipitation: 10.2", + "x": 396.0958904109589, + "y": 133.33333333333331, + "size": 79.27843137254902 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 18.9; Weather: sun; Precipitation: 0", + "x": 397.7397260273973, + "y": 140.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Aug; Maximum Daily Temperature (C): 19.4; Weather: rain; Precipitation: 5.8", + "x": 399.38356164383566, + "y": 137.33333333333334, + "size": 48.13333333333333 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 19.4; Weather: sun; Precipitation: 0", + "x": 401.027397260274, + "y": 137.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 18.3; Weather: sun; Precipitation: 0", + "x": 402.67123287671234, + "y": 144.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 18.3; Weather: sun; Precipitation: 0", + "x": 404.3150684931507, + "y": 144.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 20.6; Weather: rain; Precipitation: 0.3", + "x": 405.958904109589, + "y": 129.33333333333334, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 16.1; Weather: rain; Precipitation: 5.3", + "x": 407.6027397260274, + "y": 159.33333333333331, + "size": 44.59411764705882 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 21.1; Weather: rain; Precipitation: 0.3", + "x": 409.24657534246575, + "y": 125.99999999999997, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 22.8; Weather: sun; Precipitation: 0", + "x": 410.8904109589041, + "y": 114.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 24.4; Weather: sun; Precipitation: 0", + "x": 412.5342465753424, + "y": 104, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 25; Weather: fog; Precipitation: 0", + "x": 414.17808219178085, + "y": 100.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 27.2; Weather: sun; Precipitation: 0", + "x": 415.8219178082192, + "y": 85.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 26.7; Weather: sun; Precipitation: 0", + "x": 417.4657534246575, + "y": 88.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 20.6; Weather: rain; Precipitation: 0.5", + "x": 419.1095890410959, + "y": 129.33333333333334, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 16.7; Weather: sun; Precipitation: 0", + "x": 420.75342465753425, + "y": 155.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 17.8; Weather: sun; Precipitation: 0", + "x": 422.3972602739726, + "y": 148, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 20; Weather: rain; Precipitation: 1", + "x": 424.04109589041093, + "y": 133.33333333333331, + "size": 14.156862745098039 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 18.3; Weather: rain; Precipitation: 1.8", + "x": 425.6849315068493, + "y": 144.66666666666666, + "size": 19.819607843137256 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 19.4; Weather: sun; Precipitation: 0", + "x": 427.32876712328766, + "y": 137.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 21.1; Weather: sun; Precipitation: 0", + "x": 428.97260273972597, + "y": 125.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 22.8; Weather: rain; Precipitation: 4.1", + "x": 430.6164383561644, + "y": 114.66666666666667, + "size": 36.099999999999994 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 18.3; Weather: fog; Precipitation: 0", + "x": 432.26027397260276, + "y": 144.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 18.9; Weather: sun; Precipitation: 0", + "x": 433.9041095890411, + "y": 140.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 20.6; Weather: sun; Precipitation: 0", + "x": 435.54794520547944, + "y": 129.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 22.2; Weather: fog; Precipitation: 0", + "x": 437.1917808219178, + "y": 118.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 15.6; Weather: rain; Precipitation: 2", + "x": 438.83561643835617, + "y": 162.66666666666666, + "size": 21.235294117647058 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 18.3; Weather: sun; Precipitation: 0", + "x": 440.4794520547945, + "y": 144.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 17.8; Weather: sun; Precipitation: 0", + "x": 442.12328767123284, + "y": 148, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 21.1; Weather: sun; Precipitation: 0", + "x": 443.7671232876712, + "y": 125.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 21.7; Weather: sun; Precipitation: 0", + "x": 445.41095890410963, + "y": 122.00000000000001, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 18.3; Weather: fog; Precipitation: 0", + "x": 447.05479452054794, + "y": 144.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Sep; Maximum Daily Temperature (C): 21.1; Weather: fog; Precipitation: 0", + "x": 448.6986301369863, + "y": 125.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 15.6; Weather: fog; Precipitation: 0", + "x": 450.3424657534247, + "y": 162.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 19.4; Weather: sun; Precipitation: 0", + "x": 451.98630136986304, + "y": 137.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 22.8; Weather: sun; Precipitation: 0", + "x": 453.63013698630135, + "y": 114.66666666666667, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 23.3; Weather: sun; Precipitation: 0", + "x": 455.2739726027397, + "y": 111.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#aec7e8", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 18.3; Weather: drizzle; Precipitation: 0", + "x": 456.9178082191781, + "y": 144.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 16.1; Weather: rain; Precipitation: 9.9", + "x": 458.5616438356164, + "y": 159.33333333333331, + "size": 77.15490196078431 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 18.9; Weather: fog; Precipitation: 0", + "x": 460.20547945205476, + "y": 140.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 19.4; Weather: rain; Precipitation: 0.3", + "x": 461.8493150684932, + "y": 137.33333333333334, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 21.1; Weather: rain; Precipitation: 28.7", + "x": 463.49315068493155, + "y": 125.99999999999997, + "size": 210.2294117647059 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 17.8; Weather: sun; Precipitation: 0", + "x": 465.13698630136986, + "y": 148, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 18.3; Weather: rain; Precipitation: 4.6", + "x": 466.7808219178082, + "y": 144.66666666666666, + "size": 39.63921568627451 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 16.7; Weather: rain; Precipitation: 1.3", + "x": 468.4246575342466, + "y": 155.33333333333334, + "size": 16.280392156862746 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 15; Weather: fog; Precipitation: 0", + "x": 470.06849315068496, + "y": 166.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 21.1; Weather: fog; Precipitation: 0", + "x": 471.71232876712327, + "y": 125.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 20; Weather: sun; Precipitation: 0", + "x": 473.35616438356163, + "y": 133.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 19.4; Weather: rain; Precipitation: 0.3", + "x": 475, + "y": 137.33333333333334, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 15; Weather: rain; Precipitation: 3.8", + "x": 476.6438356164383, + "y": 166.66666666666669, + "size": 33.976470588235294 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 17.2; Weather: rain; Precipitation: 0.3", + "x": 478.28767123287673, + "y": 152, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 17.8; Weather: fog; Precipitation: 0", + "x": 479.9315068493151, + "y": 148, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 16.1; Weather: fog; Precipitation: 0", + "x": 481.57534246575347, + "y": 159.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 16.1; Weather: fog; Precipitation: 0", + "x": 483.2191780821918, + "y": 159.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 12.8; Weather: fog; Precipitation: 0", + "x": 484.86301369863014, + "y": 181.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 15; Weather: fog; Precipitation: 0", + "x": 486.5068493150685, + "y": 166.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 19.4; Weather: rain; Precipitation: 8.9", + "x": 488.1506849315068, + "y": 137.33333333333334, + "size": 70.0764705882353 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 12.2; Weather: rain; Precipitation: 6.9", + "x": 489.7945205479452, + "y": 185.33333333333331, + "size": 55.91960784313726 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 16.1; Weather: fog; Precipitation: 0", + "x": 491.43835616438355, + "y": 159.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 13.9; Weather: rain; Precipitation: 3.3", + "x": 493.0821917808219, + "y": 174.00000000000003, + "size": 30.43725490196078 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 15; Weather: rain; Precipitation: 1.8", + "x": 494.7260273972603, + "y": 166.66666666666669, + "size": 19.819607843137256 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 17.2; Weather: rain; Precipitation: 19.3", + "x": 496.36986301369865, + "y": 152, + "size": 143.69215686274512 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 15.6; Weather: rain; Precipitation: 33", + "x": 498.013698630137, + "y": 162.66666666666666, + "size": 240.66666666666666 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Oct; Maximum Daily Temperature (C): 12.2; Weather: rain; Precipitation: 26.2", + "x": 499.6575342465753, + "y": 185.33333333333331, + "size": 192.53333333333333 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 0.3", + "x": 501.3013698630137, + "y": 192.66666666666669, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 10.6; Weather: rain; Precipitation: 0.8", + "x": 502.94520547945206, + "y": 196, + "size": 12.741176470588234 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 10; Weather: sun; Precipitation: 0", + "x": 504.5890410958904, + "y": 200.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 11.7; Weather: rain; Precipitation: 1.3", + "x": 506.23287671232873, + "y": 188.66666666666666, + "size": 16.280392156862746 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 15.6; Weather: fog; Precipitation: 0", + "x": 507.94520547945206, + "y": 162.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 12.2; Weather: rain; Precipitation: 12.7", + "x": 509.58904109589037, + "y": 185.33333333333331, + "size": 96.97450980392156 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 6.6", + "x": 511.2328767123288, + "y": 192.66666666666669, + "size": 53.79607843137255 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 10; Weather: rain; Precipitation: 3.3", + "x": 512.8767123287671, + "y": 200.00000000000003, + "size": 30.43725490196078 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 1.3", + "x": 514.5205479452055, + "y": 192.66666666666669, + "size": 16.280392156862746 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 1.5", + "x": 516.1643835616438, + "y": 192.66666666666669, + "size": 17.69607843137255 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 9.9", + "x": 517.8082191780821, + "y": 192.66666666666669, + "size": 77.15490196078431 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 13.3; Weather: rain; Precipitation: 33.5", + "x": 519.4520547945206, + "y": 177.99999999999997, + "size": 244.2058823529412 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 9.4; Weather: rain; Precipitation: 47.2", + "x": 521.0958904109589, + "y": 203.99999999999997, + "size": 341.18039215686275 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 8.9; Weather: rain; Precipitation: 22.4", + "x": 522.7397260273973, + "y": 207.33333333333334, + "size": 165.63529411764705 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 8.9; Weather: rain; Precipitation: 2", + "x": 524.3835616438356, + "y": 207.33333333333334, + "size": 21.235294117647058 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 13.3; Weather: rain; Precipitation: 29.5", + "x": 526.0273972602739, + "y": 177.99999999999997, + "size": 215.89215686274508 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 8.9; Weather: rain; Precipitation: 1.5", + "x": 527.6712328767123, + "y": 207.33333333333334, + "size": 17.69607843137255 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 8.9; Weather: rain; Precipitation: 2", + "x": 529.3150684931508, + "y": 207.33333333333334, + "size": 21.235294117647058 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 8.3; Weather: fog; Precipitation: 0", + "x": 530.9589041095891, + "y": 211.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 8.9; Weather: sun; Precipitation: 0", + "x": 532.6027397260274, + "y": 207.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 10; Weather: fog; Precipitation: 0", + "x": 534.2465753424658, + "y": 200.00000000000003, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 6.7; Weather: rain; Precipitation: 3", + "x": 535.8904109589041, + "y": 222, + "size": 28.313725490196077 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 6.7; Weather: rain; Precipitation: 7.1", + "x": 537.5342465753424, + "y": 222, + "size": 57.33529411764705 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 7.2; Weather: sun; Precipitation: 0", + "x": 539.1780821917808, + "y": 218.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 9.4; Weather: sun; Precipitation: 0", + "x": 540.8219178082192, + "y": 203.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 9.4; Weather: sun; Precipitation: 0", + "x": 542.4657534246575, + "y": 203.99999999999997, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 7.2; Weather: sun; Precipitation: 0", + "x": 544.1095890410959, + "y": 218.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 1.7; Weather: fog; Precipitation: 0", + "x": 545.7534246575343, + "y": 255.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 5.6; Weather: rain; Precipitation: 0.5", + "x": 547.3972602739726, + "y": 229.33333333333334, + "size": 10.617647058823529 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Nov; Maximum Daily Temperature (C): 10; Weather: rain; Precipitation: 12.2", + "x": 549.0410958904109, + "y": 200.00000000000003, + "size": 93.43529411764705 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 10.6; Weather: rain; Precipitation: 2.5", + "x": 550.6849315068494, + "y": 196, + "size": 24.77450980392157 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 15.6; Weather: rain; Precipitation: 12.7", + "x": 552.3287671232877, + "y": 162.66666666666666, + "size": 96.97450980392156 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 10.6; Weather: rain; Precipitation: 2", + "x": 553.972602739726, + "y": 196, + "size": 21.235294117647058 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 10; Weather: rain; Precipitation: 15.7", + "x": 555.6164383561644, + "y": 200.00000000000003, + "size": 118.20980392156862 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 12.8; Weather: rain; Precipitation: 11.2", + "x": 557.2602739726027, + "y": 181.33333333333334, + "size": 86.35686274509803 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 11.1; Weather: rain; Precipitation: 27.4", + "x": 558.904109589041, + "y": 192.66666666666669, + "size": 201.02745098039216 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 15.6; Weather: rain; Precipitation: 54.1", + "x": 560.5479452054794, + "y": 162.66666666666666, + "size": 390.02156862745096 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 12.2; Weather: rain; Precipitation: 13.5", + "x": 562.1917808219179, + "y": 185.33333333333331, + "size": 102.63725490196079 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 11.7; Weather: rain; Precipitation: 9.4", + "x": 563.8356164383562, + "y": 188.66666666666666, + "size": 73.6156862745098 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 9.4; Weather: rain; Precipitation: 0.3", + "x": 565.4794520547945, + "y": 203.99999999999997, + "size": 9.201960784313725 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 8.9; Weather: rain; Precipitation: 16", + "x": 567.1232876712329, + "y": 207.33333333333334, + "size": 120.33333333333333 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 7.8; Weather: rain; Precipitation: 1.3", + "x": 568.7671232876712, + "y": 214.66666666666666, + "size": 16.280392156862746 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 7.8; Weather: sun; Precipitation: 0", + "x": 570.4109589041095, + "y": 214.66666666666666, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 6.7; Weather: rain; Precipitation: 1.5", + "x": 572.054794520548, + "y": 222, + "size": 17.69607843137255 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 6.1; Weather: rain; Precipitation: 3.6", + "x": 573.6986301369863, + "y": 226.00000000000003, + "size": 32.56078431372549 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 6.7; Weather: rain; Precipitation: 21.8", + "x": 575.3424657534247, + "y": 222, + "size": 161.38823529411766 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 8.9; Weather: rain; Precipitation: 18.5", + "x": 576.986301369863, + "y": 207.33333333333334, + "size": 138.02941176470588 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 8.3; Weather: fog; Precipitation: 0", + "x": 578.6301369863014, + "y": 211.33333333333331, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 7.8; Weather: rain; Precipitation: 4.3", + "x": 580.2739726027397, + "y": 214.66666666666666, + "size": 37.515686274509804 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 5.6; Weather: rain; Precipitation: 27.4", + "x": 581.9178082191781, + "y": 229.33333333333334, + "size": 201.02745098039216 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 7.8; Weather: rain; Precipitation: 4.6", + "x": 583.5616438356165, + "y": 214.66666666666666, + "size": 39.63921568627451 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 5; Weather: rain; Precipitation: 6.1", + "x": 585.2054794520548, + "y": 233.33333333333334, + "size": 50.25686274509804 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 5.6; Weather: rain; Precipitation: 2.5", + "x": 586.8493150684932, + "y": 229.33333333333334, + "size": 24.77450980392157 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 5; Weather: rain; Precipitation: 5.8", + "x": 588.4931506849315, + "y": 233.33333333333334, + "size": 48.13333333333333 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 4.4; Weather: sun; Precipitation: 0", + "x": 590.1369863013698, + "y": 237.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 4.4; Weather: rain; Precipitation: 8.6", + "x": 591.7808219178082, + "y": 237.33333333333334, + "size": 67.95294117647059 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#1f77b4", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 5; Weather: rain; Precipitation: 1.5", + "x": 593.4246575342466, + "y": 233.33333333333334, + "size": 17.69607843137255 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#a7a7a7", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 7.2; Weather: fog; Precipitation: 0", + "x": 595.068493150685, + "y": 218.66666666666669, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 5.6; Weather: sun; Precipitation: 0", + "x": 596.7123287671233, + "y": 229.33333333333334, + "size": 7.078431372549019 + }, + { + "strokeWidth": 2, + "shape": "circle", + "opacity": 0.7, + "fill": "transparent", + "stroke": "#e7ba52", + "ariaRoleDescription": "point", + "description": "Date: Dec; Maximum Daily Temperature (C): 5.6; Weather: sun; Precipitation: 0", + "x": 598.3561643835617, + "y": 229.33333333333334, + "size": 7.078431372549019 + } + ], + "marktype": "symbol", + "name": "concat_0_marks", + "role": "mark", + "zindex": 0 + }, + { + "clip": true, + "interactive": true, + "items": [ + { + "fill": "transparent", + "x": 0, + "y": 0, + "x2": 0, + "y2": 0, + "stroke": null, + "width": 0, + "height": 0 + } + ], + "marktype": "rect", + "name": "brush_brush", + "role": "mark", + "zindex": 0 + } + ], + "fill": "transparent", + "stroke": "#ddd", + "width": 600, + "height": 300, + "x": 0, + "y": 0 + } + ], + "marktype": "group", + "name": "concat_0_group", + "role": "scope", + "zindex": 0 + }, + { + "clip": false, + "interactive": true, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 0, + "y2": -100 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 46, + "y": 0, + "y2": -100 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 92, + "y": 0, + "y2": -100 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 138, + "y": 0, + "y2": -100 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 185, + "y": 0, + "y2": -100 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 231, + "y": 0, + "y2": -100 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 277, + "y": 0, + "y2": -100 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 323, + "y": 0, + "y2": -100 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 369, + "y": 0, + "y2": -100 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 415, + "y": 0, + "y2": -100 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 462, + "y": 0, + "y2": -100 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 508, + "y": 0, + "y2": -100 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 554, + "y": 0, + "y2": -100 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 600, + "y": 0, + "y2": -100 + } + ], + "marktype": "rule", + "role": "axis-grid", + "zindex": 0 + } + ], + "orient": "bottom", + "offset": 0, + "x": 0.5, + "y": 100.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0, + "aria": false + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 0 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 46 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 92 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 138 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 185 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 231 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 277 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 323 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 369 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 415 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 462 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 508 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 554 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 600 + } + ], + "marktype": "rule", + "role": "axis-tick", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 0, + "y": 7, + "angle": 0, + "limit": 180, + "text": "0", + "align": "left", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 46.15384615384615, + "y": 7, + "angle": 0, + "limit": 180, + "text": "50", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 92.3076923076923, + "y": 7, + "angle": 0, + "limit": 180, + "text": "100", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 138.46153846153848, + "y": 7, + "angle": 0, + "limit": 180, + "text": "150", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 184.6153846153846, + "y": 7, + "angle": 0, + "limit": 180, + "text": "200", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 230.76923076923077, + "y": 7, + "angle": 0, + "limit": 180, + "text": "250", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 276.92307692307696, + "y": 7, + "angle": 0, + "limit": 180, + "text": "300", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 323.07692307692304, + "y": 7, + "angle": 0, + "limit": 180, + "text": "350", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 369.2307692307692, + "y": 7, + "angle": 0, + "limit": 180, + "text": "400", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 415.38461538461536, + "y": 7, + "angle": 0, + "limit": 180, + "text": "450", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 461.53846153846155, + "y": 7, + "angle": 0, + "limit": 180, + "text": "500", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 507.6923076923077, + "y": 7, + "angle": 0, + "limit": 180, + "text": "550", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 553.8461538461539, + "y": 7, + "angle": 0, + "limit": 180, + "text": "600", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 600, + "y": 7, + "angle": 0, + "limit": 180, + "text": "650", + "align": "right", + "baseline": "top" + } + ], + "marktype": "text", + "role": "axis-label", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "x": 0, + "x2": 600, + "y": 0 + } + ], + "marktype": "rule", + "role": "axis-domain", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "align": "center", + "angle": 0, + "baseline": "top", + "text": "Count of Records", + "x": 300, + "y": 21 + } + ], + "marktype": "text", + "role": "axis-title", + "zindex": 0 + } + ], + "orient": "bottom", + "offset": 0, + "x": 0.5, + "y": 100.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 10, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 30, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 50, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 70, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 90, + "x": 0, + "x2": -5 + } + ], + "marktype": "rule", + "role": "axis-tick", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 9.5, + "angle": 0, + "limit": 180, + "text": "drizzle", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 29.5, + "angle": 0, + "limit": 180, + "text": "fog", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 49.5, + "angle": 0, + "limit": 180, + "text": "rain", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 69.5, + "angle": 0, + "limit": 180, + "text": "snow", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 89.5, + "angle": 0, + "limit": 180, + "text": "sun", + "align": "right", + "baseline": "middle" + } + ], + "marktype": "text", + "role": "axis-label", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "x": 0, + "y": 0, + "y2": 100 + } + ], + "marktype": "rule", + "role": "axis-domain", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "align": "center", + "angle": -90, + "baseline": "bottom", + "text": "Weather", + "y": 50, + "x": -39.896484375 + } + ], + "marktype": "text", + "role": "axis-title", + "zindex": 0 + } + ], + "orient": "left", + "offset": 0, + "x": 0.5, + "y": 0.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0 + }, + { + "clip": false, + "interactive": true, + "items": [ + { + "fill": "#aec7e8", + "ariaRoleDescription": "bar", + "description": "Count of Records: 53; Weather: drizzle; weather: drizzle", + "x": 0, + "x2": 48.92307692307692, + "y": 1, + "height": 18, + "width": 48.92307692307692 + }, + { + "fill": "#1f77b4", + "ariaRoleDescription": "bar", + "description": "Count of Records: 641; Weather: rain; weather: rain", + "x": 0, + "x2": 591.6923076923077, + "y": 41, + "height": 18, + "width": 591.6923076923077 + }, + { + "fill": "#e7ba52", + "ariaRoleDescription": "bar", + "description": "Count of Records: 640; Weather: sun; weather: sun", + "x": 0, + "x2": 590.7692307692308, + "y": 81, + "height": 18, + "width": 590.7692307692308 + }, + { + "fill": "#9467bd", + "ariaRoleDescription": "bar", + "description": "Count of Records: 26; Weather: snow; weather: snow", + "x": 0, + "x2": 24, + "y": 61, + "height": 18, + "width": 24 + }, + { + "fill": "#a7a7a7", + "ariaRoleDescription": "bar", + "description": "Count of Records: 101; Weather: fog; weather: fog", + "x": 0, + "x2": 93.23076923076923, + "y": 21, + "height": 18, + "width": 93.23076923076923 + } + ], + "marktype": "rect", + "name": "concat_1_marks", + "role": "mark", + "zindex": 0 + } + ], + "fill": "transparent", + "stroke": "#ddd", + "width": 600, + "height": 100, + "x": 0, + "y": 354 + } + ], + "marktype": "group", + "name": "concat_1_group", + "role": "scope", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 0.7, + "x": 6, + "y": 6, + "shape": "circle", + "size": 100, + "strokeWidth": 1.5, + "fill": "#e7ba52", + "stroke": "#e7ba52" + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 16, + "y": 6, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "sun" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 44.896484375, + "height": 12.5, + "opacity": 1, + "x": 0, + "y": 0 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 0.7, + "x": 6, + "y": 6, + "shape": "circle", + "size": 100, + "strokeWidth": 1.5, + "fill": "#a7a7a7", + "stroke": "#a7a7a7" + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 16, + "y": 6, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "fog" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 44.896484375, + "height": 12.5, + "opacity": 1, + "x": 0, + "y": 16 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 0.7, + "x": 6, + "y": 6, + "shape": "circle", + "size": 100, + "strokeWidth": 1.5, + "fill": "#aec7e8", + "stroke": "#aec7e8" + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 16, + "y": 6, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "drizzle" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 44.896484375, + "height": 12.5, + "opacity": 1, + "x": 0, + "y": 32 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 0.7, + "x": 6, + "y": 6, + "shape": "circle", + "size": 100, + "strokeWidth": 1.5, + "fill": "#1f77b4", + "stroke": "#1f77b4" + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 16, + "y": 6, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "rain" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 44.896484375, + "height": 12.5, + "opacity": 1, + "x": 0, + "y": 48 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 0.7, + "x": 6, + "y": 6, + "shape": "circle", + "size": 100, + "strokeWidth": 1.5, + "fill": "#9467bd", + "stroke": "#9467bd" + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 16, + "y": 6, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "snow" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 44.896484375, + "height": 12.5, + "opacity": 1, + "x": 0, + "y": 64 + } + ], + "marktype": "group", + "role": "scope", + "zindex": 0 + } + ], + "x": 0, + "y": 16 + } + ], + "marktype": "group", + "role": "legend-entry", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "orient": "top", + "text": "Weather", + "limit": 180, + "x": 0, + "y": 0, + "angle": 0, + "align": "left", + "baseline": "top" + } + ], + "marktype": "text", + "role": "legend-title", + "zindex": 0 + } + ], + "orient": "right", + "x": 623, + "y": 0, + "width": 45, + "height": 93 + } + ], + "marktype": "group", + "role": "legend", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 0.7, + "x": 10.5, + "y": 5, + "fill": "transparent", + "shape": "circle", + "size": 7.078431372549019, + "stroke": "lightgray", + "strokeWidth": 1.5 + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 25, + "y": 5, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "0" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 36.123046875, + "height": 10, + "opacity": 1, + "x": 0, + "y": 0 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 0.7, + "x": 10.5, + "y": 5.5, + "fill": "transparent", + "shape": "circle", + "size": 77.86274509803921, + "stroke": "lightgray", + "strokeWidth": 1.5 + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 25, + "y": 5.5, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "10" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 36.123046875, + "height": 11.411993458121827, + "opacity": 1, + "x": 0, + "y": 13 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 0.7, + "x": 10.5, + "y": 7, + "fill": "transparent", + "shape": "circle", + "size": 148.6470588235294, + "stroke": "lightgray", + "strokeWidth": 1.5 + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 25, + "y": 7, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "20" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 36.123046875, + "height": 14.596045005237606, + "opacity": 1, + "x": 0, + "y": 28 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 0.7, + "x": 10.5, + "y": 8.5, + "fill": "transparent", + "shape": "circle", + "size": 219.43137254901958, + "stroke": "lightgray", + "strokeWidth": 1.5 + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 25, + "y": 8.5, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "30" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 36.123046875, + "height": 17.40660807234019, + "opacity": 1, + "x": 0, + "y": 46 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 0.7, + "x": 10.5, + "y": 9.5, + "fill": "transparent", + "shape": "circle", + "size": 290.21568627450984, + "stroke": "lightgray", + "strokeWidth": 1.5 + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 25, + "y": 9.5, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "40" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 36.123046875, + "height": 19.517858977972537, + "opacity": 1, + "x": 0, + "y": 67 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 0.7, + "x": 10.5, + "y": 10.5, + "fill": "transparent", + "shape": "circle", + "size": 361, + "stroke": "lightgray", + "strokeWidth": 1.5 + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 25, + "y": 10.5, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "50" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 36.123046875, + "height": 21.5, + "opacity": 1, + "x": 0, + "y": 90 + } + ], + "marktype": "group", + "role": "scope", + "zindex": 0 + } + ], + "x": 0, + "y": 16 + } + ], + "marktype": "group", + "role": "legend-entry", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "orient": "top", + "text": "Precipitation", + "limit": 180, + "x": 0, + "y": 0, + "angle": 0, + "align": "left", + "baseline": "top" + } + ], + "marktype": "text", + "role": "legend-title", + "zindex": 0 + } + ], + "orient": "right", + "x": 623, + "y": 101, + "width": 67, + "height": 128 + } + ], + "marktype": "group", + "role": "legend", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 13, + "fontWeight": "bold", + "opacity": 1, + "text": "Seattle Weather, 2012-2015", + "baseline": "top", + "align": "left", + "angle": 0 + } + ], + "marktype": "text", + "role": "title-text", + "zindex": 0 + } + ], + "orient": "top", + "offset": 4, + "align": "left", + "angle": 0, + "x": -51.896484375, + "y": -23 + } + ], + "marktype": "group", + "role": "title", + "zindex": 0 + } + ], + "x": 0, + "y": 0, + "width": 600, + "height": 0 + } + ], + "marktype": "group", + "name": "root", + "role": "frame", + "zindex": 0 + } +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/stocks_locale.png b/avenger-vega-test-data/vega-scenegraphs/vl-convert/stocks_locale.png new file mode 100644 index 0000000..01d758e Binary files /dev/null and b/avenger-vega-test-data/vega-scenegraphs/vl-convert/stocks_locale.png differ diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/stocks_locale.sg.json b/avenger-vega-test-data/vega-scenegraphs/vl-convert/stocks_locale.sg.json new file mode 100644 index 0000000..5173091 --- /dev/null +++ b/avenger-vega-test-data/vega-scenegraphs/vl-convert/stocks_locale.sg.json @@ -0,0 +1,1777 @@ +{ + "width": 426, + "height": 347, + "origin": [ + 55, + 10 + ], + "scenegraph": { + "clip": false, + "interactive": true, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": -300, + "y2": 0 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 28, + "y": -300, + "y2": 0 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 53, + "y": -300, + "y2": 0 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 81, + "y": -300, + "y2": 0 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 108, + "y": -300, + "y2": 0 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 136, + "y": -300, + "y2": 0 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 163, + "y": -300, + "y2": 0 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 190, + "y": -300, + "y2": 0 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 218, + "y": -300, + "y2": 0 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 245, + "y": -300, + "y2": 0 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 273, + "y": -300, + "y2": 0 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 300, + "y": -300, + "y2": 0 + } + ], + "marktype": "rule", + "role": "axis-grid", + "zindex": 0 + } + ], + "orient": "bottom", + "offset": 0, + "x": 0.5, + "y": 300.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0, + "aria": false + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 300, + "x2": 300 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 250, + "x2": 300 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 200, + "x2": 300 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 150, + "x2": 300 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 100, + "x2": 300 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 50, + "x2": 300 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 0, + "x2": 300 + } + ], + "marktype": "rule", + "role": "axis-grid", + "zindex": 0 + } + ], + "orient": "left", + "offset": 0, + "x": 0.5, + "y": 0.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0, + "aria": false + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 0 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 28 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 53 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 81 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 108 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 136 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 163 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 190 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 218 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 245 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 273 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 300 + } + ], + "marktype": "rule", + "role": "axis-tick", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 0, + "y": 7, + "angle": 0, + "limit": 180, + "text": "2009", + "align": "left", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 0, + "x": 27.844311377245507, + "y": 7, + "angle": 0, + "limit": 180, + "text": "February", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 52.99401197604791, + "y": 7, + "angle": 0, + "limit": 180, + "text": "March", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 0, + "x": 80.80089820359281, + "y": 7, + "angle": 0, + "limit": 180, + "text": "April", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 107.74700598802394, + "y": 7, + "angle": 0, + "limit": 180, + "text": "May", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 0, + "x": 135.59131736526945, + "y": 7, + "angle": 0, + "limit": 180, + "text": "June", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 162.5374251497006, + "y": 7, + "angle": 0, + "limit": 180, + "text": "July", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 0, + "x": 190.38173652694613, + "y": 7, + "angle": 0, + "limit": 180, + "text": "August", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 218.2260479041916, + "y": 7, + "angle": 0, + "limit": 180, + "text": "September", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 0, + "x": 245.17215568862275, + "y": 7, + "angle": 0, + "limit": 180, + "text": "October", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 273.01646706586826, + "y": 7, + "angle": 0, + "limit": 180, + "text": "November", + "align": "center", + "baseline": "top" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 0, + "x": 300, + "y": 7, + "angle": 0, + "limit": 180, + "text": "December", + "align": "right", + "baseline": "top" + } + ], + "marktype": "text", + "role": "axis-label", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "x": 0, + "x2": 300, + "y": 0 + } + ], + "marktype": "rule", + "role": "axis-domain", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "align": "center", + "angle": 0, + "baseline": "top", + "text": "date", + "x": 150, + "y": 21 + } + ], + "marktype": "text", + "role": "axis-title", + "zindex": 0 + } + ], + "orient": "bottom", + "offset": 0, + "x": 0.5, + "y": 300.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 300, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 250, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 200, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 150, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 100, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 50, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "x": 0, + "x2": -5 + } + ], + "marktype": "rule", + "role": "axis-tick", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 300, + "angle": 0, + "limit": 180, + "text": "$0", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 250, + "angle": 0, + "limit": 180, + "text": "$200", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 200.00000000000003, + "angle": 0, + "limit": 180, + "text": "$400", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 150, + "angle": 0, + "limit": 180, + "text": "$600", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 100.00000000000001, + "angle": 0, + "limit": 180, + "text": "$800", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 49.999999999999986, + "angle": 0, + "limit": 180, + "text": "$1000", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 0, + "angle": 0, + "limit": 180, + "text": "$1200", + "align": "right", + "baseline": "middle" + } + ], + "marktype": "text", + "role": "axis-label", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "x": 0, + "y": 300, + "y2": 0 + } + ], + "marktype": "rule", + "role": "axis-domain", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "align": "center", + "angle": -90, + "baseline": "bottom", + "text": "price", + "y": 150, + "x": -38.8076171875 + } + ], + "marktype": "text", + "role": "axis-title", + "zindex": 0 + } + ], + "orient": "left", + "offset": 0, + "x": 0.5, + "y": 0.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 0 + }, + { + "clip": false, + "interactive": true, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": true, + "items": [ + { + "orient": "vertical", + "fill": "#54a24b", + "description": "date: Jan 01, 2009; price: $17; symbol: MSFT", + "x": 0, + "y": 295.84250000000003, + "y2": 300, + "defined": true, + "height": 4.15749999999997 + }, + { + "orient": "vertical", + "fill": "#54a24b", + "description": "date: Feb 01, 2009; price: $16; symbol: MSFT", + "x": 27.844311377245507, + "y": 296.0475, + "y2": 300, + "defined": true, + "height": 3.9524999999999864 + }, + { + "orient": "vertical", + "fill": "#54a24b", + "description": "date: Mar 01, 2009; price: $18; symbol: MSFT", + "x": 52.99401197604791, + "y": 295.5025, + "y2": 300, + "defined": true, + "height": 4.497500000000002 + }, + { + "orient": "vertical", + "fill": "#54a24b", + "description": "date: Apr 01, 2009; price: $20; symbol: MSFT", + "x": 80.80089820359281, + "y": 295.04, + "y2": 300, + "defined": true, + "height": 4.9599999999999795 + }, + { + "orient": "vertical", + "fill": "#54a24b", + "description": "date: May 01, 2009; price: $21; symbol: MSFT", + "x": 107.74700598802394, + "y": 294.85249999999996, + "y2": 300, + "defined": true, + "height": 5.147500000000036 + }, + { + "orient": "vertical", + "fill": "#54a24b", + "description": "date: Jun 01, 2009; price: $23; symbol: MSFT", + "x": 135.59131736526945, + "y": 294.14500000000004, + "y2": 300, + "defined": true, + "height": 5.854999999999961 + }, + { + "orient": "vertical", + "fill": "#54a24b", + "description": "date: Jul 01, 2009; price: $23; symbol: MSFT", + "x": 162.5374251497006, + "y": 294.205, + "y2": 300, + "defined": true, + "height": 5.795000000000016 + }, + { + "orient": "vertical", + "fill": "#54a24b", + "description": "date: Aug 01, 2009; price: $24; symbol: MSFT", + "x": 190.38173652694613, + "y": 293.8925, + "y2": 300, + "defined": true, + "height": 6.107500000000016 + }, + { + "orient": "vertical", + "fill": "#54a24b", + "description": "date: Sep 01, 2009; price: $25; symbol: MSFT", + "x": 218.2260479041916, + "y": 293.6275, + "y2": 300, + "defined": true, + "height": 6.372500000000002 + }, + { + "orient": "vertical", + "fill": "#54a24b", + "description": "date: Oct 01, 2009; price: $27; symbol: MSFT", + "x": 245.17215568862275, + "y": 293.13, + "y2": 300, + "defined": true, + "height": 6.8700000000000045 + }, + { + "orient": "vertical", + "fill": "#54a24b", + "description": "date: Nov 01, 2009; price: $29; symbol: MSFT", + "x": 273.01646706586826, + "y": 292.6825, + "y2": 300, + "defined": true, + "height": 7.3174999999999955 + }, + { + "orient": "vertical", + "fill": "#54a24b", + "description": "date: Dec 01, 2009; price: $30; symbol: MSFT", + "x": 300, + "y": 292.415, + "y2": 300, + "defined": true, + "height": 7.5849999999999795 + } + ], + "marktype": "area", + "name": "marks", + "role": "mark", + "zindex": 0 + } + ], + "width": 300, + "height": 300 + }, + { + "items": [ + { + "clip": false, + "interactive": true, + "items": [ + { + "orient": "vertical", + "fill": "#f58518", + "description": "date: Jan 01, 2009; price: $59; symbol: AMZN", + "x": 0, + "y": 174.14000000000001, + "y2": 188.84500000000003, + "defined": true, + "height": 14.705000000000013 + }, + { + "orient": "vertical", + "fill": "#f58518", + "description": "date: Feb 01, 2009; price: $65; symbol: AMZN", + "x": 27.844311377245507, + "y": 172.77249999999998, + "y2": 188.97, + "defined": true, + "height": 16.19750000000002 + }, + { + "orient": "vertical", + "fill": "#f58518", + "description": "date: Mar 01, 2009; price: $73; symbol: AMZN", + "x": 52.99401197604791, + "y": 166.35500000000002, + "y2": 184.715, + "defined": true, + "height": 18.359999999999985 + }, + { + "orient": "vertical", + "fill": "#f58518", + "description": "date: Apr 01, 2009; price: $81; symbol: AMZN", + "x": 80.80089820359281, + "y": 150.595, + "y2": 170.72500000000002, + "defined": true, + "height": 20.130000000000024 + }, + { + "orient": "vertical", + "fill": "#f58518", + "description": "date: May 01, 2009; price: $78; symbol: AMZN", + "x": 107.74700598802394, + "y": 144.83499999999998, + "y2": 164.33249999999998, + "defined": true, + "height": 19.497500000000002 + }, + { + "orient": "vertical", + "fill": "#f58518", + "description": "date: Jun 01, 2009; price: $84; symbol: AMZN", + "x": 135.59131736526945, + "y": 142.08, + "y2": 162.995, + "defined": true, + "height": 20.914999999999992 + }, + { + "orient": "vertical", + "fill": "#f58518", + "description": "date: Jul 01, 2009; price: $86; symbol: AMZN", + "x": 162.5374251497006, + "y": 132.9175, + "y2": 154.35749999999996, + "defined": true, + "height": 21.43999999999997 + }, + { + "orient": "vertical", + "fill": "#f58518", + "description": "date: Aug 01, 2009; price: $81; symbol: AMZN", + "x": 190.38173652694613, + "y": 128.9275, + "y2": 149.225, + "defined": true, + "height": 20.297499999999985 + }, + { + "orient": "vertical", + "fill": "#f58518", + "description": "date: Sep 01, 2009; price: $93; symbol: AMZN", + "x": 218.2260479041916, + "y": 116.68749999999999, + "y2": 140.0275, + "defined": true, + "height": 23.340000000000018 + }, + { + "orient": "vertical", + "fill": "#f58518", + "description": "date: Oct 01, 2009; price: $119; symbol: AMZN", + "x": 245.17215568862275, + "y": 99.51249999999999, + "y2": 129.215, + "defined": true, + "height": 29.702500000000015 + }, + { + "orient": "vertical", + "fill": "#f58518", + "description": "date: Nov 01, 2009; price: $136; symbol: AMZN", + "x": 273.01646706586826, + "y": 81.50750000000004, + "y2": 115.485, + "defined": true, + "height": 33.977499999999964 + }, + { + "orient": "vertical", + "fill": "#f58518", + "description": "date: Dec 01, 2009; price: $135; symbol: AMZN", + "x": 300, + "y": 71.21000000000002, + "y2": 104.84000000000002, + "defined": true, + "height": 33.629999999999995 + } + ], + "marktype": "area", + "name": "marks", + "role": "mark", + "zindex": 0 + } + ], + "width": 300, + "height": 300 + }, + { + "items": [ + { + "clip": false, + "interactive": true, + "items": [ + { + "orient": "vertical", + "fill": "#72b7b2", + "description": "date: Jan 01, 2009; price: $89; symbol: IBM", + "x": 0, + "y": 273.4775, + "y2": 295.84250000000003, + "defined": true, + "height": 22.36500000000001 + }, + { + "orient": "vertical", + "fill": "#72b7b2", + "description": "date: Feb 01, 2009; price: $90; symbol: IBM", + "x": 27.844311377245507, + "y": 273.46750000000003, + "y2": 296.0475, + "defined": true, + "height": 22.579999999999984 + }, + { + "orient": "vertical", + "fill": "#72b7b2", + "description": "date: Mar 01, 2009; price: $95; symbol: IBM", + "x": 52.99401197604791, + "y": 271.72999999999996, + "y2": 295.5025, + "defined": true, + "height": 23.772500000000036 + }, + { + "orient": "vertical", + "fill": "#72b7b2", + "description": "date: Apr 01, 2009; price: $101; symbol: IBM", + "x": 80.80089820359281, + "y": 269.7175, + "y2": 295.04, + "defined": true, + "height": 25.322500000000048 + }, + { + "orient": "vertical", + "fill": "#72b7b2", + "description": "date: May 01, 2009; price: $105; symbol: IBM", + "x": 107.74700598802394, + "y": 268.64, + "y2": 294.85249999999996, + "defined": true, + "height": 26.212499999999977 + }, + { + "orient": "vertical", + "fill": "#72b7b2", + "description": "date: Jun 01, 2009; price: $103; symbol: IBM", + "x": 135.59131736526945, + "y": 268.3925, + "y2": 294.14500000000004, + "defined": true, + "height": 25.752500000000055 + }, + { + "orient": "vertical", + "fill": "#72b7b2", + "description": "date: Jul 01, 2009; price: $116; symbol: IBM", + "x": 162.5374251497006, + "y": 265.12, + "y2": 294.205, + "defined": true, + "height": 29.08499999999998 + }, + { + "orient": "vertical", + "fill": "#72b7b2", + "description": "date: Aug 01, 2009; price: $117; symbol: IBM", + "x": 190.38173652694613, + "y": 264.6425, + "y2": 293.8925, + "defined": true, + "height": 29.25 + }, + { + "orient": "vertical", + "fill": "#72b7b2", + "description": "date: Sep 01, 2009; price: $119; symbol: IBM", + "x": 218.2260479041916, + "y": 263.99, + "y2": 293.6275, + "defined": true, + "height": 29.63749999999999 + }, + { + "orient": "vertical", + "fill": "#72b7b2", + "description": "date: Oct 01, 2009; price: $120; symbol: IBM", + "x": 245.17215568862275, + "y": 263.245, + "y2": 293.13, + "defined": true, + "height": 29.88499999999999 + }, + { + "orient": "vertical", + "fill": "#72b7b2", + "description": "date: Nov 01, 2009; price: $126; symbol: IBM", + "x": 273.01646706586826, + "y": 261.235, + "y2": 292.6825, + "defined": true, + "height": 31.44749999999999 + }, + { + "orient": "vertical", + "fill": "#72b7b2", + "description": "date: Dec 01, 2009; price: $130; symbol: IBM", + "x": 300, + "y": 259.835, + "y2": 292.415, + "defined": true, + "height": 32.58000000000004 + } + ], + "marktype": "area", + "name": "marks", + "role": "mark", + "zindex": 0 + } + ], + "width": 300, + "height": 300 + }, + { + "items": [ + { + "clip": false, + "interactive": true, + "items": [ + { + "orient": "vertical", + "fill": "#e45756", + "description": "date: Jan 01, 2009; price: $339; symbol: GOOG", + "x": 0, + "y": 188.84500000000003, + "y2": 273.4775, + "defined": true, + "height": 84.6325 + }, + { + "orient": "vertical", + "fill": "#e45756", + "description": "date: Feb 01, 2009; price: $338; symbol: GOOG", + "x": 27.844311377245507, + "y": 188.97, + "y2": 273.46750000000003, + "defined": true, + "height": 84.49750000000003 + }, + { + "orient": "vertical", + "fill": "#e45756", + "description": "date: Mar 01, 2009; price: $348; symbol: GOOG", + "x": 52.99401197604791, + "y": 184.715, + "y2": 271.72999999999996, + "defined": true, + "height": 87.01499999999996 + }, + { + "orient": "vertical", + "fill": "#e45756", + "description": "date: Apr 01, 2009; price: $396; symbol: GOOG", + "x": 80.80089820359281, + "y": 170.72500000000002, + "y2": 269.7175, + "defined": true, + "height": 98.99249999999995 + }, + { + "orient": "vertical", + "fill": "#e45756", + "description": "date: May 01, 2009; price: $417; symbol: GOOG", + "x": 107.74700598802394, + "y": 164.33249999999998, + "y2": 268.64, + "defined": true, + "height": 104.3075 + }, + { + "orient": "vertical", + "fill": "#e45756", + "description": "date: Jun 01, 2009; price: $422; symbol: GOOG", + "x": 135.59131736526945, + "y": 162.995, + "y2": 268.3925, + "defined": true, + "height": 105.39749999999998 + }, + { + "orient": "vertical", + "fill": "#e45756", + "description": "date: Jul 01, 2009; price: $443; symbol: GOOG", + "x": 162.5374251497006, + "y": 154.35749999999996, + "y2": 265.12, + "defined": true, + "height": 110.76250000000005 + }, + { + "orient": "vertical", + "fill": "#e45756", + "description": "date: Aug 01, 2009; price: $462; symbol: GOOG", + "x": 190.38173652694613, + "y": 149.225, + "y2": 264.6425, + "defined": true, + "height": 115.41749999999999 + }, + { + "orient": "vertical", + "fill": "#e45756", + "description": "date: Sep 01, 2009; price: $496; symbol: GOOG", + "x": 218.2260479041916, + "y": 140.0275, + "y2": 263.99, + "defined": true, + "height": 123.9625 + }, + { + "orient": "vertical", + "fill": "#e45756", + "description": "date: Oct 01, 2009; price: $536; symbol: GOOG", + "x": 245.17215568862275, + "y": 129.215, + "y2": 263.245, + "defined": true, + "height": 134.03 + }, + { + "orient": "vertical", + "fill": "#e45756", + "description": "date: Nov 01, 2009; price: $583; symbol: GOOG", + "x": 273.01646706586826, + "y": 115.485, + "y2": 261.235, + "defined": true, + "height": 145.75 + }, + { + "orient": "vertical", + "fill": "#e45756", + "description": "date: Dec 01, 2009; price: $620; symbol: GOOG", + "x": 300, + "y": 104.84000000000002, + "y2": 259.835, + "defined": true, + "height": 154.99499999999995 + } + ], + "marktype": "area", + "name": "marks", + "role": "mark", + "zindex": 0 + } + ], + "width": 300, + "height": 300 + }, + { + "items": [ + { + "clip": false, + "interactive": true, + "items": [ + { + "orient": "vertical", + "fill": "#4c78a8", + "description": "date: Jan 01, 2009; price: $90; symbol: AAPL", + "x": 0, + "y": 151.60750000000002, + "y2": 174.14000000000001, + "defined": true, + "height": 22.5325 + }, + { + "orient": "vertical", + "fill": "#4c78a8", + "description": "date: Feb 01, 2009; price: $89; symbol: AAPL", + "x": 27.844311377245507, + "y": 150.445, + "y2": 172.77249999999998, + "defined": true, + "height": 22.327499999999986 + }, + { + "orient": "vertical", + "fill": "#4c78a8", + "description": "date: Mar 01, 2009; price: $105; symbol: AAPL", + "x": 52.99401197604791, + "y": 140.07500000000002, + "y2": 166.35500000000002, + "defined": true, + "height": 26.28 + }, + { + "orient": "vertical", + "fill": "#4c78a8", + "description": "date: Apr 01, 2009; price: $126; symbol: AAPL", + "x": 80.80089820359281, + "y": 119.13749999999999, + "y2": 150.595, + "defined": true, + "height": 31.45750000000001 + }, + { + "orient": "vertical", + "fill": "#4c78a8", + "description": "date: May 01, 2009; price: $136; symbol: AAPL", + "x": 107.74700598802394, + "y": 110.8825, + "y2": 144.83499999999998, + "defined": true, + "height": 33.952499999999986 + }, + { + "orient": "vertical", + "fill": "#4c78a8", + "description": "date: Jun 01, 2009; price: $142; symbol: AAPL", + "x": 135.59131736526945, + "y": 106.47250000000001, + "y2": 142.08, + "defined": true, + "height": 35.6075 + }, + { + "orient": "vertical", + "fill": "#4c78a8", + "description": "date: Jul 01, 2009; price: $163; symbol: AAPL", + "x": 162.5374251497006, + "y": 92.06999999999998, + "y2": 132.9175, + "defined": true, + "height": 40.84750000000001 + }, + { + "orient": "vertical", + "fill": "#4c78a8", + "description": "date: Aug 01, 2009; price: $168; symbol: AAPL", + "x": 190.38173652694613, + "y": 86.87499999999999, + "y2": 128.9275, + "defined": true, + "height": 42.05250000000002 + }, + { + "orient": "vertical", + "fill": "#4c78a8", + "description": "date: Sep 01, 2009; price: $185; symbol: AAPL", + "x": 218.2260479041916, + "y": 70.34999999999998, + "y2": 116.68749999999999, + "defined": true, + "height": 46.337500000000006 + }, + { + "orient": "vertical", + "fill": "#4c78a8", + "description": "date: Oct 01, 2009; price: $189; symbol: AAPL", + "x": 245.17215568862275, + "y": 52.387499999999974, + "y2": 99.51249999999999, + "defined": true, + "height": 47.125000000000014 + }, + { + "orient": "vertical", + "fill": "#4c78a8", + "description": "date: Nov 01, 2009; price: $200; symbol: AAPL", + "x": 273.01646706586826, + "y": 31.530000000000026, + "y2": 81.50750000000004, + "defined": true, + "height": 49.977500000000006 + }, + { + "orient": "vertical", + "fill": "#4c78a8", + "description": "date: Dec 01, 2009; price: $211; symbol: AAPL", + "x": 300, + "y": 18.527500000000042, + "y2": 71.21000000000002, + "defined": true, + "height": 52.682499999999976 + } + ], + "marktype": "area", + "name": "marks", + "role": "mark", + "zindex": 0 + } + ], + "width": 300, + "height": 300 + } + ], + "marktype": "group", + "name": "pathgroup", + "role": "scope", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "x": 6, + "y": 6, + "shape": "circle", + "size": 100, + "strokeWidth": 1.5, + "fill": "#4c78a8" + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 16, + "y": 6, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "AAPL" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 47.11328125, + "height": 11, + "opacity": 1, + "x": 0, + "y": 0 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "x": 6, + "y": 6, + "shape": "circle", + "size": 100, + "strokeWidth": 1.5, + "fill": "#f58518" + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 16, + "y": 6, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "AMZN" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 47.11328125, + "height": 11, + "opacity": 1, + "x": 0, + "y": 13 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "x": 6, + "y": 6, + "shape": "circle", + "size": 100, + "strokeWidth": 1.5, + "fill": "#e45756" + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 16, + "y": 6, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "GOOG" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 47.11328125, + "height": 11, + "opacity": 1, + "x": 0, + "y": 26 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "x": 6, + "y": 6, + "shape": "circle", + "size": 100, + "strokeWidth": 1.5, + "fill": "#72b7b2" + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 16, + "y": 6, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "IBM" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 47.11328125, + "height": 11, + "opacity": 1, + "x": 0, + "y": 39 + }, + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "x": 6, + "y": 6, + "shape": "circle", + "size": 100, + "strokeWidth": 1.5, + "fill": "#54a24b" + } + ], + "marktype": "symbol", + "role": "legend-symbol", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 16, + "y": 6, + "align": "left", + "baseline": "middle", + "limit": 160, + "text": "MSFT" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "width": 47.11328125, + "height": 11, + "opacity": 1, + "x": 0, + "y": 52 + } + ], + "marktype": "group", + "role": "scope", + "zindex": 0 + } + ], + "x": 0, + "y": 16 + } + ], + "marktype": "group", + "role": "legend-entry", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "orient": "top", + "text": "symbol", + "limit": 180, + "x": 0, + "y": 0, + "angle": 0, + "align": "left", + "baseline": "top" + } + ], + "marktype": "text", + "role": "legend-title", + "zindex": 0 + } + ], + "orient": "right", + "x": 318, + "y": 0, + "width": 48, + "height": 79 + } + ], + "marktype": "group", + "role": "legend", + "zindex": 0 + } + ], + "fill": "transparent", + "stroke": "#ddd", + "x": 0, + "y": 0, + "width": 300, + "height": 300 + } + ], + "marktype": "group", + "name": "root", + "role": "frame", + "zindex": 0 + } +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/table_heatmap.png b/avenger-vega-test-data/vega-scenegraphs/vl-convert/table_heatmap.png new file mode 100644 index 0000000..16c1833 Binary files /dev/null and b/avenger-vega-test-data/vega-scenegraphs/vl-convert/table_heatmap.png differ diff --git a/avenger-vega-test-data/vega-scenegraphs/vl-convert/table_heatmap.sg.json b/avenger-vega-test-data/vega-scenegraphs/vl-convert/table_heatmap.sg.json new file mode 100644 index 0000000..f37e11c --- /dev/null +++ b/avenger-vega-test-data/vega-scenegraphs/vl-convert/table_heatmap.sg.json @@ -0,0 +1,789 @@ +{ + "width": 292, + "height": 103, + "origin": [ + 60, + 10 + ], + "scenegraph": { + "clip": false, + "interactive": true, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 20, + "y": 0, + "y2": -60 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 40, + "y": 0, + "y2": -60 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 60, + "y": 0, + "y2": -60 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 80, + "y": 0, + "y2": -60 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 100, + "y": 0, + "y2": -60 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 0, + "y2": -60 + } + ], + "marktype": "rule", + "role": "axis-grid", + "zindex": 0 + } + ], + "orient": "bottom", + "offset": 0, + "x": 0.5, + "y": 60.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 1, + "aria": false + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 20, + "x2": 100 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 40, + "x2": 100 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 60, + "x2": 100 + }, + { + "opacity": 1, + "stroke": "#ddd", + "strokeWidth": 1, + "x": 0, + "y": 0, + "x2": 100 + } + ], + "marktype": "rule", + "role": "axis-grid", + "zindex": 0 + } + ], + "orient": "left", + "offset": 0, + "x": 0.5, + "y": 0.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 1, + "aria": false + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 20 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 40 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 60 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 80 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 100 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "y2": 5, + "x": 0 + } + ], + "marktype": "rule", + "role": "axis-tick", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 10, + "y": 7, + "angle": 270, + "limit": 180, + "text": "3", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 30, + "y": 7, + "angle": 270, + "limit": 180, + "text": "4", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 50, + "y": 7, + "angle": 270, + "limit": 180, + "text": "5", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 70, + "y": 7, + "angle": 270, + "limit": 180, + "text": "6", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": 90, + "y": 7, + "angle": 270, + "limit": 180, + "text": "8", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": null, + "y": 7, + "angle": 270, + "limit": 180, + "text": "", + "align": "right", + "baseline": "middle" + } + ], + "marktype": "text", + "role": "axis-label", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "x": 0, + "x2": 100, + "y": 0 + } + ], + "marktype": "rule", + "role": "axis-domain", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "align": "center", + "angle": 0, + "baseline": "top", + "text": "Cylinders", + "x": 50, + "y": 16.5615234375 + } + ], + "marktype": "text", + "role": "axis-title", + "zindex": 0 + } + ], + "orient": "bottom", + "offset": 0, + "x": 0.5, + "y": 60.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 1 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 20, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 40, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 60, + "x": 0, + "x2": -5 + }, + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "y": 0, + "x": 0, + "x2": -5 + } + ], + "marktype": "rule", + "role": "axis-tick", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 10, + "angle": 0, + "limit": 180, + "text": "Europe", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 30, + "angle": 0, + "limit": 180, + "text": "Japan", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": 50, + "angle": 0, + "limit": 180, + "text": "USA", + "align": "right", + "baseline": "middle" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "x": -7, + "y": null, + "angle": 0, + "limit": 180, + "text": "", + "align": "right", + "baseline": "middle" + } + ], + "marktype": "text", + "role": "axis-label", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "stroke": "#888", + "strokeWidth": 1, + "x": 0, + "y": 0, + "y2": 60 + } + ], + "marktype": "rule", + "role": "axis-domain", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "align": "center", + "angle": -90, + "baseline": "bottom", + "text": "Origin", + "y": 30, + "x": -43.24609375 + } + ], + "marktype": "text", + "role": "axis-title", + "zindex": 0 + } + ], + "orient": "left", + "offset": 0, + "x": 0.5, + "y": 0.5 + } + ], + "marktype": "group", + "role": "axis", + "zindex": 1 + }, + { + "clip": false, + "interactive": true, + "items": [ + { + "fill": "rgb(28, 49, 133)", + "description": "Cylinders: 8; Origin: USA; Mean of Horsepower: 158.453703704", + "x": 80, + "width": 20, + "y": 40, + "height": 20 + }, + { + "fill": "rgb(231, 246, 185)", + "description": "Cylinders: 4; Origin: Europe; Mean of Horsepower: 78.90625", + "x": 20, + "width": 20, + "y": 0, + "height": 20 + }, + { + "fill": "rgb(239, 249, 189)", + "description": "Cylinders: 4; Origin: Japan; Mean of Horsepower: 75.5797101449", + "x": 20, + "width": 20, + "y": 20, + "height": 20 + }, + { + "fill": "rgb(152, 214, 185)", + "description": "Cylinders: 6; Origin: USA; Mean of Horsepower: 99.6712328767", + "x": 60, + "width": 20, + "y": 40, + "height": 20 + }, + { + "fill": "rgb(226, 244, 183)", + "description": "Cylinders: 4; Origin: USA; Mean of Horsepower: 80.9565217391", + "x": 20, + "width": 20, + "y": 40, + "height": 20 + }, + { + "fill": "rgb(154, 215, 184)", + "description": "Cylinders: 3; Origin: Japan; Mean of Horsepower: 99.25", + "x": 0, + "width": 20, + "y": 20, + "height": 20 + }, + { + "fill": "rgb(74, 182, 193)", + "description": "Cylinders: 6; Origin: Japan; Mean of Horsepower: 115.833333333", + "x": 60, + "width": 20, + "y": 20, + "height": 20 + }, + { + "fill": "rgb(84, 187, 192)", + "description": "Cylinders: 6; Origin: Europe; Mean of Horsepower: 113.5", + "x": 60, + "width": 20, + "y": 0, + "height": 20 + }, + { + "fill": "rgb(223, 242, 182)", + "description": "Cylinders: 5; Origin: Europe; Mean of Horsepower: 82.3333333333", + "x": 40, + "width": 20, + "y": 0, + "height": 20 + } + ], + "marktype": "rect", + "name": "marks", + "role": "mark", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "items": [ + { + "clip": false, + "interactive": false, + "items": [ + { + "opacity": 1, + "x": 0, + "y": 0, + "width": 16, + "height": 64, + "stroke": "#ddd", + "strokeWidth": 0, + "fill": { + "gradient": "linear", + "x1": 0, + "y1": 1, + "x2": 0, + "y2": 0, + "stops": [ + { + "offset": 0, + "color": "rgb(239, 249, 189)" + }, + { + "offset": 0.05333747856542589, + "color": "rgb(228, 245, 184)" + }, + { + "offset": 0.11367003628697314, + "color": "rgb(215, 239, 180)" + }, + { + "offset": 0.1740025940085204, + "color": "rgb(197, 232, 181)" + }, + { + "offset": 0.23433515173006766, + "color": "rgb(175, 224, 182)" + }, + { + "offset": 0.2946677094516149, + "color": "rgb(150, 214, 185)" + }, + { + "offset": 0.3550002671731622, + "color": "rgb(124, 204, 188)" + }, + { + "offset": 0.4153328248947094, + "color": "rgb(99, 194, 191)" + }, + { + "offset": 0.4756653826162567, + "color": "rgb(78, 184, 193)" + }, + { + "offset": 0.5359979403378039, + "color": "rgb(60, 172, 193)" + }, + { + "offset": 0.5963304980593512, + "color": "rgb(45, 159, 192)" + }, + { + "offset": 0.6566630557808985, + "color": "rgb(38, 142, 187)" + }, + { + "offset": 0.7169956135024457, + "color": "rgb(33, 125, 182)" + }, + { + "offset": 0.7773281712239929, + "color": "rgb(33, 106, 173)" + }, + { + "offset": 0.8376607289455402, + "color": "rgb(34, 88, 165)" + }, + { + "offset": 0.8979932866670874, + "color": "rgb(35, 72, 156)" + }, + { + "offset": 0.9583258443886347, + "color": "rgb(31, 58, 143)" + }, + { + "offset": 1, + "color": "rgb(28, 49, 133)" + } + ] + } + } + ], + "marktype": "rect", + "role": "legend-gradient", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "align": "left", + "baseline": "bottom", + "y": 64, + "x": 18, + "text": "76" + }, + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 10, + "opacity": 1, + "align": "left", + "baseline": "top", + "y": 0, + "x": 18, + "text": "158" + } + ], + "marktype": "text", + "role": "legend-label", + "zindex": 0 + } + ], + "x": 0, + "y": 16 + } + ], + "marktype": "group", + "role": "legend-entry", + "zindex": 0 + }, + { + "clip": false, + "interactive": false, + "items": [ + { + "fill": "#000", + "font": "sans-serif", + "fontSize": 11, + "fontWeight": "bold", + "opacity": 1, + "orient": "top", + "text": "Mean of Horsepower", + "limit": 180, + "x": 0, + "y": 0, + "angle": 0, + "align": "left", + "baseline": "top" + } + ], + "marktype": "text", + "role": "legend-title", + "zindex": 0 + } + ], + "orient": "right", + "x": 118, + "y": 0, + "width": 109, + "height": 80 + } + ], + "marktype": "group", + "role": "legend", + "zindex": 0 + } + ], + "fill": "transparent", + "stroke": "#ddd", + "x": 0, + "y": 0, + "width": 100, + "height": 60 + } + ], + "marktype": "group", + "name": "root", + "role": "frame", + "zindex": 0 + } +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-specs/vl-convert/bar_chart_trellis_compact.vg.json b/avenger-vega-test-data/vega-specs/vl-convert/bar_chart_trellis_compact.vg.json new file mode 100644 index 0000000..9d27bb5 --- /dev/null +++ b/avenger-vega-test-data/vega-specs/vl-convert/bar_chart_trellis_compact.vg.json @@ -0,0 +1,251 @@ +{ + "$schema": "https://vega.github.io/schema/vega/v5.json", + "background": "white", + "padding": 5, + "data": [ + { + "name": "data-e90feaf959fd425e1afec00a92fd04a7", + "values": [ + {"a": "a1", "b": "b1", "c": "x", "p": "0.14"}, + {"a": "a1", "b": "b1", "c": "y", "p": "0.60"}, + {"a": "a1", "b": "b1", "c": "z", "p": "0.03"}, + {"a": "a1", "b": "b2", "c": "x", "p": "0.80"}, + {"a": "a1", "b": "b2", "c": "y", "p": "0.38"}, + {"a": "a1", "b": "b2", "c": "z", "p": "0.55"}, + {"a": "a1", "b": "b3", "c": "x", "p": "0.11"}, + {"a": "a1", "b": "b3", "c": "y", "p": "0.58"}, + {"a": "a1", "b": "b3", "c": "z", "p": "0.79"}, + {"a": "a2", "b": "b1", "c": "x", "p": "0.83"}, + {"a": "a2", "b": "b1", "c": "y", "p": "0.87"}, + {"a": "a2", "b": "b1", "c": "z", "p": "0.67"}, + {"a": "a2", "b": "b2", "c": "x", "p": "0.97"}, + {"a": "a2", "b": "b2", "c": "y", "p": "0.84"}, + {"a": "a2", "b": "b2", "c": "z", "p": "0.90"}, + {"a": "a2", "b": "b3", "c": "x", "p": "0.74"}, + {"a": "a2", "b": "b3", "c": "y", "p": "0.64"}, + {"a": "a2", "b": "b3", "c": "z", "p": "0.19"}, + {"a": "a3", "b": "b1", "c": "x", "p": "0.57"}, + {"a": "a3", "b": "b1", "c": "y", "p": "0.35"}, + {"a": "a3", "b": "b1", "c": "z", "p": "0.49"}, + {"a": "a3", "b": "b2", "c": "x", "p": "0.91"}, + {"a": "a3", "b": "b2", "c": "y", "p": "0.38"}, + {"a": "a3", "b": "b2", "c": "z", "p": "0.91"}, + {"a": "a3", "b": "b3", "c": "x", "p": "0.99"}, + {"a": "a3", "b": "b3", "c": "y", "p": "0.80"}, + {"a": "a3", "b": "b3", "c": "z", "p": "0.37"} + ] + }, + { + "name": "data_0", + "source": "data-e90feaf959fd425e1afec00a92fd04a7", + "transform": [ + { + "type": "stack", + "groupby": ["c", "a", "b"], + "field": "p", + "sort": {"field": [], "order": []}, + "as": ["p_start", "p_end"], + "offset": "zero" + }, + { + "type": "filter", + "expr": "isValid(datum[\"p\"]) && isFinite(+datum[\"p\"])" + } + ] + }, + { + "name": "column_domain", + "source": "data_0", + "transform": [{"type": "aggregate", "groupby": ["b"]}] + }, + { + "name": "row_domain", + "source": "data_0", + "transform": [{"type": "aggregate", "groupby": ["a"]}] + } + ], + "signals": [ + {"name": "child_width", "value": 60}, + {"name": "y_step", "value": 8}, + { + "name": "child_height", + "update": "bandspace(domain('y').length, 0.1, 0.05) * y_step" + } + ], + "layout": { + "padding": 20, + "offset": {"rowTitle": 10, "columnTitle": 10}, + "columns": {"signal": "length(data('column_domain'))"}, + "bounds": "full", + "align": "all" + }, + "marks": [ + { + "name": "row-title", + "type": "group", + "role": "row-title", + "title": { + "text": "Factor A", + "orient": "left", + "style": "guide-title", + "offset": 10 + } + }, + { + "name": "column-title", + "type": "group", + "role": "column-title", + "title": {"text": "Factor B", "style": "guide-title", "offset": 10} + }, + { + "name": "row_header", + "type": "group", + "role": "row-header", + "from": {"data": "row_domain"}, + "sort": {"field": "datum[\"a\"]", "order": "ascending"}, + "title": { + "text": { + "signal": "isValid(parent[\"a\"]) ? parent[\"a\"] : \"\"+parent[\"a\"]" + }, + "orient": "left", + "style": "guide-label", + "frame": "group", + "baseline": "middle", + "align": "right", + "angle": 0, + "offset": 10 + }, + "encode": {"update": {"height": {"signal": "child_height"}}} + }, + { + "name": "column_header", + "type": "group", + "role": "column-header", + "from": {"data": "column_domain"}, + "sort": {"field": "datum[\"b\"]", "order": "ascending"}, + "title": { + "text": { + "signal": "isValid(parent[\"b\"]) ? parent[\"b\"] : \"\"+parent[\"b\"]" + }, + "style": "guide-label", + "frame": "group", + "offset": 10 + }, + "encode": {"update": {"width": {"signal": "child_width"}}} + }, + { + "name": "column_footer", + "type": "group", + "role": "column-footer", + "from": {"data": "column_domain"}, + "sort": {"field": "datum[\"b\"]", "order": "ascending"}, + "encode": {"update": {"width": {"signal": "child_width"}}}, + "axes": [ + { + "scale": "x", + "orient": "bottom", + "grid": false, + "format": "%", + "labelFlush": true, + "labelOverlap": true, + "tickCount": {"signal": "ceil(child_width/40)"}, + "zindex": 0 + } + ] + }, + { + "name": "cell", + "type": "group", + "style": "cell", + "from": { + "facet": { + "name": "facet", + "data": "data_0", + "groupby": ["a", "b"], + "aggregate": {"cross": true} + } + }, + "sort": { + "field": ["datum[\"a\"]", "datum[\"b\"]"], + "order": ["ascending", "ascending"] + }, + "encode": { + "update": { + "width": {"signal": "child_width"}, + "height": {"signal": "child_height"} + } + }, + "marks": [ + { + "name": "child_marks", + "type": "rect", + "style": ["bar"], + "from": {"data": "facet"}, + "encode": { + "update": { + "fill": {"scale": "color", "field": "c"}, + "ariaRoleDescription": {"value": "bar"}, + "description": { + "signal": "\"p: \" + (format(datum[\"p\"], \"%\")) + \"; c: \" + (isValid(datum[\"c\"]) ? datum[\"c\"] : \"\"+datum[\"c\"]) + \"; settings: \" + (isValid(datum[\"c\"]) ? datum[\"c\"] : \"\"+datum[\"c\"])" + }, + "x": {"scale": "x", "field": "p_end"}, + "x2": {"scale": "x", "field": "p_start"}, + "y": {"scale": "y", "field": "c"}, + "height": {"signal": "max(0.25, bandwidth('y'))"} + } + } + } + ], + "axes": [ + { + "scale": "x", + "orient": "bottom", + "gridScale": "y", + "grid": true, + "tickCount": {"signal": "ceil(child_width/40)"}, + "domain": false, + "labels": false, + "aria": false, + "maxExtent": 0, + "minExtent": 0, + "ticks": false, + "zindex": 0 + } + ] + } + ], + "scales": [ + { + "name": "x", + "type": "linear", + "domain": {"data": "data_0", "fields": ["p_start", "p_end"]}, + "range": [0, {"signal": "child_width"}], + "nice": true, + "zero": true + }, + { + "name": "y", + "type": "band", + "domain": {"data": "data_0", "field": "c", "sort": true}, + "range": {"step": {"signal": "y_step"}}, + "paddingInner": 0.1, + "paddingOuter": 0.05 + }, + { + "name": "color", + "type": "ordinal", + "domain": {"data": "data_0", "field": "c", "sort": true}, + "range": "category" + } + ], + "legends": [ + { + "orient": "bottom", + "title": "settings", + "titleOrient": "left", + "fill": "color", + "direction": "horizontal", + "symbolType": "square" + } + ] +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-specs/vl-convert/circle_binned.vg.json b/avenger-vega-test-data/vega-specs/vl-convert/circle_binned.vg.json new file mode 100644 index 0000000..907eeeb --- /dev/null +++ b/avenger-vega-test-data/vega-specs/vl-convert/circle_binned.vg.json @@ -0,0 +1,160 @@ +{ + "$schema": "https://vega.github.io/schema/vega/v5.json", + "background": "white", + "padding": 5, + "width": 200, + "height": 200, + "style": "cell", + "data": [ + { + "name": "source_0", + "url": "https://raw.githubusercontent.com/vega/vega-datasets/next/data/movies.json", + "format": {"type": "json"}, + "transform": [ + { + "type": "extent", + "field": "IMDB Rating", + "signal": "bin_maxbins_10_IMDB_Rating_extent" + }, + { + "type": "bin", + "field": "IMDB Rating", + "as": [ + "bin_maxbins_10_IMDB Rating", + "bin_maxbins_10_IMDB Rating_end" + ], + "signal": "bin_maxbins_10_IMDB_Rating_bins", + "extent": {"signal": "bin_maxbins_10_IMDB_Rating_extent"}, + "maxbins": 10 + }, + { + "type": "extent", + "field": "Rotten Tomatoes Rating", + "signal": "bin_maxbins_10_Rotten_Tomatoes_Rating_extent" + }, + { + "type": "bin", + "field": "Rotten Tomatoes Rating", + "as": [ + "bin_maxbins_10_Rotten Tomatoes Rating", + "bin_maxbins_10_Rotten Tomatoes Rating_end" + ], + "signal": "bin_maxbins_10_Rotten_Tomatoes_Rating_bins", + "extent": {"signal": "bin_maxbins_10_Rotten_Tomatoes_Rating_extent"}, + "maxbins": 10 + }, + { + "type": "aggregate", + "groupby": [ + "bin_maxbins_10_IMDB Rating", + "bin_maxbins_10_IMDB Rating_end", + "bin_maxbins_10_Rotten Tomatoes Rating", + "bin_maxbins_10_Rotten Tomatoes Rating_end" + ], + "ops": ["count"], + "fields": [null], + "as": ["__count"] + }, + { + "type": "filter", + "expr": "isValid(datum[\"bin_maxbins_10_IMDB Rating\"]) && isFinite(+datum[\"bin_maxbins_10_IMDB Rating\"]) && isValid(datum[\"bin_maxbins_10_Rotten Tomatoes Rating\"]) && isFinite(+datum[\"bin_maxbins_10_Rotten Tomatoes Rating\"])" + } + ] + } + ], + "marks": [ + { + "name": "marks", + "type": "symbol", + "style": ["circle"], + "from": {"data": "source_0"}, + "encode": { + "update": { + "fill": {"value": "#4c78a8"}, + "ariaRoleDescription": {"value": "circle"}, + "description": { + "signal": "\"IMDB Rating (binned): \" + (!isValid(datum[\"bin_maxbins_10_IMDB Rating\"]) || !isFinite(+datum[\"bin_maxbins_10_IMDB Rating\"]) ? \"null\" : format(datum[\"bin_maxbins_10_IMDB Rating\"], \"\") + \" – \" + format(datum[\"bin_maxbins_10_IMDB Rating_end\"], \"\")) + \"; Rotten Tomatoes Rating (binned): \" + (!isValid(datum[\"bin_maxbins_10_Rotten Tomatoes Rating\"]) || !isFinite(+datum[\"bin_maxbins_10_Rotten Tomatoes Rating\"]) ? \"null\" : format(datum[\"bin_maxbins_10_Rotten Tomatoes Rating\"], \"\") + \" – \" + format(datum[\"bin_maxbins_10_Rotten Tomatoes Rating_end\"], \"\")) + \"; Count of Records: \" + (format(datum[\"__count\"], \"\"))" + }, + "x": { + "signal": "scale(\"x\", 0.5 * datum[\"bin_maxbins_10_IMDB Rating\"] + 0.5 * datum[\"bin_maxbins_10_IMDB Rating_end\"])" + }, + "y": { + "signal": "scale(\"y\", 0.5 * datum[\"bin_maxbins_10_Rotten Tomatoes Rating\"] + 0.5 * datum[\"bin_maxbins_10_Rotten Tomatoes Rating_end\"])" + }, + "size": {"scale": "size", "field": "__count"}, + "shape": {"value": "circle"} + } + } + } + ], + "scales": [ + { + "name": "x", + "type": "linear", + "domain": { + "signal": "[bin_maxbins_10_IMDB_Rating_bins.start, bin_maxbins_10_IMDB_Rating_bins.stop]" + }, + "range": [0, {"signal": "width"}], + "bins": {"signal": "bin_maxbins_10_IMDB_Rating_bins"}, + "zero": false + }, + { + "name": "y", + "type": "linear", + "domain": { + "signal": "[bin_maxbins_10_Rotten_Tomatoes_Rating_bins.start, bin_maxbins_10_Rotten_Tomatoes_Rating_bins.stop]" + }, + "range": [{"signal": "height"}, 0], + "bins": {"signal": "bin_maxbins_10_Rotten_Tomatoes_Rating_bins"}, + "zero": false + }, + { + "name": "size", + "type": "linear", + "domain": {"data": "source_0", "field": "__count"}, + "range": [ + 0, + { + "signal": "pow(0.95 * min(width / ((bin_maxbins_10_IMDB_Rating_bins.stop - bin_maxbins_10_IMDB_Rating_bins.start) / bin_maxbins_10_IMDB_Rating_bins.step), height / ((bin_maxbins_10_Rotten_Tomatoes_Rating_bins.stop - bin_maxbins_10_Rotten_Tomatoes_Rating_bins.start) / bin_maxbins_10_Rotten_Tomatoes_Rating_bins.step)), 2)" + } + ], + "zero": true + } + ], + "axes": [ + { + "scale": "x", + "orient": "bottom", + "grid": false, + "title": "IMDB Rating (binned)", + "labelFlush": true, + "labelOverlap": true, + "tickCount": {"signal": "ceil(width/10)"}, + "zindex": 0 + }, + { + "scale": "y", + "orient": "left", + "grid": false, + "title": "Rotten Tomatoes Rating (binned)", + "labelOverlap": true, + "tickCount": {"signal": "ceil(height/10)"}, + "zindex": 0 + } + ], + "legends": [ + { + "size": "size", + "symbolType": "circle", + "title": "Count of Records", + "encode": { + "symbols": { + "update": { + "fill": {"value": "#4c78a8"}, + "stroke": {"value": "transparent"} + } + } + } + } + ] +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-specs/vl-convert/circle_binned_base_url.vg.json b/avenger-vega-test-data/vega-specs/vl-convert/circle_binned_base_url.vg.json new file mode 100644 index 0000000..672c7d1 --- /dev/null +++ b/avenger-vega-test-data/vega-specs/vl-convert/circle_binned_base_url.vg.json @@ -0,0 +1,160 @@ +{ + "$schema": "https://vega.github.io/schema/vega/v5.json", + "background": "white", + "padding": 5, + "width": 200, + "height": 200, + "style": "cell", + "data": [ + { + "name": "source_0", + "url": "data/movies.json", + "format": {"type": "json"}, + "transform": [ + { + "type": "extent", + "field": "IMDB Rating", + "signal": "bin_maxbins_10_IMDB_Rating_extent" + }, + { + "type": "bin", + "field": "IMDB Rating", + "as": [ + "bin_maxbins_10_IMDB Rating", + "bin_maxbins_10_IMDB Rating_end" + ], + "signal": "bin_maxbins_10_IMDB_Rating_bins", + "extent": {"signal": "bin_maxbins_10_IMDB_Rating_extent"}, + "maxbins": 10 + }, + { + "type": "extent", + "field": "Rotten Tomatoes Rating", + "signal": "bin_maxbins_10_Rotten_Tomatoes_Rating_extent" + }, + { + "type": "bin", + "field": "Rotten Tomatoes Rating", + "as": [ + "bin_maxbins_10_Rotten Tomatoes Rating", + "bin_maxbins_10_Rotten Tomatoes Rating_end" + ], + "signal": "bin_maxbins_10_Rotten_Tomatoes_Rating_bins", + "extent": {"signal": "bin_maxbins_10_Rotten_Tomatoes_Rating_extent"}, + "maxbins": 10 + }, + { + "type": "aggregate", + "groupby": [ + "bin_maxbins_10_IMDB Rating", + "bin_maxbins_10_IMDB Rating_end", + "bin_maxbins_10_Rotten Tomatoes Rating", + "bin_maxbins_10_Rotten Tomatoes Rating_end" + ], + "ops": ["count"], + "fields": [null], + "as": ["__count"] + }, + { + "type": "filter", + "expr": "isValid(datum[\"bin_maxbins_10_IMDB Rating\"]) && isFinite(+datum[\"bin_maxbins_10_IMDB Rating\"]) && isValid(datum[\"bin_maxbins_10_Rotten Tomatoes Rating\"]) && isFinite(+datum[\"bin_maxbins_10_Rotten Tomatoes Rating\"])" + } + ] + } + ], + "marks": [ + { + "name": "marks", + "type": "symbol", + "style": ["circle"], + "from": {"data": "source_0"}, + "encode": { + "update": { + "fill": {"value": "#4c78a8"}, + "ariaRoleDescription": {"value": "circle"}, + "description": { + "signal": "\"IMDB Rating (binned): \" + (!isValid(datum[\"bin_maxbins_10_IMDB Rating\"]) || !isFinite(+datum[\"bin_maxbins_10_IMDB Rating\"]) ? \"null\" : format(datum[\"bin_maxbins_10_IMDB Rating\"], \"\") + \" – \" + format(datum[\"bin_maxbins_10_IMDB Rating_end\"], \"\")) + \"; Rotten Tomatoes Rating (binned): \" + (!isValid(datum[\"bin_maxbins_10_Rotten Tomatoes Rating\"]) || !isFinite(+datum[\"bin_maxbins_10_Rotten Tomatoes Rating\"]) ? \"null\" : format(datum[\"bin_maxbins_10_Rotten Tomatoes Rating\"], \"\") + \" – \" + format(datum[\"bin_maxbins_10_Rotten Tomatoes Rating_end\"], \"\")) + \"; Count of Records: \" + (format(datum[\"__count\"], \"\"))" + }, + "x": { + "signal": "scale(\"x\", 0.5 * datum[\"bin_maxbins_10_IMDB Rating\"] + 0.5 * datum[\"bin_maxbins_10_IMDB Rating_end\"])" + }, + "y": { + "signal": "scale(\"y\", 0.5 * datum[\"bin_maxbins_10_Rotten Tomatoes Rating\"] + 0.5 * datum[\"bin_maxbins_10_Rotten Tomatoes Rating_end\"])" + }, + "size": {"scale": "size", "field": "__count"}, + "shape": {"value": "circle"} + } + } + } + ], + "scales": [ + { + "name": "x", + "type": "linear", + "domain": { + "signal": "[bin_maxbins_10_IMDB_Rating_bins.start, bin_maxbins_10_IMDB_Rating_bins.stop]" + }, + "range": [0, {"signal": "width"}], + "bins": {"signal": "bin_maxbins_10_IMDB_Rating_bins"}, + "zero": false + }, + { + "name": "y", + "type": "linear", + "domain": { + "signal": "[bin_maxbins_10_Rotten_Tomatoes_Rating_bins.start, bin_maxbins_10_Rotten_Tomatoes_Rating_bins.stop]" + }, + "range": [{"signal": "height"}, 0], + "bins": {"signal": "bin_maxbins_10_Rotten_Tomatoes_Rating_bins"}, + "zero": false + }, + { + "name": "size", + "type": "linear", + "domain": {"data": "source_0", "field": "__count"}, + "range": [ + 0, + { + "signal": "pow(0.95 * min(width / ((bin_maxbins_10_IMDB_Rating_bins.stop - bin_maxbins_10_IMDB_Rating_bins.start) / bin_maxbins_10_IMDB_Rating_bins.step), height / ((bin_maxbins_10_Rotten_Tomatoes_Rating_bins.stop - bin_maxbins_10_Rotten_Tomatoes_Rating_bins.start) / bin_maxbins_10_Rotten_Tomatoes_Rating_bins.step)), 2)" + } + ], + "zero": true + } + ], + "axes": [ + { + "scale": "x", + "orient": "bottom", + "grid": false, + "title": "IMDB Rating (binned)", + "labelFlush": true, + "labelOverlap": true, + "tickCount": {"signal": "ceil(width/10)"}, + "zindex": 0 + }, + { + "scale": "y", + "orient": "left", + "grid": false, + "title": "Rotten Tomatoes Rating (binned)", + "labelOverlap": true, + "tickCount": {"signal": "ceil(height/10)"}, + "zindex": 0 + } + ], + "legends": [ + { + "size": "size", + "symbolType": "circle", + "title": "Count of Records", + "encode": { + "symbols": { + "update": { + "fill": {"value": "#4c78a8"}, + "stroke": {"value": "transparent"} + } + } + } + } + ] +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-specs/vl-convert/custom_projection.vg.json b/avenger-vega-test-data/vega-specs/vl-convert/custom_projection.vg.json new file mode 100644 index 0000000..8dbb583 --- /dev/null +++ b/avenger-vega-test-data/vega-specs/vl-convert/custom_projection.vg.json @@ -0,0 +1,54 @@ +{ + "$schema": "https://vega.github.io/schema/vega/v5.json", + "background": "white", + "padding": 5, + "width": 500, + "height": 300, + "style": "view", + "data": [ + { + "name": "source_0", + "url": "https://raw.githubusercontent.com/vega/vega-datasets/main/data/airports.csv", + "format": {"type": "csv"}, + "transform": [ + { + "type": "geopoint", + "projection": "projection", + "fields": ["longitude", "latitude"], + "as": ["layer_0_x", "layer_0_y"] + } + ] + } + ], + "projections": [ + { + "name": "projection", + "translate": [1200, 700], + "type": "albersUsa", + "scale": 3000 + } + ], + "marks": [ + { + "name": "layer_0_marks", + "type": "symbol", + "clip": true, + "style": ["circle"], + "from": {"data": "source_0"}, + "encode": { + "update": { + "opacity": {"value": 0.7}, + "fill": {"value": "steelblue"}, + "ariaRoleDescription": {"value": "circle"}, + "description": { + "signal": "\"longitude: \" + (format(datum[\"longitude\"], \"\")) + \"; latitude: \" + (format(datum[\"latitude\"], \"\"))" + }, + "x": {"field": "layer_0_x"}, + "y": {"field": "layer_0_y"}, + "size": {"value": 10}, + "shape": {"value": "circle"} + } + } + } + ] +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-specs/vl-convert/float_font_size.vg.json b/avenger-vega-test-data/vega-specs/vl-convert/float_font_size.vg.json new file mode 100644 index 0000000..01fabd9 --- /dev/null +++ b/avenger-vega-test-data/vega-specs/vl-convert/float_font_size.vg.json @@ -0,0 +1,123 @@ +{ + "$schema": "https://vega.github.io/schema/vega/v5.json", + "background": "white", + "padding": 5, + "height": 200, + "title": {"text": "Some title", "frame": "group"}, + "style": "cell", + "data": [ + { + "name": "source_0", + "values": [ + {"a": "A", "b": 28}, + {"a": "B", "b": 55}, + {"a": "C", "b": 43}, + {"a": "D", "b": 91}, + {"a": "E", "b": 81}, + {"a": "F", "b": 53}, + {"a": "G", "b": 19}, + {"a": "H", "b": 87}, + {"a": "I", "b": 52} + ] + }, + { + "name": "data_0", + "source": "source_0", + "transform": [ + { + "type": "stack", + "groupby": ["a"], + "field": "b", + "sort": {"field": [], "order": []}, + "as": ["b_start", "b_end"], + "offset": "zero" + }, + { + "type": "filter", + "expr": "isValid(datum[\"b\"]) && isFinite(+datum[\"b\"])" + } + ] + } + ], + "signals": [ + {"name": "x_step", "value": 20}, + { + "name": "width", + "update": "bandspace(domain('x').length, 0.1, 0.05) * x_step" + } + ], + "marks": [ + { + "name": "marks", + "type": "rect", + "style": ["bar"], + "from": {"data": "data_0"}, + "encode": { + "update": { + "fill": {"value": "#4c78a8"}, + "ariaRoleDescription": {"value": "bar"}, + "description": { + "signal": "\"a: \" + (isValid(datum[\"a\"]) ? datum[\"a\"] : \"\"+datum[\"a\"]) + \"; b: \" + (format(datum[\"b\"], \"\"))" + }, + "x": {"scale": "x", "field": "a"}, + "width": {"signal": "max(0.25, bandwidth('x'))"}, + "y": {"scale": "y", "field": "b_end"}, + "y2": {"scale": "y", "field": "b_start"} + } + } + } + ], + "scales": [ + { + "name": "x", + "type": "band", + "domain": {"data": "data_0", "field": "a", "sort": true}, + "range": {"step": {"signal": "x_step"}}, + "paddingInner": 0.1, + "paddingOuter": 0.05 + }, + { + "name": "y", + "type": "linear", + "domain": {"data": "data_0", "fields": ["b_start", "b_end"]}, + "range": [{"signal": "height"}, 0], + "nice": true, + "zero": true + } + ], + "axes": [ + { + "scale": "y", + "orient": "left", + "gridScale": "x", + "grid": true, + "tickCount": {"signal": "ceil(height/40)"}, + "domain": false, + "labels": false, + "aria": false, + "maxExtent": 0, + "minExtent": 0, + "ticks": false, + "zindex": 0 + }, + { + "scale": "x", + "orient": "bottom", + "grid": false, + "title": "a", + "labelAngle": 0, + "labelBaseline": "top", + "zindex": 0 + }, + { + "scale": "y", + "orient": "left", + "grid": false, + "title": "b", + "labelOverlap": true, + "tickCount": {"signal": "ceil(height/40)"}, + "zindex": 0 + } + ], + "config": {"style": {"group-title": {"fontSize": 12.75}}} +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-specs/vl-convert/font_with_quotes.vg.json b/avenger-vega-test-data/vega-specs/vl-convert/font_with_quotes.vg.json new file mode 100644 index 0000000..8a71119 --- /dev/null +++ b/avenger-vega-test-data/vega-specs/vl-convert/font_with_quotes.vg.json @@ -0,0 +1,116 @@ +{ + "$schema": "https://vega.github.io/schema/vega/v5.json", + "background": "white", + "padding": 5, + "width": 200, + "height": 200, + "style": "cell", + "data": [ + { + "name": "df", + "values": [{"a": 1, "b": 1}, {"a": 2, "b": 3}, {"a": 3, "b": 2}] + }, + { + "name": "data_0", + "source": "df", + "transform": [ + {"type": "formula", "expr": "toNumber(datum[\"a\"])", "as": "a"} + ] + } + ], + "marks": [ + { + "name": "layer_0_layer_0_layer_0_marks", + "type": "line", + "style": ["line"], + "sort": {"field": "datum[\"a\"]"}, + "from": {"data": "data_0"}, + "encode": { + "update": { + "stroke": {"value": "#4c78a8"}, + "description": { + "signal": "\"a: \" + (format(datum[\"a\"], \"\")) + \"; b: \" + (format(datum[\"b\"], \"\"))" + }, + "x": {"scale": "x", "field": "a"}, + "y": {"scale": "y", "field": "b"}, + "defined": { + "signal": "isValid(datum[\"a\"]) && isFinite(+datum[\"a\"]) && isValid(datum[\"b\"]) && isFinite(+datum[\"b\"])" + } + } + } + } + ], + "scales": [ + { + "name": "x", + "type": "linear", + "domain": {"data": "data_0", "field": "a"}, + "range": [0, {"signal": "width"}], + "nice": true, + "zero": false + }, + { + "name": "y", + "type": "linear", + "domain": {"data": "data_0", "field": "b"}, + "range": [{"signal": "height"}, 0], + "nice": true, + "zero": true + } + ], + "axes": [ + { + "scale": "x", + "orient": "bottom", + "gridScale": "y", + "grid": true, + "tickCount": {"signal": "ceil(width/40)"}, + "domain": false, + "labels": false, + "aria": false, + "maxExtent": 0, + "minExtent": 0, + "ticks": false, + "zindex": 0 + }, + { + "scale": "y", + "orient": "left", + "gridScale": "x", + "grid": true, + "tickCount": {"signal": "ceil(height/40)"}, + "domain": false, + "labels": false, + "aria": false, + "maxExtent": 0, + "minExtent": 0, + "ticks": false, + "zindex": 0 + }, + { + "scale": "x", + "orient": "bottom", + "grid": false, + "title": "a", + "labelFlush": true, + "labelOverlap": true, + "tickCount": {"signal": "ceil(width/40)"}, + "zindex": 0 + }, + { + "scale": "y", + "orient": "left", + "grid": false, + "title": "b", + "labelOverlap": true, + "tickCount": {"signal": "ceil(height/40)"}, + "zindex": 0 + } + ], + "config": { + "style": { + "guide-label": {"font": "\"Liberation Sans\", sans-serif"}, + "guide-title": {"font": "\"Liberation Sans\", sans-serif"} + } + } +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-specs/vl-convert/geoScale.vg.json b/avenger-vega-test-data/vega-specs/vl-convert/geoScale.vg.json new file mode 100644 index 0000000..301e628 --- /dev/null +++ b/avenger-vega-test-data/vega-specs/vl-convert/geoScale.vg.json @@ -0,0 +1,3052 @@ +{ + "$schema": "https://vega.github.io/schema/vega/v5.json", + "background": "white", + "padding": 5, + "width": 600, + "height": 400, + "style": ["cell", "view"], + "data": [ + { + "name": "data-d796ccc73f9696bc387a819d32762211", + "values": [ + { + "NAME": "Tanzania", + "CONTINENT": "Africa", + "POP_EST": 58005463, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [33.90371119710453, -0.9500000000000001], + [34.07261999999997, -1.0598199999999451], + [37.69868999999994, -3.0969899999999484], + [37.7669, -3.6771200000000004], + [39.20222, -4.67677], + [38.74053999999995, -5.9089499999999475], + [38.79977000000008, -6.475660000000005], + [39.44, -6.839999999999861], + [39.47000000000014, -7.099999999999966], + [39.19468999999998, -7.703899999999976], + [39.25203000000005, -8.00780999999995], + [39.18652000000009, -8.48550999999992], + [39.53574000000009, -9.112369999999885], + [39.94960000000003, -10.098400000000026], + [40.316586229110854, -10.317097752817492], + [40.31659000000002, -10.317099999999868], + [39.52099999999996, -10.89688000000001], + [38.42755659358775, -11.285202325081656], + [37.827639999999974, -11.26878999999991], + [37.471289999999954, -11.568759999999997], + [36.775150994622805, -11.594537448780805], + [36.51408165868426, -11.720938002166735], + [35.31239790216904, -11.439146416879147], + [34.55998904799935, -11.520020033415925], + [34.27999999999997, -10.160000000000025], + [33.940837724096525, -9.693673841980285], + [33.73972000000009, -9.417149999999992], + [32.75937544122132, -9.23059905358906], + [32.19186486179194, -8.930358981973257], + [31.556348097466497, -8.762048841998642], + [31.15775133695005, -8.594578747317366], + [30.740009731422095, -8.34000593035372], + [30.74001549655179, -8.340007419470915], + [30.199996779101696, -7.079980970898163], + [29.620032179490014, -6.520015150583426], + [29.419992710088167, -5.939998874539434], + [29.519986606572928, -5.419978936386315], + [29.339997592900346, -4.4999834122940925], + [29.753512404099865, -4.452389418153302], + [30.11632000000003, -4.090120000000013], + [30.505539999999996, -3.5685799999999404], + [30.752240000000086, -3.3593099999999936], + [30.743010000000027, -3.034309999999948], + [30.527660000000026, -2.807619999999986], + [30.469673645761223, -2.41385475710134], + [30.469670000000008, -2.4138299999999617], + [30.75830895358311, -2.2872502579883687], + [30.816134881317712, -1.6989140763453887], + [30.419104852019245, -1.1346591121504161], + [30.769860000000108, -1.0145499999999856], + [31.866170000000068, -1.0273599999999306], + [33.90371119710453, -0.9500000000000001] + ] + ] + } + }, + { + "NAME": "W. Sahara", + "CONTINENT": "Africa", + "POP_EST": 603253, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-8.665589565454809, 27.656425889592356], + [-8.665124477564191, 27.589479071558227], + [-8.684399786809053, 27.395744126896005], + [-8.6872936670174, 25.881056219988906], + [-11.96941891117116, 25.933352769468268], + [-11.937224493853321, 23.374594224536168], + [-12.874221564169575, 23.284832261645178], + [-13.118754441774712, 22.771220201096256], + [-12.929101935263532, 21.327070624267563], + [-16.845193650773993, 21.33332347257488], + [-17.06342322434257, 20.999752102130827], + [-17.02042843267577, 21.422310288981578], + [-17.00296179856109, 21.420734157796577], + [-14.750954555713534, 21.500600083903663], + [-14.630832688851072, 21.860939846274903], + [-14.221167771857253, 22.31016307218816], + [-13.891110398809047, 23.691009019459305], + [-12.50096269372537, 24.7701162785782], + [-12.03075883630163, 26.030866197203068], + [-11.718219773800357, 26.104091701760623], + [-11.392554897497007, 26.883423977154393], + [-10.551262579785273, 26.990807603456886], + [-10.189424200877582, 26.860944729107405], + [-9.735343390328879, 26.860944729107405], + [-9.41303748212448, 27.088476060488574], + [-8.794883999049077, 27.120696316022507], + [-8.817828334986672, 27.656425889592356], + [-8.665589565454809, 27.656425889592356] + ] + ] + } + }, + { + "NAME": "Dem. Rep. Congo", + "CONTINENT": "Africa", + "POP_EST": 86790567, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [29.339997592900346, -4.4999834122940925], + [29.519986606572928, -5.419978936386315], + [29.419992710088167, -5.939998874539434], + [29.620032179490014, -6.520015150583426], + [30.199996779101696, -7.079980970898163], + [30.74001549655179, -8.340007419470915], + [30.740009731422095, -8.34000593035372], + [30.346086053190817, -8.238256524288218], + [29.00291222506047, -8.407031752153472], + [28.734866570762502, -8.526559340044578], + [28.449871046672826, -9.164918308146085], + [28.67368167492893, -9.605924981324932], + [28.49606977714177, -10.789883721564046], + [28.372253045370428, -11.793646742401393], + [28.642417433392353, -11.971568698782315], + [29.34154788586909, -12.360743910372413], + [29.61600141777123, -12.178894545137311], + [29.69961388521949, -13.257226657771831], + [28.934285922976837, -13.248958428605135], + [28.523561639121027, -12.698604424696683], + [28.155108676879987, -12.272480564017897], + [27.388798862423783, -12.132747491100666], + [27.164419793412463, -11.608748467661075], + [26.553087599399618, -11.924439792532127], + [25.752309604604733, -11.784965101776358], + [25.418118116973204, -11.330935967659961], + [24.78316979340295, -11.238693536018964], + [24.31451622894795, -11.26282642989927], + [24.25715538910399, -10.951992689663657], + [23.912215203555718, -10.926826267137514], + [23.45679080576744, -10.867863457892483], + [22.83734541188474, -11.01762175867433], + [22.402798292742375, -10.993075453335692], + [22.155268182064308, -11.084801120653772], + [22.208753289486395, -9.894796237836509], + [21.875181919042348, -9.523707777548566], + [21.8018013851879, -8.90870655684298], + [21.949130893652043, -8.305900974158277], + [21.74645592620331, -7.920084730667149], + [21.7281107927397, -7.290872491081302], + [20.5147481625265, -7.2996058081386295], + [20.6018229509383, -6.939317722199682], + [20.091621534920648, -6.943090101756994], + [20.037723016040218, -7.116361179231646], + [19.41750247567316, -7.155428562044299], + [19.16661339689611, -7.738183688999754], + [19.01675174324967, -7.988245944860132], + [18.464175652752687, -7.847014255406443], + [18.13422163256905, -7.987677504104923], + [17.472970004962235, -8.0685511206417], + [17.08999596524717, -7.545688978712526], + [16.8601908708452, -7.2222978654299865], + [16.573179965896145, -6.6226445451150875], + [16.326528354567046, -5.877470391466268], + [13.375597364971895, -5.8642412247995495], + [13.024869419006961, -5.984388929878158], + [12.735171339578699, -5.965682061388499], + [12.32243167486351, -6.10009246177966], + [12.182336866920252, -5.789930515163839], + [12.436688266660868, -5.6843038875592455], + [12.468004184629736, -5.248361504745005], + [12.63161176926579, -4.991271254092936], + [12.995517205465177, -4.781103203961884], + [13.258240187237048, -4.882957452009165], + [13.600234816144678, -4.50013844159097], + [14.144956088933299, -4.510008640158716], + [14.209034864975223, -4.793092136253598], + [14.582603794013181, -4.97023894615014], + [15.170991652088444, -4.343507175314301], + [15.753540073314753, -3.8551648901560966], + [16.0062895036543, -3.535132744972529], + [15.972803175529151, -2.7123922664536124], + [16.407091912510054, -1.7409270157986825], + [16.865306837642123, -1.2258163387132868], + [17.523716261472856, -0.743830254726987], + [17.638644646889986, -0.4248316381892465], + [17.66355268725468, -0.05808399821381727], + [17.826540154703252, 0.28892324462610475], + [17.774191928791566, 0.8556586775710854], + [17.898835483479587, 1.7418319767282782], + [18.094275750407434, 2.365721543788055], + [18.393792351971143, 2.90044342692822], + [18.45306521980993, 3.5043858911233485], + [18.54298221199778, 4.201785183118318], + [18.93231245288476, 4.709506130385975], + [19.46778364429315, 5.03152781821278], + [20.290679152108936, 4.691677761245288], + [20.927591180106276, 4.322785549329737], + [21.659122755630023, 4.22434194581372], + [22.405123732195538, 4.029160061047321], + [22.70412356943629, 4.633050848810157], + [22.841479526468106, 4.710126247573484], + [23.29721398285014, 4.609693101414223], + [24.410531040146253, 5.10878408448913], + [24.805028924262416, 4.89724660890235], + [25.12883344900328, 4.92724477784779], + [25.278798455514305, 5.170408229997192], + [25.650455356557472, 5.256087754737123], + [26.402760857862543, 5.1508745385908705], + [27.04406538260471, 5.127852688004836], + [27.37422610851749, 5.233944403500061], + [27.97997724784281, 4.408413397637375], + [28.428993768026913, 4.287154649264494], + [28.696677687298802, 4.455077215996937], + [29.1590784034465, 4.389267279473231], + [29.71599531425602, 4.600804755060153], + [29.953500197069474, 4.173699042167684], + [30.833852421715427, 3.5091716042224625], + [30.83385989759381, 3.509165961110341], + [30.77334679538004, 2.339883327642127], + [31.174149204235817, 2.204465236821264], + [30.85267011894806, 1.8493964705438088], + [30.46850752129029, 1.5838054467797065], + [30.086153598762706, 1.0623127303062887], + [29.875778842902434, 0.5973798689763612], + [29.819503208136638, -0.2053101538133717], + [29.58783776217217, -0.587405694179381], + [29.579466180140884, -1.3413131648856265], + [29.291886834436614, -1.6200558406679872], + [29.254834832483343, -2.2151099585089113], + [29.117478875451553, -2.2922111954883846], + [29.024926385216787, -2.8392579077301576], + [29.276383904749053, -3.293907159034063], + [29.339997592900346, -4.4999834122940925] + ] + ] + } + }, + { + "NAME": "Somalia", + "CONTINENT": "Africa", + "POP_EST": 10192317.3, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [41.58513, -1.6832500000000001], + [40.993, -0.85829], + [40.98105, 2.7845199999999997], + [41.85508309264397, 3.918911920483727], + [42.128609999999995, 4.23413], + [42.76967, 4.25259], + [43.66086999999999, 4.957550000000083], + [44.96360000000001, 5.00162], + [47.78942, 8.003], + [48.48673587422695, 8.837626247589995], + [48.93812951029645, 9.451748968946617], + [48.93823286316103, 9.973500067581512], + [48.938491245322496, 10.982327378783467], + [48.94200524271835, 11.394266058798138], + [48.94820475850974, 11.410617281697963], + [48.94820475850985, 11.41061728169797], + [49.26776, 11.43033], + [49.72862, 11.5789], + [50.25878000000001, 11.67957], + [50.73202, 12.021900000000002], + [51.1112, 12.024640000000002], + [51.13387, 11.74815], + [51.04153, 11.16651], + [51.04531, 10.6409], + [50.834179999999996, 10.279720000000001], + [50.55239, 9.19874], + [50.07092, 8.08173], + [49.45270000000001, 6.80466], + [48.594550000000005, 5.339110000000001], + [47.740790000000004, 4.2194], + [46.56476, 2.85529], + [45.563990000000004, 2.04576], + [44.068149999999996, 1.0528300000000002], + [43.13597, 0.2922], + [42.04157000000001, -0.9191600000000001], + [41.81095, -1.4464700000000001], + [41.58513, -1.6832500000000001] + ] + ] + } + }, + { + "NAME": "Kenya", + "CONTINENT": "Africa", + "POP_EST": 52573973, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [39.20222, -4.67677], + [37.7669, -3.6771200000000004], + [37.69868999999994, -3.0969899999999484], + [34.07261999999997, -1.0598199999999451], + [33.90371119710453, -0.9500000000000001], + [33.893568969666944, 0.1098135378618963], + [34.18, 0.515], + [34.6721, 1.1769399999999999], + [35.03599, 1.90584], + [34.59607, 3.0537400000001185], + [34.47913, 3.5556000000000836], + [34.005, 4.249884947362048], + [34.62019626785388, 4.8471227420819885], + [35.29800711823298, 5.506], + [35.817447662353516, 5.338232082790797], + [35.817447662353516, 4.7769656634618896], + [36.159078632855646, 4.447864127672769], + [36.85509323800812, 4.447864127672769], + [38.120915, 3.598605], + [38.43697, 3.58851], + [38.67114, 3.6160700000000006], + [38.89251, 3.5007400000000004], + [39.55938425876585, 3.42206], + [39.85494, 3.83879], + [40.76848, 4.257020000000001], + [41.1718, 3.9190899999999997], + [41.85508309264397, 3.918911920483727], + [40.98105, 2.7845199999999997], + [40.993, -0.85829], + [41.58513, -1.6832500000000001], + [40.88477, -2.08255], + [40.63785000000001, -2.49979], + [40.26304000000001, -2.57309], + [40.12119, -3.27768], + [39.80006, -3.68116], + [39.604890000000005, -4.3465300000000004], + [39.20222, -4.67677] + ] + ] + } + }, + { + "NAME": "Sudan", + "CONTINENT": "Africa", + "POP_EST": 42813238, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [24.567369012152085, 8.229187933785468], + [23.805813429466752, 8.666318874542526], + [23.459012892355986, 8.954285793488893], + [23.394779087017184, 9.265067857292223], + [23.55724979014283, 9.681218166538684], + [23.554304233502194, 10.089255275915308], + [22.97754357269261, 10.71446259199854], + [22.864165480244225, 11.142395127807546], + [22.876219999999932, 11.384610000000123], + [22.50869, 11.679360000000031], + [22.497619999999984, 12.260240000000067], + [22.288010000000043, 12.646049999999946], + [21.93680999999998, 12.588180000000136], + [22.037589999999966, 12.95545999999996], + [22.296580000000006, 13.372319999999945], + [22.18329, 13.78648000000004], + [22.512020000000007, 14.093179999999961], + [22.30350999999996, 14.326820000000055], + [22.56795000000011, 14.944290000000137], + [23.024590000000103, 15.680720000000065], + [23.886890000000108, 15.610839999999996], + [23.83766000000014, 19.580470000000105], + [23.850000000000136, 20.000000000000057], + [25.000000000000114, 20.003040000000055], + [25, 22], + [29.019999999999982, 22], + [32.89999999999998, 22], + [36.86622999999997, 22], + [37.1887200000001, 21.018850000000043], + [36.969409999999925, 20.83744000000013], + [37.11470000000014, 19.807960000000094], + [37.4817900000001, 18.61409000000009], + [37.862760000000094, 18.36785999999995], + [38.410089959473225, 17.998307399970315], + [37.90400000000011, 17.427540000000022], + [37.167470000000094, 17.263140000000135], + [36.852530000000115, 16.956549999999993], + [36.75389000000007, 16.291860000000042], + [36.32321999999999, 14.822490000000016], + [36.42951000000005, 14.422110000000032], + [36.27022000000005, 13.563330000000121], + [35.86363, 12.578280000000063], + [35.26049000000006, 12.08286000000004], + [34.83163000000013, 11.318960000000118], + [34.73115000000013, 10.910170000000107], + [34.25745000000006, 10.630089999999996], + [33.961620000000096, 9.583580000000097], + [33.97498000000007, 8.68455999999992], + [33.963392794971185, 9.464285229420625], + [33.82496348090751, 9.484060845715362], + [33.84213085302815, 9.981914637215993], + [33.72195924818311, 10.325262079630193], + [33.206938084561784, 10.720111638406593], + [33.086766479716744, 11.441141267476496], + [33.206938084561784, 12.179338268667095], + [32.743419037302544, 12.248007757149992], + [32.67474954881965, 12.02483191958072], + [32.073891524594785, 11.973329803218519], + [32.31423473428475, 11.68148447716652], + [32.400071594888345, 11.080626452941488], + [31.850715687025513, 10.531270545078826], + [31.35286189552488, 9.810240916008695], + [30.837840731903384, 9.70723668328452], + [29.996639497988554, 10.290927335388687], + [29.61895731133285, 10.084918869940225], + [29.515953078608618, 9.793073543888056], + [29.000931914987177, 9.60423245056029], + [28.966597170745786, 9.398223985111656], + [27.970889587744352, 9.398223985111656], + [27.833550610778786, 9.60423245056029], + [27.112520981708883, 9.638567194801624], + [26.752006167173818, 9.466893473594496], + [26.477328213242515, 9.552730334198088], + [25.962307049621018, 10.136420986302426], + [25.790633328413946, 10.411098940233728], + [25.069603699343986, 10.273759963267992], + [24.794925745412684, 9.810240916008695], + [24.53741516360202, 8.91753756573172], + [24.19406772118765, 8.728696472403897], + [23.886979580860668, 8.619729712933065], + [24.567369012152085, 8.229187933785468] + ] + ] + } + }, + { + "NAME": "Chad", + "CONTINENT": "Africa", + "POP_EST": 15946876, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [23.83766000000014, 19.580470000000105], + [23.886890000000108, 15.610839999999996], + [23.024590000000103, 15.680720000000065], + [22.56795000000011, 14.944290000000137], + [22.30350999999996, 14.326820000000055], + [22.512020000000007, 14.093179999999961], + [22.18329, 13.78648000000004], + [22.296580000000006, 13.372319999999945], + [22.037589999999966, 12.95545999999996], + [21.93680999999998, 12.588180000000136], + [22.288010000000043, 12.646049999999946], + [22.497619999999984, 12.260240000000067], + [22.50869, 11.679360000000031], + [22.876219999999932, 11.384610000000123], + [22.864165480244225, 11.142395127807546], + [22.23112918466876, 10.97188873946061], + [21.723821648859456, 10.567055568885976], + [21.000868361096167, 9.475985215691509], + [20.05968549976427, 9.012706000194854], + [19.09400800952602, 9.07484691002584], + [18.812009718509273, 8.982914536978598], + [18.911021762780507, 8.630894680206353], + [18.38955488452322, 8.281303615751824], + [17.964929640380888, 7.890914008002994], + [16.705988396886255, 7.5083275415299795], + [16.456184523187346, 7.734773667832968], + [16.290561557691888, 7.754307359239419], + [16.106231723706742, 7.497087917506462], + [15.279460483469109, 7.421924546737969], + [15.436091749745742, 7.692812404811889], + [15.120865512765306, 8.382150173369439], + [14.97999555833769, 8.796104234243472], + [14.54446658698177, 8.965861314322268], + [13.954218377344006, 9.549494940626687], + [14.171466098699028, 10.021378282099931], + [14.62720055508106, 9.920919297724538], + [14.909353875394716, 9.992129421422732], + [15.467872755605242, 9.982336737503545], + [14.92356489427496, 10.891325181517473], + [14.9601518083376, 11.555574042197224], + [14.89336000000003, 12.219049999999982], + [14.495787387762846, 12.85939626713733], + [14.595781284247607, 13.33042694747786], + [13.95447675950561, 13.353448798063766], + [13.956698846094127, 13.996691189016929], + [13.540393507550789, 14.367133693901224], + [13.972170000000006, 15.684370000000058], + [15.247731154041844, 16.627305813050782], + [15.30044111497972, 17.927949937405003], + [15.685740594147774, 19.957180080642388], + [15.903246697664315, 20.387618923417506], + [15.487148064850146, 20.730414537025638], + [15.47106000000008, 21.04845000000006], + [15.096887648181848, 21.30851878507491], + [14.851300000000037, 22.862950000000126], + [15.860850000000084, 23.409719999999993], + [19.849260000000072, 21.49509000000006], + [23.83766000000014, 19.580470000000105] + ] + ] + } + }, + { + "NAME": "South Africa", + "CONTINENT": "Africa", + "POP_EST": 58558270, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [16.344976840895242, -28.5767050106977], + [16.824017368240902, -28.08216155366447], + [17.218928663815404, -28.35594329194681], + [17.387497185951503, -28.78351409272978], + [17.83615197110953, -28.85637786226132], + [18.464899122804752, -29.04546192801728], + [19.002127312911085, -28.972443129188868], + [19.894734327888614, -28.461104831660776], + [19.895767856534434, -24.76779021576059], + [20.16572553882719, -24.91796192800077], + [20.75860924651184, -25.86813648855145], + [20.66647016773544, -26.477453301704923], + [20.88960900237174, -26.828542982695915], + [21.605896030369394, -26.726533705351756], + [22.105968865657868, -26.280256036079138], + [22.57953169118059, -25.979447523708146], + [22.8242712745149, -25.50045867279477], + [23.312096795350186, -25.26868987396572], + [23.73356977712271, -25.390129489851617], + [24.211266717228796, -25.670215752873574], + [25.025170525825786, -25.7196700985769], + [25.66466637543772, -25.486816094669713], + [25.76584882986521, -25.17484547292368], + [25.94165205252216, -24.69637338633322], + [26.4857532081233, -24.616326592713104], + [26.786406691197413, -24.240690606383485], + [27.119409620886245, -23.574323011979775], + [28.01723595552525, -22.82775359465908], + [29.43218834810904, -22.091312758067588], + [29.839036899542972, -22.102216485281176], + [30.322883335091774, -22.271611830333935], + [30.65986535006709, -22.151567478119915], + [31.19140913262129, -22.2515096981724], + [31.670397983534656, -23.658969008073864], + [31.930588820124253, -24.36941659922254], + [31.75240848158188, -25.484283949487413], + [31.83777794772806, -25.84333180105135], + [31.333157586397903, -25.66019052500895], + [31.04407962415715, -25.731452325139443], + [30.949666782359913, -26.02264902110415], + [30.67660851412964, -26.398078301704608], + [30.68596194837448, -26.743845310169533], + [31.28277306491333, -27.285879408478998], + [31.86806033705108, -27.177927341421277], + [32.07166548028107, -26.73382008230491], + [32.830120477028885, -26.742191664336197], + [32.580264926897684, -27.470157566031816], + [32.46213260267845, -28.301011244420557], + [32.20338870619304, -28.75240488049007], + [31.521001417778876, -29.257386976846256], + [31.325561150851, -29.401977634398914], + [30.901762729625347, -29.909956963828037], + [30.62281334811382, -30.42377573010613], + [30.05571618014278, -31.140269463832958], + [28.92555260591954, -32.1720411109725], + [28.2197558936771, -32.771952813448856], + [27.464608188595975, -33.2269637997788], + [26.419452345492825, -33.61495045342619], + [25.90966434093349, -33.6670402971764], + [25.780628289500697, -33.94464609144834], + [25.172861769315972, -33.796851495093584], + [24.677853224392123, -33.98717579522455], + [23.594043409934642, -33.794474379208154], + [22.988188917744736, -33.91643075941698], + [22.574157342222236, -33.86408253350531], + [21.542799106541025, -34.258838799782936], + [20.689052768647002, -34.417175388325234], + [20.071261020597632, -34.79513681410799], + [19.61640506356457, -34.81916635512371], + [19.193278435958717, -34.46259897230979], + [18.85531456876987, -34.444305515278465], + [18.42464318204938, -33.99787281670897], + [18.377410922934615, -34.13652068454807], + [18.24449913907992, -33.86775156019803], + [18.250080193767445, -33.28143075941444], + [17.92519046394844, -32.61129078545343], + [18.247909783611192, -32.42913136162457], + [18.22176150887148, -31.66163298922567], + [17.56691775886887, -30.725721123987547], + [17.064416131262703, -29.878641045859162], + [17.062917514726223, -29.875953871379984], + [16.344976840895242, -28.5767050106977] + ], + [ + [28.978262566857243, -28.95559661226171], + [28.541700066855498, -28.64750172293757], + [28.074338413207784, -28.851468601193588], + [27.532511020627478, -29.24271087007536], + [26.999261915807637, -29.875953871379984], + [27.749397006956485, -30.645105889612225], + [28.107204624145425, -30.54573211031495], + [28.29106937023991, -30.2262167294543], + [28.84839969250774, -30.070050551068256], + [29.018415154748027, -29.74376555757737], + [29.32516645683259, -29.257386976846256], + [28.978262566857243, -28.95559661226171] + ] + ] + } + }, + { + "NAME": "Lesotho", + "CONTINENT": "Africa", + "POP_EST": 2125268, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [28.978262566857243, -28.95559661226171], + [29.32516645683259, -29.257386976846256], + [29.018415154748027, -29.74376555757737], + [28.84839969250774, -30.070050551068256], + [28.29106937023991, -30.2262167294543], + [28.107204624145425, -30.54573211031495], + [27.749397006956485, -30.645105889612225], + [26.999261915807637, -29.875953871379984], + [27.532511020627478, -29.24271087007536], + [28.074338413207784, -28.851468601193588], + [28.541700066855498, -28.64750172293757], + [28.978262566857243, -28.95559661226171] + ] + ] + } + }, + { + "NAME": "Zimbabwe", + "CONTINENT": "Africa", + "POP_EST": 14645468, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [31.19140913262129, -22.2515096981724], + [30.65986535006709, -22.151567478119915], + [30.322883335091774, -22.271611830333935], + [29.839036899542972, -22.102216485281176], + [29.43218834810904, -22.091312758067588], + [28.794656202924216, -21.63945403410745], + [28.021370070108617, -21.485975030200585], + [27.72722781750326, -20.851801853114715], + [27.724747348753255, -20.49905852629039], + [27.296504754350508, -20.391519870691], + [26.164790887158485, -19.29308562589494], + [25.85039147309473, -18.714412937090536], + [25.649163445750162, -18.53602589281899], + [25.264225701608012, -17.736539808831417], + [26.381935255648926, -17.8460421688579], + [26.70677330903564, -17.961228936436484], + [27.044427117630732, -17.938026218337434], + [27.59824344250276, -17.290830580314008], + [28.467906121542683, -16.468400160388846], + [28.8258687680285, -16.389748630440614], + [28.947463413211267, -16.04305144619444], + [29.516834344203147, -15.644677829656388], + [30.27425581230511, -15.507786960515213], + [30.338954705534544, -15.880839125230246], + [31.17306399915768, -15.860943698797874], + [31.636498243951195, -16.071990248277885], + [31.8520406430406, -16.319417006091378], + [32.32823896661023, -16.392074069893752], + [32.847638787575846, -16.713398125884616], + [32.84986087416439, -17.97905730557718], + [32.65488569512715, -18.672089939043495], + [32.61199425632489, -19.419382826416275], + [32.772707960752626, -19.715592136313298], + [32.65974327976258, -20.304290052982317], + [32.50869306817344, -20.395292250248307], + [32.244988234188014, -21.116488539313693], + [31.19140913262129, -22.2515096981724] + ] + ] + } + }, + { + "NAME": "Botswana", + "CONTINENT": "Africa", + "POP_EST": 2303697, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [29.43218834810904, -22.091312758067588], + [28.01723595552525, -22.82775359465908], + [27.119409620886245, -23.574323011979775], + [26.786406691197413, -24.240690606383485], + [26.4857532081233, -24.616326592713104], + [25.94165205252216, -24.69637338633322], + [25.76584882986521, -25.17484547292368], + [25.66466637543772, -25.486816094669713], + [25.025170525825786, -25.7196700985769], + [24.211266717228796, -25.670215752873574], + [23.73356977712271, -25.390129489851617], + [23.312096795350186, -25.26868987396572], + [22.8242712745149, -25.50045867279477], + [22.57953169118059, -25.979447523708146], + [22.105968865657868, -26.280256036079138], + [21.605896030369394, -26.726533705351756], + [20.88960900237174, -26.828542982695915], + [20.66647016773544, -26.477453301704923], + [20.75860924651184, -25.86813648855145], + [20.16572553882719, -24.91796192800077], + [19.895767856534434, -24.76779021576059], + [19.89545779794068, -21.84915699634787], + [20.88113406747587, -21.814327080983148], + [20.910641310314535, -18.252218926672022], + [21.655040317478978, -18.219146010005225], + [23.1968583513393, -17.869038181227786], + [23.579005568137717, -18.28126108162006], + [24.217364536239213, -17.88934701911849], + [24.520705193792537, -17.887124932529936], + [25.08444339366457, -17.661815687737374], + [25.264225701608012, -17.736539808831417], + [25.649163445750162, -18.53602589281899], + [25.85039147309473, -18.714412937090536], + [26.164790887158485, -19.29308562589494], + [27.296504754350508, -20.391519870691], + [27.724747348753255, -20.49905852629039], + [27.72722781750326, -20.851801853114715], + [28.021370070108617, -21.485975030200585], + [28.794656202924216, -21.63945403410745], + [29.43218834810904, -22.091312758067588] + ] + ] + } + }, + { + "NAME": "Namibia", + "CONTINENT": "Africa", + "POP_EST": 2494530, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [19.895767856534434, -24.76779021576059], + [19.894734327888614, -28.461104831660776], + [19.002127312911085, -28.972443129188868], + [18.464899122804752, -29.04546192801728], + [17.83615197110953, -28.85637786226132], + [17.387497185951503, -28.78351409272978], + [17.218928663815404, -28.35594329194681], + [16.824017368240902, -28.08216155366447], + [16.344976840895242, -28.5767050106977], + [15.601818068105816, -27.821247247022804], + [15.21047244635946, -27.090955905874047], + [14.989710727608553, -26.117371921495156], + [14.743214145576331, -25.39292001719538], + [14.408144158595833, -23.853014011329847], + [14.385716586981149, -22.65665292734069], + [14.257714064194175, -22.111208184499958], + [13.86864220546866, -21.699036960539978], + [13.35249799973744, -20.872834161057504], + [12.826845330464494, -19.673165785401665], + [12.608564080463621, -19.0453488094877], + [11.794918654028066, -18.069129327061916], + [11.734198846085121, -17.301889336824473], + [12.215461460019355, -17.111668389558083], + [12.814081251688407, -16.94134286872407], + [13.462362094789967, -16.971211846588773], + [14.05850141770901, -17.423380629142663], + [14.209706658595024, -17.35310068122572], + [18.263309360434164, -17.309950860262006], + [18.956186964603603, -17.789094740472258], + [21.377176141045567, -17.930636488519696], + [23.215048455506064, -17.523116143465984], + [24.033861525170778, -17.295843194246324], + [24.682349074001507, -17.353410739819473], + [25.07695031098226, -17.57882333747662], + [25.08444339366457, -17.661815687737374], + [24.520705193792537, -17.887124932529936], + [24.217364536239213, -17.88934701911849], + [23.579005568137717, -18.28126108162006], + [23.1968583513393, -17.869038181227786], + [21.655040317478978, -18.219146010005225], + [20.910641310314535, -18.252218926672022], + [20.88113406747587, -21.814327080983148], + [19.89545779794068, -21.84915699634787], + [19.895767856534434, -24.76779021576059] + ] + ] + } + }, + { + "NAME": "Senegal", + "CONTINENT": "Africa", + "POP_EST": 16296364, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-16.71372880702347, 13.594958604379855], + [-17.126106736712615, 14.373515733289224], + [-17.62504269049066, 14.729540513564073], + [-17.18517289882223, 14.919477240452862], + [-16.700706346085923, 15.621527411354108], + [-16.463098110407884, 16.13503611903846], + [-16.12069007004193, 16.455662543193384], + [-15.623666144258692, 16.369337063049812], + [-15.135737270558819, 16.587282416240782], + [-14.577347581428981, 16.59826365810281], + [-14.099521450242179, 16.304302273010492], + [-13.435737677453062, 16.03938304286619], + [-12.830658331747516, 15.303691514542948], + [-12.170750291380301, 14.616834214735505], + [-12.12488745772126, 13.994727484589788], + [-11.927716030311615, 13.422075100147396], + [-11.55339779300543, 13.141213690641067], + [-11.467899135778524, 12.754518947800975], + [-11.51394283695059, 12.442987575729418], + [-11.658300950557932, 12.386582749882836], + [-12.203564825885634, 12.465647691289405], + [-12.27859900557344, 12.354440008997287], + [-12.499050665730564, 12.332089952031057], + [-13.217818162478238, 12.575873521367967], + [-13.700476040084325, 12.586182969610194], + [-15.54847693527401, 12.628170070847347], + [-15.816574266004254, 12.515567124883347], + [-16.147716844130585, 12.547761542201187], + [-16.677451951554573, 12.384851589401052], + [-16.841524624081273, 13.15139394780256], + [-15.931295945692211, 13.130284125211332], + [-15.691000535534995, 13.270353094938457], + [-15.511812506562933, 13.278569647672867], + [-15.141163295949468, 13.509511623585238], + [-14.712197231494628, 13.298206691943777], + [-14.277701788784555, 13.280585028532244], + [-13.844963344772408, 13.505041612192002], + [-14.046992356817482, 13.79406789800045], + [-14.376713833055788, 13.625680243377374], + [-14.687030808968487, 13.630356960499784], + [-15.08173539881382, 13.876491807505985], + [-15.39877031092446, 13.86036876063092], + [-15.624596320039942, 13.62358734786956], + [-16.71372880702347, 13.594958604379855] + ] + ] + } + }, + { + "NAME": "Mali", + "CONTINENT": "Africa", + "POP_EST": 19658031, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-11.51394283695059, 12.442987575729418], + [-11.467899135778524, 12.754518947800975], + [-11.55339779300543, 13.141213690641067], + [-11.927716030311615, 13.422075100147396], + [-12.12488745772126, 13.994727484589788], + [-12.170750291380301, 14.616834214735505], + [-11.834207526079467, 14.79909699142894], + [-11.666078253617854, 15.388208319556298], + [-11.349095017939504, 15.411256008358478], + [-10.650791388379417, 15.132745876521426], + [-10.086846482778213, 15.330485744686271], + [-9.700255092802706, 15.264107367407362], + [-9.55023840985939, 15.486496893775438], + [-5.537744309908447, 15.501689764869257], + [-5.315277268891933, 16.20185374599184], + [-5.488522508150439, 16.325102037007966], + [-5.9711287093242476, 20.64083344164763], + [-6.453786586930335, 24.956590684503425], + [-4.923337368174231, 24.974574082941], + [-1.5500548974576134, 22.792665920497384], + [1.8232275732590324, 20.610809434486043], + [2.06099083823392, 20.142233384679486], + [2.683588494486429, 19.856230170160117], + [3.1466610042539003, 19.693578599521445], + [3.158133172222705, 19.057364203360038], + [4.267419467800039, 19.155265204337], + [4.2702099951438015, 16.852227484601215], + [3.7234216650634835, 16.184283759012615], + [3.6382589046464773, 15.568119818580456], + [2.749992709981484, 15.409524847876696], + [1.3855281917468576, 15.323561102759172], + [1.0157833186984817, 14.96818227788799], + [0.3748922054146817, 14.92890818934613], + [-0.2662572900305804, 14.924308986872148], + [-0.5158544580003479, 15.116157741755728], + [-1.0663634912056636, 14.973815009007765], + [-2.001035122068771, 14.559008287000893], + [-2.1918245100903846, 14.246417548067356], + [-2.9676944645205765, 13.79815033615151], + [-3.1037068343127596, 13.541266791228594], + [-3.522802700199861, 13.337661647998615], + [-4.006390753587226, 13.472485459848116], + [-4.28040503581488, 13.228443508349741], + [-4.427166103523803, 12.542645575404295], + [-5.220941941743121, 11.713858954307227], + [-5.1978425765086484, 11.37514577885014], + [-5.470564947929006, 10.951269842976048], + [-5.404341599946974, 10.370736802609146], + [-5.816926235365287, 10.222554633012194], + [-6.050452032892267, 10.096360785355444], + [-6.205222947606431, 10.524060777219134], + [-6.493965013037268, 10.411302801958271], + [-6.666460944027548, 10.430810655148449], + [-6.8505065576350574, 10.138993841996239], + [-7.622759161804809, 10.147236232946796], + [-7.899589809592372, 10.297382106970828], + [-8.029943610048619, 10.206534939001713], + [-8.33537716310974, 10.494811916541934], + [-8.282357143578281, 10.792597357623846], + [-8.407310756860028, 10.909256903522762], + [-8.620321010767128, 10.810890814655183], + [-8.581305304386774, 11.136245632364805], + [-8.376304897484914, 11.393645941610629], + [-8.786099005559464, 11.812560939984706], + [-8.90526485842453, 12.088358059126437], + [-9.127473517279583, 12.308060411015333], + [-9.327616339546012, 12.334286200403454], + [-9.567911749703214, 12.194243068892476], + [-9.890992804392013, 12.060478623904972], + [-10.165213792348837, 11.844083563682744], + [-10.593223842806282, 11.92397532800598], + [-10.870829637078215, 12.17788747807211], + [-11.03655595543826, 12.211244615116515], + [-11.297573614944511, 12.077971096235771], + [-11.456168585648271, 12.076834214725338], + [-11.51394283695059, 12.442987575729418] + ] + ] + } + }, + { + "NAME": "Mauritania", + "CONTINENT": "Africa", + "POP_EST": 4525696, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-17.06342322434257, 20.999752102130827], + [-16.845193650773993, 21.33332347257488], + [-12.929101935263532, 21.327070624267563], + [-13.118754441774712, 22.771220201096256], + [-12.874221564169575, 23.284832261645178], + [-11.937224493853321, 23.374594224536168], + [-11.96941891117116, 25.933352769468268], + [-8.6872936670174, 25.881056219988906], + [-8.684399786809053, 27.395744126896005], + [-4.923337368174231, 24.974574082941], + [-6.453786586930335, 24.956590684503425], + [-5.9711287093242476, 20.64083344164763], + [-5.488522508150439, 16.325102037007966], + [-5.315277268891933, 16.20185374599184], + [-5.537744309908447, 15.501689764869257], + [-9.55023840985939, 15.486496893775438], + [-9.700255092802706, 15.264107367407362], + [-10.086846482778213, 15.330485744686271], + [-10.650791388379417, 15.132745876521426], + [-11.349095017939504, 15.411256008358478], + [-11.666078253617854, 15.388208319556298], + [-11.834207526079467, 14.79909699142894], + [-12.170750291380301, 14.616834214735505], + [-12.830658331747516, 15.303691514542948], + [-13.435737677453062, 16.03938304286619], + [-14.099521450242179, 16.304302273010492], + [-14.577347581428981, 16.59826365810281], + [-15.135737270558819, 16.587282416240782], + [-15.623666144258692, 16.369337063049812], + [-16.12069007004193, 16.455662543193384], + [-16.463098110407884, 16.13503611903846], + [-16.549707810929064, 16.673892116761962], + [-16.270551723688357, 17.166962795474873], + [-16.14634741867485, 18.108481553616656], + [-16.256883307347167, 19.096715806550307], + [-16.37765112961327, 19.593817246981985], + [-16.277838100641517, 20.0925206568147], + [-16.536323614965468, 20.567866319251493], + [-17.06342322434257, 20.999752102130827] + ] + ] + } + }, + { + "NAME": "Benin", + "CONTINENT": "Africa", + "POP_EST": 11801151, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.6917016943562544, 6.258817246928629], + [1.8652405127123188, 6.142157701029731], + [1.618950636409238, 6.832038072126238], + [1.664477573258381, 9.12859039960938], + [1.46304284018467, 9.334624335157088], + [1.425060662450136, 9.825395412633], + [1.0777950374487375, 10.175606594275024], + [0.7723356461714843, 10.470808213742359], + [0.8995630224740694, 10.99733938236426], + [1.2434696793764886, 11.110510769083461], + [1.4471781754710662, 11.547719224488858], + [1.9359855485198807, 11.641150214072553], + [2.1544735042499212, 11.940150051313339], + [2.49016360841793, 12.233052069543675], + [2.8486430192265857, 12.23563589115821], + [3.611180454125559, 11.660167141155968], + [3.572216424177469, 11.32793935795152], + [3.7971122575117136, 10.734745591673105], + [3.600070021182802, 10.332186184119408], + [3.7054382666259187, 10.063210354040208], + [3.2203515967021015, 9.444152533399702], + [2.912308383810256, 9.137607937044322], + [2.723792758809509, 8.50684540448971], + [2.7490625342002204, 7.870734361192888], + [2.6917016943562544, 6.258817246928629] + ] + ] + } + }, + { + "NAME": "Niger", + "CONTINENT": "Africa", + "POP_EST": 23310715, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [14.851300000000037, 22.862950000000126], + [15.096887648181848, 21.30851878507491], + [15.47106000000008, 21.04845000000006], + [15.487148064850146, 20.730414537025638], + [15.903246697664315, 20.387618923417506], + [15.685740594147774, 19.957180080642388], + [15.30044111497972, 17.927949937405003], + [15.247731154041844, 16.627305813050782], + [13.972170000000006, 15.684370000000058], + [13.540393507550789, 14.367133693901224], + [13.956698846094127, 13.996691189016929], + [13.95447675950561, 13.353448798063766], + [14.595781284247607, 13.33042694747786], + [14.495787387762846, 12.85939626713733], + [14.213530714584635, 12.802035427293347], + [14.181336297266794, 12.483656927943116], + [13.995352817448293, 12.461565253138303], + [13.318701613018561, 13.556356309457826], + [13.083987257548813, 13.596147162322495], + [12.302071160540523, 13.037189032437524], + [11.527803175511394, 13.328980007373588], + [10.989593133191534, 13.387322699431195], + [10.701031935273706, 13.246917832894084], + [10.114814487354693, 13.27725189864941], + [9.524928012742947, 12.851102199754479], + [9.014933302454438, 12.826659247280418], + [7.804671258178786, 13.343526923063747], + [7.330746697630019, 13.0980380314612], + [6.820441928747754, 13.115091254117518], + [6.445426059605637, 13.492768459522678], + [5.443058302440136, 13.865923977102227], + [4.368343540066007, 13.747481594289411], + [4.107945997747322, 13.531215725147831], + [3.9672827490488487, 12.956108710171575], + [3.6806335791258107, 12.552903347214226], + [3.611180454125559, 11.660167141155968], + [2.8486430192265857, 12.23563589115821], + [2.49016360841793, 12.233052069543675], + [2.1544735042499212, 11.940150051313339], + [2.177107781593776, 12.625017808477535], + [1.0241032242974768, 12.851825669806574], + [0.9930456884900708, 13.335749620003824], + [0.429927605805517, 13.988733018443924], + [0.29564639649510127, 14.444234930880654], + [0.3748922054146817, 14.92890818934613], + [1.0157833186984817, 14.96818227788799], + [1.3855281917468576, 15.323561102759172], + [2.749992709981484, 15.409524847876696], + [3.6382589046464773, 15.568119818580456], + [3.7234216650634835, 16.184283759012615], + [4.2702099951438015, 16.852227484601215], + [4.267419467800039, 19.155265204337], + [5.677565952180686, 19.601206976799716], + [8.572893100629784, 21.565660712159143], + [11.999505649471613, 23.47166840259645], + [13.581424594790462, 23.04050608976928], + [14.143870883855243, 22.491288967371133], + [14.851300000000037, 22.862950000000126] + ] + ] + } + }, + { + "NAME": "Nigeria", + "CONTINENT": "Africa", + "POP_EST": 200963599, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.6917016943562544, 6.258817246928629], + [2.7490625342002204, 7.870734361192888], + [2.723792758809509, 8.50684540448971], + [2.912308383810256, 9.137607937044322], + [3.2203515967021015, 9.444152533399702], + [3.7054382666259187, 10.063210354040208], + [3.600070021182802, 10.332186184119408], + [3.7971122575117136, 10.734745591673105], + [3.572216424177469, 11.32793935795152], + [3.611180454125559, 11.660167141155968], + [3.6806335791258107, 12.552903347214226], + [3.9672827490488487, 12.956108710171575], + [4.107945997747322, 13.531215725147831], + [4.368343540066007, 13.747481594289411], + [5.443058302440136, 13.865923977102227], + [6.445426059605637, 13.492768459522678], + [6.820441928747754, 13.115091254117518], + [7.330746697630019, 13.0980380314612], + [7.804671258178786, 13.343526923063747], + [9.014933302454438, 12.826659247280418], + [9.524928012742947, 12.851102199754479], + [10.114814487354693, 13.27725189864941], + [10.701031935273706, 13.246917832894084], + [10.989593133191534, 13.387322699431195], + [11.527803175511394, 13.328980007373588], + [12.302071160540523, 13.037189032437524], + [13.083987257548813, 13.596147162322495], + [13.318701613018561, 13.556356309457826], + [13.995352817448293, 12.461565253138303], + [14.181336297266794, 12.483656927943116], + [14.577177768622533, 12.085360826053503], + [14.468192172918975, 11.904751695193411], + [14.415378859116684, 11.572368882692075], + [13.572949659894562, 10.798565985553566], + [13.308676385153918, 10.160362046748928], + [13.167599724997103, 9.640626328973411], + [12.955467970438974, 9.417771714714704], + [12.753671502339216, 8.717762762888995], + [12.218872104550599, 8.305824082874324], + [12.063946160539558, 7.799808457872302], + [11.839308709366803, 7.397042344589437], + [11.74577436691851, 6.981382961449754], + [11.058787876030351, 6.6444267846905944], + [10.497375115611419, 7.0553577742755635], + [10.118276808318257, 7.03876963950988], + [9.522705926154401, 6.453482367372117], + [9.233162876023044, 6.444490668153335], + [8.757532993208628, 5.479665839047911], + [8.500287713259695, 4.7719829370268485], + [7.462108188515941, 4.412108262546241], + [7.0825964697644395, 4.4646890324032285], + [6.6980721370806, 4.240594183769517], + [5.898172641634687, 4.262453314628985], + [5.3628048030908815, 4.887970689305959], + [5.033574252959369, 5.611802476418234], + [4.325607130560684, 6.2706511499234665], + [3.574180128604553, 6.258300482605719], + [2.6917016943562544, 6.258817246928629] + ] + ] + } + }, + { + "NAME": "Cameroon", + "CONTINENT": "Africa", + "POP_EST": 25876380, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [14.495787387762846, 12.85939626713733], + [14.89336000000003, 12.219049999999982], + [14.9601518083376, 11.555574042197224], + [14.92356489427496, 10.891325181517473], + [15.467872755605242, 9.982336737503545], + [14.909353875394716, 9.992129421422732], + [14.62720055508106, 9.920919297724538], + [14.171466098699028, 10.021378282099931], + [13.954218377344006, 9.549494940626687], + [14.54446658698177, 8.965861314322268], + [14.97999555833769, 8.796104234243472], + [15.120865512765306, 8.382150173369439], + [15.436091749745742, 7.692812404811889], + [15.279460483469109, 7.421924546737969], + [14.776545444404576, 6.408498033062045], + [14.536560092841114, 6.2269587264206905], + [14.459407179429348, 5.4517605656103], + [14.558935988023507, 5.03059764243153], + [14.47837243008047, 4.732605495620447], + [14.950953403389661, 4.210389309094921], + [15.036219516671252, 3.8513672957471243], + [15.405395948964383, 3.33530060466434], + [15.862732374747482, 3.0135372989989833], + [15.907380812247652, 2.557389431158612], + [16.012852410555354, 2.267639675298085], + [15.940918816805066, 1.7276726342802957], + [15.146341993885244, 1.9640147973671844], + [14.33781253424658, 2.2278746606494906], + [13.075822381246752, 2.2670970727590145], + [12.951333855855609, 2.32161570882694], + [12.359380323952221, 2.19281220133945], + [11.75166548019979, 2.3267575138399934], + [11.276449008843713, 2.261050930180872], + [9.649158155972628, 2.2838660750377358], + [9.795195753629457, 3.073404445809117], + [9.404366896206, 3.734526882335203], + [8.948115675501072, 3.9041289331171356], + [8.744923943729418, 4.35221527751996], + [8.48881554529089, 4.495617377129918], + [8.500287713259695, 4.7719829370268485], + [8.757532993208628, 5.479665839047911], + [9.233162876023044, 6.444490668153335], + [9.522705926154401, 6.453482367372117], + [10.118276808318257, 7.03876963950988], + [10.497375115611419, 7.0553577742755635], + [11.058787876030351, 6.6444267846905944], + [11.74577436691851, 6.981382961449754], + [11.839308709366803, 7.397042344589437], + [12.063946160539558, 7.799808457872302], + [12.218872104550599, 8.305824082874324], + [12.753671502339216, 8.717762762888995], + [12.955467970438974, 9.417771714714704], + [13.167599724997103, 9.640626328973411], + [13.308676385153918, 10.160362046748928], + [13.572949659894562, 10.798565985553566], + [14.415378859116684, 11.572368882692075], + [14.468192172918975, 11.904751695193411], + [14.577177768622533, 12.085360826053503], + [14.181336297266794, 12.483656927943116], + [14.213530714584635, 12.802035427293347], + [14.495787387762846, 12.85939626713733] + ] + ] + } + }, + { + "NAME": "Togo", + "CONTINENT": "Africa", + "POP_EST": 8082366, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [0.8995630224740694, 10.99733938236426], + [0.7723356461714843, 10.470808213742359], + [1.0777950374487375, 10.175606594275024], + [1.425060662450136, 9.825395412633], + [1.46304284018467, 9.334624335157088], + [1.664477573258381, 9.12859039960938], + [1.618950636409238, 6.832038072126238], + [1.8652405127123188, 6.142157701029731], + [1.0601216976049272, 5.928837388528876], + [0.8369311865363329, 6.279978745952149], + [0.5703841487748491, 6.914358628767189], + [0.4909574723422451, 7.411744289576475], + [0.7120292496868785, 8.31246450442383], + [0.46119184734212126, 8.677222601756014], + [0.3659005061958851, 9.465003973829482], + [0.3675799902453889, 10.19121287682718], + [-0.04978471515994442, 10.706917832883931], + [0.023802524423700785, 11.018681748900804], + [0.8995630224740694, 10.99733938236426] + ] + ] + } + }, + { + "NAME": "Ghana", + "CONTINENT": "Africa", + "POP_EST": 30417856, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [0.023802524423700785, 11.018681748900804], + [-0.04978471515994442, 10.706917832883931], + [0.3675799902453889, 10.19121287682718], + [0.3659005061958851, 9.465003973829482], + [0.46119184734212126, 8.677222601756014], + [0.7120292496868785, 8.31246450442383], + [0.4909574723422451, 7.411744289576475], + [0.5703841487748491, 6.914358628767189], + [0.8369311865363329, 6.279978745952149], + [1.0601216976049272, 5.928837388528876], + [-0.5076379052659377, 5.3434726017426755], + [-1.0636246402941936, 5.000547797053812], + [-1.9647065901675944, 4.710462144383371], + [-2.856125047202397, 4.994475816259509], + [-2.8107014632178395, 5.38905121502411], + [-3.244370083011262, 6.250471503113502], + [-2.9835849674503265, 7.379704901555513], + [-2.562189500326241, 8.219627793811483], + [-2.8274963037127065, 9.642460842319778], + [-2.9638962467471117, 10.395334784380083], + [-2.9404093082704605, 10.962690334512558], + [-1.2033577132114317, 11.009819240762738], + [-0.7615758935481834, 10.936929633015055], + [-0.43870154458858224, 11.098340969278722], + [0.023802524423700785, 11.018681748900804] + ] + ] + } + }, + { + "NAME": "Côte d'Ivoire", + "CONTINENT": "Africa", + "POP_EST": 25716544, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-8.029943610048619, 10.206534939001713], + [-7.899589809592372, 10.297382106970828], + [-7.622759161804809, 10.147236232946796], + [-6.8505065576350574, 10.138993841996239], + [-6.666460944027548, 10.430810655148449], + [-6.493965013037268, 10.411302801958271], + [-6.205222947606431, 10.524060777219134], + [-6.050452032892267, 10.096360785355444], + [-5.816926235365287, 10.222554633012194], + [-5.404341599946974, 10.370736802609146], + [-4.954653286143099, 10.152713934769736], + [-4.7798835921319665, 9.821984768101743], + [-4.3302469547603835, 9.610834865757141], + [-3.9804491845766847, 9.8623440617217], + [-3.511898972986273, 9.90032623945622], + [-2.8274963037127065, 9.642460842319778], + [-2.562189500326241, 8.219627793811483], + [-2.9835849674503265, 7.379704901555513], + [-3.244370083011262, 6.250471503113502], + [-2.8107014632178395, 5.38905121502411], + [-2.856125047202397, 4.994475816259509], + [-3.3110843571000714, 4.984295559098015], + [-4.008819545904942, 5.179813340674315], + [-4.649917364917911, 5.168263658057086], + [-5.8344962223445265, 4.993700669775137], + [-6.528769090185847, 4.705087795425015], + [-7.5189412093304355, 4.338288479017308], + [-7.7121593896697505, 4.364565944837722], + [-7.635368211284031, 5.188159084489456], + [-7.539715135111763, 5.313345241716519], + [-7.570152553731688, 5.707352199725904], + [-7.993692592795881, 6.126189683451543], + [-8.311347622094019, 6.193033148621083], + [-8.60288021486862, 6.4675641951716605], + [-8.385451626000574, 6.911800645368743], + [-8.48544552248535, 7.39520783124307], + [-8.439298468448698, 7.686042792181738], + [-8.280703497744938, 7.687179673692157], + [-8.221792364932199, 8.123328762235573], + [-8.299048631208564, 8.316443589710303], + [-8.20349890790088, 8.455453192575447], + [-7.832100389019188, 8.575704250518626], + [-8.07911373537435, 9.376223863152035], + [-8.30961646161225, 9.789531968622441], + [-8.229337124046822, 10.1290202905639], + [-8.029943610048619, 10.206534939001713] + ] + ] + } + }, + { + "NAME": "Guinea", + "CONTINENT": "Africa", + "POP_EST": 12771246, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-13.700476040084325, 12.586182969610194], + [-13.217818162478238, 12.575873521367967], + [-12.499050665730564, 12.332089952031057], + [-12.27859900557344, 12.354440008997287], + [-12.203564825885634, 12.465647691289405], + [-11.658300950557932, 12.386582749882836], + [-11.51394283695059, 12.442987575729418], + [-11.456168585648271, 12.076834214725338], + [-11.297573614944511, 12.077971096235771], + [-11.03655595543826, 12.211244615116515], + [-10.870829637078215, 12.17788747807211], + [-10.593223842806282, 11.92397532800598], + [-10.165213792348837, 11.844083563682744], + [-9.890992804392013, 12.060478623904972], + [-9.567911749703214, 12.194243068892476], + [-9.327616339546012, 12.334286200403454], + [-9.127473517279583, 12.308060411015333], + [-8.90526485842453, 12.088358059126437], + [-8.786099005559464, 11.812560939984706], + [-8.376304897484914, 11.393645941610629], + [-8.581305304386774, 11.136245632364805], + [-8.620321010767128, 10.810890814655183], + [-8.407310756860028, 10.909256903522762], + [-8.282357143578281, 10.792597357623846], + [-8.33537716310974, 10.494811916541934], + [-8.029943610048619, 10.206534939001713], + [-8.229337124046822, 10.1290202905639], + [-8.30961646161225, 9.789531968622441], + [-8.07911373537435, 9.376223863152035], + [-7.832100389019188, 8.575704250518626], + [-8.20349890790088, 8.455453192575447], + [-8.299048631208564, 8.316443589710303], + [-8.221792364932199, 8.123328762235573], + [-8.280703497744938, 7.687179673692157], + [-8.439298468448698, 7.686042792181738], + [-8.722123582382125, 7.71167430259851], + [-8.926064622422004, 7.309037380396376], + [-9.208786383490846, 7.313920803247953], + [-9.40334815106975, 7.526905218938907], + [-9.337279832384581, 7.9285344507113535], + [-9.755342169625834, 8.541055202666925], + [-10.016566534861255, 8.428503933135232], + [-10.23009355309128, 8.406205552601293], + [-10.505477260774668, 8.348896389189605], + [-10.494315151399633, 8.715540676300435], + [-10.654770473665891, 8.977178452994195], + [-10.622395188835041, 9.267910061068278], + [-10.839151984083301, 9.688246161330369], + [-11.11748124840733, 10.045872911006285], + [-11.917277390988659, 10.046983954300558], + [-12.150338100625005, 9.858571682164381], + [-12.425928514037565, 9.835834051955956], + [-12.59671912276221, 9.62018830000197], + [-12.71195756677308, 9.342711696810767], + [-13.246550258832515, 8.903048610871508], + [-13.685153977909792, 9.49474376061346], + [-14.074044969122282, 9.886166897008252], + [-14.33007585291237, 10.015719712763968], + [-14.579698859098258, 10.214467271358515], + [-14.693231980843505, 10.656300767454042], + [-14.839553798877944, 10.87657156009814], + [-15.130311245168173, 11.040411688679526], + [-14.685687221728898, 11.527823798056488], + [-14.382191534878729, 11.509271958863692], + [-14.121406419317779, 11.677117010947697], + [-13.900799729863776, 11.678718980348748], + [-13.743160773157413, 11.811269029177412], + [-13.828271857142125, 12.142644151249044], + [-13.718743658899513, 12.24718557377551], + [-13.700476040084325, 12.586182969610194] + ] + ] + } + }, + { + "NAME": "Guinea-Bissau", + "CONTINENT": "Africa", + "POP_EST": 1920922, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-16.677451951554573, 12.384851589401052], + [-16.147716844130585, 12.547761542201187], + [-15.816574266004254, 12.515567124883347], + [-15.54847693527401, 12.628170070847347], + [-13.700476040084325, 12.586182969610194], + [-13.718743658899513, 12.24718557377551], + [-13.828271857142125, 12.142644151249044], + [-13.743160773157413, 11.811269029177412], + [-13.900799729863776, 11.678718980348748], + [-14.121406419317779, 11.677117010947697], + [-14.382191534878729, 11.509271958863692], + [-14.685687221728898, 11.527823798056488], + [-15.130311245168173, 11.040411688679526], + [-15.664180467175527, 11.458474025920795], + [-16.085214199273565, 11.52459402103824], + [-16.314786749730203, 11.80651479740655], + [-16.30894731288123, 11.95870189050612], + [-16.61383826340328, 12.170911159712702], + [-16.677451951554573, 12.384851589401052] + ] + ] + } + }, + { + "NAME": "Liberia", + "CONTINENT": "Africa", + "POP_EST": 4937374, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-8.439298468448698, 7.686042792181738], + [-8.48544552248535, 7.39520783124307], + [-8.385451626000574, 6.911800645368743], + [-8.60288021486862, 6.4675641951716605], + [-8.311347622094019, 6.193033148621083], + [-7.993692592795881, 6.126189683451543], + [-7.570152553731688, 5.707352199725904], + [-7.539715135111763, 5.313345241716519], + [-7.635368211284031, 5.188159084489456], + [-7.7121593896697505, 4.364565944837722], + [-7.974107224957251, 4.355755113131963], + [-9.004793667018674, 4.8324185245922], + [-9.913420376006684, 5.593560695819207], + [-10.765383876986645, 6.140710760925558], + [-11.438779466182055, 6.7859168563057475], + [-11.19980180504828, 7.1058456486247366], + [-11.146704270868383, 7.396706447779536], + [-10.69559485517648, 7.939464016141088], + [-10.23009355309128, 8.406205552601293], + [-10.016566534861255, 8.428503933135232], + [-9.755342169625834, 8.541055202666925], + [-9.337279832384581, 7.9285344507113535], + [-9.40334815106975, 7.526905218938907], + [-9.208786383490846, 7.313920803247953], + [-8.926064622422004, 7.309037380396376], + [-8.722123582382125, 7.71167430259851], + [-8.439298468448698, 7.686042792181738] + ] + ] + } + }, + { + "NAME": "Sierra Leone", + "CONTINENT": "Africa", + "POP_EST": 7813215, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-13.246550258832515, 8.903048610871508], + [-12.71195756677308, 9.342711696810767], + [-12.59671912276221, 9.62018830000197], + [-12.425928514037565, 9.835834051955956], + [-12.150338100625005, 9.858571682164381], + [-11.917277390988659, 10.046983954300558], + [-11.11748124840733, 10.045872911006285], + [-10.839151984083301, 9.688246161330369], + [-10.622395188835041, 9.267910061068278], + [-10.654770473665891, 8.977178452994195], + [-10.494315151399633, 8.715540676300435], + [-10.505477260774668, 8.348896389189605], + [-10.23009355309128, 8.406205552601293], + [-10.69559485517648, 7.939464016141088], + [-11.146704270868383, 7.396706447779536], + [-11.19980180504828, 7.1058456486247366], + [-11.438779466182055, 6.7859168563057475], + [-11.70819454593574, 6.860098374860726], + [-12.428098924193819, 7.26294200279203], + [-12.949049038128194, 7.798645738145738], + [-13.124025437868482, 8.163946438016978], + [-13.246550258832515, 8.903048610871508] + ] + ] + } + }, + { + "NAME": "Burkina Faso", + "CONTINENT": "Africa", + "POP_EST": 20321378, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-5.404341599946974, 10.370736802609146], + [-5.470564947929006, 10.951269842976048], + [-5.1978425765086484, 11.37514577885014], + [-5.220941941743121, 11.713858954307227], + [-4.427166103523803, 12.542645575404295], + [-4.28040503581488, 13.228443508349741], + [-4.006390753587226, 13.472485459848116], + [-3.522802700199861, 13.337661647998615], + [-3.1037068343127596, 13.541266791228594], + [-2.9676944645205765, 13.79815033615151], + [-2.1918245100903846, 14.246417548067356], + [-2.001035122068771, 14.559008287000893], + [-1.0663634912056636, 14.973815009007765], + [-0.5158544580003479, 15.116157741755728], + [-0.2662572900305804, 14.924308986872148], + [0.3748922054146817, 14.92890818934613], + [0.29564639649510127, 14.444234930880654], + [0.429927605805517, 13.988733018443924], + [0.9930456884900708, 13.335749620003824], + [1.0241032242974768, 12.851825669806574], + [2.177107781593776, 12.625017808477535], + [2.1544735042499212, 11.940150051313339], + [1.9359855485198807, 11.641150214072553], + [1.4471781754710662, 11.547719224488858], + [1.2434696793764886, 11.110510769083461], + [0.8995630224740694, 10.99733938236426], + [0.023802524423700785, 11.018681748900804], + [-0.43870154458858224, 11.098340969278722], + [-0.7615758935481834, 10.936929633015055], + [-1.2033577132114317, 11.009819240762738], + [-2.9404093082704605, 10.962690334512558], + [-2.9638962467471117, 10.395334784380083], + [-2.8274963037127065, 9.642460842319778], + [-3.511898972986273, 9.90032623945622], + [-3.9804491845766847, 9.8623440617217], + [-4.3302469547603835, 9.610834865757141], + [-4.7798835921319665, 9.821984768101743], + [-4.954653286143099, 10.152713934769736], + [-5.404341599946974, 10.370736802609146] + ] + ] + } + }, + { + "NAME": "Central African Rep.", + "CONTINENT": "Africa", + "POP_EST": 4745185, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [27.37422610851749, 5.233944403500061], + [27.04406538260471, 5.127852688004836], + [26.402760857862543, 5.1508745385908705], + [25.650455356557472, 5.256087754737123], + [25.278798455514305, 5.170408229997192], + [25.12883344900328, 4.92724477784779], + [24.805028924262416, 4.89724660890235], + [24.410531040146253, 5.10878408448913], + [23.29721398285014, 4.609693101414223], + [22.841479526468106, 4.710126247573484], + [22.70412356943629, 4.633050848810157], + [22.405123732195538, 4.029160061047321], + [21.659122755630023, 4.22434194581372], + [20.927591180106276, 4.322785549329737], + [20.290679152108936, 4.691677761245288], + [19.46778364429315, 5.03152781821278], + [18.93231245288476, 4.709506130385975], + [18.54298221199778, 4.201785183118318], + [18.45306521980993, 3.5043858911233485], + [17.809900343505262, 3.5601964379985698], + [17.133042433346304, 3.728196519379452], + [16.537058139724138, 3.198254706226279], + [16.012852410555354, 2.267639675298085], + [15.907380812247652, 2.557389431158612], + [15.862732374747482, 3.0135372989989833], + [15.405395948964383, 3.33530060466434], + [15.036219516671252, 3.8513672957471243], + [14.950953403389661, 4.210389309094921], + [14.47837243008047, 4.732605495620447], + [14.558935988023507, 5.03059764243153], + [14.459407179429348, 5.4517605656103], + [14.536560092841114, 6.2269587264206905], + [14.776545444404576, 6.408498033062045], + [15.279460483469109, 7.421924546737969], + [16.106231723706742, 7.497087917506462], + [16.290561557691888, 7.754307359239419], + [16.456184523187346, 7.734773667832968], + [16.705988396886255, 7.5083275415299795], + [17.964929640380888, 7.890914008002994], + [18.38955488452322, 8.281303615751824], + [18.911021762780507, 8.630894680206353], + [18.812009718509273, 8.982914536978598], + [19.09400800952602, 9.07484691002584], + [20.05968549976427, 9.012706000194854], + [21.000868361096167, 9.475985215691509], + [21.723821648859456, 10.567055568885976], + [22.23112918466876, 10.97188873946061], + [22.864165480244225, 11.142395127807546], + [22.97754357269261, 10.71446259199854], + [23.554304233502194, 10.089255275915308], + [23.55724979014283, 9.681218166538684], + [23.394779087017184, 9.265067857292223], + [23.459012892355986, 8.954285793488893], + [23.805813429466752, 8.666318874542526], + [24.567369012152085, 8.229187933785468], + [25.11493248871679, 7.825104071479174], + [25.124130893664727, 7.500085150579437], + [25.79664798351118, 6.979315904158071], + [26.213418409945117, 6.546603298362072], + [26.465909458123235, 5.9467174341018705], + [27.21340905122517, 5.5509534773945575], + [27.37422610851749, 5.233944403500061] + ] + ] + } + }, + { + "NAME": "Congo", + "CONTINENT": "Africa", + "POP_EST": 5380508, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [18.45306521980993, 3.5043858911233485], + [18.393792351971143, 2.90044342692822], + [18.094275750407434, 2.365721543788055], + [17.898835483479587, 1.7418319767282782], + [17.774191928791566, 0.8556586775710854], + [17.826540154703252, 0.28892324462610475], + [17.66355268725468, -0.05808399821381727], + [17.638644646889986, -0.4248316381892465], + [17.523716261472856, -0.743830254726987], + [16.865306837642123, -1.2258163387132868], + [16.407091912510054, -1.7409270157986825], + [15.972803175529151, -2.7123922664536124], + [16.0062895036543, -3.535132744972529], + [15.753540073314753, -3.8551648901560966], + [15.170991652088444, -4.343507175314301], + [14.582603794013181, -4.97023894615014], + [14.209034864975223, -4.793092136253598], + [14.144956088933299, -4.510008640158716], + [13.600234816144678, -4.50013844159097], + [13.258240187237048, -4.882957452009165], + [12.995517205465177, -4.781103203961884], + [12.620759718484493, -4.438023369976136], + [12.318607618873926, -4.606230157086188], + [11.91496300624209, -5.037986748884791], + [11.093772820691925, -3.978826592630547], + [11.855121697648116, -3.4268706193210505], + [11.478038771214303, -2.7656189917142413], + [11.820963575903193, -2.514161472181982], + [12.495702752338161, -2.391688327650243], + [12.575284458067642, -1.948511244315135], + [13.109618767965628, -2.4287403296035137], + [13.99240726080771, -2.4708049454890997], + [14.299210239324566, -1.998275648612214], + [14.425455763413595, -1.333406670744971], + [14.316418491277744, -0.5526274552470483], + [13.843320753645656, 0.038757635901149], + [14.276265903386957, 1.1969298364266194], + [14.026668735417218, 1.3956773950211527], + [13.282631463278818, 1.3141836612968805], + [13.003113641012078, 1.8308963077833198], + [13.075822381246752, 2.2670970727590145], + [14.33781253424658, 2.2278746606494906], + [15.146341993885244, 1.9640147973671844], + [15.940918816805066, 1.7276726342802957], + [16.012852410555354, 2.267639675298085], + [16.537058139724138, 3.198254706226279], + [17.133042433346304, 3.728196519379452], + [17.809900343505262, 3.5601964379985698], + [18.45306521980993, 3.5043858911233485] + ] + ] + } + }, + { + "NAME": "Gabon", + "CONTINENT": "Africa", + "POP_EST": 2172579, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [11.276449008843713, 2.261050930180872], + [11.75166548019979, 2.3267575138399934], + [12.359380323952221, 2.19281220133945], + [12.951333855855609, 2.32161570882694], + [13.075822381246752, 2.2670970727590145], + [13.003113641012078, 1.8308963077833198], + [13.282631463278818, 1.3141836612968805], + [14.026668735417218, 1.3956773950211527], + [14.276265903386957, 1.1969298364266194], + [13.843320753645656, 0.038757635901149], + [14.316418491277744, -0.5526274552470483], + [14.425455763413595, -1.333406670744971], + [14.299210239324566, -1.998275648612214], + [13.99240726080771, -2.4708049454890997], + [13.109618767965628, -2.4287403296035137], + [12.575284458067642, -1.948511244315135], + [12.495702752338161, -2.391688327650243], + [11.820963575903193, -2.514161472181982], + [11.478038771214303, -2.7656189917142413], + [11.855121697648116, -3.4268706193210505], + [11.093772820691925, -3.978826592630547], + [10.06613528813574, -2.9694825171056816], + [9.40524539555497, -2.144313246269043], + [8.79799563969317, -1.111301364754496], + [8.830086704146424, -0.7790735815500369], + [9.048419630579588, -0.45935149496021666], + [9.29135053878369, 0.2686660831676875], + [9.492888624721985, 1.010119533691494], + [9.830284051155644, 1.0678937849937995], + [11.285078973036462, 1.0576618514000131], + [11.276449008843713, 2.261050930180872] + ] + ] + } + }, + { + "NAME": "Eq. Guinea", + "CONTINENT": "Africa", + "POP_EST": 1355986, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.649158155972628, 2.2838660750377358], + [11.276449008843713, 2.261050930180872], + [11.285078973036462, 1.0576618514000131], + [9.830284051155644, 1.0678937849937995], + [9.492888624721985, 1.010119533691494], + [9.305613234096256, 1.1609113631191832], + [9.649158155972628, 2.2838660750377358] + ] + ] + } + }, + { + "NAME": "Zambia", + "CONTINENT": "Africa", + "POP_EST": 17861030, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [30.740009731422095, -8.34000593035372], + [31.15775133695005, -8.594578747317366], + [31.556348097466497, -8.762048841998642], + [32.19186486179194, -8.930358981973257], + [32.75937544122132, -9.23059905358906], + [33.2313879737753, -9.6767216935648], + [33.48568769708359, -10.525558770391115], + [33.315310499817286, -10.796549981329697], + [33.114289178201915, -11.607198174692314], + [33.306422153463075, -12.435778090060218], + [32.991764357237884, -12.783870537978274], + [32.68816531752313, -13.712857761289277], + [33.214024692525214, -13.971860039936153], + [30.17948123548183, -14.796099134991529], + [30.27425581230511, -15.507786960515213], + [29.516834344203147, -15.644677829656388], + [28.947463413211267, -16.04305144619444], + [28.8258687680285, -16.389748630440614], + [28.467906121542683, -16.468400160388846], + [27.59824344250276, -17.290830580314008], + [27.044427117630732, -17.938026218337434], + [26.70677330903564, -17.961228936436484], + [26.381935255648926, -17.8460421688579], + [25.264225701608012, -17.736539808831417], + [25.08444339366457, -17.661815687737374], + [25.07695031098226, -17.57882333747662], + [24.682349074001507, -17.353410739819473], + [24.033861525170778, -17.295843194246324], + [23.215048455506064, -17.523116143465984], + [22.56247846852426, -16.898451429921813], + [21.887842644953874, -16.08031015387688], + [21.933886346125917, -12.898437188369359], + [24.016136508894675, -12.911046237848574], + [23.930922072045377, -12.565847670138856], + [24.079905226342845, -12.191296888887365], + [23.904153680118185, -11.722281589406322], + [24.01789350759259, -11.23729827234709], + [23.912215203555718, -10.926826267137514], + [24.25715538910399, -10.951992689663657], + [24.31451622894795, -11.26282642989927], + [24.78316979340295, -11.238693536018964], + [25.418118116973204, -11.330935967659961], + [25.752309604604733, -11.784965101776358], + [26.553087599399618, -11.924439792532127], + [27.164419793412463, -11.608748467661075], + [27.388798862423783, -12.132747491100666], + [28.155108676879987, -12.272480564017897], + [28.523561639121027, -12.698604424696683], + [28.934285922976837, -13.248958428605135], + [29.69961388521949, -13.257226657771831], + [29.61600141777123, -12.178894545137311], + [29.34154788586909, -12.360743910372413], + [28.642417433392353, -11.971568698782315], + [28.372253045370428, -11.793646742401393], + [28.49606977714177, -10.789883721564046], + [28.67368167492893, -9.605924981324932], + [28.449871046672826, -9.164918308146085], + [28.734866570762502, -8.526559340044578], + [29.00291222506047, -8.407031752153472], + [30.346086053190817, -8.238256524288218], + [30.740009731422095, -8.34000593035372] + ] + ] + } + }, + { + "NAME": "Malawi", + "CONTINENT": "Africa", + "POP_EST": 18628747, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [32.75937544122132, -9.23059905358906], + [33.73972000000009, -9.417149999999992], + [33.940837724096525, -9.693673841980285], + [34.27999999999997, -10.160000000000025], + [34.55998904799935, -11.520020033415925], + [34.28000613784198, -12.280025323132506], + [34.55998904799935, -13.579997653866876], + [34.907151320136165, -13.565424899960568], + [35.26795617039801, -13.887834161029566], + [35.68684533055594, -14.611045830954332], + [35.77190473810836, -15.896858819240727], + [35.339062941231646, -16.10744028083011], + [35.033810255683534, -16.801299737213093], + [34.38129194513405, -16.183559665596043], + [34.307291294092096, -15.478641452702597], + [34.51766604995231, -15.013708591372612], + [34.45963341648854, -14.613009535381423], + [34.064825473778626, -14.35995004644812], + [33.789700148256685, -14.45183074306307], + [33.214024692525214, -13.971860039936153], + [32.68816531752313, -13.712857761289277], + [32.991764357237884, -12.783870537978274], + [33.306422153463075, -12.435778090060218], + [33.114289178201915, -11.607198174692314], + [33.315310499817286, -10.796549981329697], + [33.48568769708359, -10.525558770391115], + [33.2313879737753, -9.6767216935648], + [32.75937544122132, -9.23059905358906] + ] + ] + } + }, + { + "NAME": "Mozambique", + "CONTINENT": "Africa", + "POP_EST": 30366036, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [34.55998904799935, -11.520020033415925], + [35.31239790216904, -11.439146416879147], + [36.51408165868426, -11.720938002166735], + [36.775150994622805, -11.594537448780805], + [37.471289999999954, -11.568759999999997], + [37.827639999999974, -11.26878999999991], + [38.42755659358775, -11.285202325081656], + [39.52099999999996, -10.89688000000001], + [40.31659000000002, -10.317099999999868], + [40.316586229110854, -10.317097752817492], + [40.31658857601719, -10.317096042525698], + [40.47838748552303, -10.765440769089993], + [40.437253045418686, -11.761710707245015], + [40.56081139502857, -12.639176527561027], + [40.59962039567975, -14.201975192931862], + [40.775475294768995, -14.691764418194241], + [40.4772506040126, -15.406294447493972], + [40.08926395036522, -16.10077402106446], + [39.45255862809705, -16.72089120856694], + [38.53835086442152, -17.101023044505958], + [37.41113284683888, -17.586368096591237], + [36.28127933120936, -18.65968759529345], + [35.89649661636406, -18.842260430580637], + [35.198399692533144, -19.552811374593894], + [34.78638349787005, -19.784011732667736], + [34.70189253107284, -20.49704314543101], + [35.176127150215365, -21.25436126066841], + [35.37342776870574, -21.840837090748877], + [35.385848253705404, -22.14], + [35.562545536369086, -22.090000000000003], + [35.533934767404304, -23.070787855727758], + [35.37177412287238, -23.5353589820317], + [35.60747033055563, -23.706563002214683], + [35.45874555841962, -24.12260995859655], + [35.04073489761066, -24.478350518493805], + [34.21582400893547, -24.81631438568266], + [33.01321007663901, -25.357573337507738], + [32.574632195777866, -25.727318210556092], + [32.66036339695009, -26.148584486599447], + [32.91595503106569, -26.215867201443466], + [32.830120477028885, -26.742191664336197], + [32.07166548028107, -26.73382008230491], + [31.98577924981197, -26.291779880480227], + [31.83777794772806, -25.84333180105135], + [31.75240848158188, -25.484283949487413], + [31.930588820124253, -24.36941659922254], + [31.670397983534656, -23.658969008073864], + [31.19140913262129, -22.2515096981724], + [32.244988234188014, -21.116488539313693], + [32.50869306817344, -20.395292250248307], + [32.65974327976258, -20.304290052982317], + [32.772707960752626, -19.715592136313298], + [32.61199425632489, -19.419382826416275], + [32.65488569512715, -18.672089939043495], + [32.84986087416439, -17.97905730557718], + [32.847638787575846, -16.713398125884616], + [32.32823896661023, -16.392074069893752], + [31.8520406430406, -16.319417006091378], + [31.636498243951195, -16.071990248277885], + [31.17306399915768, -15.860943698797874], + [30.338954705534544, -15.880839125230246], + [30.27425581230511, -15.507786960515213], + [30.17948123548183, -14.796099134991529], + [33.214024692525214, -13.971860039936153], + [33.789700148256685, -14.45183074306307], + [34.064825473778626, -14.35995004644812], + [34.45963341648854, -14.613009535381423], + [34.51766604995231, -15.013708591372612], + [34.307291294092096, -15.478641452702597], + [34.38129194513405, -16.183559665596043], + [35.033810255683534, -16.801299737213093], + [35.339062941231646, -16.10744028083011], + [35.77190473810836, -15.896858819240727], + [35.68684533055594, -14.611045830954332], + [35.26795617039801, -13.887834161029566], + [34.907151320136165, -13.565424899960568], + [34.55998904799935, -13.579997653866876], + [34.28000613784198, -12.280025323132506], + [34.55998904799935, -11.520020033415925] + ] + ] + } + }, + { + "NAME": "eSwatini", + "CONTINENT": "Africa", + "POP_EST": 1148130, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [32.07166548028107, -26.73382008230491], + [31.86806033705108, -27.177927341421277], + [31.28277306491333, -27.285879408478998], + [30.68596194837448, -26.743845310169533], + [30.67660851412964, -26.398078301704608], + [30.949666782359913, -26.02264902110415], + [31.04407962415715, -25.731452325139443], + [31.333157586397903, -25.66019052500895], + [31.83777794772806, -25.84333180105135], + [31.98577924981197, -26.291779880480227], + [32.07166548028107, -26.73382008230491] + ] + ] + } + }, + { + "NAME": "Angola", + "CONTINENT": "Africa", + "POP_EST": 31825295, + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [12.995517205465177, -4.781103203961884], + [12.63161176926579, -4.991271254092936], + [12.468004184629736, -5.248361504745005], + [12.436688266660868, -5.6843038875592455], + [12.182336866920252, -5.789930515163839], + [11.91496300624209, -5.037986748884791], + [12.318607618873926, -4.606230157086188], + [12.620759718484493, -4.438023369976136], + [12.995517205465177, -4.781103203961884] + ] + ], + [ + [ + [12.32243167486351, -6.10009246177966], + [12.735171339578699, -5.965682061388499], + [13.024869419006961, -5.984388929878158], + [13.375597364971895, -5.8642412247995495], + [16.326528354567046, -5.877470391466268], + [16.573179965896145, -6.6226445451150875], + [16.8601908708452, -7.2222978654299865], + [17.08999596524717, -7.545688978712526], + [17.472970004962235, -8.0685511206417], + [18.13422163256905, -7.987677504104923], + [18.464175652752687, -7.847014255406443], + [19.01675174324967, -7.988245944860132], + [19.16661339689611, -7.738183688999754], + [19.41750247567316, -7.155428562044299], + [20.037723016040218, -7.116361179231646], + [20.091621534920648, -6.943090101756994], + [20.6018229509383, -6.939317722199682], + [20.5147481625265, -7.2996058081386295], + [21.7281107927397, -7.290872491081302], + [21.74645592620331, -7.920084730667149], + [21.949130893652043, -8.305900974158277], + [21.8018013851879, -8.90870655684298], + [21.875181919042348, -9.523707777548566], + [22.208753289486395, -9.894796237836509], + [22.155268182064308, -11.084801120653772], + [22.402798292742375, -10.993075453335692], + [22.83734541188474, -11.01762175867433], + [23.45679080576744, -10.867863457892483], + [23.912215203555718, -10.926826267137514], + [24.01789350759259, -11.23729827234709], + [23.904153680118185, -11.722281589406322], + [24.079905226342845, -12.191296888887365], + [23.930922072045377, -12.565847670138856], + [24.016136508894675, -12.911046237848574], + [21.933886346125917, -12.898437188369359], + [21.887842644953874, -16.08031015387688], + [22.56247846852426, -16.898451429921813], + [23.215048455506064, -17.523116143465984], + [21.377176141045567, -17.930636488519696], + [18.956186964603603, -17.789094740472258], + [18.263309360434164, -17.309950860262006], + [14.209706658595024, -17.35310068122572], + [14.05850141770901, -17.423380629142663], + [13.462362094789967, -16.971211846588773], + [12.814081251688407, -16.94134286872407], + [12.215461460019355, -17.111668389558083], + [11.734198846085121, -17.301889336824473], + [11.64009606288161, -16.67314218512925], + [11.778537224991537, -15.793816013250735], + [12.12358076340439, -14.878316338767904], + [12.175618930722294, -14.449143568583892], + [12.50009524908299, -13.54769988368445], + [12.738478631245385, -13.137905775609902], + [13.312913852601866, -12.483630466362492], + [13.6337211442698, -12.03864470789717], + [13.738727654686897, -11.297863050993165], + [13.686379428775238, -10.73107594161589], + [13.387327915102162, -10.373578383020714], + [13.120987583069846, -9.766897067914122], + [12.875369500386569, -9.166933689005468], + [12.92906131353783, -8.959091078327553], + [13.236432732809874, -8.562629489784307], + [12.93304039882429, -7.596538588087733], + [12.728298374083892, -6.927122084178805], + [12.227347039446471, -6.294447523629394], + [12.32243167486351, -6.10009246177966] + ] + ] + ] + } + }, + { + "NAME": "Burundi", + "CONTINENT": "Africa", + "POP_EST": 11530580, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [30.469673645761223, -2.41385475710134], + [30.527660000000026, -2.807619999999986], + [30.743010000000027, -3.034309999999948], + [30.752240000000086, -3.3593099999999936], + [30.505539999999996, -3.5685799999999404], + [30.11632000000003, -4.090120000000013], + [29.753512404099865, -4.452389418153302], + [29.339997592900346, -4.4999834122940925], + [29.276383904749053, -3.293907159034063], + [29.024926385216787, -2.8392579077301576], + [29.632176141078588, -2.917857761246097], + [29.93835900240794, -2.348486830254238], + [30.469673645761223, -2.41385475710134] + ] + ] + } + }, + { + "NAME": "Madagascar", + "CONTINENT": "Africa", + "POP_EST": 26969307, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [49.54351891459575, -12.469832858940554], + [49.808980747279094, -12.895284925999555], + [50.056510857957164, -13.555761407121985], + [50.21743126811407, -14.758788750876796], + [50.47653689962553, -15.226512139550543], + [50.377111443895956, -15.706069431219127], + [50.20027469259318, -16.000263360256767], + [49.86060550313868, -15.414252618066918], + [49.67260664246086, -15.710203545802479], + [49.863344354050156, -16.451036879138776], + [49.77456424337271, -16.8750420060936], + [49.49861209493412, -17.106035658438273], + [49.435618523970305, -17.953064060134366], + [49.041792433473944, -19.118781019774445], + [48.54854088724801, -20.496888116134127], + [47.93074913919867, -22.391501153251085], + [47.54772342305131, -23.781958916928517], + [47.095761346226595, -24.941629733990453], + [46.282477654817086, -25.178462823184105], + [45.40950768411045, -25.60143442149309], + [44.833573846217554, -25.34610116953894], + [44.03972049334976, -24.988345228782308], + [43.76376834491117, -24.46067717864999], + [43.697777540874455, -23.574116306250602], + [43.345654331237625, -22.776903985283873], + [43.254187046081, -22.057413018484123], + [43.43329756040464, -21.33647511158019], + [43.893682895692926, -21.16330738697013], + [43.896370070172104, -20.830459486578174], + [44.37432539243966, -20.07236622485639], + [44.46439741392439, -19.435454196859048], + [44.23242190936617, -18.961994724200906], + [44.042976108584156, -18.33138722094317], + [43.96308434426091, -17.409944756746782], + [44.31246870298628, -16.850495700754955], + [44.4465173683514, -16.216219170804507], + [44.94493655780653, -16.1793738745804], + [45.50273196796499, -15.97437346767854], + [45.87299360533626, -15.793454278224687], + [46.31224327981721, -15.780018405828798], + [46.882182651564285, -15.210182386946315], + [47.70512983581236, -14.594302666891764], + [48.005214878131255, -14.091232598530375], + [47.869047479042166, -13.663868503476586], + [48.29382775248138, -13.784067884987486], + [48.84506025573879, -13.089174899958664], + [48.86350874206698, -12.48786793381042], + [49.194651320193316, -12.04055673589197], + [49.54351891459575, -12.469832858940554] + ] + ] + } + }, + { + "NAME": "Gambia", + "CONTINENT": "Africa", + "POP_EST": 2347706, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-16.71372880702347, 13.594958604379855], + [-15.624596320039942, 13.62358734786956], + [-15.39877031092446, 13.86036876063092], + [-15.08173539881382, 13.876491807505985], + [-14.687030808968487, 13.630356960499784], + [-14.376713833055788, 13.625680243377374], + [-14.046992356817482, 13.79406789800045], + [-13.844963344772408, 13.505041612192002], + [-14.277701788784555, 13.280585028532244], + [-14.712197231494628, 13.298206691943777], + [-15.141163295949468, 13.509511623585238], + [-15.511812506562933, 13.278569647672867], + [-15.691000535534995, 13.270353094938457], + [-15.931295945692211, 13.130284125211332], + [-16.841524624081273, 13.15139394780256], + [-16.71372880702347, 13.594958604379855] + ] + ] + } + }, + { + "NAME": "Tunisia", + "CONTINENT": "Africa", + "POP_EST": 11694719, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.482139926805274, 30.307556057246188], + [9.05560265466815, 32.10269196220129], + [8.439102817426118, 32.50628489840082], + [8.430472853233368, 32.74833730725595], + [7.6126416357821824, 33.34411489514896], + [7.524481642292244, 34.09737641045146], + [8.140981479534304, 34.65514598239379], + [8.376367628623768, 35.479876003555944], + [8.217824334352315, 36.433176988260286], + [8.420964389691676, 36.94642731378316], + [9.509993523810607, 37.349994411766545], + [10.210002475636317, 37.230001735984814], + [10.180650262094531, 36.724037787415085], + [11.02886722173335, 37.09210317641396], + [11.100025668999251, 36.899996039368915], + [10.600004510143094, 36.410000108377375], + [10.593286573945138, 35.94744436293281], + [10.939518670300687, 35.698984076473494], + [10.807847120821009, 34.83350718844919], + [10.149592726287125, 34.33077301689771], + [10.339658644256616, 33.78574168551532], + [10.856836378633687, 33.76874013929128], + [11.108500603895122, 33.293342800422195], + [11.488787469131012, 33.13699575452324], + [11.432253452203696, 32.368903103152874], + [10.944789666394456, 32.081814683555365], + [10.636901482799487, 31.761420803345757], + [9.950225050505082, 31.376069647745258], + [10.056575148161699, 30.961831366493527], + [9.970017124072854, 30.53932485607524], + [9.482139926805274, 30.307556057246188] + ] + ] + } + }, + { + "NAME": "Algeria", + "CONTINENT": "Africa", + "POP_EST": 43053054, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-8.684399786809053, 27.395744126896005], + [-8.665124477564191, 27.589479071558227], + [-8.665589565454809, 27.656425889592356], + [-8.674116176782974, 28.84128896739658], + [-7.059227667661958, 29.5792284205246], + [-6.060632290053774, 29.731699734001694], + [-5.242129278982787, 30.00044302013559], + [-4.859646165374471, 30.501187649043846], + [-3.6904410465547244, 30.896951605751156], + [-3.647497931320146, 31.637294012980675], + [-3.068980271812648, 31.724497992473218], + [-2.616604783529567, 32.09434621838619], + [-1.30789913573787, 32.2628889023061], + [-1.1245511539663084, 32.65152151135713], + [-1.388049282222596, 32.86401500094138], + [-1.7334545556614671, 33.91971283623212], + [-1.792985805661715, 34.527918606091305], + [-2.169913702798624, 35.16839630791668], + [-1.208602871089056, 35.7148487411871], + [-0.12745439289460592, 35.888662421200806], + [0.5038765804152092, 36.30127289483528], + [1.466918572606545, 36.605647081034405], + [3.1616988460508253, 36.78390493422522], + [4.81575809084913, 36.86503693292346], + [5.3201200700177935, 36.71651886651662], + [6.261819695672613, 37.11065501560674], + [7.330384962603971, 37.11838064223437], + [7.737078484741005, 36.885707505840216], + [8.420964389691676, 36.94642731378316], + [8.217824334352315, 36.433176988260286], + [8.376367628623768, 35.479876003555944], + [8.140981479534304, 34.65514598239379], + [7.524481642292244, 34.09737641045146], + [7.6126416357821824, 33.34411489514896], + [8.430472853233368, 32.74833730725595], + [8.439102817426118, 32.50628489840082], + [9.05560265466815, 32.10269196220129], + [9.482139926805274, 30.307556057246188], + [9.805634392952356, 29.424638373323376], + [9.859997999723447, 28.959989732371014], + [9.683884718472768, 28.1441738957792], + [9.756128370816782, 27.688258571884205], + [9.629056023811074, 27.14095347748092], + [9.716285841519664, 26.512206325785655], + [9.319410841518163, 26.094324856057455], + [9.910692579801776, 25.365454616796796], + [9.94826134607797, 24.936953640232517], + [10.303846876678362, 24.379313259370917], + [10.771363559622927, 24.56253205006175], + [11.560669386449005, 24.097909247325518], + [11.999505649471613, 23.47166840259645], + [8.572893100629784, 21.565660712159143], + [5.677565952180686, 19.601206976799716], + [4.267419467800039, 19.155265204337], + [3.158133172222705, 19.057364203360038], + [3.1466610042539003, 19.693578599521445], + [2.683588494486429, 19.856230170160117], + [2.06099083823392, 20.142233384679486], + [1.8232275732590324, 20.610809434486043], + [-1.5500548974576134, 22.792665920497384], + [-4.923337368174231, 24.974574082941], + [-8.684399786809053, 27.395744126896005] + ] + ] + } + }, + { + "NAME": "Eritrea", + "CONTINENT": "Africa", + "POP_EST": 6081196, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [36.42951000000005, 14.422110000000032], + [36.32321999999999, 14.822490000000016], + [36.75389000000007, 16.291860000000042], + [36.852530000000115, 16.956549999999993], + [37.167470000000094, 17.263140000000135], + [37.90400000000011, 17.427540000000022], + [38.410089959473225, 17.998307399970315], + [38.990622999840014, 16.840626125551694], + [39.26611006038803, 15.92272349696725], + [39.814293654140215, 15.435647284400318], + [41.17927493669765, 14.491079616753211], + [41.73495161313235, 13.921036892141558], + [42.27683068214486, 13.343992010954423], + [42.58957645037526, 13.000421250861905], + [43.08122602720016, 12.699638576707116], + [42.77964236834475, 12.455415757695675], + [42.35156000000012, 12.542230000000131], + [42.00975, 12.865819999999928], + [41.59856000000002, 13.452090000000112], + [41.15519999999998, 13.773329999999987], + [40.896600000000035, 14.118640000000141], + [40.02625000000012, 14.519589999999994], + [39.34061000000008, 14.531549999999982], + [39.0994, 14.740640000000042], + [38.512950000000046, 14.50547000000006], + [37.90607000000011, 14.959430000000168], + [37.59377000000006, 14.213099999999997], + [36.42951000000005, 14.422110000000032] + ] + ] + } + }, + { + "NAME": "Morocco", + "CONTINENT": "Africa", + "POP_EST": 36471769, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-2.169913702798624, 35.16839630791668], + [-1.792985805661715, 34.527918606091305], + [-1.7334545556614671, 33.91971283623212], + [-1.388049282222596, 32.86401500094138], + [-1.1245511539663084, 32.65152151135713], + [-1.30789913573787, 32.2628889023061], + [-2.616604783529567, 32.09434621838619], + [-3.068980271812648, 31.724497992473218], + [-3.647497931320146, 31.637294012980675], + [-3.6904410465547244, 30.896951605751156], + [-4.859646165374471, 30.501187649043846], + [-5.242129278982787, 30.00044302013559], + [-6.060632290053774, 29.731699734001694], + [-7.059227667661958, 29.5792284205246], + [-8.674116176782974, 28.84128896739658], + [-8.665589565454809, 27.656425889592356], + [-8.817828334986672, 27.656425889592356], + [-8.794883999049077, 27.120696316022507], + [-9.41303748212448, 27.088476060488574], + [-9.735343390328879, 26.860944729107405], + [-10.189424200877582, 26.860944729107405], + [-10.551262579785273, 26.990807603456886], + [-11.392554897497007, 26.883423977154393], + [-11.718219773800357, 26.104091701760623], + [-12.03075883630163, 26.030866197203068], + [-12.50096269372537, 24.7701162785782], + [-13.891110398809047, 23.691009019459305], + [-14.221167771857253, 22.31016307218816], + [-14.630832688851072, 21.860939846274903], + [-14.750954555713534, 21.500600083903663], + [-17.00296179856109, 21.420734157796577], + [-17.02042843267577, 21.422310288981578], + [-16.973247849993243, 21.885744533774982], + [-16.589136928767687, 22.158234361250095], + [-16.261921759495635, 22.679339504481277], + [-16.3264139469959, 23.017768459560898], + [-15.982610642958036, 23.723358466074046], + [-15.426003790742186, 24.35913361256104], + [-15.089331834360735, 24.520260728447], + [-14.824645148161665, 25.103532619725343], + [-14.800925665739726, 25.63626496022232], + [-14.439939947964831, 26.254418443297652], + [-13.773804897506466, 26.618892320252314], + [-13.13994177901435, 27.640147813420526], + [-13.121613369914769, 27.65414767171984], + [-12.618836635783111, 28.03818553314869], + [-11.688919236690765, 28.148643907172527], + [-10.900956997104402, 28.83214223888092], + [-10.399592251008642, 29.09858592377782], + [-9.564811163765683, 29.93357371674989], + [-9.814718390329176, 31.17773550060906], + [-9.434793260119363, 32.038096421836485], + [-9.300692918321886, 32.564679266890664], + [-8.657476365585012, 33.240245266242425], + [-7.6541784326382185, 33.69706492770251], + [-6.912544114601417, 34.110476386037476], + [-6.2443420068514115, 35.145865383437524], + [-5.92999426921989, 35.75998810479399], + [-5.193863491222032, 35.75518219659085], + [-4.591006232105144, 35.330711981745594], + [-3.640056525070065, 35.399855048152006], + [-2.604305792644084, 35.179093329401155], + [-2.169913702798624, 35.16839630791668] + ] + ] + } + }, + { + "NAME": "Egypt", + "CONTINENT": "Africa", + "POP_EST": 100388073, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [36.86622999999997, 22], + [32.89999999999998, 22], + [29.019999999999982, 22], + [25, 22], + [25, 25.682499996361], + [25, 29.23865452953346], + [24.70007, 30.044190000000004], + [24.957620000000002, 30.6616], + [24.802869999999984, 31.089290000000005], + [25.16482, 31.56915], + [26.49533, 31.58568], + [27.457620000000002, 31.32126], + [28.450480000000002, 31.025769999999998], + [28.913529999999998, 30.87005], + [29.683419999999998, 31.186860000000003], + [30.09503, 31.4734], + [30.976930000000003, 31.55586], + [31.687960000000004, 31.4296], + [31.96041, 30.933600000000002], + [32.19247, 31.26034], + [32.99392, 31.024070000000002], + [33.7734, 30.967460000000003], + [34.26543474464621, 31.21935730952032], + [34.265440000000005, 31.219359999999998], + [34.823243288783814, 29.76108076171822], + [34.9226, 29.50133], + [34.64174, 29.099420000000002], + [34.42655, 28.343989999999998], + [34.15451, 27.8233], + [33.92136, 27.6487], + [33.58811, 27.97136], + [33.13676, 28.417650000000002], + [32.423230000000004, 29.851080000000003], + [32.32046, 29.76043], + [32.73482, 28.70523], + [33.34876, 27.69989], + [34.10455, 26.14227], + [34.473870000000005, 25.598560000000003], + [34.79507, 25.03375], + [35.69241, 23.92671], + [35.49372, 23.752370000000003], + [35.52598, 23.10244], + [36.690690000000004, 22.20485], + [36.86622999999997, 22] + ] + ] + } + }, + { + "NAME": "Libya", + "CONTINENT": "Africa", + "POP_EST": 6777452, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [25, 22], + [25.000000000000114, 20.003040000000055], + [23.850000000000136, 20.000000000000057], + [23.83766000000014, 19.580470000000105], + [19.849260000000072, 21.49509000000006], + [15.860850000000084, 23.409719999999993], + [14.851300000000037, 22.862950000000126], + [14.143870883855243, 22.491288967371133], + [13.581424594790462, 23.04050608976928], + [11.999505649471613, 23.47166840259645], + [11.560669386449005, 24.097909247325518], + [10.771363559622927, 24.56253205006175], + [10.303846876678362, 24.379313259370917], + [9.94826134607797, 24.936953640232517], + [9.910692579801776, 25.365454616796796], + [9.319410841518163, 26.094324856057455], + [9.716285841519664, 26.512206325785655], + [9.629056023811074, 27.14095347748092], + [9.756128370816782, 27.688258571884205], + [9.683884718472768, 28.1441738957792], + [9.859997999723447, 28.959989732371014], + [9.805634392952356, 29.424638373323376], + [9.482139926805274, 30.307556057246188], + [9.970017124072854, 30.53932485607524], + [10.056575148161699, 30.961831366493527], + [9.950225050505082, 31.376069647745258], + [10.636901482799487, 31.761420803345757], + [10.944789666394456, 32.081814683555365], + [11.432253452203696, 32.368903103152874], + [11.488787469131012, 33.13699575452324], + [12.663310000000024, 32.79278000000005], + [13.083260000000053, 32.878820000000076], + [13.918679999999995, 32.71196000000009], + [15.245630000000006, 32.26508000000007], + [15.713939999999923, 31.376259999999945], + [16.611620000000016, 31.18217999999996], + [18.02108999999996, 30.76356999999996], + [19.08641, 30.26639], + [19.574040000000082, 30.52582000000001], + [20.053349999999966, 30.985760000000028], + [19.82033000000007, 31.751790000000142], + [20.13396999999992, 32.238200000000006], + [20.854520000000093, 32.70679999999999], + [21.54298, 32.843200000000024], + [22.895760000000053, 32.63857999999999], + [23.236800000000017, 32.191490000000044], + [23.609130000000107, 32.18725999999998], + [23.92750000000001, 32.01667000000009], + [24.921139999999923, 31.89936], + [25.16482, 31.56915], + [24.802869999999984, 31.089290000000005], + [24.957620000000002, 30.6616], + [24.70007, 30.044190000000004], + [25, 29.23865452953346], + [25, 25.682499996361], + [25, 22] + ] + ] + } + }, + { + "NAME": "Ethiopia", + "CONTINENT": "Africa", + "POP_EST": 112078730, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [47.78942, 8.003], + [44.96360000000001, 5.00162], + [43.66086999999999, 4.957550000000083], + [42.76967, 4.25259], + [42.128609999999995, 4.23413], + [41.85508309264397, 3.918911920483727], + [41.1718, 3.9190899999999997], + [40.76848, 4.257020000000001], + [39.85494, 3.83879], + [39.55938425876585, 3.42206], + [38.89251, 3.5007400000000004], + [38.67114, 3.6160700000000006], + [38.43697, 3.58851], + [38.120915, 3.598605], + [36.85509323800812, 4.447864127672769], + [36.159078632855646, 4.447864127672769], + [35.817447662353516, 4.7769656634618896], + [35.817447662353516, 5.338232082790797], + [35.29800711823298, 5.506], + [34.70702, 6.594220000000121], + [34.250320000000045, 6.8260700000000725], + [34.07510000000002, 7.2259500000000685], + [33.568290000000104, 7.7133400000000165], + [32.954180000000065, 7.784970000000101], + [33.29480000000012, 8.354580000000055], + [33.82550000000015, 8.37916000000007], + [33.97498000000007, 8.68455999999992], + [33.961620000000096, 9.583580000000097], + [34.25745000000006, 10.630089999999996], + [34.73115000000013, 10.910170000000107], + [34.83163000000013, 11.318960000000118], + [35.26049000000006, 12.08286000000004], + [35.86363, 12.578280000000063], + [36.27022000000005, 13.563330000000121], + [36.42951000000005, 14.422110000000032], + [37.59377000000006, 14.213099999999997], + [37.90607000000011, 14.959430000000168], + [38.512950000000046, 14.50547000000006], + [39.0994, 14.740640000000042], + [39.34061000000008, 14.531549999999982], + [40.02625000000012, 14.519589999999994], + [40.896600000000035, 14.118640000000141], + [41.15519999999998, 13.773329999999987], + [41.59856000000002, 13.452090000000112], + [42.00975, 12.865819999999928], + [42.35156000000012, 12.542230000000131], + [42.000000000000114, 12.100000000000136], + [41.66176000000013, 11.631199999999978], + [41.73959000000019, 11.355110000000138], + [41.755570000000205, 11.050910000000101], + [42.31414000000012, 11.034200000000055], + [42.55493000000013, 11.105110000000195], + [42.77685184100096, 10.92687856693442], + [42.55875999999995, 10.57258000000013], + [42.92812000000009, 10.021940000000143], + [43.29699000000011, 9.540480000000173], + [43.678750000000036, 9.18358000000012], + [46.94834000000009, 7.99688000000009], + [47.78942, 8.003] + ] + ] + } + }, + { + "NAME": "Djibouti", + "CONTINENT": "Africa", + "POP_EST": 973560, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [42.35156000000012, 12.542230000000131], + [42.77964236834475, 12.455415757695675], + [43.08122602720016, 12.699638576707116], + [43.31785241066467, 12.390148423711025], + [43.286381463398925, 11.974928290245884], + [42.715873650896526, 11.735640570518342], + [43.14530480324214, 11.462039699748857], + [42.77685184100096, 10.92687856693442], + [42.55493000000013, 11.105110000000195], + [42.31414000000012, 11.034200000000055], + [41.755570000000205, 11.050910000000101], + [41.73959000000019, 11.355110000000138], + [41.66176000000013, 11.631199999999978], + [42.000000000000114, 12.100000000000136], + [42.35156000000012, 12.542230000000131] + ] + ] + } + }, + { + "NAME": "Somaliland", + "CONTINENT": "Africa", + "POP_EST": 5096159, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [48.94820475850985, 11.41061728169797], + [48.94820475850974, 11.410617281697963], + [48.94200524271835, 11.394266058798138], + [48.938491245322496, 10.982327378783467], + [48.93823286316103, 9.973500067581512], + [48.93812951029645, 9.451748968946617], + [48.48673587422695, 8.837626247589995], + [47.78942, 8.003], + [46.94834000000009, 7.99688000000009], + [43.678750000000036, 9.18358000000012], + [43.29699000000011, 9.540480000000173], + [42.92812000000009, 10.021940000000143], + [42.55875999999995, 10.57258000000013], + [42.77685184100096, 10.92687856693442], + [43.14530480324214, 11.462039699748857], + [43.470659620951665, 11.277709865763882], + [43.66666832863484, 10.86416921634816], + [44.11780358254282, 10.445538438351605], + [44.614259067570856, 10.442205308468942], + [45.55694054543915, 10.698029486529776], + [46.645401238803004, 10.816549383991173], + [47.525657586462785, 11.12722809492999], + [48.02159630716778, 11.193063869669743], + [48.37878380716927, 11.375481675660126], + [48.94820641459347, 11.41062164961852], + [48.94820475850985, 11.41061728169797] + ] + ] + } + }, + { + "NAME": "Uganda", + "CONTINENT": "Africa", + "POP_EST": 44269594, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [33.90371119710453, -0.9500000000000001], + [31.866170000000068, -1.0273599999999306], + [30.769860000000108, -1.0145499999999856], + [30.419104852019245, -1.1346591121504161], + [29.821518588996014, -1.4433224422297855], + [29.579466180140884, -1.3413131648856265], + [29.58783776217217, -0.587405694179381], + [29.819503208136638, -0.2053101538133717], + [29.875778842902434, 0.5973798689763612], + [30.086153598762706, 1.0623127303062887], + [30.46850752129029, 1.5838054467797065], + [30.85267011894806, 1.8493964705438088], + [31.174149204235817, 2.204465236821264], + [30.77334679538004, 2.339883327642127], + [30.83385989759381, 3.509165961110341], + [30.833852421715427, 3.5091716042224625], + [31.24556000000007, 3.7819000000000074], + [31.881449999999973, 3.558269999999993], + [32.686420000000055, 3.7923200000000747], + [33.3900000000001, 3.7899999999999636], + [34.005, 4.249884947362048], + [34.47913, 3.5556000000000836], + [34.59607, 3.0537400000001185], + [35.03599, 1.90584], + [34.6721, 1.1769399999999999], + [34.18, 0.515], + [33.893568969666944, 0.1098135378618963], + [33.90371119710453, -0.9500000000000001] + ] + ] + } + }, + { + "NAME": "Rwanda", + "CONTINENT": "Africa", + "POP_EST": 12626950, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [30.419104852019245, -1.1346591121504161], + [30.816134881317712, -1.6989140763453887], + [30.75830895358311, -2.2872502579883687], + [30.469670000000008, -2.4138299999999617], + [30.469673645761223, -2.41385475710134], + [29.93835900240794, -2.348486830254238], + [29.632176141078588, -2.917857761246097], + [29.024926385216787, -2.8392579077301576], + [29.117478875451553, -2.2922111954883846], + [29.254834832483343, -2.2151099585089113], + [29.291886834436614, -1.6200558406679872], + [29.579466180140884, -1.3413131648856265], + [29.821518588996014, -1.4433224422297855], + [30.419104852019245, -1.1346591121504161] + ] + ] + } + }, + { + "NAME": "S. Sudan", + "CONTINENT": "Africa", + "POP_EST": 11062113, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [30.833852421715427, 3.5091716042224625], + [29.953500197069474, 4.173699042167684], + [29.71599531425602, 4.600804755060153], + [29.1590784034465, 4.389267279473231], + [28.696677687298802, 4.455077215996937], + [28.428993768026913, 4.287154649264494], + [27.97997724784281, 4.408413397637375], + [27.37422610851749, 5.233944403500061], + [27.21340905122517, 5.5509534773945575], + [26.465909458123235, 5.9467174341018705], + [26.213418409945117, 6.546603298362072], + [25.79664798351118, 6.979315904158071], + [25.124130893664727, 7.500085150579437], + [25.11493248871679, 7.825104071479174], + [24.567369012152085, 8.229187933785468], + [23.886979580860668, 8.619729712933065], + [24.19406772118765, 8.728696472403897], + [24.53741516360202, 8.91753756573172], + [24.794925745412684, 9.810240916008695], + [25.069603699343986, 10.273759963267992], + [25.790633328413946, 10.411098940233728], + [25.962307049621018, 10.136420986302426], + [26.477328213242515, 9.552730334198088], + [26.752006167173818, 9.466893473594496], + [27.112520981708883, 9.638567194801624], + [27.833550610778786, 9.60423245056029], + [27.970889587744352, 9.398223985111656], + [28.966597170745786, 9.398223985111656], + [29.000931914987177, 9.60423245056029], + [29.515953078608618, 9.793073543888056], + [29.61895731133285, 10.084918869940225], + [29.996639497988554, 10.290927335388687], + [30.837840731903384, 9.70723668328452], + [31.35286189552488, 9.810240916008695], + [31.850715687025513, 10.531270545078826], + [32.400071594888345, 11.080626452941488], + [32.31423473428475, 11.68148447716652], + [32.073891524594785, 11.973329803218519], + [32.67474954881965, 12.02483191958072], + [32.743419037302544, 12.248007757149992], + [33.206938084561784, 12.179338268667095], + [33.086766479716744, 11.441141267476496], + [33.206938084561784, 10.720111638406593], + [33.72195924818311, 10.325262079630193], + [33.84213085302815, 9.981914637215993], + [33.82496348090751, 9.484060845715362], + [33.963392794971185, 9.464285229420625], + [33.97498000000007, 8.68455999999992], + [33.82550000000015, 8.37916000000007], + [33.29480000000012, 8.354580000000055], + [32.954180000000065, 7.784970000000101], + [33.568290000000104, 7.7133400000000165], + [34.07510000000002, 7.2259500000000685], + [34.250320000000045, 6.8260700000000725], + [34.70702, 6.594220000000121], + [35.29800711823298, 5.506], + [34.62019626785388, 4.8471227420819885], + [34.005, 4.249884947362048], + [33.3900000000001, 3.7899999999999636], + [32.686420000000055, 3.7923200000000747], + [31.881449999999973, 3.558269999999993], + [31.24556000000007, 3.7819000000000074], + [30.833852421715427, 3.5091716042224625] + ] + ] + } + } + ] + }, + {"name": "empty", "values": [{}]}, + { + "name": "tile_list", + "transform": [ + {"type": "sequence", "start": 0, "stop": 20, "as": "a"}, + {"type": "formula", "expr": "sequence(0, 20)", "as": "b"}, + {"type": "flatten", "fields": ["b"], "as": ["b"]}, + { + "type": "formula", + "expr": "'https://tile.openstreetmap.org/' + zoom_ceil + '/' + ((datum.a + dii_floor + max_one_side_tiles_count) % max_one_side_tiles_count) + '/' + (datum.b + djj_floor) + '.png'", + "as": "url" + }, + { + "type": "formula", + "expr": "datum.a * tile_size + dx + (tile_size / 2)", + "as": "x" + }, + { + "type": "formula", + "expr": "datum.b * tile_size + dy + (tile_size / 2)", + "as": "y" + }, + { + "type": "filter", + "expr": "datum.x < (width + tile_size / 2) && datum.y < (height + tile_size / 2)" + }, + { + "type": "filter", + "expr": "((datum.a + dii_floor + max_one_side_tiles_count) % max_one_side_tiles_count) >= 0 && (datum.b + djj_floor) >= 0 && ((datum.a + dii_floor + max_one_side_tiles_count) % max_one_side_tiles_count) <= (max_one_side_tiles_count - 1) && (datum.b + djj_floor) <= (max_one_side_tiles_count - 1)" + } + ] + } + ], + "projections": [ + { + "name": "projection", + "size": {"signal": "[width, height]"}, + "fit": {"signal": "data('data-d796ccc73f9696bc387a819d32762211')"}, + "type": "mercator" + } + ], + "signals": [ + {"name": "base_tile_size", "value": 256}, + {"name": "pr_scale", "update": "geoScale('projection')"}, + { + "name": "zoom_level", + "update": "log((2 * PI * pr_scale) / base_tile_size) / log(2)" + }, + {"name": "zoom_ceil", "update": "ceil(zoom_level)"}, + {"name": "max_one_side_tiles_count", "update": "pow(2, zoom_ceil)"}, + { + "name": "tile_size", + "update": "base_tile_size * pow(2, zoom_level - zoom_ceil)" + }, + {"name": "base_point", "update": "invert('projection', [0, 0])"}, + { + "name": "dii", + "update": "(base_point[0] + 180) / 360 * max_one_side_tiles_count" + }, + {"name": "dii_floor", "update": "floor(dii)"}, + {"name": "dx", "update": "(dii_floor - dii) * tile_size"}, + { + "name": "djj", + "update": "(1 - log(tan(base_point[1] * PI / 180) + 1 / cos(base_point[1] * PI / 180)) / PI) / 2 * max_one_side_tiles_count" + }, + {"name": "djj_floor", "update": "floor(djj)"}, + {"name": "dy", "update": "round((djj_floor - djj) * tile_size)"} + ], + "marks": [ + { + "name": "layer_0_marks", + "type": "image", + "clip": true, + "style": ["image"], + "from": {"data": "tile_list"}, + "encode": { + "update": { + "description": { + "signal": "\"x: \" + (format(datum[\"x\"], \"\")) + \"; y: \" + (format(datum[\"y\"], \"\")) + \"; url: \" + (isValid(datum[\"url\"]) ? datum[\"url\"] : \"\"+datum[\"url\"])" + }, + "xc": {"field": "x"}, + "width": {"signal": "tile_size + 1"}, + "yc": {"field": "y"}, + "height": {"signal": "tile_size + 1"}, + "url": { + "signal": "isValid(datum[\"url\"]) ? datum[\"url\"] : \"\"+datum[\"url\"]" + } + } + } + }, + { + "name": "layer_1_marks", + "type": "shape", + "style": ["geoshape"], + "from": {"data": "data-d796ccc73f9696bc387a819d32762211"}, + "encode": { + "update": { + "fillOpacity": {"value": 0.1}, + "stroke": {"value": "green"}, + "strokeWidth": {"value": 2}, + "fill": {"value": "#4c78a8"}, + "ariaRoleDescription": {"value": "geoshape"} + } + }, + "transform": [{"type": "geoshape", "projection": "projection"}] + }, + { + "name": "layer_2_marks", + "type": "text", + "style": ["text"], + "from": {"data": "empty"}, + "encode": { + "update": { + "align": {"value": "left"}, + "text": {"value": "(C) OpenStreetMap contributors"}, + "dx": {"value": 3}, + "dy": {"value": -8}, + "fill": {"value": "black"}, + "x": {"value": 0}, + "y": {"signal": "height"}, + "baseline": {"value": "middle"} + } + } + } + ] +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-specs/vl-convert/line_with_log_scale.vg.json b/avenger-vega-test-data/vega-specs/vl-convert/line_with_log_scale.vg.json new file mode 100644 index 0000000..6564b84 --- /dev/null +++ b/avenger-vega-test-data/vega-specs/vl-convert/line_with_log_scale.vg.json @@ -0,0 +1,101 @@ +{ + "$schema": "https://vega.github.io/schema/vega/v5.json", + "background": "white", + "padding": 5, + "height": 300, + "style": "cell", + "data": [ + { + "name": "source_0", + "url": "https://cdn.jsdelivr.net/npm/vega-datasets@v1.29.0/data/population.json", + "format": {"type": "json"}, + "transform": [ + { + "type": "aggregate", + "groupby": ["year"], + "ops": ["sum"], + "fields": ["people"], + "as": ["sum_people"] + } + ] + } + ], + "signals": [ + {"name": "x_step", "value": 20}, + { + "name": "width", + "update": "bandspace(domain('x').length, 1, 0.5) * x_step" + } + ], + "marks": [ + { + "name": "marks", + "type": "line", + "style": ["line"], + "sort": {"field": "datum[\"year\"]"}, + "from": {"data": "source_0"}, + "encode": { + "update": { + "stroke": {"value": "#4c78a8"}, + "description": { + "signal": "\"year: \" + (isValid(datum[\"year\"]) ? datum[\"year\"] : \"\"+datum[\"year\"]) + \"; Sum of people: \" + (format(datum[\"sum_people\"], \"\"))" + }, + "x": {"scale": "x", "field": "year"}, + "y": {"scale": "y", "field": "sum_people"}, + "defined": { + "signal": "isValid(datum[\"sum_people\"]) && isFinite(+datum[\"sum_people\"])" + } + } + } + } + ], + "scales": [ + { + "name": "x", + "type": "point", + "domain": {"data": "source_0", "field": "year", "sort": true}, + "range": {"step": {"signal": "x_step"}}, + "padding": 0.5 + }, + { + "name": "y", + "type": "log", + "domain": {"data": "source_0", "field": "sum_people"}, + "range": [{"signal": "height"}, 0], + "nice": true + } + ], + "axes": [ + { + "scale": "y", + "orient": "left", + "gridScale": "x", + "grid": true, + "domain": false, + "labels": false, + "aria": false, + "maxExtent": 0, + "minExtent": 0, + "ticks": false, + "zindex": 0 + }, + { + "scale": "x", + "orient": "bottom", + "grid": false, + "title": "year", + "labelAlign": "right", + "labelAngle": 270, + "labelBaseline": "middle", + "zindex": 0 + }, + { + "scale": "y", + "orient": "left", + "grid": false, + "title": "Sum of people", + "labelOverlap": "greedy", + "zindex": 0 + } + ] +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-specs/vl-convert/long_legend_label.vg.json b/avenger-vega-test-data/vega-specs/vl-convert/long_legend_label.vg.json new file mode 100644 index 0000000..e28e7e9 --- /dev/null +++ b/avenger-vega-test-data/vega-specs/vl-convert/long_legend_label.vg.json @@ -0,0 +1,129 @@ +{ + "$schema": "https://vega.github.io/schema/vega/v5.json", + "background": "white", + "padding": 5, + "height": 200, + "style": "cell", + "data": [ + { + "name": "source_0", + "values": [ + {"a": "J", "b": 28, "c": "I am more than 18 characters"}, + {"a": "B", "b": 55}, + {"a": "C", "b": 43}, + {"a": "D", "b": 91}, + {"a": "E", "b": 81}, + {"a": "F", "b": 53}, + {"a": "G", "b": 19}, + {"a": "H", "b": 87}, + {"a": "I", "b": 52} + ] + }, + { + "name": "data_0", + "source": "source_0", + "transform": [ + { + "type": "stack", + "groupby": ["a"], + "field": "b", + "sort": {"field": ["c"], "order": ["descending"]}, + "as": ["b_start", "b_end"], + "offset": "zero" + }, + { + "type": "filter", + "expr": "isValid(datum[\"b\"]) && isFinite(+datum[\"b\"])" + } + ] + } + ], + "signals": [ + {"name": "x_step", "value": 20}, + { + "name": "width", + "update": "bandspace(domain('x').length, 0.1, 0.05) * x_step" + } + ], + "marks": [ + { + "name": "marks", + "type": "rect", + "style": ["bar"], + "from": {"data": "data_0"}, + "encode": { + "update": { + "fill": {"scale": "color", "field": "c"}, + "ariaRoleDescription": {"value": "bar"}, + "description": { + "signal": "\"a: \" + (isValid(datum[\"a\"]) ? datum[\"a\"] : \"\"+datum[\"a\"]) + \"; b: \" + (format(datum[\"b\"], \"\")) + \"; c: \" + (isValid(datum[\"c\"]) ? datum[\"c\"] : \"\"+datum[\"c\"])" + }, + "x": {"scale": "x", "field": "a"}, + "width": {"signal": "max(0.25, bandwidth('x'))"}, + "y": {"scale": "y", "field": "b_end"}, + "y2": {"scale": "y", "field": "b_start"} + } + } + } + ], + "scales": [ + { + "name": "x", + "type": "band", + "domain": {"data": "data_0", "field": "a", "sort": true}, + "range": {"step": {"signal": "x_step"}}, + "paddingInner": 0.1, + "paddingOuter": 0.05 + }, + { + "name": "y", + "type": "linear", + "domain": {"data": "data_0", "fields": ["b_start", "b_end"]}, + "range": [{"signal": "height"}, 0], + "nice": true, + "zero": true + }, + { + "name": "color", + "type": "ordinal", + "domain": {"data": "data_0", "field": "c", "sort": true}, + "range": "category" + } + ], + "axes": [ + { + "scale": "y", + "orient": "left", + "gridScale": "x", + "grid": true, + "tickCount": {"signal": "ceil(height/40)"}, + "domain": false, + "labels": false, + "aria": false, + "maxExtent": 0, + "minExtent": 0, + "ticks": false, + "zindex": 0 + }, + { + "scale": "x", + "orient": "bottom", + "grid": false, + "title": "a", + "labelAlign": "right", + "labelAngle": 270, + "labelBaseline": "middle", + "zindex": 0 + }, + { + "scale": "y", + "orient": "left", + "grid": false, + "title": "b", + "labelOverlap": true, + "tickCount": {"signal": "ceil(height/40)"}, + "zindex": 0 + } + ], + "legends": [{"fill": "color", "symbolType": "square", "title": "c"}] +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-specs/vl-convert/lookup_urls.vg.json b/avenger-vega-test-data/vega-specs/vl-convert/lookup_urls.vg.json new file mode 100644 index 0000000..dfd85d4 --- /dev/null +++ b/avenger-vega-test-data/vega-specs/vl-convert/lookup_urls.vg.json @@ -0,0 +1,87 @@ +{ + "$schema": "https://vega.github.io/schema/vega/v5.json", + "background": "white", + "padding": 5, + "width": 300, + "height": 175, + "style": "view", + "data": [ + { + "name": "source_1", + "url": "https://cdn.jsdelivr.net/npm/vega-datasets@v1.29.0/data/us-10m.json", + "format": {"feature": "states", "type": "topojson"} + }, + { + "name": "source_0", + "url": "https://cdn.jsdelivr.net/npm/vega-datasets@v1.29.0/data/income.json", + "format": {"type": "json"}, + "transform": [ + { + "type": "lookup", + "from": "source_1", + "key": "id", + "fields": ["id"], + "as": ["geo"] + }, + {"type": "filter", "expr": "isValid(datum[\"geo\"])"}, + {"type": "geojson", "geojson": "geo", "signal": "geojson_0"}, + { + "type": "filter", + "expr": "isValid(datum[\"pct\"]) && isFinite(+datum[\"pct\"])" + } + ] + } + ], + "projections": [ + { + "name": "projection", + "size": {"signal": "[width, height]"}, + "fit": {"signal": "geojson_0"}, + "type": "albersUsa" + } + ], + "marks": [ + { + "name": "marks", + "type": "shape", + "style": ["geoshape"], + "from": {"data": "source_0"}, + "encode": { + "update": { + "fill": {"scale": "color", "field": "pct"}, + "tooltip": { + "signal": "{\"name\": isValid(datum[\"name\"]) ? datum[\"name\"] : \"\"+datum[\"name\"], \"pct\": format(datum[\"pct\"], \"\")}" + }, + "ariaRoleDescription": {"value": "geoshape"}, + "description": { + "signal": "\"pct: \" + (format(datum[\"pct\"], \"\")) + \"; geo: \" + (isValid(datum[\"geo\"]) ? datum[\"geo\"] : \"\"+datum[\"geo\"]) + \"; name: \" + (isValid(datum[\"name\"]) ? datum[\"name\"] : \"\"+datum[\"name\"])" + } + } + }, + "transform": [ + { + "type": "geoshape", + "projection": "projection", + "field": "datum[\"geo\"]" + } + ] + } + ], + "scales": [ + { + "name": "color", + "type": "linear", + "domain": {"data": "source_0", "field": "pct"}, + "range": "heatmap", + "interpolate": "hcl", + "zero": false + } + ], + "legends": [ + { + "fill": "color", + "gradientLength": {"signal": "clamp(height, 64, 200)"}, + "title": "pct" + } + ] +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-specs/vl-convert/maptile_background.vg.json b/avenger-vega-test-data/vega-specs/vl-convert/maptile_background.vg.json new file mode 100644 index 0000000..abbd953 --- /dev/null +++ b/avenger-vega-test-data/vega-specs/vl-convert/maptile_background.vg.json @@ -0,0 +1,156 @@ +{ + "$schema": "https://vega.github.io/schema/vega/v5.json", + "background": "white", + "padding": 5, + "width": 600, + "height": 600, + "style": ["cell", "view"], + "data": [ + {"name": "empty", "values": [{}]}, + { + "name": "tile_list", + "transform": [ + {"type": "sequence", "as": "a", "start": 0, "stop": 4}, + {"type": "formula", "expr": "sequence(0, 4)", "as": "b"}, + {"type": "flatten", "fields": ["b"], "as": ["b"]}, + { + "type": "formula", + "expr": "'https://tile.openstreetmap.org/' + zoom_ceil + '/' + ((datum.a + dii_floor + tiles_count) % tiles_count) + '/' + (datum.b + djj_floor) + '.png'", + "as": "url" + }, + { + "type": "formula", + "expr": "datum.a * tile_size + dx + (tile_size / 2)", + "as": "x" + }, + { + "type": "formula", + "expr": "datum.b * tile_size + dy + (tile_size / 2)", + "as": "y" + }, + { + "type": "filter", + "expr": "((datum.a + dii_floor + tiles_count) % tiles_count) >= 0 && (datum.b + djj_floor) >= 0 && ((datum.a + dii_floor + tiles_count) % tiles_count) <= (tiles_count - 1) && (datum.b + djj_floor) <= (tiles_count - 1)" + }, + { + "type": "filter", + "expr": "datum.x < (width + tile_size / 2) && datum.y < (height + tile_size / 2)" + } + ] + }, + { + "name": "source_0", + "url": "https://cdn.jsdelivr.net/npm/vega-datasets@v1.29.0/data/world-110m.json", + "format": {"feature": "countries", "type": "topojson"}, + "transform": [ + { + "type": "filter", + "expr": "isValid(datum[\"id\"]) && isFinite(+datum[\"id\"])" + } + ] + } + ], + "projections": [ + { + "name": "projection", + "translate": {"signal": "[width / 2, height / 2]"}, + "center": [0, 50], + "rotate": [-10, 0, 0], + "scale": 400, + "type": "mercator" + } + ], + "signals": [ + { + "name": "base_tile_size", + "update": "(2 * PI * pr_scale) / pow(2, zoom_level)" + }, + {"name": "pr_scale", "update": "400"}, + {"name": "zoom_level", "value": 1}, + {"name": "zoom_ceil", "update": "ceil(zoom_level)"}, + {"name": "tiles_count", "update": "pow(2, zoom_ceil)"}, + { + "name": "tile_size", + "update": "base_tile_size * pow(2, zoom_level - zoom_ceil)" + }, + {"name": "base_point", "update": "invert('projection', [0, 0])"}, + {"name": "dii", "update": "(base_point[0] + 180) / 360 * tiles_count"}, + {"name": "dii_floor", "update": "floor(dii)"}, + {"name": "dx", "update": "(dii_floor - dii) * tile_size"}, + { + "name": "djj", + "update": "(1 - log(tan(base_point[1] * PI / 180) + 1 / cos(base_point[1] * PI / 180)) / PI) / 2 * tiles_count" + }, + {"name": "djj_floor", "update": "floor(djj)"}, + {"name": "dy", "update": "round((djj_floor - djj) * tile_size)"} + ], + "marks": [ + { + "name": "layer_0_marks", + "type": "image", + "clip": true, + "style": ["image"], + "from": {"data": "tile_list"}, + "encode": { + "update": { + "description": { + "signal": "\"x: \" + (format(datum[\"x\"], \"\")) + \"; y: \" + (format(datum[\"y\"], \"\")) + \"; url: \" + (isValid(datum[\"url\"]) ? datum[\"url\"] : \"\"+datum[\"url\"])" + }, + "xc": {"field": "x"}, + "width": {"signal": "tile_size - 10"}, + "yc": {"field": "y"}, + "height": {"signal": "tile_size - 10"}, + "url": { + "signal": "isValid(datum[\"url\"]) ? datum[\"url\"] : \"\"+datum[\"url\"]" + } + } + } + }, + { + "name": "layer_1_marks", + "type": "shape", + "clip": true, + "style": ["geoshape"], + "from": {"data": "source_0"}, + "encode": { + "update": { + "fillOpacity": {"value": 0.1}, + "stroke": {"value": "orange"}, + "strokeWidth": {"value": 2}, + "fill": {"scale": "fill", "field": "id"}, + "ariaRoleDescription": {"value": "geoshape"}, + "description": {"signal": "\"id: \" + (format(datum[\"id\"], \"\"))"} + } + }, + "transform": [{"type": "geoshape", "projection": "projection"}] + }, + { + "name": "layer_2_marks", + "type": "text", + "style": ["text"], + "from": {"data": "empty"}, + "encode": { + "update": { + "align": {"value": "left"}, + "text": {"value": "(C) OpenStreetMap contributors"}, + "dx": {"value": 3}, + "dy": {"value": -8}, + "fill": {"value": "black"}, + "x": {"value": 0}, + "y": {"signal": "height"}, + "baseline": {"value": "middle"} + } + } + } + ], + "scales": [ + { + "name": "fill", + "type": "linear", + "domain": {"data": "source_0", "field": "id"}, + "range": "heatmap", + "interpolate": "hcl", + "zero": false + } + ] +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-specs/vl-convert/no_text_in_font_metrics.vg.json b/avenger-vega-test-data/vega-specs/vl-convert/no_text_in_font_metrics.vg.json new file mode 100644 index 0000000..a35bf29 --- /dev/null +++ b/avenger-vega-test-data/vega-specs/vl-convert/no_text_in_font_metrics.vg.json @@ -0,0 +1,133 @@ +{ + "$schema": "https://vega.github.io/schema/vega/v5.json", + "description": "https://github.com/vega/vl-convert/issues/72", + "background": "white", + "padding": 5, + "height": 200, + "style": "cell", + "data": [ + { + "name": "source_0", + "values": [ + { + "column_name": "Prior", + "previous_sum": 1.2, + "log2_bayes_factor": 2.4, + "value": "inal score" + } + ] + }, + { + "name": "data_0", + "source": "source_0", + "transform": [ + { + "type": "stack", + "groupby": ["column_name"], + "field": "previous_sum", + "sort": {"field": [], "order": []}, + "as": ["previous_sum_start", "previous_sum_end"], + "offset": "zero" + }, + { + "type": "filter", + "expr": "isValid(datum[\"previous_sum\"]) && isFinite(+datum[\"previous_sum\"])" + } + ] + } + ], + "signals": [ + {"name": "x_step", "value": 20}, + { + "name": "width", + "update": "bandspace(domain('x').length, 0.1, 0.05) * x_step" + } + ], + "marks": [ + { + "name": "layer_0_marks", + "type": "rect", + "style": ["bar"], + "from": {"data": "data_0"}, + "encode": { + "update": { + "fill": {"value": "#4c78a8"}, + "ariaRoleDescription": {"value": "bar"}, + "description": { + "signal": "\"column_name: \" + (isValid(datum[\"column_name\"]) ? datum[\"column_name\"] : \"\"+datum[\"column_name\"]) + \"; previous_sum: \" + (format(datum[\"previous_sum\"], \"\"))" + }, + "xc": {"scale": "x", "field": "column_name", "band": 0.5}, + "width": {"value": 60}, + "y": {"scale": "y", "field": "previous_sum_end"}, + "y2": {"scale": "y", "field": "previous_sum_start"} + } + } + } + ], + "scales": [ + { + "name": "x", + "type": "band", + "domain": {"data": "data_0", "field": "column_name", "sort": true}, + "range": {"step": {"signal": "x_step"}}, + "paddingInner": 0.1, + "paddingOuter": 0.05 + }, + { + "name": "y", + "type": "linear", + "domain": { + "data": "data_0", + "fields": ["previous_sum_start", "previous_sum_end"] + }, + "range": [{"signal": "height"}, 0], + "nice": true, + "zero": true + } + ], + "axes": [ + { + "scale": "y", + "orient": "left", + "gridScale": "x", + "grid": true, + "tickCount": {"signal": "ceil(height/40)"}, + "domain": false, + "labels": false, + "aria": false, + "maxExtent": 0, + "minExtent": 0, + "ticks": false, + "zindex": 0 + }, + { + "scale": "x", + "orient": "bottom", + "grid": false, + "title": "column_name", + "tickBand": "extent", + "labelAlign": "right", + "labelAngle": 270, + "labelBaseline": "middle", + "encode": { + "labels": { + "update": { + "text": { + "signal": "datum.value == 'Prior' || datum.value == 'Final score' ? '' : datum.value" + } + } + } + }, + "zindex": 0 + }, + { + "scale": "y", + "orient": "left", + "grid": false, + "title": "previous_sum", + "labelOverlap": true, + "tickCount": {"signal": "ceil(height/40)"}, + "zindex": 0 + } + ] +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-specs/vl-convert/numeric_font_weight.vg.json b/avenger-vega-test-data/vega-specs/vl-convert/numeric_font_weight.vg.json new file mode 100644 index 0000000..ba3b661 --- /dev/null +++ b/avenger-vega-test-data/vega-specs/vl-convert/numeric_font_weight.vg.json @@ -0,0 +1,123 @@ +{ + "$schema": "https://vega.github.io/schema/vega/v5.json", + "background": "white", + "padding": 5, + "height": 200, + "title": {"text": "Some title", "frame": "group"}, + "style": "cell", + "data": [ + { + "name": "source_0", + "values": [ + {"a": "A", "b": 28}, + {"a": "B", "b": 55}, + {"a": "C", "b": 43}, + {"a": "D", "b": 91}, + {"a": "E", "b": 81}, + {"a": "F", "b": 53}, + {"a": "G", "b": 19}, + {"a": "H", "b": 87}, + {"a": "I", "b": 52} + ] + }, + { + "name": "data_0", + "source": "source_0", + "transform": [ + { + "type": "stack", + "groupby": ["a"], + "field": "b", + "sort": {"field": [], "order": []}, + "as": ["b_start", "b_end"], + "offset": "zero" + }, + { + "type": "filter", + "expr": "isValid(datum[\"b\"]) && isFinite(+datum[\"b\"])" + } + ] + } + ], + "signals": [ + {"name": "x_step", "value": 20}, + { + "name": "width", + "update": "bandspace(domain('x').length, 0.1, 0.05) * x_step" + } + ], + "marks": [ + { + "name": "marks", + "type": "rect", + "style": ["bar"], + "from": {"data": "data_0"}, + "encode": { + "update": { + "fill": {"value": "#4c78a8"}, + "ariaRoleDescription": {"value": "bar"}, + "description": { + "signal": "\"a: \" + (isValid(datum[\"a\"]) ? datum[\"a\"] : \"\"+datum[\"a\"]) + \"; b: \" + (format(datum[\"b\"], \"\"))" + }, + "x": {"scale": "x", "field": "a"}, + "width": {"signal": "max(0.25, bandwidth('x'))"}, + "y": {"scale": "y", "field": "b_end"}, + "y2": {"scale": "y", "field": "b_start"} + } + } + } + ], + "scales": [ + { + "name": "x", + "type": "band", + "domain": {"data": "data_0", "field": "a", "sort": true}, + "range": {"step": {"signal": "x_step"}}, + "paddingInner": 0.1, + "paddingOuter": 0.05 + }, + { + "name": "y", + "type": "linear", + "domain": {"data": "data_0", "fields": ["b_start", "b_end"]}, + "range": [{"signal": "height"}, 0], + "nice": true, + "zero": true + } + ], + "axes": [ + { + "scale": "y", + "orient": "left", + "gridScale": "x", + "grid": true, + "tickCount": {"signal": "ceil(height/40)"}, + "domain": false, + "labels": false, + "aria": false, + "maxExtent": 0, + "minExtent": 0, + "ticks": false, + "zindex": 0 + }, + { + "scale": "x", + "orient": "bottom", + "grid": false, + "title": "a", + "labelAngle": 0, + "labelBaseline": "top", + "zindex": 0 + }, + { + "scale": "y", + "orient": "left", + "grid": false, + "title": "b", + "labelOverlap": true, + "tickCount": {"signal": "ceil(height/40)"}, + "zindex": 0 + } + ], + "config": {"style": {"group-title": {"fontWeight": 600}}} +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-specs/vl-convert/quakes_initial_selection.vg.json b/avenger-vega-test-data/vega-specs/vl-convert/quakes_initial_selection.vg.json new file mode 100644 index 0000000..7a8a432 --- /dev/null +++ b/avenger-vega-test-data/vega-specs/vl-convert/quakes_initial_selection.vg.json @@ -0,0 +1,462 @@ +{ + "$schema": "https://vega.github.io/schema/vega/v5.json", + "background": "white", + "padding": 5, + "width": 300, + "height": 300, + "style": "view", + "data": [ + { + "name": "param_9_store", + "transform": [{"type": "collect", "sort": {"field": "_vgsid_"}}], + "values": [{"unit": "view_10", "_vgsid_": [-50, -110]}] + }, + { + "name": "data-fb86529059777efe8f13f1951acfb87c", + "values": [ + {"lon": -118.6671667, "lat": 34.4945, "mag": 2}, + {"lon": -118.0873333, "lat": 34.12, "mag": 1.6}, + {"lon": -116.7943333, "lat": 33.518, "mag": 0.54}, + {"lon": -149.145, "lat": 55.7729, "mag": 3.8}, + {"lon": -122.8560028, "lat": 38.8246651, "mag": 0.66}, + {"lon": -149.6259, "lat": 63.8969, "mag": 1.7}, + {"lon": -148.6001, "lat": 56.5687, "mag": 3.1}, + {"lon": -117.137, "lat": 34.0473333, "mag": 1.23}, + {"lon": -148.6645, "lat": 56.2823, "mag": 2.8}, + {"lon": -150.2399, "lat": 61.7028, "mag": 3.8}, + {"lon": -149.8542, "lat": 61.6978, "mag": 3.5}, + {"lon": -147.408, "lat": 64.9794, "mag": 1.4}, + {"lon": -156.4712, "lat": 57.8731, "mag": 2.6}, + {"lon": -122.8541641, "lat": 38.8250008, "mag": 0.96}, + {"lon": 121.6773, "lat": 23.9887, "mag": 4.7}, + {"lon": -116.7895, "lat": 33.5021667, "mag": 0.48}, + {"lon": 121.7221, "lat": 24.0424, "mag": 4.7}, + {"lon": -150.4985, "lat": 62.0043, "mag": 1.9}, + {"lon": -151.5091, "lat": 63.0943, "mag": 1}, + {"lon": -120.5753326, "lat": 36.0098343, "mag": 1.56}, + {"lon": -117.2048, "lat": 40.7226, "mag": 2.1}, + {"lon": -116.6631667, "lat": 33.6496667, "mag": 0.33}, + {"lon": -116.7865, "lat": 33.4858333, "mag": 0.82}, + {"lon": -116.3719, "lat": 40.9433, "mag": 2}, + {"lon": 72.5446, "lat": 38.1608, "mag": 5}, + {"lon": -122.7938309, "lat": 38.8209991, "mag": 0.55}, + {"lon": 70.4201, "lat": 36.6781, "mag": 4.2}, + {"lon": -118.9148, "lat": 38.3974, "mag": 1.6}, + {"lon": -84.6085, "lat": 9.4429, "mag": 4.4}, + {"lon": -147.7124, "lat": 61.0186, "mag": 1.4}, + {"lon": -149.8753, "lat": 62.34, "mag": 1.8}, + {"lon": -149.3296, "lat": 55.8526, "mag": 3.9}, + {"lon": 121.7366, "lat": 24.054, "mag": 4.9}, + {"lon": -148.4808, "lat": 62.2947, "mag": 3}, + {"lon": -152.7284, "lat": 60.2249, "mag": 2.4}, + {"lon": -152.9563, "lat": 60.0371, "mag": 2.3}, + {"lon": -152.5878, "lat": 59.8703, "mag": 2.1}, + {"lon": -121.5946655, "lat": 36.9138336, "mag": 1.51}, + {"lon": -155.3447, "lat": 58.1913, "mag": 1}, + {"lon": -116.7953333, "lat": 33.4961667, "mag": 0.53}, + {"lon": -117.0976667, "lat": 33.7835, "mag": 0.63}, + {"lon": -70.3349, "lat": -32.4714, "mag": 4.5}, + {"lon": -117.1061667, "lat": 33.2346667, "mag": 0.95}, + {"lon": -153.399, "lat": 58.9587, "mag": 2.6}, + {"lon": 121.7751, "lat": 23.9506, "mag": 4.8}, + {"lon": 72.1924, "lat": 37.7994, "mag": 4}, + {"lon": -121.1765, "lat": 40.2825, "mag": 2.31}, + {"lon": -122.7841644, "lat": 38.8380013, "mag": 0.56}, + {"lon": 121.7566, "lat": 23.942, "mag": 5.4}, + {"lon": -117.5008333, "lat": 35.6961667, "mag": 1.1}, + {"lon": -122.8290024, "lat": 38.8371658, "mag": 0.57}, + {"lon": 169.4658, "lat": -18.9718, "mag": 5.6}, + {"lon": -118.1963, "lat": 37.2339, "mag": 0.2}, + {"lon": -68.4818, "lat": 18.171, "mag": 2.71}, + {"lon": 121.759, "lat": 24.0413, "mag": 5.3}, + {"lon": 121.756, "lat": 24.0521, "mag": 5.2}, + {"lon": -115.5586, "lat": 39.9385, "mag": 2}, + {"lon": -66.7358, "lat": 17.911, "mag": 1.71}, + {"lon": -120.6545, "lat": 39.8157, "mag": 0.5}, + {"lon": -116.5465, "lat": 33.1596667, "mag": 0.5}, + {"lon": -122.8040009, "lat": 38.8214989, "mag": 1}, + {"lon": -155.2733333, "lat": 19.3948333, "mag": 1.4}, + {"lon": -116.2853333, "lat": 33.3198333, "mag": 1.12}, + {"lon": -155.2771667, "lat": 19.3831667, "mag": 0.93}, + {"lon": -122.2388306, "lat": 37.9975014, "mag": 1.1}, + {"lon": -122.8034973, "lat": 38.8223343, "mag": 0.88}, + {"lon": -149.9556, "lat": 65.4043, "mag": 1.4}, + {"lon": -155.5506667, "lat": 19.1508333, "mag": 1.97}, + {"lon": -150.0793, "lat": 56.1815, "mag": 3.7}, + {"lon": 121.654, "lat": 23.9342, "mag": 5.1}, + {"lon": -118.9056, "lat": 38.3726, "mag": 1.1}, + {"lon": -116.6651667, "lat": 33.577, "mag": 0.52}, + {"lon": 121.653, "lat": 24.1737, "mag": 6.4}, + {"lon": -116.814, "lat": 33.5786667, "mag": 1.37}, + {"lon": -116.7773333, "lat": 33.4973333, "mag": 0.46}, + {"lon": -112.6238333, "lat": 45.3583333, "mag": -0.07}, + {"lon": -116.9461667, "lat": 33.6703333, "mag": 0.89}, + {"lon": -148.3011, "lat": 56.2507, "mag": 4.4}, + {"lon": -155.2419, "lat": 57.9207, "mag": 1}, + {"lon": -121.0294, "lat": 40.0627, "mag": 1.4}, + {"lon": -118.9343338, "lat": 37.6343346, "mag": 1.66}, + {"lon": -121.0054, "lat": 40.048, "mag": 1.7}, + {"lon": -68.3323, "lat": 19.0268, "mag": 3.24}, + {"lon": -116.3998333, "lat": 33.2496667, "mag": 0.81}, + {"lon": -121.1480026, "lat": 36.5584984, "mag": 0.88}, + {"lon": -121.4188309, "lat": 36.9329987, "mag": 1.7}, + {"lon": -152.0545, "lat": 60.5649, "mag": 1.5}, + {"lon": 140.8677, "lat": 36.7501, "mag": 4.2}, + {"lon": -147.3152, "lat": 61.4805, "mag": 1.9}, + {"lon": -116.0961667, "lat": 33.7426667, "mag": 1.09}, + {"lon": -147.1244, "lat": 60.5003, "mag": 2.3}, + {"lon": -116.09, "lat": 33.7415, "mag": 0.86}, + {"lon": -67.1968, "lat": 18.2985, "mag": 2.68}, + {"lon": -118.976, "lat": 37.5316667, "mag": 0.41}, + {"lon": -146.414, "lat": 61.5779, "mag": 1.9}, + {"lon": -121.1191635, "lat": 36.5750008, "mag": 1}, + {"lon": -122.831665, "lat": 38.8371658, "mag": 0.81}, + {"lon": -118.8825, "lat": 38.0526, "mag": 0.7}, + {"lon": -116.5515, "lat": 33.4958333, "mag": 0.64}, + {"lon": -118.9881667, "lat": 37.6145, "mag": 0.43} + ] + }, + { + "name": "data_0", + "source": "data-fb86529059777efe8f13f1951acfb87c", + "transform": [ + {"type": "identifier", "as": "_vgsid_"}, + { + "type": "geojson", + "fields": ["lon", "lat"], + "signal": "view_10_geojson_0" + }, + { + "type": "geopoint", + "projection": "projection", + "fields": ["lon", "lat"], + "as": ["view_10_x", "view_10_y"] + }, + { + "type": "filter", + "expr": "isValid(datum[\"mag\"]) && isFinite(+datum[\"mag\"])" + } + ] + } + ], + "projections": [ + { + "name": "projection", + "size": {"signal": "[width, height]"}, + "fit": {"signal": "view_10_geojson_0"}, + "type": "mercator" + } + ], + "signals": [ + { + "name": "unit", + "value": {}, + "on": [ + {"events": "pointermove", "update": "isTuple(group()) ? group() : unit"} + ] + }, + { + "name": "geo_interval_init_tick", + "value": null, + "on": [ + { + "events": "timer{1}", + "update": "geo_interval_init_tick === null ? {} : geo_interval_init_tick" + } + ] + }, + { + "name": "param_9", + "update": "vlSelectionResolve(\"param_9_store\", \"union\")" + }, + { + "name": "projection_center", + "update": "invert(\"projection\", [width/2, height/2])" + }, + { + "name": "param_9_init", + "init": "[scale(\"projection\", [-50, projection_center[1]]), scale(\"projection\", [-110, projection_center[1]])]" + }, + { + "name": "param_9_longitude", + "init": "[param_9_init[0][0], param_9_init[1][0]]", + "on": [ + { + "events": { + "source": "scope", + "type": "pointerdown", + "filter": [ + "!event.item || event.item.mark.name !== \"param_9_brush\"" + ] + }, + "update": "[x(unit), x(unit)]" + }, + { + "events": { + "source": "window", + "type": "pointermove", + "consume": true, + "between": [ + { + "source": "scope", + "type": "pointerdown", + "filter": [ + "!event.item || event.item.mark.name !== \"param_9_brush\"" + ] + }, + {"source": "window", "type": "pointerup"} + ] + }, + "update": "[param_9_longitude[0], clamp(x(unit), 0, width)]" + }, + { + "events": [{"source": "view", "type": "dblclick"}], + "update": "[0, 0]" + }, + { + "events": {"signal": "param_9_translate_delta"}, + "update": "clampRange(panLinear(param_9_translate_anchor.extent_x, param_9_translate_delta.x / span(param_9_translate_anchor.extent_x)), 0, width)" + }, + { + "events": {"signal": "param_9_zoom_delta"}, + "update": "clampRange(zoomLinear(param_9_longitude, param_9_zoom_anchor.x, param_9_zoom_delta), 0, width)" + } + ] + }, + { + "name": "param_9_tuple", + "on": [ + { + "events": [ + {"signal": "param_9_longitude"}, + {"signal": "geo_interval_init_tick"} + ], + "update": "vlSelectionTuples(intersect([[param_9_longitude[0], 0],[param_9_longitude[1], height]], {markname: \"view_10_marks\"}, unit.mark), {unit: \"view_10\"})" + } + ] + }, + { + "name": "param_9_translate_anchor", + "value": {}, + "on": [ + { + "events": [ + { + "source": "scope", + "type": "pointerdown", + "markname": "param_9_brush" + } + ], + "update": "{x: x(unit), y: y(unit), extent_x: slice(param_9_longitude)}" + } + ] + }, + { + "name": "param_9_translate_delta", + "value": {}, + "on": [ + { + "events": [ + { + "source": "window", + "type": "pointermove", + "consume": true, + "between": [ + { + "source": "scope", + "type": "pointerdown", + "markname": "param_9_brush" + }, + {"source": "window", "type": "pointerup"} + ] + } + ], + "update": "{x: param_9_translate_anchor.x - x(unit), y: param_9_translate_anchor.y - y(unit)}" + } + ] + }, + { + "name": "param_9_zoom_anchor", + "on": [ + { + "events": [ + { + "source": "scope", + "type": "wheel", + "consume": true, + "markname": "param_9_brush" + } + ], + "update": "{x: x(unit), y: y(unit)}" + } + ] + }, + { + "name": "param_9_zoom_delta", + "on": [ + { + "events": [ + { + "source": "scope", + "type": "wheel", + "consume": true, + "markname": "param_9_brush" + } + ], + "force": true, + "update": "pow(1.001, event.deltaY * pow(16, event.deltaMode))" + } + ] + }, + { + "name": "param_9_modify", + "on": [ + { + "events": {"signal": "param_9_tuple"}, + "update": "modify(\"param_9_store\", param_9_tuple, true)" + } + ] + } + ], + "marks": [ + { + "name": "param_9_brush_bg", + "type": "rect", + "clip": true, + "encode": { + "enter": {"fill": {"value": "#333"}, "fillOpacity": {"value": 0.125}}, + "update": { + "x": [ + { + "test": "data(\"param_9_store\").length && data(\"param_9_store\")[0].unit === \"view_10\"", + "signal": "param_9_longitude[0]" + }, + {"value": 0} + ], + "y": [ + { + "test": "data(\"param_9_store\").length && data(\"param_9_store\")[0].unit === \"view_10\"", + "value": 0 + }, + {"value": 0} + ], + "x2": [ + { + "test": "data(\"param_9_store\").length && data(\"param_9_store\")[0].unit === \"view_10\"", + "signal": "param_9_longitude[1]" + }, + {"value": 0} + ], + "y2": [ + { + "test": "data(\"param_9_store\").length && data(\"param_9_store\")[0].unit === \"view_10\"", + "field": {"group": "height"} + }, + {"value": 0} + ] + } + } + }, + { + "name": "view_10_marks", + "type": "symbol", + "style": ["circle"], + "interactive": true, + "from": {"data": "data_0"}, + "encode": { + "update": { + "opacity": {"value": 0.35}, + "tooltip": { + "signal": "{\"lon\": format(datum[\"lon\"], \"\"), \"lat\": format(datum[\"lat\"], \"\"), \"mag\": format(datum[\"mag\"], \"\")}" + }, + "fill": [ + { + "test": "length(data(\"param_9_store\")) && vlSelectionIdTest(\"param_9_store\", datum)", + "value": "goldenrod" + }, + {"value": "steelblue"} + ], + "ariaRoleDescription": {"value": "circle"}, + "description": { + "signal": "\"lon: \" + (format(datum[\"lon\"], \"\")) + \"; lat: \" + (format(datum[\"lat\"], \"\")) + \"; mag: \" + (format(datum[\"mag\"], \"\"))" + }, + "x": {"field": "view_10_x"}, + "y": {"field": "view_10_y"}, + "size": {"scale": "size", "field": "mag"}, + "shape": {"value": "circle"} + } + } + }, + { + "name": "param_9_brush", + "type": "rect", + "clip": true, + "encode": { + "enter": {"fill": {"value": "transparent"}}, + "update": { + "x": [ + { + "test": "data(\"param_9_store\").length && data(\"param_9_store\")[0].unit === \"view_10\"", + "signal": "param_9_longitude[0]" + }, + {"value": 0} + ], + "y": [ + { + "test": "data(\"param_9_store\").length && data(\"param_9_store\")[0].unit === \"view_10\"", + "value": 0 + }, + {"value": 0} + ], + "x2": [ + { + "test": "data(\"param_9_store\").length && data(\"param_9_store\")[0].unit === \"view_10\"", + "signal": "param_9_longitude[1]" + }, + {"value": 0} + ], + "y2": [ + { + "test": "data(\"param_9_store\").length && data(\"param_9_store\")[0].unit === \"view_10\"", + "field": {"group": "height"} + }, + {"value": 0} + ], + "stroke": [ + { + "test": "param_9_longitude[0] !== param_9_longitude[1]", + "value": "white" + }, + {"value": null} + ] + } + } + } + ], + "scales": [ + { + "name": "size", + "type": "pow", + "domain": [0, 7], + "range": [1, 1000], + "exponent": 4, + "zero": true + } + ], + "legends": [ + { + "size": "size", + "symbolType": "circle", + "title": "mag", + "encode": { + "symbols": { + "update": { + "fill": {"value": "steelblue"}, + "opacity": {"value": 0.35}, + "stroke": {"value": "transparent"} + } + } + } + } + ] +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-specs/vl-convert/remote_images.vg.json b/avenger-vega-test-data/vega-specs/vl-convert/remote_images.vg.json new file mode 100644 index 0000000..5657f02 --- /dev/null +++ b/avenger-vega-test-data/vega-specs/vl-convert/remote_images.vg.json @@ -0,0 +1,129 @@ +{ + "$schema": "https://vega.github.io/schema/vega/v5.json", + "background": "white", + "padding": 5, + "width": 200, + "height": 200, + "style": "cell", + "data": [ + { + "name": "source_0", + "values": [ + { + "x": 0.5, + "y": 0.5, + "img": "https://upload.wikimedia.org/wikipedia/commons/a/a0/Firefox_logo%2C_2019.svg" + }, + { + "x": 1.5, + "y": 1.5, + "img": "https://vega.github.io/vega-datasets/data/gimp.png" + }, + { + "x": 2.5, + "y": 2.5, + "img": "https://vega.github.io/vega-datasets/data/7zip.png" + } + ] + }, + { + "name": "data_0", + "source": "source_0", + "transform": [ + { + "type": "filter", + "expr": "isValid(datum[\"x\"]) && isFinite(+datum[\"x\"]) && isValid(datum[\"y\"]) && isFinite(+datum[\"y\"])" + } + ] + } + ], + "marks": [ + { + "name": "marks", + "type": "image", + "style": ["image"], + "from": {"data": "data_0"}, + "encode": { + "update": { + "description": { + "signal": "\"x: \" + (format(datum[\"x\"], \"\")) + \"; y: \" + (format(datum[\"y\"], \"\")) + \"; img: \" + (isValid(datum[\"img\"]) ? datum[\"img\"] : \"\"+datum[\"img\"])" + }, + "xc": {"scale": "x", "field": "x"}, + "width": {"value": 50}, + "yc": {"scale": "y", "field": "y"}, + "height": {"value": 50}, + "url": { + "signal": "isValid(datum[\"img\"]) ? datum[\"img\"] : \"\"+datum[\"img\"]" + } + } + } + } + ], + "scales": [ + { + "name": "x", + "type": "linear", + "domain": {"data": "data_0", "field": "x"}, + "range": [0, {"signal": "width"}], + "nice": true, + "zero": true + }, + { + "name": "y", + "type": "linear", + "domain": {"data": "data_0", "field": "y"}, + "range": [{"signal": "height"}, 0], + "nice": true, + "zero": true + } + ], + "axes": [ + { + "scale": "x", + "orient": "bottom", + "gridScale": "y", + "grid": true, + "tickCount": {"signal": "ceil(width/40)"}, + "domain": false, + "labels": false, + "aria": false, + "maxExtent": 0, + "minExtent": 0, + "ticks": false, + "zindex": 0 + }, + { + "scale": "y", + "orient": "left", + "gridScale": "x", + "grid": true, + "tickCount": {"signal": "ceil(height/40)"}, + "domain": false, + "labels": false, + "aria": false, + "maxExtent": 0, + "minExtent": 0, + "ticks": false, + "zindex": 0 + }, + { + "scale": "x", + "orient": "bottom", + "grid": false, + "title": "x", + "labelFlush": true, + "labelOverlap": true, + "tickCount": {"signal": "ceil(width/40)"}, + "zindex": 0 + }, + { + "scale": "y", + "orient": "left", + "grid": false, + "title": "y", + "labelOverlap": true, + "tickCount": {"signal": "ceil(height/40)"}, + "zindex": 0 + } + ] +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-specs/vl-convert/seattle-weather.vg.json b/avenger-vega-test-data/vega-specs/vl-convert/seattle-weather.vg.json new file mode 100644 index 0000000..d213b81 --- /dev/null +++ b/avenger-vega-test-data/vega-specs/vl-convert/seattle-weather.vg.json @@ -0,0 +1,614 @@ +{ + "$schema": "https://vega.github.io/schema/vega/v5.json", + "background": "white", + "padding": 5, + "width": 600, + "title": {"text": "Seattle Weather, 2012-2015", "anchor": "start"}, + "data": [ + {"name": "brush_store"}, + {"name": "click_store"}, + { + "name": "source_0", + "url": "https://raw.githubusercontent.com/vega/vega-datasets/next/data/seattle-weather.csv", + "format": {"type": "csv", "parse": {"date": "date"}} + }, + { + "name": "data_0", + "source": "source_0", + "transform": [ + { + "type": "filter", + "expr": "!length(data(\"click_store\")) || vlSelectionTest(\"click_store\", datum)" + }, + { + "field": "date", + "type": "timeunit", + "units": ["month", "date"], + "as": ["monthdate_date", "monthdate_date_end"] + }, + { + "type": "filter", + "expr": "(isDate(datum[\"monthdate_date\"]) || (isValid(datum[\"monthdate_date\"]) && isFinite(+datum[\"monthdate_date\"]))) && isValid(datum[\"temp_max\"]) && isFinite(+datum[\"temp_max\"]) && isValid(datum[\"precipitation\"]) && isFinite(+datum[\"precipitation\"])" + } + ] + }, + { + "name": "data_1", + "source": "source_0", + "transform": [ + { + "field": "date", + "type": "timeunit", + "units": ["month", "date"], + "as": ["monthdate_date", "monthdate_date_end"] + }, + { + "type": "filter", + "expr": "!length(data(\"brush_store\")) || vlSelectionTest(\"brush_store\", datum)" + }, + { + "type": "aggregate", + "groupby": ["weather"], + "ops": ["count"], + "fields": [null], + "as": ["__count"] + } + ] + } + ], + "signals": [ + {"name": "concat_0_height", "value": 300}, + {"name": "concat_1_y_step", "value": 20}, + { + "name": "concat_1_height", + "update": "bandspace(domain('concat_1_y').length, 0.1, 0.05) * concat_1_y_step" + }, + { + "name": "unit", + "value": {}, + "on": [ + {"events": "pointermove", "update": "isTuple(group()) ? group() : unit"} + ] + }, + { + "name": "brush", + "update": "vlSelectionResolve(\"brush_store\", \"union\")" + }, + { + "name": "click", + "update": "vlSelectionResolve(\"click_store\", \"union\", true, true)" + } + ], + "layout": {"padding": 20, "columns": 1, "bounds": "full", "align": "each"}, + "marks": [ + { + "type": "group", + "name": "concat_0_group", + "style": "cell", + "encode": { + "update": { + "width": {"signal": "width"}, + "height": {"signal": "concat_0_height"} + } + }, + "signals": [ + { + "name": "brush_x", + "value": [], + "on": [ + { + "events": { + "source": "scope", + "type": "pointerdown", + "filter": [ + "!event.item || event.item.mark.name !== \"brush_brush\"" + ] + }, + "update": "[x(unit), x(unit)]" + }, + { + "events": { + "source": "window", + "type": "pointermove", + "consume": true, + "between": [ + { + "source": "scope", + "type": "pointerdown", + "filter": [ + "!event.item || event.item.mark.name !== \"brush_brush\"" + ] + }, + {"source": "window", "type": "pointerup"} + ] + }, + "update": "[brush_x[0], clamp(x(unit), 0, width)]" + }, + { + "events": {"signal": "brush_scale_trigger"}, + "update": "[scale(\"concat_0_x\", brush_monthdate_date[0]), scale(\"concat_0_x\", brush_monthdate_date[1])]" + }, + { + "events": [{"source": "view", "type": "dblclick"}], + "update": "[0, 0]" + }, + { + "events": {"signal": "brush_translate_delta"}, + "update": "clampRange(panLinear(brush_translate_anchor.extent_x, brush_translate_delta.x / span(brush_translate_anchor.extent_x)), 0, width)" + }, + { + "events": {"signal": "brush_zoom_delta"}, + "update": "clampRange(zoomLinear(brush_x, brush_zoom_anchor.x, brush_zoom_delta), 0, width)" + } + ] + }, + { + "name": "brush_monthdate_date", + "on": [ + { + "events": {"signal": "brush_x"}, + "update": "brush_x[0] === brush_x[1] ? null : invert(\"concat_0_x\", brush_x)" + } + ] + }, + { + "name": "brush_scale_trigger", + "value": {}, + "on": [ + { + "events": [{"scale": "concat_0_x"}], + "update": "(!isArray(brush_monthdate_date) || (+invert(\"concat_0_x\", brush_x)[0] === +brush_monthdate_date[0] && +invert(\"concat_0_x\", brush_x)[1] === +brush_monthdate_date[1])) ? brush_scale_trigger : {}" + } + ] + }, + { + "name": "brush_tuple", + "on": [ + { + "events": [{"signal": "brush_monthdate_date"}], + "update": "brush_monthdate_date ? {unit: \"concat_0\", fields: brush_tuple_fields, values: [brush_monthdate_date]} : null" + } + ] + }, + { + "name": "brush_tuple_fields", + "value": [{"field": "monthdate_date", "channel": "x", "type": "R"}] + }, + { + "name": "brush_translate_anchor", + "value": {}, + "on": [ + { + "events": [ + { + "source": "scope", + "type": "pointerdown", + "markname": "brush_brush" + } + ], + "update": "{x: x(unit), y: y(unit), extent_x: slice(brush_x)}" + } + ] + }, + { + "name": "brush_translate_delta", + "value": {}, + "on": [ + { + "events": [ + { + "source": "window", + "type": "pointermove", + "consume": true, + "between": [ + { + "source": "scope", + "type": "pointerdown", + "markname": "brush_brush" + }, + {"source": "window", "type": "pointerup"} + ] + } + ], + "update": "{x: brush_translate_anchor.x - x(unit), y: brush_translate_anchor.y - y(unit)}" + } + ] + }, + { + "name": "brush_zoom_anchor", + "on": [ + { + "events": [ + { + "source": "scope", + "type": "wheel", + "consume": true, + "markname": "brush_brush" + } + ], + "update": "{x: x(unit), y: y(unit)}" + } + ] + }, + { + "name": "brush_zoom_delta", + "on": [ + { + "events": [ + { + "source": "scope", + "type": "wheel", + "consume": true, + "markname": "brush_brush" + } + ], + "force": true, + "update": "pow(1.001, event.deltaY * pow(16, event.deltaMode))" + } + ] + }, + { + "name": "brush_modify", + "on": [ + { + "events": {"signal": "brush_tuple"}, + "update": "modify(\"brush_store\", brush_tuple, true)" + } + ] + } + ], + "marks": [ + { + "name": "brush_brush_bg", + "type": "rect", + "clip": true, + "encode": { + "enter": { + "fill": {"value": "#333"}, + "fillOpacity": {"value": 0.125} + }, + "update": { + "x": [ + { + "test": "data(\"brush_store\").length && data(\"brush_store\")[0].unit === \"concat_0\"", + "signal": "brush_x[0]" + }, + {"value": 0} + ], + "y": [ + { + "test": "data(\"brush_store\").length && data(\"brush_store\")[0].unit === \"concat_0\"", + "value": 0 + }, + {"value": 0} + ], + "x2": [ + { + "test": "data(\"brush_store\").length && data(\"brush_store\")[0].unit === \"concat_0\"", + "signal": "brush_x[1]" + }, + {"value": 0} + ], + "y2": [ + { + "test": "data(\"brush_store\").length && data(\"brush_store\")[0].unit === \"concat_0\"", + "field": {"group": "height"} + }, + {"value": 0} + ] + } + } + }, + { + "name": "concat_0_marks", + "type": "symbol", + "style": ["point"], + "interactive": true, + "from": {"data": "data_0"}, + "encode": { + "update": { + "opacity": {"value": 0.7}, + "fill": {"value": "transparent"}, + "stroke": [ + { + "test": "!length(data(\"brush_store\")) || vlSelectionTest(\"brush_store\", datum)", + "scale": "color", + "field": "weather" + }, + {"value": "lightgray"} + ], + "ariaRoleDescription": {"value": "point"}, + "description": { + "signal": "\"Date: \" + (timeFormat(datum[\"monthdate_date\"], '%b')) + \"; Maximum Daily Temperature (C): \" + (format(datum[\"temp_max\"], \"\")) + \"; Weather: \" + (isValid(datum[\"weather\"]) ? datum[\"weather\"] : \"\"+datum[\"weather\"]) + \"; Precipitation: \" + (format(datum[\"precipitation\"], \"\"))" + }, + "x": {"scale": "concat_0_x", "field": "monthdate_date"}, + "y": {"scale": "concat_0_y", "field": "temp_max"}, + "size": {"scale": "size", "field": "precipitation"} + } + } + }, + { + "name": "brush_brush", + "type": "rect", + "clip": true, + "encode": { + "enter": {"fill": {"value": "transparent"}}, + "update": { + "x": [ + { + "test": "data(\"brush_store\").length && data(\"brush_store\")[0].unit === \"concat_0\"", + "signal": "brush_x[0]" + }, + {"value": 0} + ], + "y": [ + { + "test": "data(\"brush_store\").length && data(\"brush_store\")[0].unit === \"concat_0\"", + "value": 0 + }, + {"value": 0} + ], + "x2": [ + { + "test": "data(\"brush_store\").length && data(\"brush_store\")[0].unit === \"concat_0\"", + "signal": "brush_x[1]" + }, + {"value": 0} + ], + "y2": [ + { + "test": "data(\"brush_store\").length && data(\"brush_store\")[0].unit === \"concat_0\"", + "field": {"group": "height"} + }, + {"value": 0} + ], + "stroke": [ + {"test": "brush_x[0] !== brush_x[1]", "value": "white"}, + {"value": null} + ] + } + } + } + ], + "axes": [ + { + "scale": "concat_0_x", + "orient": "bottom", + "gridScale": "concat_0_y", + "grid": true, + "tickCount": {"signal": "ceil(width/40)"}, + "tickMinStep": { + "signal": "datetime(2001, 0, 2, 0, 0, 0, 0) - datetime(2001, 0, 1, 0, 0, 0, 0)" + }, + "domain": false, + "labels": false, + "aria": false, + "maxExtent": 0, + "minExtent": 0, + "ticks": false, + "zindex": 0 + }, + { + "scale": "concat_0_y", + "orient": "left", + "gridScale": "concat_0_x", + "grid": true, + "tickCount": {"signal": "ceil(concat_0_height/40)"}, + "domain": false, + "labels": false, + "aria": false, + "maxExtent": 0, + "minExtent": 0, + "ticks": false, + "zindex": 0 + }, + { + "scale": "concat_0_x", + "orient": "bottom", + "grid": false, + "title": "Date", + "format": "%b", + "labelFlush": true, + "labelOverlap": true, + "tickCount": {"signal": "ceil(width/40)"}, + "tickMinStep": { + "signal": "datetime(2001, 0, 2, 0, 0, 0, 0) - datetime(2001, 0, 1, 0, 0, 0, 0)" + }, + "zindex": 0 + }, + { + "scale": "concat_0_y", + "orient": "left", + "grid": false, + "title": "Maximum Daily Temperature (C)", + "labelOverlap": true, + "tickCount": {"signal": "ceil(concat_0_height/40)"}, + "zindex": 0 + } + ] + }, + { + "type": "group", + "name": "concat_1_group", + "style": "cell", + "encode": { + "update": { + "width": {"signal": "width"}, + "height": {"signal": "concat_1_height"} + } + }, + "signals": [ + { + "name": "click_tuple", + "on": [ + { + "events": [{"source": "scope", "type": "click"}], + "update": "datum && item().mark.marktype !== 'group' && indexof(item().mark.role, 'legend') < 0 ? {unit: \"concat_1\", fields: click_tuple_fields, values: [(item().isVoronoi ? datum.datum : datum)[\"weather\"]]} : null", + "force": true + }, + { + "events": [{"source": "view", "type": "dblclick"}], + "update": "null" + } + ] + }, + { + "name": "click_tuple_fields", + "value": [{"field": "weather", "channel": "color", "type": "E"}] + }, + { + "name": "click_toggle", + "value": false, + "on": [ + { + "events": [{"source": "scope", "type": "click"}], + "update": "event.shiftKey" + }, + { + "events": [{"source": "view", "type": "dblclick"}], + "update": "false" + } + ] + }, + { + "name": "click_modify", + "on": [ + { + "events": {"signal": "click_tuple"}, + "update": "modify(\"click_store\", click_toggle ? null : click_tuple, click_toggle ? null : true, click_toggle ? click_tuple : null)" + } + ] + } + ], + "marks": [ + { + "name": "concat_1_marks", + "type": "rect", + "style": ["bar"], + "interactive": true, + "from": {"data": "data_1"}, + "encode": { + "update": { + "fill": [ + { + "test": "!length(data(\"click_store\")) || vlSelectionTest(\"click_store\", datum)", + "scale": "color", + "field": "weather" + }, + {"value": "lightgray"} + ], + "ariaRoleDescription": {"value": "bar"}, + "description": { + "signal": "\"Count of Records: \" + (format(datum[\"__count\"], \"\")) + \"; Weather: \" + (isValid(datum[\"weather\"]) ? datum[\"weather\"] : \"\"+datum[\"weather\"]) + \"; weather: \" + (isValid(datum[\"weather\"]) ? datum[\"weather\"] : \"\"+datum[\"weather\"])" + }, + "x": {"scale": "concat_1_x", "field": "__count"}, + "x2": {"scale": "concat_1_x", "value": 0}, + "y": {"scale": "concat_1_y", "field": "weather"}, + "height": {"signal": "max(0.25, bandwidth('concat_1_y'))"} + } + } + } + ], + "axes": [ + { + "scale": "concat_1_x", + "orient": "bottom", + "gridScale": "concat_1_y", + "grid": true, + "tickCount": {"signal": "ceil(width/40)"}, + "domain": false, + "labels": false, + "aria": false, + "maxExtent": 0, + "minExtent": 0, + "ticks": false, + "zindex": 0 + }, + { + "scale": "concat_1_x", + "orient": "bottom", + "grid": false, + "title": "Count of Records", + "labelFlush": true, + "labelOverlap": true, + "tickCount": {"signal": "ceil(width/40)"}, + "zindex": 0 + }, + { + "scale": "concat_1_y", + "orient": "left", + "grid": false, + "title": "Weather", + "zindex": 0 + } + ] + } + ], + "scales": [ + { + "name": "color", + "type": "ordinal", + "domain": ["sun", "fog", "drizzle", "rain", "snow"], + "range": ["#e7ba52", "#a7a7a7", "#aec7e8", "#1f77b4", "#9467bd"] + }, + { + "name": "size", + "type": "linear", + "domain": [-1, 50], + "range": [0, 361], + "zero": true + }, + { + "name": "concat_0_x", + "type": "time", + "domain": {"data": "data_0", "field": "monthdate_date"}, + "range": [0, {"signal": "width"}] + }, + { + "name": "concat_0_y", + "type": "linear", + "domain": [-5, 40], + "range": [{"signal": "concat_0_height"}, 0], + "zero": true + }, + { + "name": "concat_1_x", + "type": "linear", + "domain": {"data": "data_1", "field": "__count"}, + "range": [0, {"signal": "width"}], + "nice": true, + "zero": true + }, + { + "name": "concat_1_y", + "type": "band", + "domain": {"data": "data_1", "field": "weather", "sort": true}, + "range": {"step": {"signal": "concat_1_y_step"}}, + "paddingInner": 0.1, + "paddingOuter": 0.05 + } + ], + "legends": [ + { + "title": "Weather", + "stroke": "color", + "symbolType": "circle", + "encode": {"symbols": {"update": {"opacity": {"value": 0.7}}}}, + "fill": "color" + }, + { + "title": "Precipitation", + "size": "size", + "symbolType": "circle", + "encode": { + "symbols": { + "update": { + "fill": {"value": "transparent"}, + "stroke": {"value": "lightgray"}, + "opacity": {"value": 0.7} + } + } + } + } + ] +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-specs/vl-convert/stocks_locale.vg.json b/avenger-vega-test-data/vega-specs/vl-convert/stocks_locale.vg.json new file mode 100644 index 0000000..2f8cab0 --- /dev/null +++ b/avenger-vega-test-data/vega-specs/vl-convert/stocks_locale.vg.json @@ -0,0 +1,150 @@ +{ + "$schema": "https://vega.github.io/schema/vega/v5.json", + "background": "white", + "padding": 5, + "width": 300, + "height": 300, + "style": "cell", + "data": [ + { + "name": "source_0", + "url": "https://cdn.jsdelivr.net/npm/vega-datasets@v1.29.0/data/stocks.csv", + "format": {"type": "csv", "parse": {"date": "date"}}, + "transform": [ + {"type": "filter", "expr": "year(datum.date) == 2009"}, + { + "type": "impute", + "field": "price", + "groupby": ["symbol"], + "key": "date", + "method": "value", + "value": 0 + }, + { + "type": "stack", + "groupby": ["date"], + "field": "price", + "sort": {"field": ["symbol"], "order": ["descending"]}, + "as": ["price_start", "price_end"], + "offset": "zero" + } + ] + } + ], + "marks": [ + { + "name": "pathgroup", + "type": "group", + "from": { + "facet": { + "name": "faceted_path_main", + "data": "source_0", + "groupby": ["symbol"] + } + }, + "encode": { + "update": { + "width": {"field": {"group": "width"}}, + "height": {"field": {"group": "height"}} + } + }, + "marks": [ + { + "name": "marks", + "type": "area", + "style": ["area"], + "sort": {"field": "datum[\"date\"]"}, + "from": {"data": "faceted_path_main"}, + "encode": { + "update": { + "orient": {"value": "vertical"}, + "fill": {"scale": "color", "field": "symbol"}, + "description": { + "signal": "\"date: \" + (timeFormat(datum[\"date\"], '%b %d, %Y')) + \"; price: \" + (format(datum[\"price\"], \"$.0f\")) + \"; symbol: \" + (isValid(datum[\"symbol\"]) ? datum[\"symbol\"] : \"\"+datum[\"symbol\"])" + }, + "x": {"scale": "x", "field": "date"}, + "y": {"scale": "y", "field": "price_end"}, + "y2": {"scale": "y", "field": "price_start"}, + "defined": { + "signal": "isValid(datum[\"date\"]) && isFinite(+datum[\"date\"]) && isValid(datum[\"price\"]) && isFinite(+datum[\"price\"])" + } + } + } + } + ] + } + ], + "scales": [ + { + "name": "x", + "type": "time", + "domain": {"data": "source_0", "field": "date"}, + "range": [0, {"signal": "width"}] + }, + { + "name": "y", + "type": "linear", + "domain": {"data": "source_0", "fields": ["price_start", "price_end"]}, + "range": [{"signal": "height"}, 0], + "nice": true, + "zero": true + }, + { + "name": "color", + "type": "ordinal", + "domain": {"data": "source_0", "field": "symbol", "sort": true}, + "range": "category" + } + ], + "axes": [ + { + "scale": "x", + "orient": "bottom", + "gridScale": "y", + "grid": true, + "tickCount": {"signal": "ceil(width/40)"}, + "domain": false, + "labels": false, + "aria": false, + "maxExtent": 0, + "minExtent": 0, + "ticks": false, + "zindex": 0 + }, + { + "scale": "y", + "orient": "left", + "gridScale": "x", + "grid": true, + "tickCount": {"signal": "ceil(height/40)"}, + "domain": false, + "labels": false, + "aria": false, + "maxExtent": 0, + "minExtent": 0, + "ticks": false, + "zindex": 0 + }, + { + "scale": "x", + "orient": "bottom", + "grid": false, + "title": "date", + "labelFlush": true, + "labelOverlap": true, + "tickCount": {"signal": "ceil(width/40)"}, + "zindex": 0 + }, + { + "scale": "y", + "orient": "left", + "grid": false, + "title": "price", + "format": "$.0f", + "labelOverlap": true, + "tickCount": {"signal": "ceil(height/40)"}, + "zindex": 0 + } + ], + "legends": [{"fill": "color", "symbolType": "circle", "title": "symbol"}] +} \ No newline at end of file diff --git a/avenger-vega-test-data/vega-specs/vl-convert/table_heatmap.vg.json b/avenger-vega-test-data/vega-specs/vl-convert/table_heatmap.vg.json new file mode 100644 index 0000000..b8fffed --- /dev/null +++ b/avenger-vega-test-data/vega-specs/vl-convert/table_heatmap.vg.json @@ -0,0 +1,131 @@ +{ + "$schema": "https://vega.github.io/schema/vega/v5.json", + "background": "white", + "padding": 5, + "style": "cell", + "data": [ + { + "name": "source_0", + "url": "data/cars.json", + "format": {"type": "json"}, + "transform": [ + { + "type": "aggregate", + "groupby": ["Cylinders", "Origin"], + "ops": ["mean"], + "fields": ["Horsepower"], + "as": ["mean_Horsepower"] + }, + { + "type": "filter", + "expr": "isValid(datum[\"mean_Horsepower\"]) && isFinite(+datum[\"mean_Horsepower\"])" + } + ] + } + ], + "signals": [ + {"name": "x_step", "value": 20}, + {"name": "width", "update": "bandspace(domain('x').length, 0, 0) * x_step"}, + {"name": "y_step", "value": 20}, + {"name": "height", "update": "bandspace(domain('y').length, 0, 0) * y_step"} + ], + "marks": [ + { + "name": "marks", + "type": "rect", + "style": ["rect"], + "from": {"data": "source_0"}, + "encode": { + "update": { + "fill": {"scale": "color", "field": "mean_Horsepower"}, + "description": { + "signal": "\"Cylinders: \" + (isValid(datum[\"Cylinders\"]) ? datum[\"Cylinders\"] : \"\"+datum[\"Cylinders\"]) + \"; Origin: \" + (isValid(datum[\"Origin\"]) ? datum[\"Origin\"] : \"\"+datum[\"Origin\"]) + \"; Mean of Horsepower: \" + (format(datum[\"mean_Horsepower\"], \"\"))" + }, + "x": {"scale": "x", "field": "Cylinders"}, + "width": {"signal": "max(0.25, bandwidth('x'))"}, + "y": {"scale": "y", "field": "Origin"}, + "height": {"signal": "max(0.25, bandwidth('y'))"} + } + } + } + ], + "scales": [ + { + "name": "x", + "type": "band", + "domain": {"data": "source_0", "field": "Cylinders", "sort": true}, + "range": {"step": {"signal": "x_step"}}, + "paddingInner": 0, + "paddingOuter": 0 + }, + { + "name": "y", + "type": "band", + "domain": {"data": "source_0", "field": "Origin", "sort": true}, + "range": {"step": {"signal": "y_step"}}, + "paddingInner": 0, + "paddingOuter": 0 + }, + { + "name": "color", + "type": "linear", + "domain": {"data": "source_0", "field": "mean_Horsepower"}, + "range": "heatmap", + "interpolate": "hcl", + "zero": false + } + ], + "axes": [ + { + "scale": "x", + "orient": "bottom", + "gridScale": "y", + "grid": true, + "domain": false, + "labels": false, + "aria": false, + "maxExtent": 0, + "minExtent": 0, + "ticks": false, + "zindex": 1 + }, + { + "scale": "y", + "orient": "left", + "gridScale": "x", + "grid": true, + "domain": false, + "labels": false, + "aria": false, + "maxExtent": 0, + "minExtent": 0, + "ticks": false, + "zindex": 1 + }, + { + "scale": "x", + "orient": "bottom", + "grid": false, + "title": "Cylinders", + "labelAlign": "right", + "labelAngle": 270, + "labelBaseline": "middle", + "zindex": 1 + }, + { + "scale": "y", + "orient": "left", + "grid": false, + "title": "Origin", + "zindex": 1 + } + ], + "legends": [ + { + "fill": "color", + "gradientLength": {"signal": "clamp(height, 64, 200)"}, + "title": "Mean of Horsepower" + } + ], + "config": {"axis": {"grid": true, "tickBand": "extent"}} +} \ No newline at end of file diff --git a/avenger-vega/Cargo.toml b/avenger-vega/Cargo.toml index 61d5333..45ded3b 100644 --- a/avenger-vega/Cargo.toml +++ b/avenger-vega/Cargo.toml @@ -7,10 +7,17 @@ license = "BSD-3-Clause" [features] image-request = [ "reqwest",] +svg = ["resvg", "usvg", "tiny-skia"] [dependencies] cfg-if = "1" csscolorparser = "0.6.2" +resvg = { version="0.38.0", optional = true } +usvg = { version="0.38.0", optional = true} +tiny-skia = { version="0.11.3", optional = true} + +[dependencies.lazy_static] +workspace = true [dependencies.avenger] path = "../avenger" diff --git a/avenger-vega/src/error.rs b/avenger-vega/src/error.rs index 18785ff..382bdbb 100644 --- a/avenger-vega/src/error.rs +++ b/avenger-vega/src/error.rs @@ -24,9 +24,20 @@ pub enum AvengerVegaError { #[error("Image fetching is not enabled: {0}")] NoImageFetcherConfigured(String), + #[error("SVG image support is not enabled: {0}")] + SvgSupportDisabled(String), + #[cfg(feature = "image-request")] #[error("css color parse error")] ReqwestError(#[from] reqwest::Error), + + #[cfg(feature = "svg")] + #[error("usvg error: {0}")] + UsvgError(#[from] usvg::Error), + + #[cfg(feature = "svg")] + #[error("roxml Error: {0}")] + RoxmlError(#[from] usvg::roxmltree::Error), } impl From for AvengerVegaError { diff --git a/avenger-vega/src/image/mod.rs b/avenger-vega/src/image/mod.rs index 083a6e0..600c9a1 100644 --- a/avenger-vega/src/image/mod.rs +++ b/avenger-vega/src/image/mod.rs @@ -1,6 +1,9 @@ #[cfg(feature = "image-request")] pub mod reqwest_fetcher; +#[cfg(feature = "svg")] +pub mod svg; + #[cfg(feature = "image-request")] use crate::image::reqwest_fetcher::ReqwestImageFetcher; @@ -17,7 +20,7 @@ pub fn make_image_fetcher() -> Result, AvengerVegaError> { Ok(Box::new(ReqwestImageFetcher::new())) } else { Err(AvengerVegaError::NoImageFetcherConfigured( - "Image fetching requeres the image-reqwest feature flag".to_string() + "Image fetching requires the image-reqwest feature flag".to_string() )) } } diff --git a/avenger-vega/src/image/reqwest_fetcher.rs b/avenger-vega/src/image/reqwest_fetcher.rs index eb166e2..d716306 100644 --- a/avenger-vega/src/image/reqwest_fetcher.rs +++ b/avenger-vega/src/image/reqwest_fetcher.rs @@ -1,12 +1,17 @@ use crate::error::AvengerVegaError; use crate::image::ImageFetcher; use image::DynamicImage; -use reqwest::blocking::Client; +use reqwest::blocking::{Client, ClientBuilder}; + +#[cfg(feature = "svg")] +use crate::image::svg::svg_to_png; pub struct ReqwestImageFetcher { client: Client, } +static USER_AGENT: &str = concat!(env!("CARGO_PKG_NAME"), "/", env!("CARGO_PKG_VERSION")); + impl Default for ReqwestImageFetcher { fn default() -> Self { Self::new() @@ -16,14 +21,30 @@ impl Default for ReqwestImageFetcher { impl ReqwestImageFetcher { pub fn new() -> Self { Self { - client: Client::new(), + client: ClientBuilder::new() + .user_agent(USER_AGENT) + .build() + .expect("Failed to construct reqwest client"), } } } impl ImageFetcher for ReqwestImageFetcher { fn fetch_image(&self, url: &str) -> Result { - let img_data = self.client.get(url).send()?.bytes()?.to_vec(); + let img_data = if url.ends_with(".svg") { + cfg_if::cfg_if! { + if #[cfg(feature = "svg")] { + let svg_str = self.client.get(url).send()?.text()?; + svg_to_png(&svg_str, 2.0)? + } else { + return Err(AvengerVegaError::SvgSupportDisabled( + "Fetching SVG images requires the svg feature flag".to_string() + )) + } + } + } else { + self.client.get(url).send()?.bytes()?.to_vec() + }; let diffuse_image = image::load_from_memory(img_data.as_slice())?; Ok(diffuse_image) } diff --git a/avenger-vega/src/image/svg.rs b/avenger-vega/src/image/svg.rs new file mode 100644 index 0000000..429cb8f --- /dev/null +++ b/avenger-vega/src/image/svg.rs @@ -0,0 +1,54 @@ +use resvg::render; +use std::panic; +use std::sync::Mutex; +use usvg::fontdb::Database; +use usvg::{PostProcessingSteps, TreeParsing, TreePostProc}; + +use crate::error::AvengerVegaError; +lazy_static! { + pub static ref FONT_DB: Mutex = Mutex::new(init_font_db()); +} + +fn init_font_db() -> usvg::fontdb::Database { + let mut font_database = Database::new(); + font_database.load_system_fonts(); + font_database +} + +pub fn svg_to_png(svg: &str, scale: f32) -> Result, AvengerVegaError> { + // default ppi to 72 + let font_database = FONT_DB.lock().expect("Failed to acquire fontdb lock"); + + // catch_unwind so that we don't poison Mutexes + // if usvg/resvg panics + let response = panic::catch_unwind(|| { + let xml_opt = usvg::roxmltree::ParsingOptions { + allow_dtd: true, + ..Default::default() + }; + let opts = usvg::Options::default(); + let doc = usvg::roxmltree::Document::parse_with_options(svg, xml_opt)?; + let mut rtree = usvg::Tree::from_xmltree(&doc, &opts)?; + rtree.postprocess( + PostProcessingSteps { + convert_text_into_paths: true, + }, + &font_database, + ); + + let mut pixmap = tiny_skia::Pixmap::new( + (rtree.size.width() * scale) as u32, + (rtree.size.height() * scale) as u32, + ) + .unwrap(); + + let transform = tiny_skia::Transform::from_scale(scale, scale); + render(&rtree, transform, &mut pixmap.as_mut()); + Ok(pixmap.encode_png()) + }); + match response { + Ok(Ok(Ok(png_result))) => Ok(png_result), + Ok(Err(err)) => Err(err), + err => panic!("{err:?}"), + } +} diff --git a/avenger-vega/src/lib.rs b/avenger-vega/src/lib.rs index 5a01d46..aa343aa 100644 --- a/avenger-vega/src/lib.rs +++ b/avenger-vega/src/lib.rs @@ -1,3 +1,7 @@ +#[allow(unused_imports)] +#[macro_use] +extern crate lazy_static; + pub mod error; pub mod image; pub mod marks; diff --git a/avenger-vega/src/marks/arc.rs b/avenger-vega/src/marks/arc.rs index 5c20d6c..7620d1f 100644 --- a/avenger-vega/src/marks/arc.rs +++ b/avenger-vega/src/marks/arc.rs @@ -9,8 +9,8 @@ use serde::{Deserialize, Serialize}; #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] #[serde(rename_all = "camelCase")] pub struct VegaArcItem { - pub x: f32, - pub y: f32, + pub x: Option, + pub y: Option, pub start_angle: Option, // default 0.0 pub end_angle: Option, // default 0.0 pub outer_radius: Option, // default 0.0 @@ -33,6 +33,7 @@ impl VegaMarkContainer { // Init mark with scalar defaults let mut mark = ArcMark { clip: self.clip, + zindex: self.zindex, ..Default::default() }; if let Some(name) = &self.name { @@ -56,8 +57,8 @@ impl VegaMarkContainer { // For each item, append explicit values to corresponding vector for item in &self.items { - x.push(item.x); - y.push(item.y); + x.push(item.x.unwrap_or(0.0)); + y.push(item.y.unwrap_or(0.0)); if let Some(s) = item.start_angle { start_angle.push(s); diff --git a/avenger-vega/src/marks/area.rs b/avenger-vega/src/marks/area.rs index 5331d11..b5f07f5 100644 --- a/avenger-vega/src/marks/area.rs +++ b/avenger-vega/src/marks/area.rs @@ -9,8 +9,8 @@ use serde::{Deserialize, Serialize}; #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] #[serde(rename_all = "camelCase")] pub struct VegaAreaItem { - pub x: f32, - pub y: f32, + pub x: Option, + pub y: Option, pub x2: Option, pub y2: Option, pub orient: Option, @@ -62,6 +62,7 @@ impl VegaMarkContainer { let mut mark = AreaMark { clip: self.clip, + zindex: self.zindex, orientation, fill, stroke, @@ -80,8 +81,8 @@ impl VegaMarkContainer { let mut defined = Vec::::new(); for item in &self.items { - x.push(item.x); - y.push(item.y); + x.push(item.x.unwrap_or(0.0)); + y.push(item.y.unwrap_or(0.0)); if let Some(v) = &item.x2 { x2.push(*v); } diff --git a/avenger-vega/src/marks/group.rs b/avenger-vega/src/marks/group.rs index cd097d7..7f595fc 100644 --- a/avenger-vega/src/marks/group.rs +++ b/avenger-vega/src/marks/group.rs @@ -1,5 +1,5 @@ use crate::error::AvengerVegaError; -use crate::marks::mark::{VegaMark, VegaMarkItem}; +use crate::marks::mark::{VegaMark, VegaMarkContainer, VegaMarkItem}; use crate::marks::values::CssColorOrGradient; use avenger::marks::group::{GroupBounds, SceneGroup}; use avenger::marks::mark::SceneMark; @@ -10,10 +10,8 @@ use serde::{Deserialize, Serialize}; #[serde(rename_all = "camelCase")] pub struct VegaGroupItem { pub items: Vec, - #[serde(default)] - pub(crate) x: f32, - #[serde(default)] - pub(crate) y: f32, + pub x: Option, + pub y: Option, pub name: Option, pub width: Option, pub height: Option, @@ -30,85 +28,89 @@ pub struct VegaGroupItem { impl VegaMarkItem for VegaGroupItem {} -impl VegaGroupItem { - pub fn to_scene_graph(&self) -> Result { - let mut marks: Vec = Vec::new(); - for item in &self.items { - let item_marks: Vec<_> = match item { - VegaMark::Group(group) => group - .items - .iter() - .map(|item| Ok(SceneMark::Group(item.to_scene_graph()?))) - .collect::, AvengerVegaError>>()?, - VegaMark::Rect(mark) => { - vec![mark.to_scene_graph()?] - } - VegaMark::Rule(mark) => { - vec![mark.to_scene_graph()?] - } - VegaMark::Symbol(mark) => { - vec![mark.to_scene_graph()?] - } - VegaMark::Text(mark) => { - vec![mark.to_scene_graph()?] - } - VegaMark::Arc(mark) => { - vec![mark.to_scene_graph()?] - } - VegaMark::Path(mark) => { - vec![mark.to_scene_graph()?] - } - VegaMark::Shape(mark) => { - vec![mark.to_scene_graph()?] - } - VegaMark::Line(mark) => { - vec![mark.to_scene_graph()?] - } - VegaMark::Area(mark) => { - vec![mark.to_scene_graph()?] - } - VegaMark::Trail(mark) => { - vec![mark.to_scene_graph()?] - } - VegaMark::Image(mark) => { - vec![mark.to_scene_graph()?] - } - }; - marks.extend(item_marks); - } +impl VegaMarkContainer { + pub fn to_scene_graph(&self) -> Result, AvengerVegaError> { + let mut groups: Vec = Vec::new(); + for group_item in &self.items { + let mut marks: Vec = Vec::new(); + for item in &group_item.items { + let item_marks: Vec = match item { + VegaMark::Group(mark) => mark + .to_scene_graph()? + .into_iter() + .map(SceneMark::Group) + .collect(), + VegaMark::Rect(mark) => { + vec![mark.to_scene_graph()?] + } + VegaMark::Rule(mark) => { + vec![mark.to_scene_graph()?] + } + VegaMark::Symbol(mark) => { + vec![mark.to_scene_graph()?] + } + VegaMark::Text(mark) => { + vec![mark.to_scene_graph()?] + } + VegaMark::Arc(mark) => { + vec![mark.to_scene_graph()?] + } + VegaMark::Path(mark) => { + vec![mark.to_scene_graph()?] + } + VegaMark::Shape(mark) => { + vec![mark.to_scene_graph()?] + } + VegaMark::Line(mark) => { + vec![mark.to_scene_graph()?] + } + VegaMark::Area(mark) => { + vec![mark.to_scene_graph()?] + } + VegaMark::Trail(mark) => { + vec![mark.to_scene_graph()?] + } + VegaMark::Image(mark) => { + vec![mark.to_scene_graph()?] + } + }; + marks.extend(item_marks); + } - let mut gradients = Vec::::new(); - let fill = if let Some(v) = &self.fill { - let opacity = self.fill_opacity.unwrap_or(1.0) * self.opacity.unwrap_or(1.0); - Some(v.to_color_or_grad(opacity, &mut gradients)?) - } else { - None - }; - let stroke = if let Some(v) = &self.stroke { - let opacity = self.fill_opacity.unwrap_or(1.0) * self.opacity.unwrap_or(1.0); - Some(v.to_color_or_grad(opacity, &mut gradients)?) - } else { - None - }; + let mut gradients = Vec::::new(); + let fill = if let Some(v) = &group_item.fill { + let opacity = + group_item.fill_opacity.unwrap_or(1.0) * group_item.opacity.unwrap_or(1.0); + Some(v.to_color_or_grad(opacity, &mut gradients)?) + } else { + None + }; + let stroke = if let Some(v) = &group_item.stroke { + let opacity = + group_item.fill_opacity.unwrap_or(1.0) * group_item.opacity.unwrap_or(1.0); + Some(v.to_color_or_grad(opacity, &mut gradients)?) + } else { + None + }; - Ok(SceneGroup { - name: self - .name - .clone() - .unwrap_or_else(|| "group_item".to_string()), - bounds: GroupBounds { - x: self.x, - y: self.y, - width: self.width, - height: self.height, - }, - marks, - gradients, - fill, - stroke, - stroke_width: self.stroke_width, - stroke_offset: self.stroke_offset, - corner_radius: self.corner_radius, - }) + groups.push(SceneGroup { + name: self.name.clone().unwrap_or("group_mark".to_string()), + zindex: self.zindex, + bounds: GroupBounds { + x: group_item.x.unwrap_or(0.0), + y: group_item.y.unwrap_or(0.0), + width: group_item.width, + height: group_item.height, + }, + marks, + gradients, + fill, + stroke, + stroke_width: group_item.stroke_width, + stroke_offset: group_item.stroke_offset, + corner_radius: group_item.corner_radius, + }) + } + Ok(groups) } } diff --git a/avenger-vega/src/marks/image.rs b/avenger-vega/src/marks/image.rs index ad055c2..75639ad 100644 --- a/avenger-vega/src/marks/image.rs +++ b/avenger-vega/src/marks/image.rs @@ -11,10 +11,8 @@ use serde::{Deserialize, Serialize}; #[serde(rename_all = "camelCase")] pub struct VegaImageItem { pub url: String, - #[serde(default)] - pub x: f32, - #[serde(default)] - pub y: f32, + pub x: Option, + pub y: Option, pub width: Option, pub height: Option, #[serde(default = "default_true")] @@ -58,8 +56,8 @@ impl VegaMarkContainer { let fetcher = make_image_fetcher()?; for item in &self.items { - x.push(item.x); - y.push(item.y); + x.push(item.x.unwrap_or(0.0)); + y.push(item.y.unwrap_or(0.0)); align.push(item.align); baseline.push(item.baseline); @@ -110,6 +108,7 @@ impl VegaMarkContainer { width: EncodingValue::Array { values: width }, height: EncodingValue::Array { values: height }, indices, + zindex: self.zindex, }))) } } diff --git a/avenger-vega/src/marks/line.rs b/avenger-vega/src/marks/line.rs index 802689c..8cca85c 100644 --- a/avenger-vega/src/marks/line.rs +++ b/avenger-vega/src/marks/line.rs @@ -9,10 +9,8 @@ use serde::{Deserialize, Serialize}; #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] #[serde(rename_all = "camelCase")] pub struct VegaLineItem { - #[serde(default)] - pub x: f32, - #[serde(default)] - pub y: f32, + pub x: Option, + pub y: Option, pub defined: Option, pub stroke_cap: Option, pub stroke_join: Option, @@ -50,6 +48,7 @@ impl VegaMarkContainer { let mut mark = LineMark { clip: self.clip, + zindex: self.zindex, stroke, stroke_width, stroke_cap, @@ -65,8 +64,8 @@ impl VegaMarkContainer { let mut defined = Vec::::new(); for item in &self.items { - x.push(item.x); - y.push(item.y); + x.push(item.x.unwrap_or(0.0)); + y.push(item.y.unwrap_or(0.0)); if let Some(v) = item.defined { defined.push(v); } diff --git a/avenger-vega/src/marks/mark.rs b/avenger-vega/src/marks/mark.rs index 50e8cc4..f851722 100644 --- a/avenger-vega/src/marks/mark.rs +++ b/avenger-vega/src/marks/mark.rs @@ -40,6 +40,6 @@ pub struct VegaMarkContainer { #[serde(default)] pub items: Vec, pub name: Option, - role: Option, - zindex: Option, + pub role: Option, + pub zindex: Option, } diff --git a/avenger-vega/src/marks/path.rs b/avenger-vega/src/marks/path.rs index 611912c..41467e4 100644 --- a/avenger-vega/src/marks/path.rs +++ b/avenger-vega/src/marks/path.rs @@ -50,6 +50,7 @@ impl VegaMarkContainer { // Init mark with scalar defaults let mut mark = PathMark { clip: self.clip, + zindex: self.zindex, stroke_cap: first_cap, stroke_join: first_join, stroke_width, diff --git a/avenger-vega/src/marks/rect.rs b/avenger-vega/src/marks/rect.rs index a129e94..9fd0cb6 100644 --- a/avenger-vega/src/marks/rect.rs +++ b/avenger-vega/src/marks/rect.rs @@ -9,8 +9,8 @@ use serde::{Deserialize, Serialize}; #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] #[serde(rename_all = "camelCase")] pub struct VegaRectItem { - pub x: f32, - pub y: f32, + pub x: Option, + pub y: Option, pub width: Option, pub height: Option, pub x2: Option, @@ -31,6 +31,7 @@ impl VegaMarkContainer { pub fn to_scene_graph(&self) -> Result { let mut mark = RectMark { clip: self.clip, + zindex: self.zindex, ..Default::default() }; @@ -52,8 +53,8 @@ impl VegaMarkContainer { // For each item, append explicit values to corresponding vector for item in &self.items { - x.push(item.x); - y.push(item.y); + x.push(item.x.unwrap_or(0.0)); + y.push(item.y.unwrap_or(0.0)); if let Some(v) = item.width { width.push(v); } diff --git a/avenger-vega/src/marks/rule.rs b/avenger-vega/src/marks/rule.rs index e61bff0..6a7f36b 100644 --- a/avenger-vega/src/marks/rule.rs +++ b/avenger-vega/src/marks/rule.rs @@ -9,8 +9,8 @@ use serde::{Deserialize, Serialize}; #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] #[serde(rename_all = "camelCase")] pub struct VegaRuleItem { - pub x: f32, - pub y: f32, + pub x: Option, + pub y: Option, pub x2: Option, pub y2: Option, pub stroke: Option, @@ -29,6 +29,7 @@ impl VegaMarkContainer { // Init mark with scalar defaults let mut mark = RuleMark { clip: self.clip, + zindex: self.zindex, ..Default::default() }; if let Some(name) = &self.name { @@ -49,10 +50,12 @@ impl VegaMarkContainer { // For each item, append explicit values to corresponding vector for item in &self.items { - x0.push(item.x); - y0.push(item.y); - x1.push(item.x2.unwrap_or(item.x)); - y1.push(item.y2.unwrap_or(item.y)); + let x = item.x.unwrap_or(0.0); + let y = item.y.unwrap_or(0.0); + x0.push(x); + y0.push(y); + x1.push(item.x2.unwrap_or(x)); + y1.push(item.y2.unwrap_or(y)); if let Some(v) = &item.stroke { let opacity = item.stroke_opacity.unwrap_or(1.0) * item.opacity.unwrap_or(1.0); diff --git a/avenger-vega/src/marks/shape.rs b/avenger-vega/src/marks/shape.rs index a45e0d7..7d6b142 100644 --- a/avenger-vega/src/marks/shape.rs +++ b/avenger-vega/src/marks/shape.rs @@ -45,6 +45,7 @@ impl VegaMarkContainer { // Init mark with scalar defaults let mut mark = PathMark { clip: self.clip, + zindex: self.zindex, stroke_cap: first_cap, stroke_join: first_join, stroke_width, diff --git a/avenger-vega/src/marks/symbol.rs b/avenger-vega/src/marks/symbol.rs index 7bc628e..b731f3f 100644 --- a/avenger-vega/src/marks/symbol.rs +++ b/avenger-vega/src/marks/symbol.rs @@ -15,10 +15,8 @@ use serde::{Deserialize, Serialize}; #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] #[serde(rename_all = "camelCase")] pub struct VegaSymbolItem { - #[serde(default)] - pub x: f32, - #[serde(default)] - pub y: f32, + pub x: Option, + pub y: Option, pub fill: Option, pub opacity: Option, pub fill_opacity: Option, @@ -59,14 +57,17 @@ impl VegaMarkContainer { } else { ColorOrGradient::Color([0.0, 0.0, 0.0, 0.0]) }; + let x = item.x.unwrap_or(0.0); + let y = item.y.unwrap_or(0.0); let mark = LineMark { name: "".to_string(), clip: false, + zindex: self.zindex, len: 2, x: EncodingValue::Array { - values: vec![item.x - width / 2.0, item.x + width / 2.0], + values: vec![x - width / 2.0, x + width / 2.0], }, - y: EncodingValue::Scalar { value: item.y }, + y: EncodingValue::Scalar { value: y }, stroke, stroke_width: item.stroke_width.unwrap_or(1.0), stroke_cap: item.stroke_cap.unwrap_or_default(), @@ -96,6 +97,7 @@ impl VegaMarkContainer { stroke_width: None, stroke_offset: None, corner_radius: None, + zindex: None, })); } @@ -112,6 +114,7 @@ impl VegaMarkContainer { let mut mark = SymbolMark { stroke_width, clip: self.clip, + zindex: self.zindex, ..Default::default() }; @@ -134,8 +137,8 @@ impl VegaMarkContainer { // For each item, append explicit values to corresponding vector for item in &self.items { - x.push(item.x); - y.push(item.y); + x.push(item.x.unwrap_or(0.0)); + y.push(item.y.unwrap_or(0.0)); let base_opacity = item.opacity.unwrap_or(1.0); if let Some(v) = &item.fill { diff --git a/avenger-vega/src/marks/text.rs b/avenger-vega/src/marks/text.rs index 5077180..c627612 100644 --- a/avenger-vega/src/marks/text.rs +++ b/avenger-vega/src/marks/text.rs @@ -10,11 +10,9 @@ use serde::{Deserialize, Serialize}; #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] #[serde(rename_all = "camelCase")] pub struct VegaTextItem { - #[serde(default)] - pub x: f32, - #[serde(default)] - pub y: f32, - pub text: String, + pub x: Option, + pub y: Option, + pub text: Option, // Optional pub align: Option, @@ -40,6 +38,7 @@ impl VegaMarkContainer { // Init mark with scalar defaults let mut mark = TextMark { clip: self.clip, + zindex: self.zindex, ..Default::default() }; if let Some(name) = &self.name { @@ -64,9 +63,13 @@ impl VegaMarkContainer { let mut zindex = Vec::::new(); for item in &self.items { - x.push(item.x); - y.push(item.y); - text.push(item.text.clone()); + x.push(item.x.unwrap_or(0.0) + item.dx.unwrap_or(0.0)); + y.push(item.y.unwrap_or(0.0) + item.dy.unwrap_or(0.0)); + text.push(match item.text.clone() { + Some(serde_json::Value::String(s)) => s, + Some(serde_json::Value::Null) | None => "".to_string(), + Some(v) => v.to_string(), + }); if let Some(v) = item.align { align.push(v); @@ -145,12 +148,6 @@ impl VegaMarkContainer { if color.len() == len { mark.color = EncodingValue::Array { values: color }; } - if dx.len() == len { - mark.dx = EncodingValue::Array { values: dx }; - } - if dy.len() == len { - mark.dy = EncodingValue::Array { values: dy }; - } if font.len() == len { mark.font = EncodingValue::Array { values: font }; } diff --git a/avenger-vega/src/marks/trail.rs b/avenger-vega/src/marks/trail.rs index 9ab67f7..8ed5f90 100644 --- a/avenger-vega/src/marks/trail.rs +++ b/avenger-vega/src/marks/trail.rs @@ -9,8 +9,8 @@ use serde::{Deserialize, Serialize}; #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] #[serde(rename_all = "camelCase")] pub struct VegaTrailItem { - pub x: f32, - pub y: f32, + pub x: Option, + pub y: Option, pub defined: Option, pub size: Option, pub fill: Option, @@ -38,6 +38,7 @@ impl VegaMarkContainer { let mut mark = TrailMark { clip: self.clip, + zindex: self.zindex, gradients, stroke, ..Default::default() @@ -50,8 +51,8 @@ impl VegaMarkContainer { let mut defined = Vec::::new(); for item in &self.items { - x.push(item.x); - y.push(item.y); + x.push(item.x.unwrap_or(0.0)); + y.push(item.y.unwrap_or(0.0)); if let Some(v) = item.size { size.push(v); } diff --git a/avenger-vega/src/scene_graph.rs b/avenger-vega/src/scene_graph.rs index 215712c..4928230 100644 --- a/avenger-vega/src/scene_graph.rs +++ b/avenger-vega/src/scene_graph.rs @@ -14,15 +14,8 @@ pub struct VegaSceneGraph { impl VegaSceneGraph { pub fn to_scene_graph(&self) -> Result { - let groups = self - .scenegraph - .items - .iter() - .map(|group| group.to_scene_graph()) - .collect::, AvengerVegaError>>()?; - Ok(SceneGraph { - groups, + groups: self.scenegraph.to_scene_graph()?, width: self.width, height: self.height, origin: self.origin, diff --git a/avenger-wgpu/Cargo.toml b/avenger-wgpu/Cargo.toml index 2b5f780..ef89456 100644 --- a/avenger-wgpu/Cargo.toml +++ b/avenger-wgpu/Cargo.toml @@ -57,7 +57,7 @@ workspace = true [dev-dependencies.avenger-vega] path = "../avenger-vega" -features = [ "image-request",] +features = [ "image-request", "svg"] version = "0.0.2-a0" [dev-dependencies.serde_json] diff --git a/avenger-wgpu/src/canvas.rs b/avenger-wgpu/src/canvas.rs index 6b4193d..0774fcf 100644 --- a/avenger-wgpu/src/canvas.rs +++ b/avenger-wgpu/src/canvas.rs @@ -271,13 +271,19 @@ pub trait Canvas { self.add_rect_mark(&rect, group_bounds)?; } + // Add groups in order of zindex + let zindex = group.marks.iter().map(|m| m.zindex()).collect::>(); + let mut indices: Vec = (0..zindex.len()).collect(); + indices.sort_by_key(|i| zindex[*i].unwrap_or(0)); + // Compute new group bounds let group_bounds = GroupBounds { x: group_bounds.x + group.bounds.x, y: group_bounds.y + group.bounds.y, ..group.bounds }; - for mark in &group.marks { + for mark_ind in indices { + let mark = &group.marks[mark_ind]; match mark { SceneMark::Arc(mark) => { self.add_arc_mark(mark, group_bounds)?; @@ -328,7 +334,18 @@ pub trait Canvas { width: None, height: None, }; - for group in &scene_graph.groups { + + // Sort groups by zindex + let zindex = scene_graph + .groups + .iter() + .map(|g| g.zindex) + .collect::>(); + let mut indices: Vec = (0..zindex.len()).collect(); + indices.sort_by_key(|i| zindex[*i].unwrap_or(0)); + + for group_ind in &indices { + let group = &scene_graph.groups[*group_ind]; self.add_group_mark(group, group_bounds)?; } diff --git a/avenger-wgpu/src/marks/basic_mark.rs b/avenger-wgpu/src/marks/basic_mark.rs index 818b6ca..f1a2b9d 100644 --- a/avenger-wgpu/src/marks/basic_mark.rs +++ b/avenger-wgpu/src/marks/basic_mark.rs @@ -13,7 +13,7 @@ pub trait BasicMarkShader { type Uniform: bytemuck::Pod + bytemuck::Zeroable; fn verts(&self) -> &[Self::Vertex]; - fn indices(&self) -> &[u16]; + fn indices(&self) -> &[u32]; fn uniform(&self) -> Self::Uniform; fn batches(&self) -> &[BasicMarkBatch]; fn texture_size(&self) -> Extent3d; @@ -280,7 +280,7 @@ impl BasicMarkRenderer { render_pass.set_bind_group(1, &self.texture_bind_group, &[]); render_pass.set_vertex_buffer(0, self.vertex_buffer.slice(..)); render_pass - .set_index_buffer(self.index_buffer.slice(..), wgpu::IndexFormat::Uint16); + .set_index_buffer(self.index_buffer.slice(..), wgpu::IndexFormat::Uint32); render_pass.draw_indexed(batch.indices_range.clone(), 0, 0..1); } } diff --git a/avenger-wgpu/src/marks/image.rs b/avenger-wgpu/src/marks/image.rs index 9120bb8..a5e9f3d 100644 --- a/avenger-wgpu/src/marks/image.rs +++ b/avenger-wgpu/src/marks/image.rs @@ -61,7 +61,7 @@ impl ImageVertex { pub struct ImageShader { verts: Vec, - indices: Vec, + indices: Vec, uniform: ImageUniform, smooth: bool, shader: String, @@ -78,7 +78,7 @@ impl ImageShader { group_bounds: GroupBounds, ) -> Result { let mut verts: Vec = Vec::new(); - let mut indices: Vec = Vec::new(); + let mut indices: Vec = Vec::new(); let mut batches: Vec = Vec::new(); let aspect = mark.aspect; @@ -178,7 +178,7 @@ impl ImageShader { let tex_y1 = y1 as f32 / texture_size.height as f32; // Vertex index offset - let offset = verts.len() as u16; + let offset = verts.len() as u32; // Compute image left let left = match *align { @@ -276,7 +276,7 @@ impl BasicMarkShader for ImageShader { self.verts.as_slice() } - fn indices(&self) -> &[u16] { + fn indices(&self) -> &[u32] { self.indices.as_slice() } diff --git a/avenger-wgpu/src/marks/path.rs b/avenger-wgpu/src/marks/path.rs index c5941f5..8e76e2e 100644 --- a/avenger-wgpu/src/marks/path.rs +++ b/avenger-wgpu/src/marks/path.rs @@ -77,7 +77,7 @@ impl PathVertex { pub struct PathShader { verts: Vec, - indices: Vec, + indices: Vec, uniform: PathUniform, batches: Vec, texture_size: Extent3d, @@ -95,7 +95,7 @@ impl PathShader { let (gradients_image, texture_size) = build_gradients_image(&mark.gradients); let mut verts: Vec = Vec::new(); - let mut indices: Vec = Vec::new(); + let mut indices: Vec = Vec::new(); // Here, add style info to PathVertex for (path, fill, stroke, transform) in izip!( @@ -109,7 +109,7 @@ impl PathShader { let bbox = bounding_box(&path); // Create vertex/index buffer builder - let mut buffers: VertexBuffers = VertexBuffers::new(); + let mut buffers: VertexBuffers = VertexBuffers::new(); let mut builder = BuffersBuilder::new( &mut buffers, VertexPositions { @@ -145,7 +145,7 @@ impl PathShader { stroke_tessellator.tessellate_path(&path, &stroke_options, &mut builder)?; } - let index_offset = verts.len() as u16; + let index_offset = verts.len() as u32; verts.extend(buffers.vertices); indices.extend(buffers.indices.into_iter().map(|i| i + index_offset)); } @@ -241,7 +241,7 @@ impl PathShader { let bbox = bounding_box(&path); // Create vertex/index buffer builder - let mut buffers: VertexBuffers = VertexBuffers::new(); + let mut buffers: VertexBuffers = VertexBuffers::new(); let mut buffers_builder = BuffersBuilder::new( &mut buffers, VertexPositions { @@ -383,12 +383,12 @@ impl PathShader { }; let mut verts: Vec = Vec::new(); - let mut indices: Vec = Vec::new(); + let mut indices: Vec = Vec::new(); for path in &defined_paths { let bbox = bounding_box(path); // Create vertex/index buffer builder - let mut buffers: VertexBuffers = VertexBuffers::new(); + let mut buffers: VertexBuffers = VertexBuffers::new(); let mut buffers_builder = BuffersBuilder::new( &mut buffers, VertexPositions { @@ -416,7 +416,7 @@ impl PathShader { .with_line_width(mark.stroke_width); stroke_tessellator.tessellate_path(path, &stroke_options, &mut buffers_builder)?; - let index_offset = verts.len() as u16; + let index_offset = verts.len() as u32; verts.extend(buffers.vertices); indices.extend(buffers.indices.into_iter().map(|i| i + index_offset)); } @@ -484,7 +484,7 @@ impl PathShader { let bbox = bounding_box(&path); // Create vertex/index buffer builder - let mut buffers: VertexBuffers = VertexBuffers::new(); + let mut buffers: VertexBuffers = VertexBuffers::new(); let mut buffers_builder = BuffersBuilder::new( &mut buffers, VertexPositions { @@ -534,7 +534,7 @@ impl BasicMarkShader for PathShader { self.verts.as_slice() } - fn indices(&self) -> &[u16] { + fn indices(&self) -> &[u32] { self.indices.as_slice() } diff --git a/avenger-wgpu/src/marks/symbol.wgsl b/avenger-wgpu/src/marks/symbol.wgsl index c09c15a..47e8746 100644 --- a/avenger-wgpu/src/marks/symbol.wgsl +++ b/avenger-wgpu/src/marks/symbol.wgsl @@ -158,7 +158,7 @@ fn fs_main(in: VertexOutput) -> @location(0) vec4 { let buffer = 0.5 * chart_uniforms.scale; let dist = length(in.center - vec2(in.clip_position[0], in.clip_position[1])); - if (in.circle_stroke_width > 0.0) { + if (circle_stroke_color[3] > 0.0 && in.circle_stroke_width > 0.0) { let inner_radius = in.radius - in.circle_stroke_width * chart_uniforms.scale / 2.0; let outer_radius = in.radius + in.circle_stroke_width * chart_uniforms.scale / 2.0; if (dist > outer_radius + buffer * 2.0) { diff --git a/avenger-wgpu/src/marks/text.rs b/avenger-wgpu/src/marks/text.rs index 5ed8134..c15f1a0 100644 --- a/avenger-wgpu/src/marks/text.rs +++ b/avenger-wgpu/src/marks/text.rs @@ -81,8 +81,6 @@ pub struct TextInstance { pub align: TextAlignSpec, pub angle: f32, pub baseline: TextBaselineSpec, - pub dx: f32, - pub dy: f32, pub font: String, pub font_size: f32, pub font_weight: FontWeightSpec, @@ -105,8 +103,6 @@ impl TextInstance { mark.align_iter(), mark.angle_iter(), mark.baseline_iter(), - mark.dx_iter(), - mark.dy_iter(), mark.font_iter(), mark.font_size_iter(), mark.font_weight_iter(), @@ -122,8 +118,6 @@ impl TextInstance { align, angle, baseline, - dx, - dy, font, font_size, font_weight, @@ -137,8 +131,6 @@ impl TextInstance { align: *align, angle: *angle, baseline: *baseline, - dx: *dx, - dy: *dy, font: font.clone(), font_size: *font_size, font_weight: *font_weight, diff --git a/avenger-wgpu/tests/test_image_baselines.rs b/avenger-wgpu/tests/test_image_baselines.rs index 18a65f5..9a2a792 100644 --- a/avenger-wgpu/tests/test_image_baselines.rs +++ b/avenger-wgpu/tests/test_image_baselines.rs @@ -135,6 +135,24 @@ mod test_image_baselines { case("gradients", "symbol_radial_gradient", 0.002), case("clip", "clip_mixed_marks", 0.002), case("clip", "text_clip", 0.02), + case("vl-convert", "bar_chart_trellis_compact", 0.01), + case("vl-convert", "circle_binned", 0.01), + case("vl-convert", "circle_binned_base_url", 0.01), + case("vl-convert", "custom_projection", 0.001), + case("vl-convert", "float_font_size", 0.01), + case("vl-convert", "font_with_quotes", 0.02), + case("vl-convert", "geoScale", 0.01), + case("vl-convert", "line_with_log_scale", 0.01), + case("vl-convert", "long_legend_label", 0.01), + case("vl-convert", "lookup_urls", 0.01), + case("vl-convert", "maptile_background", 0.01), + case("vl-convert", "no_text_in_font_metrics", 0.01), + case("vl-convert", "numeric_font_weight", 0.02), + case("vl-convert", "quakes_initial_selection", 0.01), + case("vl-convert", "remote_images", 0.01), + case("vl-convert", "seattle-weather", 0.01), + case("vl-convert", "stocks_locale", 0.01), + case("vl-convert", "table_heatmap", 0.02), )] fn test_image_baseline(category: &str, spec_name: &str, tolerance: f64) { println!("{spec_name}"); @@ -164,6 +182,8 @@ mod test_image_baselines { .to_scene_graph() .expect("Failed to parse scene graph"); + // println!("{}", serde_json::to_string_pretty(&scene_graph).unwrap()); + let mut png_canvas = pollster::block_on(PngCanvas::new(CanvasDimensions { size: [scene_graph.width, scene_graph.height], scale: 2.0, diff --git a/avenger/src/marks/arc.rs b/avenger/src/marks/arc.rs index f857386..a113351 100644 --- a/avenger/src/marks/arc.rs +++ b/avenger/src/marks/arc.rs @@ -20,6 +20,7 @@ pub struct ArcMark { pub stroke: EncodingValue, pub stroke_width: EncodingValue, pub indices: Option>, + pub zindex: Option, } impl ArcMark { @@ -89,6 +90,7 @@ impl Default for ArcMark { }, stroke_width: EncodingValue::Scalar { value: 0.0 }, indices: None, + zindex: None, } } } diff --git a/avenger/src/marks/area.rs b/avenger/src/marks/area.rs index c79bcf8..2488daf 100644 --- a/avenger/src/marks/area.rs +++ b/avenger/src/marks/area.rs @@ -20,6 +20,7 @@ pub struct AreaMark { pub stroke_cap: StrokeCap, pub stroke_join: StrokeJoin, pub stroke_dash: Option>, + pub zindex: Option, } impl AreaMark { @@ -63,6 +64,7 @@ impl Default for AreaMark { stroke_cap: Default::default(), stroke_join: Default::default(), stroke_dash: None, + zindex: None, } } } diff --git a/avenger/src/marks/group.rs b/avenger/src/marks/group.rs index b09d2d7..a6490a6 100644 --- a/avenger/src/marks/group.rs +++ b/avenger/src/marks/group.rs @@ -33,6 +33,7 @@ pub struct SceneGroup { pub stroke_width: Option, pub stroke_offset: Option, pub corner_radius: Option, + pub zindex: Option, } impl SceneGroup { @@ -89,6 +90,7 @@ impl SceneGroup { value: self.corner_radius.unwrap_or(0.0), }, indices: None, + zindex: self.zindex, }) } } diff --git a/avenger/src/marks/image.rs b/avenger/src/marks/image.rs index 7f3b387..7c3b342 100644 --- a/avenger/src/marks/image.rs +++ b/avenger/src/marks/image.rs @@ -17,6 +17,7 @@ pub struct ImageMark { pub align: EncodingValue, pub baseline: EncodingValue, pub indices: Option>, + pub zindex: Option, } impl ImageMark { diff --git a/avenger/src/marks/line.rs b/avenger/src/marks/line.rs index 34e886e..5265114 100644 --- a/avenger/src/marks/line.rs +++ b/avenger/src/marks/line.rs @@ -16,6 +16,7 @@ pub struct LineMark { pub stroke_cap: StrokeCap, pub stroke_join: StrokeJoin, pub stroke_dash: Option>, + pub zindex: Option, } impl LineMark { @@ -47,6 +48,7 @@ impl Default for LineMark { stroke_cap: Default::default(), stroke_join: Default::default(), stroke_dash: None, + zindex: None, } } } diff --git a/avenger/src/marks/mark.rs b/avenger/src/marks/mark.rs index 63c3b46..70b667f 100644 --- a/avenger/src/marks/mark.rs +++ b/avenger/src/marks/mark.rs @@ -25,3 +25,21 @@ pub enum SceneMark { Image(Box), Group(SceneGroup), } + +impl SceneMark { + pub fn zindex(&self) -> Option { + match self { + Self::Arc(mark) => mark.zindex, + Self::Area(mark) => mark.zindex, + Self::Path(mark) => mark.zindex, + Self::Symbol(mark) => mark.zindex, + Self::Line(mark) => mark.zindex, + Self::Trail(mark) => mark.zindex, + Self::Rect(mark) => mark.zindex, + Self::Rule(mark) => mark.zindex, + Self::Text(mark) => mark.zindex, + Self::Image(mark) => mark.zindex, + Self::Group(mark) => mark.zindex, + } + } +} diff --git a/avenger/src/marks/path.rs b/avenger/src/marks/path.rs index a8ca9ba..05cbbcf 100644 --- a/avenger/src/marks/path.rs +++ b/avenger/src/marks/path.rs @@ -19,6 +19,7 @@ pub struct PathMark { pub stroke: EncodingValue, pub transform: EncodingValue, pub indices: Option>, + pub zindex: Option, } impl PathMark { @@ -62,6 +63,7 @@ impl Default for PathMark { value: PathTransform::identity(), }, indices: None, + zindex: None, } } } diff --git a/avenger/src/marks/rect.rs b/avenger/src/marks/rect.rs index 6a12924..06000d8 100644 --- a/avenger/src/marks/rect.rs +++ b/avenger/src/marks/rect.rs @@ -17,6 +17,7 @@ pub struct RectMark { pub stroke_width: EncodingValue, pub corner_radius: EncodingValue, pub indices: Option>, + pub zindex: Option, } impl RectMark { @@ -77,6 +78,7 @@ impl Default for RectMark { stroke_width: EncodingValue::Scalar { value: 0.0 }, corner_radius: EncodingValue::Scalar { value: 0.0 }, indices: None, + zindex: None, } } } diff --git a/avenger/src/marks/rule.rs b/avenger/src/marks/rule.rs index 376dbac..0b384da 100644 --- a/avenger/src/marks/rule.rs +++ b/avenger/src/marks/rule.rs @@ -17,6 +17,7 @@ pub struct RuleMark { pub stroke_width: EncodingValue, pub stroke_cap: EncodingValue, pub indices: Option>, + pub zindex: Option, } impl RuleMark { @@ -73,6 +74,7 @@ impl Default for RuleMark { value: StrokeCap::Butt, }, indices: None, + zindex: None, } } } diff --git a/avenger/src/marks/symbol.rs b/avenger/src/marks/symbol.rs index 8792ec0..36c7489 100644 --- a/avenger/src/marks/symbol.rs +++ b/avenger/src/marks/symbol.rs @@ -18,6 +18,7 @@ pub struct SymbolMark { pub stroke: EncodingValue, pub angle: EncodingValue, pub indices: Option>, + pub zindex: Option, } impl SymbolMark { @@ -70,6 +71,7 @@ impl Default for SymbolMark { angle: EncodingValue::Scalar { value: 0.0 }, indices: None, gradients: vec![], + zindex: None, } } } diff --git a/avenger/src/marks/text.rs b/avenger/src/marks/text.rs index e8d1d26..a9002a2 100644 --- a/avenger/src/marks/text.rs +++ b/avenger/src/marks/text.rs @@ -14,14 +14,13 @@ pub struct TextMark { pub baseline: EncodingValue, pub angle: EncodingValue, pub color: EncodingValue<[f32; 4]>, - pub dx: EncodingValue, - pub dy: EncodingValue, pub font: EncodingValue, pub font_size: EncodingValue, pub font_weight: EncodingValue, pub font_style: EncodingValue, pub limit: EncodingValue, pub indices: Option>, + pub zindex: Option, } impl TextMark { @@ -47,12 +46,6 @@ impl TextMark { pub fn color_iter(&self) -> Box + '_> { self.color.as_iter(self.len as usize, self.indices.as_ref()) } - pub fn dx_iter(&self) -> Box + '_> { - self.dx.as_iter(self.len as usize, self.indices.as_ref()) - } - pub fn dy_iter(&self) -> Box + '_> { - self.dx.as_iter(self.len as usize, self.indices.as_ref()) - } pub fn font_iter(&self) -> Box + '_> { self.font.as_iter(self.len as usize, self.indices.as_ref()) } @@ -94,8 +87,6 @@ impl Default for TextMark { color: EncodingValue::Scalar { value: [0.0, 0.0, 0.0, 1.0], }, - dx: EncodingValue::Scalar { value: 0.0 }, - dy: EncodingValue::Scalar { value: 0.0 }, font: EncodingValue::Scalar { value: "sans serif".to_string(), }, @@ -108,6 +99,7 @@ impl Default for TextMark { }, limit: EncodingValue::Scalar { value: 0.0 }, indices: None, + zindex: None, } } } diff --git a/avenger/src/marks/trail.rs b/avenger/src/marks/trail.rs index ab2cd83..f2238b4 100644 --- a/avenger/src/marks/trail.rs +++ b/avenger/src/marks/trail.rs @@ -13,6 +13,7 @@ pub struct TrailMark { pub y: EncodingValue, pub size: EncodingValue, pub defined: EncodingValue, + pub zindex: Option, } impl TrailMark { @@ -45,6 +46,7 @@ impl Default for TrailMark { defined: EncodingValue::Scalar { value: true }, stroke: ColorOrGradient::Color([0.0, 0.0, 0.0, 1.0]), gradients: vec![], + zindex: None, } } } diff --git a/examples/scatter-panning/Cargo.lock b/examples/scatter-panning/Cargo.lock index f3cd28d..7052701 100644 --- a/examples/scatter-panning/Cargo.lock +++ b/examples/scatter-panning/Cargo.lock @@ -159,6 +159,7 @@ dependencies = [ "cfg-if", "csscolorparser", "image", + "lazy_static", "lyon_extra", "lyon_path", "serde", diff --git a/examples/wgpu-winit/Cargo.lock b/examples/wgpu-winit/Cargo.lock index 2155e49..807601d 100644 --- a/examples/wgpu-winit/Cargo.lock +++ b/examples/wgpu-winit/Cargo.lock @@ -147,6 +147,7 @@ dependencies = [ "cfg-if", "csscolorparser", "image", + "lazy_static", "lyon_extra", "lyon_path", "serde",