<?xml version="1.0" encoding="UTF-8"?>
<rss  xmlns:atom="http://www.w3.org/2005/Atom" 
      xmlns:media="http://search.yahoo.com/mrss/" 
      xmlns:content="http://purl.org/rss/1.0/modules/content/" 
      xmlns:dc="http://purl.org/dc/elements/1.1/" 
      version="2.0">
<channel>
<title>vsheg.com</title>
<link>https://vsheg.com/posts/</link>
<atom:link href="https://vsheg.com/posts/index.xml" rel="self" type="application/rss+xml"/>
<description>sheg</description>
<generator>quarto-1.7.30</generator>
<lastBuildDate>Sat, 12 Apr 2025 00:00:00 GMT</lastBuildDate>
<item>
  <title>Running Tailscale DERP server behind Caddy</title>
  <link>https://vsheg.com/posts/2025-04-12-derp-caddy/</link>
  <description><![CDATA[ 




<p>When setting up a self-hosted DERP (Designated Encrypted Relay for Packets) server for Tailscale, you might encounter a situation where port 443 on your host machine is already in use by another service like Caddy. Unfortunately, it’s not easy to configure the DERP server behind a reverse proxy, as it does not work via HTTP and requires TLS management to be done manually (see <a href="https://github.com/tailscale/tailscale/issues/7745">this issue</a>).</p>
<p><span data-align="center"><img src="https://vsheg.com/posts/2025-04-12-derp-caddy/cover.png" class="img-fluid" style="width:50.0%"></span></p>
<section id="caddy-configuration" class="level1" data-number="1">
<h1 data-number="1"><span class="header-section-number">1</span> Caddy configuration</h1>
<p>Caddy can handle TLS certificate management automatically. We’ll configure it to reverse proxy requests to our DERP server running on an alternative port via HTTPS and to modify the TLS handshake.</p>
<p>The <code>tls_server_name</code> is handy here to tell Caddy what SNI (Server Name Indication) value to use when connecting to the backend DERP server. Without this, the TLS handshake would fail as the backend expects connections for the domain <code>derp.example.com</code>.</p>
<pre class="caddy"><code>https://derp.example.com {
    reverse_proxy {
       to https://localhost:8450

       transport http {
            tls_server_name derp.example.com
       }
    }
}</code></pre>
<p>Port 443 on the host is used by Caddy, so we bind the DERP server’s port 443 to port 8450 (or any other available) on the host.</p>
<p>Also, it’s possible to specify the key type for the TLS certificate. Use this if the default key type is not suitable.</p>
<pre class="caddy"><code>https://derp.example.com {
    tls {
        key_type rsa2048
    }

    reverse_proxy {
       to https://localhost:8450

       transport http {
            tls_server_name derp.example.com
       }
    }
}</code></pre>
</section>
<section id="docker-compose-setup" class="level1" data-number="2">
<h1 data-number="2"><span class="header-section-number">2</span> Docker compose setup</h1>
<p>We bind port 8450 only to localhost (127.0.0.1) to prevent direct access from the internet, expose the STUN/TURN UDP port 3478 to facilitate connection establishment, and mount Caddy’s automatically generated certificates into the DERP container for TLS management.</p>
<div class="sourceCode" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode yaml code-with-copy"><code class="sourceCode yaml"><span id="cb3-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">services</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<span id="cb3-2"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">derp</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<span id="cb3-3"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">image</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> fredliang/derper</span></span>
<span id="cb3-4"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">restart</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> unless-stopped</span></span>
<span id="cb3-5"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">ports</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<span id="cb3-6"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">            </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> 127.0.0.1:8450:443</span></span>
<span id="cb3-7"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">            </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> 0.0.0.0:3478:3478/udp</span></span>
<span id="cb3-8"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">environment</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<span id="cb3-9"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">            </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> DERP_DOMAIN=derp.example.com</span></span>
<span id="cb3-10"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">            </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> DERP_CERT_MODE=manual</span></span>
<span id="cb3-11"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">            </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> DERP_HTTP_PORT=-1</span></span>
<span id="cb3-12"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">volumes</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<span id="cb3-13"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">            </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> /var/lib/caddy/.local/share/caddy/certificates/acme-v02.api.letsencrypt.org-directory/derp.example.com/:/app/certs</span></span></code></pre></div>
</section>
<section id="configuring-tailscale-to-use-your-derp-server" class="level1" data-number="3">
<h1 data-number="3"><span class="header-section-number">3</span> Configuring Tailscale to use your DERP server</h1>
<p>The final step is to configure Tailscale to route traffic through your self-hosted DERP server. This is done by adding a custom DERP region in the Tailscale <a href="https://login.tailscale.com/admin/acls">admin console ACLs</a>.</p>
<p>The <code>OmitDefaultRegions</code> option controls whether clients connect only to the self-hosted DERP server or also to Tailscale’s official DERP servers. For initial testing, set this to <code>true</code>, and then adjust according to your needs.</p>
<div class="sourceCode" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode json code-with-copy"><code class="sourceCode json"><span id="cb4-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">{</span></span>
<span id="cb4-2">    <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">//</span> <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">...</span></span>
<span id="cb4-3"></span>
<span id="cb4-4">    <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">"derpMap"</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">:</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">{</span></span>
<span id="cb4-5">        <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">"OmitDefaultRegions"</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">:</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">true</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">,</span> <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">//</span> <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">connect</span> <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">only</span> <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">to</span> <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">self-hosted</span> <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">DERP</span></span>
<span id="cb4-6">        <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">"Regions"</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">:</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">{</span></span>
<span id="cb4-7">            <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">"900"</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">:</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">{</span></span>
<span id="cb4-8">                <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">"RegionID"</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">:</span>   <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">900</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb4-9">                <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">"RegionCode"</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">:</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"myDERP"</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">,</span> <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">//</span> <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">custom</span> <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">region</span> <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">code</span></span>
<span id="cb4-10">                <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">"Nodes"</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">:</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">[</span></span>
<span id="cb4-11">                    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">{</span></span>
<span id="cb4-12">                        <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">"Name"</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">:</span>     <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"1"</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb4-13">                        <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">"HostName"</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">:</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"derp.example.com"</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb4-14">                    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">}</span><span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb4-15">                <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">]</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb4-16">            <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">},</span></span>
<span id="cb4-17">        <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">},</span></span>
<span id="cb4-18">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">},</span></span>
<span id="cb4-19"></span>
<span id="cb4-20">    <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">//</span> <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">...</span></span>
<span id="cb4-21"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">}</span></span></code></pre></div>
<p>After testing, you might want to set <code>OmitDefaultRegions</code> to <code>false</code> to allow fallback to Tailscale’s official DERP servers.</p>


</section>

<div id="remark42">

</div> ]]></description>
  <category>networks</category>
  <guid>https://vsheg.com/posts/2025-04-12-derp-caddy/</guid>
  <pubDate>Sat, 12 Apr 2025 00:00:00 GMT</pubDate>
</item>
<item>
  <title>Fedora: Downgrade kernel</title>
  <link>https://vsheg.com/posts/2025-02-26-fedora-kernel-downgrade/</link>
  <description><![CDATA[ 




<p>Fedora’s approach to kernel updates is like a ‘rolling release’. Kernels are updated frequently, and this may break your system. After I applied Fedora updates, it installed the new kernel version <code>6.13.4</code>, causing the NVIDIA driver and CUDA drivers to <a href="https://bugzilla.rpmfusion.org/show_bug.cgi?id=7187">break</a>.</p>
<p>Interestingly, Fedora’s repo may not store previous kernel versions (this is when I considered switching to another Linux distro again), so the downgrading process is not straightforward. In this post, I want to summarize commands that worked for me.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><a href="cover.jpg" class="lightbox" data-gallery="quarto-lightbox-gallery-1" title="Linux"><img src="https://vsheg.com/posts/2025-02-26-fedora-kernel-downgrade/cover.jpg" class="img-fluid figure-img" alt="Linux"></a></p>
<figcaption>Linux</figcaption>
</figure>
</div>
<section id="select-another-kernel-in-bootloader" class="level2" data-number="1">
<h2 data-number="1" class="anchored" data-anchor-id="select-another-kernel-in-bootloader"><span class="header-section-number">1</span> Select another kernel in bootloader</h2>
<p>Fedora stores multiple kernel versions. You can select another kernel in the GRUB menu during boot or specify the default kernel in GRUB configuration.</p>
<p>To list all installed kernels, run:</p>
<div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb1-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sudo</span> grubby <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--info</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ALL</span></code></pre></div>
<details>
<summary>
Output
</summary>
<pre><code>index=0
kernel="/boot/vmlinuz-6.13.4-200.fc41.x86_64"
args="ro rootflags=subvol=root rhgb quiet $tuned_params rd.driver.blacklist=nouveau modprobe.blacklist=nouveau"
root="UUID=307f4fa2-e994-422a-b9a7-cb40b5a40331"
initrd="/boot/initramfs-6.13.4-200.fc41.x86_64.img $tuned_initrd"
title="Fedora Linux (6.13.4-200.fc41.x86_64) 41 (Workstation Edition)"
id="4085d2970ec5418cb3db95ead4b10a3c-6.13.4-200.fc41.x86_64"
index=1
kernel="/boot/vmlinuz-6.12.15-200.fc41.x86_64"
args="ro rootflags=subvol=root rhgb quiet $tuned_params rd.driver.blacklist=nouveau modprobe.blacklist=nouveau"
root="UUID=307f4fa2-e994-422a-b9a7-cb40b5a40331"
initrd="/boot/initramfs-6.12.15-200.fc41.x86_64.img $tuned_initrd"
title="Fedora Linux (6.12.15-200.fc41.x86_64) 41 (Workstation Edition)"
id="4085d2970ec5418cb3db95ead4b10a3c-6.12.15-200.fc41.x86_64"
index=2
kernel="/boot/vmlinuz-6.11.4-301.fc41.x86_64"
args="ro rootflags=subvol=root rhgb quiet $tuned_params rd.driver.blacklist=nouveau modprobe.blacklist=nouveau"
root="UUID=307f4fa2-e994-422a-b9a7-cb40b5a40331"
initrd="/boot/initramfs-6.11.4-301.fc41.x86_64.img $tuned_initrd"
title="Fedora Linux (6.11.4-301.fc41.x86_64) 41 (Workstation Edition)"
id="4085d2970ec5418cb3db95ead4b10a3c-6.11.4-301.fc41.x86_64"
index=3
kernel="/boot/vmlinuz-0-rescue-4085d2970ec5418cb3db95ead4b10a3c"
args="ro rootflags=subvol=root rhgb quiet rd.driver.blacklist=nouveau modprobe.blacklist=nouveau"
root="UUID=307f4fa2-e994-422a-b9a7-cb40b5a40331"
initrd="/boot/initramfs-0-rescue-4085d2970ec5418cb3db95ead4b10a3c.img"
title="Fedora Linux (0-rescue-4085d2970ec5418cb3db95ead4b10a3c) 41 (Workstation Edition)"
id="4085d2970ec5418cb3db95ead4b10a3c-0-rescue"</code></pre>
</details>
<p>In my case, three kernel versions were available: <code>6.13.4</code> (<code>index=0</code>), <code>6.12.15</code> (<code>index=1</code>), and <code>6.11.4</code> (<code>index=2</code>).</p>
<p>Specify the default kernel with the corresponding index:</p>
<div class="sourceCode" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb3-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sudo</span> grubby <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--set-default-index</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>1</span></code></pre></div>
<p>To verify that the default kernel has been set correctly:</p>
<div class="sourceCode" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb4-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sudo</span> grubby <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--default-index</span></span></code></pre></div>
<p>After rebooting, verify if your system already has all necessary kernel packages installed. If everything works correctly, no further action may be needed.</p>
<p>However, if packages aren’t available, you’ll need to identify which kernel packages are required. Typically, <code>kernel-devel</code> is sufficient for compiling kernel modules. Proceed to the next section to check available versions of <code>kernel-devel</code> and return here if necessary.</p>
</section>
<section id="downgrade-kernel-devel" class="level2" data-number="2">
<h2 data-number="2" class="anchored" data-anchor-id="downgrade-kernel-devel"><span class="header-section-number">2</span> Downgrade <code>kernel-devel</code></h2>
<p>After the reboot, check that the system is running the desired kernel version:</p>
<div class="sourceCode" id="cb5" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb5-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">uname</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-r</span></span></code></pre></div>
<p>To install kernel modules, you need to install the <code>kernel-devel</code> package that matches the kernel version. As not all kernels may be available in Fedora repo, find available versions:</p>
<div class="sourceCode" id="cb6" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb6-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sudo</span> dnf list kernel-devel</span></code></pre></div>
<details>
<summary>
Output
</summary>
<pre><code>Updating and loading repositories:
 Fedora 41 - x86_64 - Updates                                                                                                                                                                       100% |  24.3 KiB/s |  21.3 KiB |  00m01s
Repositories loaded.
Installed packages
kernel-devel.x86_64 6.11.4-301.fc41 fedora
kernel-devel.x86_64 6.13.4-200.fc41 updates</code></pre>
</details>
<p>In my case, only <code>kernel-devel-6.11.4-301.fc41</code> was available. I needed to return to downgrade the kernel from <code>6.12.15</code> (<code>index=1</code>) to <code>6.11.4</code> (<code>index=2</code>):</p>
<ul>
<li>Return to the previous kernel section, select the previous kernel version, and reboot.</li>
<li>After the reboot, continue with the <code>kernel-devel</code> downgrade.</li>
</ul>
<section id="option-1-explicitly-install-the-previous-version" class="level3">
<h3 class="anchored" data-anchor-id="option-1-explicitly-install-the-previous-version">Option 1: Explicitly install the previous version</h3>
<p>Now you can install the available version of the <code>kernel-devel</code> package:</p>
<div class="sourceCode" id="cb8" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb8-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sudo</span> dnf install kernel-devel-<span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">$(</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">uname</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-r</span><span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">)</span></span></code></pre></div>
</section>
<section id="option-2-implicitly-install-the-previous-version" class="level3">
<h3 class="anchored" data-anchor-id="option-2-implicitly-install-the-previous-version">Option 2: Implicitly install the previous version</h3>
<p>Alternatively, you can use the <code>dnf downgrade</code> command (it may work, or not):</p>
<div class="sourceCode" id="cb9" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb9-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sudo</span> dnf downgrade kernel-devel</span></code></pre></div>
<p>For compiling kernel modules, the <code>kernel-devel</code> package is typically sufficient.</p>
</section>
</section>
<section id="downgrade-kernel-headers-optional" class="level2" data-number="3">
<h2 data-number="3" class="anchored" data-anchor-id="downgrade-kernel-headers-optional"><span class="header-section-number">3</span> Downgrade <code>kernel-headers</code> (optional)</h2>
<p>The <code>kernel-headers</code> package is generally used for compiling user-space applications and may not be necessary for kernel module compilation. Not all headers might be available and sometimes it’s even not possible to find matching <code>kernel-devel</code> and <code>kernel-headers</code>.</p>
<p>The process is similar to <code>kernel-devel</code>:</p>
<div class="sourceCode" id="cb10" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb10-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sudo</span> dnf list kernel-headers</span></code></pre></div>
<div class="sourceCode" id="cb11" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb11-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sudo</span> dnf install kernel-headers-<span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">$(</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">uname</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-r</span><span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">)</span></span></code></pre></div>
<div class="sourceCode" id="cb12" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb12-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sudo</span> dnf downgrade kernel-headers</span></code></pre></div>
</section>
<section id="pin-kernel-version" class="level2" data-number="4">
<h2 data-number="4" class="anchored" data-anchor-id="pin-kernel-version"><span class="header-section-number">4</span> Pin kernel version</h2>
<p>As Fedora packages are updated frequently, you could simply avoid running the <code>dnf upgrade</code> command to prevent kernel updates for a few days. There’s a good chance that developers will fix the issue, allowing you to update to the latest kernel version later. However, this is not an ideal solution.</p>
<p>You can pin the kernel version by excluding specific packages from updates:</p>
<div class="sourceCode" id="cb13" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb13-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">nano</span> /etc/dnf/dnf.conf</span></code></pre></div>
<p>Add the following line:</p>
<div class="sourceCode" id="cb14" style="background: #f1f3f5;"><pre class="sourceCode txt code-with-copy"><code class="sourceCode default"><span id="cb14-1">exclude=kernel*</span></code></pre></div>
<p>N.B. Do not forget that you prevent kernel updates. Add a reminder to your to-dos in a couple of weeks to remove this line if you want to update the kernel.</p>
<hr>
</section>
<section id="bonus-reinstall-nvidia-driver" class="level2" data-number="5">
<h2 data-number="5" class="anchored" data-anchor-id="bonus-reinstall-nvidia-driver"><span class="header-section-number">5</span> Bonus: Reinstall NVIDIA driver</h2>
<p>This instruction should work generally but I needed to reinstall the NVIDIA driver after downgrading the kernel.</p>
<ol type="1">
<li><p>You may want to check which driver (<code>nouveau</code> or <code>nvidia</code>) is loaded:</p>
<div class="sourceCode" id="cb15" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb15-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">lsmod</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">|</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">grep</span> nouveau</span></code></pre></div>
<div class="sourceCode" id="cb16" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb16-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">lsmod</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">|</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">grep</span> nvidia</span></code></pre></div></li>
<li><p>Remove NVIDIA drivers if they were installed</p>
<div class="sourceCode" id="cb17" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb17-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sudo</span> dnf remove <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"*nvidia*"</span></span></code></pre></div></li>
<li><p>Install NVIDIA drivers:</p>
<div class="sourceCode" id="cb18" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb18-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sudo</span> dnf install akmod-nvidia xorg-x11-drv-nvidia-cuda</span></code></pre></div></li>
</ol>
<blockquote class="blockquote">
<p>Alternatively, if NVIDIA drivers were installed, you can use the <code>dnf reinstall</code> command:</p>
<div class="sourceCode" id="cb19" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb19-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sudo</span> dnf reinstall akmod-nvidia xorg-x11-drv-nvidia-cuda</span></code></pre></div>
</blockquote>
<ol start="4" type="1">
<li><p>Wait for the NVIDIA kernel module (<code>nvidia-kmod</code>) to compile. This waiting time (a few minutes) is important; if you reboot and force a rebuild, it may not load correctly.</p></li>
<li><p>You can initiate kernel modules compilation and update forcefully via</p>
<div class="sourceCode" id="cb20" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb20-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sudo</span> akmods <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--force</span></span></code></pre></div>
<p>If the module failed to compile, remove the driver, and try to switch to another kernel version.</p></li>
<li><p>Check that the NVIDIA driver is present, this will print its version:</p>
<div class="sourceCode" id="cb21" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb21-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">modinfo</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-F</span> version nvidia</span></code></pre></div>
<pre><code>565.77</code></pre></li>
</ol>
<p>After that, my GPU was detected and CUDA was working.</p>
<div class="sourceCode" id="cb23" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb23-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">nvidia-smi</span></span></code></pre></div>
<details>
<summary>
Output
</summary>
<pre><code>Wed Feb 26 21:18:46 2025
+-----------------------------------------------------------------------------------------+
| NVIDIA-SMI 565.77                 Driver Version: 565.77         CUDA Version: 12.7     |
|-----------------------------------------+------------------------+----------------------+
| GPU  Name                 Persistence-M | Bus-Id          Disp.A | Volatile Uncorr. ECC |
| Fan  Temp   Perf          Pwr:Usage/Cap |           Memory-Usage | GPU-Util  Compute M. |
|                                         |                        |               MIG M. |
|=========================================+========================+======================|
|   0  NVIDIA GeForce RTX 4090        Off |   00000000:01:00.0 Off |                  Off |
|  0%   46C    P8             14W /  450W |     277MiB /  24564MiB |      0%      Default |
|                                         |                        |                  N/A |
+-----------------------------------------+------------------------+----------------------+

+-----------------------------------------------------------------------------------------+
| Processes:                                                                              |
|  GPU   GI   CI        PID   Type   Process name                              GPU Memory |
|        ID   ID                                                               Usage      |
|=========================================================================================|
|    0   N/A  N/A      1735      G   /usr/bin/gnome-shell                          210MiB |
|    0   N/A  N/A      1791      G   /usr/bin/Xwayland                               8MiB |
+-----------------------------------------------------------------------------------------+</code></pre>
</details>


</section>

<div id="remark42">

</div> ]]></description>
  <category>admin</category>
  <guid>https://vsheg.com/posts/2025-02-26-fedora-kernel-downgrade/</guid>
  <pubDate>Wed, 26 Feb 2025 00:00:00 GMT</pubDate>
</item>
<item>
  <title>Hiding VPN behind Caddy web server on port 443</title>
  <link>https://vsheg.com/posts/2025-01-22-xray-caddy/</link>
  <description><![CDATA[ 




<p>VLESS VPN protocol implemented in Xray can use HTTP for transport, allowing web servers to handle traffic proxying, encryption, and custom routing.</p>
<p>Caddy is a cool &amp; lightweight web server with automatic HTTPS encryption and HTTP/3. It provides reverse proxy capabilities, WebSocket<sup>1</sup> and gRPC<sup>2</sup> support.</p>
<div class="no-row-height column-margin column-container"><div id="fn1"><p><sup>1</sup>&nbsp;used in real-time communication scenarios, e.g.&nbsp;chat applications; it provides a persistent bi-directional connection between client and server and works on top of HTTP</p></div><div id="fn2"><p><sup>2</sup>&nbsp;used in server-to-server communication (usually), but it can also be used for client-server communication; it works on top of HTTP too</p></div></div><div class="callout callout-style-simple callout-warning no-icon">
<div class="callout-body d-flex">
<div class="callout-icon-container">
<i class="callout-icon no-icon"></i>
</div>
<div class="callout-body-container">
<p>This is <strong>not</strong> a detailed guide on setting up Caddy or Xray. This is <strong>advanced configuration</strong> and assumes <strong>you have knowledge</strong> of both. If not, do not add extra complexity to your setup. Find step-by-step guides, learn the basics, and then return here.</p>
</div>
</div>
</div>
<p>I assume Caddy is installed on a host machine as the <strong>main web server</strong> and Docker is used to run services like 3X-UI; also you have a domain with manageable DNS records, i.e.&nbsp;you can create <code>A</code>/<code>AAAA</code> and <code>CNAME</code> records for subdomains.</p>
<section id="general-idea" class="level2 page-columns page-full" data-number="1">
<h2 data-number="1" class="anchored" data-anchor-id="general-idea"><span class="header-section-number">1</span> General idea</h2>
<p>Caddy can route traffic to different handlers based on URL path, e.g.&nbsp;<code>service.example.com/path1</code> and <code>service.example.com/path2</code> can be handled by different services.</p>
<p>This allows serving your main website while directing specific paths to the Xray server. For example, you can run a website at <code>service.example.com</code> while the 3X-UI interface is accessible at <code>service.example.com/secret/3x/</code>. You can host multiple services on the same domain and <strong>port</strong>, differentiating them by path.</p>
<p>When you communicate with any service via HTTPS encrypted connection, intermediaries<sup>3</sup> (like your ISP) can see only the domain<sup>4</sup> (<code>service.example.com</code>) and the port (443), but all paths (e.g.&nbsp;in <code>service.example.com/secret/3x</code>) are encrypted.</p>
<div class="no-row-height column-margin column-container"><div id="fn3"><p><sup>3</sup>&nbsp;If you use a CDN (e.g.&nbsp;Cloudflare) to proxy your website data, it decrypts and re-encrypts HTTPS traffic to cache it and apply routing rules. CDNs create two separate SSL connections: one between the client and the CDN, and another between the CDN and the origin server (your VPS). While all connections over the internet are encrypted, the CDN can see your data decrypted (unless you use double encryption).</p>
<p>This means that the CDN can see the full URL path and the data you send and receive. The difference between a CDN and an ISP is that you must explicitly configure a CDN by adding DNS records to route traffic through it. Only then can the CDN issue certificates for your domain, present them to clients, and decrypt traffic to apply caching and routing rules. ISPs or third-party CDNs cannot decrypt your traffic and see the full URL paths without explicitly configuring DNS records to allow them to do so.</p></div><div id="fn4"><p><sup>4</sup>&nbsp;ISPs (and other intermediaries) can identify the domain in several ways:</p>
<ul>
<li>Via unencrypted DNS queries when resolving the domain name to an IP address. This can be mitigated by using DNS-over-HTTPS (DoH) or DNS-over-TLS (DoT) to encrypt DNS queries.</li>
<li>Via SNI (Server Name Indication) during the TLS handshake when the client sends the domain name in plaintext ClientHello message before establishing a secure connection. This can be mitigated by using ECH (Encrypted Client Hello) technology.</li>
<li>Via rDNS (reverse DNS) lookup. IP packets contain source and destination IP addresses. When a client communicates with a server, the server’s IP address is visible and can be resolved to a domain name. This can be mitigated by using a VPN or proxy.</li>
</ul>
</div></div><p><img src="https://latex.codecogs.com/png.latex?%0A%5Cunderbrace%7B%5Ctext%7Bhttps%7D%7D_%5Ctext%7Bprotocol%7D%20%5Ctext%7B://%7D%20%5Cunderbrace%7B%5Ctext%7Bservice.example.com%7D%7D_%5Ctext%7Bvisible%7D%20%5Cunderbrace%7B%5Ctext%7B/secret/3x/panel%7D%7D_%5Ctext%7Bhidden%7D%0A"></p>
<p>However, paths are encrypted, VPN servers use lots of traffic, so it’s not hard to suspect that traffic for a specific domain <code>service.example.com</code> is VPN traffic. To remove suspicion, you should host a real website on the same domain. This website should not be a hello world page, but a real web service with potentially high traffic, e.g.&nbsp;a file sharing or video streaming service which you may actually <strong>want to use</strong>.</p>
<div class="callout callout-style-simple callout-warning no-icon">
<div class="callout-body d-flex">
<div class="callout-icon-container">
<i class="callout-icon no-icon"></i>
</div>
<div class="callout-body-container">
<p>Here <code>/secret/*</code> paths are used to hide services behind a real website. It’s better to choose a less obvious path in a real setup; any random path would work better.</p>
</div>
</div>
</div>
<p>The following diagram shows<sup>5</sup> key components of this setup.</p>
<div class="no-row-height column-margin column-container"><div id="fn5"><p><sup>5</sup>&nbsp;arrows indicate flow from users to services, but all connections are bidirectional</p></div></div><div class="cell" data-layout-align="default">
<div class="cell-output-display">
<div>
<p></p><figure class="figure"><p></p>
<div>
<pre class="mermaid mermaid-js">flowchart TD

    subgraph Users
        user1([User 1])
        user2([User 2])
        user3([User 3])
    end

    subgraph Intermediates
        ISP([ISP])
        CDN(["CDN (optional)"])
        Hoster([hoster])
    end

    subgraph VPS
        
        caddy443([Caddy &lt;br&gt; host's 0.0.0.0:443])

        subgraph Web service
            dockerweb([Docker &lt;br&gt; localhost:8081])
            service([web service &lt;br&gt; container's 0.0.0.0:80])
        end

        subgraph 3X-UI service
          dockervpn([Docker &lt;br&gt; localhost:8443 ])
          xxxvpn([Xray VPN &lt;br&gt; container's 0.0.0.0:443])
          
          dockerui([Docker &lt;br&gt; localhost:8080])
          xxxui([3X-UI web console &lt;br&gt; container's 0.0.0.0:80])
          
          dockersub([Docker &lt;br&gt; localhost:8180])
          xxxsub([3X-UI subscriptions &lt;br&gt; container's 0.0.0.0:81])
        end

    end

    user1 --&gt;|HTTP/1.1 :443| ISP
    user2 --&gt;|HTTP/2 :443| ISP
    user3 --&gt;|HTTP/3 :443| ISP
    ISP --&gt; CDN --&gt; Hoster

    Hoster --&gt;|HTTP/1.1 :443| caddy443
    Hoster --&gt;|HTTP/2 :443| caddy443
    Hoster --&gt;|HTTP/3 :443| caddy443

    caddy443 --&gt;|/secret/websocket| dockervpn --&gt;|NAT| xxxvpn
    caddy443 --&gt;|/secret/3x*| dockerui --&gt;|NAT| xxxui
    caddy443 --&gt;|"/secret/sub* (optional)"| dockersub --&gt;|NAT| xxxsub 
    
    caddy443 --&gt;|other| dockerweb --&gt;|NAT| service
</pre>
</div>
<p></p></figure><p></p>
</div>
</div>
</div>
</section>
<section id="prerequisites" class="level2" data-number="2">
<h2 data-number="2" class="anchored" data-anchor-id="prerequisites"><span class="header-section-number">2</span> Prerequisites</h2>
<p>Choose a service you want to use. This service:</p>
<ul>
<li><p>must have a web UI that will be accessible via the domain <code>service.example.com</code> when anyone visits it.</p></li>
<li><p>should have a descriptive subdomain, e.g.&nbsp;<code>file-sharing.example.com</code> to make it look like a real service. It’s no use to hide VPN traffic behind a subdomain like <code>vpn.example.com</code>, <code>kill-dictate.example.com</code>, or <code>xxx.example.com</code>. Here <code>service.example.com</code> is a placeholder, it’s better to create a better name.</p></li>
<li><p>should be recognizable and could reasonably have high traffic usage, such as video streaming (e.g.&nbsp;<a href="https://github.com/jellyfin/jellyfin">Jellyfin</a>) or file sharing (e.g.&nbsp;<a href="https://github.com/stonith404/pingvin-share">Pingvin Share</a>).</p></li>
</ul>
<p>Maybe you already have a service like this.</p>
</section>
<section id="set-up-real-web-service" class="level2" data-number="3">
<h2 data-number="3" class="anchored" data-anchor-id="set-up-real-web-service"><span class="header-section-number">3</span> Set up real web service</h2>
<p>I recommend using Docker compose to run services. On your VPS, create a directory for your service, e.g.&nbsp;<code>~/example/</code> and a <code>compose.yaml</code> file in it.</p>
<div class="code-with-filename">
<div class="code-with-filename-file">
<pre><strong>~/example/compose.yaml</strong></pre>
</div>
<div class="sourceCode" id="annotated-cell-1" data-filename="~/example/compose.yaml" style="background: #f1f3f5;"><pre class="sourceCode yaml code-annotation-code code-with-copy code-annotated"><code class="sourceCode yaml"><span id="annotated-cell-1-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">services</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-1" data-target-annotation="1">1</button><span id="annotated-cell-1-2" class="code-annotation-target"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">  </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">example</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-1" data-target-annotation="2">2</button><span id="annotated-cell-1-3" class="code-annotation-target"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">image</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> ghcr.io/stonith404/pingvin-share</span></span>
<span id="annotated-cell-1-4"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">restart</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> unless-stopped</span></span>
<span id="annotated-cell-1-5"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">ports</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-1" data-target-annotation="3">3</button><span id="annotated-cell-1-6" class="code-annotation-target"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> 127.0.0.1:8081:80</span></span><div class="code-annotation-gutter-bg"></div><div class="code-annotation-gutter"></div></code></pre></div>
</div>
<dl class="code-annotation-container-hidden code-annotation-container-grid">
<dt data-target-cell="annotated-cell-1" data-target-annotation="1">1</dt>
<dd>
<span data-code-cell="annotated-cell-1" data-code-lines="2" data-code-annotation="1">This is the service name, yours may be <code>filesharring</code>, <code>mediaserver</code>, or just the real name of the service if it’s recognizable (e.g.&nbsp;<code>plex</code> for <a href="https://github.com/plexinc/pms-docker">Plex Media Server</a>).</span>
</dd>
<dt data-target-cell="annotated-cell-1" data-target-annotation="2">2</dt>
<dd>
<span data-code-cell="annotated-cell-1" data-code-lines="3" data-code-annotation="2">Replace with the image name of your file sharing service.</span>
</dd>
<dt data-target-cell="annotated-cell-1" data-target-annotation="3">3</dt>
<dd>
<span data-code-cell="annotated-cell-1" data-code-lines="6" data-code-annotation="3">Assign appropriate ports, here we bind the service to the VPS’s <code>8081</code> port.</span>
</dd>
</dl>
<p>When you bind a Docker container to <code>0.0.0.0</code> it’s accessible from outside the host machine (VPS). Instead, bind the service to <code>127.0.0.1</code> so it won’t be accessible externally - this way you don’t need firewall rules or encryption. We’ll use Caddy’s reverse proxy capabilities to handle this automatically.</p>
</section>
<section id="make-website-accessible-via-caddy" class="level2" data-number="4">
<h2 data-number="4" class="anchored" data-anchor-id="make-website-accessible-via-caddy"><span class="header-section-number">4</span> Make website accessible via Caddy</h2>
<p>Assuming that you’ve already set up subdomain <code>service.example.com</code> and configured DNS records. To make the service accessible, you need to configure Caddy to route all requests to <code>service.example.com</code>:</p>
<div class="code-with-filename">
<div class="code-with-filename-file">
<pre><strong>/etc/caddy/Caddyfile</strong></pre>
</div>
<div class="sourceCode" id="annotated-cell-2" data-filename="/etc/caddy/Caddyfile" style="background: #f1f3f5;"><pre class="sourceCode txt code-annotation-code code-with-copy code-annotated"><code class="sourceCode default"><span id="annotated-cell-2-1">https://service.example.com {</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-2" data-target-annotation="1">1</button><span id="annotated-cell-2-2" class="code-annotation-target">  reverse_proxy http://localhost:8081</span>
<span id="annotated-cell-2-3">}</span><div class="code-annotation-gutter-bg"></div><div class="code-annotation-gutter"></div></code></pre></div>
</div>
<dl class="code-annotation-container-hidden code-annotation-container-grid">
<dt data-target-cell="annotated-cell-2" data-target-annotation="1">1</dt>
<dd>
<span data-code-cell="annotated-cell-2" data-code-lines="2" data-code-annotation="1">Look carefully at the port, it should match the one you used in the <code>compose.yaml</code> file for the web service.</span>
</dd>
</dl>
<p>To apply new config Caddy, run <code>sudo systemctl reload caddy</code>, to check logs use <code>sudo systemctl status caddy</code>. Caddy will automatically obtain and renew SSL certificates for your domain. Sometimes it may take a few minutes. Reload Caddy and check the service is accessible via <code>https://service.example.com</code>.</p>
</section>
<section id="configure-3x-ui" class="level2 page-columns page-full" data-number="5">
<h2 data-number="5" class="anchored" data-anchor-id="configure-3x-ui"><span class="header-section-number">5</span> Configure 3X-UI</h2>
<p>Configure ordinary 3X-UI without reverse proxy. Assuming that similar to the previous example, you have a directory for 3X-UI, e.g.&nbsp;<code>~/3x-ui/</code> and a <code>compose.yaml</code> file in it:</p>
<div class="code-with-filename">
<div class="code-with-filename-file">
<pre><strong>~/3x-ui/compose.yaml</strong></pre>
</div>
<div class="sourceCode" id="annotated-cell-3" data-filename="~/3x-ui/compose.yaml" style="background: #f1f3f5;"><pre class="sourceCode yaml code-annotation-code code-with-copy code-annotated"><code class="sourceCode yaml"><span id="annotated-cell-3-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">services</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<span id="annotated-cell-3-2"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">  </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">3x-ui</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<span id="annotated-cell-3-3"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">image</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> ghcr.io/mhsanaei/3x-ui</span></span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-3" data-target-annotation="1">1</button><span id="annotated-cell-3-4" class="code-annotation-target"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">hostname</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> service.example.com</span></span>
<span id="annotated-cell-3-5"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">volumes</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<span id="annotated-cell-3-6"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">      </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> ./db/:/etc/x-ui/</span></span>
<span id="annotated-cell-3-7"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">      </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> ./cert/:/root/cert/</span></span>
<span id="annotated-cell-3-8"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">restart</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> unless-stopped</span></span>
<span id="annotated-cell-3-9"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">ports</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-3" data-target-annotation="2">2</button><span id="annotated-cell-3-10" class="code-annotation-target"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> 127.0.0.1:8443:443</span><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"> # VPN</span></span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-3" data-target-annotation="3">3</button><span id="annotated-cell-3-11" class="code-annotation-target"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> 127.0.0.1:8080:80</span><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"> # web UI</span></span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-3" data-target-annotation="4">4</button><span id="annotated-cell-3-12" class="code-annotation-target"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> 127.0.0.1:8180:81</span><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"> # subscription service</span></span><div class="code-annotation-gutter-bg"></div><div class="code-annotation-gutter"></div></code></pre></div>
</div>
<dl class="code-annotation-container-hidden code-annotation-container-grid">
<dt data-target-cell="annotated-cell-3" data-target-annotation="1">1</dt>
<dd>
<span data-code-cell="annotated-cell-3" data-code-lines="4" data-code-annotation="1">Same domain as for the web service, we use it to hide VPN traffic.</span>
</dd>
<dt data-target-cell="annotated-cell-3" data-target-annotation="2">2</dt>
<dd>
<span data-code-cell="annotated-cell-3" data-code-lines="10" data-code-annotation="2">You must configure the VPN port in the 3X-UI, here we bind it to the VPS’s <code>8443</code> port.</span>
</dd>
<dt data-target-cell="annotated-cell-3" data-target-annotation="3">3</dt>
<dd>
<span data-code-cell="annotated-cell-3" data-code-lines="11" data-code-annotation="3">Again, configure the 3X-UI web interface port, here we bind it to the VPS’s <code>8080</code> port.</span>
</dd>
<dt data-target-cell="annotated-cell-3" data-target-annotation="4">4</dt>
<dd>
<span data-code-cell="annotated-cell-3" data-code-lines="12" data-code-annotation="4">Subscription service is optional, ignore it if you don’t use it.</span>
</dd>
</dl>
<p>Note that Xray is bound to <code>localhost</code> (<code>127.0.0.1</code>), meaning it won’t be directly accessible from outside the host machine. Again, we will use Caddy to forward requests to Xray based on the URL path.</p>
<div class="callout callout-style-simple callout-tip no-icon">
<div class="callout-body d-flex">
<div class="callout-icon-container">
<i class="callout-icon no-icon"></i>
</div>
<div class="callout-body-container">
<p>Temporary use <code>network_mode: host</code> in the <code>compose.yaml</code> to test Xray without Caddy, it should already work with specified ports. See more in the P.S. section above.</p>
</div>
</div>
</div>
<p>I briefly describe how to configure Xray, but you should understand what you are doing and how to apply it to your specific case:</p>
<ul>
<li>In 3X-UI set listen IPs to <code>0.0.0.0</code> (for both web <code>80</code> and VPN <code>443</code> ports), binding to <code>0.0.0.0</code> inside the container makes it accessible from outside, where outside means the host machine (VPS) with Caddy.</li>
<li>Select and configure transport WebSocket protocol<sup>6</sup>.</li>
<li>Configure inbound paths (e.g.&nbsp;<code>/secret/3x</code> for UI and <code>/secret/websocket</code> for transport<sup>7</sup>) in 3X-UI settings. Paths are arbitrary but they must match in both 3X-UI and Caddy configs.</li>
<li>Configure listen IPs, ports and paths for subscription service if you use it; it can be proxied through Caddy too.</li>
</ul>
<div class="no-row-height column-margin column-container"><div id="fn6"><p><sup>6</sup>&nbsp;You can use gRPC too, but it does not support path-based routing, so it will always point to <code>service.example.com/</code>, it can still be managed by Caddy (see example below), but it looses the point of hiding VPN traffic behind a real service</p></div><div id="fn7"><p><sup>7</sup>&nbsp;If the real web service uses <code>/secret*</code> paths, choose another for Xray, e.g.&nbsp;<code>/top-secret/*</code></p></div></div><div class="callout callout-style-simple callout-warning no-icon">
<div class="callout-body d-flex">
<div class="callout-icon-container">
<i class="callout-icon no-icon"></i>
</div>
<div class="callout-body-container">
<p>All this steps are iterative, you will need to reconfigure Xray when Caddy is set up and vice versa. Do not take this too literally.</p>
</div>
</div>
</div>
</section>
<section id="configure-caddy-to-proxy-specific-paths-to-xray" class="level2 page-columns page-full" data-number="6">
<h2 data-number="6" class="anchored" data-anchor-id="configure-caddy-to-proxy-specific-paths-to-xray"><span class="header-section-number">6</span> Configure Caddy to proxy specific paths to Xray</h2>
<p>After all basic components are here, you can add Xray-specific routing based on your chosen transport method.</p>
<section id="option-a-websocket-transport" class="level3 page-columns page-full">
<h3 class="anchored" data-anchor-id="option-a-websocket-transport">Option A: WebSocket transport</h3>

<div class="no-row-height column-margin column-container"><div class="">
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><a href="inbound-websocket.png" class="lightbox" data-gallery="quarto-lightbox-gallery-1" title="3X-UI inbound configuration for WebSocket transport"><img src="https://vsheg.com/posts/2025-01-22-xray-caddy/inbound-websocket.png" class="img-fluid figure-img" alt="3X-UI inbound configuration for WebSocket transport"></a></p>
<figcaption>3X-UI inbound configuration for WebSocket transport</figcaption>
</figure>
</div>
</div></div><p>To set up WebSocket transport:</p>
<ol type="1">
<li>configure Xray’s inbound to use WebSocket transport in 3X-UI panel, set path to <code>/secret/websocket</code>;</li>
<li>add WebSocket routing to your Caddy configuration.</li>
</ol>
<div class="code-with-filename">
<div class="code-with-filename-file">
<pre><strong>/etc/caddy/Caddyfile</strong></pre>
</div>
<div class="sourceCode" id="annotated-cell-4" data-filename="/etc/caddy/Caddyfile" style="background: #f1f3f5;"><pre class="sourceCode txt code-annotation-code code-with-copy code-annotated"><code class="sourceCode default"><span id="annotated-cell-4-1">https://service.example.com {</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-4" data-target-annotation="1">1</button><span id="annotated-cell-4-2" class="code-annotation-target">  reverse_proxy /secret/3x* http://localhost:8080</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-4" data-target-annotation="2">2</button><span id="annotated-cell-4-3" class="code-annotation-target">  reverse_proxy /secret/websocket* http://localhost:8443</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-4" data-target-annotation="3">3</button><span id="annotated-cell-4-4" class="code-annotation-target">  reverse_proxy http://localhost:8081</span>
<span id="annotated-cell-4-5">}</span><div class="code-annotation-gutter-bg"></div><div class="code-annotation-gutter"></div></code></pre></div>
</div>
<dl class="code-annotation-container-hidden code-annotation-container-grid">
<dt data-target-cell="annotated-cell-4" data-target-annotation="1">1</dt>
<dd>
<span data-code-cell="annotated-cell-4" data-code-lines="2" data-code-annotation="1">This line handles all requests to 3X-UI web panel.</span>
</dd>
<dt data-target-cell="annotated-cell-4" data-target-annotation="2">2</dt>
<dd>
<span data-code-cell="annotated-cell-4" data-code-lines="3" data-code-annotation="2">This line handles all requests to VPN traffic at <code>service.example.com/websocket</code>.</span>
</dd>
<dt data-target-cell="annotated-cell-4" data-target-annotation="3">3</dt>
<dd>
<span data-code-cell="annotated-cell-4" data-code-lines="4" data-code-annotation="3">All other requests are handled by the real web service.</span>
</dd>
</dl>
<p>Do not forget to reload Caddy. 3X-UI will be available at <code>https://service.example.com/secret/3x</code>, while Xray will operate at <code>service.example.com/secret/websocket</code> (you must configure this paths in 3X-UI or choose your own!). To generate appropriate user links, add <em>external proxy</em> to the inbound settings in 3X-UI.</p>
<div class="callout callout-style-simple callout-warning no-icon">
<div class="callout-body d-flex">
<div class="callout-icon-container">
<i class="callout-icon no-icon"></i>
</div>
<div class="callout-body-container">
<p>As was mentioned before, the real web service may rely on <code>/secret*</code> paths, choose another path for Xray if needed.</p>
</div>
</div>
</div>
</section>
<section id="option-b-grpc-transport" class="level3 page-columns page-full">
<h3 class="anchored" data-anchor-id="option-b-grpc-transport">Option B: gRPC transport</h3>

<div class="no-row-height column-margin column-container"><div class="">
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><a href="inbound-grpc.png" class="lightbox" data-gallery="quarto-lightbox-gallery-2" title="3X-UI inbound configuration for gRPC transport"><img src="https://vsheg.com/posts/2025-01-22-xray-caddy/inbound-grpc.png" class="img-fluid figure-img" alt="3X-UI inbound configuration for gRPC transport"></a></p>
<figcaption>3X-UI inbound configuration for gRPC transport</figcaption>
</figure>
</div>
</div></div><p>gRPC is a protocol to call functions (called <em>methods</em>) on a remote server and receive the results. Technically, gRPC does not support path-based routing, it sends all traffic to the root path of the domain (<code>service.example.com/</code>) and uses <em>service names</em> to explicitly tell the server which method to call. Practically, it can be managed by Caddy path-based routing.</p>
<p>To set up gRPC transport:</p>
<ol type="1">
<li>configure Xray’s inbound to use gRPC transport in 3X-UI panel, set service name <code>secret/grpc</code> (slash symbols <code>/</code> are treated as regular text in the service name, not as path separators);</li>
<li>add gRPC-specific routing to your Caddy configuration as an ordinary path (<code>/secret/grpc*</code>) and explicitly set the transport to <code>h2c</code> (HTTP/2 without encryption) used by gRPC.</li>
</ol>
<div class="code-with-filename">
<div class="code-with-filename-file">
<pre><strong>/etc/caddy/Caddyfile</strong></pre>
</div>
<div class="sourceCode" id="annotated-cell-5" data-filename="/etc/caddy/Caddyfile" style="background: #f1f3f5;"><pre class="sourceCode txt code-annotation-code code-with-copy code-annotated"><code class="sourceCode default"><span id="annotated-cell-5-1">https://service.example.com {</span>
<span id="annotated-cell-5-2">  reverse_proxy /secret/3x* http://localhost:8080</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-5" data-target-annotation="1">1</button><span id="annotated-cell-5-3" class="code-annotation-target">  reverse_proxy /secret/grpc* h2c://localhost:8443</span>
<span id="annotated-cell-5-4">}</span><div class="code-annotation-gutter-bg"></div><div class="code-annotation-gutter"></div></code></pre></div>
</div>
<dl class="code-annotation-container-hidden code-annotation-container-grid">
<dt data-target-cell="annotated-cell-5" data-target-annotation="1">1</dt>
<dd>
<span data-code-cell="annotated-cell-5" data-code-lines="3" data-code-annotation="1">This line handles all requests to VPN traffic at <code>service.example.com</code>, <code>h2c</code> is HTTP/2 without encryption.</span>
</dd>
</dl>
<p>3X-UI will be available at <code>service.example.com/secret/3x</code>, while Xray will operate at <code>https://service.example.com/</code>. The web service is omitted in the config.</p>
</section>
<section id="option-c-xhttp-with-multitransport" class="level3 page-columns page-full">
<h3 class="anchored" data-anchor-id="option-c-xhttp-with-multitransport">Option C: XHTTP with multitransport</h3>

<div class="no-row-height column-margin column-container"><div class="">
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><a href="inbound-xhttp.png" class="lightbox" data-gallery="quarto-lightbox-gallery-3" title="3X-UI inbound configuration for XHTTP transport"><img src="https://vsheg.com/posts/2025-01-22-xray-caddy/inbound-xhttp.png" class="img-fluid figure-img" alt="3X-UI inbound configuration for XHTTP transport"></a></p>
<figcaption>3X-UI inbound configuration for XHTTP transport</figcaption>
</figure>
</div>
</div></div><p>A new VLESS transport called XHTTP was added in <a href="https://github.com/XTLS/Xray-core/discussions/4113">December 2024</a>. It works on top of ordinary HTTP, making it harder to distinguish from regular web traffic.</p>
<p>As a general idea of path-based routing was presented, here we demonstrate not only single XHTTP transport, but complete multitransport (WebSocket + gRPC + XHTTP) setup. This means that different clients can connect to the same server using different transport protocols at the same time.</p>
<p>Configure three different inbounds in 3X-UI:</p>
<ul>
<li>one for WebSocket with <code>/secret/websocket</code> path and <code>443</code> port (inside the container);</li>
<li>another for gRPC with <code>secret/grpc</code> service name and <code>444</code> port (inside the container);</li>
<li>and the last for XHTTP with <code>/secret/xhttp</code> path and <code>445</code> port (inside the container).</li>
</ul>
<p>Bind ports to the host machine:</p>
<div class="code-with-filename">
<div class="code-with-filename-file">
<pre><strong>~/3x-ui/compose.yaml</strong></pre>
</div>
<div class="sourceCode" id="annotated-cell-6" data-filename="~/3x-ui/compose.yaml" style="background: #f1f3f5;"><pre class="sourceCode yaml code-annotation-code code-with-copy code-annotated"><code class="sourceCode yaml"><span id="annotated-cell-6-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">services</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<span id="annotated-cell-6-2"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">  </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">3x-ui</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<span id="annotated-cell-6-3"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    # ...</span></span>
<span id="annotated-cell-6-4"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">ports</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<span id="annotated-cell-6-5"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> 127.0.0.1:8443:443</span><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"> # websocket VPN</span></span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-6" data-target-annotation="1">1</button><span id="annotated-cell-6-6" class="code-annotation-target"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> 127.0.0.1:8444:444</span><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"> # gRPC VPN</span></span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-6" data-target-annotation="2">2</button><span id="annotated-cell-6-7" class="code-annotation-target"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> 127.0.0.1:8445:445</span><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"> # XHTTP VPN</span></span>
<span id="annotated-cell-6-8"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> 127.0.0.1:8080:80</span><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"> # web UI</span></span>
<span id="annotated-cell-6-9"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    # ...</span></span><div class="code-annotation-gutter-bg"></div><div class="code-annotation-gutter"></div></code></pre></div>
</div>
<dl class="code-annotation-container-hidden code-annotation-container-grid">
<dt data-target-cell="annotated-cell-6" data-target-annotation="1">1</dt>
<dd>
<span data-code-cell="annotated-cell-6" data-code-lines="6" data-code-annotation="1">Look carefully: ports are different.</span>
</dd>
<dt data-target-cell="annotated-cell-6" data-target-annotation="2">2</dt>
<dd>
<span data-code-cell="annotated-cell-6" data-code-lines="7" data-code-annotation="2">Do not overlap ports.</span>
</dd>
</dl>
<p>Then configure Caddy to handle all paths and ports accordingly:</p>
<div class="code-with-filename">
<div class="code-with-filename-file">
<pre><strong>/etc/caddy/Caddyfile</strong></pre>
</div>
<div class="sourceCode" id="cb1" data-filename="/etc/caddy/Caddyfile" style="background: #f1f3f5;"><pre class="sourceCode txt code-with-copy"><code class="sourceCode default"><span id="cb1-1">https://service.example.com {</span>
<span id="cb1-2">  reverse_proxy /secret/3x* http://localhost:8080</span>
<span id="cb1-3">  reverse_proxy /secret/websocket* http://localhost:8443</span>
<span id="cb1-4">  reverse_proxy /secret/grpc* h2c://localhost:8444</span>
<span id="cb1-5">  reverse_proxy /secret/xhttp* http://localhost:8445</span>
<span id="cb1-6">}</span></code></pre></div>
</div>
<div class="callout callout-style-simple callout-note no-icon">
<div class="callout-body d-flex">
<div class="callout-icon-container">
<i class="callout-icon no-icon"></i>
</div>
<div class="callout-body-container">
<p>WebSocket, gRPC, and XHTTP protocols operate over HTTP<sup>8</sup>, so they can be routed through a CDN (e.g.&nbsp;Cloudflare, Fastly, Bunny). When proxying Xray traffic through a CDN, your server’s IP remains hidden behind their network. However, your traffic is decrypted at the CDN edge, so it’s not end-to-end encrypted or private. Also, a CDN may increase latency (ping), though it may also improve overall speeds by routing traffic through the optimized network.</p>
</div>
</div>
</div>
<div class="no-row-height column-margin column-container"><div id="fn8"><p><sup>8</sup>&nbsp;Technically, WebSocket is a distinct protocol, it uses HTTP to initiate connection but then operates directly over TCP. As WebSocket is a standard web protocol, it still can be proxied over some CDNs, same for gRPC</p></div></div></section>
</section>
<section id="subscription-service-optional" class="level2 page-columns page-full" data-number="7">
<h2 data-number="7" class="anchored" data-anchor-id="subscription-service-optional"><span class="header-section-number">7</span> Subscription service (optional)</h2>
<p>Xray can advertise client configurations via a subscription service. It can be proxied through Caddy too. 3X-UI generate two types of subscription links: ‘ordinary’ and JSON.</p>
<div class="code-with-filename">
<div class="code-with-filename-file">
<pre><strong>/etc/caddy/Caddyfile</strong></pre>
</div>
<div class="sourceCode" id="annotated-cell-8" data-filename="/etc/caddy/Caddyfile" style="background: #f1f3f5;"><pre class="sourceCode txt code-annotation-code code-with-copy code-annotated"><code class="sourceCode default"><span id="annotated-cell-8-1"></span>
<span id="annotated-cell-8-2">https://service.example.com {    </span>
<span id="annotated-cell-8-3">  reverse_proxy /secret/3x* http://localhost:8080</span>
<span id="annotated-cell-8-4">  reverse_proxy /secret/websocket* http://localhost:8443</span>
<span id="annotated-cell-8-5">  # ...</span>
<span id="annotated-cell-8-6">  </span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-8" data-target-annotation="1">1</button><span id="annotated-cell-8-7" class="code-annotation-target">  reverse_proxy /secret/sub* http://localhost:8180</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-8" data-target-annotation="2">2</button><span id="annotated-cell-8-8" class="code-annotation-target">  reverse_proxy /secret/json* http://localhost:8180</span>
<span id="annotated-cell-8-9">}</span><div class="code-annotation-gutter-bg"></div><div class="code-annotation-gutter"></div></code></pre></div>
</div>
<dl class="code-annotation-container-hidden code-annotation-container-grid">
<dt data-target-cell="annotated-cell-8" data-target-annotation="1">1</dt>
<dd>
<span data-code-cell="annotated-cell-8" data-code-lines="7" data-code-annotation="1">Handles all requests to the ‘ordinary’ subscription service.</span>
</dd>
<dt data-target-cell="annotated-cell-8" data-target-annotation="2">2</dt>
<dd>
<span data-code-cell="annotated-cell-8" data-code-lines="8" data-code-annotation="2">Handles all requests to the JSON subscription service.</span>
</dd>
</dl>
<p>You need to enable subscription service in 3X-UI panel settings, configure its listen IP (<code>0.0.0.0</code> in this set up), port (<code>8180</code> on host and <code>81</code> inside the container<sup>9</sup>), and two paths<sup>10</sup> in order to generate correct subscription links automatically.</p>
<div class="no-row-height column-margin column-container"><div id="fn9"><p><sup>9</sup>&nbsp;see <code>compose.yaml</code> for 3X-UI below</p></div><div id="fn10"><p><sup>10</sup>&nbsp;This is tricky as actually you need to provide full URIs: <code>https://service.example.com/secret/sub/</code> and <code>https://service.example.com/secret/json/</code></p></div></div><div class="callout callout-style-simple callout-warning no-icon">
<div class="callout-body d-flex">
<div class="callout-icon-container">
<i class="callout-icon no-icon"></i>
</div>
<div class="callout-body-container">
<p>Subscription service returns client configurations when a secret after <code>/sub/</code> (or <code>/json/</code>) is provided, e.g.&nbsp;<code>service.example.com/secret/sub/ow32h8fq66dhxwt4</code>. Caddy encrypts all connections and paths, however, if the secret is leaked, the client configuration can be seen. More complicated paths for subscription service can be used to mitigate this, e.g.&nbsp;<code>service.example.com/secret/sub-random-string/</code>. I.e. threat paths as another secret.</p>
</div>
</div>
</div>
<p>This completes the setup.</p>
<hr>
</section>
<section id="ps" class="level2 page-columns page-full" data-number="8">
<h2 data-number="8" class="anchored" data-anchor-id="ps"><span class="header-section-number">8</span> Post scriptum</h2>

<div class="no-row-height column-margin column-container"><div class="">
<p>Subjective performance testing of VLESS transports between Eastern Europe and Eastern US via CDN (unfriendly conditions), best results observed:</p>
<table class="caption-top table">
<thead>
<tr class="header">
<th>Transport</th>
<th>Download</th>
<th>Ping</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>WebSocket</td>
<td>~215 Mb/s</td>
<td>~145 ms</td>
</tr>
<tr class="even">
<td>gRPC</td>
<td>~120 Mb/s</td>
<td>~145 ms</td>
</tr>
<tr class="odd">
<td>XHTTP</td>
<td>~80 Mb/s</td>
<td>~135 ms</td>
</tr>
</tbody>
</table>
<p>Tests show XHTTP protocol has lower speeds compared to WebSocket and gRPC, though ping times are slightly better. XHTTP also exhibited reliability issues in testing, with slow connection times and DNS errors, possibly due to limited client support. Different CDN providers may prioritize or support WebSocket and gRPC protocols differently.</p>
</div></div><ul>
<li><p>Caddy distinguishes <code>/secret/3x/</code>, <code>/secret/3x</code>, <code>/secret/3x*</code>, and <code>/secret/3x/*</code> paths. If 3X-UI is not accessible via <code>https://service.example.com/secret/3x</code>, try adding a trailing slash and recheck paths in both Caddy and 3X-UI configurations (and in the browser!).</p></li>
<li><p>Caddy tries to use HTTP/3, but it may be blocked, e.g.&nbsp;in Russia HTTP/3 is allowed only for specific domains, international HTTP/3 traffic <a href="https://github.com/kelmenhorst/quic-censorship/issues/4">may not work</a>. You can disable HTTP/3 in Caddy by adding the following to the <code>Caddyfile</code>:</p>
<div class="code-with-filename">
<div class="code-with-filename-file">
<pre><strong>/etc/caddy/Caddyfile</strong></pre>
</div>
<div class="sourceCode" id="cb2" data-filename="/etc/caddy/Caddyfile" style="background: #f1f3f5;"><pre class="sourceCode txt code-with-copy"><code class="sourceCode default"><span id="cb2-1">{</span>
<span id="cb2-2">  servers {</span>
<span id="cb2-3">    protocols h1 h2</span>
<span id="cb2-4">  }</span>
<span id="cb2-5">}</span></code></pre></div>
</div>
<p>This disables HTTP/3 globally for all Caddy domains and services. If you want to disable HTTP/3 only for a specific service, explicitly advertise HTTP v1 &amp; v2 protocols during connection:</p>
<div class="code-with-filename">
<div class="code-with-filename-file">
<pre><strong>/etc/caddy/Caddyfile</strong></pre>
</div>
<div class="sourceCode" id="cb3" data-filename="/etc/caddy/Caddyfile" style="background: #f1f3f5;"><pre class="sourceCode txt code-with-copy"><code class="sourceCode default"><span id="cb3-1">https://service.example.com {</span>
<span id="cb3-2">  tls {</span>
<span id="cb3-3">    alpn h2 http/1.1</span>
<span id="cb3-4">  }</span>
<span id="cb3-5">  # ...</span>
<span id="cb3-6">}</span></code></pre></div>
</div></li>
<li><p>Caddy’s reverse proxy aggregates chunks into larger ones before sending to optimize network efficiency. While good for throughput, buffering can increase latency. To disable it, use <code>flush_interval -1</code>:</p>
<div class="code-with-filename">
<div class="code-with-filename-file">
<pre><strong>/etc/caddy/Caddyfile</strong></pre>
</div>
<div class="sourceCode" id="cb4" data-filename="/etc/caddy/Caddyfile" style="background: #f1f3f5;"><pre class="sourceCode txt code-with-copy"><code class="sourceCode default"><span id="cb4-1">https://service.example.com {</span>
<span id="cb4-2">  # ...</span>
<span id="cb4-3">  reverse_proxy /secret/websocket* http://localhost:8443 {</span>
<span id="cb4-4">    flush_interval -1</span>
<span id="cb4-5">  }</span>
<span id="cb4-6">  # ...</span>
<span id="cb4-7">}</span></code></pre></div>
</div></li>
<li><p>If you have problems setting up Xray, you can bind it to <code>localhost</code> explicitly by adding <code>network_mode: host</code> in the <code>compose.yaml</code> to 3X-UI service. This disables container’s network isolation and binds the container to the host’s ports. After that you can inspect ports on the host machine and check if Xray is working. Note that if you configured listen IPs to <code>0.0.0.0</code> in 3X-UI, your container will be accessible from outside the VPS without encryption, so use this only for testing<sup>11</sup>.</p></li>
<li><p>I had an issue where Xray ignored listen IPs configured via web console, so I patched its database directly. The fix was simple: I connected to my VPS via VS Code SSH extension with installed <a href="https://marketplace.visualstudio.com/items?itemName=yy0931.vscode-sqlite3-editor">SQLite3 Editor</a>, opened <code>~/3x-ui/db/x-ui.db</code>, edited <code>webListen</code> and <code>subListen</code> fields in the <code>settings</code> table, then recreated the container<sup>12</sup> with <code>docker-compose up -d --force-recreate</code></p></li>
<li><p>3X-UI is in active development. Sometimes updating fixes problems - run <code>docker-compose pull</code> and then <code>docker-compose up -d</code>. However, don’t update if everything works fine since new versions may introduce bugs. Also, the new XHTTP transport protocol may be updated in the near future, so you may want to revisit this setup later.</p></li>
<li><p>Caddy can modify paths. You may want to set up simple paths in 3X-UI and then manage all paths in Caddy. E.g. Xray can operate at <code>/*</code> paths inside the container, Caddy can handle connections to <code>service.example.com/secret/*</code> on the host and strip prefix <code>/secret</code> before forwarding to Xray. See <code>handle_path</code> directive in <a href="https://caddyserver.com/docs/caddyfile/directives/handle_path#handle-path">Caddy documentation</a>.</p></li>
<li><p>When Caddy routes e.g.&nbsp;<code>/secret/sub*</code> paths to Xray and an error occurs on Xray side, Caddy returns the respond from Xray and it will differ from the standard response of the real web service. This potentially exposes that you have something interesting behind the <code>/secret/sub*</code> paths. To mitigate this, you can set up Caddy to manage errors too. See <a href="https://caddyserver.com/docs/caddyfile/directives/error">error handling</a> in Caddy documentation.</p></li>
<li><p>Network performance can be improved with BBR<sup>13</sup> congestion control. BBR helps achieve better throughput on connections with packet loss. Configure in <code>/etc/sysctl.conf</code>:</p>
<div class="code-with-filename">
<div class="code-with-filename-file">
<pre><strong>/etc/sysctl.conf</strong></pre>
</div>
<div class="sourceCode" id="cb5" data-filename="/etc/sysctl.conf" style="background: #f1f3f5;"><pre class="sourceCode txt code-with-copy"><code class="sourceCode default"><span id="cb5-1">net.core.default_qdisc=fq</span>
<span id="cb5-2">net.ipv4.tcp_congestion_control=bbr</span></code></pre></div>
</div>
<p>Then apply changes with:</p>
<div class="sourceCode" id="cb6" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb6-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sudo</span> sysctl <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-p</span></span></code></pre></div></li>
</ul>


<div class="no-row-height column-margin column-container"><div id="fn11"><p><sup>11</sup>&nbsp;When network mode is set to host, Docker uses a specific network driver, which may work faster than the default (bridge) driver which performs network translation (NAT), but now your container may conflict with other ports on the host machine, e.g.&nbsp;if your container expects port 443 but it’s already used by Caddy. Moreover, the performance increase is negligible - expect about 1-2 ms in ping time and a few percent in throughput. You won’t notice it, but your setup will be less secure</p></div><div id="fn12"><p><sup>12</sup>&nbsp;Editing the database does not reload 3X-UI, at least you need to restart it to load modified settings</p></div><div id="fn13"><p><sup>13</sup>&nbsp;Bottleneck Bandwidth and Round-trip propagation time</p></div></div></section>


<div id="remark42">

</div> ]]></description>
  <category>networks</category>
  <guid>https://vsheg.com/posts/2025-01-22-xray-caddy/</guid>
  <pubDate>Wed, 22 Jan 2025 00:00:00 GMT</pubDate>
</item>
<item>
  <title>uv as a system-wide Python environment manager</title>
  <link>https://vsheg.com/posts/2024-12-22-uv/</link>
  <description><![CDATA[ 




<p>Creating new virtual environments for each project during quick prototyping, data analysis, or machine learning can be cumbersome. While managing a global environment with <code>pip</code> is simpler, it often leads to dependency conflicts and version mismatches, especially as the number of installed packages grows.</p>
<p>Tools like <code>poetry</code> excel at managing project dependencies, but they can also effectively manage global environments.</p>
<p><code>uv</code> is a modern Python environment manager written in Rust. Here’s a brief overview of using <code>uv</code> to manage a global environment. Note that this approach works with <code>poetry</code> as well.</p>
<section id="installing-uv" class="level2" data-number="1">
<h2 data-number="1" class="anchored" data-anchor-id="installing-uv"><span class="header-section-number">1</span> Installing <code>uv</code></h2>
<p><code>uv</code> is available via multiple sources, just a few examples:</p>
<section id="macos-and-linuxbrew" class="level3">
<h3 class="anchored" data-anchor-id="macos-and-linuxbrew">macOS (and Linuxbrew)</h3>
<div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb1-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">brew</span> install uv</span></code></pre></div>
</section>
<section id="fedora-41" class="level3">
<h3 class="anchored" data-anchor-id="fedora-41">Fedora (41+)</h3>
<div class="sourceCode" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb2-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sudo</span> dnf install uv</span></code></pre></div>
</section>
<section id="pipx" class="level3">
<h3 class="anchored" data-anchor-id="pipx"><code>pipx</code></h3>
<div class="sourceCode" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb3-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pipx</span> install uv</span></code></pre></div>
<p>When installed, <code>uv</code> provides a set of commands to manage Python environments, packages, and dependencies.</p>
</section>
</section>
<section id="creating-a-virtual-environment" class="level2" data-number="2">
<h2 data-number="2" class="anchored" data-anchor-id="creating-a-virtual-environment"><span class="header-section-number">2</span> Creating a virtual environment</h2>
<p>Global virtual environments should be stored in the home directory:</p>
<div class="sourceCode" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb4-1"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">cd</span> ~</span></code></pre></div>
<p>Create a virtual environment with Python 3.12 (or other version):</p>
<div class="sourceCode" id="cb5" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb5-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">uv</span> init <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--python</span> 3.12 <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--no-package</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--vcs</span> none <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--no-readme</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--no-workspace</span></span></code></pre></div>
<p>This initializes a project named after your home directory (you can modify it later). <code>uv</code> generates two files and a directory:</p>
<ul>
<li><p>A sample Python script:</p>
<div class="code-with-filename">
<div class="code-with-filename-file">
<pre><strong>hello.py</strong></pre>
</div>
<div class="sourceCode" id="cb6" data-filename="hello.py" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb6-1"> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> main():</span>
<span id="cb6-2">  <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">print</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Hello from sheg!"</span>)</span>
<span id="cb6-3"></span>
<span id="cb6-4"></span>
<span id="cb6-5"> <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">if</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">__name__</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"__main__"</span>:</span>
<span id="cb6-6">    main()</span></code></pre></div>
</div>
<p>You can delete it:</p>
<div class="sourceCode" id="cb7" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb7-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">rm</span> hello.py</span></code></pre></div></li>
<li><p>A configuration file where <code>uv</code> stores general information and will store all explicitly required packages:</p>
<div class="code-with-filename">
<div class="code-with-filename-file">
<pre><strong>pyproject.toml</strong></pre>
</div>
<div class="sourceCode" id="annotated-cell-25" data-filename="pyproject.toml" style="background: #f1f3f5;"><pre class="sourceCode toml code-annotation-code code-with-copy code-annotated"><code class="sourceCode toml"><span id="annotated-cell-25-1"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">[project]</span></span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-25" data-target-annotation="1">1</button><span id="annotated-cell-25-2" class="code-annotation-target"><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">name</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"sheg"</span></span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-25" data-target-annotation="2">2</button><span id="annotated-cell-25-3" class="code-annotation-target"><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">version</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"0.1.0"</span></span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-25" data-target-annotation="3">3</button><span id="annotated-cell-25-4" class="code-annotation-target"><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">description</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Add your description here"</span></span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-25" data-target-annotation="4">4</button><span id="annotated-cell-25-5" class="code-annotation-target"><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">requires-python</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"&gt;=3.12"</span></span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-25" data-target-annotation="5">5</button><span id="annotated-cell-25-6" class="code-annotation-target"><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">dependencies</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[]</span></span><div class="code-annotation-gutter-bg"></div><div class="code-annotation-gutter"></div></code></pre></div>
</div>
<dl class="code-annotation-container-hidden code-annotation-container-grid">
<dt data-target-cell="annotated-cell-25" data-target-annotation="1">1</dt>
<dd>
<span data-code-cell="annotated-cell-25" data-code-lines="2" data-code-annotation="1">The project name defaults to your home directory. You can change it to any name you prefer.</span>
</dd>
<dt data-target-cell="annotated-cell-25" data-target-annotation="2">2</dt>
<dd>
<span data-code-cell="annotated-cell-25" data-code-lines="3" data-code-annotation="2">As of this writing, tis is required and can’t be deleted, but the version number is arbitrary.</span>
</dd>
<dt data-target-cell="annotated-cell-25" data-target-annotation="3">3</dt>
<dd>
<span data-code-cell="annotated-cell-25" data-code-lines="4" data-code-annotation="3">Optional.</span>
</dd>
<dt data-target-cell="annotated-cell-25" data-target-annotation="4">4</dt>
<dd>
<span data-code-cell="annotated-cell-25" data-code-lines="5" data-code-annotation="4">The minimum Python version.</span>
</dd>
<dt data-target-cell="annotated-cell-25" data-target-annotation="5">5</dt>
<dd>
<span data-code-cell="annotated-cell-25" data-code-lines="6" data-code-annotation="5">Where all required packages will be listed.</span>
</dd>
</dl></li>
<li><p>A <code>.venv</code> directory containing the virtual environment.</p></li>
</ul>
<div class="callout callout-style-simple callout-note no-icon">
<div class="callout-body d-flex">
<div class="callout-icon-container">
<i class="callout-icon no-icon"></i>
</div>
<div class="callout-body-container">
<p>You can customize <code>pyproject.toml</code> using any text editor to change details such as the environment <code>name</code> or <code>description</code>. For example:</p>
<div class="code-with-filename">
<div class="code-with-filename-file">
<pre><strong>pyproject.toml (example)</strong></pre>
</div>
<div class="sourceCode" id="cb8" data-filename="pyproject.toml (example)" style="background: #f1f3f5;"><pre class="sourceCode toml code-with-copy"><code class="sourceCode toml"><span id="cb8-1"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">[project]</span></span>
<span id="cb8-2"><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">name</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"global-env"</span></span>
<span id="cb8-3"><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">version</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"6.6.6"</span></span>
<span id="cb8-4"><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">requires-python</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"&gt;=3.12"</span></span>
<span id="cb8-5"><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">dependencies</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[]</span></span></code></pre></div>
</div>
<p>If something breaks, delete <code>pyproject.toml</code> and start over.</p>
</div>
</div>
</div>
</section>
<section id="installing-packages" class="level2" data-number="3">
<h2 data-number="3" class="anchored" data-anchor-id="installing-packages"><span class="header-section-number">3</span> Installing packages</h2>
<p>To install packages, use the <code>uv add</code> command followed by the package name (multiple packages can be added at once):</p>
<div class="sourceCode" id="cb9" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb9-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">uv</span> add scikit-learn seaborn</span></code></pre></div>
<p>This updates <code>pyproject.toml</code> as follows:</p>
<div class="code-with-filename">
<div class="code-with-filename-file">
<pre><strong>pyproject.toml</strong></pre>
</div>
<div class="sourceCode" id="cb10" data-filename="pyproject.toml" style="background: #f1f3f5;"><pre class="sourceCode toml code-with-copy"><code class="sourceCode toml"><span id="cb10-1"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">[project]</span></span>
<span id="cb10-2"><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">name</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"sheg"</span></span>
<span id="cb10-3"><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">version</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"0.1.0"</span></span>
<span id="cb10-4"><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">dependencies</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span></span>
<span id="cb10-5">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"scikit-learn&gt;=1.6.0"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb10-6">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"seaborn&gt;=0.13.2"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb10-7"><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span></span></code></pre></div>
</div>
<p>Additionally, <code>uv</code> generates a <code>uv.lock</code> file which stores the exact versions of the installed packages to ensure reproducibility, e.g. for later installations or on another machine.</p>
<div class="callout callout-style-simple callout-note no-icon">
<div class="callout-body d-flex">
<div class="callout-icon-container">
<i class="callout-icon no-icon"></i>
</div>
<div class="callout-body-container">
<p>To remove a package:</p>
<div class="sourceCode" id="cb11" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb11-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">uv</span> remove seaborn</span></code></pre></div>
</div>
</div>
</div>
</section>
<section id="modifying-package-versions" class="level2" data-number="4">
<h2 data-number="4" class="anchored" data-anchor-id="modifying-package-versions"><span class="header-section-number">4</span> Modifying package versions</h2>
<p><code>pyproject.toml</code> does not store the exact package versions, only some constraints (e.g., <code>seaborn&gt;=0.13.2</code>). <code>uv</code> uses <code>pyproject.toml</code> to check with packages and their versions are required by the environment and then automatically resolves the exact versions and stores them in <code>uv.lock</code>.</p>
<p>You can modify the version constraints in <code>pyproject.toml</code>, e.g.&nbsp;to lower the minimum version of <code>scikit-learn</code>:</p>
<div class="code-with-filename">
<div class="code-with-filename-file">
<pre><strong>pyproject.toml (example)</strong></pre>
</div>
<div class="sourceCode" id="annotated-cell-8" data-filename="pyproject.toml (example)" style="background: #f1f3f5;"><pre class="sourceCode toml code-annotation-code code-with-copy code-annotated"><code class="sourceCode toml"><span id="annotated-cell-8-1"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">[project]</span></span>
<span id="annotated-cell-8-2"><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">name</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"sheg"</span></span>
<span id="annotated-cell-8-3"><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">version</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"0.1.0"</span></span>
<span id="annotated-cell-8-4"><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">dependencies</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span></span>
<span id="annotated-cell-8-5">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"scikit-learn&gt;=1.4.0"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span></span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-8" data-target-annotation="1">1</button><span id="annotated-cell-8-6" class="code-annotation-target">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"seaborn&gt;=0.13.2"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span></span>
<span id="annotated-cell-8-7"><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span></span><div class="code-annotation-gutter-bg"></div><div class="code-annotation-gutter"></div></code></pre></div>
</div>
<dl class="code-annotation-container-hidden code-annotation-container-grid">
<dt data-target-cell="annotated-cell-8" data-target-annotation="1">1</dt>
<dd>
<span data-code-cell="annotated-cell-8" data-code-lines="6" data-code-annotation="1">This was changed from <code>1.6.0</code> to <code>1.4.0</code>.</span>
</dd>
</dl>
<p>Then, to apply the changes (resolve the exact versions and install/remove packages) run:</p>
<div class="sourceCode" id="cb12" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb12-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">uv</span> sync</span></code></pre></div>
<p>This updates the <code>uv.lock</code> file with the new specifications.</p>
</section>
<section id="hiding-environment-files-optional" class="level2" data-number="5">
<h2 data-number="5" class="anchored" data-anchor-id="hiding-environment-files-optional"><span class="header-section-number">5</span> Hiding environment files (Optional)</h2>
<p>To declutter your home directory, you can hide <code>pyproject.toml</code> and <code>uv.lock</code> files:</p>
<section id="macos" class="level3">
<h3 class="anchored" data-anchor-id="macos">macOS:</h3>
<div class="sourceCode" id="cb13" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb13-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">chflags</span> hidden pyproject.toml uv.lock</span></code></pre></div>
</section>
<section id="windows" class="level3">
<h3 class="anchored" data-anchor-id="windows">Windows:</h3>
<p>Right-click the file, select <strong>Properties</strong>, and check the <strong>Hidden</strong> box.</p>
</section>
<section id="gnome-ubuntu-fedora-etc." class="level3">
<h3 class="anchored" data-anchor-id="gnome-ubuntu-fedora-etc.">GNOME (Ubuntu, Fedora, etc.):</h3>
<p>Create a <code>.hidden</code> file listing the files to hide:</p>
<div class="sourceCode" id="cb14" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb14-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">nano</span> .hidden</span></code></pre></div>
<p>Add:</p>
<div class="code-with-filename">
<div class="code-with-filename-file">
<pre><strong>.hidden</strong></pre>
</div>
<pre data-filename=".hidden"><code>pyproject.toml
uv.lock</code></pre>
</div>
</section>
</section>
<section id="running-python-interpreter-and-commands" class="level2" data-number="6">
<h2 data-number="6" class="anchored" data-anchor-id="running-python-interpreter-and-commands"><span class="header-section-number">6</span> Running Python interpreter and commands</h2>
<p>To execute commands within your environment, prefix them with <code>uv run</code>.</p>
<p>For example, to run a Python shell:</p>
<div class="sourceCode" id="cb16" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb16-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">uv</span> run python</span></code></pre></div>
<p>To run a Python script:</p>
<div class="sourceCode" id="cb17" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb17-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">uv</span> run python script.py</span></code></pre></div>
<p>To run any command within the environment:</p>
<div class="sourceCode" id="cb18" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb18-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">uv</span> run echo <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Hello, world!"</span></span></code></pre></div>
<p>Do this if the command requires Python interpreter or packages from the environment.</p>
</section>
<section id="using-vs-code-notebooks" class="level2" data-number="7">
<h2 data-number="7" class="anchored" data-anchor-id="using-vs-code-notebooks"><span class="header-section-number">7</span> Using VS Code notebooks</h2>
<p>To use VS Code for Jupyter notebooks install <code>ipykernel</code>:</p>
<div class="sourceCode" id="cb19" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb19-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">uv</span> add ipykernel</span></code></pre></div>
<p>Register the kernel:</p>
<div class="sourceCode" id="cb20" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb20-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">uv</span> run python <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-m</span> ipykernel install <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--user</span></span></code></pre></div>
<p>Select your environment in VS Code:</p>
<p><a href="imgs/vscode.png" class="lightbox" data-gallery="quarto-lightbox-gallery-1"><img src="https://vsheg.com/posts/2024-12-22-uv/imgs/vscode.png" class="img-fluid"></a></p>
<div class="callout callout-style-simple callout-note no-icon">
<div class="callout-body d-flex">
<div class="callout-icon-container">
<i class="callout-icon no-icon"></i>
</div>
<div class="callout-body-container">
<p>VS Code has <a href="https://www.google.com/search?q=vscode+doesn't+see+a+python+kernel">persistent issues</a> with Jupyter extensions. Refreshing, restarting, or troubleshooting for half an hour may occasionally be necessary. Sometimes, it just works (or doesn’t).</p>
</div>
</div>
</div>
</section>
<section id="using-jupyter" class="level2" data-number="8">
<h2 data-number="8" class="anchored" data-anchor-id="using-jupyter"><span class="header-section-number">8</span> Using Jupyter</h2>
<p>To use Jupyter, you need to install it:</p>
<div class="sourceCode" id="cb21" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb21-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">uv</span> add jupyter</span></code></pre></div>
<p>Then, run it with <code>uv</code>:</p>
<div class="sourceCode" id="cb22" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb22-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">uv</span> run jupyter lab</span></code></pre></div>
<p>This opens the Jupyter Lab interface in your browser:</p>
<p><a href="imgs/jupyter.png" class="lightbox" data-gallery="quarto-lightbox-gallery-2"><img src="https://vsheg.com/posts/2024-12-22-uv/imgs/jupyter.png" class="img-fluid"></a></p>
</section>
<section id="checking-the-active-environment" class="level2" data-number="9">
<h2 data-number="9" class="anchored" data-anchor-id="checking-the-active-environment"><span class="header-section-number">9</span> Checking the active environment</h2>
<p><code>uv</code> resolves the current environment based on your working directory. If you’re in a directory without <code>.venv</code>, <code>pyproject.toml</code>, or <code>uv.lock</code> (i.e., not in a <code>uv</code> project), it looks for an environment in the parent directories.</p>
<p>To explicitly check which environment <code>uv</code> will use, run:</p>
<div class="sourceCode" id="cb23" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb23-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">uv</span> python find</span></code></pre></div>
<div class="sourceCode" id="cb24" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb24-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">/Users/sheg/.venv/bin/python3</span></span></code></pre></div>


</section>

<div id="remark42">

</div> ]]></description>
  <category>python</category>
  <guid>https://vsheg.com/posts/2024-12-22-uv/</guid>
  <pubDate>Sun, 22 Dec 2024 00:00:00 GMT</pubDate>
</item>
<item>
  <title>Visualizing conditional probability</title>
  <link>https://vsheg.com/posts/2023-10-31-conditional-probability/</link>
  <description><![CDATA[ 




<p>Conditional probability is a fundamental concept in probability theory; however, its interpretation is not always intuitive. Here, an easy-to-visualize example is used to illustrate the concept.</p>
<section id="model-non-directional-radar-tracking-ufo" class="level2" data-number="1">
<h2 data-number="1" class="anchored" data-anchor-id="model-non-directional-radar-tracking-ufo"><span class="header-section-number">1</span> Model: non-directional radar tracking UFO</h2>
<p>A UFO hovers above a field with average position <img src="https://latex.codecogs.com/png.latex?%5Cleft(%20%5Coverline%7Bx%7D,%5Coverline%7By%7D%20%5Cright)"> and standard deviations <img src="https://latex.codecogs.com/png.latex?%5Csigma_%7BX%7D">, <img src="https://latex.codecogs.com/png.latex?%5Csigma_%7BY%7D">. At the field’s center <img src="https://latex.codecogs.com/png.latex?(0,0)">, a <a href="https://en.wikipedia.org/wiki/Non-directional_beacon">non-directional radar</a> measures only the distance <img src="https://latex.codecogs.com/png.latex?d"> to the UFO with standard deviation <img src="https://latex.codecogs.com/png.latex?%5Csigma_%7BD%7D">, but cannot determine its direction or exact position.</p>
<p><a href="image.jpg" class="lightbox" data-gallery="quarto-lightbox-gallery-1"><img src="https://vsheg.com/posts/2023-10-31-conditional-probability/image.jpg" class="img-fluid" style="width:30.0%"></a></p>
<p>The UFO’s location is modeled by an <em>uncorrelated bivariate Gaussian distribution</em> of two random variables <img src="https://latex.codecogs.com/png.latex?X"> and <img src="https://latex.codecogs.com/png.latex?Y">:</p>
<p><img src="https://latex.codecogs.com/png.latex?%5Cbegin%7Baligned%7D%0Af_%7BX,Y%7D(x,y)%20&amp;%20%5Cequiv%20f_%7BX,Y%7D(X%20=%20x,Y%20=%20y)%20%5C%5C%0A&amp;%20=%20%5Cfrac%7B1%7D%7B2%5Cpi%5Csigma_%7BX%7D%5Csigma_%7BY%7D%7D%5Cexp%5Cleft%5C%7B%20%5Cfrac%7B%7B-%20%5Cleft(%20x%20-%20%5Coverline%7Bx%7D%20%5Cright)%7D%5E%7B2%7D%7D%7B2%5Csigma_%7BX%7D%5E%7B2%7D%7D%5Cfrac%7B%7B-%20%5Cleft(%20y%20-%20%5Coverline%7By%7D%20%5Cright)%7D%5E%7B2%7D%7D%7B2%5Csigma_%7BY%7D%5E%7B2%7D%7D%20%5Cright%5C%7D.%0A%5Cend%7Baligned%7D"></p>
<p>The distance <img src="https://latex.codecogs.com/png.latex?d"> from the radar antenna to the UFO follows a <em>conditional univariate Gaussian distribution</em> of a single random variable <img src="https://latex.codecogs.com/png.latex?D"> given the UFO’s position <img src="https://latex.codecogs.com/png.latex?(X,Y)">:</p>
<p><img src="https://latex.codecogs.com/png.latex?%5Cbegin%7Baligned%7D%0Af_%7BD%7D%5Cleft(%20d~%7C~x%5E%7B%5Cast%7D,y%5E%7B%5Cast%7D%20%5Cright)%20&amp;%20%5Cequiv%20f_%7BD%7D%5Cleft(%20D%20=%20d~%7C~X%20=%20x%5E%7B%5Cast%7D,Y%20=%20y%5E%7B%5Cast%7D%20%5Cright)%20%5C%5C%0A&amp;%20=%20%5Cfrac%7B1%7D%7B%5Csqrt%7B2%5Cpi%7D%5Csigma_%7BD%7D%7D%5Cexp%5Cleft%5C%7B%20%5Cfrac%7B%7B-%20%5Cleft(%20d%20-%20%5Csqrt%7B%5Cleft(%20x%5E%7B%5Cast%7D%20%5Cright)%5E%7B2%7D%20+%20%5Cleft(%20y%5E%7B%5Cast%7D%20%5Cright)%5E%7B2%7D%7D%20%5Cright)%7D%5E%7B2%7D%7D%7B2%5Csigma_%7BD%7D%5E%7B2%7D%7D%20%5Cright%5C%7D,%0A%5Cend%7Baligned%7D"></p>
<p>where <img src="https://latex.codecogs.com/png.latex?%5Cleft(%20x%5E%7B%5Cast%7D,y%5E%7B%5Cast%7D%20%5Cright)"> is a specific UFO position, and <img src="https://latex.codecogs.com/png.latex?%5Csqrt%7B%5Cleft(%20x%5E%7B%5Cast%7D%20%5Cright)%5E%7B2%7D%20+%20%5Cleft(%20y%5E%7B%5Cast%7D%20%5Cright)%5E%7B2%7D%7D"> is the exact distance (unknown) from the radar to the UFO.</p>
<p><strong>N.B.</strong> The unconditional distribution <img src="https://latex.codecogs.com/png.latex?f_%7BD%7D(D%20=%20d)"> can be obtained by substituting <img src="https://latex.codecogs.com/png.latex?x%5E%7B%5Cast%7D%20=%20%5Coverline%7Bx%7D"> and <img src="https://latex.codecogs.com/png.latex?y%5E%7B%5Cast%7D%20=%20%5Coverline%7By%7D">, it will model measurements of the distance to the UFO without knowing its exact position, only the average.</p>
<p>Our goal is to find and visualize the conditional pdf <img src="https://latex.codecogs.com/png.latex?f_%7BX,Y%7D%5Cleft(%20x,y~%7C~d%5E%7B%5Cast%7D%20%5Cright)"> of the UFO position given a measured distance <img src="https://latex.codecogs.com/png.latex?d%5E%7B%5Cast%7D"> and compare it with the unconditional pdf <img src="https://latex.codecogs.com/png.latex?f_%7BX,Y%7D(x,y)">.</p>
</section>
<section id="conditional-probability-density" class="level2" data-number="2">
<h2 data-number="2" class="anchored" data-anchor-id="conditional-probability-density"><span class="header-section-number">2</span> Conditional probability density</h2>
<p>Using Bayes theorem:</p>
<p><img src="https://latex.codecogs.com/png.latex?%5CPr%5Cleft%5Clbrack%20A~%7C~B%20%5Cright%5Crbrack%20=%20%5Cfrac%7B%5CPr%5Clbrack%20A%5Crbrack%20%5Ccdot%20%5CPr%5Cleft%5Clbrack%20B~%7C~A%20%5Cright%5Crbrack%7D%7B%5CPr%5Clbrack%20B%5Crbrack%7D,"></p>
<p>the conditional probability density of the UFO being at <img src="https://latex.codecogs.com/png.latex?(x,y)"> given a measured distance <img src="https://latex.codecogs.com/png.latex?d%5E%7B%5Cast%7D"> is</p>
<p><img src="https://latex.codecogs.com/png.latex?%5Cbegin%7Baligned%7D%0Af_%7BX,Y%7D%5Cleft(%20X%20=%20x,Y%20=%20y~%7C~D%20=%20d%5E%7B%5Cast%7D%20%5Cright)%20&amp;%20=%20%5Cfrac%7Bf_%7BX,Y%7D(X%20=%20x,Y%20=%20y)%20%5Ccdot%20f_%7BD%7D%5Cleft(%20D%20=%20d%5E%7B%5Cast%7D~%7C~X%20=%20x,Y%20=%20y%20%5Cright)%7D%7Bf_%7BD%7D%5Cleft(%20D%20=%20d%5E%7B%5Cast%7D%20%5Cright)%7D%20%5C%5C%0A&amp;%20=%20%5Cunderset%7B%5Ctext%7Bconst%7D%7D%7B%5Cunderbrace%7B%5Cfrac%7B1%7D%7Bf_%7BD%7D%5Cleft(%20D%20=%20d%5E%7B%5Cast%7D%20%5Cright)%7D%7D%7D%20%5Ccdot%20f_%7BX,Y%7D(x,y)%20%5Ccdot%20f_%7BD%7D%5Cleft(%20d%5E%7B%5Cast%7D~%7C~x,y%20%5Cright),%0A%5Cend%7Baligned%7D"></p>
<p>where <img src="https://latex.codecogs.com/png.latex?%5Ctext%7Bconst%7D%20%5Cequiv%20%5Ctext%7Bconst%7D(d%5E%7B%5Cast%7D)"> is the normalization constant for fixed <img src="https://latex.codecogs.com/png.latex?d%5E%7B%5Cast%7D">. By substituting the bivariate and univariate Gaussian distributions:</p>
<p><img src="https://latex.codecogs.com/png.latex?%5Cbegin%7Baligned%7D%0A&amp;%20=%20%5Ctext%7Bconst%7D%20%5Ccdot%20%5Cfrac%7B1%7D%7B2%5Cpi%5Csigma_%7BX%7D%5Csigma_%7BY%7D%7D%5Cexp%5Cleft%5C%7B%20%5Cfrac%7B%7B-%20%5Cleft(%20x%20-%20%5Coverline%7Bx%7D%20%5Cright)%7D%5E%7B2%7D%7D%7B2%5Csigma_%7BX%7D%5E%7B2%7D%7D%5Cfrac%7B%7B-%20%5Cleft(%20y%20-%20%5Coverline%7By%7D%20%5Cright)%7D%5E%7B2%7D%7D%7B2%5Csigma_%7BY%7D%5E%7B2%7D%7D%20%5Cright%5C%7D%20%5Ccdot%20%5Cfrac%7B1%7D%7B%5Csqrt%7B2%5Cpi%7D%5Csigma_%7BD%7D%7D%5Cexp%5Cleft%5C%7B%20%5Cfrac%7B%7B-%20%5Cleft(%20d%5E%7B%5Cast%7D%20-%20%5Csqrt%7Bx%5E%7B2%7D%20+%20y%5E%7B2%7D%7D%20%5Cright)%7D%5E%7B2%7D%7D%7B2%5Csigma_%7BD%7D%5E%7B2%7D%7D%20%5Cright%5C%7D%20%5C%5C%0A&amp;%20=%20%5Cunderset%7B%5Ctext%7Bconst%7D'%7D%7B%5Cunderbrace%7B%5Cfrac%7B%5Ctext%7Bconst%7D%7D%7B%7B%5Csqrt%7B2%5Cpi%7D%7D%5E%7B3%7D%5Csigma_%7BX%7D%5Csigma_%7BY%7D%5Csigma_%7BD%7D%7D%7D%7D%5Cexp%5Cleft%5C%7B%20%5Cfrac%7B%7B-%20%5Cleft(%20x%20-%20%5Coverline%7Bx%7D%20%5Cright)%7D%5E%7B2%7D%7D%7B2%5Csigma_%7BX%7D%5E%7B2%7D%7D%5Cfrac%7B%7B-%20%5Cleft(%20y%20-%20%5Coverline%7By%7D%20%5Cright)%7D%5E%7B2%7D%7D%7B2%5Csigma_%7BY%7D%5E%7B2%7D%7D%5Cfrac%7B%7B-%20%5Cleft(%20d%5E%7B%5Cast%7D%20-%20%5Csqrt%7Bx%5E%7B2%7D%20+%20y%5E%7B2%7D%7D%20%5Cright)%7D%5E%7B2%7D%7D%7B2%5Csigma_%7BD%7D%5E%7B2%7D%7D%20%5Cright%5C%7D,%0A%5Cend%7Baligned%7D"></p>
<p>where <img src="https://latex.codecogs.com/png.latex?%5Ctext%7Bconst%7D'%20%5Cequiv%20%5Cfrac%7B%5Ctext%7Bconst%7D%7D%7B%7B%5Csqrt%7B2%5Cpi%7D%7D%5E%7B3%7D%5Csigma_%7BX%7D%5Csigma_%7BY%7D%5Csigma_%7BD%7D%7D"> is a new normalization constant for given distribution parameters <img src="https://latex.codecogs.com/png.latex?%5Csigma_%7BX%7D">, <img src="https://latex.codecogs.com/png.latex?%5Csigma_%7BY%7D">, and <img src="https://latex.codecogs.com/png.latex?%5Csigma_%7BD%7D">.</p>
</section>
<section id="marginalization" class="level2" data-number="3">
<h2 data-number="3" class="anchored" data-anchor-id="marginalization"><span class="header-section-number">3</span> Marginalization</h2>
<p>The normalization constant <img src="https://latex.codecogs.com/png.latex?%5Ctext%7Bconst%7D(d%5E%7B%5Cast%7D)"> can be calculated by integrating the conditional probability density:</p>
<p><img src="https://latex.codecogs.com/png.latex?%5Cbegin%7Baligned%7D%0A%5Cfrac%7B1%7D%7B%5Ctext%7Bconst%7D(d%5E%7B%5Cast%7D)%7D%20&amp;%20=%20f_%7BD%7D%5Cleft(%20D%20=%20d%5E%7B%5Cast%7D%20%5Cright)%20%5C%5C%0A&amp;%20=%20%5Cint_%7B-%20%5Cinfty%7D%5E%7B+%20%5Cinfty%7D%5Cint_%7B-%20%5Cinfty%7D%5E%7B+%20%5Cinfty%7Df_%7BX,Y,D%7D%5Cleft(%20X%20=%20x,Y%20=%20y,D%20=%20d%5E%7B%5Cast%7D%20%5Cright)%5Cmathrm%7Bd%7Dx%5Cmathrm%7Bd%7Dy%20%5C%5C%0A&amp;%20=%20%5Cint_%7B-%20%5Cinfty%7D%5E%7B+%20%5Cinfty%7D%5Cint_%7B-%20%5Cinfty%7D%5E%7B+%20%5Cinfty%7Df_%7BD%7D%5Cleft(%20d%5E%7B%5Cast%7D~%7C~x,y%20%5Cright)%20%5Ccdot%20f_%7BX,Y%7D(x,y)%5Cmathrm%7Bd%7Dx%5Cmathrm%7Bd%7Dy.%0A%5Cend%7Baligned%7D"></p>
<p>This integral contains different exponential terms, making it challenging to solve analytically or compute numerically due to rapid growth and potential numerical overflow.</p>
<p>However, the pre-exponential constant <img src="https://latex.codecogs.com/png.latex?%5Ctext%7Bconst%7D'"> can be omitted for visualization since it doesn’t affect density shape or maximum position.</p>
</section>
<section id="visualization" class="level2" data-number="4">
<h2 data-number="4" class="anchored" data-anchor-id="visualization"><span class="header-section-number">4</span> Visualization</h2>
<p>Now the unconditional <img src="https://latex.codecogs.com/png.latex?f_%7BX,Y%7D(x,y)"> and conditional <img src="https://latex.codecogs.com/png.latex?f_%7BX,Y%7D%5Cleft(%20x,y~%7C~d%5E%7B%5Cast%7D%20%5Cright)"> densities can be visualized and compared.</p>
<p>The non-directional radar at position <img src="https://latex.codecogs.com/png.latex?(0,0)"> measures distance <img src="https://latex.codecogs.com/png.latex?d"> (depicted as a circle) to the UFO. The UFO is hovering around the mean position <img src="https://latex.codecogs.com/png.latex?(4,4)"> with s.d. <img src="https://latex.codecogs.com/png.latex?%5Csigma_%7BX%7D%20=%20%5Csigma_%7BY%7D%20=%203">. The corresponding probability density is shown by the color gradient. The measured distance <img src="https://latex.codecogs.com/png.latex?d"> constrains the probable UFO location to a circular arc in the conditional density. The s.d. <img src="https://latex.codecogs.com/png.latex?%5Csigma_%7BD%7D"> determines the width of the arc and was chosen to be <img src="https://latex.codecogs.com/png.latex?%5Csigma_%7BD%7D%20=%200.5"> (relatively small compared to fluctuations in the UFO position).</p>
<p><em>A priori</em> distribution:</p>
<div class="quarto-embed-nb-cell">
<div id="cell-plot1" class="cell" data-execution_count="11">
<div id="plot1" class="cell-output cell-output-display" data-execution_count="11">

<style>
  #altair-viz-f2387fe632604e8a98580dbd74f9d88f.vega-embed {
    width: 100%;
    display: flex;
  }

  #altair-viz-f2387fe632604e8a98580dbd74f9d88f.vega-embed details,
  #altair-viz-f2387fe632604e8a98580dbd74f9d88f.vega-embed details summary {
    position: relative;
  }
</style>
<div id="altair-viz-f2387fe632604e8a98580dbd74f9d88f"></div>
<script type="text/javascript">
  var VEGA_DEBUG = (typeof VEGA_DEBUG == "undefined") ? {} : VEGA_DEBUG;
  (function(spec, embedOpt){
    let outputDiv = document.currentScript.previousElementSibling;
    if (outputDiv.id !== "altair-viz-f2387fe632604e8a98580dbd74f9d88f") {
      outputDiv = document.getElementById("altair-viz-f2387fe632604e8a98580dbd74f9d88f");
    }

    const paths = {
      "vega": "https://cdn.jsdelivr.net/npm/vega@5?noext",
      "vega-lib": "https://cdn.jsdelivr.net/npm/vega-lib?noext",
      "vega-lite": "https://cdn.jsdelivr.net/npm/vega-lite@5.20.1?noext",
      "vega-embed": "https://cdn.jsdelivr.net/npm/vega-embed@6?noext",
    };

    function maybeLoadScript(lib, version) {
      var key = `${lib.replace("-", "")}_version`;
      return (VEGA_DEBUG[key] == version) ?
        Promise.resolve(paths[lib]) :
        new Promise(function(resolve, reject) {
          var s = document.createElement('script');
          document.getElementsByTagName("head")[0].appendChild(s);
          s.async = true;
          s.onload = () => {
            VEGA_DEBUG[key] = version;
            return resolve(paths[lib]);
          };
          s.onerror = () => reject(`Error loading script: ${paths[lib]}`);
          s.src = paths[lib];
        });
    }

    function showError(err) {
      outputDiv.innerHTML = `<div class="error" style="color:red;">${err}</div>`;
      throw err;
    }

    function displayChart(vegaEmbed) {
      vegaEmbed(outputDiv, spec, embedOpt)
        .catch(err => showError(`Javascript Error: ${err.message}<br>This usually means there's a typo in your chart specification. See the javascript console for the full traceback.`));
    }

    if(typeof define === "function" && define.amd) {
      requirejs.config({paths});
      let deps = ["vega-embed"];
      require(deps, displayChart, err => showError(`Error loading script: ${err.message}`));
    } else {
      maybeLoadScript("vega", "5")
        .then(() => maybeLoadScript("vega-lite", "5.20.1"))
        .then(() => maybeLoadScript("vega-embed", "6"))
        .catch(showError)
        .then(() => displayChart(vegaEmbed));
    }
  })({"config": {"view": {"continuousWidth": 300, "continuousHeight": 300}}, "data": {"name": "data-14fe821a8b2c524d22cd359632b5b9ec"}, "mark": {"type": "rect"}, "encoding": {"color": {"field": "value_uncond", "legend": null, "type": "quantitative"}, "x": {"axis": {"grid": false, "labelFont": "Times", "labelFontSize": 12, "labelFontStyle": "normal", "titleFont": "Times", "titleFontSize": 12, "titleFontStyle": "italic"}, "field": "x", "scale": {"domain": [-10, 10]}, "title": "x", "type": "quantitative"}, "x2": {"field": "x2"}, "y": {"axis": {"grid": false, "labelFont": "Times", "labelFontSize": 12, "labelFontStyle": "normal", "titleFont": "Times", "titleFontSize": 12, "titleFontStyle": "italic"}, "field": "y", "scale": {"domain": [-10, 10]}, "title": "y", "type": "quantitative"}, "y2": {"field": "y2"}}, "height": 300, "width": 300, "$schema": "https://vega.github.io/schema/vega-lite/v5.20.1.json", "datasets": {"data-14fe821a8b2c524d22cd359632b5b9ec": [{"x": -10.0, "y": -10.0, "x2": -9.710144927536232, "y2": -9.710144927536232, "center_x": -9.855072463768117, "center_y": -9.855072463768117, "value_uncond": 6.160399900836236e-12}, {"x": -9.710144927536232, "y": -10.0, "x2": -9.420289855072465, "y2": -9.710144927536232, "center_x": -9.565217391304348, "center_y": -9.855072463768117, "value_uncond": 9.624960816767312e-12}, {"x": -9.420289855072463, "y": -10.0, "x2": -9.130434782608695, "y2": -9.710144927536232, "center_x": -9.275362318840578, "center_y": -9.855072463768117, "value_uncond": 1.4898236004033224e-11}, {"x": -9.130434782608695, "y": -10.0, "x2": -8.840579710144928, "y2": -9.710144927536232, "center_x": -8.985507246376812, "center_y": -9.855072463768117, "value_uncond": 2.284633516259696e-11}, {"x": -8.840579710144928, "y": -10.0, "x2": -8.55072463768116, "y2": -9.710144927536232, "center_x": -8.695652173913043, "center_y": -9.855072463768117, "value_uncond": 3.470915591894953e-11}, {"x": -8.55072463768116, "y": -10.0, "x2": -8.260869565217392, "y2": -9.710144927536232, "center_x": -8.405797101449277, "center_y": -9.855072463768117, "value_uncond": 5.2241708969495986e-11}, {"x": -8.26086956521739, "y": -10.0, "x2": -7.971014492753623, "y2": -9.710144927536232, "center_x": -8.115942028985508, "center_y": -9.855072463768117, "value_uncond": 7.789983057737388e-11}, {"x": -7.971014492753623, "y": -10.0, "x2": -7.681159420289855, "y2": -9.710144927536232, "center_x": -7.826086956521739, "center_y": -9.855072463768117, "value_uncond": 1.150804271859119e-10}, {"x": -7.681159420289855, "y": -10.0, "x2": -7.391304347826088, "y2": -9.710144927536232, "center_x": -7.536231884057972, "center_y": -9.855072463768117, "value_uncond": 1.6842720127136773e-10}, {"x": -7.391304347826087, "y": -10.0, "x2": -7.101449275362319, "y2": -9.710144927536232, "center_x": -7.246376811594203, "center_y": -9.855072463768117, "value_uncond": 2.442130195215731e-10}, {"x": -7.101449275362318, "y": -10.0, "x2": -6.811594202898551, "y2": -9.710144927536232, "center_x": -6.956521739130435, "center_y": -9.855072463768117, "value_uncond": 3.508093898116566e-10}, {"x": -6.811594202898551, "y": -10.0, "x2": -6.521739130434783, "y2": -9.710144927536232, "center_x": -6.666666666666667, "center_y": -9.855072463768117, "value_uncond": 4.99251547394975e-10}, {"x": -6.521739130434782, "y": -10.0, "x2": -6.231884057971015, "y2": -9.710144927536232, "center_x": -6.3768115942028984, "center_y": -9.855072463768117, "value_uncond": 7.039040184716764e-10}, {"x": -6.231884057971014, "y": -10.0, "x2": -5.942028985507246, "y2": -9.710144927536232, "center_x": -6.08695652173913, "center_y": -9.855072463768117, "value_uncond": 9.832258407473207e-10}, {"x": -5.942028985507246, "y": -10.0, "x2": -5.6521739130434785, "y2": -9.710144927536232, "center_x": -5.797101449275362, "center_y": -9.855072463768117, "value_uncond": 1.360626540139841e-09}, {"x": -5.6521739130434785, "y": -10.0, "x2": -5.362318840579711, "y2": -9.710144927536232, "center_x": -5.507246376811595, "center_y": -9.855072463768117, "value_uncond": 1.8653932740416187e-09}, {"x": -5.36231884057971, "y": -10.0, "x2": -5.072463768115942, "y2": -9.710144927536232, "center_x": -5.217391304347826, "center_y": -9.855072463768117, "value_uncond": 2.5336562342392283e-09}, {"x": -5.0724637681159415, "y": -10.0, "x2": -4.782608695652174, "y2": -9.710144927536232, "center_x": -4.927536231884058, "center_y": -9.855072463768117, "value_uncond": 3.4093437159328184e-09}, {"x": -4.782608695652174, "y": -10.0, "x2": -4.492753623188406, "y2": -9.710144927536232, "center_x": -4.63768115942029, "center_y": -9.855072463768117, "value_uncond": 4.5450608224403395e-09}, {"x": -4.492753623188405, "y": -10.0, "x2": -4.202898550724638, "y2": -9.710144927536232, "center_x": -4.3478260869565215, "center_y": -9.855072463768117, "value_uncond": 6.002807632471971e-09}, {"x": -4.202898550724638, "y": -10.0, "x2": -3.91304347826087, "y2": -9.710144927536232, "center_x": -4.057971014492754, "center_y": -9.855072463768117, "value_uncond": 7.85443531273968e-09}, {"x": -3.913043478260869, "y": -10.0, "x2": -3.6231884057971016, "y2": -9.710144927536232, "center_x": -3.7681159420289854, "center_y": -9.855072463768117, "value_uncond": 1.0181724065953475e-08}, {"x": -3.6231884057971016, "y": -10.0, "x2": -3.333333333333334, "y2": -9.710144927536232, "center_x": -3.4782608695652177, "center_y": -9.855072463768117, "value_uncond": 1.3075957290817584e-08}, {"x": -3.333333333333333, "y": -10.0, "x2": -3.0434782608695654, "y2": -9.710144927536232, "center_x": -3.1884057971014492, "center_y": -9.855072463768117, "value_uncond": 1.663686445303529e-08}, {"x": -3.0434782608695645, "y": -10.0, "x2": -2.753623188405797, "y2": -9.710144927536232, "center_x": -2.8985507246376807, "center_y": -9.855072463768117, "value_uncond": 2.097081348614346e-08}, {"x": -2.753623188405797, "y": -10.0, "x2": -2.4637681159420293, "y2": -9.710144927536232, "center_x": -2.608695652173913, "center_y": -9.855072463768117, "value_uncond": 2.6188154329573736e-08}, {"x": -2.4637681159420284, "y": -10.0, "x2": -2.1739130434782608, "y2": -9.710144927536232, "center_x": -2.3188405797101446, "center_y": -9.855072463768117, "value_uncond": 3.239965010092863e-08}, {"x": -2.1739130434782608, "y": -10.0, "x2": -1.8840579710144931, "y2": -9.710144927536232, "center_x": -2.028985507246377, "center_y": -9.855072463768117, "value_uncond": 3.9711982012199266e-08}, {"x": -1.8840579710144922, "y": -10.0, "x2": -1.5942028985507246, "y2": -9.710144927536232, "center_x": -1.7391304347826084, "center_y": -9.855072463768117, "value_uncond": 4.822237773806992e-08}, {"x": -1.5942028985507246, "y": -10.0, "x2": -1.304347826086957, "y2": -9.710144927536232, "center_x": -1.4492753623188408, "center_y": -9.855072463768117, "value_uncond": 5.801248815659017e-08}, {"x": -1.304347826086957, "y": -10.0, "x2": -1.0144927536231894, "y2": -9.710144927536232, "center_x": -1.1594202898550732, "center_y": -9.855072463768117, "value_uncond": 6.914172005796482e-08}, {"x": -1.0144927536231876, "y": -10.0, "x2": -0.72463768115942, "y2": -9.710144927536232, "center_x": -0.8695652173913038, "center_y": -9.855072463768117, "value_uncond": 8.164031666641845e-08}, {"x": -0.72463768115942, "y": -10.0, "x2": -0.43478260869565233, "y2": -9.710144927536232, "center_x": -0.5797101449275361, "center_y": -9.855072463768117, "value_uncond": 9.550255627540823e-08}, {"x": -0.43478260869565233, "y": -10.0, "x2": -0.1449275362318847, "y2": -9.710144927536232, "center_x": -0.2898550724637685, "center_y": -9.855072463768117, "value_uncond": 1.1068050361167863e-07}, {"x": -0.14492753623188293, "y": -10.0, "x2": 0.1449275362318847, "y2": -9.710144927536232, "center_x": 8.881784197001252e-16, "center_y": -9.855072463768117, "value_uncond": 1.2707879011787393e-07}, {"x": 0.1449275362318847, "y": -10.0, "x2": 0.43478260869565233, "y2": -9.710144927536232, "center_x": 0.2898550724637685, "center_y": -9.855072463768117, "value_uncond": 1.445509102212839e-07}, {"x": 0.43478260869565233, "y": -10.0, "x2": 0.72463768115942, "y2": -9.710144927536232, "center_x": 0.5797101449275361, "center_y": -9.855072463768117, "value_uncond": 1.628974945214488e-07}, {"x": 0.72463768115942, "y": -10.0, "x2": 1.0144927536231876, "y2": -9.710144927536232, "center_x": 0.8695652173913038, "center_y": -9.855072463768117, "value_uncond": 1.8186695398019615e-07}, {"x": 1.0144927536231894, "y": -10.0, "x2": 1.304347826086957, "y2": -9.710144927536232, "center_x": 1.1594202898550732, "center_y": -9.855072463768117, "value_uncond": 2.0115878137617703e-07}, {"x": 1.304347826086957, "y": -10.0, "x2": 1.5942028985507246, "y2": -9.710144927536232, "center_x": 1.4492753623188408, "center_y": -9.855072463768117, "value_uncond": 2.2042965122937443e-07}, {"x": 1.5942028985507246, "y": -10.0, "x2": 1.8840579710144922, "y2": -9.710144927536232, "center_x": 1.7391304347826084, "center_y": -9.855072463768117, "value_uncond": 2.3930228500439113e-07}, {"x": 1.884057971014494, "y": -10.0, "x2": 2.1739130434782616, "y2": -9.710144927536232, "center_x": 2.028985507246378, "center_y": -9.855072463768117, "value_uncond": 2.573768564143178e-07}, {"x": 2.1739130434782616, "y": -10.0, "x2": 2.4637681159420293, "y2": -9.710144927536232, "center_x": 2.3188405797101455, "center_y": -9.855072463768117, "value_uncond": 2.742445168837601e-07}, {"x": 2.4637681159420293, "y": -10.0, "x2": 2.753623188405797, "y2": -9.710144927536232, "center_x": 2.608695652173913, "center_y": -9.855072463768117, "value_uncond": 2.8950244033097844e-07}, {"x": 2.753623188405797, "y": -10.0, "x2": 3.0434782608695645, "y2": -9.710144927536232, "center_x": 2.8985507246376807, "center_y": -9.855072463768117, "value_uncond": 3.027696362842212e-07}, {"x": 3.0434782608695663, "y": -10.0, "x2": 3.333333333333334, "y2": -9.710144927536232, "center_x": 3.18840579710145, "center_y": -9.855072463768117, "value_uncond": 3.137026763368097e-07}, {"x": 3.333333333333334, "y": -10.0, "x2": 3.6231884057971016, "y2": -9.710144927536232, "center_x": 3.4782608695652177, "center_y": -9.855072463768117, "value_uncond": 3.2201043320822097e-07}, {"x": 3.6231884057971016, "y": -10.0, "x2": 3.913043478260869, "y2": -9.710144927536232, "center_x": 3.7681159420289854, "center_y": -9.855072463768117, "value_uncond": 3.2746695161816275e-07}, {"x": 3.913043478260871, "y": -10.0, "x2": 4.202898550724639, "y2": -9.710144927536232, "center_x": 4.057971014492755, "center_y": -9.855072463768117, "value_uncond": 3.2992165741277494e-07}, {"x": 4.202898550724639, "y": -10.0, "x2": 4.492753623188406, "y2": -9.710144927536232, "center_x": 4.347826086956522, "center_y": -9.855072463768117, "value_uncond": 3.2930626127546e-07}, {"x": 4.492753623188406, "y": -10.0, "x2": 4.782608695652174, "y2": -9.710144927536232, "center_x": 4.63768115942029, "center_y": -9.855072463768117, "value_uncond": 3.256379152547972e-07}, {"x": 4.782608695652174, "y": -10.0, "x2": 5.0724637681159415, "y2": -9.710144927536232, "center_x": 4.927536231884058, "center_y": -9.855072463768117, "value_uncond": 3.1901841847480727e-07}, {"x": 5.072463768115943, "y": -10.0, "x2": 5.362318840579711, "y2": -9.710144927536232, "center_x": 5.217391304347827, "center_y": -9.855072463768117, "value_uncond": 3.096295233639719e-07}, {"x": 5.362318840579711, "y": -10.0, "x2": 5.6521739130434785, "y2": -9.710144927536232, "center_x": 5.507246376811595, "center_y": -9.855072463768117, "value_uncond": 2.977246444577404e-07}, {"x": 5.6521739130434785, "y": -10.0, "x2": 5.942028985507246, "y2": -9.710144927536232, "center_x": 5.797101449275362, "center_y": -9.855072463768117, "value_uncond": 2.8361749763298007e-07}, {"x": 5.942028985507246, "y": -10.0, "x2": 6.231884057971014, "y2": -9.710144927536232, "center_x": 6.08695652173913, "center_y": -9.855072463768117, "value_uncond": 2.6766838036410634e-07}, {"x": 6.2318840579710155, "y": -10.0, "x2": 6.521739130434783, "y2": -9.710144927536232, "center_x": 6.376811594202899, "center_y": -9.855072463768117, "value_uncond": 2.502689293738903e-07}, {"x": 6.521739130434785, "y": -10.0, "x2": 6.8115942028985526, "y2": -9.710144927536232, "center_x": 6.666666666666669, "center_y": -9.855072463768117, "value_uncond": 2.318262525705508e-07}, {"x": 6.811594202898551, "y": -10.0, "x2": 7.101449275362318, "y2": -9.710144927536232, "center_x": 6.956521739130435, "center_y": -9.855072463768117, "value_uncond": 2.1274732529638975e-07}, {"x": 7.10144927536232, "y": -10.0, "x2": 7.391304347826088, "y2": -9.710144927536232, "center_x": 7.246376811594204, "center_y": -9.855072463768117, "value_uncond": 1.9342447068386744e-07}, {"x": 7.391304347826086, "y": -10.0, "x2": 7.681159420289854, "y2": -9.710144927536232, "center_x": 7.53623188405797, "center_y": -9.855072463768117, "value_uncond": 1.7422261977549334e-07}, {"x": 7.681159420289855, "y": -10.0, "x2": 7.971014492753623, "y2": -9.710144927536232, "center_x": 7.826086956521739, "center_y": -9.855072463768117, "value_uncond": 1.5546888264731634e-07}, {"x": 7.971014492753625, "y": -10.0, "x2": 8.260869565217392, "y2": -9.710144927536232, "center_x": 8.115942028985508, "center_y": -9.855072463768117, "value_uncond": 1.3744477328023635e-07}, {"x": 8.26086956521739, "y": -10.0, "x2": 8.550724637681158, "y2": -9.710144927536232, "center_x": 8.405797101449274, "center_y": -9.855072463768117, "value_uncond": 1.203812353436658e-07}, {"x": 8.55072463768116, "y": -10.0, "x2": 8.840579710144928, "y2": -9.710144927536232, "center_x": 8.695652173913043, "center_y": -9.855072463768117, "value_uncond": 1.0445642947586815e-07}, {"x": 8.84057971014493, "y": -10.0, "x2": 9.130434782608697, "y2": -9.710144927536232, "center_x": 8.985507246376812, "center_y": -9.855072463768117, "value_uncond": 8.979607877804766e-08}, {"x": 9.130434782608695, "y": -10.0, "x2": 9.420289855072463, "y2": -9.710144927536232, "center_x": 9.275362318840578, "center_y": -9.855072463768117, "value_uncond": 7.647603836058899e-08}, {"x": 9.420289855072465, "y": -10.0, "x2": 9.710144927536232, "y2": -9.710144927536232, "center_x": 9.565217391304348, "center_y": -9.855072463768117, "value_uncond": 6.452666313083046e-08}, {"x": 9.710144927536234, "y": -10.0, "x2": 10.000000000000002, "y2": -9.710144927536232, "center_x": 9.855072463768117, "center_y": -9.855072463768117, "value_uncond": 5.3938497688053584e-08}, {"x": 10.0, "y": -10.0, "x2": 10.289855072463768, "y2": -9.710144927536232, "center_x": 10.144927536231883, "center_y": -9.855072463768117, "value_uncond": 4.466880147298297e-08}, {"x": -10.0, "y": -9.710144927536232, "x2": -9.710144927536232, "y2": -9.420289855072465, "center_x": -9.855072463768117, "center_y": -9.565217391304348, "value_uncond": 9.624960816767312e-12}, {"x": -9.710144927536232, "y": -9.710144927536232, "x2": -9.420289855072465, "y2": -9.420289855072465, "center_x": -9.565217391304348, "center_y": -9.565217391304348, "value_uncond": 1.503796380357231e-11}, {"x": -9.420289855072463, "y": -9.710144927536232, "x2": -9.130434782608695, "y2": -9.420289855072465, "center_x": -9.275362318840578, "center_y": -9.565217391304348, "value_uncond": 2.327688787838372e-11}, {"x": -9.130434782608695, "y": -9.710144927536232, "x2": -8.840579710144928, "y2": -9.420289855072465, "center_x": -8.985507246376812, "center_y": -9.565217391304348, "value_uncond": 3.56949360896001e-11}, {"x": -8.840579710144928, "y": -9.710144927536232, "x2": -8.55072463768116, "y2": -9.420289855072465, "center_x": -8.695652173913043, "center_y": -9.565217391304348, "value_uncond": 5.42293148302932e-11}, {"x": -8.55072463768116, "y": -9.710144927536232, "x2": -8.260869565217392, "y2": -9.420289855072465, "center_x": -8.405797101449277, "center_y": -9.565217391304348, "value_uncond": 8.162203914133939e-11}, {"x": -8.26086956521739, "y": -9.710144927536232, "x2": -7.971014492753623, "y2": -9.420289855072465, "center_x": -8.115942028985508, "center_y": -9.565217391304348, "value_uncond": 1.2171008846978545e-10}, {"x": -7.971014492753623, "y": -9.710144927536232, "x2": -7.681159420289855, "y2": -9.420289855072465, "center_x": -7.826086956521739, "center_y": -9.565217391304348, "value_uncond": 1.7980076298145616e-10}, {"x": -7.681159420289855, "y": -9.710144927536232, "x2": -7.391304347826088, "y2": -9.420289855072465, "center_x": -7.536231884057972, "center_y": -9.565217391304348, "value_uncond": 2.6314934725173203e-10}, {"x": -7.391304347826087, "y": -9.710144927536232, "x2": -7.101449275362319, "y2": -9.420289855072465, "center_x": -7.246376811594203, "center_y": -9.565217391304348, "value_uncond": 3.815565193292877e-10}, {"x": -7.101449275362318, "y": -9.710144927536232, "x2": -6.811594202898551, "y2": -9.420289855072465, "center_x": -6.956521739130435, "center_y": -9.565217391304348, "value_uncond": 5.481018579058321e-10}, {"x": -6.811594202898551, "y": -9.710144927536232, "x2": -6.521739130434783, "y2": -9.420289855072465, "center_x": -6.666666666666667, "center_y": -9.565217391304348, "value_uncond": 7.800267285789022e-10}, {"x": -6.521739130434782, "y": -9.710144927536232, "x2": -6.231884057971015, "y2": -9.420289855072465, "center_x": -6.3768115942028984, "center_y": -9.565217391304348, "value_uncond": 1.0997741551867875e-09}, {"x": -6.231884057971014, "y": -9.710144927536232, "x2": -5.942028985507246, "y2": -9.420289855072465, "center_x": -6.08695652173913, "center_y": -9.565217391304348, "value_uncond": 1.5361843944483886e-09}, {"x": -5.942028985507246, "y": -9.710144927536232, "x2": -5.6521739130434785, "y2": -9.420289855072465, "center_x": -5.797101449275362, "center_y": -9.565217391304348, "value_uncond": 2.125832307302315e-09}, {"x": -5.6521739130434785, "y": -9.710144927536232, "x2": -5.362318840579711, "y2": -9.420289855072465, "center_x": -5.507246376811595, "center_y": -9.565217391304348, "value_uncond": 2.9144759203172313e-09}, {"x": -5.36231884057971, "y": -9.710144927536232, "x2": -5.072463768115942, "y2": -9.420289855072465, "center_x": -5.217391304347826, "center_y": -9.565217391304348, "value_uncond": 3.958564763693418e-09}, {"x": -5.0724637681159415, "y": -9.710144927536232, "x2": -4.782608695652174, "y2": -9.420289855072465, "center_x": -4.927536231884058, "center_y": -9.565217391304348, "value_uncond": 5.326732063658852e-09}, {"x": -4.782608695652174, "y": -9.710144927536232, "x2": -4.492753623188406, "y2": -9.420289855072465, "center_x": -4.63768115942029, "center_y": -9.565217391304348, "value_uncond": 7.10116762385412e-09}, {"x": -4.492753623188405, "y": -9.710144927536232, "x2": -4.202898550724638, "y2": -9.420289855072465, "center_x": -4.3478260869565215, "center_y": -9.565217391304348, "value_uncond": 9.378739884287616e-09}, {"x": -4.202898550724638, "y": -9.710144927536232, "x2": -3.91304347826087, "y2": -9.420289855072465, "center_x": -4.057971014492754, "center_y": -9.565217391304348, "value_uncond": 1.2271708548123759e-08}, {"x": -3.913043478260869, "y": -9.710144927536232, "x2": -3.6231884057971016, "y2": -9.420289855072465, "center_x": -3.7681159420289854, "center_y": -9.565217391304348, "value_uncond": 1.5907846367024987e-08}, {"x": -3.6231884057971016, "y": -9.710144927536232, "x2": -3.333333333333334, "y2": -9.420289855072465, "center_x": -3.4782608695652177, "center_y": -9.565217391304348, "value_uncond": 2.0429773812047134e-08}, {"x": -3.333333333333333, "y": -9.710144927536232, "x2": -3.0434782608695654, "y2": -9.420289855072465, "center_x": -3.1884057971014492, "center_y": -9.565217391304348, "value_uncond": 2.5993307423532162e-08}, {"x": -3.0434782608695645, "y": -9.710144927536232, "x2": -2.753623188405797, "y2": -9.420289855072465, "center_x": -2.8985507246376807, "center_y": -9.565217391304348, "value_uncond": 3.276463563225292e-08}, {"x": -2.753623188405797, "y": -9.710144927536232, "x2": -2.4637681159420293, "y2": -9.420289855072465, "center_x": -2.608695652173913, "center_y": -9.565217391304348, "value_uncond": 4.0916168323973e-08}, {"x": -2.4637681159420284, "y": -9.710144927536232, "x2": -2.1739130434782608, "y2": -9.420289855072465, "center_x": -2.3188405797101446, "center_y": -9.565217391304348, "value_uncond": 5.0620960930811905e-08}, {"x": -2.1739130434782608, "y": -9.710144927536232, "x2": -1.8840579710144931, "y2": -9.420289855072465, "center_x": -2.028985507246377, "center_y": -9.565217391304348, "value_uncond": 6.204569134735891e-08}, {"x": -1.8840579710144922, "y": -9.710144927536232, "x2": -1.5942028985507246, "y2": -9.420289855072465, "center_x": -1.7391304347826084, "center_y": -9.565217391304348, "value_uncond": 7.53422673351565e-08}, {"x": -1.5942028985507246, "y": -9.710144927536232, "x2": -1.304347826086957, "y2": -9.420289855072465, "center_x": -1.4492753623188408, "center_y": -9.565217391304348, "value_uncond": 9.063825959002471e-08}, {"x": -1.304347826086957, "y": -9.710144927536232, "x2": -1.0144927536231894, "y2": -9.420289855072465, "center_x": -1.1594202898550732, "center_y": -9.565217391304348, "value_uncond": 1.080264848182127e-07}, {"x": -1.0144927536231876, "y": -9.710144927536232, "x2": -0.72463768115942, "y2": -9.420289855072465, "center_x": -0.8695652173913038, "center_y": -9.565217391304348, "value_uncond": 1.2755419479766016e-07}, {"x": -0.72463768115942, "y": -9.710144927536232, "x2": -0.43478260869565233, "y2": -9.420289855072465, "center_x": -0.5797101449275361, "center_y": -9.565217391304348, "value_uncond": 1.4921244997863546e-07}, {"x": -0.43478260869565233, "y": -9.710144927536232, "x2": -0.1449275362318847, "y2": -9.420289855072465, "center_x": -0.2898550724637685, "center_y": -9.565217391304348, "value_uncond": 1.7292635666361052e-07}, {"x": -0.14492753623188293, "y": -9.710144927536232, "x2": 0.1449275362318847, "y2": -9.420289855072465, "center_x": 8.881784197001252e-16, "center_y": -9.565217391304348, "value_uncond": 1.98546911761475e-07}, {"x": 0.1449275362318847, "y": -9.710144927536232, "x2": 0.43478260869565233, "y2": -9.420289855072465, "center_x": 0.2898550724637685, "center_y": -9.565217391304348, "value_uncond": 2.258452161066759e-07}, {"x": 0.43478260869565233, "y": -9.710144927536232, "x2": 0.72463768115942, "y2": -9.420289855072465, "center_x": 0.5797101449275361, "center_y": -9.565217391304348, "value_uncond": 2.545097765009833e-07}, {"x": 0.72463768115942, "y": -9.710144927536232, "x2": 1.0144927536231876, "y2": -9.420289855072465, "center_x": 0.8695652173913038, "center_y": -9.565217391304348, "value_uncond": 2.841475121909858e-07}, {"x": 1.0144927536231894, "y": -9.710144927536232, "x2": 1.304347826086957, "y2": -9.420289855072465, "center_x": 1.1594202898550732, "center_y": -9.565217391304348, "value_uncond": 3.1428891303493833e-07}, {"x": 1.304347826086957, "y": -9.710144927536232, "x2": 1.5942028985507246, "y2": -9.420289855072465, "center_x": 1.4492753623188408, "center_y": -9.565217391304348, "value_uncond": 3.4439756997730165e-07}, {"x": 1.5942028985507246, "y": -9.710144927536232, "x2": 1.8840579710144922, "y2": -9.420289855072465, "center_x": 1.7391304347826084, "center_y": -9.565217391304348, "value_uncond": 3.738840259732958e-07}, {"x": 1.884057971014494, "y": -9.710144927536232, "x2": 2.1739130434782616, "y2": -9.420289855072465, "center_x": 2.028985507246378, "center_y": -9.565217391304348, "value_uncond": 4.021235955468218e-07}, {"x": 2.1739130434782616, "y": -9.710144927536232, "x2": 2.4637681159420293, "y2": -9.420289855072465, "center_x": 2.3188405797101455, "center_y": -9.565217391304348, "value_uncond": 4.284774968685328e-07}, {"x": 2.4637681159420293, "y": -9.710144927536232, "x2": 2.753623188405797, "y2": -9.420289855072465, "center_x": 2.608695652173913, "center_y": -9.565217391304348, "value_uncond": 4.523163576062548e-07}, {"x": 2.753623188405797, "y": -9.710144927536232, "x2": 3.0434782608695645, "y2": -9.420289855072465, "center_x": 2.8985507246376807, "center_y": -9.565217391304348, "value_uncond": 4.7304492121476363e-07}, {"x": 3.0434782608695663, "y": -9.710144927536232, "x2": 3.333333333333334, "y2": -9.420289855072465, "center_x": 3.18840579710145, "center_y": -9.565217391304348, "value_uncond": 4.901266178267039e-07}, {"x": 3.333333333333334, "y": -9.710144927536232, "x2": 3.6231884057971016, "y2": -9.420289855072465, "center_x": 3.4782608695652177, "center_y": -9.565217391304348, "value_uncond": 5.031065924468107e-07}, {"x": 3.6231884057971016, "y": -9.710144927536232, "x2": 3.913043478260869, "y2": -9.420289855072465, "center_x": 3.7681159420289854, "center_y": -9.565217391304348, "value_uncond": 5.116318143053023e-07}, {"x": 3.913043478260871, "y": -9.710144927536232, "x2": 4.202898550724639, "y2": -9.420289855072465, "center_x": 4.057971014492755, "center_y": -9.565217391304348, "value_uncond": 5.154670275171308e-07}, {"x": 4.202898550724639, "y": -9.710144927536232, "x2": 4.492753623188406, "y2": -9.420289855072465, "center_x": 4.347826086956522, "center_y": -9.565217391304348, "value_uncond": 5.145055373860044e-07}, {"x": 4.492753623188406, "y": -9.710144927536232, "x2": 4.782608695652174, "y2": -9.420289855072465, "center_x": 4.63768115942029, "center_y": -9.565217391304348, "value_uncond": 5.087741421390123e-07}, {"x": 4.782608695652174, "y": -9.710144927536232, "x2": 5.0724637681159415, "y2": -9.420289855072465, "center_x": 4.927536231884058, "center_y": -9.565217391304348, "value_uncond": 4.984318919345294e-07}, {"x": 5.072463768115943, "y": -9.710144927536232, "x2": 5.362318840579711, "y2": -9.420289855072465, "center_x": 5.217391304347827, "center_y": -9.565217391304348, "value_uncond": 4.837627553509998e-07}, {"x": 5.362318840579711, "y": -9.710144927536232, "x2": 5.6521739130434785, "y2": -9.420289855072465, "center_x": 5.507246376811595, "center_y": -9.565217391304348, "value_uncond": 4.6516266528456056e-07}, {"x": 5.6521739130434785, "y": -9.710144927536232, "x2": 5.942028985507246, "y2": -9.420289855072465, "center_x": 5.797101449275362, "center_y": -9.565217391304348, "value_uncond": 4.4312176897744417e-07}, {"x": 5.942028985507246, "y": -9.710144927536232, "x2": 6.231884057971014, "y2": -9.420289855072465, "center_x": 6.08695652173913, "center_y": -9.565217391304348, "value_uncond": 4.182029923970312e-07}, {"x": 6.2318840579710155, "y": -9.710144927536232, "x2": 6.521739130434783, "y2": -9.420289855072465, "center_x": 6.376811594202899, "center_y": -9.565217391304348, "value_uncond": 3.9101822570820645e-07}, {"x": 6.521739130434785, "y": -9.710144927536232, "x2": 6.8115942028985526, "y2": -9.420289855072465, "center_x": 6.666666666666669, "center_y": -9.565217391304348, "value_uncond": 3.6220353113548075e-07}, {"x": 6.811594202898551, "y": -9.710144927536232, "x2": 7.101449275362318, "y2": -9.420289855072465, "center_x": 6.956521739130435, "center_y": -9.565217391304348, "value_uncond": 3.32394763783409e-07}, {"x": 7.10144927536232, "y": -9.710144927536232, "x2": 7.391304347826088, "y2": -9.420289855072465, "center_x": 7.246376811594204, "center_y": -9.565217391304348, "value_uncond": 3.022048862580275e-07}, {"x": 7.391304347826086, "y": -9.710144927536232, "x2": 7.681159420289854, "y2": -9.420289855072465, "center_x": 7.53623188405797, "center_y": -9.565217391304348, "value_uncond": 2.7220406397741216e-07}, {"x": 7.681159420289855, "y": -9.710144927536232, "x2": 7.971014492753623, "y2": -9.420289855072465, "center_x": 7.826086956521739, "center_y": -9.565217391304348, "value_uncond": 2.4290337117625886e-07}, {"x": 7.971014492753625, "y": -9.710144927536232, "x2": 8.260869565217392, "y2": -9.420289855072465, "center_x": 8.115942028985508, "center_y": -9.565217391304348, "value_uncond": 2.1474264310538734e-07}, {"x": 8.26086956521739, "y": -9.710144927536232, "x2": 8.550724637681158, "y2": -9.420289855072465, "center_x": 8.405797101449274, "center_y": -9.565217391304348, "value_uncond": 1.880827043548819e-07}, {"x": 8.55072463768116, "y": -9.710144927536232, "x2": 8.840579710144928, "y2": -9.420289855072465, "center_x": 8.695652173913043, "center_y": -9.565217391304348, "value_uncond": 1.6320191171812923e-07}, {"x": 8.84057971014493, "y": -9.710144927536232, "x2": 9.130434782608697, "y2": -9.420289855072465, "center_x": 8.985507246376812, "center_y": -9.565217391304348, "value_uncond": 1.402966939890929e-07}, {"x": 9.130434782608695, "y": -9.710144927536232, "x2": 9.420289855072463, "y2": -9.420289855072465, "center_x": 9.275362318840578, "center_y": -9.565217391304348, "value_uncond": 1.1948556660134085e-07}, {"x": 9.420289855072465, "y": -9.710144927536232, "x2": 9.710144927536232, "y2": -9.420289855072465, "center_x": 9.565217391304348, "center_y": -9.565217391304348, "value_uncond": 1.0081595582564033e-07}, {"x": 9.710144927536234, "y": -9.710144927536232, "x2": 10.000000000000002, "y2": -9.420289855072465, "center_x": 9.855072463768117, "center_y": -9.565217391304348, "value_uncond": 8.427308861756474e-08}, {"x": 10.0, "y": -9.710144927536232, "x2": 10.289855072463768, "y2": -9.420289855072465, "center_x": 10.144927536231883, "center_y": -9.565217391304348, "value_uncond": 6.979018746024219e-08}, {"x": -10.0, "y": -9.420289855072463, "x2": -9.710144927536232, "y2": -9.130434782608695, "center_x": -9.855072463768117, "center_y": -9.275362318840578, "value_uncond": 1.4898236004033224e-11}, {"x": -9.710144927536232, "y": -9.420289855072463, "x2": -9.420289855072465, "y2": -9.130434782608695, "center_x": -9.565217391304348, "center_y": -9.275362318840578, "value_uncond": 2.327688787838372e-11}, {"x": -9.420289855072463, "y": -9.420289855072463, "x2": -9.130434782608695, "y2": -9.130434782608695, "center_x": -9.275362318840578, "center_y": -9.275362318840578, "value_uncond": 3.6029712292174674e-11}, {"x": -9.130434782608695, "y": -9.420289855072463, "x2": -8.840579710144928, "y2": -9.130434782608695, "center_x": -8.985507246376812, "center_y": -9.275362318840578, "value_uncond": 5.52512983829845e-11}, {"x": -8.840579710144928, "y": -9.420289855072463, "x2": -8.55072463768116, "y2": -9.130434782608695, "center_x": -8.695652173913043, "center_y": -9.275362318840578, "value_uncond": 8.394019945216559e-11}, {"x": -8.55072463768116, "y": -9.420289855072463, "x2": -8.260869565217392, "y2": -9.130434782608695, "center_x": -8.405797101449277, "center_y": -9.275362318840578, "value_uncond": 1.2634071196837675e-10}, {"x": -8.26086956521739, "y": -9.420289855072463, "x2": -7.971014492753623, "y2": -9.130434782608695, "center_x": -8.115942028985508, "center_y": -9.275362318840578, "value_uncond": 1.883920004054249e-10}, {"x": -7.971014492753623, "y": -9.420289855072463, "x2": -7.681159420289855, "y2": -9.130434782608695, "center_x": -7.826086956521739, "center_y": -9.275362318840578, "value_uncond": 2.783091018860542e-10}, {"x": -7.681159420289855, "y": -9.420289855072463, "x2": -7.391304347826088, "y2": -9.130434782608695, "center_x": -7.536231884057972, "center_y": -9.275362318840578, "value_uncond": 4.0732228985637995e-10}, {"x": -7.391304347826087, "y": -9.420289855072463, "x2": -7.101449275362319, "y2": -9.130434782608695, "center_x": -7.246376811594203, "center_y": -9.275362318840578, "value_uncond": 5.906017886267534e-10}, {"x": -7.101449275362318, "y": -9.420289855072463, "x2": -6.811594202898551, "y2": -9.130434782608695, "center_x": -6.956521739130435, "center_y": -9.275362318840578, "value_uncond": 8.48393150765341e-10}, {"x": -6.811594202898551, "y": -9.420289855072463, "x2": -6.521739130434783, "y2": -9.130434782608695, "center_x": -6.666666666666667, "center_y": -9.275362318840578, "value_uncond": 1.207383854651945e-09}, {"x": -6.521739130434782, "y": -9.420289855072463, "x2": -6.231884057971015, "y2": -9.130434782608695, "center_x": -6.3768115942028984, "center_y": -9.275362318840578, "value_uncond": 1.7023128952967586e-09}, {"x": -6.231884057971014, "y": -9.420289855072463, "x2": -5.942028985507246, "y2": -9.130434782608695, "center_x": -6.08695652173913, "center_y": -9.275362318840578, "value_uncond": 2.3778213844086803e-09}, {"x": -5.942028985507246, "y": -9.420289855072463, "x2": -5.6521739130434785, "y2": -9.130434782608695, "center_x": -5.797101449275362, "center_y": -9.275362318840578, "value_uncond": 3.290522634026223e-09}, {"x": -5.6521739130434785, "y": -9.420289855072463, "x2": -5.362318840579711, "y2": -9.130434782608695, "center_x": -5.507246376811595, "center_y": -9.275362318840578, "value_uncond": 4.511244348477409e-09}, {"x": -5.36231884057971, "y": -9.420289855072463, "x2": -5.072463768115942, "y2": -9.130434782608695, "center_x": -5.217391304347826, "center_y": -9.275362318840578, "value_uncond": 6.127363343029421e-09}, {"x": -5.0724637681159415, "y": -9.420289855072463, "x2": -4.782608695652174, "y2": -9.130434782608695, "center_x": -4.927536231884058, "center_y": -9.275362318840578, "value_uncond": 8.245115271159551e-09}, {"x": -4.782608695652174, "y": -9.420289855072463, "x2": -4.492753623188406, "y2": -9.130434782608695, "center_x": -4.63768115942029, "center_y": -9.275362318840578, "value_uncond": 1.0991719673297463e-08}, {"x": -4.492753623188405, "y": -9.420289855072463, "x2": -4.202898550724638, "y2": -9.130434782608695, "center_x": -4.3478260869565215, "center_y": -9.275362318840578, "value_uncond": 1.451711678380478e-08}, {"x": -4.202898550724638, "y": -9.420289855072463, "x2": -3.91304347826087, "y2": -9.130434782608695, "center_x": -4.057971014492754, "center_y": -9.275362318840578, "value_uncond": 1.8995070588148614e-08}, {"x": -3.913043478260869, "y": -9.420289855072463, "x2": -3.6231884057971016, "y2": -9.130434782608695, "center_x": -3.7681159420289854, "center_y": -9.275362318840578, "value_uncond": 2.4623357331384997e-08}, {"x": -3.6231884057971016, "y": -9.420289855072463, "x2": -3.333333333333334, "y2": -9.130434782608695, "center_x": -3.4782608695652177, "center_y": -9.275362318840578, "value_uncond": 3.16227356718863e-08}, {"x": -3.333333333333333, "y": -9.420289855072463, "x2": -3.0434782608695654, "y2": -9.130434782608695, "center_x": -3.1884057971014492, "center_y": -9.275362318840578, "value_uncond": 4.0234390133469245e-08}, {"x": -3.0434782608695645, "y": -9.420289855072463, "x2": -2.753623188405797, "y2": -9.130434782608695, "center_x": -2.8985507246376807, "center_y": -9.275362318840578, "value_uncond": 5.071555962961394e-08}, {"x": -2.753623188405797, "y": -9.420289855072463, "x2": -2.4637681159420293, "y2": -9.130434782608695, "center_x": -2.608695652173913, "center_y": -9.275362318840578, "value_uncond": 6.333311310830191e-08}, {"x": -2.4637681159420284, "y": -9.420289855072463, "x2": -2.1739130434782608, "y2": -9.130434782608695, "center_x": -2.3188405797101446, "center_y": -9.275362318840578, "value_uncond": 7.835491874256564e-08}, {"x": -2.1739130434782608, "y": -9.420289855072463, "x2": -1.8840579710144931, "y2": -9.130434782608695, "center_x": -2.028985507246377, "center_y": -9.275362318840578, "value_uncond": 9.603897307467887e-08}, {"x": -1.8840579710144922, "y": -9.420289855072463, "x2": -1.5942028985507246, "y2": -9.130434782608695, "center_x": -1.7391304347826084, "center_y": -9.275362318840578, "value_uncond": 1.1662041032756351e-07}, {"x": -1.5942028985507246, "y": -9.420289855072463, "x2": -1.304347826086957, "y2": -9.130434782608695, "center_x": -1.4492753623188408, "center_y": -9.275362318840578, "value_uncond": 1.4029669398909313e-07}, {"x": -1.304347826086957, "y": -9.420289855072463, "x2": -1.0144927536231894, "y2": -9.130434782608695, "center_x": -1.1594202898550732, "center_y": -9.275362318840578, "value_uncond": 1.6721149271632956e-07}, {"x": -1.0144927536231876, "y": -9.420289855072463, "x2": -0.72463768115942, "y2": -9.130434782608695, "center_x": -0.8695652173913038, "center_y": -9.275362318840578, "value_uncond": 1.9743794635396995e-07}, {"x": -0.72463768115942, "y": -9.420289855072463, "x2": -0.43478260869565233, "y2": -9.130434782608695, "center_x": -0.5797101449275361, "center_y": -9.275362318840578, "value_uncond": 2.3096221759667814e-07}, {"x": -0.43478260869565233, "y": -9.420289855072463, "x2": -0.1449275362318847, "y2": -9.130434782608695, "center_x": -0.2898550724637685, "center_y": -9.275362318840578, "value_uncond": 2.6766838036410634e-07}, {"x": -0.14492753623188293, "y": -9.420289855072463, "x2": 0.1449275362318847, "y2": -9.130434782608695, "center_x": 8.881784197001252e-16, "center_y": -9.275362318840578, "value_uncond": 3.073257965000113e-07}, {"x": 0.1449275362318847, "y": -9.420289855072463, "x2": 0.43478260869565233, "y2": -9.130434782608695, "center_x": 0.2898550724637685, "center_y": -9.275362318840578, "value_uncond": 3.4958015871375006e-07}, {"x": 0.43478260869565233, "y": -9.420289855072463, "x2": 0.72463768115942, "y2": -9.130434782608695, "center_x": 0.5797101449275361, "center_y": -9.275362318840578, "value_uncond": 3.9394931447823936e-07}, {"x": 0.72463768115942, "y": -9.420289855072463, "x2": 1.0144927536231876, "y2": -9.130434782608695, "center_x": 0.8695652173913038, "center_y": -9.275362318840578, "value_uncond": 4.398248239312864e-07}, {"x": 1.0144927536231894, "y": -9.420289855072463, "x2": 1.304347826086957, "y2": -9.130434782608695, "center_x": 1.1594202898550732, "center_y": -9.275362318840578, "value_uncond": 4.864799440729798e-07}, {"x": 1.304347826086957, "y": -9.420289855072463, "x2": 1.5942028985507246, "y2": -9.130434782608695, "center_x": 1.4492753623188408, "center_y": -9.275362318840578, "value_uncond": 5.330843807487501e-07}, {"x": 1.5942028985507246, "y": -9.420289855072463, "x2": 1.8840579710144922, "y2": -9.130434782608695, "center_x": 1.7391304347826084, "center_y": -9.275362318840578, "value_uncond": 5.787257281488953e-07}, {"x": 1.884057971014494, "y": -9.420289855072463, "x2": 2.1739130434782616, "y2": -9.130434782608695, "center_x": 2.028985507246378, "center_y": -9.275362318840578, "value_uncond": 6.224370512563913e-07}, {"x": 2.1739130434782616, "y": -9.420289855072463, "x2": 2.4637681159420293, "y2": -9.130434782608695, "center_x": 2.3188405797101455, "center_y": -9.275362318840578, "value_uncond": 6.632295956617537e-07}, {"x": 2.4637681159420293, "y": -9.420289855072463, "x2": 2.753623188405797, "y2": -9.130434782608695, "center_x": 2.608695652173913, "center_y": -9.275362318840578, "value_uncond": 7.001291716807186e-07}, {"x": 2.753623188405797, "y": -9.420289855072463, "x2": 3.0434782608695645, "y2": -9.130434782608695, "center_x": 2.8985507246376807, "center_y": -9.275362318840578, "value_uncond": 7.322143966019667e-07}, {"x": 3.0434782608695663, "y": -9.420289855072463, "x2": 3.333333333333334, "y2": -9.130434782608695, "center_x": 3.18840579710145, "center_y": -9.275362318840578, "value_uncond": 7.586547273543421e-07}, {"x": 3.333333333333334, "y": -9.420289855072463, "x2": 3.6231884057971016, "y2": -9.130434782608695, "center_x": 3.4782608695652177, "center_y": -9.275362318840578, "value_uncond": 7.787461052724562e-07}, {"x": 3.6231884057971016, "y": -9.420289855072463, "x2": 3.913043478260869, "y2": -9.130434782608695, "center_x": 3.7681159420289854, "center_y": -9.275362318840578, "value_uncond": 7.919420828616108e-07}, {"x": 3.913043478260871, "y": -9.420289855072463, "x2": 4.202898550724639, "y2": -9.130434782608695, "center_x": 4.057971014492755, "center_y": -9.275362318840578, "value_uncond": 7.978785134241195e-07}, {"x": 4.202898550724639, "y": -9.420289855072463, "x2": 4.492753623188406, "y2": -9.130434782608695, "center_x": 4.347826086956522, "center_y": -9.275362318840578, "value_uncond": 7.963902469094011e-07}, {"x": 4.492753623188406, "y": -9.420289855072463, "x2": 4.782608695652174, "y2": -9.130434782608695, "center_x": 4.63768115942029, "center_y": -9.275362318840578, "value_uncond": 7.875187636225984e-07}, {"x": 4.782608695652174, "y": -9.420289855072463, "x2": 5.0724637681159415, "y2": -9.130434782608695, "center_x": 4.927536231884058, "center_y": -9.275362318840578, "value_uncond": 7.715102533239665e-07}, {"x": 5.072463768115943, "y": -9.420289855072463, "x2": 5.362318840579711, "y2": -9.130434782608695, "center_x": 5.217391304347827, "center_y": -9.275362318840578, "value_uncond": 7.488042638703676e-07}, {"x": 5.362318840579711, "y": -9.420289855072463, "x2": 5.6521739130434785, "y2": -9.130434782608695, "center_x": 5.507246376811595, "center_y": -9.275362318840578, "value_uncond": 7.200136498843506e-07}, {"x": 5.6521739130434785, "y": -9.420289855072463, "x2": 5.942028985507246, "y2": -9.130434782608695, "center_x": 5.797101449275362, "center_y": -9.275362318840578, "value_uncond": 6.858970980172719e-07}, {"x": 5.942028985507246, "y": -9.420289855072463, "x2": 6.231884057971014, "y2": -9.130434782608695, "center_x": 6.08695652173913, "center_y": -9.275362318840578, "value_uncond": 6.473259472880103e-07}, {"x": 6.2318840579710155, "y": -9.420289855072463, "x2": 6.521739130434783, "y2": -9.130434782608695, "center_x": 6.376811594202899, "center_y": -9.275362318840578, "value_uncond": 6.052473271715371e-07}, {"x": 6.521739130434785, "y": -9.420289855072463, "x2": 6.8115942028985526, "y2": -9.130434782608695, "center_x": 6.666666666666669, "center_y": -9.275362318840578, "value_uncond": 5.606457824690636e-07}, {"x": 6.811594202898551, "y": -9.420289855072463, "x2": 7.101449275362318, "y2": -9.130434782608695, "center_x": 6.956521739130435, "center_y": -9.275362318840578, "value_uncond": 5.145055373860044e-07}, {"x": 7.10144927536232, "y": -9.420289855072463, "x2": 7.391304347826088, "y2": -9.130434782608695, "center_x": 7.246376811594204, "center_y": -9.275362318840578, "value_uncond": 4.677753814021533e-07}, {"x": 7.391304347826086, "y": -9.420289855072463, "x2": 7.681159420289854, "y2": -9.130434782608695, "center_x": 7.53623188405797, "center_y": -9.275362318840578, "value_uncond": 4.213378593009689e-07}, {"x": 7.681159420289855, "y": -9.420289855072463, "x2": 7.971014492753623, "y2": -9.130434782608695, "center_x": 7.826086956521739, "center_y": -9.275362318840578, "value_uncond": 3.7598405010178783e-07}, {"x": 7.971014492753625, "y": -9.420289855072463, "x2": 8.260869565217392, "y2": -9.130434782608695, "center_x": 8.115942028985508, "center_y": -9.275362318840578, "value_uncond": 3.32394763783409e-07}, {"x": 8.26086956521739, "y": -9.420289855072463, "x2": 8.550724637681158, "y2": -9.130434782608695, "center_x": 8.405797101449274, "center_y": -9.275362318840578, "value_uncond": 2.911285116999536e-07}, {"x": 8.55072463768116, "y": -9.420289855072463, "x2": 8.840579710144928, "y2": -9.130434782608695, "center_x": 8.695652173913043, "center_y": -9.275362318840578, "value_uncond": 2.5261615536661616e-07}, {"x": 8.84057971014493, "y": -9.420289855072463, "x2": 9.130434782608697, "y2": -9.130434782608695, "center_x": 8.985507246376812, "center_y": -9.275362318840578, "value_uncond": 2.1716174199835867e-07}, {"x": 9.130434782608695, "y": -9.420289855072463, "x2": 9.420289855072463, "y2": -9.130434782608695, "center_x": 9.275362318840578, "center_y": -9.275362318840578, "value_uncond": 1.8494871866920357e-07}, {"x": 9.420289855072465, "y": -9.420289855072463, "x2": 9.710144927536232, "y2": -9.130434782608695, "center_x": 9.565217391304348, "center_y": -9.275362318840578, "value_uncond": 1.5605049531692952e-07}, {"x": 9.710144927536234, "y": -9.420289855072463, "x2": 10.000000000000002, "y2": -9.130434782608695, "center_x": 9.855072463768117, "center_y": -9.275362318840578, "value_uncond": 1.3044420511573268e-07}, {"x": 10.0, "y": -9.420289855072463, "x2": 10.289855072463768, "y2": -9.130434782608695, "center_x": 10.144927536231883, "center_y": -9.275362318840578, "value_uncond": 1.080264848182129e-07}, {"x": -10.0, "y": -9.130434782608695, "x2": -9.710144927536232, "y2": -8.840579710144928, "center_x": -9.855072463768117, "center_y": -8.985507246376812, "value_uncond": 2.284633516259696e-11}, {"x": -9.710144927536232, "y": -9.130434782608695, "x2": -9.420289855072465, "y2": -8.840579710144928, "center_x": -9.565217391304348, "center_y": -8.985507246376812, "value_uncond": 3.56949360896001e-11}, {"x": -9.420289855072463, "y": -9.130434782608695, "x2": -9.130434782608695, "y2": -8.840579710144928, "center_x": -9.275362318840578, "center_y": -8.985507246376812, "value_uncond": 5.52512983829845e-11}, {"x": -9.130434782608695, "y": -9.130434782608695, "x2": -8.840579710144928, "y2": -8.840579710144928, "center_x": -8.985507246376812, "center_y": -8.985507246376812, "value_uncond": 8.472745905519222e-11}, {"x": -8.840579710144928, "y": -9.130434782608695, "x2": -8.55072463768116, "y2": -8.840579710144928, "center_x": -8.695652173913043, "center_y": -8.985507246376812, "value_uncond": 1.2872167750465555e-10}, {"x": -8.55072463768116, "y": -9.130434782608695, "x2": -8.260869565217392, "y2": -8.840579710144928, "center_x": -8.405797101449277, "center_y": -8.985507246376812, "value_uncond": 1.9374255109995932e-10}, {"x": -8.26086956521739, "y": -9.130434782608695, "x2": -7.971014492753623, "y2": -8.840579710144928, "center_x": -8.115942028985508, "center_y": -8.985507246376812, "value_uncond": 2.888977448101407e-10}, {"x": -7.971014492753623, "y": -9.130434782608695, "x2": -7.681159420289855, "y2": -8.840579710144928, "center_x": -7.826086956521739, "center_y": -8.985507246376812, "value_uncond": 4.267849575459015e-10}, {"x": -7.681159420289855, "y": -9.130434782608695, "x2": -7.391304347826088, "y2": -8.840579710144928, "center_x": -7.536231884057972, "center_y": -8.985507246376812, "value_uncond": 6.246257309077444e-10}, {"x": -7.391304347826087, "y": -9.130434782608695, "x2": -7.101449275362319, "y2": -8.840579710144928, "center_x": -7.246376811594203, "center_y": -8.985507246376812, "value_uncond": 9.056834921223715e-10}, {"x": -7.101449275362318, "y": -9.130434782608695, "x2": -6.811594202898551, "y2": -8.840579710144928, "center_x": -6.956521739130435, "center_y": -8.985507246376812, "value_uncond": 1.3010046469118486e-09}, {"x": -6.811594202898551, "y": -9.130434782608695, "x2": -6.521739130434783, "y2": -8.840579710144928, "center_x": -6.666666666666667, "center_y": -8.985507246376812, "value_uncond": 1.85151424677519e-09}, {"x": -6.521739130434782, "y": -9.130434782608695, "x2": -6.231884057971015, "y2": -8.840579710144928, "center_x": -6.3768115942028984, "center_y": -8.985507246376812, "value_uncond": 2.6104842846516803e-09}, {"x": -6.231884057971014, "y": -9.130434782608695, "x2": -5.942028985507246, "y2": -8.840579710144928, "center_x": -6.08695652173913, "center_y": -8.985507246376812, "value_uncond": 3.6463715764929747e-09}, {"x": -5.942028985507246, "y": -9.130434782608695, "x2": -5.6521739130434785, "y2": -8.840579710144928, "center_x": -5.797101449275362, "center_y": -8.985507246376812, "value_uncond": 5.045992219261586e-09}, {"x": -5.6521739130434785, "y": -9.130434782608695, "x2": -5.362318840579711, "y2": -8.840579710144928, "center_x": -5.507246376811595, "center_y": -8.985507246376812, "value_uncond": 6.917959975784015e-09}, {"x": -5.36231884057971, "y": -9.130434782608695, "x2": -5.072463768115942, "y2": -8.840579710144928, "center_x": -5.217391304347826, "center_y": -8.985507246376812, "value_uncond": 9.396266548601021e-09}, {"x": -5.0724637681159415, "y": -9.130434782608695, "x2": -4.782608695652174, "y2": -8.840579710144928, "center_x": -4.927536231884058, "center_y": -8.985507246376812, "value_uncond": 1.2643823529722732e-08}, {"x": -4.782608695652174, "y": -9.130434782608695, "x2": -4.492753623188406, "y2": -8.840579710144928, "center_x": -4.63768115942029, "center_y": -8.985507246376812, "value_uncond": 1.68557211472205e-08}, {"x": -4.492753623188405, "y": -9.130434782608695, "x2": -4.202898550724638, "y2": -8.840579710144928, "center_x": -4.3478260869565215, "center_y": -8.985507246376812, "value_uncond": 2.2261891645935698e-08}, {"x": -4.202898550724638, "y": -9.130434782608695, "x2": -3.91304347826087, "y2": -8.840579710144928, "center_x": -4.057971014492754, "center_y": -8.985507246376812, "value_uncond": 2.912880081752954e-08}, {"x": -3.913043478260869, "y": -9.130434782608695, "x2": -3.6231884057971016, "y2": -8.840579710144928, "center_x": -3.7681159420289854, "center_y": -8.985507246376812, "value_uncond": 3.775973707685375e-08}, {"x": -3.6231884057971016, "y": -9.130434782608695, "x2": -3.333333333333334, "y2": -8.840579710144928, "center_x": -3.4782608695652177, "center_y": -8.985507246376812, "value_uncond": 4.8493232200278026e-08}, {"x": -3.333333333333333, "y": -9.130434782608695, "x2": -3.0434782608695654, "y2": -8.840579710144928, "center_x": -3.1884057971014492, "center_y": -8.985507246376812, "value_uncond": 6.169914087836146e-08}, {"x": -3.0434782608695645, "y": -9.130434782608695, "x2": -2.753623188405797, "y2": -8.840579710144928, "center_x": -2.8985507246376807, "center_y": -8.985507246376812, "value_uncond": 7.777193708994542e-08}, {"x": -2.753623188405797, "y": -9.130434782608695, "x2": -2.4637681159420293, "y2": -8.840579710144928, "center_x": -2.608695652173913, "center_y": -8.985507246376812, "value_uncond": 9.71208624008385e-08}, {"x": -2.4637681159420284, "y": -9.130434782608695, "x2": -2.1739130434782608, "y2": -8.840579710144928, "center_x": -2.3188405797101446, "center_y": -8.985507246376812, "value_uncond": 1.2015669068110387e-07}, {"x": -2.1739130434782608, "y": -9.130434782608695, "x2": -1.8840579710144931, "y2": -8.840579710144928, "center_x": -2.028985507246377, "center_y": -8.985507246376812, "value_uncond": 1.4727505772775686e-07}, {"x": -1.8840579710144922, "y": -9.130434782608695, "x2": -1.5942028985507246, "y2": -8.840579710144928, "center_x": -1.7391304347826084, "center_y": -8.985507246376812, "value_uncond": 1.7883654013950458e-07}, {"x": -1.5942028985507246, "y": -9.130434782608695, "x2": -1.304347826086957, "y2": -8.840579710144928, "center_x": -1.4492753623188408, "center_y": -8.985507246376812, "value_uncond": 2.1514394672036343e-07}, {"x": -1.304347826086957, "y": -9.130434782608695, "x2": -1.0144927536231894, "y2": -8.840579710144928, "center_x": -1.1594202898550732, "center_y": -8.985507246376812, "value_uncond": 2.564175922975858e-07}, {"x": -1.0144927536231876, "y": -9.130434782608695, "x2": -0.72463768115942, "y2": -8.840579710144928, "center_x": -0.8695652173913038, "center_y": -8.985507246376812, "value_uncond": 3.0276963628422175e-07}, {"x": -0.72463768115942, "y": -9.130434782608695, "x2": -0.43478260869565233, "y2": -8.840579710144928, "center_x": -0.5797101449275361, "center_y": -8.985507246376812, "value_uncond": 3.5417885927447224e-07}, {"x": -0.43478260869565233, "y": -9.130434782608695, "x2": -0.1449275362318847, "y2": -8.840579710144928, "center_x": -0.2898550724637685, "center_y": -8.985507246376812, "value_uncond": 4.1046748947810695e-07}, {"x": -0.14492753623188293, "y": -9.130434782608695, "x2": 0.1449275362318847, "y2": -8.840579710144928, "center_x": 8.881784197001252e-16, "center_y": -8.985507246376812, "value_uncond": 4.7128184498154966e-07}, {"x": 0.1449275362318847, "y": -9.130434782608695, "x2": 0.43478260869565233, "y2": -8.840579710144928, "center_x": 0.2898550724637685, "center_y": -8.985507246376812, "value_uncond": 5.360785981646451e-07}, {"x": 0.43478260869565233, "y": -9.130434782608695, "x2": 0.72463768115942, "y2": -8.840579710144928, "center_x": 0.5797101449275361, "center_y": -8.985507246376812, "value_uncond": 6.04118371678944e-07}, {"x": 0.72463768115942, "y": -9.130434782608695, "x2": 1.0144927536231876, "y2": -8.840579710144928, "center_x": 0.8695652173913038, "center_y": -8.985507246376812, "value_uncond": 6.744681274779165e-07}, {"x": 1.0144927536231894, "y": -9.130434782608695, "x2": 1.304347826086957, "y2": -8.840579710144928, "center_x": 1.1594202898550732, "center_y": -8.985507246376812, "value_uncond": 7.460134105248357e-07}, {"x": 1.304347826086957, "y": -9.130434782608695, "x2": 1.5942028985507246, "y2": -8.840579710144928, "center_x": 1.4492753623188408, "center_y": -8.985507246376812, "value_uncond": 8.17480970850127e-07}, {"x": 1.5942028985507246, "y": -9.130434782608695, "x2": 1.8840579710144922, "y2": -8.840579710144928, "center_x": 1.7391304347826084, "center_y": -8.985507246376812, "value_uncond": 8.874716408659564e-07}, {"x": 1.884057971014494, "y": -9.130434782608695, "x2": 2.1739130434782616, "y2": -8.840579710144928, "center_x": 2.028985507246378, "center_y": -8.985507246376812, "value_uncond": 9.54502632846757e-07}, {"x": 2.1739130434782616, "y": -9.130434782608695, "x2": 2.4637681159420293, "y2": -8.840579710144928, "center_x": 2.3188405797101455, "center_y": -8.985507246376812, "value_uncond": 1.0170576991893582e-06}, {"x": 2.4637681159420293, "y": -9.130434782608695, "x2": 2.753623188405797, "y2": -8.840579710144928, "center_x": 2.608695652173913, "center_y": -8.985507246376812, "value_uncond": 1.0736429271894232e-06}, {"x": 2.753623188405797, "y": -9.130434782608695, "x2": 3.0434782608695645, "y2": -8.840579710144928, "center_x": 2.8985507246376807, "center_y": -8.985507246376812, "value_uncond": 1.1228453832466169e-06}, {"x": 3.0434782608695663, "y": -9.130434782608695, "x2": 3.333333333333334, "y2": -8.840579710144928, "center_x": 3.18840579710145, "center_y": -8.985507246376812, "value_uncond": 1.1633914356796134e-06}, {"x": 3.333333333333334, "y": -9.130434782608695, "x2": 3.6231884057971016, "y2": -8.840579710144928, "center_x": 3.4782608695652177, "center_y": -8.985507246376812, "value_uncond": 1.1942014157115696e-06}, {"x": 3.6231884057971016, "y": -9.130434782608695, "x2": 3.913043478260869, "y2": -8.840579710144928, "center_x": 3.7681159420289854, "center_y": -8.985507246376812, "value_uncond": 1.2144373501348344e-06}, {"x": 3.913043478260871, "y": -9.130434782608695, "x2": 4.202898550724639, "y2": -8.840579710144928, "center_x": 4.057971014492755, "center_y": -8.985507246376812, "value_uncond": 1.2235408226710357e-06}, {"x": 4.202898550724639, "y": -9.130434782608695, "x2": 4.492753623188406, "y2": -8.840579710144928, "center_x": 4.347826086956522, "center_y": -8.985507246376812, "value_uncond": 1.2212585769342034e-06}, {"x": 4.492753623188406, "y": -9.130434782608695, "x2": 4.782608695652174, "y2": -8.840579710144928, "center_x": 4.63768115942029, "center_y": -8.985507246376812, "value_uncond": 1.2076542226667046e-06}, {"x": 4.782608695652174, "y": -9.130434782608695, "x2": 5.0724637681159415, "y2": -8.840579710144928, "center_x": 4.927536231884058, "center_y": -8.985507246376812, "value_uncond": 1.1831052900523056e-06}, {"x": 5.072463768115943, "y": -9.130434782608695, "x2": 5.362318840579711, "y2": -8.840579710144928, "center_x": 5.217391304347827, "center_y": -8.985507246376812, "value_uncond": 1.1482858224915232e-06}, {"x": 5.362318840579711, "y": -9.130434782608695, "x2": 5.6521739130434785, "y2": -8.840579710144928, "center_x": 5.507246376811595, "center_y": -8.985507246376812, "value_uncond": 1.1041356280333723e-06}, {"x": 5.6521739130434785, "y": -9.130434782608695, "x2": 5.942028985507246, "y2": -8.840579710144928, "center_x": 5.797101449275362, "center_y": -8.985507246376812, "value_uncond": 1.0518181470687534e-06}, {"x": 5.942028985507246, "y": -9.130434782608695, "x2": 6.231884057971014, "y2": -8.840579710144928, "center_x": 6.08695652173913, "center_y": -8.985507246376812, "value_uncond": 9.926695715642979e-07}, {"x": 6.2318840579710155, "y": -9.130434782608695, "x2": 6.521739130434783, "y2": -8.840579710144928, "center_x": 6.376811594202899, "center_y": -8.985507246376812, "value_uncond": 9.281423175927344e-07}, {"x": 6.521739130434785, "y": -9.130434782608695, "x2": 6.8115942028985526, "y2": -8.840579710144928, "center_x": 6.666666666666669, "center_y": -8.985507246376812, "value_uncond": 8.59746177353957e-07}, {"x": 6.811594202898551, "y": -9.130434782608695, "x2": 7.101449275362318, "y2": -8.840579710144928, "center_x": 6.956521739130435, "center_y": -8.985507246376812, "value_uncond": 7.889904514165666e-07}, {"x": 7.10144927536232, "y": -9.130434782608695, "x2": 7.391304347826088, "y2": -8.840579710144928, "center_x": 7.246376811594204, "center_y": -8.985507246376812, "value_uncond": 7.17330101458459e-07}, {"x": 7.391304347826086, "y": -9.130434782608695, "x2": 7.681159420289854, "y2": -8.840579710144928, "center_x": 7.53623188405797, "center_y": -8.985507246376812, "value_uncond": 6.461185034036994e-07}, {"x": 7.681159420289855, "y": -9.130434782608695, "x2": 7.971014492753623, "y2": -8.840579710144928, "center_x": 7.826086956521739, "center_y": -8.985507246376812, "value_uncond": 5.765687711008647e-07}, {"x": 7.971014492753625, "y": -9.130434782608695, "x2": 8.260869565217392, "y2": -8.840579710144928, "center_x": 8.115942028985508, "center_y": -8.985507246376812, "value_uncond": 5.097249216371772e-07}, {"x": 8.26086956521739, "y": -9.130434782608695, "x2": 8.550724637681158, "y2": -8.840579710144928, "center_x": 8.405797101449274, "center_y": -8.985507246376812, "value_uncond": 4.4644342805984316e-07}, {"x": 8.55072463768116, "y": -9.130434782608695, "x2": 8.840579710144928, "y2": -8.840579710144928, "center_x": 8.695652173913043, "center_y": -8.985507246376812, "value_uncond": 3.873850133284215e-07}, {"x": 8.84057971014493, "y": -9.130434782608695, "x2": 9.130434782608697, "y2": -8.840579710144928, "center_x": 8.985507246376812, "center_y": -8.985507246376812, "value_uncond": 3.330159316072577e-07}, {"x": 9.130434782608695, "y": -9.130434782608695, "x2": 9.420289855072463, "y2": -8.840579710144928, "center_x": 9.275362318840578, "center_y": -8.985507246376812, "value_uncond": 2.836174976329806e-07}, {"x": 9.420289855072465, "y": -9.130434782608695, "x2": 9.710144927536232, "y2": -8.840579710144928, "center_x": 9.565217391304348, "center_y": -8.985507246376812, "value_uncond": 2.3930228500439113e-07}, {"x": 9.710144927536234, "y": -9.130434782608695, "x2": 10.000000000000002, "y2": -8.840579710144928, "center_x": 9.855072463768117, "center_y": -8.985507246376812, "value_uncond": 2.0003522761257018e-07}, {"x": 10.0, "y": -9.130434782608695, "x2": 10.289855072463768, "y2": -8.840579710144928, "center_x": 10.144927536231883, "center_y": -8.985507246376812, "value_uncond": 1.6565781867906704e-07}, {"x": -10.0, "y": -8.840579710144928, "x2": -9.710144927536232, "y2": -8.55072463768116, "center_x": -9.855072463768117, "center_y": -8.695652173913043, "value_uncond": 3.470915591894953e-11}, {"x": -9.710144927536232, "y": -8.840579710144928, "x2": -9.420289855072465, "y2": -8.55072463768116, "center_x": -9.565217391304348, "center_y": -8.695652173913043, "value_uncond": 5.42293148302932e-11}, {"x": -9.420289855072463, "y": -8.840579710144928, "x2": -9.130434782608695, "y2": -8.55072463768116, "center_x": -9.275362318840578, "center_y": -8.695652173913043, "value_uncond": 8.394019945216559e-11}, {"x": -9.130434782608695, "y": -8.840579710144928, "x2": -8.840579710144928, "y2": -8.55072463768116, "center_x": -8.985507246376812, "center_y": -8.695652173913043, "value_uncond": 1.2872167750465555e-10}, {"x": -8.840579710144928, "y": -8.840579710144928, "x2": -8.55072463768116, "y2": -8.55072463768116, "center_x": -8.695652173913043, "center_y": -8.695652173913043, "value_uncond": 1.9555962664735687e-10}, {"x": -8.55072463768116, "y": -8.840579710144928, "x2": -8.260869565217392, "y2": -8.55072463768116, "center_x": -8.405797101449277, "center_y": -8.695652173913043, "value_uncond": 2.9434219389693743e-10}, {"x": -8.26086956521739, "y": -8.840579710144928, "x2": -7.971014492753623, "y2": -8.55072463768116, "center_x": -8.115942028985508, "center_y": -8.695652173913043, "value_uncond": 4.3890614393438853e-10}, {"x": -7.971014492753623, "y": -8.840579710144928, "x2": -7.681159420289855, "y2": -8.55072463768116, "center_x": -7.826086956521739, "center_y": -8.695652173913043, "value_uncond": 6.483904543068586e-10}, {"x": -7.681159420289855, "y": -8.840579710144928, "x2": -7.391304347826088, "y2": -8.55072463768116, "center_x": -7.536231884057972, "center_y": -8.695652173913043, "value_uncond": 9.4895884748109e-10}, {"x": -7.391304347826087, "y": -8.840579710144928, "x2": -7.101449275362319, "y2": -8.55072463768116, "center_x": -7.246376811594203, "center_y": -8.695652173913043, "value_uncond": 1.3759541439608688e-09}, {"x": -7.101449275362318, "y": -8.840579710144928, "x2": -6.811594202898551, "y2": -8.55072463768116, "center_x": -6.956521739130435, "center_y": -8.695652173913043, "value_uncond": 1.976543407052434e-09}, {"x": -6.811594202898551, "y": -8.840579710144928, "x2": -6.521739130434783, "y2": -8.55072463768116, "center_x": -6.666666666666667, "center_y": -8.695652173913043, "value_uncond": 2.8129017726522515e-09}, {"x": -6.521739130434782, "y": -8.840579710144928, "x2": -6.231884057971015, "y2": -8.55072463768116, "center_x": -6.3768115942028984, "center_y": -8.695652173913043, "value_uncond": 3.965962392440151e-09}, {"x": -6.231884057971014, "y": -8.840579710144928, "x2": -5.942028985507246, "y2": -8.55072463768116, "center_x": -6.08695652173913, "center_y": -8.695652173913043, "value_uncond": 5.539727868219475e-09}, {"x": -5.942028985507246, "y": -8.840579710144928, "x2": -5.6521739130434785, "y2": -8.55072463768116, "center_x": -5.797101449275362, "center_y": -8.695652173913043, "value_uncond": 7.666093027948395e-09}, {"x": -5.6521739130434785, "y": -8.840579710144928, "x2": -5.362318840579711, "y2": -8.55072463768116, "center_x": -5.507246376811595, "center_y": -8.695652173913043, "value_uncond": 1.05100686710422e-08}, {"x": -5.36231884057971, "y": -8.840579710144928, "x2": -5.072463768115942, "y2": -8.55072463768116, "center_x": -5.217391304347826, "center_y": -8.695652173913043, "value_uncond": 1.4275220877672309e-08}, {"x": -5.0724637681159415, "y": -8.840579710144928, "x2": -4.782608695652174, "y2": -8.55072463768116, "center_x": -4.927536231884058, "center_y": -8.695652173913043, "value_uncond": 1.9209052094416735e-08}, {"x": -4.782608695652174, "y": -8.840579710144928, "x2": -4.492753623188406, "y2": -8.55072463768116, "center_x": -4.63768115942029, "center_y": -8.695652173913043, "value_uncond": 2.560795196522492e-08}, {"x": -4.492753623188405, "y": -8.840579710144928, "x2": -4.202898550724638, "y2": -8.55072463768116, "center_x": -4.3478260869565215, "center_y": -8.695652173913043, "value_uncond": 3.382124365638135e-08}, {"x": -4.202898550724638, "y": -8.840579710144928, "x2": -3.91304347826087, "y2": -8.55072463768116, "center_x": -4.057971014492754, "center_y": -8.695652173913043, "value_uncond": 4.425375370325845e-08}, {"x": -3.913043478260869, "y": -8.840579710144928, "x2": -3.6231884057971016, "y2": -8.55072463768116, "center_x": -3.7681159420289854, "center_y": -8.695652173913043, "value_uncond": 5.736625118783737e-08}, {"x": -3.6231884057971016, "y": -8.840579710144928, "x2": -3.333333333333334, "y2": -8.55072463768116, "center_x": -3.4782608695652177, "center_y": -8.695652173913043, "value_uncond": 7.36730484550044e-08}, {"x": -3.333333333333333, "y": -8.840579710144928, "x2": -3.0434782608695654, "y2": -8.55072463768116, "center_x": -3.1884057971014492, "center_y": -8.695652173913043, "value_uncond": 9.373604499676155e-08}, {"x": -3.0434782608695645, "y": -8.840579710144928, "x2": -2.753623188405797, "y2": -8.55072463768116, "center_x": -2.8985507246376807, "center_y": -8.695652173913043, "value_uncond": 1.1815454300928705e-07}, {"x": -2.753623188405797, "y": -8.840579710144928, "x2": -2.4637681159420293, "y2": -8.55072463768116, "center_x": -2.608695652173913, "center_y": -8.695652173913043, "value_uncond": 1.475502802555563e-07}, {"x": -2.4637681159420284, "y": -8.840579710144928, "x2": -2.1739130434782608, "y2": -8.55072463768116, "center_x": -2.3188405797101446, "center_y": -8.695652173913043, "value_uncond": 1.8254732244247453e-07}, {"x": -2.1739130434782608, "y": -8.840579710144928, "x2": -1.8840579710144931, "y2": -8.55072463768116, "center_x": -2.028985507246377, "center_y": -8.695652173913043, "value_uncond": 2.2374673685142385e-07}, {"x": -1.8840579710144922, "y": -8.840579710144928, "x2": -1.5942028985507246, "y2": -8.55072463768116, "center_x": -1.7391304347826084, "center_y": -8.695652173913043, "value_uncond": 2.7169632728971814e-07}, {"x": -1.5942028985507246, "y": -8.840579710144928, "x2": -1.304347826086957, "y2": -8.55072463768116, "center_x": -1.4492753623188408, "center_y": -8.695652173913043, "value_uncond": 3.268561341934916e-07}, {"x": -1.304347826086957, "y": -8.840579710144928, "x2": -1.0144927536231894, "y2": -8.55072463768116, "center_x": -1.1594202898550732, "center_y": -8.695652173913043, "value_uncond": 3.895608695257747e-07}, {"x": -1.0144927536231876, "y": -8.840579710144928, "x2": -0.72463768115942, "y2": -8.55072463768116, "center_x": -0.8695652173913038, "center_y": -8.695652173913043, "value_uncond": 4.5998093079354775e-07}, {"x": -0.72463768115942, "y": -8.840579710144928, "x2": -0.43478260869565233, "y2": -8.55072463768116, "center_x": -0.5797101449275361, "center_y": -8.695652173913043, "value_uncond": 5.380840805434449e-07}, {"x": -0.43478260869565233, "y": -8.840579710144928, "x2": -0.1449275362318847, "y2": -8.55072463768116, "center_x": -0.2898550724637685, "center_y": -8.695652173913043, "value_uncond": 6.236002400630083e-07}, {"x": -0.14492753623188293, "y": -8.840579710144928, "x2": 0.1449275362318847, "y2": -8.55072463768116, "center_x": 8.881784197001252e-16, "center_y": -8.695652173913043, "value_uncond": 7.159920802534279e-07}, {"x": 0.1449275362318847, "y": -8.840579710144928, "x2": 0.43478260869565233, "y2": -8.55072463768116, "center_x": 0.2898550724637685, "center_y": -8.695652173913043, "value_uncond": 8.144341539281496e-07}, {"x": 0.43478260869565233, "y": -8.840579710144928, "x2": 0.72463768115942, "y2": -8.55072463768116, "center_x": 0.5797101449275361, "center_y": -8.695652173913043, "value_uncond": 9.178031665417845e-07}, {"x": 0.72463768115942, "y": -8.840579710144928, "x2": 1.0144927536231876, "y2": -8.55072463768116, "center_x": 0.8695652173913038, "center_y": -8.695652173913043, "value_uncond": 1.024681605709748e-06}, {"x": 1.0144927536231894, "y": -8.840579710144928, "x2": 1.304347826086957, "y2": -8.55072463768116, "center_x": 1.1594202898550732, "center_y": -8.695652173913043, "value_uncond": 1.1333763423870968e-06}, {"x": 1.304347826086957, "y": -8.840579710144928, "x2": 1.5942028985507246, "y2": -8.55072463768116, "center_x": 1.4492753623188408, "center_y": -8.695652173913043, "value_uncond": 1.241952999291727e-06}, {"x": 1.5942028985507246, "y": -8.840579710144928, "x2": 1.8840579710144922, "y2": -8.55072463768116, "center_x": 1.7391304347826084, "center_y": -8.695652173913043, "value_uncond": 1.3482858995648677e-06}, {"x": 1.884057971014494, "y": -8.840579710144928, "x2": 2.1739130434782616, "y2": -8.55072463768116, "center_x": 2.028985507246378, "center_y": -8.695652173913043, "value_uncond": 1.4501223269614357e-06}, {"x": 2.1739130434782616, "y": -8.840579710144928, "x2": 2.4637681159420293, "y2": -8.55072463768116, "center_x": 2.3188405797101455, "center_y": -8.695652173913043, "value_uncond": 1.5451587315205457e-06}, {"x": 2.4637681159420293, "y": -8.840579710144928, "x2": 2.753623188405797, "y2": -8.55072463768116, "center_x": 2.608695652173913, "center_y": -8.695652173913043, "value_uncond": 1.6311254954406947e-06}, {"x": 2.753623188405797, "y": -8.840579710144928, "x2": 3.0434782608695645, "y2": -8.55072463768116, "center_x": 2.8985507246376807, "center_y": -8.695652173913043, "value_uncond": 1.7058760279322381e-06}, {"x": 3.0434782608695663, "y": -8.840579710144928, "x2": 3.333333333333334, "y2": -8.55072463768116, "center_x": 3.18840579710145, "center_y": -8.695652173913043, "value_uncond": 1.7674753717998176e-06}, {"x": 3.333333333333334, "y": -8.840579710144928, "x2": 3.6231884057971016, "y2": -8.55072463768116, "center_x": 3.4782608695652177, "center_y": -8.695652173913043, "value_uncond": 1.814283246812509e-06}, {"x": 3.6231884057971016, "y": -8.840579710144928, "x2": 3.913043478260869, "y2": -8.55072463768116, "center_x": 3.7681159420289854, "center_y": -8.695652173913043, "value_uncond": 1.8450265672647379e-06}, {"x": 3.913043478260871, "y": -8.840579710144928, "x2": 4.202898550724639, "y2": -8.55072463768116, "center_x": 4.057971014492755, "center_y": -8.695652173913043, "value_uncond": 1.8588569626176071e-06}, {"x": 4.202898550724639, "y": -8.840579710144928, "x2": 4.492753623188406, "y2": -8.55072463768116, "center_x": 4.347826086956522, "center_y": -8.695652173913043, "value_uncond": 1.8553896746451031e-06}, {"x": 4.492753623188406, "y": -8.840579710144928, "x2": 4.782608695652174, "y2": -8.55072463768116, "center_x": 4.63768115942029, "center_y": -8.695652173913043, "value_uncond": 1.834721342061928e-06}, {"x": 4.782608695652174, "y": -8.840579710144928, "x2": 5.0724637681159415, "y2": -8.55072463768116, "center_x": 4.927536231884058, "center_y": -8.695652173913043, "value_uncond": 1.7974255253065148e-06}, {"x": 5.072463768115943, "y": -8.840579710144928, "x2": 5.362318840579711, "y2": -8.55072463768116, "center_x": 5.217391304347827, "center_y": -8.695652173913043, "value_uncond": 1.7445262607207185e-06}, {"x": 5.362318840579711, "y": -8.840579710144928, "x2": 5.6521739130434785, "y2": -8.55072463768116, "center_x": 5.507246376811595, "center_y": -8.695652173913043, "value_uncond": 1.6774513459742732e-06}, {"x": 5.6521739130434785, "y": -8.840579710144928, "x2": 5.942028985507246, "y2": -8.55072463768116, "center_x": 5.797101449275362, "center_y": -8.695652173913043, "value_uncond": 1.5979683308139013e-06}, {"x": 5.942028985507246, "y": -8.840579710144928, "x2": 6.231884057971014, "y2": -8.55072463768116, "center_x": 6.08695652173913, "center_y": -8.695652173913043, "value_uncond": 1.5081072167683986e-06}, {"x": 6.2318840579710155, "y": -8.840579710144928, "x2": 6.521739130434783, "y2": -8.55072463768116, "center_x": 6.376811594202899, "center_y": -8.695652173913043, "value_uncond": 1.4100745781337623e-06}, {"x": 6.521739130434785, "y": -8.840579710144928, "x2": 6.8115942028985526, "y2": -8.55072463768116, "center_x": 6.666666666666669, "center_y": -8.695652173913043, "value_uncond": 1.3061641575386623e-06}, {"x": 6.811594202898551, "y": -8.840579710144928, "x2": 7.101449275362318, "y2": -8.55072463768116, "center_x": 6.956521739130435, "center_y": -8.695652173913043, "value_uncond": 1.198668950703914e-06}, {"x": 7.10144927536232, "y": -8.840579710144928, "x2": 7.391304347826088, "y2": -8.55072463768116, "center_x": 7.246376811594204, "center_y": -8.695652173913043, "value_uncond": 1.089799399320701e-06}, {"x": 7.391304347826086, "y": -8.840579710144928, "x2": 7.681159420289854, "y2": -8.55072463768116, "center_x": 7.53623188405797, "center_y": -8.695652173913043, "value_uncond": 9.8161161154077e-07}, {"x": 7.681159420289855, "y": -8.840579710144928, "x2": 7.971014492753623, "y2": -8.55072463768116, "center_x": 7.826086956521739, "center_y": -8.695652173913043, "value_uncond": 8.759486032096825e-07}, {"x": 7.971014492753625, "y": -8.840579710144928, "x2": 8.260869565217392, "y2": -8.55072463768116, "center_x": 8.115942028985508, "center_y": -8.695652173913043, "value_uncond": 7.74396490945468e-07}, {"x": 8.26086956521739, "y": -8.840579710144928, "x2": 8.550724637681158, "y2": -8.55072463768116, "center_x": 8.405797101449274, "center_y": -8.695652173913043, "value_uncond": 6.782564662225695e-07}, {"x": 8.55072463768116, "y": -8.840579710144928, "x2": 8.840579710144928, "y2": -8.55072463768116, "center_x": 8.695652173913043, "center_y": -8.695652173913043, "value_uncond": 5.885323283838296e-07}, {"x": 8.84057971014493, "y": -8.840579710144928, "x2": 9.130434782608697, "y2": -8.55072463768116, "center_x": 8.985507246376812, "center_y": -8.695652173913043, "value_uncond": 5.059324312362338e-07}, {"x": 9.130434782608695, "y": -8.840579710144928, "x2": 9.420289855072463, "y2": -8.55072463768116, "center_x": 9.275362318840578, "center_y": -8.695652173913043, "value_uncond": 4.308841604846021e-07}, {"x": 9.420289855072465, "y": -8.840579710144928, "x2": 9.710144927536232, "y2": -8.55072463768116, "center_x": 9.565217391304348, "center_y": -8.695652173913043, "value_uncond": 3.6355854288509836e-07}, {"x": 9.710144927536234, "y": -8.840579710144928, "x2": 10.000000000000002, "y2": -8.55072463768116, "center_x": 9.855072463768117, "center_y": -8.695652173913043, "value_uncond": 3.039023044647501e-07}, {"x": 10.0, "y": -8.840579710144928, "x2": 10.289855072463768, "y2": -8.55072463768116, "center_x": 10.144927536231883, "center_y": -8.695652173913043, "value_uncond": 2.5167463476322513e-07}, {"x": -10.0, "y": -8.55072463768116, "x2": -9.710144927536232, "y2": -8.260869565217392, "center_x": -9.855072463768117, "center_y": -8.405797101449277, "value_uncond": 5.2241708969495986e-11}, {"x": -9.710144927536232, "y": -8.55072463768116, "x2": -9.420289855072465, "y2": -8.260869565217392, "center_x": -9.565217391304348, "center_y": -8.405797101449277, "value_uncond": 8.162203914133939e-11}, {"x": -9.420289855072463, "y": -8.55072463768116, "x2": -9.130434782608695, "y2": -8.260869565217392, "center_x": -9.275362318840578, "center_y": -8.405797101449277, "value_uncond": 1.2634071196837675e-10}, {"x": -9.130434782608695, "y": -8.55072463768116, "x2": -8.840579710144928, "y2": -8.260869565217392, "center_x": -8.985507246376812, "center_y": -8.405797101449277, "value_uncond": 1.9374255109995932e-10}, {"x": -8.840579710144928, "y": -8.55072463768116, "x2": -8.55072463768116, "y2": -8.260869565217392, "center_x": -8.695652173913043, "center_y": -8.405797101449277, "value_uncond": 2.9434219389693743e-10}, {"x": -8.55072463768116, "y": -8.55072463768116, "x2": -8.260869565217392, "y2": -8.260869565217392, "center_x": -8.405797101449277, "center_y": -8.405797101449277, "value_uncond": 4.430225634675171e-10}, {"x": -8.26086956521739, "y": -8.55072463768116, "x2": -7.971014492753623, "y2": -8.260869565217392, "center_x": -8.115942028985508, "center_y": -8.405797101449277, "value_uncond": 6.606097563964613e-10}, {"x": -7.971014492753623, "y": -8.55072463768116, "x2": -7.681159420289855, "y2": -8.260869565217392, "center_x": -7.826086956521739, "center_y": -8.405797101449277, "value_uncond": 9.75910376259108e-10}, {"x": -7.681159420289855, "y": -8.55072463768116, "x2": -7.391304347826088, "y2": -8.260869565217392, "center_x": -7.536231884057972, "center_y": -8.405797101449277, "value_uncond": 1.4283041641778947e-09}, {"x": -7.391304347826087, "y": -8.55072463768116, "x2": -7.101449275362319, "y2": -8.260869565217392, "center_x": -7.246376811594203, "center_y": -8.405797101449277, "value_uncond": 2.07098657518581e-09}, {"x": -7.101449275362318, "y": -8.55072463768116, "x2": -6.811594202898551, "y2": -8.260869565217392, "center_x": -6.956521739130435, "center_y": -8.405797101449277, "value_uncond": 2.974950058651102e-09}, {"x": -6.811594202898551, "y": -8.55072463768116, "x2": -6.521739130434783, "y2": -8.260869565217392, "center_x": -6.666666666666667, "center_y": -8.405797101449277, "value_uncond": 4.233776128403348e-09}, {"x": -6.521739130434782, "y": -8.55072463768116, "x2": -6.231884057971015, "y2": -8.260869565217392, "center_x": -6.3768115942028984, "center_y": -8.405797101449277, "value_uncond": 5.969279505777591e-09}, {"x": -6.231884057971014, "y": -8.55072463768116, "x2": -5.942028985507246, "y2": -8.260869565217392, "center_x": -6.08695652173913, "center_y": -8.405797101449277, "value_uncond": 8.33799737848785e-09}, {"x": -5.942028985507246, "y": -8.55072463768116, "x2": -5.6521739130434785, "y2": -8.260869565217392, "center_x": -5.797101449275362, "center_y": -8.405797101449277, "value_uncond": 1.153844829399938e-08}, {"x": -5.6521739130434785, "y": -8.55072463768116, "x2": -5.362318840579711, "y2": -8.260869565217392, "center_x": -5.507246376811595, "center_y": -8.405797101449277, "value_uncond": 1.5818994562821986e-08}, {"x": -5.36231884057971, "y": -8.55072463768116, "x2": -5.072463768115942, "y2": -8.260869565217392, "center_x": -5.217391304347826, "center_y": -8.405797101449277, "value_uncond": 2.1486029113127425e-08}, {"x": -5.0724637681159415, "y": -8.55072463768116, "x2": -4.782608695652174, "y2": -8.260869565217392, "center_x": -4.927536231884058, "center_y": -8.405797101449277, "value_uncond": 2.8912074711345388e-08}, {"x": -4.782608695652174, "y": -8.55072463768116, "x2": -4.492753623188406, "y2": -8.260869565217392, "center_x": -4.63768115942029, "center_y": -8.405797101449277, "value_uncond": 3.854323559455201e-08}, {"x": -4.492753623188405, "y": -8.55072463768116, "x2": -4.202898550724638, "y2": -8.260869565217392, "center_x": -4.3478260869565215, "center_y": -8.405797101449277, "value_uncond": 5.0905287705900384e-08}, {"x": -4.202898550724638, "y": -8.55072463768116, "x2": -3.91304347826087, "y2": -8.260869565217392, "center_x": -4.057971014492754, "center_y": -8.405797101449277, "value_uncond": 6.660754664192793e-08}, {"x": -3.913043478260869, "y": -8.55072463768116, "x2": -3.6231884057971016, "y2": -8.260869565217392, "center_x": -3.7681159420289854, "center_y": -8.405797101449277, "value_uncond": 8.634352867076865e-08}, {"x": -3.6231884057971016, "y": -8.55072463768116, "x2": -3.333333333333334, "y2": -8.260869565217392, "center_x": -3.4782608695652177, "center_y": -8.405797101449277, "value_uncond": 1.1088733950400234e-07}, {"x": -3.333333333333333, "y": -8.55072463768116, "x2": -3.0434782608695654, "y2": -8.260869565217392, "center_x": -3.1884057971014492, "center_y": -8.405797101449277, "value_uncond": 1.41084709582318e-07}, {"x": -3.0434782608695645, "y": -8.55072463768116, "x2": -2.753623188405797, "y2": -8.260869565217392, "center_x": -2.8985507246376807, "center_y": -8.405797101449277, "value_uncond": 1.7783766518923127e-07}, {"x": -2.753623188405797, "y": -8.55072463768116, "x2": -2.4637681159420293, "y2": -8.260869565217392, "center_x": -2.608695652173913, "center_y": -8.405797101449277, "value_uncond": 2.2208200099933804e-07}, {"x": -2.4637681159420284, "y": -8.55072463768116, "x2": -2.1739130434782608, "y2": -8.260869565217392, "center_x": -2.3188405797101446, "center_y": -8.405797101449277, "value_uncond": 2.747570155399246e-07}, {"x": -2.1739130434782608, "y": -8.55072463768116, "x2": -1.8840579710144931, "y2": -8.260869565217392, "center_x": -2.028985507246377, "center_y": -8.405797101449277, "value_uncond": 3.3676739177298414e-07}, {"x": -1.8840579710144922, "y": -8.55072463768116, "x2": -1.5942028985507246, "y2": -8.260869565217392, "center_x": -1.7391304347826084, "center_y": -8.405797101449277, "value_uncond": 4.089376443349696e-07}, {"x": -1.5942028985507246, "y": -8.55072463768116, "x2": -1.304347826086957, "y2": -8.260869565217392, "center_x": -1.4492753623188408, "center_y": -8.405797101449277, "value_uncond": 4.919601927890292e-07}, {"x": -1.304347826086957, "y": -8.55072463768116, "x2": -1.0144927536231894, "y2": -8.260869565217392, "center_x": -1.1594202898550732, "center_y": -8.405797101449277, "value_uncond": 5.863388213528535e-07}, {"x": -1.0144927536231876, "y": -8.55072463768116, "x2": -0.72463768115942, "y2": -8.260869565217392, "center_x": -0.8695652173913038, "center_y": -8.405797101449277, "value_uncond": 6.923300000192465e-07}, {"x": -0.72463768115942, "y": -8.55072463768116, "x2": -0.43478260869565233, "y2": -8.260869565217392, "center_x": -0.5797101449275361, "center_y": -8.405797101449277, "value_uncond": 8.098852073070005e-07}, {"x": -0.43478260869565233, "y": -8.55072463768116, "x2": -0.1449275362318847, "y2": -8.260869565217392, "center_x": -0.2898550724637685, "center_y": -8.405797101449277, "value_uncond": 9.385979402885297e-07}, {"x": -0.14492753623188293, "y": -8.55072463768116, "x2": 0.1449275362318847, "y2": -8.260869565217392, "center_x": 8.881784197001252e-16, "center_y": -8.405797101449277, "value_uncond": 1.077659450100381e-06}, {"x": 0.1449275362318847, "y": -8.55072463768116, "x2": 0.43478260869565233, "y2": -8.260869565217392, "center_x": 0.2898550724637685, "center_y": -8.405797101449277, "value_uncond": 1.2258273333896651e-06}, {"x": 0.43478260869565233, "y": -8.55072463768116, "x2": 0.72463768115942, "y2": -8.260869565217392, "center_x": 0.5797101449275361, "center_y": -8.405797101449277, "value_uncond": 1.3814108885194928e-06}, {"x": 0.72463768115942, "y": -8.55072463768116, "x2": 1.0144927536231876, "y2": -8.260869565217392, "center_x": 0.8695652173913038, "center_y": -8.405797101449277, "value_uncond": 1.5422765784592037e-06}, {"x": 1.0144927536231894, "y": -8.55072463768116, "x2": 1.304347826086957, "y2": -8.260869565217392, "center_x": 1.1594202898550732, "center_y": -8.405797101449277, "value_uncond": 1.705876027932241e-06}, {"x": 1.304347826086957, "y": -8.55072463768116, "x2": 1.5942028985507246, "y2": -8.260869565217392, "center_x": 1.4492753623188408, "center_y": -8.405797101449277, "value_uncond": 1.8692977522789205e-06}, {"x": 1.5942028985507246, "y": -8.55072463768116, "x2": 1.8840579710144922, "y2": -8.260869565217392, "center_x": 1.7391304347826084, "center_y": -8.405797101449277, "value_uncond": 2.0293423365645064e-06}, {"x": 1.884057971014494, "y": -8.55072463768116, "x2": 2.1739130434782616, "y2": -8.260869565217392, "center_x": 2.028985507246378, "center_y": -8.405797101449277, "value_uncond": 2.1826191553660887e-06}, {"x": 2.1739130434782616, "y": -8.55072463768116, "x2": 2.4637681159420293, "y2": -8.260869565217392, "center_x": 2.3188405797101455, "center_y": -8.405797101449277, "value_uncond": 2.325661072031476e-06}, {"x": 2.4637681159420293, "y": -8.55072463768116, "x2": 2.753623188405797, "y2": -8.260869565217392, "center_x": 2.608695652173913, "center_y": -8.405797101449277, "value_uncond": 2.455052022138501e-06}, {"x": 2.753623188405797, "y": -8.55072463768116, "x2": 3.0434782608695645, "y2": -8.260869565217392, "center_x": 2.8985507246376807, "center_y": -8.405797101449277, "value_uncond": 2.567561112617595e-06}, {"x": 3.0434782608695663, "y": -8.55072463768116, "x2": 3.333333333333334, "y2": -8.260869565217392, "center_x": 3.18840579710145, "center_y": -8.405797101449277, "value_uncond": 2.6602759859656123e-06}, {"x": 3.333333333333334, "y": -8.55072463768116, "x2": 3.6231884057971016, "y2": -8.260869565217392, "center_x": 3.4782608695652177, "center_y": -8.405797101449277, "value_uncond": 2.7307278111152564e-06}, {"x": 3.6231884057971016, "y": -8.55072463768116, "x2": 3.913043478260869, "y2": -8.260869565217392, "center_x": 3.7681159420289854, "center_y": -8.405797101449277, "value_uncond": 2.7770004316183796e-06}, {"x": 3.913043478260871, "y": -8.55072463768116, "x2": 4.202898550724639, "y2": -8.260869565217392, "center_x": 4.057971014492755, "center_y": -8.405797101449277, "value_uncond": 2.7978169415515185e-06}, {"x": 4.202898550724639, "y": -8.55072463768116, "x2": 4.492753623188406, "y2": -8.260869565217392, "center_x": 4.347826086956522, "center_y": -8.405797101449277, "value_uncond": 2.7925982306846808e-06}, {"x": 4.492753623188406, "y": -8.55072463768116, "x2": 4.782608695652174, "y2": -8.260869565217392, "center_x": 4.63768115942029, "center_y": -8.405797101449277, "value_uncond": 2.761489752615771e-06}, {"x": 4.782608695652174, "y": -8.55072463768116, "x2": 5.0724637681159415, "y2": -8.260869565217392, "center_x": 4.927536231884058, "center_y": -8.405797101449277, "value_uncond": 2.705354788997938e-06}, {"x": 5.072463768115943, "y": -8.55072463768116, "x2": 5.362318840579711, "y2": -8.260869565217392, "center_x": 5.217391304347827, "center_y": -8.405797101449277, "value_uncond": 2.625734645205194e-06}, {"x": 5.362318840579711, "y": -8.55072463768116, "x2": 5.6521739130434785, "y2": -8.260869565217392, "center_x": 5.507246376811595, "center_y": -8.405797101449277, "value_uncond": 2.52477833893488e-06}, {"x": 5.6521739130434785, "y": -8.55072463768116, "x2": 5.942028985507246, "y2": -8.260869565217392, "center_x": 5.797101449275362, "center_y": -8.405797101449277, "value_uncond": 2.4051462581167118e-06}, {"x": 5.942028985507246, "y": -8.55072463768116, "x2": 6.231884057971014, "y2": -8.260869565217392, "center_x": 6.08695652173913, "center_y": -8.405797101449277, "value_uncond": 2.2698938141044712e-06}, {"x": 6.2318840579710155, "y": -8.55072463768116, "x2": 6.521739130434783, "y2": -8.260869565217392, "center_x": 6.376811594202899, "center_y": -8.405797101449277, "value_uncond": 2.1223421827994186e-06}, {"x": 6.521739130434785, "y": -8.55072463768116, "x2": 6.8115942028985526, "y2": -8.260869565217392, "center_x": 6.666666666666669, "center_y": -8.405797101449277, "value_uncond": 1.965943739567227e-06}, {"x": 6.811594202898551, "y": -8.55072463768116, "x2": 7.101449275362318, "y2": -8.260869565217392, "center_x": 6.956521739130435, "center_y": -8.405797101449277, "value_uncond": 1.8041497355819331e-06}, {"x": 7.10144927536232, "y": -8.55072463768116, "x2": 7.391304347826088, "y2": -8.260869565217392, "center_x": 7.246376811594204, "center_y": -8.405797101449277, "value_uncond": 1.6402871676680804e-06}, {"x": 7.391304347826086, "y": -8.55072463768116, "x2": 7.681159420289854, "y2": -8.260869565217392, "center_x": 7.53623188405797, "center_y": -8.405797101449277, "value_uncond": 1.4774507409785143e-06}, {"x": 7.681159420289855, "y": -8.55072463768116, "x2": 7.971014492753623, "y2": -8.260869565217392, "center_x": 7.826086956521739, "center_y": -8.405797101449277, "value_uncond": 1.3184144295520983e-06}, {"x": 7.971014492753625, "y": -8.55072463768116, "x2": 8.260869565217392, "y2": -8.260869565217392, "center_x": 8.115942028985508, "center_y": -8.405797101449277, "value_uncond": 1.165565541306785e-06}, {"x": 8.26086956521739, "y": -8.55072463768116, "x2": 8.550724637681158, "y2": -8.260869565217392, "center_x": 8.405797101449274, "center_y": -8.405797101449277, "value_uncond": 1.020862535459508e-06}, {"x": 8.55072463768116, "y": -8.55072463768116, "x2": 8.840579710144928, "y2": -8.260869565217392, "center_x": 8.695652173913043, "center_y": -8.405797101449277, "value_uncond": 8.858162581182798e-07}, {"x": 8.84057971014493, "y": -8.55072463768116, "x2": 9.130434782608697, "y2": -8.260869565217392, "center_x": 8.985507246376812, "center_y": -8.405797101449277, "value_uncond": 7.614928721571976e-07}, {"x": 9.130434782608695, "y": -8.55072463768116, "x2": 9.420289855072463, "y2": -8.260869565217392, "center_x": 9.275362318840578, "center_y": -8.405797101449277, "value_uncond": 6.485356476016378e-07}, {"x": 9.420289855072465, "y": -8.55072463768116, "x2": 9.710144927536232, "y2": -8.260869565217392, "center_x": 9.565217391304348, "center_y": -8.405797101449277, "value_uncond": 5.472020015447292e-07}, {"x": 9.710144927536234, "y": -8.55072463768116, "x2": 10.000000000000002, "y2": -8.260869565217392, "center_x": 9.855072463768117, "center_y": -8.405797101449277, "value_uncond": 4.5741174985874186e-07}, {"x": 10.0, "y": -8.55072463768116, "x2": 10.289855072463768, "y2": -8.260869565217392, "center_x": 10.144927536231883, "center_y": -8.405797101449277, "value_uncond": 3.7880244207052163e-07}, {"x": -10.0, "y": -8.26086956521739, "x2": -9.710144927536232, "y2": -7.971014492753623, "center_x": -9.855072463768117, "center_y": -8.115942028985508, "value_uncond": 7.789983057737388e-11}, {"x": -9.710144927536232, "y": -8.26086956521739, "x2": -9.420289855072465, "y2": -7.971014492753623, "center_x": -9.565217391304348, "center_y": -8.115942028985508, "value_uncond": 1.2171008846978545e-10}, {"x": -9.420289855072463, "y": -8.26086956521739, "x2": -9.130434782608695, "y2": -7.971014492753623, "center_x": -9.275362318840578, "center_y": -8.115942028985508, "value_uncond": 1.883920004054249e-10}, {"x": -9.130434782608695, "y": -8.26086956521739, "x2": -8.840579710144928, "y2": -7.971014492753623, "center_x": -8.985507246376812, "center_y": -8.115942028985508, "value_uncond": 2.888977448101407e-10}, {"x": -8.840579710144928, "y": -8.26086956521739, "x2": -8.55072463768116, "y2": -7.971014492753623, "center_x": -8.695652173913043, "center_y": -8.115942028985508, "value_uncond": 4.3890614393438853e-10}, {"x": -8.55072463768116, "y": -8.26086956521739, "x2": -8.260869565217392, "y2": -7.971014492753623, "center_x": -8.405797101449277, "center_y": -8.115942028985508, "value_uncond": 6.606097563964613e-10}, {"x": -8.26086956521739, "y": -8.26086956521739, "x2": -7.971014492753623, "y2": -7.971014492753623, "center_x": -8.115942028985508, "center_y": -8.115942028985508, "value_uncond": 9.850632591497524e-10}, {"x": -7.971014492753623, "y": -8.26086956521739, "x2": -7.681159420289855, "y2": -7.971014492753623, "center_x": -7.826086956521739, "center_y": -8.115942028985508, "value_uncond": 1.4552214019965556e-09}, {"x": -7.681159420289855, "y": -8.26086956521739, "x2": -7.391304347826088, "y2": -7.971014492753623, "center_x": -7.536231884057972, "center_y": -8.115942028985508, "value_uncond": 2.129804989101398e-09}, {"x": -7.391304347826087, "y": -8.26086956521739, "x2": -7.101449275362319, "y2": -7.971014492753623, "center_x": -7.246376811594203, "center_y": -8.115942028985508, "value_uncond": 3.0881360222957336e-09}, {"x": -7.101449275362318, "y": -8.26086956521739, "x2": -6.811594202898551, "y2": -7.971014492753623, "center_x": -6.956521739130435, "center_y": -8.115942028985508, "value_uncond": 4.4360743573757856e-09}, {"x": -6.811594202898551, "y": -8.26086956521739, "x2": -6.521739130434783, "y2": -7.971014492753623, "center_x": -6.666666666666667, "center_y": -8.115942028985508, "value_uncond": 6.313163363352597e-09}, {"x": -6.521739130434782, "y": -8.26086956521739, "x2": -6.231884057971015, "y2": -7.971014492753623, "center_x": -6.3768115942028984, "center_y": -8.115942028985508, "value_uncond": 8.901046143811682e-09}, {"x": -6.231884057971014, "y": -8.26086956521739, "x2": -5.942028985507246, "y2": -7.971014492753623, "center_x": -6.08695652173913, "center_y": -8.115942028985508, "value_uncond": 1.2433141946371896e-08}, {"x": -5.942028985507246, "y": -8.26086956521739, "x2": -5.6521739130434785, "y2": -7.971014492753623, "center_x": -5.797101449275362, "center_y": -8.115942028985508, "value_uncond": 1.720547020682608e-08}, {"x": -5.6521739130434785, "y": -8.26086956521739, "x2": -5.362318840579711, "y2": -7.971014492753623, "center_x": -5.507246376811595, "center_y": -8.115942028985508, "value_uncond": 2.358837451255229e-08}, {"x": -5.36231884057971, "y": -8.26086956521739, "x2": -5.072463768115942, "y2": -7.971014492753623, "center_x": -5.217391304347826, "center_y": -8.115942028985508, "value_uncond": 3.203873036907085e-08}, {"x": -5.0724637681159415, "y": -8.26086956521739, "x2": -4.782608695652174, "y2": -7.971014492753623, "center_x": -4.927536231884058, "center_y": -8.115942028985508, "value_uncond": 4.311202229179132e-08}, {"x": -4.782608695652174, "y": -8.26086956521739, "x2": -4.492753623188406, "y2": -7.971014492753623, "center_x": -4.63768115942029, "center_y": -8.115942028985508, "value_uncond": 5.747345525148468e-08}, {"x": -4.492753623188405, "y": -8.26086956521739, "x2": -4.202898550724638, "y2": -7.971014492753623, "center_x": -4.3478260869565215, "center_y": -8.115942028985508, "value_uncond": 7.59070360829428e-08}, {"x": -4.202898550724638, "y": -8.26086956521739, "x2": -3.91304347826087, "y2": -7.971014492753623, "center_x": -4.057971014492754, "center_y": -8.115942028985508, "value_uncond": 9.932134114545186e-08}, {"x": -3.913043478260869, "y": -8.26086956521739, "x2": -3.6231884057971016, "y2": -7.971014492753623, "center_x": -3.7681159420289854, "center_y": -8.115942028985508, "value_uncond": 1.287505019951189e-07}, {"x": -3.6231884057971016, "y": -8.26086956521739, "x2": -3.333333333333334, "y2": -7.971014492753623, "center_x": -3.4782608695652177, "center_y": -8.115942028985508, "value_uncond": 1.6534882052923152e-07}, {"x": -3.333333333333333, "y": -8.26086956521739, "x2": -3.0434782608695654, "y2": -7.971014492753623, "center_x": -3.1884057971014492, "center_y": -8.115942028985508, "value_uncond": 2.1037740132004386e-07}, {"x": -3.0434782608695645, "y": -8.26086956521739, "x2": -2.753623188405797, "y2": -7.971014492753623, "center_x": -2.8985507246376807, "center_y": -8.115942028985508, "value_uncond": 2.651812940615314e-07}, {"x": -2.753623188405797, "y": -8.26086956521739, "x2": -2.4637681159420293, "y2": -7.971014492753623, "center_x": -2.608695652173913, "center_y": -8.115942028985508, "value_uncond": 3.3115590192951433e-07}, {"x": -2.4637681159420284, "y": -8.26086956521739, "x2": -2.1739130434782608, "y2": -7.971014492753623, "center_x": -2.3188405797101446, "center_y": -8.115942028985508, "value_uncond": 4.0970185284334017e-07}, {"x": -2.1739130434782608, "y": -8.26086956521739, "x2": -1.8840579710144931, "y2": -7.971014492753623, "center_x": -2.028985507246377, "center_y": -8.115942028985508, "value_uncond": 5.021681579830735e-07}, {"x": -1.8840579710144922, "y": -8.26086956521739, "x2": -1.5942028985507246, "y2": -7.971014492753623, "center_x": -1.7391304347826084, "center_y": -8.115942028985508, "value_uncond": 6.09784286134387e-07}, {"x": -1.5942028985507246, "y": -8.26086956521739, "x2": -1.304347826086957, "y2": -7.971014492753623, "center_x": -1.4492753623188408, "center_y": -8.115942028985508, "value_uncond": 7.33582733510017e-07}, {"x": -1.304347826086957, "y": -8.26086956521739, "x2": -1.0144927536231894, "y2": -7.971014492753623, "center_x": -1.1594202898550732, "center_y": -8.115942028985508, "value_uncond": 8.743147141490828e-07}, {"x": -1.0144927536231876, "y": -8.26086956521739, "x2": -0.72463768115942, "y2": -7.971014492753623, "center_x": -0.8695652173913038, "center_y": -8.115942028985508, "value_uncond": 1.032362661348308e-06}, {"x": -0.72463768115942, "y": -8.26086956521739, "x2": -0.43478260869565233, "y2": -7.971014492753623, "center_x": -0.5797101449275361, "center_y": -8.115942028985508, "value_uncond": 1.2076542226667024e-06}, {"x": -0.43478260869565233, "y": -8.26086956521739, "x2": -0.1449275362318847, "y2": -7.971014492753623, "center_x": -0.2898550724637685, "center_y": -8.115942028985508, "value_uncond": 1.3995832443276615e-06}, {"x": -0.14492753623188293, "y": -8.26086956521739, "x2": 0.1449275362318847, "y2": -7.971014492753623, "center_x": 8.881784197001252e-16, "center_y": -8.115942028985508, "value_uncond": 1.6069437665590913e-06}, {"x": 0.1449275362318847, "y": -8.26086956521739, "x2": 0.43478260869565233, "y2": -7.971014492753623, "center_x": 0.2898550724637685, "center_y": -8.115942028985508, "value_uncond": 1.8278831889654851e-06}, {"x": 0.43478260869565233, "y": -8.26086956521739, "x2": 0.72463768115942, "y2": -7.971014492753623, "center_x": 0.5797101449275361, "center_y": -8.115942028985508, "value_uncond": 2.0598804345440314e-06}, {"x": 0.72463768115942, "y": -8.26086956521739, "x2": 1.0144927536231876, "y2": -7.971014492753623, "center_x": 0.8695652173913038, "center_y": -8.115942028985508, "value_uncond": 2.2997540956322e-06}, {"x": 1.0144927536231894, "y": -8.26086956521739, "x2": 1.304347826086957, "y2": -7.971014492753623, "center_x": 1.1594202898550732, "center_y": -8.115942028985508, "value_uncond": 2.5437041816438e-06}, {"x": 1.304347826086957, "y": -8.26086956521739, "x2": 1.5942028985507246, "y2": -7.971014492753623, "center_x": 1.4492753623188408, "center_y": -8.115942028985508, "value_uncond": 2.7873892541727638e-06}, {"x": 1.5942028985507246, "y": -8.26086956521739, "x2": 1.8840579710144922, "y2": -7.971014492753623, "center_x": 1.7391304347826084, "center_y": -8.115942028985508, "value_uncond": 3.0260385297535673e-06}, {"x": 1.884057971014494, "y": -8.26086956521739, "x2": 2.1739130434782616, "y2": -7.971014492753623, "center_x": 2.028985507246378, "center_y": -8.115942028985508, "value_uncond": 3.2545961028424198e-06}, {"x": 2.1739130434782616, "y": -8.26086956521739, "x2": 2.4637681159420293, "y2": -7.971014492753623, "center_x": 2.3188405797101455, "center_y": -8.115942028985508, "value_uncond": 3.4678919787526597e-06}, {"x": 2.4637681159420293, "y": -8.26086956521739, "x2": 2.753623188405797, "y2": -7.971014492753623, "center_x": 2.608695652173913, "center_y": -8.115942028985508, "value_uncond": 3.660832318768493e-06}, {"x": 2.753623188405797, "y": -8.26086956521739, "x2": 3.0434782608695645, "y2": -7.971014492753623, "center_x": 2.8985507246376807, "center_y": -8.115942028985508, "value_uncond": 3.828599401040885e-06}, {"x": 3.0434782608695663, "y": -8.26086956521739, "x2": 3.333333333333334, "y2": -7.971014492753623, "center_x": 3.18840579710145, "center_y": -8.115942028985508, "value_uncond": 3.966850485629838e-06}, {"x": 3.333333333333334, "y": -8.26086956521739, "x2": 3.6231884057971016, "y2": -7.971014492753623, "center_x": 3.4782608695652177, "center_y": -8.115942028985508, "value_uncond": 4.071904193697249e-06}, {"x": 3.6231884057971016, "y": -8.26086956521739, "x2": 3.913043478260869, "y2": -7.971014492753623, "center_x": 3.7681159420289854, "center_y": -8.115942028985508, "value_uncond": 4.14090326299778e-06}, {"x": 3.913043478260871, "y": -8.26086956521739, "x2": 4.202898550724639, "y2": -7.971014492753623, "center_x": 4.057971014492755, "center_y": -8.115942028985508, "value_uncond": 4.171943644887863e-06}, {"x": 4.202898550724639, "y": -8.26086956521739, "x2": 4.492753623188406, "y2": -7.971014492753623, "center_x": 4.347826086956522, "center_y": -8.115942028985508, "value_uncond": 4.164161803512874e-06}, {"x": 4.492753623188406, "y": -8.26086956521739, "x2": 4.782608695652174, "y2": -7.971014492753623, "center_x": 4.63768115942029, "center_y": -8.115942028985508, "value_uncond": 4.117774630909027e-06}, {"x": 4.782608695652174, "y": -8.26086956521739, "x2": 5.0724637681159415, "y2": -7.971014492753623, "center_x": 4.927536231884058, "center_y": -8.115942028985508, "value_uncond": 4.034069403006746e-06}, {"x": 5.072463768115943, "y": -8.26086956521739, "x2": 5.362318840579711, "y2": -7.971014492753623, "center_x": 5.217391304347827, "center_y": -8.115942028985508, "value_uncond": 3.915344425697475e-06}, {"x": 5.362318840579711, "y": -8.26086956521739, "x2": 5.6521739130434785, "y2": -7.971014492753623, "center_x": 5.507246376811595, "center_y": -8.115942028985508, "value_uncond": 3.7648041905231814e-06}, {"x": 5.6521739130434785, "y": -8.26086956521739, "x2": 5.942028985507246, "y2": -7.971014492753623, "center_x": 5.797101449275362, "center_y": -8.115942028985508, "value_uncond": 3.586415714893573e-06}, {"x": 5.942028985507246, "y": -8.26086956521739, "x2": 6.231884057971014, "y2": -7.971014492753623, "center_x": 6.08695652173913, "center_y": -8.115942028985508, "value_uncond": 3.3847350524198137e-06}, {"x": 6.2318840579710155, "y": -8.26086956521739, "x2": 6.521739130434783, "y2": -7.971014492753623, "center_x": 6.376811594202899, "center_y": -8.115942028985508, "value_uncond": 3.1647145495149364e-06}, {"x": 6.521739130434785, "y": -8.26086956521739, "x2": 6.8115942028985526, "y2": -7.971014492753623, "center_x": 6.666666666666669, "center_y": -8.115942028985508, "value_uncond": 2.931502189684466e-06}, {"x": 6.811594202898551, "y": -8.26086956521739, "x2": 7.101449275362318, "y2": -7.971014492753623, "center_x": 6.956521739130435, "center_y": -8.115942028985508, "value_uncond": 2.6902442801040447e-06}, {"x": 7.10144927536232, "y": -8.26086956521739, "x2": 7.391304347826088, "y2": -7.971014492753623, "center_x": 7.246376811594204, "center_y": -8.115942028985508, "value_uncond": 2.445901847012585e-06}, {"x": 7.391304347826086, "y": -8.26086956521739, "x2": 7.681159420289854, "y2": -7.971014492753623, "center_x": 7.53623188405797, "center_y": -8.115942028985508, "value_uncond": 2.2030895366735617e-06}, {"x": 7.681159420289855, "y": -8.26086956521739, "x2": 7.971014492753623, "y2": -7.971014492753623, "center_x": 7.826086956521739, "center_y": -8.115942028985508, "value_uncond": 1.965943739567227e-06}, {"x": 7.971014492753625, "y": -8.26086956521739, "x2": 8.260869565217392, "y2": -7.971014492753623, "center_x": 8.115942028985508, "center_y": -8.115942028985508, "value_uncond": 1.7380242719019876e-06}, {"x": 8.26086956521739, "y": -8.26086956521739, "x2": 8.550724637681158, "y2": -7.971014492753623, "center_x": 8.405797101449274, "center_y": -8.115942028985508, "value_uncond": 1.5222514753780152e-06}, {"x": 8.55072463768116, "y": -8.26086956521739, "x2": 8.840579710144928, "y2": -7.971014492753623, "center_x": 8.695652173913043, "center_y": -8.115942028985508, "value_uncond": 1.3208782367818309e-06}, {"x": 8.84057971014493, "y": -8.26086956521739, "x2": 9.130434782608697, "y2": -7.971014492753623, "center_x": 8.985507246376812, "center_y": -8.115942028985508, "value_uncond": 1.1354943568473354e-06}, {"x": 9.130434782608695, "y": -8.26086956521739, "x2": 9.420289855072463, "y2": -7.971014492753623, "center_x": 9.275362318840578, "center_y": -8.115942028985508, "value_uncond": 9.670590428244664e-07}, {"x": 9.420289855072465, "y": -8.26086956521739, "x2": 9.710144927536232, "y2": -7.971014492753623, "center_x": 9.565217391304348, "center_y": -8.115942028985508, "value_uncond": 8.15956140271452e-07}, {"x": 9.710144927536234, "y": -8.26086956521739, "x2": 10.000000000000002, "y2": -7.971014492753623, "center_x": 9.855072463768117, "center_y": -8.115942028985508, "value_uncond": 6.820660832305835e-07}, {"x": 10.0, "y": -8.26086956521739, "x2": 10.289855072463768, "y2": -7.971014492753623, "center_x": 10.144927536231883, "center_y": -8.115942028985508, "value_uncond": 5.648484064106578e-07}, {"x": -10.0, "y": -7.971014492753623, "x2": -9.710144927536232, "y2": -7.681159420289855, "center_x": -9.855072463768117, "center_y": -7.826086956521739, "value_uncond": 1.150804271859119e-10}, {"x": -9.710144927536232, "y": -7.971014492753623, "x2": -9.420289855072465, "y2": -7.681159420289855, "center_x": -9.565217391304348, "center_y": -7.826086956521739, "value_uncond": 1.7980076298145616e-10}, {"x": -9.420289855072463, "y": -7.971014492753623, "x2": -9.130434782608695, "y2": -7.681159420289855, "center_x": -9.275362318840578, "center_y": -7.826086956521739, "value_uncond": 2.783091018860542e-10}, {"x": -9.130434782608695, "y": -7.971014492753623, "x2": -8.840579710144928, "y2": -7.681159420289855, "center_x": -8.985507246376812, "center_y": -7.826086956521739, "value_uncond": 4.267849575459015e-10}, {"x": -8.840579710144928, "y": -7.971014492753623, "x2": -8.55072463768116, "y2": -7.681159420289855, "center_x": -8.695652173913043, "center_y": -7.826086956521739, "value_uncond": 6.483904543068586e-10}, {"x": -8.55072463768116, "y": -7.971014492753623, "x2": -8.260869565217392, "y2": -7.681159420289855, "center_x": -8.405797101449277, "center_y": -7.826086956521739, "value_uncond": 9.75910376259108e-10}, {"x": -8.26086956521739, "y": -7.971014492753623, "x2": -7.971014492753623, "y2": -7.681159420289855, "center_x": -8.115942028985508, "center_y": -7.826086956521739, "value_uncond": 1.4552214019965556e-09}, {"x": -7.971014492753623, "y": -7.971014492753623, "x2": -7.681159420289855, "y2": -7.681159420289855, "center_x": -7.826086956521739, "center_y": -7.826086956521739, "value_uncond": 2.1497800361132766e-09}, {"x": -7.681159420289855, "y": -7.971014492753623, "x2": -7.391304347826088, "y2": -7.681159420289855, "center_x": -7.536231884057972, "center_y": -7.826086956521739, "value_uncond": 3.146333774436529e-09}, {"x": -7.391304347826087, "y": -7.971014492753623, "x2": -7.101449275362319, "y2": -7.681159420289855, "center_x": -7.246376811594203, "center_y": -7.826086956521739, "value_uncond": 4.5620639996259195e-09}, {"x": -7.101449275362318, "y": -7.971014492753623, "x2": -6.811594202898551, "y2": -7.681159420289855, "center_x": -6.956521739130435, "center_y": -7.826086956521739, "value_uncond": 6.553356127882929e-09}, {"x": -6.811594202898551, "y": -7.971014492753623, "x2": -6.521739130434783, "y2": -7.681159420289855, "center_x": -6.666666666666667, "center_y": -7.826086956521739, "value_uncond": 9.326355800317806e-09}, {"x": -6.521739130434782, "y": -7.971014492753623, "x2": -6.231884057971015, "y2": -7.681159420289855, "center_x": -6.3768115942028984, "center_y": -7.826086956521739, "value_uncond": 1.314940205953262e-08}, {"x": -6.231884057971014, "y": -7.971014492753623, "x2": -5.942028985507246, "y2": -7.681159420289855, "center_x": -6.08695652173913, "center_y": -7.826086956521739, "value_uncond": 1.836732218602715e-08}, {"x": -5.942028985507246, "y": -7.971014492753623, "x2": -5.6521739130434785, "y2": -7.681159420289855, "center_x": -5.797101449275362, "center_y": -7.826086956521739, "value_uncond": 2.5417421920698242e-08}, {"x": -5.6521739130434785, "y": -7.971014492753623, "x2": -5.362318840579711, "y2": -7.681159420289855, "center_x": -5.507246376811595, "center_y": -7.826086956521739, "value_uncond": 3.484680512661137e-08}, {"x": -5.36231884057971, "y": -7.971014492753623, "x2": -5.072463768115942, "y2": -7.681159420289855, "center_x": -5.217391304347826, "center_y": -7.826086956521739, "value_uncond": 4.7330408166995674e-08}, {"x": -5.0724637681159415, "y": -7.971014492753623, "x2": -4.782608695652174, "y2": -7.681159420289855, "center_x": -4.927536231884058, "center_y": -7.826086956521739, "value_uncond": 6.368884123900681e-08}, {"x": -4.782608695652174, "y": -7.971014492753623, "x2": -4.492753623188406, "y2": -7.681159420289855, "center_x": -4.63768115942029, "center_y": -7.826086956521739, "value_uncond": 8.490480317055164e-08}, {"x": -4.492753623188405, "y": -7.971014492753623, "x2": -4.202898550724638, "y2": -7.681159420289855, "center_x": -4.3478260869565215, "center_y": -7.826086956521739, "value_uncond": 1.1213649726959334e-07}, {"x": -4.202898550724638, "y": -7.971014492753623, "x2": -3.91304347826087, "y2": -7.681159420289855, "center_x": -4.057971014492754, "center_y": -7.826086956521739, "value_uncond": 1.467261518154846e-07}, {"x": -3.913043478260869, "y": -7.971014492753623, "x2": -3.6231884057971016, "y2": -7.681159420289855, "center_x": -3.7681159420289854, "center_y": -7.826086956521739, "value_uncond": 1.902014761801341e-07}, {"x": -3.6231884057971016, "y": -7.971014492753623, "x2": -3.333333333333334, "y2": -7.681159420289855, "center_x": -3.4782608695652177, "center_y": -7.826086956521739, "value_uncond": 2.442677058493814e-07}, {"x": -3.333333333333333, "y": -7.971014492753623, "x2": -3.0434782608695654, "y2": -7.681159420289855, "center_x": -3.1884057971014492, "center_y": -7.826086956521739, "value_uncond": 3.1078785454001425e-07}, {"x": -3.0434782608695645, "y": -7.971014492753623, "x2": -2.753623188405797, "y2": -7.681159420289855, "center_x": -2.8985507246376807, "center_y": -7.826086956521739, "value_uncond": 3.917489470275911e-07}, {"x": -2.753623188405797, "y": -7.971014492753623, "x2": -2.4637681159420293, "y2": -7.681159420289855, "center_x": -2.608695652173913, "center_y": -7.826086956521739, "value_uncond": 4.892123946448407e-07}, {"x": -2.4637681159420284, "y": -7.971014492753623, "x2": -2.1739130434782608, "y2": -7.681159420289855, "center_x": -2.3188405797101446, "center_y": -7.826086956521739, "value_uncond": 6.052473271715371e-07}, {"x": -2.1739130434782608, "y": -7.971014492753623, "x2": -1.8840579710144931, "y2": -7.681159420289855, "center_x": -2.028985507246377, "center_y": -7.826086956521739, "value_uncond": 7.418466216361657e-07}, {"x": -1.8840579710144922, "y": -7.971014492753623, "x2": -1.5942028985507246, "y2": -7.681159420289855, "center_x": -1.7391304347826084, "center_y": -7.826086956521739, "value_uncond": 9.008265566110717e-07}, {"x": -1.5942028985507246, "y": -7.971014492753623, "x2": -1.304347826086957, "y2": -7.681159420289855, "center_x": -1.4492753623188408, "center_y": -7.826086956521739, "value_uncond": 1.0837124255962345e-06}, {"x": -1.304347826086957, "y": -7.971014492753623, "x2": -1.0144927536231894, "y2": -7.681159420289855, "center_x": -1.1594202898550732, "center_y": -7.826086956521739, "value_uncond": 1.291613987520393e-06}, {"x": -1.0144927536231876, "y": -7.971014492753623, "x2": -0.72463768115942, "y2": -7.681159420289855, "center_x": -0.8695652173913038, "center_y": -7.826086956521739, "value_uncond": 1.5250962062201841e-06}, {"x": -0.72463768115942, "y": -7.971014492753623, "x2": -0.43478260869565233, "y2": -7.681159420289855, "center_x": -0.5797101449275361, "center_y": -7.826086956521739, "value_uncond": 1.7840521963563896e-06}, {"x": -0.43478260869565233, "y": -7.971014492753623, "x2": -0.1449275362318847, "y2": -7.681159420289855, "center_x": -0.2898550724637685, "center_y": -7.826086956521739, "value_uncond": 2.067586494677862e-06}, {"x": -0.14492753623188293, "y": -7.971014492753623, "x2": 0.1449275362318847, "y2": -7.681159420289855, "center_x": 8.881784197001252e-16, "center_y": -7.826086956521739, "value_uncond": 2.373917552178486e-06}, {"x": 0.1449275362318847, "y": -7.971014492753623, "x2": 0.43478260869565233, "y2": -7.681159420289855, "center_x": 0.2898550724637685, "center_y": -7.826086956521739, "value_uncond": 2.7003085458980758e-06}, {"x": 0.43478260869565233, "y": -7.971014492753623, "x2": 0.72463768115942, "y2": -7.681159420289855, "center_x": 0.5797101449275361, "center_y": -7.826086956521739, "value_uncond": 3.043035120901547e-06}, {"x": 0.72463768115942, "y": -7.971014492753623, "x2": 1.0144927536231876, "y2": -7.681159420289855, "center_x": 0.8695652173913038, "center_y": -7.826086956521739, "value_uncond": 3.3973974241835387e-06}, {"x": 1.0144927536231894, "y": -7.971014492753623, "x2": 1.304347826086957, "y2": -7.681159420289855, "center_x": 1.1594202898550732, "center_y": -7.826086956521739, "value_uncond": 3.757781778066953e-06}, {"x": 1.304347826086957, "y": -7.971014492753623, "x2": 1.5942028985507246, "y2": -7.681159420289855, "center_x": 1.4492753623188408, "center_y": -7.826086956521739, "value_uncond": 4.117774630909027e-06}, {"x": 1.5942028985507246, "y": -7.971014492753623, "x2": 1.8840579710144922, "y2": -7.681159420289855, "center_x": 1.7391304347826084, "center_y": -7.826086956521739, "value_uncond": 4.470328165080958e-06}, {"x": 1.884057971014494, "y": -7.971014492753623, "x2": 2.1739130434782616, "y2": -7.681159420289855, "center_x": 2.028985507246378, "center_y": -7.826086956521739, "value_uncond": 4.807973355740461e-06}, {"x": 2.1739130434782616, "y": -7.971014492753623, "x2": 2.4637681159420293, "y2": -7.681159420289855, "center_x": 2.3188405797101455, "center_y": -7.826086956521739, "value_uncond": 5.123072635608127e-06}, {"x": 2.4637681159420293, "y": -7.971014492753623, "x2": 2.753623188405797, "y2": -7.681159420289855, "center_x": 2.608695652173913, "center_y": -7.826086956521739, "value_uncond": 5.4081009416499825e-06}, {"x": 2.753623188405797, "y": -7.971014492753623, "x2": 3.0434782608695645, "y2": -7.681159420289855, "center_x": 2.8985507246376807, "center_y": -7.826086956521739, "value_uncond": 5.65594111476133e-06}, {"x": 3.0434782608695663, "y": -7.971014492753623, "x2": 3.333333333333334, "y2": -7.681159420289855, "center_x": 3.18840579710145, "center_y": -7.826086956521739, "value_uncond": 5.860177680559899e-06}, {"x": 3.333333333333334, "y": -7.971014492753623, "x2": 3.6231884057971016, "y2": -7.681159420289855, "center_x": 3.4782608695652177, "center_y": -7.826086956521739, "value_uncond": 6.015372184992783e-06}, {"x": 3.6231884057971016, "y": -7.971014492753623, "x2": 3.913043478260869, "y2": -7.681159420289855, "center_x": 3.7681159420289854, "center_y": -7.826086956521739, "value_uncond": 6.117303630949506e-06}, {"x": 3.913043478260871, "y": -7.971014492753623, "x2": 4.202898550724639, "y2": -7.681159420289855, "center_x": 4.057971014492755, "center_y": -7.826086956521739, "value_uncond": 6.1631591916285006e-06}, {"x": 4.202898550724639, "y": -7.971014492753623, "x2": 4.492753623188406, "y2": -7.681159420289855, "center_x": 4.347826086956522, "center_y": -7.826086956521739, "value_uncond": 6.1516631765141e-06}, {"x": 4.492753623188406, "y": -7.971014492753623, "x2": 4.782608695652174, "y2": -7.681159420289855, "center_x": 4.63768115942029, "center_y": -7.826086956521739, "value_uncond": 6.08313599744797e-06}, {"x": 4.782608695652174, "y": -7.971014492753623, "x2": 5.0724637681159415, "y2": -7.681159420289855, "center_x": 4.927536231884058, "center_y": -7.826086956521739, "value_uncond": 5.9594793307608665e-06}, {"x": 5.072463768115943, "y": -7.971014492753623, "x2": 5.362318840579711, "y2": -7.681159420289855, "center_x": 5.217391304347827, "center_y": -7.826086956521739, "value_uncond": 5.7840884344633715e-06}, {"x": 5.362318840579711, "y": -7.971014492753623, "x2": 5.6521739130434785, "y2": -7.681159420289855, "center_x": 5.507246376811595, "center_y": -7.826086956521739, "value_uncond": 5.561697263081826e-06}, {"x": 5.6521739130434785, "y": -7.971014492753623, "x2": 5.942028985507246, "y2": -7.681159420289855, "center_x": 5.797101449275362, "center_y": -7.826086956521739, "value_uncond": 5.2981662408916325e-06}, {"x": 5.942028985507246, "y": -7.971014492753623, "x2": 6.231884057971014, "y2": -7.681159420289855, "center_x": 6.08695652173913, "center_y": -7.826086956521739, "value_uncond": 5.0002259678435955e-06}, {"x": 6.2318840579710155, "y": -7.971014492753623, "x2": 6.521739130434783, "y2": -7.681159420289855, "center_x": 6.376811594202899, "center_y": -7.826086956521739, "value_uncond": 4.675192482195596e-06}, {"x": 6.521739130434785, "y": -7.971014492753623, "x2": 6.8115942028985526, "y2": -7.681159420289855, "center_x": 6.666666666666669, "center_y": -7.826086956521739, "value_uncond": 4.330670834389596e-06}, {"x": 6.811594202898551, "y": -7.971014492753623, "x2": 7.101449275362318, "y2": -7.681159420289855, "center_x": 6.956521739130435, "center_y": -7.826086956521739, "value_uncond": 3.974263598446794e-06}, {"x": 7.10144927536232, "y": -7.971014492753623, "x2": 7.391304347826088, "y2": -7.681159420289855, "center_x": 7.246376811594204, "center_y": -7.826086956521739, "value_uncond": 3.613299635221212e-06}, {"x": 7.391304347826086, "y": -7.971014492753623, "x2": 7.681159420289854, "y2": -7.681159420289855, "center_x": 7.53623188405797, "center_y": -7.826086956521739, "value_uncond": 3.2545961028424198e-06}, {"x": 7.681159420289855, "y": -7.971014492753623, "x2": 7.971014492753623, "y2": -7.681159420289855, "center_x": 7.826086956521739, "center_y": -7.826086956521739, "value_uncond": 2.9042636382649264e-06}, {"x": 7.971014492753625, "y": -7.971014492753623, "x2": 8.260869565217392, "y2": -7.681159420289855, "center_x": 8.115942028985508, "center_y": -7.826086956521739, "value_uncond": 2.567561112617595e-06}, {"x": 8.26086956521739, "y": -7.971014492753623, "x2": 8.550724637681158, "y2": -7.681159420289855, "center_x": 8.405797101449274, "center_y": -7.826086956521739, "value_uncond": 2.248802709485845e-06}, {"x": 8.55072463768116, "y": -7.971014492753623, "x2": 8.840579710144928, "y2": -7.681159420289855, "center_x": 8.695652173913043, "center_y": -7.826086956521739, "value_uncond": 1.9513165898152533e-06}, {"x": 8.84057971014493, "y": -7.971014492753623, "x2": 9.130434782608697, "y2": -7.681159420289855, "center_x": 8.985507246376812, "center_y": -7.826086956521739, "value_uncond": 1.6774513459742732e-06}, {"x": 9.130434782608695, "y": -7.971014492753623, "x2": 9.420289855072463, "y2": -7.681159420289855, "center_x": 9.275362318840578, "center_y": -7.826086956521739, "value_uncond": 1.4286240026119246e-06}, {"x": 9.420289855072465, "y": -7.971014492753623, "x2": 9.710144927536232, "y2": -7.681159420289855, "center_x": 9.565217391304348, "center_y": -7.826086956521739, "value_uncond": 1.2054016098807787e-06}, {"x": 9.710144927536234, "y": -7.971014492753623, "x2": 10.000000000000002, "y2": -7.681159420289855, "center_x": 9.855072463768117, "center_y": -7.826086956521739, "value_uncond": 1.0076075345149136e-06}, {"x": 10.0, "y": -7.971014492753623, "x2": 10.289855072463768, "y2": -7.681159420289855, "center_x": 10.144927536231883, "center_y": -7.826086956521739, "value_uncond": 8.344433540257313e-07}, {"x": -10.0, "y": -7.681159420289855, "x2": -9.710144927536232, "y2": -7.391304347826088, "center_x": -9.855072463768117, "center_y": -7.536231884057972, "value_uncond": 1.6842720127136773e-10}, {"x": -9.710144927536232, "y": -7.681159420289855, "x2": -9.420289855072465, "y2": -7.391304347826088, "center_x": -9.565217391304348, "center_y": -7.536231884057972, "value_uncond": 2.6314934725173203e-10}, {"x": -9.420289855072463, "y": -7.681159420289855, "x2": -9.130434782608695, "y2": -7.391304347826088, "center_x": -9.275362318840578, "center_y": -7.536231884057972, "value_uncond": 4.0732228985637995e-10}, {"x": -9.130434782608695, "y": -7.681159420289855, "x2": -8.840579710144928, "y2": -7.391304347826088, "center_x": -8.985507246376812, "center_y": -7.536231884057972, "value_uncond": 6.246257309077444e-10}, {"x": -8.840579710144928, "y": -7.681159420289855, "x2": -8.55072463768116, "y2": -7.391304347826088, "center_x": -8.695652173913043, "center_y": -7.536231884057972, "value_uncond": 9.4895884748109e-10}, {"x": -8.55072463768116, "y": -7.681159420289855, "x2": -8.260869565217392, "y2": -7.391304347826088, "center_x": -8.405797101449277, "center_y": -7.536231884057972, "value_uncond": 1.4283041641778947e-09}, {"x": -8.26086956521739, "y": -7.681159420289855, "x2": -7.971014492753623, "y2": -7.391304347826088, "center_x": -8.115942028985508, "center_y": -7.536231884057972, "value_uncond": 2.129804989101398e-09}, {"x": -7.971014492753623, "y": -7.681159420289855, "x2": -7.681159420289855, "y2": -7.391304347826088, "center_x": -7.826086956521739, "center_y": -7.536231884057972, "value_uncond": 3.146333774436529e-09}, {"x": -7.681159420289855, "y": -7.681159420289855, "x2": -7.391304347826088, "y2": -7.391304347826088, "center_x": -7.536231884057972, "center_y": -7.536231884057972, "value_uncond": 4.604850753967282e-09}, {"x": -7.391304347826087, "y": -7.681159420289855, "x2": -7.101449275362319, "y2": -7.391304347826088, "center_x": -7.246376811594203, "center_y": -7.536231884057972, "value_uncond": 6.6768580050241456e-09}, {"x": -7.101449275362318, "y": -7.681159420289855, "x2": -6.811594202898551, "y2": -7.391304347826088, "center_x": -6.956521739130435, "center_y": -7.536231884057972, "value_uncond": 9.591235091357127e-09}, {"x": -6.811594202898551, "y": -7.681159420289855, "x2": -6.521739130434783, "y2": -7.391304347826088, "center_x": -6.666666666666667, "center_y": -7.536231884057972, "value_uncond": 1.3649688690943727e-08}, {"x": -6.521739130434782, "y": -7.681159420289855, "x2": -6.231884057971015, "y2": -7.391304347826088, "center_x": -6.3768115942028984, "center_y": -7.536231884057972, "value_uncond": 1.924494930576833e-08}, {"x": -6.231884057971014, "y": -7.681159420289855, "x2": -5.942028985507246, "y2": -7.391304347826088, "center_x": -6.08695652173913, "center_y": -7.536231884057972, "value_uncond": 2.688169262392831e-08}, {"x": -5.942028985507246, "y": -7.681159420289855, "x2": -5.6521739130434785, "y2": -7.391304347826088, "center_x": -5.797101449275362, "center_y": -7.536231884057972, "value_uncond": 3.719994218235569e-08}, {"x": -5.6521739130434785, "y": -7.681159420289855, "x2": -5.362318840579711, "y2": -7.391304347826088, "center_x": -5.507246376811595, "center_y": -7.536231884057972, "value_uncond": 5.100041774473357e-08}, {"x": -5.36231884057971, "y": -7.681159420289855, "x2": -5.072463768115942, "y2": -7.391304347826088, "center_x": -5.217391304347826, "center_y": -7.536231884057972, "value_uncond": 6.92709297100564e-08}, {"x": -5.0724637681159415, "y": -7.681159420289855, "x2": -4.782608695652174, "y2": -7.391304347826088, "center_x": -4.927536231884058, "center_y": -7.536231884057972, "value_uncond": 9.321249098921986e-08}, {"x": -4.782608695652174, "y": -7.681159420289855, "x2": -4.492753623188406, "y2": -7.391304347826088, "center_x": -4.63768115942029, "center_y": -7.536231884057972, "value_uncond": 1.2426334105807845e-07}, {"x": -4.492753623188405, "y": -7.681159420289855, "x2": -4.202898550724638, "y2": -7.391304347826088, "center_x": -4.3478260869565215, "center_y": -7.536231884057972, "value_uncond": 1.641185808684942e-07}, {"x": -4.202898550724638, "y": -7.681159420289855, "x2": -3.91304347826087, "y2": -7.391304347826088, "center_x": -4.057971014492754, "center_y": -7.536231884057972, "value_uncond": 2.1474264310538774e-07}, {"x": -3.913043478260869, "y": -7.681159420289855, "x2": -3.6231884057971016, "y2": -7.391304347826088, "center_x": -3.7681159420289854, "center_y": -7.536231884057972, "value_uncond": 2.783714233085887e-07}, {"x": -3.6231884057971016, "y": -7.681159420289855, "x2": -3.333333333333334, "y2": -7.391304347826088, "center_x": -3.4782608695652177, "center_y": -7.536231884057972, "value_uncond": 3.575006372780089e-07}, {"x": -3.333333333333333, "y": -7.681159420289855, "x2": -3.0434782608695654, "y2": -7.391304347826088, "center_x": -3.1884057971014492, "center_y": -7.536231884057972, "value_uncond": 4.548569188463666e-07}, {"x": -3.0434782608695645, "y": -7.681159420289855, "x2": -2.753623188405797, "y2": -7.391304347826088, "center_x": -2.8985507246376807, "center_y": -7.536231884057972, "value_uncond": 5.733483995698952e-07}, {"x": -2.753623188405797, "y": -7.681159420289855, "x2": -2.4637681159420293, "y2": -7.391304347826088, "center_x": -2.608695652173913, "center_y": -7.536231884057972, "value_uncond": 7.159920802534279e-07}, {"x": -2.4637681159420284, "y": -7.681159420289855, "x2": -2.1739130434782608, "y2": -7.391304347826088, "center_x": -2.3188405797101446, "center_y": -7.536231884057972, "value_uncond": 8.858162581182814e-07}, {"x": -2.1739130434782608, "y": -7.681159420289855, "x2": -1.8840579710144931, "y2": -7.391304347826088, "center_x": -2.028985507246377, "center_y": -7.536231884057972, "value_uncond": 1.0857376298486197e-06}, {"x": -1.8840579710144922, "y": -7.681159420289855, "x2": -1.5942028985507246, "y2": -7.391304347826088, "center_x": -1.7391304347826084, "center_y": -7.536231884057972, "value_uncond": 1.3184144295521006e-06}, {"x": -1.5942028985507246, "y": -7.681159420289855, "x2": -1.304347826086957, "y2": -7.391304347826088, "center_x": -1.4492753623188408, "center_y": -7.536231884057972, "value_uncond": 1.586079016993117e-06}, {"x": -1.304347826086957, "y": -7.681159420289855, "x2": -1.0144927536231894, "y2": -7.391304347826088, "center_x": -1.1594202898550732, "center_y": -7.536231884057972, "value_uncond": 1.8903555918294522e-06}, {"x": -1.0144927536231876, "y": -7.681159420289855, "x2": -0.72463768115942, "y2": -7.391304347826088, "center_x": -0.8695652173913038, "center_y": -7.536231884057972, "value_uncond": 2.2320710129818836e-06}, {"x": -0.72463768115942, "y": -7.681159420289855, "x2": -0.43478260869565233, "y2": -7.391304347826088, "center_x": -0.5797101449275361, "center_y": -7.536231884057972, "value_uncond": 2.611068847258569e-06}, {"x": -0.43478260869565233, "y": -7.681159420289855, "x2": -0.1449275362318847, "y2": -7.391304347826088, "center_x": -0.2898550724637685, "center_y": -7.536231884057972, "value_uncond": 3.0260385297535673e-06}, {"x": -0.14492753623188293, "y": -7.681159420289855, "x2": 0.1449275362318847, "y2": -7.391304347826088, "center_x": 8.881784197001252e-16, "center_y": -7.536231884057972, "value_uncond": 3.4743726551907147e-06}, {"x": 0.1449275362318847, "y": -7.681159420289855, "x2": 0.43478260869565233, "y2": -7.391304347826088, "center_x": 0.2898550724637685, "center_y": -7.536231884057972, "value_uncond": 3.952065716788075e-06}, {"x": 0.43478260869565233, "y": -7.681159420289855, "x2": 0.72463768115942, "y2": -7.391304347826088, "center_x": 0.5797101449275361, "center_y": -7.536231884057972, "value_uncond": 4.453666894683446e-06}, {"x": 0.72463768115942, "y": -7.681159420289855, "x2": 1.0144927536231876, "y2": -7.391304347826088, "center_x": 0.8695652173913038, "center_y": -7.536231884057972, "value_uncond": 4.97229766828531e-06}, {"x": 1.0144927536231894, "y": -7.681159420289855, "x2": 1.304347826086957, "y2": -7.391304347826088, "center_x": 1.1594202898550732, "center_y": -7.536231884057972, "value_uncond": 5.499742079040889e-06}, {"x": 1.304347826086957, "y": -7.681159420289855, "x2": 1.5942028985507246, "y2": -7.391304347826088, "center_x": 1.4492753623188408, "center_y": -7.536231884057972, "value_uncond": 6.026613504221936e-06}, {"x": 1.5942028985507246, "y": -7.681159420289855, "x2": 1.8840579710144922, "y2": -7.391304347826088, "center_x": 1.7391304347826084, "center_y": -7.536231884057972, "value_uncond": 6.5425970342707065e-06}, {"x": 1.884057971014494, "y": -7.681159420289855, "x2": 2.1739130434782616, "y2": -7.391304347826088, "center_x": 2.028985507246378, "center_y": -7.536231884057972, "value_uncond": 7.036761297266066e-06}, {"x": 2.1739130434782616, "y": -7.681159420289855, "x2": 2.4637681159420293, "y2": -7.391304347826088, "center_x": 2.3188405797101455, "center_y": -7.536231884057972, "value_uncond": 7.497928249183951e-06}, {"x": 2.4637681159420293, "y": -7.681159420289855, "x2": 2.753623188405797, "y2": -7.391304347826088, "center_x": 2.608695652173913, "center_y": -7.536231884057972, "value_uncond": 7.915084502802953e-06}, {"x": 2.753623188405797, "y": -7.681159420289855, "x2": 3.0434782608695645, "y2": -7.391304347826088, "center_x": 2.8985507246376807, "center_y": -7.536231884057972, "value_uncond": 8.277813663099864e-06}, {"x": 3.0434782608695663, "y": -7.681159420289855, "x2": 3.333333333333334, "y2": -7.391304347826088, "center_x": 3.18840579710145, "center_y": -7.536231884057972, "value_uncond": 8.57672629330027e-06}, {"x": 3.333333333333334, "y": -7.681159420289855, "x2": 3.6231884057971016, "y2": -7.391304347826088, "center_x": 3.4782608695652177, "center_y": -7.536231884057972, "value_uncond": 8.803862885277813e-06}, {"x": 3.6231884057971016, "y": -7.681159420289855, "x2": 3.913043478260869, "y2": -7.391304347826088, "center_x": 3.7681159420289854, "center_y": -7.536231884057972, "value_uncond": 8.953045753154204e-06}, {"x": 3.913043478260871, "y": -7.681159420289855, "x2": 4.202898550724639, "y2": -7.391304347826088, "center_x": 4.057971014492755, "center_y": -7.536231884057972, "value_uncond": 9.020158153905162e-06}, {"x": 4.202898550724639, "y": -7.681159420289855, "x2": 4.492753623188406, "y2": -7.391304347826088, "center_x": 4.347826086956522, "center_y": -7.536231884057972, "value_uncond": 9.003333036907952e-06}, {"x": 4.492753623188406, "y": -7.681159420289855, "x2": 4.782608695652174, "y2": -7.391304347826088, "center_x": 4.63768115942029, "center_y": -7.536231884057972, "value_uncond": 8.90303934437165e-06}, {"x": 4.782608695652174, "y": -7.681159420289855, "x2": 5.0724637681159415, "y2": -7.391304347826088, "center_x": 4.927536231884058, "center_y": -7.536231884057972, "value_uncond": 8.72206029521493e-06}, {"x": 5.072463768115943, "y": -7.681159420289855, "x2": 5.362318840579711, "y2": -7.391304347826088, "center_x": 5.217391304347827, "center_y": -7.536231884057972, "value_uncond": 8.465365055944217e-06}, {"x": 5.362318840579711, "y": -7.681159420289855, "x2": 5.6521739130434785, "y2": -7.391304347826088, "center_x": 5.507246376811595, "center_y": -7.536231884057972, "value_uncond": 8.139882056800119e-06}, {"x": 5.6521739130434785, "y": -7.681159420289855, "x2": 5.942028985507246, "y2": -7.391304347826088, "center_x": 5.797101449275362, "center_y": -7.536231884057972, "value_uncond": 7.754188384982478e-06}, {"x": 5.942028985507246, "y": -7.681159420289855, "x2": 6.231884057971014, "y2": -7.391304347826088, "center_x": 6.08695652173913, "center_y": -7.536231884057972, "value_uncond": 7.318134682692684e-06}, {"x": 6.2318840579710155, "y": -7.681159420289855, "x2": 6.521739130434783, "y2": -7.391304347826088, "center_x": 6.376811594202899, "center_y": -7.536231884057972, "value_uncond": 6.842428416685089e-06}, {"x": 6.521739130434785, "y": -7.681159420289855, "x2": 6.8115942028985526, "y2": -7.391304347826088, "center_x": 6.666666666666669, "center_y": -7.536231884057972, "value_uncond": 6.338200040615343e-06}, {"x": 6.811594202898551, "y": -7.681159420289855, "x2": 7.101449275362318, "y2": -7.391304347826088, "center_x": 6.956521739130435, "center_y": -7.536231884057972, "value_uncond": 5.816576383746788e-06}, {"x": 7.10144927536232, "y": -7.681159420289855, "x2": 7.391304347826088, "y2": -7.391304347826088, "center_x": 7.246376811594204, "center_y": -7.536231884057972, "value_uncond": 5.288283679482755e-06}, {"x": 7.391304347826086, "y": -7.681159420289855, "x2": 7.681159420289854, "y2": -7.391304347826088, "center_x": 7.53623188405797, "center_y": -7.536231884057972, "value_uncond": 4.763299253181387e-06}, {"x": 7.681159420289855, "y": -7.681159420289855, "x2": 7.971014492753623, "y2": -7.391304347826088, "center_x": 7.826086956521739, "center_y": -7.536231884057972, "value_uncond": 4.250566393509563e-06}, {"x": 7.971014492753625, "y": -7.681159420289855, "x2": 8.260869565217392, "y2": -7.391304347826088, "center_x": 8.115942028985508, "center_y": -7.536231884057972, "value_uncond": 3.7577817780669465e-06}, {"x": 8.26086956521739, "y": -7.681159420289855, "x2": 8.550724637681158, "y2": -7.391304347826088, "center_x": 8.405797101449274, "center_y": -7.536231884057972, "value_uncond": 3.291259476802988e-06}, {"x": 8.55072463768116, "y": -7.681159420289855, "x2": 8.840579710144928, "y2": -7.391304347826088, "center_x": 8.695652173913043, "center_y": -7.536231884057972, "value_uncond": 2.8558704555904338e-06}, {"x": 8.84057971014493, "y": -7.681159420289855, "x2": 9.130434782608697, "y2": -7.391304347826088, "center_x": 8.985507246376812, "center_y": -7.536231884057972, "value_uncond": 2.455052022138501e-06}, {"x": 9.130434782608695, "y": -7.681159420289855, "x2": 9.420289855072463, "y2": -7.391304347826088, "center_x": 9.275362318840578, "center_y": -7.536231884057972, "value_uncond": 2.0908780781662027e-06}, {"x": 9.420289855072465, "y": -7.681159420289855, "x2": 9.710144927536232, "y2": -7.391304347826088, "center_x": 9.565217391304348, "center_y": -7.536231884057972, "value_uncond": 1.7641785360445216e-06}, {"x": 9.710144927536234, "y": -7.681159420289855, "x2": 10.000000000000002, "y2": -7.391304347826088, "center_x": 9.855072463768117, "center_y": -7.536231884057972, "value_uncond": 1.4746948822507115e-06}, {"x": 10.0, "y": -7.681159420289855, "x2": 10.289855072463768, "y2": -7.391304347826088, "center_x": 10.144927536231883, "center_y": -7.536231884057972, "value_uncond": 1.221258576934201e-06}, {"x": -10.0, "y": -7.391304347826087, "x2": -9.710144927536232, "y2": -7.101449275362319, "center_x": -9.855072463768117, "center_y": -7.246376811594203, "value_uncond": 2.442130195215731e-10}, {"x": -9.710144927536232, "y": -7.391304347826087, "x2": -9.420289855072465, "y2": -7.101449275362319, "center_x": -9.565217391304348, "center_y": -7.246376811594203, "value_uncond": 3.815565193292877e-10}, {"x": -9.420289855072463, "y": -7.391304347826087, "x2": -9.130434782608695, "y2": -7.101449275362319, "center_x": -9.275362318840578, "center_y": -7.246376811594203, "value_uncond": 5.906017886267534e-10}, {"x": -9.130434782608695, "y": -7.391304347826087, "x2": -8.840579710144928, "y2": -7.101449275362319, "center_x": -8.985507246376812, "center_y": -7.246376811594203, "value_uncond": 9.056834921223715e-10}, {"x": -8.840579710144928, "y": -7.391304347826087, "x2": -8.55072463768116, "y2": -7.101449275362319, "center_x": -8.695652173913043, "center_y": -7.246376811594203, "value_uncond": 1.3759541439608688e-09}, {"x": -8.55072463768116, "y": -7.391304347826087, "x2": -8.260869565217392, "y2": -7.101449275362319, "center_x": -8.405797101449277, "center_y": -7.246376811594203, "value_uncond": 2.07098657518581e-09}, {"x": -8.26086956521739, "y": -7.391304347826087, "x2": -7.971014492753623, "y2": -7.101449275362319, "center_x": -8.115942028985508, "center_y": -7.246376811594203, "value_uncond": 3.0881360222957336e-09}, {"x": -7.971014492753623, "y": -7.391304347826087, "x2": -7.681159420289855, "y2": -7.101449275362319, "center_x": -7.826086956521739, "center_y": -7.246376811594203, "value_uncond": 4.5620639996259195e-09}, {"x": -7.681159420289855, "y": -7.391304347826087, "x2": -7.391304347826088, "y2": -7.101449275362319, "center_x": -7.536231884057972, "center_y": -7.246376811594203, "value_uncond": 6.6768580050241456e-09}, {"x": -7.391304347826087, "y": -7.391304347826087, "x2": -7.101449275362319, "y2": -7.101449275362319, "center_x": -7.246376811594203, "center_y": -7.246376811594203, "value_uncond": 9.681189511049189e-09}, {"x": -7.101449275362318, "y": -7.391304347826087, "x2": -6.811594202898551, "y2": -7.101449275362319, "center_x": -6.956521739130435, "center_y": -7.246376811594203, "value_uncond": 1.3906925157698896e-08}, {"x": -6.811594202898551, "y": -7.391304347826087, "x2": -6.521739130434783, "y2": -7.101449275362319, "center_x": -6.666666666666667, "center_y": -7.246376811594203, "value_uncond": 1.9791528123619735e-08}, {"x": -6.521739130434782, "y": -7.391304347826087, "x2": -6.231884057971015, "y2": -7.101449275362319, "center_x": -6.3768115942028984, "center_y": -7.246376811594203, "value_uncond": 2.7904442661425693e-08}, {"x": -6.231884057971014, "y": -7.391304347826087, "x2": -5.942028985507246, "y2": -7.101449275362319, "center_x": -6.08695652173913, "center_y": -7.246376811594203, "value_uncond": 3.897742927499661e-08}, {"x": -5.942028985507246, "y": -7.391304347826087, "x2": -5.6521739130434785, "y2": -7.101449275362319, "center_x": -5.797101449275362, "center_y": -7.246376811594203, "value_uncond": 5.3938497688053776e-08}, {"x": -5.6521739130434785, "y": -7.391304347826087, "x2": -5.362318840579711, "y2": -7.101449275362319, "center_x": -5.507246376811595, "center_y": -7.246376811594203, "value_uncond": 7.394866102557714e-08}, {"x": -5.36231884057971, "y": -7.391304347826087, "x2": -5.072463768115942, "y2": -7.101449275362319, "center_x": -5.217391304347826, "center_y": -7.246376811594203, "value_uncond": 1.0044020669976769e-07}, {"x": -5.0724637681159415, "y": -7.391304347826087, "x2": -4.782608695652174, "y2": -7.101449275362319, "center_x": -4.927536231884058, "center_y": -7.246376811594203, "value_uncond": 1.3515455763542766e-07}, {"x": -4.782608695652174, "y": -7.391304347826087, "x2": -4.492753623188406, "y2": -7.101449275362319, "center_x": -4.63768115942029, "center_y": -7.246376811594203, "value_uncond": 1.8017710623082913e-07}, {"x": -4.492753623188405, "y": -7.391304347826087, "x2": -4.202898550724638, "y2": -7.101449275362319, "center_x": -4.3478260869565215, "center_y": -7.246376811594203, "value_uncond": 2.379656842300335e-07}, {"x": -4.202898550724638, "y": -7.391304347826087, "x2": -3.91304347826087, "y2": -7.101449275362319, "center_x": -4.057971014492754, "center_y": -7.246376811594203, "value_uncond": 3.113686441201083e-07}, {"x": -3.913043478260869, "y": -7.391304347826087, "x2": -3.6231884057971016, "y2": -7.101449275362319, "center_x": -3.7681159420289854, "center_y": -7.246376811594203, "value_uncond": 4.036279491765524e-07}, {"x": -3.6231884057971016, "y": -7.391304347826087, "x2": -3.333333333333334, "y2": -7.101449275362319, "center_x": -3.4782608695652177, "center_y": -7.246376811594203, "value_uncond": 5.183622921447384e-07}, {"x": -3.333333333333333, "y": -7.391304347826087, "x2": -3.0434782608695654, "y2": -7.101449275362319, "center_x": -3.1884057971014492, "center_y": -7.246376811594203, "value_uncond": 6.595251881124395e-07}, {"x": -3.0434782608695645, "y": -7.391304347826087, "x2": -2.753623188405797, "y2": -7.101449275362319, "center_x": -2.8985507246376807, "center_y": -7.246376811594203, "value_uncond": 8.31333316945809e-07}, {"x": -2.753623188405797, "y": -7.391304347826087, "x2": -2.4637681159420293, "y2": -7.101449275362319, "center_x": -2.608695652173913, "center_y": -7.246376811594203, "value_uncond": 1.0381612147701664e-06}, {"x": -2.4637681159420284, "y": -7.391304347826087, "x2": -2.1739130434782608, "y2": -7.101449275362319, "center_x": -2.3188405797101446, "center_y": -7.246376811594203, "value_uncond": 1.2843997970839784e-06}, {"x": -2.1739130434782608, "y": -7.391304347826087, "x2": -1.8840579710144931, "y2": -7.101449275362319, "center_x": -2.028985507246377, "center_y": -7.246376811594203, "value_uncond": 1.574278162862302e-06}, {"x": -1.8840579710144922, "y": -7.391304347826087, "x2": -1.5942028985507246, "y2": -7.101449275362319, "center_x": -1.7391304347826084, "center_y": -7.246376811594203, "value_uncond": 1.9116506501997293e-06}, {"x": -1.5942028985507246, "y": -7.391304347826087, "x2": -1.304347826086957, "y2": -7.101449275362319, "center_x": -1.4492753623188408, "center_y": -7.246376811594203, "value_uncond": 2.299754095632208e-06}, {"x": -1.304347826086957, "y": -7.391304347826087, "x2": -1.0144927536231894, "y2": -7.101449275362319, "center_x": -1.1594202898550732, "center_y": -7.246376811594203, "value_uncond": 2.740943526730923e-06}, {"x": -1.0144927536231876, "y": -7.391304347826087, "x2": -0.72463768115942, "y2": -7.101449275362319, "center_x": -0.8695652173913038, "center_y": -7.246376811594203, "value_uncond": 3.2364178574019272e-06}, {"x": -0.72463768115942, "y": -7.391304347826087, "x2": -0.43478260869565233, "y2": -7.101449275362319, "center_x": -0.5797101449275361, "center_y": -7.246376811594203, "value_uncond": 3.785950265482027e-06}, {"x": -0.43478260869565233, "y": -7.391304347826087, "x2": -0.1449275362318847, "y2": -7.101449275362319, "center_x": -0.2898550724637685, "center_y": -7.246376811594203, "value_uncond": 4.387640481830946e-06}, {"x": -0.14492753623188293, "y": -7.391304347826087, "x2": 0.1449275362318847, "y2": -7.101449275362319, "center_x": 8.881784197001252e-16, "center_y": -7.246376811594203, "value_uncond": 5.037707868221594e-06}, {"x": 0.1449275362318847, "y": -7.391304347826087, "x2": 0.43478260869565233, "y2": -7.101449275362319, "center_x": 0.2898550724637685, "center_y": -7.246376811594203, "value_uncond": 5.73034459255472e-06}, {"x": 0.43478260869565233, "y": -7.391304347826087, "x2": 0.72463768115942, "y2": -7.101449275362319, "center_x": 0.5797101449275361, "center_y": -7.246376811594203, "value_uncond": 6.4576471738761325e-06}, {"x": 0.72463768115942, "y": -7.391304347826087, "x2": 1.0144927536231876, "y2": -7.101449275362319, "center_x": 0.8695652173913038, "center_y": -7.246376811594203, "value_uncond": 7.209642019613979e-06}, {"x": 1.0144927536231894, "y": -7.391304347826087, "x2": 1.304347826086957, "y2": -7.101449275362319, "center_x": 1.1594202898550732, "center_y": -7.246376811594203, "value_uncond": 7.97441630315065e-06}, {"x": 1.304347826086957, "y": -7.391304347826087, "x2": 1.5942028985507246, "y2": -7.101449275362319, "center_x": 1.4492753623188408, "center_y": -7.246376811594203, "value_uncond": 8.738359779452854e-06}, {"x": 1.5942028985507246, "y": -7.391304347826087, "x2": 1.8840579710144922, "y2": -7.101449275362319, "center_x": 1.7391304347826084, "center_y": -7.246376811594203, "value_uncond": 9.486516222981147e-06}, {"x": 1.884057971014494, "y": -7.391304347826087, "x2": 2.1739130434782616, "y2": -7.101449275362319, "center_x": 2.028985507246378, "center_y": -7.246376811594203, "value_uncond": 1.0203035561275618e-05}, {"x": 2.1739130434782616, "y": -7.391304347826087, "x2": 2.4637681159420293, "y2": -7.101449275362319, "center_x": 2.3188405797101455, "center_y": -7.246376811594203, "value_uncond": 1.0871710056732976e-05}, {"x": 2.4637681159420293, "y": -7.391304347826087, "x2": 2.753623188405797, "y2": -7.101449275362319, "center_x": 2.608695652173913, "center_y": -7.246376811594203, "value_uncond": 1.1476570717835243e-05}, {"x": 2.753623188405797, "y": -7.391304347826087, "x2": 3.0434782608695645, "y2": -7.101449275362319, "center_x": 2.8985507246376807, "center_y": -7.246376811594203, "value_uncond": 1.2002514168987824e-05}, {"x": 3.0434782608695663, "y": -7.391304347826087, "x2": 3.333333333333334, "y2": -7.101449275362319, "center_x": 3.18840579710145, "center_y": -7.246376811594203, "value_uncond": 1.2435926084897789e-05}, {"x": 3.333333333333334, "y": -7.391304347826087, "x2": 3.6231884057971016, "y2": -7.101449275362319, "center_x": 3.4782608695652177, "center_y": -7.246376811594203, "value_uncond": 1.2765265482287069e-05}, {"x": 3.6231884057971016, "y": -7.391304347826087, "x2": 3.913043478260869, "y2": -7.101449275362319, "center_x": 3.7681159420289854, "center_y": -7.246376811594203, "value_uncond": 1.2981574952194378e-05}, {"x": 3.913043478260871, "y": -7.391304347826087, "x2": 4.202898550724639, "y2": -7.101449275362319, "center_x": 4.057971014492755, "center_y": -7.246376811594203, "value_uncond": 1.3078885374210632e-05}, {"x": 4.202898550724639, "y": -7.391304347826087, "x2": 4.492753623188406, "y2": -7.101449275362319, "center_x": 4.347826086956522, "center_y": -7.246376811594203, "value_uncond": 1.3054489596125642e-05}, {"x": 4.492753623188406, "y": -7.391304347826087, "x2": 4.782608695652174, "y2": -7.101449275362319, "center_x": 4.63768115942029, "center_y": -7.246376811594203, "value_uncond": 1.2909067566261262e-05}, {"x": 4.782608695652174, "y": -7.391304347826087, "x2": 5.0724637681159415, "y2": -7.101449275362319, "center_x": 4.927536231884058, "center_y": -7.246376811594203, "value_uncond": 1.2646654845922255e-05}, {"x": 5.072463768115943, "y": -7.391304347826087, "x2": 5.362318840579711, "y2": -7.101449275362319, "center_x": 5.217391304347827, "center_y": -7.246376811594203, "value_uncond": 1.227445653706292e-05}, {"x": 5.362318840579711, "y": -7.391304347826087, "x2": 5.6521739130434785, "y2": -7.101449275362319, "center_x": 5.507246376811595, "center_y": -7.246376811594203, "value_uncond": 1.1802518599343171e-05}, {"x": 5.6521739130434785, "y": -7.391304347826087, "x2": 5.942028985507246, "y2": -7.101449275362319, "center_x": 5.797101449275362, "center_y": -7.246376811594203, "value_uncond": 1.1243277482148635e-05}, {"x": 5.942028985507246, "y": -7.391304347826087, "x2": 6.231884057971014, "y2": -7.101449275362319, "center_x": 6.08695652173913, "center_y": -7.246376811594203, "value_uncond": 1.0611016241055063e-05}, {"x": 6.2318840579710155, "y": -7.391304347826087, "x2": 6.521739130434783, "y2": -7.101449275362319, "center_x": 6.376811594202899, "center_y": -7.246376811594203, "value_uncond": 9.921260294568306e-06}, {"x": 6.521739130434785, "y": -7.391304347826087, "x2": 6.8115942028985526, "y2": -7.101449275362319, "center_x": 6.666666666666669, "center_y": -7.246376811594203, "value_uncond": 9.190148376072125e-06}, {"x": 6.811594202898551, "y": -7.391304347826087, "x2": 7.101449275362318, "y2": -7.101449275362319, "center_x": 6.956521739130435, "center_y": -7.246376811594203, "value_uncond": 8.433813963719633e-06}, {"x": 7.10144927536232, "y": -7.391304347826087, "x2": 7.391304347826088, "y2": -7.101449275362319, "center_x": 7.246376811594204, "center_y": -7.246376811594203, "value_uncond": 7.66780968694211e-06}, {"x": 7.391304347826086, "y": -7.391304347826087, "x2": 7.681159420289854, "y2": -7.101449275362319, "center_x": 7.53623188405797, "center_y": -7.246376811594203, "value_uncond": 6.906602287062016e-06}, {"x": 7.681159420289855, "y": -7.391304347826087, "x2": 7.971014492753623, "y2": -7.101449275362319, "center_x": 7.826086956521739, "center_y": -7.246376811594203, "value_uncond": 6.163159191628511e-06}, {"x": 7.971014492753625, "y": -7.391304347826087, "x2": 8.260869565217392, "y2": -7.101449275362319, "center_x": 8.115942028985508, "center_y": -7.246376811594203, "value_uncond": 5.448640289677979e-06}, {"x": 8.26086956521739, "y": -7.391304347826087, "x2": 8.550724637681158, "y2": -7.101449275362319, "center_x": 8.405797101449274, "center_y": -7.246376811594203, "value_uncond": 4.772200741874412e-06}, {"x": 8.55072463768116, "y": -7.391304347826087, "x2": 8.840579710144928, "y2": -7.101449275362319, "center_x": 8.695652173913043, "center_y": -7.246376811594203, "value_uncond": 4.140903262997788e-06}, {"x": 8.84057971014493, "y": -7.391304347826087, "x2": 9.130434782608697, "y2": -7.101449275362319, "center_x": 8.985507246376812, "center_y": -7.246376811594203, "value_uncond": 3.559731818157989e-06}, {"x": 9.130434782608695, "y": -7.391304347826087, "x2": 9.420289855072463, "y2": -7.101449275362319, "center_x": 9.275362318840578, "center_y": -7.246376811594203, "value_uncond": 3.0316934857673573e-06}, {"x": 9.420289855072465, "y": -7.391304347826087, "x2": 9.710144927536232, "y2": -7.101449275362319, "center_x": 9.565217391304348, "center_y": -7.246376811594203, "value_uncond": 2.5579916071182954e-06}, {"x": 9.710144927536234, "y": -7.391304347826087, "x2": 10.000000000000002, "y2": -7.101449275362319, "center_x": 9.855072463768117, "center_y": -7.246376811594203, "value_uncond": 2.138251347460231e-06}, {"x": 10.0, "y": -7.391304347826087, "x2": 10.289855072463768, "y2": -7.101449275362319, "center_x": 10.144927536231883, "center_y": -7.246376811594203, "value_uncond": 1.770778368567611e-06}, {"x": -10.0, "y": -7.101449275362318, "x2": -9.710144927536232, "y2": -6.811594202898551, "center_x": -9.855072463768117, "center_y": -6.956521739130435, "value_uncond": 3.508093898116566e-10}, {"x": -9.710144927536232, "y": -7.101449275362318, "x2": -9.420289855072465, "y2": -6.811594202898551, "center_x": -9.565217391304348, "center_y": -6.956521739130435, "value_uncond": 5.481018579058321e-10}, {"x": -9.420289855072463, "y": -7.101449275362318, "x2": -9.130434782608695, "y2": -6.811594202898551, "center_x": -9.275362318840578, "center_y": -6.956521739130435, "value_uncond": 8.48393150765341e-10}, {"x": -9.130434782608695, "y": -7.101449275362318, "x2": -8.840579710144928, "y2": -6.811594202898551, "center_x": -8.985507246376812, "center_y": -6.956521739130435, "value_uncond": 1.3010046469118486e-09}, {"x": -8.840579710144928, "y": -7.101449275362318, "x2": -8.55072463768116, "y2": -6.811594202898551, "center_x": -8.695652173913043, "center_y": -6.956521739130435, "value_uncond": 1.976543407052434e-09}, {"x": -8.55072463768116, "y": -7.101449275362318, "x2": -8.260869565217392, "y2": -6.811594202898551, "center_x": -8.405797101449277, "center_y": -6.956521739130435, "value_uncond": 2.974950058651102e-09}, {"x": -8.26086956521739, "y": -7.101449275362318, "x2": -7.971014492753623, "y2": -6.811594202898551, "center_x": -8.115942028985508, "center_y": -6.956521739130435, "value_uncond": 4.4360743573757856e-09}, {"x": -7.971014492753623, "y": -7.101449275362318, "x2": -7.681159420289855, "y2": -6.811594202898551, "center_x": -7.826086956521739, "center_y": -6.956521739130435, "value_uncond": 6.553356127882929e-09}, {"x": -7.681159420289855, "y": -7.101449275362318, "x2": -7.391304347826088, "y2": -6.811594202898551, "center_x": -7.536231884057972, "center_y": -6.956521739130435, "value_uncond": 9.591235091357127e-09}, {"x": -7.391304347826087, "y": -7.101449275362318, "x2": -7.101449275362319, "y2": -6.811594202898551, "center_x": -7.246376811594203, "center_y": -6.956521739130435, "value_uncond": 1.3906925157698896e-08}, {"x": -7.101449275362318, "y": -7.101449275362318, "x2": -6.811594202898551, "y2": -6.811594202898551, "center_x": -6.956521739130435, "center_y": -6.956521739130435, "value_uncond": 1.99771492047653e-08}, {"x": -6.811594202898551, "y": -7.101449275362318, "x2": -6.521739130434783, "y2": -6.811594202898551, "center_x": -6.666666666666667, "center_y": -6.956521739130435, "value_uncond": 2.8430318408449762e-08}, {"x": -6.521739130434782, "y": -7.101449275362318, "x2": -6.231884057971015, "y2": -6.811594202898551, "center_x": -6.3768115942028984, "center_y": -6.956521739130435, "value_uncond": 4.008443334539075e-08}, {"x": -6.231884057971014, "y": -7.101449275362318, "x2": -5.942028985507246, "y2": -6.811594202898551, "center_x": -6.08695652173913, "center_y": -6.956521739130435, "value_uncond": 5.599066015061769e-08}, {"x": -5.942028985507246, "y": -7.101449275362318, "x2": -5.6521739130434785, "y2": -6.811594202898551, "center_x": -5.797101449275362, "center_y": -6.956521739130435, "value_uncond": 7.748207486387541e-08}, {"x": -5.6521739130434785, "y": -7.101449275362318, "x2": -5.362318840579711, "y2": -6.811594202898551, "center_x": -5.507246376811595, "center_y": -6.956521739130435, "value_uncond": 1.062264604180127e-07}, {"x": -5.36231884057971, "y": -7.101449275362318, "x2": -5.072463768115942, "y2": -6.811594202898551, "center_x": -5.217391304347826, "center_y": -6.956521739130435, "value_uncond": 1.442812823572233e-07}, {"x": -5.0724637681159415, "y": -7.101449275362318, "x2": -4.782608695652174, "y2": -6.811594202898551, "center_x": -4.927536231884058, "center_y": -6.956521739130435, "value_uncond": 1.9414807608224334e-07}, {"x": -4.782608695652174, "y": -7.101449275362318, "x2": -4.492753623188406, "y2": -6.811594202898551, "center_x": -4.63768115942029, "center_y": -6.956521739130435, "value_uncond": 2.588224854624657e-07}, {"x": -4.492753623188405, "y": -7.101449275362318, "x2": -4.202898550724638, "y2": -6.811594202898551, "center_x": -4.3478260869565215, "center_y": -6.956521739130435, "value_uncond": 3.418351595029395e-07}, {"x": -4.202898550724638, "y": -7.101449275362318, "x2": -3.91304347826087, "y2": -6.811594202898551, "center_x": -4.057971014492754, "center_y": -6.956521739130435, "value_uncond": 4.4727772607802706e-07}, {"x": -3.913043478260869, "y": -7.101449275362318, "x2": -3.6231884057971016, "y2": -6.811594202898551, "center_x": -3.7681159420289854, "center_y": -6.956521739130435, "value_uncond": 5.798072307485984e-07}, {"x": -3.6231884057971016, "y": -7.101449275362318, "x2": -3.333333333333334, "y2": -6.811594202898551, "center_x": -3.4782608695652177, "center_y": -6.956521739130435, "value_uncond": 7.446218869285287e-07}, {"x": -3.333333333333333, "y": -7.101449275362318, "x2": -3.0434782608695654, "y2": -6.811594202898551, "center_x": -3.1884057971014492, "center_y": -6.956521739130435, "value_uncond": 9.474008767444301e-07}, {"x": -3.0434782608695645, "y": -7.101449275362318, "x2": -2.753623188405797, "y2": -6.811594202898551, "center_x": -2.8985507246376807, "center_y": -6.956521739130435, "value_uncond": 1.1942014157115696e-06}, {"x": -2.753623188405797, "y": -7.101449275362318, "x2": -2.4637681159420293, "y2": -6.811594202898551, "center_x": -2.608695652173913, "center_y": -6.956521739130435, "value_uncond": 1.4913074781726702e-06}, {"x": -2.4637681159420284, "y": -7.101449275362318, "x2": -2.1739130434782608, "y2": -6.811594202898551, "center_x": -2.3188405797101446, "center_y": -6.956521739130435, "value_uncond": 1.8450265672647442e-06}, {"x": -2.1739130434782608, "y": -7.101449275362318, "x2": -1.8840579710144931, "y2": -6.811594202898551, "center_x": -2.028985507246377, "center_y": -6.956521739130435, "value_uncond": 2.261433738420133e-06}, {"x": -1.8840579710144922, "y": -7.101449275362318, "x2": -1.5942028985507246, "y2": -6.811594202898551, "center_x": -1.7391304347826084, "center_y": -6.956521739130435, "value_uncond": 2.746065707075796e-06}, {"x": -1.5942028985507246, "y": -7.101449275362318, "x2": -1.304347826086957, "y2": -6.811594202898551, "center_x": -1.4492753623188408, "center_y": -6.956521739130435, "value_uncond": 3.3035721542860862e-06}, {"x": -1.304347826086957, "y": -7.101449275362318, "x2": -1.0144927536231894, "y2": -6.811594202898551, "center_x": -1.1594202898550732, "center_y": -6.956521739130435, "value_uncond": 3.937336051961573e-06}, {"x": -1.0144927536231876, "y": -7.101449275362318, "x2": -0.72463768115942, "y2": -6.811594202898551, "center_x": -0.8695652173913038, "center_y": -6.956521739130435, "value_uncond": 4.649079627101635e-06}, {"x": -0.72463768115942, "y": -7.101449275362318, "x2": -0.43478260869565233, "y2": -6.811594202898551, "center_x": -0.5797101449275361, "center_y": -6.956521739130435, "value_uncond": 5.4384770520955155e-06}, {"x": -0.43478260869565233, "y": -7.101449275362318, "x2": -0.1449275362318847, "y2": -6.811594202898551, "center_x": -0.2898550724637685, "center_y": -6.956521739130435, "value_uncond": 6.302798610653378e-06}, {"x": -0.14492753623188293, "y": -7.101449275362318, "x2": 0.1449275362318847, "y2": -6.811594202898551, "center_x": 8.881784197001252e-16, "center_y": -6.956521739130435, "value_uncond": 7.236613456409447e-06}, {"x": 0.1449275362318847, "y": -7.101449275362318, "x2": 0.43478260869565233, "y2": -6.811594202898551, "center_x": 0.2898550724637685, "center_y": -6.956521739130435, "value_uncond": 8.23157870068867e-06}, {"x": 0.43478260869565233, "y": -7.101449275362318, "x2": 0.72463768115942, "y2": -6.811594202898551, "center_x": 0.5797101449275361, "center_y": -6.956521739130435, "value_uncond": 9.276341077656326e-06}, {"x": 0.72463768115942, "y": -7.101449275362318, "x2": 1.0144927536231876, "y2": -6.811594202898551, "center_x": 0.8695652173913038, "center_y": -6.956521739130435, "value_uncond": 1.0356573628286171e-05}, {"x": 1.0144927536231894, "y": -7.101449275362318, "x2": 1.304347826086957, "y2": -6.811594202898551, "center_x": 1.1594202898550732, "center_y": -6.956521739130435, "value_uncond": 1.1455163704592264e-05}, {"x": 1.304347826086957, "y": -7.101449275362318, "x2": 1.5942028985507246, "y2": -6.811594202898551, "center_x": 1.4492753623188408, "center_y": -6.956521739130435, "value_uncond": 1.2552560335194498e-05}, {"x": 1.5942028985507246, "y": -7.101449275362318, "x2": 1.8840579710144922, "y2": -6.811594202898551, "center_x": 1.7391304347826084, "center_y": -6.956521739130435, "value_uncond": 1.362727906211575e-05}, {"x": 1.884057971014494, "y": -7.101449275362318, "x2": 2.1739130434782616, "y2": -6.811594202898551, "center_x": 2.028985507246378, "center_y": -6.956521739130435, "value_uncond": 1.465655142584053e-05}, {"x": 2.1739130434782616, "y": -7.101449275362318, "x2": 2.4637681159420293, "y2": -6.811594202898551, "center_x": 2.3188405797101455, "center_y": -6.956521739130435, "value_uncond": 1.5617095184701392e-05}, {"x": 2.4637681159420293, "y": -7.101449275362318, "x2": 2.753623188405797, "y2": -6.811594202898551, "center_x": 2.608695652173913, "center_y": -6.956521739130435, "value_uncond": 1.6485971053228203e-05}, {"x": 2.753623188405797, "y": -7.101449275362318, "x2": 3.0434782608695645, "y2": -6.811594202898551, "center_x": 2.8985507246376807, "center_y": -6.956521739130435, "value_uncond": 1.7241483193963902e-05}, {"x": 3.0434782608695663, "y": -7.101449275362318, "x2": 3.333333333333334, "y2": -6.811594202898551, "center_x": 3.18840579710145, "center_y": -6.956521739130435, "value_uncond": 1.7864074774279074e-05}, {"x": 3.333333333333334, "y": -7.101449275362318, "x2": 3.6231884057971016, "y2": -6.811594202898551, "center_x": 3.4782608695652177, "center_y": -6.956521739130435, "value_uncond": 1.833716729516683e-05}, {"x": 3.6231884057971016, "y": -7.101449275362318, "x2": 3.913043478260869, "y2": -6.811594202898551, "center_x": 3.7681159420289854, "center_y": -6.956521739130435, "value_uncond": 1.8647893534485788e-05}, {"x": 3.913043478260871, "y": -7.101449275362318, "x2": 4.202898550724639, "y2": -6.811594202898551, "center_x": 4.057971014492755, "center_y": -6.956521739130435, "value_uncond": 1.878767891462938e-05}, {"x": 4.202898550724639, "y": -7.101449275362318, "x2": 4.492753623188406, "y2": -6.811594202898551, "center_x": 4.347826086956522, "center_y": -6.956521739130435, "value_uncond": 1.8752634640410333e-05}, {"x": 4.492753623188406, "y": -7.101449275362318, "x2": 4.782608695652174, "y2": -6.811594202898551, "center_x": 4.63768115942029, "center_y": -6.956521739130435, "value_uncond": 1.8543737450318508e-05}, {"x": 4.782608695652174, "y": -7.101449275362318, "x2": 5.0724637681159415, "y2": -6.811594202898551, "center_x": 4.927536231884058, "center_y": -6.956521739130435, "value_uncond": 1.8166784384993456e-05}, {"x": 5.072463768115943, "y": -7.101449275362318, "x2": 5.362318840579711, "y2": -6.811594202898551, "center_x": 5.217391304347827, "center_y": -6.956521739130435, "value_uncond": 1.7632125496308203e-05}, {"x": 5.362318840579711, "y": -7.101449275362318, "x2": 5.6521739130434785, "y2": -6.811594202898551, "center_x": 5.507246376811595, "center_y": -6.956521739130435, "value_uncond": 1.6954191697836777e-05}, {"x": 5.6521739130434785, "y": -7.101449275362318, "x2": 5.942028985507246, "y2": -6.811594202898551, "center_x": 5.797101449275362, "center_y": -6.956521739130435, "value_uncond": 1.6150847816069353e-05}, {"x": 5.942028985507246, "y": -7.101449275362318, "x2": 6.231884057971014, "y2": -6.811594202898551, "center_x": 6.08695652173913, "center_y": -6.956521739130435, "value_uncond": 1.524261130753217e-05}, {"x": 6.2318840579710155, "y": -7.101449275362318, "x2": 6.521739130434783, "y2": -6.811594202898551, "center_x": 6.376811594202899, "center_y": -6.956521739130435, "value_uncond": 1.4251784269809043e-05}, {"x": 6.521739130434785, "y": -7.101449275362318, "x2": 6.8115942028985526, "y2": -6.811594202898551, "center_x": 6.666666666666669, "center_y": -6.956521739130435, "value_uncond": 1.3201549820744305e-05}, {"x": 6.811594202898551, "y": -7.101449275362318, "x2": 7.101449275362318, "y2": -6.811594202898551, "center_x": 6.956521739130435, "center_y": -6.956521739130435, "value_uncond": 1.2115083529099698e-05}, {"x": 7.10144927536232, "y": -7.101449275362318, "x2": 7.391304347826088, "y2": -6.811594202898551, "center_x": 7.246376811594204, "center_y": -6.956521739130435, "value_uncond": 1.1014726580662296e-05}, {"x": 7.391304347826086, "y": -7.101449275362318, "x2": 7.681159420289854, "y2": -6.811594202898551, "center_x": 7.53623188405797, "center_y": -6.956521739130435, "value_uncond": 9.921260294568306e-06}, {"x": 7.681159420289855, "y": -7.101449275362318, "x2": 7.971014492753623, "y2": -6.811594202898551, "center_x": 7.826086956521739, "center_y": -6.956521739130435, "value_uncond": 8.853312241759115e-06}, {"x": 7.971014492753625, "y": -7.101449275362318, "x2": 8.260869565217392, "y2": -6.811594202898551, "center_x": 8.115942028985508, "center_y": -6.956521739130435, "value_uncond": 7.826913483440587e-06}, {"x": 8.26086956521739, "y": -7.101449275362318, "x2": 8.550724637681158, "y2": -6.811594202898551, "center_x": 8.405797101449274, "center_y": -6.956521739130435, "value_uncond": 6.855215309959383e-06}, {"x": 8.55072463768116, "y": -7.101449275362318, "x2": 8.840579710144928, "y2": -6.811594202898551, "center_x": 8.695652173913043, "center_y": -6.956521739130435, "value_uncond": 5.948363235535961e-06}, {"x": 8.84057971014493, "y": -7.101449275362318, "x2": 9.130434782608697, "y2": -6.811594202898551, "center_x": 8.985507246376812, "center_y": -6.956521739130435, "value_uncond": 5.113516672729353e-06}, {"x": 9.130434782608695, "y": -7.101449275362318, "x2": 9.420289855072463, "y2": -6.811594202898551, "center_x": 9.275362318840578, "center_y": -6.956521739130435, "value_uncond": 4.354995257507432e-06}, {"x": 9.420289855072465, "y": -7.101449275362318, "x2": 9.710144927536232, "y2": -6.811594202898551, "center_x": 9.565217391304348, "center_y": -6.956521739130435, "value_uncond": 3.674527576762701e-06}, {"x": 9.710144927536234, "y": -7.101449275362318, "x2": 10.000000000000002, "y2": -6.811594202898551, "center_x": 9.855072463768117, "center_y": -6.956521739130435, "value_uncond": 3.071575184386158e-06}, {"x": 10.0, "y": -7.101449275362318, "x2": 10.289855072463768, "y2": -6.811594202898551, "center_x": 10.144927536231883, "center_y": -6.956521739130435, "value_uncond": 2.5437041816438e-06}, {"x": -10.0, "y": -6.811594202898551, "x2": -9.710144927536232, "y2": -6.521739130434783, "center_x": -9.855072463768117, "center_y": -6.666666666666667, "value_uncond": 4.99251547394975e-10}, {"x": -9.710144927536232, "y": -6.811594202898551, "x2": -9.420289855072465, "y2": -6.521739130434783, "center_x": -9.565217391304348, "center_y": -6.666666666666667, "value_uncond": 7.800267285789022e-10}, {"x": -9.420289855072463, "y": -6.811594202898551, "x2": -9.130434782608695, "y2": -6.521739130434783, "center_x": -9.275362318840578, "center_y": -6.666666666666667, "value_uncond": 1.207383854651945e-09}, {"x": -9.130434782608695, "y": -6.811594202898551, "x2": -8.840579710144928, "y2": -6.521739130434783, "center_x": -8.985507246376812, "center_y": -6.666666666666667, "value_uncond": 1.85151424677519e-09}, {"x": -8.840579710144928, "y": -6.811594202898551, "x2": -8.55072463768116, "y2": -6.521739130434783, "center_x": -8.695652173913043, "center_y": -6.666666666666667, "value_uncond": 2.8129017726522515e-09}, {"x": -8.55072463768116, "y": -6.811594202898551, "x2": -8.260869565217392, "y2": -6.521739130434783, "center_x": -8.405797101449277, "center_y": -6.666666666666667, "value_uncond": 4.233776128403348e-09}, {"x": -8.26086956521739, "y": -6.811594202898551, "x2": -7.971014492753623, "y2": -6.521739130434783, "center_x": -8.115942028985508, "center_y": -6.666666666666667, "value_uncond": 6.313163363352597e-09}, {"x": -7.971014492753623, "y": -6.811594202898551, "x2": -7.681159420289855, "y2": -6.521739130434783, "center_x": -7.826086956521739, "center_y": -6.666666666666667, "value_uncond": 9.326355800317806e-09}, {"x": -7.681159420289855, "y": -6.811594202898551, "x2": -7.391304347826088, "y2": -6.521739130434783, "center_x": -7.536231884057972, "center_y": -6.666666666666667, "value_uncond": 1.3649688690943727e-08}, {"x": -7.391304347826087, "y": -6.811594202898551, "x2": -7.101449275362319, "y2": -6.521739130434783, "center_x": -7.246376811594203, "center_y": -6.666666666666667, "value_uncond": 1.9791528123619735e-08}, {"x": -7.101449275362318, "y": -6.811594202898551, "x2": -6.811594202898551, "y2": -6.521739130434783, "center_x": -6.956521739130435, "center_y": -6.666666666666667, "value_uncond": 2.8430318408449762e-08}, {"x": -6.811594202898551, "y": -6.811594202898551, "x2": -6.521739130434783, "y2": -6.521739130434783, "center_x": -6.666666666666667, "center_y": -6.666666666666667, "value_uncond": 4.046037783073838e-08}, {"x": -6.521739130434782, "y": -6.811594202898551, "x2": -6.231884057971015, "y2": -6.521739130434783, "center_x": -6.3768115942028984, "center_y": -6.666666666666667, "value_uncond": 5.7045837298942615e-08}, {"x": -6.231884057971014, "y": -6.811594202898551, "x2": -5.942028985507246, "y2": -6.521739130434783, "center_x": -6.08695652173913, "center_y": -6.666666666666667, "value_uncond": 7.968265540118451e-08}, {"x": -5.942028985507246, "y": -6.811594202898551, "x2": -5.6521739130434785, "y2": -6.521739130434783, "center_x": -5.797101449275362, "center_y": -6.666666666666667, "value_uncond": 1.1026798852770564e-07}, {"x": -5.6521739130434785, "y": -6.811594202898551, "x2": -5.362318840579711, "y2": -6.521739130434783, "center_x": -5.507246376811595, "center_y": -6.666666666666667, "value_uncond": 1.5117532847811418e-07}, {"x": -5.36231884057971, "y": -6.811594202898551, "x2": -5.072463768115942, "y2": -6.521739130434783, "center_x": -5.217391304347826, "center_y": -6.666666666666667, "value_uncond": 2.053327407104132e-07}, {"x": -5.0724637681159415, "y": -6.811594202898551, "x2": -4.782608695652174, "y2": -6.521739130434783, "center_x": -4.927536231884058, "center_y": -6.666666666666667, "value_uncond": 2.763002651093713e-07}, {"x": -4.782608695652174, "y": -6.811594202898551, "x2": -4.492753623188406, "y2": -6.521739130434783, "center_x": -4.63768115942029, "center_y": -6.666666666666667, "value_uncond": 3.6834112803287286e-07}, {"x": -4.492753623188405, "y": -6.811594202898551, "x2": -4.202898550724638, "y2": -6.521739130434783, "center_x": -4.3478260869565215, "center_y": -6.666666666666667, "value_uncond": 4.86479944072979e-07}, {"x": -4.202898550724638, "y": -6.811594202898551, "x2": -3.91304347826087, "y2": -6.521739130434783, "center_x": -4.057971014492754, "center_y": -6.666666666666667, "value_uncond": 6.365396803650244e-07}, {"x": -3.913043478260869, "y": -6.811594202898551, "x2": -3.6231884057971016, "y2": -6.521739130434783, "center_x": -3.7681159420289854, "center_y": -6.666666666666667, "value_uncond": 8.25147973654423e-07}, {"x": -3.6231884057971016, "y": -6.811594202898551, "x2": -3.333333333333334, "y2": -6.521739130434783, "center_x": -3.4782608695652177, "center_y": -6.666666666666667, "value_uncond": 1.0597026193421523e-06}, {"x": -3.333333333333333, "y": -6.811594202898551, "x2": -3.0434782608695654, "y2": -6.521739130434783, "center_x": -3.1884057971014492, "center_y": -6.666666666666667, "value_uncond": 1.3482858995648702e-06}, {"x": -3.0434782608695645, "y": -6.811594202898551, "x2": -2.753623188405797, "y2": -6.521739130434783, "center_x": -2.8985507246376807, "center_y": -6.666666666666667, "value_uncond": 1.6995180916205377e-06}, {"x": -2.753623188405797, "y": -6.811594202898551, "x2": -2.4637681159420293, "y2": -6.521739130434783, "center_x": -2.608695652173913, "center_y": -6.666666666666667, "value_uncond": 2.1223421827994224e-06}, {"x": -2.4637681159420284, "y": -6.811594202898551, "x2": -2.1739130434782608, "y2": -6.521739130434783, "center_x": -2.3188405797101446, "center_y": -6.666666666666667, "value_uncond": 2.6257346452051987e-06}, {"x": -2.1739130434782608, "y": -6.811594202898551, "x2": -1.8840579710144931, "y2": -6.521739130434783, "center_x": -2.028985507246377, "center_y": -6.666666666666667, "value_uncond": 3.2183411448696105e-06}, {"x": -1.8840579710144922, "y": -6.811594202898551, "x2": -1.5942028985507246, "y2": -6.521739130434783, "center_x": -1.7391304347826084, "center_y": -6.666666666666667, "value_uncond": 3.9080412136115375e-06}, {"x": -1.5942028985507246, "y": -6.811594202898551, "x2": -1.304347826086957, "y2": -6.521739130434783, "center_x": -1.4492753623188408, "center_y": -6.666666666666667, "value_uncond": 4.701452007438475e-06}, {"x": -1.304347826086957, "y": -6.811594202898551, "x2": -1.0144927536231894, "y2": -6.521739130434783, "center_x": -1.1594202898550732, "center_y": -6.666666666666667, "value_uncond": 5.603387975479224e-06}, {"x": -1.0144927536231876, "y": -6.811594202898551, "x2": -0.72463768115942, "y2": -6.521739130434783, "center_x": -0.8695652173913038, "center_y": -6.666666666666667, "value_uncond": 6.616300091166552e-06}, {"x": -0.72463768115942, "y": -6.811594202898551, "x2": -0.43478260869565233, "y2": -6.521739130434783, "center_x": -0.5797101449275361, "center_y": -6.666666666666667, "value_uncond": 7.739724655570018e-06}, {"x": -0.43478260869565233, "y": -6.811594202898551, "x2": -0.1449275362318847, "y2": -6.521739130434783, "center_x": -0.2898550724637685, "center_y": -6.666666666666667, "value_uncond": 8.969776895016973e-06}, {"x": -0.14492753623188293, "y": -6.811594202898551, "x2": 0.1449275362318847, "y2": -6.521739130434783, "center_x": 8.881784197001252e-16, "center_y": -6.666666666666667, "value_uncond": 1.0298727944401408e-05}, {"x": 0.1449275362318847, "y": -6.811594202898551, "x2": 0.43478260869565233, "y2": -6.521739130434783, "center_x": 0.2898550724637685, "center_y": -6.666666666666667, "value_uncond": 1.1714704689143955e-05}, {"x": 0.43478260869565233, "y": -6.811594202898551, "x2": 0.72463768115942, "y2": -6.521739130434783, "center_x": 0.5797101449275361, "center_y": -6.666666666666667, "value_uncond": 1.3201549820744305e-05}, {"x": 0.72463768115942, "y": -6.811594202898551, "x2": 1.0144927536231876, "y2": -6.521739130434783, "center_x": 0.8695652173913038, "center_y": -6.666666666666667, "value_uncond": 1.4738874043274142e-05}, {"x": 1.0144927536231894, "y": -6.811594202898551, "x2": 1.304347826086957, "y2": -6.521739130434783, "center_x": 1.1594202898550732, "center_y": -6.666666666666667, "value_uncond": 1.6302323630079804e-05}, {"x": 1.304347826086957, "y": -6.811594202898551, "x2": 1.5942028985507246, "y2": -6.521739130434783, "center_x": 1.4492753623188408, "center_y": -6.666666666666667, "value_uncond": 1.7864074774279058e-05}, {"x": 1.5942028985507246, "y": -6.811594202898551, "x2": 1.8840579710144922, "y2": -6.521739130434783, "center_x": 1.7391304347826084, "center_y": -6.666666666666667, "value_uncond": 1.9393552043168186e-05}, {"x": 1.884057971014494, "y": -6.811594202898551, "x2": 2.1739130434782616, "y2": -6.521739130434783, "center_x": 2.028985507246378, "center_y": -6.666666666666667, "value_uncond": 2.0858352687633163e-05}, {"x": 2.1739130434782616, "y": -6.811594202898551, "x2": 2.4637681159420293, "y2": -6.521739130434783, "center_x": 2.3188405797101455, "center_y": -6.666666666666667, "value_uncond": 2.2225342773643506e-05}, {"x": 2.4637681159420293, "y": -6.811594202898551, "x2": 2.753623188405797, "y2": -6.521739130434783, "center_x": 2.608695652173913, "center_y": -6.666666666666667, "value_uncond": 2.346187644250868e-05}, {"x": 2.753623188405797, "y": -6.811594202898551, "x2": 3.0434782608695645, "y2": -6.521739130434783, "center_x": 2.8985507246376807, "center_y": -6.666666666666667, "value_uncond": 2.4537077438526764e-05}, {"x": 3.0434782608695663, "y": -6.811594202898551, "x2": 3.333333333333334, "y2": -6.521739130434783, "center_x": 3.18840579710145, "center_y": -6.666666666666667, "value_uncond": 2.542311361342594e-05}, {"x": 3.333333333333334, "y": -6.811594202898551, "x2": 3.6231884057971016, "y2": -6.521739130434783, "center_x": 3.4782608695652177, "center_y": -6.666666666666667, "value_uncond": 2.6096391410354376e-05}, {"x": 3.6231884057971016, "y": -6.811594202898551, "x2": 3.913043478260869, "y2": -6.521739130434783, "center_x": 3.7681159420289854, "center_y": -6.666666666666667, "value_uncond": 2.6538598946131853e-05}, {"x": 3.913043478260871, "y": -6.811594202898551, "x2": 4.202898550724639, "y2": -6.521739130434783, "center_x": 4.057971014492755, "center_y": -6.666666666666667, "value_uncond": 2.673753337994889e-05}, {"x": 4.202898550724639, "y": -6.811594202898551, "x2": 4.492753623188406, "y2": -6.521739130434783, "center_x": 4.347826086956522, "center_y": -6.666666666666667, "value_uncond": 2.6687660404369222e-05}, {"x": 4.492753623188406, "y": -6.811594202898551, "x2": 4.782608695652174, "y2": -6.521739130434783, "center_x": 4.63768115942029, "center_y": -6.666666666666667, "value_uncond": 2.639037005687939e-05}, {"x": 4.782608695652174, "y": -6.811594202898551, "x2": 5.0724637681159415, "y2": -6.521739130434783, "center_x": 4.927536231884058, "center_y": -6.666666666666667, "value_uncond": 2.585391234900603e-05}, {"x": 5.072463768115943, "y": -6.811594202898551, "x2": 5.362318840579711, "y2": -6.521739130434783, "center_x": 5.217391304347827, "center_y": -6.666666666666667, "value_uncond": 2.5093016873409156e-05}, {"x": 5.362318840579711, "y": -6.811594202898551, "x2": 5.6521739130434785, "y2": -6.521739130434783, "center_x": 5.507246376811595, "center_y": -6.666666666666667, "value_uncond": 2.4128220868091493e-05}, {"x": 5.6521739130434785, "y": -6.811594202898551, "x2": 5.942028985507246, "y2": -6.521739130434783, "center_x": 5.797101449275362, "center_y": -6.666666666666667, "value_uncond": 2.2984948516464874e-05}, {"x": 5.942028985507246, "y": -6.811594202898551, "x2": 6.231884057971014, "y2": -6.521739130434783, "center_x": 6.08695652173913, "center_y": -6.666666666666667, "value_uncond": 2.1692399070934804e-05}, {"x": 6.2318840579710155, "y": -6.811594202898551, "x2": 6.521739130434783, "y2": -6.521739130434783, "center_x": 6.376811594202899, "center_y": -6.666666666666667, "value_uncond": 2.0282311581402006e-05}, {"x": 6.521739130434785, "y": -6.811594202898551, "x2": 6.8115942028985526, "y2": -6.521739130434783, "center_x": 6.666666666666669, "center_y": -6.666666666666667, "value_uncond": 1.8787678914629364e-05}, {"x": 6.811594202898551, "y": -6.811594202898551, "x2": 7.101449275362318, "y2": -6.521739130434783, "center_x": 6.956521739130435, "center_y": -6.666666666666667, "value_uncond": 1.7241483193963888e-05}, {"x": 7.10144927536232, "y": -6.811594202898551, "x2": 7.391304347826088, "y2": -6.521739130434783, "center_x": 7.246376811594204, "center_y": -6.666666666666667, "value_uncond": 1.56755190973668e-05}, {"x": 7.391304347826086, "y": -6.811594202898551, "x2": 7.681159420289854, "y2": -6.521739130434783, "center_x": 7.53623188405797, "center_y": -6.666666666666667, "value_uncond": 1.4119361391184097e-05}, {"x": 7.681159420289855, "y": -6.811594202898551, "x2": 7.971014492753623, "y2": -6.521739130434783, "center_x": 7.826086956521739, "center_y": -6.666666666666667, "value_uncond": 1.2599519752427816e-05}, {"x": 7.971014492753625, "y": -6.811594202898551, "x2": 8.260869565217392, "y2": -6.521739130434783, "center_x": 8.115942028985508, "center_y": -6.666666666666667, "value_uncond": 1.1138808656268394e-05}, {"x": 8.26086956521739, "y": -6.811594202898551, "x2": 8.550724637681158, "y2": -6.521739130434783, "center_x": 8.405797101449274, "center_y": -6.666666666666667, "value_uncond": 9.755944255256153e-06}, {"x": 8.55072463768116, "y": -6.811594202898551, "x2": 8.840579710144928, "y2": -6.521739130434783, "center_x": 8.695652173913043, "center_y": -6.666666666666667, "value_uncond": 8.465365055944217e-06}, {"x": 8.84057971014493, "y": -6.811594202898551, "x2": 9.130434782608697, "y2": -6.521739130434783, "center_x": 8.985507246376812, "center_y": -6.666666666666667, "value_uncond": 7.277259918443921e-06}, {"x": 9.130434782608695, "y": -6.811594202898551, "x2": 9.420289855072463, "y2": -6.521739130434783, "center_x": 9.275362318840578, "center_y": -6.666666666666667, "value_uncond": 6.197776297765796e-06}, {"x": 9.420289855072465, "y": -6.811594202898551, "x2": 9.710144927536232, "y2": -6.521739130434783, "center_x": 9.565217391304348, "center_y": -6.666666666666667, "value_uncond": 5.229374218373128e-06}, {"x": 9.710144927536234, "y": -6.811594202898551, "x2": 10.000000000000002, "y2": -6.521739130434783, "center_x": 9.855072463768117, "center_y": -6.666666666666667, "value_uncond": 4.371287395038365e-06}, {"x": 10.0, "y": -6.811594202898551, "x2": 10.289855072463768, "y2": -6.521739130434783, "center_x": 10.144927536231883, "center_y": -6.666666666666667, "value_uncond": 3.6200520444522546e-06}, {"x": -10.0, "y": -6.521739130434782, "x2": -9.710144927536232, "y2": -6.231884057971015, "center_x": -9.855072463768117, "center_y": -6.3768115942028984, "value_uncond": 7.039040184716764e-10}, {"x": -9.710144927536232, "y": -6.521739130434782, "x2": -9.420289855072465, "y2": -6.231884057971015, "center_x": -9.565217391304348, "center_y": -6.3768115942028984, "value_uncond": 1.0997741551867875e-09}, {"x": -9.420289855072463, "y": -6.521739130434782, "x2": -9.130434782608695, "y2": -6.231884057971015, "center_x": -9.275362318840578, "center_y": -6.3768115942028984, "value_uncond": 1.7023128952967586e-09}, {"x": -9.130434782608695, "y": -6.521739130434782, "x2": -8.840579710144928, "y2": -6.231884057971015, "center_x": -8.985507246376812, "center_y": -6.3768115942028984, "value_uncond": 2.6104842846516803e-09}, {"x": -8.840579710144928, "y": -6.521739130434782, "x2": -8.55072463768116, "y2": -6.231884057971015, "center_x": -8.695652173913043, "center_y": -6.3768115942028984, "value_uncond": 3.965962392440151e-09}, {"x": -8.55072463768116, "y": -6.521739130434782, "x2": -8.260869565217392, "y2": -6.231884057971015, "center_x": -8.405797101449277, "center_y": -6.3768115942028984, "value_uncond": 5.969279505777591e-09}, {"x": -8.26086956521739, "y": -6.521739130434782, "x2": -7.971014492753623, "y2": -6.231884057971015, "center_x": -8.115942028985508, "center_y": -6.3768115942028984, "value_uncond": 8.901046143811682e-09}, {"x": -7.971014492753623, "y": -6.521739130434782, "x2": -7.681159420289855, "y2": -6.231884057971015, "center_x": -7.826086956521739, "center_y": -6.3768115942028984, "value_uncond": 1.314940205953262e-08}, {"x": -7.681159420289855, "y": -6.521739130434782, "x2": -7.391304347826088, "y2": -6.231884057971015, "center_x": -7.536231884057972, "center_y": -6.3768115942028984, "value_uncond": 1.924494930576833e-08}, {"x": -7.391304347826087, "y": -6.521739130434782, "x2": -7.101449275362319, "y2": -6.231884057971015, "center_x": -7.246376811594203, "center_y": -6.3768115942028984, "value_uncond": 2.7904442661425693e-08}, {"x": -7.101449275362318, "y": -6.521739130434782, "x2": -6.811594202898551, "y2": -6.231884057971015, "center_x": -6.956521739130435, "center_y": -6.3768115942028984, "value_uncond": 4.008443334539075e-08}, {"x": -6.811594202898551, "y": -6.521739130434782, "x2": -6.521739130434783, "y2": -6.231884057971015, "center_x": -6.666666666666667, "center_y": -6.3768115942028984, "value_uncond": 5.7045837298942615e-08}, {"x": -6.521739130434782, "y": -6.521739130434782, "x2": -6.231884057971015, "y2": -6.231884057971015, "center_x": -6.3768115942028984, "center_y": -6.3768115942028984, "value_uncond": 8.042998428613649e-08}, {"x": -6.231884057971014, "y": -6.521739130434782, "x2": -5.942028985507246, "y2": -6.231884057971015, "center_x": -6.08695652173913, "center_y": -6.3768115942028984, "value_uncond": 1.1234605407244484e-07}, {"x": -5.942028985507246, "y": -6.521739130434782, "x2": -5.6521739130434785, "y2": -6.231884057971015, "center_x": -5.797101449275362, "center_y": -6.3768115942028984, "value_uncond": 1.5546888264731687e-07}, {"x": -5.6521739130434785, "y": -6.521739130434782, "x2": -5.362318840579711, "y2": -6.231884057971015, "center_x": -5.507246376811595, "center_y": -6.3768115942028984, "value_uncond": 2.131449001305415e-07}, {"x": -5.36231884057971, "y": -6.521739130434782, "x2": -5.072463768115942, "y2": -6.231884057971015, "center_x": -5.217391304347826, "center_y": -6.3768115942028984, "value_uncond": 2.895024403309789e-07}, {"x": -5.0724637681159415, "y": -6.521739130434782, "x2": -4.782608695652174, "y2": -6.231884057971015, "center_x": -4.927536231884058, "center_y": -6.3768115942028984, "value_uncond": 3.8956086952577673e-07}, {"x": -4.782608695652174, "y": -6.521739130434782, "x2": -4.492753623188406, "y2": -6.231884057971015, "center_x": -4.63768115942029, "center_y": -6.3768115942028984, "value_uncond": 5.193309896456e-07}, {"x": -4.492753623188405, "y": -6.521739130434782, "x2": -4.202898550724638, "y2": -6.231884057971015, "center_x": -4.3478260869565215, "center_y": -6.3768115942028984, "value_uncond": 6.85897098017273e-07}, {"x": -4.202898550724638, "y": -6.521739130434782, "x2": -3.91304347826087, "y2": -6.231884057971015, "center_x": -4.057971014492754, "center_y": -6.3768115942028984, "value_uncond": 8.974691040289142e-07}, {"x": -3.913043478260869, "y": -6.521739130434782, "x2": -3.6231884057971016, "y2": -6.231884057971015, "center_x": -3.7681159420289854, "center_y": -6.3768115942028984, "value_uncond": 1.1633914356796153e-06}, {"x": -3.6231884057971016, "y": -6.521739130434782, "x2": -3.333333333333334, "y2": -6.231884057971015, "center_x": -3.4782608695652177, "center_y": -6.3768115942028984, "value_uncond": 1.4940943819444437e-06}, {"x": -3.333333333333333, "y": -6.521739130434782, "x2": -3.0434782608695654, "y2": -6.231884057971015, "center_x": -3.1884057971014492, "center_y": -6.3768115942028984, "value_uncond": 1.9009733023452697e-06}, {"x": -3.0434782608695645, "y": -6.521739130434782, "x2": -2.753623188405797, "y2": -6.231884057971015, "center_x": -2.8985507246376807, "center_y": -6.3768115942028984, "value_uncond": 2.3961820857624293e-06}, {"x": -2.753623188405797, "y": -6.521739130434782, "x2": -2.4637681159420293, "y2": -6.231884057971015, "center_x": -2.608695652173913, "center_y": -6.3768115942028984, "value_uncond": 2.9923296158811253e-06}, {"x": -2.4637681159420284, "y": -6.521739130434782, "x2": -2.1739130434782608, "y2": -6.231884057971015, "center_x": -2.3188405797101446, "center_y": -6.3768115942028984, "value_uncond": 3.7020719872461713e-06}, {"x": -2.1739130434782608, "y": -6.521739130434782, "x2": -1.8840579710144931, "y2": -6.231884057971015, "center_x": -2.028985507246377, "center_y": -6.3768115942028984, "value_uncond": 4.537598884784661e-06}, {"x": -1.8840579710144922, "y": -6.521739130434782, "x2": -1.5942028985507246, "y2": -6.231884057971015, "center_x": -1.7391304347826084, "center_y": -6.3768115942028984, "value_uncond": 5.510019806584133e-06}, {"x": -1.5942028985507246, "y": -6.521739130434782, "x2": -1.304347826086957, "y2": -6.231884057971015, "center_x": -1.4492753623188408, "center_y": -6.3768115942028984, "value_uncond": 6.628664403656853e-06}, {"x": -1.304347826086957, "y": -6.521739130434782, "x2": -1.0144927536231894, "y2": -6.231884057971015, "center_x": -1.1594202898550732, "center_y": -6.3768115942028984, "value_uncond": 7.900320657144142e-06}, {"x": -1.0144927536231876, "y": -6.521739130434782, "x2": -0.72463768115942, "y2": -6.231884057971015, "center_x": -0.8695652173913038, "center_y": -6.3768115942028984, "value_uncond": 9.328444239957765e-06}, {"x": -0.72463768115942, "y": -6.521739130434782, "x2": -0.43478260869565233, "y2": -6.231884057971015, "center_x": -0.5797101449275361, "center_y": -6.3768115942028984, "value_uncond": 1.091238137437345e-05}, {"x": -0.43478260869565233, "y": -6.521739130434782, "x2": -0.1449275362318847, "y2": -6.231884057971015, "center_x": -0.2898550724637685, "center_y": -6.3768115942028984, "value_uncond": 1.2646654845922255e-05}, {"x": -0.14492753623188293, "y": -6.521739130434782, "x2": 0.1449275362318847, "y2": -6.231884057971015, "center_x": 8.881784197001252e-16, "center_y": -6.3768115942028984, "value_uncond": 1.4520367584310195e-05}, {"x": 0.1449275362318847, "y": -6.521739130434782, "x2": 0.43478260869565233, "y2": -6.231884057971015, "center_x": 0.2898550724637685, "center_y": -6.3768115942028984, "value_uncond": 1.6516779465029294e-05}, {"x": 0.43478260869565233, "y": -6.521739130434782, "x2": 0.72463768115942, "y2": -6.231884057971015, "center_x": 0.5797101449275361, "center_y": -6.3768115942028984, "value_uncond": 1.8613109999084778e-05}, {"x": 0.72463768115942, "y": -6.521739130434782, "x2": 1.0144927536231876, "y2": -6.231884057971015, "center_x": 0.8695652173913038, "center_y": -6.3768115942028984, "value_uncond": 2.078061193989797e-05}, {"x": 1.0144927536231894, "y": -6.521739130434782, "x2": 1.304347826086957, "y2": -6.231884057971015, "center_x": 1.1594202898550732, "center_y": -6.3768115942028984, "value_uncond": 2.2984948516464915e-05}, {"x": 1.304347826086957, "y": -6.521739130434782, "x2": 1.5942028985507246, "y2": -6.231884057971015, "center_x": 1.4492753623188408, "center_y": -6.3768115942028984, "value_uncond": 2.5186890427292652e-05}, {"x": 1.5942028985507246, "y": -6.521739130434782, "x2": 1.8840579710144922, "y2": -6.231884057971015, "center_x": 1.7391304347826084, "center_y": -6.3768115942028984, "value_uncond": 2.7343328802596077e-05}, {"x": 1.884057971014494, "y": -6.521739130434782, "x2": 2.1739130434782616, "y2": -6.231884057971015, "center_x": 2.028985507246378, "center_y": -6.3768115942028984, "value_uncond": 2.9408578405283986e-05}, {"x": 2.1739130434782616, "y": -6.521739130434782, "x2": 2.4637681159420293, "y2": -6.231884057971015, "center_x": 2.3188405797101455, "center_y": -6.3768115942028984, "value_uncond": 3.133592308708699e-05}, {"x": 2.4637681159420293, "y": -6.521739130434782, "x2": 2.753623188405797, "y2": -6.231884057971015, "center_x": 2.608695652173913, "center_y": -6.3768115942028984, "value_uncond": 3.3079334846211935e-05}, {"x": 2.753623188405797, "y": -6.521739130434782, "x2": 3.0434782608695645, "y2": -6.231884057971015, "center_x": 2.8985507246376807, "center_y": -6.3768115942028984, "value_uncond": 3.459528067694787e-05}, {"x": 3.0434782608695663, "y": -6.521739130434782, "x2": 3.333333333333334, "y2": -6.231884057971015, "center_x": 3.18840579710145, "center_y": -6.3768115942028984, "value_uncond": 3.5844519517121926e-05}, {"x": 3.333333333333334, "y": -6.521739130434782, "x2": 3.6231884057971016, "y2": -6.231884057971015, "center_x": 3.4782608695652177, "center_y": -6.3768115942028984, "value_uncond": 3.679378637323594e-05}, {"x": 3.6231884057971016, "y": -6.521739130434782, "x2": 3.913043478260869, "y2": -6.231884057971015, "center_x": 3.7681159420289854, "center_y": -6.3768115942028984, "value_uncond": 3.741726298148362e-05}, {"x": 3.913043478260871, "y": -6.521739130434782, "x2": 4.202898550724639, "y2": -6.231884057971015, "center_x": 4.057971014492755, "center_y": -6.3768115942028984, "value_uncond": 3.769774433022827e-05}, {"x": 4.202898550724639, "y": -6.521739130434782, "x2": 4.492753623188406, "y2": -6.231884057971015, "center_x": 4.347826086956522, "center_y": -6.3768115942028984, "value_uncond": 3.762742749674654e-05}, {"x": 4.492753623188406, "y": -6.521739130434782, "x2": 4.782608695652174, "y2": -6.231884057971015, "center_x": 4.63768115942029, "center_y": -6.3768115942028984, "value_uncond": 3.72082723206778e-05}, {"x": 4.782608695652174, "y": -6.521739130434782, "x2": 5.0724637681159415, "y2": -6.231884057971015, "center_x": 4.927536231884058, "center_y": -6.3768115942028984, "value_uncond": 3.6451910646322456e-05}, {"x": 5.072463768115943, "y": -6.521739130434782, "x2": 5.362318840579711, "y2": -6.231884057971015, "center_x": 5.217391304347827, "center_y": -6.3768115942028984, "value_uncond": 3.537910999962595e-05}, {"x": 5.362318840579711, "y": -6.521739130434782, "x2": 5.6521739130434785, "y2": -6.231884057971015, "center_x": 5.507246376811595, "center_y": -6.3768115942028984, "value_uncond": 3.4018826213442224e-05}, {"x": 5.6521739130434785, "y": -6.521739130434782, "x2": 5.942028985507246, "y2": -6.231884057971015, "center_x": 5.797101449275362, "center_y": -6.3768115942028984, "value_uncond": 3.2406905315616995e-05}, {"x": 5.942028985507246, "y": -6.521739130434782, "x2": 6.231884057971014, "y2": -6.231884057971015, "center_x": 6.08695652173913, "center_y": -6.3768115942028984, "value_uncond": 3.0584515873802894e-05}, {"x": 6.2318840579710155, "y": -6.521739130434782, "x2": 6.521739130434783, "y2": -6.231884057971015, "center_x": 6.376811594202899, "center_y": -6.3768115942028984, "value_uncond": 2.8596407363257766e-05}, {"x": 6.521739130434785, "y": -6.521739130434782, "x2": 6.8115942028985526, "y2": -6.231884057971015, "center_x": 6.666666666666669, "center_y": -6.3768115942028984, "value_uncond": 2.6489097038893434e-05}, {"x": 6.811594202898551, "y": -6.521739130434782, "x2": 7.101449275362318, "y2": -6.231884057971015, "center_x": 6.956521739130435, "center_y": -6.3768115942028984, "value_uncond": 2.4309087008280366e-05}, {"x": 7.10144927536232, "y": -6.521739130434782, "x2": 7.391304347826088, "y2": -6.231884057971015, "center_x": 7.246376811594204, "center_y": -6.3768115942028984, "value_uncond": 2.21012051777109e-05}, {"x": 7.391304347826086, "y": -6.521739130434782, "x2": 7.681159420289854, "y2": -6.231884057971015, "center_x": 7.53623188405797, "center_y": -6.3768115942028984, "value_uncond": 1.9907149558908627e-05}, {"x": 7.681159420289855, "y": -6.521739130434782, "x2": 7.971014492753623, "y2": -6.231884057971015, "center_x": 7.826086956521739, "center_y": -6.3768115942028984, "value_uncond": 1.7764296637283633e-05}, {"x": 7.971014492753625, "y": -6.521739130434782, "x2": 8.260869565217392, "y2": -6.231884057971015, "center_x": 8.115942028985508, "center_y": -6.3768115942028984, "value_uncond": 1.5704812964618436e-05}, {"x": 8.26086956521739, "y": -6.521739130434782, "x2": 8.550724637681158, "y2": -6.231884057971015, "center_x": 8.405797101449274, "center_y": -6.3768115942028984, "value_uncond": 1.375508679160399e-05}, {"x": 8.55072463768116, "y": -6.521739130434782, "x2": 8.840579710144928, "y2": -6.231884057971015, "center_x": 8.695652173913043, "center_y": -6.3768115942028984, "value_uncond": 1.1935475236483604e-05}, {"x": 8.84057971014493, "y": -6.521739130434782, "x2": 9.130434782608697, "y2": -6.231884057971015, "center_x": 8.985507246376812, "center_y": -6.3768115942028984, "value_uncond": 1.0260343762145541e-05}, {"x": 9.130434782608695, "y": -6.521739130434782, "x2": 9.420289855072463, "y2": -6.231884057971015, "center_x": 9.275362318840578, "center_y": -6.3768115942028984, "value_uncond": 8.738359779452863e-06}, {"x": 9.420289855072465, "y": -6.521739130434782, "x2": 9.710144927536232, "y2": -6.231884057971015, "center_x": 9.565217391304348, "center_y": -6.3768115942028984, "value_uncond": 7.372991722533171e-06}, {"x": 9.710144927536234, "y": -6.521739130434782, "x2": 10.000000000000002, "y2": -6.231884057971015, "center_x": 9.855072463768117, "center_y": -6.3768115942028984, "value_uncond": 6.1631591916285065e-06}, {"x": 10.0, "y": -6.521739130434782, "x2": 10.289855072463768, "y2": -6.231884057971015, "center_x": 10.144927536231883, "center_y": -6.3768115942028984, "value_uncond": 5.103978534393217e-06}, {"x": -10.0, "y": -6.231884057971014, "x2": -9.710144927536232, "y2": -5.942028985507246, "center_x": -9.855072463768117, "center_y": -6.08695652173913, "value_uncond": 9.832258407473207e-10}, {"x": -9.710144927536232, "y": -6.231884057971014, "x2": -9.420289855072465, "y2": -5.942028985507246, "center_x": -9.565217391304348, "center_y": -6.08695652173913, "value_uncond": 1.5361843944483886e-09}, {"x": -9.420289855072463, "y": -6.231884057971014, "x2": -9.130434782608695, "y2": -5.942028985507246, "center_x": -9.275362318840578, "center_y": -6.08695652173913, "value_uncond": 2.3778213844086803e-09}, {"x": -9.130434782608695, "y": -6.231884057971014, "x2": -8.840579710144928, "y2": -5.942028985507246, "center_x": -8.985507246376812, "center_y": -6.08695652173913, "value_uncond": 3.6463715764929747e-09}, {"x": -8.840579710144928, "y": -6.231884057971014, "x2": -8.55072463768116, "y2": -5.942028985507246, "center_x": -8.695652173913043, "center_y": -6.08695652173913, "value_uncond": 5.539727868219475e-09}, {"x": -8.55072463768116, "y": -6.231884057971014, "x2": -8.260869565217392, "y2": -5.942028985507246, "center_x": -8.405797101449277, "center_y": -6.08695652173913, "value_uncond": 8.33799737848785e-09}, {"x": -8.26086956521739, "y": -6.231884057971014, "x2": -7.971014492753623, "y2": -5.942028985507246, "center_x": -8.115942028985508, "center_y": -6.08695652173913, "value_uncond": 1.2433141946371896e-08}, {"x": -7.971014492753623, "y": -6.231884057971014, "x2": -7.681159420289855, "y2": -5.942028985507246, "center_x": -7.826086956521739, "center_y": -6.08695652173913, "value_uncond": 1.836732218602715e-08}, {"x": -7.681159420289855, "y": -6.231884057971014, "x2": -7.391304347826088, "y2": -5.942028985507246, "center_x": -7.536231884057972, "center_y": -6.08695652173913, "value_uncond": 2.688169262392831e-08}, {"x": -7.391304347826087, "y": -6.231884057971014, "x2": -7.101449275362319, "y2": -5.942028985507246, "center_x": -7.246376811594203, "center_y": -6.08695652173913, "value_uncond": 3.897742927499661e-08}, {"x": -7.101449275362318, "y": -6.231884057971014, "x2": -6.811594202898551, "y2": -5.942028985507246, "center_x": -6.956521739130435, "center_y": -6.08695652173913, "value_uncond": 5.599066015061769e-08}, {"x": -6.811594202898551, "y": -6.231884057971014, "x2": -6.521739130434783, "y2": -5.942028985507246, "center_x": -6.666666666666667, "center_y": -6.08695652173913, "value_uncond": 7.968265540118451e-08}, {"x": -6.521739130434782, "y": -6.231884057971014, "x2": -6.231884057971015, "y2": -5.942028985507246, "center_x": -6.3768115942028984, "center_y": -6.08695652173913, "value_uncond": 1.1234605407244484e-07}, {"x": -6.231884057971014, "y": -6.231884057971014, "x2": -5.942028985507246, "y2": -5.942028985507246, "center_x": -6.08695652173913, "center_y": -6.08695652173913, "value_uncond": 1.5692699653833282e-07}, {"x": -5.942028985507246, "y": -6.231884057971014, "x2": -5.6521739130434785, "y2": -5.942028985507246, "center_x": -5.797101449275362, "center_y": -6.08695652173913, "value_uncond": 2.1716174199835867e-07}, {"x": -5.6521739130434785, "y": -6.231884057971014, "x2": -5.362318840579711, "y2": -5.942028985507246, "center_x": -5.507246376811595, "center_y": -6.08695652173913, "value_uncond": 2.977246444577404e-07}, {"x": -5.36231884057971, "y": -6.231884057971014, "x2": -5.072463768115942, "y2": -5.942028985507246, "center_x": -5.217391304347826, "center_y": -6.08695652173913, "value_uncond": 4.0438223511048235e-07}, {"x": -5.0724637681159415, "y": -6.231884057971014, "x2": -4.782608695652174, "y2": -5.942028985507246, "center_x": -4.927536231884058, "center_y": -6.08695652173913, "value_uncond": 5.441456553883133e-07}, {"x": -4.782608695652174, "y": -6.231884057971014, "x2": -4.492753623188406, "y2": -5.942028985507246, "center_x": -4.63768115942029, "center_y": -6.08695652173913, "value_uncond": 7.254109019424205e-07}, {"x": -4.492753623188405, "y": -6.231884057971014, "x2": -4.202898550724638, "y2": -5.942028985507246, "center_x": -4.3478260869565215, "center_y": -6.08695652173913, "value_uncond": 9.580734491734053e-07}, {"x": -4.202898550724638, "y": -6.231884057971014, "x2": -3.91304347826087, "y2": -5.942028985507246, "center_x": -4.057971014492754, "center_y": -6.08695652173913, "value_uncond": 1.2536010467300358e-06}, {"x": -3.913043478260869, "y": -6.231884057971014, "x2": -3.6231884057971016, "y2": -5.942028985507246, "center_x": -3.7681159420289854, "center_y": -6.08695652173913, "value_uncond": 1.625046160338616e-06}, {"x": -3.6231884057971016, "y": -6.231884057971014, "x2": -3.333333333333334, "y2": -5.942028985507246, "center_x": -3.4782608695652177, "center_y": -6.08695652173913, "value_uncond": 2.0869780059399955e-06}, {"x": -3.333333333333333, "y": -6.231884057971014, "x2": -3.0434782608695654, "y2": -5.942028985507246, "center_x": -3.1884057971014492, "center_y": -6.08695652173913, "value_uncond": 2.6553138274374587e-06}, {"x": -3.0434782608695645, "y": -6.231884057971014, "x2": -2.753623188405797, "y2": -5.942028985507246, "center_x": -2.8985507246376807, "center_y": -6.08695652173913, "value_uncond": 3.3470303962360863e-06}, {"x": -2.753623188405797, "y": -6.231884057971014, "x2": -2.4637681159420293, "y2": -5.942028985507246, "center_x": -2.608695652173913, "center_y": -6.08695652173913, "value_uncond": 4.179740028698538e-06}, {"x": -2.4637681159420284, "y": -6.231884057971014, "x2": -2.1739130434782608, "y2": -5.942028985507246, "center_x": -2.3188405797101446, "center_y": -6.08695652173913, "value_uncond": 5.171120986168483e-06}, {"x": -2.1739130434782608, "y": -6.231884057971014, "x2": -1.8840579710144931, "y2": -5.942028985507246, "center_x": -2.028985507246377, "center_y": -6.08695652173913, "value_uncond": 6.338200040615355e-06}, {"x": -1.8840579710144922, "y": -6.231884057971014, "x2": -1.5942028985507246, "y2": -5.942028985507246, "center_x": -1.7391304347826084, "center_y": -6.08695652173913, "value_uncond": 7.696495139530241e-06}, {"x": -1.5942028985507246, "y": -6.231884057971014, "x2": -1.304347826086957, "y2": -5.942028985507246, "center_x": -1.4492753623188408, "center_y": -6.08695652173913, "value_uncond": 9.259038107877462e-06}, {"x": -1.304347826086957, "y": -6.231884057971014, "x2": -1.0144927536231894, "y2": -5.942028985507246, "center_x": -1.1594202898550732, "center_y": -6.08695652173913, "value_uncond": 1.1035310520260253e-05}, {"x": -1.0144927536231876, "y": -6.231884057971014, "x2": -0.72463768115942, "y2": -5.942028985507246, "center_x": -0.8695652173913038, "center_y": -6.08695652173913, "value_uncond": 1.3030139322987851e-05}, {"x": -0.72463768115942, "y": -6.231884057971014, "x2": -0.43478260869565233, "y2": -5.942028985507246, "center_x": -0.5797101449275361, "center_y": -6.08695652173913, "value_uncond": 1.5242611307532183e-05}, {"x": -0.43478260869565233, "y": -6.231884057971014, "x2": -0.1449275362318847, "y2": -5.942028985507246, "center_x": -0.2898550724637685, "center_y": -6.08695652173913, "value_uncond": 1.7665075801841584e-05}, {"x": -0.14492753623188293, "y": -6.231884057971014, "x2": 0.1449275362318847, "y2": -5.942028985507246, "center_x": 8.881784197001252e-16, "center_y": -6.08695652173913, "value_uncond": 2.0282311581402023e-05}, {"x": 0.1449275362318847, "y": -6.231884057971014, "x2": 0.43478260869565233, "y2": -5.942028985507246, "center_x": 0.2898550724637685, "center_y": -6.08695652173913, "value_uncond": 2.307093573808732e-05}, {"x": 0.43478260869565233, "y": -6.231884057971014, "x2": 0.72463768115942, "y2": -5.942028985507246, "center_x": 0.5797101449275361, "center_y": -6.08695652173913, "value_uncond": 2.5999128073608017e-05}, {"x": 0.72463768115942, "y": -6.231884057971014, "x2": 1.0144927536231876, "y2": -5.942028985507246, "center_x": 0.8695652173913038, "center_y": -6.08695652173913, "value_uncond": 2.9026733914962152e-05}, {"x": 1.0144927536231894, "y": -6.231884057971014, "x2": 1.304347826086957, "y2": -5.942028985507246, "center_x": 1.1594202898550732, "center_y": -6.08695652173913, "value_uncond": 3.210579104052153e-05}, {"x": 1.304347826086957, "y": -6.231884057971014, "x2": 1.5942028985507246, "y2": -5.942028985507246, "center_x": 1.4492753623188408, "center_y": -6.08695652173913, "value_uncond": 3.518150325374492e-05}, {"x": 1.5942028985507246, "y": -6.231884057971014, "x2": 1.8840579710144922, "y2": -5.942028985507246, "center_x": 1.7391304347826084, "center_y": -6.08695652173913, "value_uncond": 3.819365530706185e-05}, {"x": 1.884057971014494, "y": -6.231884057971014, "x2": 2.1739130434782616, "y2": -5.942028985507246, "center_x": 2.028985507246378, "center_y": -6.08695652173913, "value_uncond": 4.107843323653689e-05}, {"x": 2.1739130434782616, "y": -6.231884057971014, "x2": 2.4637681159420293, "y2": -5.942028985507246, "center_x": 2.3188405797101455, "center_y": -6.08695652173913, "value_uncond": 4.377058308288967e-05}, {"x": 2.4637681159420293, "y": -6.231884057971014, "x2": 2.753623188405797, "y2": -5.942028985507246, "center_x": 2.608695652173913, "center_y": -6.08695652173913, "value_uncond": 4.62058121022611e-05}, {"x": 2.753623188405797, "y": -6.231884057971014, "x2": 3.0434782608695645, "y2": -5.942028985507246, "center_x": 2.8985507246376807, "center_y": -6.08695652173913, "value_uncond": 4.832331260636244e-05}, {"x": 3.0434782608695663, "y": -6.231884057971014, "x2": 3.333333333333334, "y2": -5.942028985507246, "center_x": 3.18840579710145, "center_y": -6.08695652173913, "value_uncond": 5.006827197112243e-05}, {"x": 3.333333333333334, "y": -6.231884057971014, "x2": 3.6231884057971016, "y2": -5.942028985507246, "center_x": 3.4782608695652177, "center_y": -6.08695652173913, "value_uncond": 5.1394225053082035e-05}, {"x": 3.6231884057971016, "y": -6.231884057971014, "x2": 3.913043478260869, "y2": -5.942028985507246, "center_x": 3.7681159420289854, "center_y": -6.08695652173913, "value_uncond": 5.2265108435253366e-05}, {"x": 3.913043478260871, "y": -6.231884057971014, "x2": 4.202898550724639, "y2": -5.942028985507246, "center_x": 4.057971014492755, "center_y": -6.08695652173913, "value_uncond": 5.265688984677617e-05}, {"x": 4.202898550724639, "y": -6.231884057971014, "x2": 4.492753623188406, "y2": -5.942028985507246, "center_x": 4.347826086956522, "center_y": -6.08695652173913, "value_uncond": 5.2558670024322436e-05}, {"x": 4.492753623188406, "y": -6.231884057971014, "x2": 4.782608695652174, "y2": -5.942028985507246, "center_x": 4.63768115942029, "center_y": -6.08695652173913, "value_uncond": 5.197318650728187e-05}, {"x": 4.782608695652174, "y": -6.231884057971014, "x2": 5.0724637681159415, "y2": -5.942028985507246, "center_x": 4.927536231884058, "center_y": -6.08695652173913, "value_uncond": 5.0916686865765747e-05}, {"x": 5.072463768115943, "y": -6.231884057971014, "x2": 5.362318840579711, "y2": -5.942028985507246, "center_x": 5.217391304347827, "center_y": -6.08695652173913, "value_uncond": 4.941817955493573e-05}, {"x": 5.362318840579711, "y": -6.231884057971014, "x2": 5.6521739130434785, "y2": -5.942028985507246, "center_x": 5.507246376811595, "center_y": -6.08695652173913, "value_uncond": 4.7518110604868697e-05}, {"x": 5.6521739130434785, "y": -6.231884057971014, "x2": 5.942028985507246, "y2": -5.942028985507246, "center_x": 5.797101449275362, "center_y": -6.08695652173913, "value_uncond": 4.52665503943964e-05}, {"x": 5.942028985507246, "y": -6.231884057971014, "x2": 6.231884057971014, "y2": -5.942028985507246, "center_x": 6.08695652173913, "center_y": -6.08695652173913, "value_uncond": 4.272100392204194e-05}, {"x": 6.2318840579710155, "y": -6.231884057971014, "x2": 6.521739130434783, "y2": -5.942028985507246, "center_x": 6.376811594202899, "center_y": -6.08695652173913, "value_uncond": 3.9943978062718354e-05}, {"x": 6.521739130434785, "y": -6.231884057971014, "x2": 6.8115942028985526, "y2": -5.942028985507246, "center_x": 6.666666666666669, "center_y": -6.08695652173913, "value_uncond": 3.70004489578735e-05}, {"x": 6.811594202898551, "y": -6.231884057971014, "x2": 7.101449275362318, "y2": -5.942028985507246, "center_x": 6.956521739130435, "center_y": -6.08695652173913, "value_uncond": 3.3955371590875396e-05}, {"x": 7.10144927536232, "y": -6.231884057971014, "x2": 7.391304347826088, "y2": -5.942028985507246, "center_x": 7.246376811594204, "center_y": -6.08695652173913, "value_uncond": 3.0871362390521965e-05}, {"x": 7.391304347826086, "y": -6.231884057971014, "x2": 7.681159420289854, "y2": -5.942028985507246, "center_x": 7.53623188405797, "center_y": -6.08695652173913, "value_uncond": 2.780666589237285e-05}, {"x": 7.681159420289855, "y": -6.231884057971014, "x2": 7.971014492753623, "y2": -5.942028985507246, "center_x": 7.826086956521739, "center_y": -6.08695652173913, "value_uncond": 2.4813490246015368e-05}, {"x": 7.971014492753625, "y": -6.231884057971014, "x2": 8.260869565217392, "y2": -5.942028985507246, "center_x": 8.115942028985508, "center_y": -6.08695652173913, "value_uncond": 2.1936766271689755e-05}, {"x": 8.26086956521739, "y": -6.231884057971014, "x2": 8.550724637681158, "y2": -5.942028985507246, "center_x": 8.405797101449274, "center_y": -6.08695652173913, "value_uncond": 1.921335355435446e-05}, {"x": 8.55072463768116, "y": -6.231884057971014, "x2": 8.840579710144928, "y2": -5.942028985507246, "center_x": 8.695652173913043, "center_y": -6.08695652173913, "value_uncond": 1.6671687284283626e-05}, {"x": 8.84057971014493, "y": -6.231884057971014, "x2": 9.130434782608697, "y2": -5.942028985507246, "center_x": 8.985507246376812, "center_y": -6.08695652173913, "value_uncond": 1.4331833399382685e-05}, {"x": 9.130434782608695, "y": -6.231884057971014, "x2": 9.420289855072463, "y2": -5.942028985507246, "center_x": 9.275362318840578, "center_y": -6.08695652173913, "value_uncond": 1.2205898695619978e-05}, {"x": 9.420289855072465, "y": -6.231884057971014, "x2": 9.710144927536232, "y2": -5.942028985507246, "center_x": 9.565217391304348, "center_y": -6.08695652173913, "value_uncond": 1.0298727944401408e-05}, {"x": 9.710144927536234, "y": -6.231884057971014, "x2": 10.000000000000002, "y2": -5.942028985507246, "center_x": 9.855072463768117, "center_y": -6.08695652173913, "value_uncond": 8.608812023840343e-06}, {"x": 10.0, "y": -6.231884057971014, "x2": 10.289855072463768, "y2": -5.942028985507246, "center_x": 10.144927536231883, "center_y": -6.08695652173913, "value_uncond": 7.1293293601746525e-06}, {"x": -10.0, "y": -5.942028985507246, "x2": -9.710144927536232, "y2": -5.6521739130434785, "center_x": -9.855072463768117, "center_y": -5.797101449275362, "value_uncond": 1.360626540139841e-09}, {"x": -9.710144927536232, "y": -5.942028985507246, "x2": -9.420289855072465, "y2": -5.6521739130434785, "center_x": -9.565217391304348, "center_y": -5.797101449275362, "value_uncond": 2.125832307302315e-09}, {"x": -9.420289855072463, "y": -5.942028985507246, "x2": -9.130434782608695, "y2": -5.6521739130434785, "center_x": -9.275362318840578, "center_y": -5.797101449275362, "value_uncond": 3.290522634026223e-09}, {"x": -9.130434782608695, "y": -5.942028985507246, "x2": -8.840579710144928, "y2": -5.6521739130434785, "center_x": -8.985507246376812, "center_y": -5.797101449275362, "value_uncond": 5.045992219261586e-09}, {"x": -8.840579710144928, "y": -5.942028985507246, "x2": -8.55072463768116, "y2": -5.6521739130434785, "center_x": -8.695652173913043, "center_y": -5.797101449275362, "value_uncond": 7.666093027948395e-09}, {"x": -8.55072463768116, "y": -5.942028985507246, "x2": -8.260869565217392, "y2": -5.6521739130434785, "center_x": -8.405797101449277, "center_y": -5.797101449275362, "value_uncond": 1.153844829399938e-08}, {"x": -8.26086956521739, "y": -5.942028985507246, "x2": -7.971014492753623, "y2": -5.6521739130434785, "center_x": -8.115942028985508, "center_y": -5.797101449275362, "value_uncond": 1.720547020682608e-08}, {"x": -7.971014492753623, "y": -5.942028985507246, "x2": -7.681159420289855, "y2": -5.6521739130434785, "center_x": -7.826086956521739, "center_y": -5.797101449275362, "value_uncond": 2.5417421920698242e-08}, {"x": -7.681159420289855, "y": -5.942028985507246, "x2": -7.391304347826088, "y2": -5.6521739130434785, "center_x": -7.536231884057972, "center_y": -5.797101449275362, "value_uncond": 3.719994218235569e-08}, {"x": -7.391304347826087, "y": -5.942028985507246, "x2": -7.101449275362319, "y2": -5.6521739130434785, "center_x": -7.246376811594203, "center_y": -5.797101449275362, "value_uncond": 5.3938497688053776e-08}, {"x": -7.101449275362318, "y": -5.942028985507246, "x2": -6.811594202898551, "y2": -5.6521739130434785, "center_x": -6.956521739130435, "center_y": -5.797101449275362, "value_uncond": 7.748207486387541e-08}, {"x": -6.811594202898551, "y": -5.942028985507246, "x2": -6.521739130434783, "y2": -5.6521739130434785, "center_x": -6.666666666666667, "center_y": -5.797101449275362, "value_uncond": 1.1026798852770564e-07}, {"x": -6.521739130434782, "y": -5.942028985507246, "x2": -6.231884057971015, "y2": -5.6521739130434785, "center_x": -6.3768115942028984, "center_y": -5.797101449275362, "value_uncond": 1.5546888264731687e-07}, {"x": -6.231884057971014, "y": -5.942028985507246, "x2": -5.942028985507246, "y2": -5.6521739130434785, "center_x": -6.08695652173913, "center_y": -5.797101449275362, "value_uncond": 2.1716174199835867e-07}, {"x": -5.942028985507246, "y": -5.942028985507246, "x2": -5.6521739130434785, "y2": -5.6521739130434785, "center_x": -5.797101449275362, "center_y": -5.797101449275362, "value_uncond": 3.0051694882366615e-07}, {"x": -5.6521739130434785, "y": -5.942028985507246, "x2": -5.362318840579711, "y2": -5.6521739130434785, "center_x": -5.507246376811595, "center_y": -5.797101449275362, "value_uncond": 4.1200305780714903e-07}, {"x": -5.36231884057971, "y": -5.942028985507246, "x2": -5.072463768115942, "y2": -5.6521739130434785, "center_x": -5.217391304347826, "center_y": -5.797101449275362, "value_uncond": 5.596000213279511e-07}, {"x": -5.0724637681159415, "y": -5.942028985507246, "x2": -4.782608695652174, "y2": -5.6521739130434785, "center_x": -4.927536231884058, "center_y": -5.797101449275362, "value_uncond": 7.530101323012316e-07}, {"x": -4.782608695652174, "y": -5.942028985507246, "x2": -4.492753623188406, "y2": -5.6521739130434785, "center_x": -4.63768115942029, "center_y": -5.797101449275362, "value_uncond": 1.0038521006927966e-06}, {"x": -4.492753623188405, "y": -5.942028985507246, "x2": -4.202898550724638, "y2": -5.6521739130434785, "center_x": -4.3478260869565215, "center_y": -5.797101449275362, "value_uncond": 1.325819672678501e-06}, {"x": -4.202898550724638, "y": -5.942028985507246, "x2": -3.91304347826087, "y2": -5.6521739130434785, "center_x": -4.057971014492754, "center_y": -5.797101449275362, "value_uncond": 1.7347823706825448e-06}, {"x": -3.913043478260869, "y": -5.942028985507246, "x2": -3.6231884057971016, "y2": -5.6521739130434785, "center_x": -3.7681159420289854, "center_y": -5.797101449275362, "value_uncond": 2.248802709485845e-06}, {"x": -3.6231884057971016, "y": -5.942028985507246, "x2": -3.333333333333334, "y2": -5.6521739130434785, "center_x": -3.4782608695652177, "center_y": -5.797101449275362, "value_uncond": 2.8880421423950747e-06}, {"x": -3.333333333333333, "y": -5.942028985507246, "x2": -3.0434782608695654, "y2": -5.6521739130434785, "center_x": -3.1884057971014492, "center_y": -5.797101449275362, "value_uncond": 3.674527576762701e-06}, {"x": -3.0434782608695645, "y": -5.942028985507246, "x2": -2.753623188405797, "y2": -5.6521739130434785, "center_x": -2.8985507246376807, "center_y": -5.797101449275362, "value_uncond": 4.631752135717058e-06}, {"x": -2.753623188405797, "y": -5.942028985507246, "x2": -2.4637681159420293, "y2": -5.6521739130434785, "center_x": -2.608695652173913, "center_y": -5.797101449275362, "value_uncond": 5.7840884344633715e-06}, {"x": -2.4637681159420284, "y": -5.942028985507246, "x2": -2.1739130434782608, "y2": -5.6521739130434785, "center_x": -2.3188405797101446, "center_y": -5.797101449275362, "value_uncond": 7.15600034546198e-06}, {"x": -2.1739130434782608, "y": -5.942028985507246, "x2": -1.8840579710144931, "y2": -5.6521739130434785, "center_x": -2.028985507246377, "center_y": -5.797101449275362, "value_uncond": 8.771050184586184e-06}, {"x": -1.8840579710144922, "y": -5.942028985507246, "x2": -1.5942028985507246, "y2": -5.6521739130434785, "center_x": -1.7391304347826084, "center_y": -5.797101449275362, "value_uncond": 1.0650712297128669e-05}, {"x": -1.5942028985507246, "y": -5.942028985507246, "x2": -1.304347826086957, "y2": -5.6521739130434785, "center_x": -1.4492753623188408, "center_y": -5.797101449275362, "value_uncond": 1.2813020634373129e-05}, {"x": -1.304347826086957, "y": -5.942028985507246, "x2": -1.0144927536231894, "y2": -5.6521739130434785, "center_x": -1.1594202898550732, "center_y": -5.797101449275362, "value_uncond": 1.5271096171697562e-05}, {"x": -1.0144927536231876, "y": -5.942028985507246, "x2": -0.72463768115942, "y2": -5.6521739130434785, "center_x": -0.8695652173913038, "center_y": -5.797101449275362, "value_uncond": 1.8031618627010143e-05}, {"x": -0.72463768115942, "y": -5.942028985507246, "x2": -0.43478260869565233, "y2": -5.6521739130434785, "center_x": -0.5797101449275361, "center_y": -5.797101449275362, "value_uncond": 2.1093324266478302e-05}, {"x": -0.43478260869565233, "y": -5.942028985507246, "x2": -0.1449275362318847, "y2": -5.6521739130434785, "center_x": -0.2898550724637685, "center_y": -5.797101449275362, "value_uncond": 2.4445625789593858e-05}, {"x": -0.14492753623188293, "y": -5.942028985507246, "x2": 0.1449275362318847, "y2": -5.6521739130434785, "center_x": 8.881784197001252e-16, "center_y": -5.797101449275362, "value_uncond": 2.80674594679753e-05}, {"x": 0.1449275362318847, "y": -5.942028985507246, "x2": 0.43478260869565233, "y2": -5.6521739130434785, "center_x": 0.2898550724637685, "center_y": -5.797101449275362, "value_uncond": 3.192646711486255e-05}, {"x": 0.43478260869565233, "y": -5.942028985507246, "x2": 0.72463768115942, "y2": -5.6521739130434785, "center_x": 0.5797101449275361, "center_y": -5.797101449275362, "value_uncond": 3.5978614689945916e-05}, {"x": 0.72463768115942, "y": -5.942028985507246, "x2": 1.0144927536231876, "y2": -5.6521739130434785, "center_x": 0.8695652173913038, "center_y": -5.797101449275362, "value_uncond": 4.0168334579425016e-05}, {"x": 1.0144927536231894, "y": -5.942028985507246, "x2": 1.304347826086957, "y2": -5.6521739130434785, "center_x": 1.1594202898550732, "center_y": -5.797101449275362, "value_uncond": 4.442925477702533e-05}, {"x": 1.304347826086957, "y": -5.942028985507246, "x2": 1.5942028985507246, "y2": -5.6521739130434785, "center_x": 1.4492753623188408, "center_y": -5.797101449275362, "value_uncond": 4.8685546153544873e-05}, {"x": 1.5942028985507246, "y": -5.942028985507246, "x2": 1.8840579710144922, "y2": -5.6521739130434785, "center_x": 1.7391304347826084, "center_y": -5.797101449275362, "value_uncond": 5.285388048410381e-05}, {"x": 1.884057971014494, "y": -5.942028985507246, "x2": 2.1739130434782616, "y2": -5.6521739130434785, "center_x": 2.028985507246378, "center_y": -5.797101449275362, "value_uncond": 5.684594949875671e-05}, {"x": 2.1739130434782616, "y": -5.942028985507246, "x2": 2.4637681159420293, "y2": -5.6521739130434785, "center_x": 2.3188405797101455, "center_y": -5.797101449275362, "value_uncond": 6.057145220543583e-05}, {"x": 2.4637681159420293, "y": -5.942028985507246, "x2": 2.753623188405797, "y2": -5.6521739130434785, "center_x": 2.608695652173913, "center_y": -5.797101449275362, "value_uncond": 6.394141777973059e-05}, {"x": 2.753623188405797, "y": -5.942028985507246, "x2": 3.0434782608695645, "y2": -5.6521739130434785, "center_x": 2.8985507246376807, "center_y": -5.797101449275362, "value_uncond": 6.687169815402376e-05}, {"x": 3.0434782608695663, "y": -5.942028985507246, "x2": 3.333333333333334, "y2": -5.6521739130434785, "center_x": 3.18840579710145, "center_y": -5.797101449275362, "value_uncond": 6.928644146605207e-05}, {"x": 3.333333333333334, "y": -5.942028985507246, "x2": 3.6231884057971016, "y2": -5.6521739130434785, "center_x": 3.4782608695652177, "center_y": -5.797101449275362, "value_uncond": 7.112134742511759e-05}, {"x": 3.6231884057971016, "y": -5.942028985507246, "x2": 3.913043478260869, "y2": -5.6521739130434785, "center_x": 3.7681159420289854, "center_y": -5.797101449275362, "value_uncond": 7.232651005819936e-05}, {"x": 3.913043478260871, "y": -5.942028985507246, "x2": 4.202898550724639, "y2": -5.6521739130434785, "center_x": 4.057971014492755, "center_y": -5.797101449275362, "value_uncond": 7.28686725648786e-05}, {"x": 4.202898550724639, "y": -5.942028985507246, "x2": 4.492753623188406, "y2": -5.6521739130434785, "center_x": 4.347826086956522, "center_y": -5.797101449275362, "value_uncond": 7.273275211643228e-05}, {"x": 4.492753623188406, "y": -5.942028985507246, "x2": 4.782608695652174, "y2": -5.6521739130434785, "center_x": 4.63768115942029, "center_y": -5.797101449275362, "value_uncond": 7.192253702740012e-05}, {"x": 4.782608695652174, "y": -5.942028985507246, "x2": 5.0724637681159415, "y2": -5.6521739130434785, "center_x": 4.927536231884058, "center_y": -5.797101449275362, "value_uncond": 7.046051132351661e-05}, {"x": 5.072463768115943, "y": -5.942028985507246, "x2": 5.362318840579711, "y2": -5.6521739130434785, "center_x": 5.217391304347827, "center_y": -5.797101449275362, "value_uncond": 6.838681804450433e-05}, {"x": 5.362318840579711, "y": -5.942028985507246, "x2": 5.6521739130434785, "y2": -5.6521739130434785, "center_x": 5.507246376811595, "center_y": -5.797101449275362, "value_uncond": 6.575742799552855e-05}, {"x": 5.6521739130434785, "y": -5.942028985507246, "x2": 5.942028985507246, "y2": -5.6521739130434785, "center_x": 5.797101449275362, "center_y": -5.797101449275362, "value_uncond": 6.26416305336118e-05}, {"x": 5.942028985507246, "y": -5.942028985507246, "x2": 6.231884057971014, "y2": -5.6521739130434785, "center_x": 6.08695652173913, "center_y": -5.797101449275362, "value_uncond": 5.911900333454195e-05}, {"x": 6.2318840579710155, "y": -5.942028985507246, "x2": 6.521739130434783, "y2": -5.6521739130434785, "center_x": 6.376811594202899, "center_y": -5.797101449275362, "value_uncond": 5.5276045867132e-05}, {"x": 6.521739130434785, "y": -5.942028985507246, "x2": 6.8115942028985526, "y2": -5.6521739130434785, "center_x": 6.666666666666669, "center_y": -5.797101449275362, "value_uncond": 5.12026746682202e-05}, {"x": 6.811594202898551, "y": -5.942028985507246, "x2": 7.101449275362318, "y2": -5.6521739130434785, "center_x": 6.956521739130435, "center_y": -5.797101449275362, "value_uncond": 4.698877699526274e-05}, {"x": 7.10144927536232, "y": -5.942028985507246, "x2": 7.391304347826088, "y2": -5.6521739130434785, "center_x": 7.246376811594204, "center_y": -5.797101449275362, "value_uncond": 4.27210039220419e-05}, {"x": 7.391304347826086, "y": -5.942028985507246, "x2": 7.681159420289854, "y2": -5.6521739130434785, "center_x": 7.53623188405797, "center_y": -5.797101449275362, "value_uncond": 3.8479956524746164e-05}, {"x": 7.681159420289855, "y": -5.942028985507246, "x2": 7.971014492753623, "y2": -5.6521739130434785, "center_x": 7.826086956521739, "center_y": -5.797101449275362, "value_uncond": 3.43378824915426e-05}, {"x": 7.971014492753625, "y": -5.942028985507246, "x2": 8.260869565217392, "y2": -5.6521739130434785, "center_x": 8.115942028985508, "center_y": -5.797101449275362, "value_uncond": 3.035695885638976e-05}, {"x": 8.26086956521739, "y": -5.942028985507246, "x2": 8.550724637681158, "y2": -5.6521739130434785, "center_x": 8.405797101449274, "center_y": -5.797101449275362, "value_uncond": 2.658819336082033e-05}, {"x": 8.55072463768116, "y": -5.942028985507246, "x2": 8.840579710144928, "y2": -5.6521739130434785, "center_x": 8.695652173913043, "center_y": -5.797101449275362, "value_uncond": 2.3070935738087277e-05}, {"x": 8.84057971014493, "y": -5.942028985507246, "x2": 9.130434782608697, "y2": -5.6521739130434785, "center_x": 8.985507246376812, "center_y": -5.797101449275362, "value_uncond": 1.9832954021266523e-05}, {"x": 9.130434782608695, "y": -5.942028985507246, "x2": 9.420289855072463, "y2": -5.6521739130434785, "center_x": 9.275362318840578, "center_y": -5.797101449275362, "value_uncond": 1.6891002070181413e-05}, {"x": 9.420289855072465, "y": -5.942028985507246, "x2": 9.710144927536232, "y2": -5.6521739130434785, "center_x": 9.565217391304348, "center_y": -5.797101449275362, "value_uncond": 1.425178426980903e-05}, {"x": 9.710144927536234, "y": -5.942028985507246, "x2": 10.000000000000002, "y2": -5.6521739130434785, "center_x": 9.855072463768117, "center_y": -5.797101449275362, "value_uncond": 1.191321223800342e-05}, {"x": 10.0, "y": -5.942028985507246, "x2": 10.289855072463768, "y2": -5.6521739130434785, "center_x": 10.144927536231883, "center_y": -5.797101449275362, "value_uncond": 9.865846013036942e-06}, {"x": -10.0, "y": -5.6521739130434785, "x2": -9.710144927536232, "y2": -5.362318840579711, "center_x": -9.855072463768117, "center_y": -5.507246376811595, "value_uncond": 1.8653932740416187e-09}, {"x": -9.710144927536232, "y": -5.6521739130434785, "x2": -9.420289855072465, "y2": -5.362318840579711, "center_x": -9.565217391304348, "center_y": -5.507246376811595, "value_uncond": 2.9144759203172313e-09}, {"x": -9.420289855072463, "y": -5.6521739130434785, "x2": -9.130434782608695, "y2": -5.362318840579711, "center_x": -9.275362318840578, "center_y": -5.507246376811595, "value_uncond": 4.511244348477409e-09}, {"x": -9.130434782608695, "y": -5.6521739130434785, "x2": -8.840579710144928, "y2": -5.362318840579711, "center_x": -8.985507246376812, "center_y": -5.507246376811595, "value_uncond": 6.917959975784015e-09}, {"x": -8.840579710144928, "y": -5.6521739130434785, "x2": -8.55072463768116, "y2": -5.362318840579711, "center_x": -8.695652173913043, "center_y": -5.507246376811595, "value_uncond": 1.05100686710422e-08}, {"x": -8.55072463768116, "y": -5.6521739130434785, "x2": -8.260869565217392, "y2": -5.362318840579711, "center_x": -8.405797101449277, "center_y": -5.507246376811595, "value_uncond": 1.5818994562821986e-08}, {"x": -8.26086956521739, "y": -5.6521739130434785, "x2": -7.971014492753623, "y2": -5.362318840579711, "center_x": -8.115942028985508, "center_y": -5.507246376811595, "value_uncond": 2.358837451255229e-08}, {"x": -7.971014492753623, "y": -5.6521739130434785, "x2": -7.681159420289855, "y2": -5.362318840579711, "center_x": -7.826086956521739, "center_y": -5.507246376811595, "value_uncond": 3.484680512661137e-08}, {"x": -7.681159420289855, "y": -5.6521739130434785, "x2": -7.391304347826088, "y2": -5.362318840579711, "center_x": -7.536231884057972, "center_y": -5.507246376811595, "value_uncond": 5.100041774473357e-08}, {"x": -7.391304347826087, "y": -5.6521739130434785, "x2": -7.101449275362319, "y2": -5.362318840579711, "center_x": -7.246376811594203, "center_y": -5.507246376811595, "value_uncond": 7.394866102557714e-08}, {"x": -7.101449275362318, "y": -5.6521739130434785, "x2": -6.811594202898551, "y2": -5.362318840579711, "center_x": -6.956521739130435, "center_y": -5.507246376811595, "value_uncond": 1.062264604180127e-07}, {"x": -6.811594202898551, "y": -5.6521739130434785, "x2": -6.521739130434783, "y2": -5.362318840579711, "center_x": -6.666666666666667, "center_y": -5.507246376811595, "value_uncond": 1.5117532847811418e-07}, {"x": -6.521739130434782, "y": -5.6521739130434785, "x2": -6.231884057971015, "y2": -5.362318840579711, "center_x": -6.3768115942028984, "center_y": -5.507246376811595, "value_uncond": 2.131449001305415e-07}, {"x": -6.231884057971014, "y": -5.6521739130434785, "x2": -5.942028985507246, "y2": -5.362318840579711, "center_x": -6.08695652173913, "center_y": -5.507246376811595, "value_uncond": 2.977246444577404e-07}, {"x": -5.942028985507246, "y": -5.6521739130434785, "x2": -5.6521739130434785, "y2": -5.362318840579711, "center_x": -5.797101449275362, "center_y": -5.507246376811595, "value_uncond": 4.1200305780714903e-07}, {"x": -5.6521739130434785, "y": -5.6521739130434785, "x2": -5.362318840579711, "y2": -5.362318840579711, "center_x": -5.507246376811595, "center_y": -5.507246376811595, "value_uncond": 5.648484064106578e-07}, {"x": -5.36231884057971, "y": -5.6521739130434785, "x2": -5.072463768115942, "y2": -5.362318840579711, "center_x": -5.217391304347826, "center_y": -5.507246376811595, "value_uncond": 7.672010541786288e-07}, {"x": -5.0724637681159415, "y": -5.6521739130434785, "x2": -4.782608695652174, "y2": -5.362318840579711, "center_x": -4.927536231884058, "center_y": -5.507246376811595, "value_uncond": 1.032362661348308e-06}, {"x": -4.782608695652174, "y": -5.6521739130434785, "x2": -4.492753623188406, "y2": -5.362318840579711, "center_x": -4.63768115942029, "center_y": -5.507246376811595, "value_uncond": 1.3762622597178169e-06}, {"x": -4.492753623188405, "y": -5.6521739130434785, "x2": -4.202898550724638, "y2": -5.362318840579711, "center_x": -4.3478260869565215, "center_y": -5.507246376811595, "value_uncond": 1.81767371651618e-06}, {"x": -4.202898550724638, "y": -5.6521739130434785, "x2": -3.91304347826087, "y2": -5.362318840579711, "center_x": -4.057971014492754, "center_y": -5.507246376811595, "value_uncond": 2.3783538470920915e-06}, {"x": -3.913043478260869, "y": -5.6521739130434785, "x2": -3.6231884057971016, "y2": -5.362318840579711, "center_x": -3.7681159420289854, "center_y": -5.507246376811595, "value_uncond": 3.0830660178731517e-06}, {"x": -3.6231884057971016, "y": -5.6521739130434785, "x2": -3.333333333333334, "y2": -5.362318840579711, "center_x": -3.4782608695652177, "center_y": -5.507246376811595, "value_uncond": 3.959451200341003e-06}, {"x": -3.333333333333333, "y": -5.6521739130434785, "x2": -3.0434782608695654, "y2": -5.362318840579711, "center_x": -3.1884057971014492, "center_y": -5.507246376811595, "value_uncond": 5.037707868221586e-06}, {"x": -3.0434782608695645, "y": -5.6521739130434785, "x2": -2.753623188405797, "y2": -5.362318840579711, "center_x": -2.8985507246376807, "center_y": -5.507246376811595, "value_uncond": 6.350044649361683e-06}, {"x": -2.753623188405797, "y": -5.6521739130434785, "x2": -2.4637681159420293, "y2": -5.362318840579711, "center_x": -2.608695652173913, "center_y": -5.507246376811595, "value_uncond": 7.92987593862528e-06}, {"x": -2.4637681159420284, "y": -5.6521739130434785, "x2": -2.1739130434782608, "y2": -5.362318840579711, "center_x": -2.3188405797101446, "center_y": -5.507246376811595, "value_uncond": 9.810741242848559e-06}, {"x": -2.1739130434782608, "y": -5.6521739130434785, "x2": -1.8840579710144931, "y2": -5.362318840579711, "center_x": -2.028985507246377, "center_y": -5.507246376811595, "value_uncond": 1.2024944051824084e-05}, {"x": -1.8840579710144922, "y": -5.6521739130434785, "x2": -1.5942028985507246, "y2": -5.362318840579711, "center_x": -1.7391304347826084, "center_y": -5.507246376811595, "value_uncond": 1.4601925287135904e-05}, {"x": -1.5942028985507246, "y": -5.6521739130434785, "x2": -1.304347826086957, "y2": -5.362318840579711, "center_x": -1.4492753623188408, "center_y": -5.507246376811595, "value_uncond": 1.7566409155196697e-05}, {"x": -1.304347826086957, "y": -5.6521739130434785, "x2": -1.0144927536231894, "y2": -5.362318840579711, "center_x": -1.1594202898550732, "center_y": -5.507246376811595, "value_uncond": 2.0936384265295586e-05}, {"x": -1.0144927536231876, "y": -5.6521739130434785, "x2": -0.72463768115942, "y2": -5.362318840579711, "center_x": -0.8695652173913038, "center_y": -5.507246376811595, "value_uncond": 2.4721008384454473e-05}, {"x": -0.72463768115942, "y": -5.6521739130434785, "x2": -0.43478260869565233, "y2": -5.362318840579711, "center_x": -0.5797101449275361, "center_y": -5.507246376811595, "value_uncond": 2.8918548957470345e-05}, {"x": -0.43478260869565233, "y": -5.6521739130434785, "x2": -0.1449275362318847, "y2": -5.362318840579711, "center_x": -0.2898550724637685, "center_y": -5.507246376811595, "value_uncond": 3.3514490995420406e-05}, {"x": -0.14492753623188293, "y": -5.6521739130434785, "x2": 0.1449275362318847, "y2": -5.362318840579711, "center_x": 8.881784197001252e-16, "center_y": -5.507246376811595, "value_uncond": 3.8479956524746164e-05}, {"x": 0.1449275362318847, "y": -5.6521739130434785, "x2": 0.43478260869565233, "y2": -5.362318840579711, "center_x": 0.2898550724637685, "center_y": -5.507246376811595, "value_uncond": 4.37705830828896e-05}, {"x": 0.43478260869565233, "y": -5.6521739130434785, "x2": 0.72463768115942, "y2": -5.362318840579711, "center_x": 0.5797101449275361, "center_y": -5.507246376811595, "value_uncond": 4.932600083272101e-05}, {"x": 0.72463768115942, "y": -5.6521739130434785, "x2": 1.0144927536231876, "y2": -5.362318840579711, "center_x": 0.8695652173913038, "center_y": -5.507246376811595, "value_uncond": 5.507002762581109e-05}, {"x": 1.0144927536231894, "y": -5.6521739130434785, "x2": 1.304347826086957, "y2": -5.362318840579711, "center_x": 1.1594202898550732, "center_y": -5.507246376811595, "value_uncond": 6.09116686958249e-05}, {"x": 1.304347826086957, "y": -5.6521739130434785, "x2": 1.5942028985507246, "y2": -5.362318840579711, "center_x": 1.4492753623188408, "center_y": -5.507246376811595, "value_uncond": 6.674696373961032e-05}, {"x": 1.5942028985507246, "y": -5.6521739130434785, "x2": 1.8840579710144922, "y2": -5.362318840579711, "center_x": 1.7391304347826084, "center_y": -5.507246376811595, "value_uncond": 7.246167133555524e-05}, {"x": 1.884057971014494, "y": -5.6521739130434785, "x2": 2.1739130434782616, "y2": -5.362318840579711, "center_x": 2.028985507246378, "center_y": -5.507246376811595, "value_uncond": 7.793472251437328e-05}, {"x": 2.1739130434782616, "y": -5.6521739130434785, "x2": 2.4637681159420293, "y2": -5.362318840579711, "center_x": 2.3188405797101455, "center_y": -5.507246376811595, "value_uncond": 8.304231632240589e-05}, {"x": 2.4637681159420293, "y": -5.6521739130434785, "x2": 2.753623188405797, "y2": -5.362318840579711, "center_x": 2.608695652173913, "center_y": -5.507246376811595, "value_uncond": 8.766247544071558e-05}, {"x": 2.753623188405797, "y": -5.6521739130434785, "x2": 3.0434782608695645, "y2": -5.362318840579711, "center_x": 2.8985507246376807, "center_y": -5.507246376811595, "value_uncond": 9.167983445879034e-05}, {"x": 3.0434782608695663, "y": -5.6521739130434785, "x2": 3.333333333333334, "y2": -5.362318840579711, "center_x": 3.18840579710145, "center_y": -5.507246376811595, "value_uncond": 9.499040190688058e-05}, {"x": 3.333333333333334, "y": -5.6521739130434785, "x2": 3.6231884057971016, "y2": -5.362318840579711, "center_x": 3.4782608695652177, "center_y": -5.507246376811595, "value_uncond": 9.75060233015565e-05}, {"x": 3.6231884057971016, "y": -5.6521739130434785, "x2": 3.913043478260869, "y2": -5.362318840579711, "center_x": 3.7681159420289854, "center_y": -5.507246376811595, "value_uncond": 9.91582784969064e-05}, {"x": 3.913043478260871, "y": -5.6521739130434785, "x2": 4.202898550724639, "y2": -5.362318840579711, "center_x": 4.057971014492755, "center_y": -5.507246376811595, "value_uncond": 9.990157304802774e-05}, {"x": 4.202898550724639, "y": -5.6521739130434785, "x2": 4.492753623188406, "y2": -5.362318840579711, "center_x": 4.347826086956522, "center_y": -5.507246376811595, "value_uncond": 9.971522868176951e-05}, {"x": 4.492753623188406, "y": -5.6521739130434785, "x2": 4.782608695652174, "y2": -5.362318840579711, "center_x": 4.63768115942029, "center_y": -5.507246376811595, "value_uncond": 9.860443910577588e-05}, {"x": 4.782608695652174, "y": -5.6521739130434785, "x2": 5.0724637681159415, "y2": -5.362318840579711, "center_x": 4.927536231884058, "center_y": -5.507246376811595, "value_uncond": 9.66000294944361e-05}, {"x": 5.072463768115943, "y": -5.6521739130434785, "x2": 5.362318840579711, "y2": -5.362318840579711, "center_x": 5.217391304347827, "center_y": -5.507246376811595, "value_uncond": 9.37570351966053e-05}, {"x": 5.362318840579711, "y": -5.6521739130434785, "x2": 5.6521739130434785, "y2": -5.362318840579711, "center_x": 5.507246376811595, "center_y": -5.507246376811595, "value_uncond": 9.01521911284547e-05}, {"x": 5.6521739130434785, "y": -5.6521739130434785, "x2": 5.942028985507246, "y2": -5.362318840579711, "center_x": 5.797101449275362, "center_y": -5.507246376811595, "value_uncond": 8.588049168906403e-05}, {"x": 5.942028985507246, "y": -5.6521739130434785, "x2": 6.231884057971014, "y2": -5.362318840579711, "center_x": 6.08695652173913, "center_y": -5.507246376811595, "value_uncond": 8.105103636811636e-05}, {"x": 6.2318840579710155, "y": -5.6521739130434785, "x2": 6.521739130434783, "y2": -5.362318840579711, "center_x": 6.376811594202899, "center_y": -5.507246376811595, "value_uncond": 7.578241430272746e-05}, {"x": 6.521739130434785, "y": -5.6521739130434785, "x2": 6.8115942028985526, "y2": -5.362318840579711, "center_x": 6.666666666666669, "center_y": -5.507246376811595, "value_uncond": 7.019789936570147e-05}, {"x": 6.811594202898551, "y": -5.6521739130434785, "x2": 7.101449275362318, "y2": -5.362318840579711, "center_x": 6.956521739130435, "center_y": -5.507246376811595, "value_uncond": 6.44207252883631e-05}, {"x": 7.10144927536232, "y": -5.6521739130434785, "x2": 7.391304347826088, "y2": -5.362318840579711, "center_x": 7.246376811594204, "center_y": -5.507246376811595, "value_uncond": 5.856968905537602e-05}, {"x": 7.391304347826086, "y": -5.6521739130434785, "x2": 7.681159420289854, "y2": -5.362318840579711, "center_x": 7.53623188405797, "center_y": -5.507246376811595, "value_uncond": 5.275529321903279e-05}, {"x": 7.681159420289855, "y": -5.6521739130434785, "x2": 7.971014492753623, "y2": -5.362318840579711, "center_x": 7.826086956521739, "center_y": -5.507246376811595, "value_uncond": 4.707658799450714e-05}, {"x": 7.971014492753625, "y": -5.6521739130434785, "x2": 8.260869565217392, "y2": -5.362318840579711, "center_x": 8.115942028985508, "center_y": -5.507246376811595, "value_uncond": 4.161881692036346e-05}, {"x": 8.26086956521739, "y": -5.6521739130434785, "x2": 8.550724637681158, "y2": -5.362318840579711, "center_x": 8.405797101449274, "center_y": -5.507246376811595, "value_uncond": 3.645191064632239e-05}, {"x": 8.55072463768116, "y": -5.6521739130434785, "x2": 8.840579710144928, "y2": -5.362318840579711, "center_x": 8.695652173913043, "center_y": -5.507246376811595, "value_uncond": 3.1629816913060714e-05}, {"x": 8.84057971014493, "y": -5.6521739130434785, "x2": 9.130434782608697, "y2": -5.362318840579711, "center_x": 8.985507246376812, "center_y": -5.507246376811595, "value_uncond": 2.719060516917808e-05}, {"x": 9.130434782608695, "y": -5.6521739130434785, "x2": 9.420289855072463, "y2": -5.362318840579711, "center_x": 9.275362318840578, "center_y": -5.507246376811595, "value_uncond": 2.315724463988563e-05}, {"x": 9.420289855072465, "y": -5.6521739130434785, "x2": 9.710144927536232, "y2": -5.362318840579711, "center_x": 9.565217391304348, "center_y": -5.507246376811595, "value_uncond": 1.9538926910290582e-05}, {"x": 9.710144927536234, "y": -5.6521739130434785, "x2": 10.000000000000002, "y2": -5.362318840579711, "center_x": 9.855072463768117, "center_y": -5.507246376811595, "value_uncond": 1.6332788847936102e-05}, {"x": 10.0, "y": -5.6521739130434785, "x2": 10.289855072463768, "y2": -5.362318840579711, "center_x": 10.144927536231883, "center_y": -5.507246376811595, "value_uncond": 1.3525888443685628e-05}, {"x": -10.0, "y": -5.36231884057971, "x2": -9.710144927536232, "y2": -5.072463768115942, "center_x": -9.855072463768117, "center_y": -5.217391304347826, "value_uncond": 2.5336562342392283e-09}, {"x": -9.710144927536232, "y": -5.36231884057971, "x2": -9.420289855072465, "y2": -5.072463768115942, "center_x": -9.565217391304348, "center_y": -5.217391304347826, "value_uncond": 3.958564763693418e-09}, {"x": -9.420289855072463, "y": -5.36231884057971, "x2": -9.130434782608695, "y2": -5.072463768115942, "center_x": -9.275362318840578, "center_y": -5.217391304347826, "value_uncond": 6.127363343029421e-09}, {"x": -9.130434782608695, "y": -5.36231884057971, "x2": -8.840579710144928, "y2": -5.072463768115942, "center_x": -8.985507246376812, "center_y": -5.217391304347826, "value_uncond": 9.396266548601021e-09}, {"x": -8.840579710144928, "y": -5.36231884057971, "x2": -8.55072463768116, "y2": -5.072463768115942, "center_x": -8.695652173913043, "center_y": -5.217391304347826, "value_uncond": 1.4275220877672309e-08}, {"x": -8.55072463768116, "y": -5.36231884057971, "x2": -8.260869565217392, "y2": -5.072463768115942, "center_x": -8.405797101449277, "center_y": -5.217391304347826, "value_uncond": 2.1486029113127425e-08}, {"x": -8.26086956521739, "y": -5.36231884057971, "x2": -7.971014492753623, "y2": -5.072463768115942, "center_x": -8.115942028985508, "center_y": -5.217391304347826, "value_uncond": 3.203873036907085e-08}, {"x": -7.971014492753623, "y": -5.36231884057971, "x2": -7.681159420289855, "y2": -5.072463768115942, "center_x": -7.826086956521739, "center_y": -5.217391304347826, "value_uncond": 4.7330408166995674e-08}, {"x": -7.681159420289855, "y": -5.36231884057971, "x2": -7.391304347826088, "y2": -5.072463768115942, "center_x": -7.536231884057972, "center_y": -5.217391304347826, "value_uncond": 6.92709297100564e-08}, {"x": -7.391304347826087, "y": -5.36231884057971, "x2": -7.101449275362319, "y2": -5.072463768115942, "center_x": -7.246376811594203, "center_y": -5.217391304347826, "value_uncond": 1.0044020669976769e-07}, {"x": -7.101449275362318, "y": -5.36231884057971, "x2": -6.811594202898551, "y2": -5.072463768115942, "center_x": -6.956521739130435, "center_y": -5.217391304347826, "value_uncond": 1.442812823572233e-07}, {"x": -6.811594202898551, "y": -5.36231884057971, "x2": -6.521739130434783, "y2": -5.072463768115942, "center_x": -6.666666666666667, "center_y": -5.217391304347826, "value_uncond": 2.053327407104132e-07}, {"x": -6.521739130434782, "y": -5.36231884057971, "x2": -6.231884057971015, "y2": -5.072463768115942, "center_x": -6.3768115942028984, "center_y": -5.217391304347826, "value_uncond": 2.895024403309789e-07}, {"x": -6.231884057971014, "y": -5.36231884057971, "x2": -5.942028985507246, "y2": -5.072463768115942, "center_x": -6.08695652173913, "center_y": -5.217391304347826, "value_uncond": 4.0438223511048235e-07}, {"x": -5.942028985507246, "y": -5.36231884057971, "x2": -5.6521739130434785, "y2": -5.072463768115942, "center_x": -5.797101449275362, "center_y": -5.217391304347826, "value_uncond": 5.596000213279511e-07}, {"x": -5.6521739130434785, "y": -5.36231884057971, "x2": -5.362318840579711, "y2": -5.072463768115942, "center_x": -5.507246376811595, "center_y": -5.217391304347826, "value_uncond": 7.672010541786288e-07}, {"x": -5.36231884057971, "y": -5.36231884057971, "x2": -5.072463768115942, "y2": -5.072463768115942, "center_x": -5.217391304347826, "center_y": -5.217391304347826, "value_uncond": 1.0420449997780032e-06}, {"x": -5.0724637681159415, "y": -5.36231884057971, "x2": -4.782608695652174, "y2": -5.072463768115942, "center_x": -4.927536231884058, "center_y": -5.217391304347826, "value_uncond": 1.4021987370275998e-06}, {"x": -4.782608695652174, "y": -5.36231884057971, "x2": -4.492753623188406, "y2": -5.072463768115942, "center_x": -4.63768115942029, "center_y": -5.217391304347826, "value_uncond": 1.8692977522789173e-06}, {"x": -4.492753623188405, "y": -5.36231884057971, "x2": -4.202898550724638, "y2": -5.072463768115942, "center_x": -4.3478260869565215, "center_y": -5.217391304347826, "value_uncond": 2.4688415079817903e-06}, {"x": -4.202898550724638, "y": -5.36231884057971, "x2": -3.91304347826087, "y2": -5.072463768115942, "center_x": -4.057971014492754, "center_y": -5.217391304347826, "value_uncond": 3.230381033194009e-06}, {"x": -3.913043478260869, "y": -5.36231884057971, "x2": -3.6231884057971016, "y2": -5.072463768115942, "center_x": -3.7681159420289854, "center_y": -5.217391304347826, "value_uncond": 4.187550982121279e-06}, {"x": -3.6231884057971016, "y": -5.36231884057971, "x2": -3.333333333333334, "y2": -5.072463768115942, "center_x": -3.4782608695652177, "center_y": -5.217391304347826, "value_uncond": 5.377894494159164e-06}, {"x": -3.333333333333333, "y": -5.36231884057971, "x2": -3.0434782608695654, "y2": -5.072463768115942, "center_x": -3.1884057971014492, "center_y": -5.217391304347826, "value_uncond": 6.842428416685089e-06}, {"x": -3.0434782608695645, "y": -5.36231884057971, "x2": -2.753623188405797, "y2": -5.072463768115942, "center_x": -2.8985507246376807, "center_y": -5.217391304347826, "value_uncond": 8.624899873630453e-06}, {"x": -2.753623188405797, "y": -5.36231884057971, "x2": -2.4637681159420293, "y2": -5.072463768115942, "center_x": -2.608695652173913, "center_y": -5.217391304347826, "value_uncond": 1.077069371281184e-05}, {"x": -2.4637681159420284, "y": -5.36231884057971, "x2": -2.1739130434782608, "y2": -5.072463768115942, "center_x": -2.3188405797101446, "center_y": -5.217391304347826, "value_uncond": 1.3325364714431008e-05}, {"x": -2.1739130434782608, "y": -5.36231884057971, "x2": -1.8840579710144931, "y2": -5.072463768115942, "center_x": -2.028985507246377, "center_y": -5.217391304347826, "value_uncond": 1.6332788847936102e-05}, {"x": -1.8840579710144922, "y": -5.36231884057971, "x2": -1.5942028985507246, "y2": -5.072463768115942, "center_x": -1.7391304347826084, "center_y": -5.217391304347826, "value_uncond": 1.9832954021266523e-05}, {"x": -1.5942028985507246, "y": -5.36231884057971, "x2": -1.304347826086957, "y2": -5.072463768115942, "center_x": -1.4492753623188408, "center_y": -5.217391304347826, "value_uncond": 2.38594416998354e-05}, {"x": -1.304347826086957, "y": -5.36231884057971, "x2": -1.0144927536231894, "y2": -5.072463768115942, "center_x": -1.1594202898550732, "center_y": -5.217391304347826, "value_uncond": 2.8436684775465024e-05}, {"x": -1.0144927536231876, "y": -5.36231884057971, "x2": -0.72463768115942, "y2": -5.072463768115942, "center_x": -0.8695652173913038, "center_y": -5.217391304347826, "value_uncond": 3.3577121715597955e-05}, {"x": -0.72463768115942, "y": -5.36231884057971, "x2": -0.43478260869565233, "y2": -5.072463768115942, "center_x": -0.5797101449275361, "center_y": -5.217391304347826, "value_uncond": 3.927839929030012e-05}, {"x": -0.43478260869565233, "y": -5.36231884057971, "x2": -0.1449275362318847, "y2": -5.072463768115942, "center_x": -0.2898550724637685, "center_y": -5.217391304347826, "value_uncond": 4.5520802626206266e-05}, {"x": -0.14492753623188293, "y": -5.36231884057971, "x2": 0.1449275362318847, "y2": -5.072463768115942, "center_x": 8.881784197001252e-16, "center_y": -5.217391304347826, "value_uncond": 5.226510843525332e-05}, {"x": 0.1449275362318847, "y": -5.36231884057971, "x2": 0.43478260869565233, "y2": -5.072463768115942, "center_x": 0.2898550724637685, "center_y": -5.217391304347826, "value_uncond": 5.9451061739903565e-05}, {"x": 0.43478260869565233, "y": -5.36231884057971, "x2": 0.72463768115942, "y2": -5.072463768115942, "center_x": 0.5797101449275361, "center_y": -5.217391304347826, "value_uncond": 6.699666566779119e-05}, {"x": 0.72463768115942, "y": -5.36231884057971, "x2": 1.0144927536231876, "y2": -5.072463768115942, "center_x": 0.8695652173913038, "center_y": -5.217391304347826, "value_uncond": 7.47984463949287e-05}, {"x": 1.0144927536231894, "y": -5.36231884057971, "x2": 1.304347826086957, "y2": -5.072463768115942, "center_x": 1.1594202898550732, "center_y": -5.217391304347826, "value_uncond": 8.273281097165984e-05}, {"x": 1.304347826086957, "y": -5.36231884057971, "x2": 1.5942028985507246, "y2": -5.072463768115942, "center_x": 1.4492753623188408, "center_y": -5.217391304347826, "value_uncond": 9.065855610650711e-05}, {"x": 1.5942028985507246, "y": -5.36231884057971, "x2": 1.8840579710144922, "y2": -5.072463768115942, "center_x": 1.7391304347826084, "center_y": -5.217391304347826, "value_uncond": 9.8420514256999e-05}, {"x": 1.884057971014494, "y": -5.36231884057971, "x2": 2.1739130434782616, "y2": -5.072463768115942, "center_x": 2.028985507246378, "center_y": -5.217391304347826, "value_uncond": 0.00010585424441593667}, {"x": 2.1739130434782616, "y": -5.36231884057971, "x2": 2.4637681159420293, "y2": -5.072463768115942, "center_x": 2.3188405797101455, "center_y": -5.217391304347826, "value_uncond": 0.0001127915948791156}, {"x": 2.4637681159420293, "y": -5.36231884057971, "x2": 2.753623188405797, "y2": -5.072463768115942, "center_x": 2.608695652173913, "center_y": -5.217391304347826, "value_uncond": 0.00011906689088032833}, {"x": 2.753623188405797, "y": -5.36231884057971, "x2": 3.0434782608695645, "y2": -5.072463768115942, "center_x": 2.8985507246376807, "center_y": -5.217391304347826, "value_uncond": 0.00012452343822772443}, {"x": 3.0434782608695663, "y": -5.36231884057971, "x2": 3.333333333333334, "y2": -5.072463768115942, "center_x": 3.18840579710145, "center_y": -5.217391304347826, "value_uncond": 0.00012901999129803215}, {"x": 3.333333333333334, "y": -5.36231884057971, "x2": 3.6231884057971016, "y2": -5.072463768115942, "center_x": 3.4782608695652177, "center_y": -5.217391304347826, "value_uncond": 0.00013243681493426023}, {"x": 3.6231884057971016, "y": -5.36231884057971, "x2": 3.913043478260869, "y2": -5.072463768115942, "center_x": 3.7681159420289854, "center_y": -5.217391304347826, "value_uncond": 0.0001346809779933359}, {"x": 3.913043478260871, "y": -5.36231884057971, "x2": 4.202898550724639, "y2": -5.072463768115942, "center_x": 4.057971014492755, "center_y": -5.217391304347826, "value_uncond": 0.00013569055216706725}, {"x": 4.202898550724639, "y": -5.36231884057971, "x2": 4.492753623188406, "y2": -5.072463768115942, "center_x": 4.347826086956522, "center_y": -5.217391304347826, "value_uncond": 0.00013543745134813776}, {"x": 4.492753623188406, "y": -5.36231884057971, "x2": 4.782608695652174, "y2": -5.072463768115942, "center_x": 4.63768115942029, "center_y": -5.217391304347826, "value_uncond": 0.00013392872985047388}, {"x": 4.782608695652174, "y": -5.36231884057971, "x2": 5.0724637681159415, "y2": -5.072463768115942, "center_x": 4.927536231884058, "center_y": -5.217391304347826, "value_uncond": 0.00013120625573286498}, {"x": 5.072463768115943, "y": -5.36231884057971, "x2": 5.362318840579711, "y2": -5.072463768115942, "center_x": 5.217391304347827, "center_y": -5.217391304347826, "value_uncond": 0.00012734478033952931}, {"x": 5.362318840579711, "y": -5.36231884057971, "x2": 5.6521739130434785, "y2": -5.072463768115942, "center_x": 5.507246376811595, "center_y": -5.217391304347826, "value_uncond": 0.00012244852828703783}, {"x": 5.6521739130434785, "y": -5.36231884057971, "x2": 5.942028985507246, "y2": -5.072463768115942, "center_x": 5.797101449275362, "center_y": -5.217391304347826, "value_uncond": 0.00011664652499581822}, {"x": 5.942028985507246, "y": -5.36231884057971, "x2": 6.231884057971014, "y2": -5.072463768115942, "center_x": 6.08695652173913, "center_y": -5.217391304347826, "value_uncond": 0.00011008695401838697}, {"x": 6.2318840579710155, "y": -5.36231884057971, "x2": 6.521739130434783, "y2": -5.072463768115942, "center_x": 6.376811594202899, "center_y": -5.217391304347826, "value_uncond": 0.00010293088814874822}, {"x": 6.521739130434785, "y": -5.36231884057971, "x2": 6.8115942028985526, "y2": -5.072463768115942, "center_x": 6.666666666666669, "center_y": -5.217391304347826, "value_uncond": 9.534576318754272e-05}, {"x": 6.811594202898551, "y": -5.36231884057971, "x2": 7.101449275362318, "y2": -5.072463768115942, "center_x": 6.956521739130435, "center_y": -5.217391304347826, "value_uncond": 8.74989604135519e-05}, {"x": 7.10144927536232, "y": -5.36231884057971, "x2": 7.391304347826088, "y2": -5.072463768115942, "center_x": 7.246376811594204, "center_y": -5.217391304347826, "value_uncond": 7.955183492813184e-05}, {"x": 7.391304347826086, "y": -5.36231884057971, "x2": 7.681159420289854, "y2": -5.072463768115942, "center_x": 7.53623188405797, "center_y": -5.217391304347826, "value_uncond": 7.165447598292267e-05}, {"x": 7.681159420289855, "y": -5.36231884057971, "x2": 7.971014492753623, "y2": -5.072463768115942, "center_x": 7.826086956521739, "center_y": -5.217391304347826, "value_uncond": 6.394141777973048e-05}, {"x": 7.971014492753625, "y": -5.36231884057971, "x2": 8.260869565217392, "y2": -5.072463768115942, "center_x": 8.115942028985508, "center_y": -5.217391304347826, "value_uncond": 5.652844170681143e-05}, {"x": 8.26086956521739, "y": -5.36231884057971, "x2": 8.550724637681158, "y2": -5.072463768115942, "center_x": 8.405797101449274, "center_y": -5.217391304347826, "value_uncond": 4.9510530537554236e-05}, {"x": 8.55072463768116, "y": -5.36231884057971, "x2": 8.840579710144928, "y2": -5.072463768115942, "center_x": 8.695652173913043, "center_y": -5.217391304347826, "value_uncond": 4.296095838063664e-05}, {"x": 8.84057971014493, "y": -5.36231884057971, "x2": 9.130434782608697, "y2": -5.072463768115942, "center_x": 8.985507246376812, "center_y": -5.217391304347826, "value_uncond": 3.6931432775225205e-05}, {"x": 9.130434782608695, "y": -5.36231884057971, "x2": 9.420289855072463, "y2": -5.072463768115942, "center_x": 9.275362318840578, "center_y": -5.217391304347826, "value_uncond": 3.1453151496856975e-05}, {"x": 9.420289855072465, "y": -5.36231884057971, "x2": 9.710144927536232, "y2": -5.072463768115942, "center_x": 9.565217391304348, "center_y": -5.217391304347826, "value_uncond": 2.6538598946131802e-05}, {"x": 9.710144927536234, "y": -5.36231884057971, "x2": 10.000000000000002, "y2": -5.072463768115942, "center_x": 9.855072463768117, "center_y": -5.217391304347826, "value_uncond": 2.2183886295154995e-05}, {"x": 10.0, "y": -5.36231884057971, "x2": 10.289855072463768, "y2": -5.072463768115942, "center_x": 10.144927536231883, "center_y": -5.217391304347826, "value_uncond": 1.837143515839854e-05}, {"x": -10.0, "y": -5.0724637681159415, "x2": -9.710144927536232, "y2": -4.782608695652174, "center_x": -9.855072463768117, "center_y": -4.927536231884058, "value_uncond": 3.4093437159328184e-09}, {"x": -9.710144927536232, "y": -5.0724637681159415, "x2": -9.420289855072465, "y2": -4.782608695652174, "center_x": -9.565217391304348, "center_y": -4.927536231884058, "value_uncond": 5.326732063658852e-09}, {"x": -9.420289855072463, "y": -5.0724637681159415, "x2": -9.130434782608695, "y2": -4.782608695652174, "center_x": -9.275362318840578, "center_y": -4.927536231884058, "value_uncond": 8.245115271159551e-09}, {"x": -9.130434782608695, "y": -5.0724637681159415, "x2": -8.840579710144928, "y2": -4.782608695652174, "center_x": -8.985507246376812, "center_y": -4.927536231884058, "value_uncond": 1.2643823529722732e-08}, {"x": -8.840579710144928, "y": -5.0724637681159415, "x2": -8.55072463768116, "y2": -4.782608695652174, "center_x": -8.695652173913043, "center_y": -4.927536231884058, "value_uncond": 1.9209052094416735e-08}, {"x": -8.55072463768116, "y": -5.0724637681159415, "x2": -8.260869565217392, "y2": -4.782608695652174, "center_x": -8.405797101449277, "center_y": -4.927536231884058, "value_uncond": 2.8912074711345388e-08}, {"x": -8.26086956521739, "y": -5.0724637681159415, "x2": -7.971014492753623, "y2": -4.782608695652174, "center_x": -8.115942028985508, "center_y": -4.927536231884058, "value_uncond": 4.311202229179132e-08}, {"x": -7.971014492753623, "y": -5.0724637681159415, "x2": -7.681159420289855, "y2": -4.782608695652174, "center_x": -7.826086956521739, "center_y": -4.927536231884058, "value_uncond": 6.368884123900681e-08}, {"x": -7.681159420289855, "y": -5.0724637681159415, "x2": -7.391304347826088, "y2": -4.782608695652174, "center_x": -7.536231884057972, "center_y": -4.927536231884058, "value_uncond": 9.321249098921986e-08}, {"x": -7.391304347826087, "y": -5.0724637681159415, "x2": -7.101449275362319, "y2": -4.782608695652174, "center_x": -7.246376811594203, "center_y": -4.927536231884058, "value_uncond": 1.3515455763542766e-07}, {"x": -7.101449275362318, "y": -5.0724637681159415, "x2": -6.811594202898551, "y2": -4.782608695652174, "center_x": -6.956521739130435, "center_y": -4.927536231884058, "value_uncond": 1.9414807608224334e-07}, {"x": -6.811594202898551, "y": -5.0724637681159415, "x2": -6.521739130434783, "y2": -4.782608695652174, "center_x": -6.666666666666667, "center_y": -4.927536231884058, "value_uncond": 2.763002651093713e-07}, {"x": -6.521739130434782, "y": -5.0724637681159415, "x2": -6.231884057971015, "y2": -4.782608695652174, "center_x": -6.3768115942028984, "center_y": -4.927536231884058, "value_uncond": 3.8956086952577673e-07}, {"x": -6.231884057971014, "y": -5.0724637681159415, "x2": -5.942028985507246, "y2": -4.782608695652174, "center_x": -6.08695652173913, "center_y": -4.927536231884058, "value_uncond": 5.441456553883133e-07}, {"x": -5.942028985507246, "y": -5.0724637681159415, "x2": -5.6521739130434785, "y2": -4.782608695652174, "center_x": -5.797101449275362, "center_y": -4.927536231884058, "value_uncond": 7.530101323012316e-07}, {"x": -5.6521739130434785, "y": -5.0724637681159415, "x2": -5.362318840579711, "y2": -4.782608695652174, "center_x": -5.507246376811595, "center_y": -4.927536231884058, "value_uncond": 1.032362661348308e-06}, {"x": -5.36231884057971, "y": -5.0724637681159415, "x2": -5.072463768115942, "y2": -4.782608695652174, "center_x": -5.217391304347826, "center_y": -4.927536231884058, "value_uncond": 1.4021987370275998e-06}, {"x": -5.0724637681159415, "y": -5.0724637681159415, "x2": -4.782608695652174, "y2": -4.782608695652174, "center_x": -4.927536231884058, "center_y": -4.927536231884058, "value_uncond": 1.886829550106441e-06}, {"x": -4.782608695652174, "y": -5.0724637681159415, "x2": -4.492753623188406, "y2": -4.782608695652174, "center_x": -4.63768115942029, "center_y": -4.927536231884058, "value_uncond": 2.5153682882528417e-06}, {"x": -4.492753623188405, "y": -5.0724637681159415, "x2": -4.202898550724638, "y2": -4.782608695652174, "center_x": -4.3478260869565215, "center_y": -4.927536231884058, "value_uncond": 3.3221275906039403e-06}, {"x": -4.202898550724638, "y": -5.0724637681159415, "x2": -3.91304347826087, "y2": -4.782608695652174, "center_x": -4.057971014492754, "center_y": -4.927536231884058, "value_uncond": 4.346871973693597e-06}, {"x": -3.913043478260869, "y": -5.0724637681159415, "x2": -3.6231884057971016, "y2": -4.782608695652174, "center_x": -3.7681159420289854, "center_y": -4.927536231884058, "value_uncond": 5.634860970130909e-06}, {"x": -3.6231884057971016, "y": -5.0724637681159415, "x2": -3.333333333333334, "y2": -4.782608695652174, "center_x": -3.4782608695652177, "center_y": -4.927536231884058, "value_uncond": 7.2366134564094345e-06}, {"x": -3.333333333333333, "y": -5.0724637681159415, "x2": -3.0434782608695654, "y2": -4.782608695652174, "center_x": -3.1884057971014492, "center_y": -4.927536231884058, "value_uncond": 9.207322607105823e-06}, {"x": -3.0434782608695645, "y": -5.0724637681159415, "x2": -2.753623188405797, "y2": -4.782608695652174, "center_x": -2.8985507246376807, "center_y": -4.927536231884058, "value_uncond": 1.1605855517151936e-05}, {"x": -2.753623188405797, "y": -5.0724637681159415, "x2": -2.4637681159420293, "y2": -4.782608695652174, "center_x": -2.608695652173913, "center_y": -4.927536231884058, "value_uncond": 1.4493283038864286e-05}, {"x": -2.4637681159420284, "y": -5.0724637681159415, "x2": -2.1739130434782608, "y2": -4.782608695652174, "center_x": -2.3188405797101446, "center_y": -4.927536231884058, "value_uncond": 1.7930904689325227e-05}, {"x": -2.1739130434782608, "y": -5.0724637681159415, "x2": -1.8840579710144931, "y2": -4.782608695652174, "center_x": -2.028985507246377, "center_y": -4.927536231884058, "value_uncond": 2.197776094083601e-05}, {"x": -1.8840579710144922, "y": -5.0724637681159415, "x2": -1.5942028985507246, "y2": -4.782608695652174, "center_x": -1.7391304347826084, "center_y": -4.927536231884058, "value_uncond": 2.6687660404369246e-05}, {"x": -1.5942028985507246, "y": -5.0724637681159415, "x2": -1.304347826086957, "y2": -4.782608695652174, "center_x": -1.4492753623188408, "center_y": -4.927536231884058, "value_uncond": 3.21057910405215e-05}, {"x": -1.304347826086957, "y": -5.0724637681159415, "x2": -1.0144927536231894, "y2": -4.782608695652174, "center_x": -1.1594202898550732, "center_y": -4.927536231884058, "value_uncond": 3.826503028746719e-05}, {"x": -1.0144927536231876, "y": -5.0724637681159415, "x2": -0.72463768115942, "y2": -4.782608695652174, "center_x": -0.8695652173913038, "center_y": -4.927536231884058, "value_uncond": 4.51821156213635e-05}, {"x": -0.72463768115942, "y": -5.0724637681159415, "x2": -0.43478260869565233, "y2": -4.782608695652174, "center_x": -0.5797101449275361, "center_y": -4.927536231884058, "value_uncond": 5.285388048410386e-05}, {"x": -0.43478260869565233, "y": -5.0724637681159415, "x2": -0.1449275362318847, "y2": -4.782608695652174, "center_x": -0.2898550724637685, "center_y": -4.927536231884058, "value_uncond": 6.125379610721919e-05}, {"x": -0.14492753623188293, "y": -5.0724637681159415, "x2": 0.1449275362318847, "y2": -4.782608695652174, "center_x": 8.881784197001252e-16, "center_y": -4.927536231884058, "value_uncond": 7.032908276910843e-05}, {"x": 0.1449275362318847, "y": -5.0724637681159415, "x2": 0.43478260869565233, "y2": -4.782608695652174, "center_x": 0.2898550724637685, "center_y": -4.927536231884058, "value_uncond": 7.999866004289843e-05}, {"x": 0.43478260869565233, "y": -5.0724637681159415, "x2": 0.72463768115942, "y2": -4.782608695652174, "center_x": 0.5797101449275361, "center_y": -4.927536231884058, "value_uncond": 9.015219112845478e-05}, {"x": 0.72463768115942, "y": -5.0724637681159415, "x2": 1.0144927536231876, "y2": -4.782608695652174, "center_x": 0.8695652173913038, "center_y": -4.927536231884058, "value_uncond": 0.00010065043936580447}, {"x": 1.0144927536231894, "y": -5.0724637681159415, "x2": 1.304347826086957, "y2": -4.782608695652174, "center_x": 1.1594202898550732, "center_y": -4.927536231884058, "value_uncond": 0.00011132709535568892}, {"x": 1.304347826086957, "y": -5.0724637681159415, "x2": 1.5942028985507246, "y2": -4.782608695652174, "center_x": 1.4492753623188408, "center_y": -4.927536231884058, "value_uncond": 0.00012199215283444759}, {"x": 1.5942028985507246, "y": -5.0724637681159415, "x2": 1.8840579710144922, "y2": -4.782608695652174, "center_x": 1.7391304347826084, "center_y": -4.927536231884058, "value_uncond": 0.00013243681493426047}, {"x": 1.884057971014494, "y": -5.0724637681159415, "x2": 2.1739130434782616, "y2": -4.782608695652174, "center_x": 2.028985507246378, "center_y": -4.927536231884058, "value_uncond": 0.00014243980620861715}, {"x": 2.1739130434782616, "y": -5.0724637681159415, "x2": 2.4637681159420293, "y2": -4.782608695652174, "center_x": 2.3188405797101455, "center_y": -4.927536231884058, "value_uncond": 0.00015177485801526626}, {"x": 2.4637681159420293, "y": -5.0724637681159415, "x2": 2.753623188405797, "y2": -4.782608695652174, "center_x": 2.608695652173913, "center_y": -4.927536231884058, "value_uncond": 0.00016021903473436135}, {"x": 2.753623188405797, "y": -5.0724637681159415, "x2": 3.0434782608695645, "y2": -4.782608695652174, "center_x": 2.8985507246376807, "center_y": -4.927536231884058, "value_uncond": 0.00016756148520500328}, {"x": 3.0434782608695663, "y": -5.0724637681159415, "x2": 3.333333333333334, "y2": -4.782608695652174, "center_x": 3.18840579710145, "center_y": -4.927536231884058, "value_uncond": 0.00017361214620093563}, {"x": 3.333333333333334, "y": -5.0724637681159415, "x2": 3.6231884057971016, "y2": -4.782608695652174, "center_x": 3.4782608695652177, "center_y": -4.927536231884058, "value_uncond": 0.00017820989945380452}, {"x": 3.6231884057971016, "y": -5.0724637681159415, "x2": 3.913043478260869, "y2": -4.782608695652174, "center_x": 3.7681159420289854, "center_y": -4.927536231884058, "value_uncond": 0.0001812296947676252}, {"x": 3.913043478260871, "y": -5.0724637681159415, "x2": 4.202898550724639, "y2": -4.782608695652174, "center_x": 4.057971014492755, "center_y": -4.927536231884058, "value_uncond": 0.0001825882000448861}, {"x": 4.202898550724639, "y": -5.0724637681159415, "x2": 4.492753623188406, "y2": -4.782608695652174, "center_x": 4.347826086956522, "center_y": -4.927536231884058, "value_uncond": 0.0001822476220000616}, {"x": 4.492753623188406, "y": -5.0724637681159415, "x2": 4.782608695652174, "y2": -4.782608695652174, "center_x": 4.63768115942029, "center_y": -4.927536231884058, "value_uncond": 0.00018021745307357436}, {"x": 4.782608695652174, "y": -5.0724637681159415, "x2": 5.0724637681159415, "y2": -4.782608695652174, "center_x": 4.927536231884058, "center_y": -4.927536231884058, "value_uncond": 0.00017655403184885295}, {"x": 5.072463768115943, "y": -5.0724637681159415, "x2": 5.362318840579711, "y2": -4.782608695652174, "center_x": 5.217391304347827, "center_y": -4.927536231884058, "value_uncond": 0.00017135794538353534}, {"x": 5.362318840579711, "y": -5.0724637681159415, "x2": 5.6521739130434785, "y2": -4.782608695652174, "center_x": 5.507246376811595, "center_y": -4.927536231884058, "value_uncond": 0.00016476944062065562}, {"x": 5.6521739130434785, "y": -5.0724637681159415, "x2": 5.942028985507246, "y2": -4.782608695652174, "center_x": 5.797101449275362, "center_y": -4.927536231884058, "value_uncond": 0.00015696213701197142}, {"x": 5.942028985507246, "y": -5.0724637681159415, "x2": 6.231884057971014, "y2": -4.782608695652174, "center_x": 6.08695652173913, "center_y": -4.927536231884058, "value_uncond": 0.0001481354336143672}, {"x": 6.2318840579710155, "y": -5.0724637681159415, "x2": 6.521739130434783, "y2": -4.782608695652174, "center_x": 6.376811594202899, "center_y": -4.927536231884058, "value_uncond": 0.00013850607353238278}, {"x": 6.521739130434785, "y": -5.0724637681159415, "x2": 6.8115942028985526, "y2": -4.782608695652174, "center_x": 6.666666666666669, "center_y": -4.927536231884058, "value_uncond": 0.00012829936207264282}, {"x": 6.811594202898551, "y": -5.0724637681159415, "x2": 7.101449275362318, "y2": -4.782608695652174, "center_x": 6.956521739130435, "center_y": -4.927536231884058, "value_uncond": 0.00011774053117595541}, {"x": 7.10144927536232, "y": -5.0724637681159415, "x2": 7.391304347826088, "y2": -4.782608695652174, "center_x": 7.246376811594204, "center_y": -4.927536231884058, "value_uncond": 0.00010704670382586031}, {"x": 7.391304347826086, "y": -5.0724637681159415, "x2": 7.681159420289854, "y2": -4.782608695652174, "center_x": 7.53623188405797, "center_y": -4.927536231884058, "value_uncond": 9.641984343001844e-05}, {"x": 7.681159420289855, "y": -5.0724637681159415, "x2": 7.971014492753623, "y2": -4.782608695652174, "center_x": 7.826086956521739, "center_y": -4.927536231884058, "value_uncond": 8.604098217792227e-05}, {"x": 7.971014492753625, "y": -5.0724637681159415, "x2": 8.260869565217392, "y2": -4.782608695652174, "center_x": 8.115942028985508, "center_y": -4.927536231884058, "value_uncond": 7.606591805950384e-05}, {"x": 8.26086956521739, "y": -5.0724637681159415, "x2": 8.550724637681158, "y2": -4.782608695652174, "center_x": 8.405797101449274, "center_y": -4.927536231884058, "value_uncond": 6.662246198975567e-05}, {"x": 8.55072463768116, "y": -5.0724637681159415, "x2": 8.840579710144928, "y2": -4.782608695652174, "center_x": 8.695652173913043, "center_y": -4.927536231884058, "value_uncond": 5.780921322558761e-05}, {"x": 8.84057971014493, "y": -5.0724637681159415, "x2": 9.130434782608697, "y2": -4.782608695652174, "center_x": 8.985507246376812, "center_y": -4.927536231884058, "value_uncond": 4.9695750572262035e-05}, {"x": 9.130434782608695, "y": -5.0724637681159415, "x2": 9.420289855072463, "y2": -4.782608695652174, "center_x": 9.275362318840578, "center_y": -4.927536231884058, "value_uncond": 4.2324054444699044e-05}, {"x": 9.420289855072465, "y": -5.0724637681159415, "x2": 9.710144927536232, "y2": -4.782608695652174, "center_x": 9.565217391304348, "center_y": -4.927536231884058, "value_uncond": 3.5710924127725504e-05}, {"x": 9.710144927536234, "y": -5.0724637681159415, "x2": 10.000000000000002, "y2": -4.782608695652174, "center_x": 9.855072463768117, "center_y": -4.927536231884058, "value_uncond": 2.9851126728746904e-05}, {"x": 10.0, "y": -5.0724637681159415, "x2": 10.289855072463768, "y2": -4.782608695652174, "center_x": 10.144927536231883, "center_y": -4.927536231884058, "value_uncond": 2.4721008384454473e-05}, {"x": -10.0, "y": -4.782608695652174, "x2": -9.710144927536232, "y2": -4.492753623188406, "center_x": -9.855072463768117, "center_y": -4.63768115942029, "value_uncond": 4.5450608224403395e-09}, {"x": -9.710144927536232, "y": -4.782608695652174, "x2": -9.420289855072465, "y2": -4.492753623188406, "center_x": -9.565217391304348, "center_y": -4.63768115942029, "value_uncond": 7.10116762385412e-09}, {"x": -9.420289855072463, "y": -4.782608695652174, "x2": -9.130434782608695, "y2": -4.492753623188406, "center_x": -9.275362318840578, "center_y": -4.63768115942029, "value_uncond": 1.0991719673297463e-08}, {"x": -9.130434782608695, "y": -4.782608695652174, "x2": -8.840579710144928, "y2": -4.492753623188406, "center_x": -8.985507246376812, "center_y": -4.63768115942029, "value_uncond": 1.68557211472205e-08}, {"x": -8.840579710144928, "y": -4.782608695652174, "x2": -8.55072463768116, "y2": -4.492753623188406, "center_x": -8.695652173913043, "center_y": -4.63768115942029, "value_uncond": 2.560795196522492e-08}, {"x": -8.55072463768116, "y": -4.782608695652174, "x2": -8.260869565217392, "y2": -4.492753623188406, "center_x": -8.405797101449277, "center_y": -4.63768115942029, "value_uncond": 3.854323559455201e-08}, {"x": -8.26086956521739, "y": -4.782608695652174, "x2": -7.971014492753623, "y2": -4.492753623188406, "center_x": -8.115942028985508, "center_y": -4.63768115942029, "value_uncond": 5.747345525148468e-08}, {"x": -7.971014492753623, "y": -4.782608695652174, "x2": -7.681159420289855, "y2": -4.492753623188406, "center_x": -7.826086956521739, "center_y": -4.63768115942029, "value_uncond": 8.490480317055164e-08}, {"x": -7.681159420289855, "y": -4.782608695652174, "x2": -7.391304347826088, "y2": -4.492753623188406, "center_x": -7.536231884057972, "center_y": -4.63768115942029, "value_uncond": 1.2426334105807845e-07}, {"x": -7.391304347826087, "y": -4.782608695652174, "x2": -7.101449275362319, "y2": -4.492753623188406, "center_x": -7.246376811594203, "center_y": -4.63768115942029, "value_uncond": 1.8017710623082913e-07}, {"x": -7.101449275362318, "y": -4.782608695652174, "x2": -6.811594202898551, "y2": -4.492753623188406, "center_x": -6.956521739130435, "center_y": -4.63768115942029, "value_uncond": 2.588224854624657e-07}, {"x": -6.811594202898551, "y": -4.782608695652174, "x2": -6.521739130434783, "y2": -4.492753623188406, "center_x": -6.666666666666667, "center_y": -4.63768115942029, "value_uncond": 3.6834112803287286e-07}, {"x": -6.521739130434782, "y": -4.782608695652174, "x2": -6.231884057971015, "y2": -4.492753623188406, "center_x": -6.3768115942028984, "center_y": -4.63768115942029, "value_uncond": 5.193309896456e-07}, {"x": -6.231884057971014, "y": -4.782608695652174, "x2": -5.942028985507246, "y2": -4.492753623188406, "center_x": -6.08695652173913, "center_y": -4.63768115942029, "value_uncond": 7.254109019424205e-07}, {"x": -5.942028985507246, "y": -4.782608695652174, "x2": -5.6521739130434785, "y2": -4.492753623188406, "center_x": -5.797101449275362, "center_y": -4.63768115942029, "value_uncond": 1.0038521006927966e-06}, {"x": -5.6521739130434785, "y": -4.782608695652174, "x2": -5.362318840579711, "y2": -4.492753623188406, "center_x": -5.507246376811595, "center_y": -4.63768115942029, "value_uncond": 1.3762622597178169e-06}, {"x": -5.36231884057971, "y": -4.782608695652174, "x2": -5.072463768115942, "y2": -4.492753623188406, "center_x": -5.217391304347826, "center_y": -4.63768115942029, "value_uncond": 1.8692977522789173e-06}, {"x": -5.0724637681159415, "y": -4.782608695652174, "x2": -4.782608695652174, "y2": -4.492753623188406, "center_x": -4.927536231884058, "center_y": -4.63768115942029, "value_uncond": 2.5153682882528417e-06}, {"x": -4.782608695652174, "y": -4.782608695652174, "x2": -4.492753623188406, "y2": -4.492753623188406, "center_x": -4.63768115942029, "center_y": -4.63768115942029, "value_uncond": 3.3532852107341146e-06}, {"x": -4.492753623188405, "y": -4.782608695652174, "x2": -4.202898550724638, "y2": -4.492753623188406, "center_x": -4.3478260869565215, "center_y": -4.63768115942029, "value_uncond": 4.428791350264565e-06}, {"x": -4.202898550724638, "y": -4.782608695652174, "x2": -3.91304347826087, "y2": -4.492753623188406, "center_x": -4.057971014492754, "center_y": -4.63768115942029, "value_uncond": 5.794897538628808e-06}, {"x": -3.913043478260869, "y": -4.782608695652174, "x2": -3.6231884057971016, "y2": -4.492753623188406, "center_x": -3.7681159420289854, "center_y": -4.63768115942029, "value_uncond": 7.511940117845491e-06}, {"x": -3.6231884057971016, "y": -4.782608695652174, "x2": -3.333333333333334, "y2": -4.492753623188406, "center_x": -3.4782608695652177, "center_y": -4.63768115942029, "value_uncond": 9.647266761096261e-06}, {"x": -3.333333333333333, "y": -4.782608695652174, "x2": -3.0434782608695654, "y2": -4.492753623188406, "center_x": -3.1884057971014492, "center_y": -4.63768115942029, "value_uncond": 1.227445653706291e-05}, {"x": -3.0434782608695645, "y": -4.782608695652174, "x2": -2.753623188405797, "y2": -4.492753623188406, "center_x": -2.8985507246376807, "center_y": -4.63768115942029, "value_uncond": 1.547198628738956e-05}, {"x": -2.753623188405797, "y": -4.782608695652174, "x2": -2.4637681159420293, "y2": -4.492753623188406, "center_x": -2.608695652173913, "center_y": -4.63768115942029, "value_uncond": 1.9321270724520628e-05}, {"x": -2.4637681159420284, "y": -4.782608695652174, "x2": -2.1739130434782608, "y2": -4.492753623188406, "center_x": -2.3188405797101446, "center_y": -4.63768115942029, "value_uncond": 2.3904029398240288e-05}, {"x": -2.1739130434782608, "y": -4.782608695652174, "x2": -1.8840579710144931, "y2": -4.492753623188406, "center_x": -2.028985507246377, "center_y": -4.63768115942029, "value_uncond": 2.929897028285477e-05}, {"x": -1.8840579710144922, "y": -4.782608695652174, "x2": -1.5942028985507246, "y2": -4.492753623188406, "center_x": -1.7391304347826084, "center_y": -4.63768115942029, "value_uncond": 3.557782665902412e-05}, {"x": -1.5942028985507246, "y": -4.782608695652174, "x2": -1.304347826086957, "y2": -4.492753623188406, "center_x": -1.4492753623188408, "center_y": -4.63768115942029, "value_uncond": 4.28008394547585e-05}, {"x": -1.304347826086957, "y": -4.782608695652174, "x2": -1.0144927536231894, "y2": -4.492753623188406, "center_x": -1.1594202898550732, "center_y": -4.63768115942029, "value_uncond": 5.1011838206953956e-05}, {"x": -1.0144927536231876, "y": -4.782608695652174, "x2": -0.72463768115942, "y2": -4.492753623188406, "center_x": -0.8695652173913038, "center_y": -4.63768115942029, "value_uncond": 6.0233135962779376e-05}, {"x": -0.72463768115942, "y": -4.782608695652174, "x2": -0.43478260869565233, "y2": -4.492753623188406, "center_x": -0.5797101449275361, "center_y": -4.63768115942029, "value_uncond": 7.046051132351661e-05}, {"x": -0.43478260869565233, "y": -4.782608695652174, "x2": -0.1449275362318847, "y2": -4.492753623188406, "center_x": -0.2898550724637685, "center_y": -4.63768115942029, "value_uncond": 8.165859828436157e-05}, {"x": -0.14492753623188293, "y": -4.782608695652174, "x2": 0.1449275362318847, "y2": -4.492753623188406, "center_x": 8.881784197001252e-16, "center_y": -4.63768115942029, "value_uncond": 9.37570351966054e-05}, {"x": 0.1449275362318847, "y": -4.782608695652174, "x2": 0.43478260869565233, "y2": -4.492753623188406, "center_x": 0.2898550724637685, "center_y": -4.63768115942029, "value_uncond": 0.00010664773220414889}, {"x": 0.43478260869565233, "y": -4.782608695652174, "x2": 0.72463768115942, "y2": -4.492753623188406, "center_x": 0.5797101449275361, "center_y": -4.63768115942029, "value_uncond": 0.00012018359722436608}, {"x": 0.72463768115942, "y": -4.782608695652174, "x2": 1.0144927536231876, "y2": -4.492753623188406, "center_x": 0.8695652173913038, "center_y": -4.63768115942029, "value_uncond": 0.00013417901122291513}, {"x": 1.0144927536231894, "y": -4.782608695652174, "x2": 1.304347826086957, "y2": -4.492753623188406, "center_x": 1.1594202898550732, "center_y": -4.63768115942029, "value_uncond": 0.00014841226398282928}, {"x": 1.304347826086957, "y": -4.782608695652174, "x2": 1.5942028985507246, "y2": -4.492753623188406, "center_x": 1.4492753623188408, "center_y": -4.63768115942029, "value_uncond": 0.00016263005454740363}, {"x": 1.5942028985507246, "y": -4.782608695652174, "x2": 1.8840579710144922, "y2": -4.492753623188406, "center_x": 1.7391304347826084, "center_y": -4.63768115942029, "value_uncond": 0.00017655403184885278}, {"x": 1.884057971014494, "y": -4.782608695652174, "x2": 2.1739130434782616, "y2": -4.492753623188406, "center_x": 2.028985507246378, "center_y": -4.63768115942029, "value_uncond": 0.00018988920938927623}, {"x": 2.1739130434782616, "y": -4.782608695652174, "x2": 2.4637681159420293, "y2": -4.492753623188406, "center_x": 2.3188405797101455, "center_y": -4.63768115942029, "value_uncond": 0.0002023339441467523}, {"x": 2.4637681159420293, "y": -4.782608695652174, "x2": 2.753623188405797, "y2": -4.492753623188406, "center_x": 2.608695652173913, "center_y": -4.63768115942029, "value_uncond": 0.00021359103641479342}, {"x": 2.753623188405797, "y": -4.782608695652174, "x2": 3.0434782608695645, "y2": -4.492753623188406, "center_x": 2.8985507246376807, "center_y": -4.63768115942029, "value_uncond": 0.0002233793965085168}, {"x": 3.0434782608695663, "y": -4.782608695652174, "x2": 3.333333333333334, "y2": -4.492753623188406, "center_x": 3.18840579710145, "center_y": -4.63768115942029, "value_uncond": 0.0002314456475332996}, {"x": 3.333333333333334, "y": -4.782608695652174, "x2": 3.6231884057971016, "y2": -4.492753623188406, "center_x": 3.4782608695652177, "center_y": -4.63768115942029, "value_uncond": 0.00023757499966732003}, {"x": 3.6231884057971016, "y": -4.782608695652174, "x2": 3.913043478260869, "y2": -4.492753623188406, "center_x": 3.7681159420289854, "center_y": -4.63768115942029, "value_uncond": 0.00024160074612066055}, {"x": 3.913043478260871, "y": -4.782608695652174, "x2": 4.202898550724639, "y2": -4.492753623188406, "center_x": 4.057971014492755, "center_y": -4.63768115942029, "value_uncond": 0.00024341179529235364}, {"x": 4.202898550724639, "y": -4.782608695652174, "x2": 4.492753623188406, "y2": -4.492753623188406, "center_x": 4.347826086956522, "center_y": -4.63768115942029, "value_uncond": 0.00024295776423608866}, {"x": 4.492753623188406, "y": -4.782608695652174, "x2": 4.782608695652174, "y2": -4.492753623188406, "center_x": 4.63768115942029, "center_y": -4.63768115942029, "value_uncond": 0.00024025130750437475}, {"x": 4.782608695652174, "y": -4.782608695652174, "x2": 5.0724637681159415, "y2": -4.492753623188406, "center_x": 4.927536231884058, "center_y": -4.63768115942029, "value_uncond": 0.00023536753113217578}, {"x": 5.072463768115943, "y": -4.782608695652174, "x2": 5.362318840579711, "y2": -4.492753623188406, "center_x": 5.217391304347827, "center_y": -4.63768115942029, "value_uncond": 0.00022844052963533022}, {"x": 5.362318840579711, "y": -4.782608695652174, "x2": 5.6521739130434785, "y2": -4.492753623188406, "center_x": 5.507246376811595, "center_y": -4.63768115942029, "value_uncond": 0.00021965726887570545}, {"x": 5.6521739130434785, "y": -4.782608695652174, "x2": 5.942028985507246, "y2": -4.492753623188406, "center_x": 5.797101449275362, "center_y": -4.63768115942029, "value_uncond": 0.00020924920424001095}, {"x": 5.942028985507246, "y": -4.782608695652174, "x2": 6.231884057971014, "y2": -4.492753623188406, "center_x": 6.08695652173913, "center_y": -4.63768115942029, "value_uncond": 0.00019748215839588857}, {"x": 6.2318840579710155, "y": -4.782608695652174, "x2": 6.521739130434783, "y2": -4.492753623188406, "center_x": 6.376811594202899, "center_y": -4.63768115942029, "value_uncond": 0.00018464507569012695}, {"x": 6.521739130434785, "y": -4.782608695652174, "x2": 6.8115942028985526, "y2": -4.492753623188406, "center_x": 6.666666666666669, "center_y": -4.63768115942029, "value_uncond": 0.00017103831490363806}, {"x": 6.811594202898551, "y": -4.782608695652174, "x2": 7.101449275362318, "y2": -4.492753623188406, "center_x": 6.956521739130435, "center_y": -4.63768115942029, "value_uncond": 0.00015696213701197131}, {"x": 7.10144927536232, "y": -4.782608695652174, "x2": 7.391304347826088, "y2": -4.492753623188406, "center_x": 7.246376811594204, "center_y": -4.63768115942029, "value_uncond": 0.00014270599278582075}, {"x": 7.391304347826086, "y": -4.782608695652174, "x2": 7.681159420289854, "y2": -4.492753623188406, "center_x": 7.53623188405797, "center_y": -4.63768115942029, "value_uncond": 0.0001285391234775238}, {"x": 7.681159420289855, "y": -4.782608695652174, "x2": 7.971014492753623, "y2": -4.492753623188406, "center_x": 7.826086956521739, "center_y": -4.63768115942029, "value_uncond": 0.00011470286653516983}, {"x": 7.971014492753625, "y": -4.782608695652174, "x2": 8.260869565217392, "y2": -4.492753623188406, "center_x": 8.115942028985508, "center_y": -4.63768115942029, "value_uncond": 0.00010140491921642922}, {"x": 8.26086956521739, "y": -4.782608695652174, "x2": 8.550724637681158, "y2": -4.492753623188406, "center_x": 8.405797101449274, "center_y": -4.63768115942029, "value_uncond": 8.881566867813159e-05}, {"x": 8.55072463768116, "y": -4.782608695652174, "x2": 8.840579710144928, "y2": -4.492753623188406, "center_x": 8.695652173913043, "center_y": -4.63768115942029, "value_uncond": 7.706655946123317e-05}, {"x": 8.84057971014493, "y": -4.782608695652174, "x2": 9.130434782608697, "y2": -4.492753623188406, "center_x": 8.985507246376812, "center_y": -4.63768115942029, "value_uncond": 6.625034839174487e-05}, {"x": 9.130434782608695, "y": -4.782608695652174, "x2": 9.420289855072463, "y2": -4.492753623188406, "center_x": 9.275362318840578, "center_y": -4.63768115942029, "value_uncond": 5.642300035765128e-05}, {"x": 9.420289855072465, "y": -4.782608695652174, "x2": 9.710144927536232, "y2": -4.492753623188406, "center_x": 9.565217391304348, "center_y": -4.63768115942029, "value_uncond": 4.760691080443206e-05}, {"x": 9.710144927536234, "y": -4.782608695652174, "x2": 10.000000000000002, "y2": -4.492753623188406, "center_x": 9.855072463768117, "center_y": -4.63768115942029, "value_uncond": 3.979510366364091e-05}, {"x": 10.0, "y": -4.782608695652174, "x2": 10.289855072463768, "y2": -4.492753623188406, "center_x": 10.144927536231883, "center_y": -4.63768115942029, "value_uncond": 3.29560455211132e-05}, {"x": -10.0, "y": -4.492753623188405, "x2": -9.710144927536232, "y2": -4.202898550724638, "center_x": -9.855072463768117, "center_y": -4.3478260869565215, "value_uncond": 6.002807632471971e-09}, {"x": -9.710144927536232, "y": -4.492753623188405, "x2": -9.420289855072465, "y2": -4.202898550724638, "center_x": -9.565217391304348, "center_y": -4.3478260869565215, "value_uncond": 9.378739884287616e-09}, {"x": -9.420289855072463, "y": -4.492753623188405, "x2": -9.130434782608695, "y2": -4.202898550724638, "center_x": -9.275362318840578, "center_y": -4.3478260869565215, "value_uncond": 1.451711678380478e-08}, {"x": -9.130434782608695, "y": -4.492753623188405, "x2": -8.840579710144928, "y2": -4.202898550724638, "center_x": -8.985507246376812, "center_y": -4.3478260869565215, "value_uncond": 2.2261891645935698e-08}, {"x": -8.840579710144928, "y": -4.492753623188405, "x2": -8.55072463768116, "y2": -4.202898550724638, "center_x": -8.695652173913043, "center_y": -4.3478260869565215, "value_uncond": 3.382124365638135e-08}, {"x": -8.55072463768116, "y": -4.492753623188405, "x2": -8.260869565217392, "y2": -4.202898550724638, "center_x": -8.405797101449277, "center_y": -4.3478260869565215, "value_uncond": 5.0905287705900384e-08}, {"x": -8.26086956521739, "y": -4.492753623188405, "x2": -7.971014492753623, "y2": -4.202898550724638, "center_x": -8.115942028985508, "center_y": -4.3478260869565215, "value_uncond": 7.59070360829428e-08}, {"x": -7.971014492753623, "y": -4.492753623188405, "x2": -7.681159420289855, "y2": -4.202898550724638, "center_x": -7.826086956521739, "center_y": -4.3478260869565215, "value_uncond": 1.1213649726959334e-07}, {"x": -7.681159420289855, "y": -4.492753623188405, "x2": -7.391304347826088, "y2": -4.202898550724638, "center_x": -7.536231884057972, "center_y": -4.3478260869565215, "value_uncond": 1.641185808684942e-07}, {"x": -7.391304347826087, "y": -4.492753623188405, "x2": -7.101449275362319, "y2": -4.202898550724638, "center_x": -7.246376811594203, "center_y": -4.3478260869565215, "value_uncond": 2.379656842300335e-07}, {"x": -7.101449275362318, "y": -4.492753623188405, "x2": -6.811594202898551, "y2": -4.202898550724638, "center_x": -6.956521739130435, "center_y": -4.3478260869565215, "value_uncond": 3.418351595029395e-07}, {"x": -6.811594202898551, "y": -4.492753623188405, "x2": -6.521739130434783, "y2": -4.202898550724638, "center_x": -6.666666666666667, "center_y": -4.3478260869565215, "value_uncond": 4.86479944072979e-07}, {"x": -6.521739130434782, "y": -4.492753623188405, "x2": -6.231884057971015, "y2": -4.202898550724638, "center_x": -6.3768115942028984, "center_y": -4.3478260869565215, "value_uncond": 6.85897098017273e-07}, {"x": -6.231884057971014, "y": -4.492753623188405, "x2": -5.942028985507246, "y2": -4.202898550724638, "center_x": -6.08695652173913, "center_y": -4.3478260869565215, "value_uncond": 9.580734491734053e-07}, {"x": -5.942028985507246, "y": -4.492753623188405, "x2": -5.6521739130434785, "y2": -4.202898550724638, "center_x": -5.797101449275362, "center_y": -4.3478260869565215, "value_uncond": 1.325819672678501e-06}, {"x": -5.6521739130434785, "y": -4.492753623188405, "x2": -5.362318840579711, "y2": -4.202898550724638, "center_x": -5.507246376811595, "center_y": -4.3478260869565215, "value_uncond": 1.81767371651618e-06}, {"x": -5.36231884057971, "y": -4.492753623188405, "x2": -5.072463768115942, "y2": -4.202898550724638, "center_x": -5.217391304347826, "center_y": -4.3478260869565215, "value_uncond": 2.4688415079817903e-06}, {"x": -5.0724637681159415, "y": -4.492753623188405, "x2": -4.782608695652174, "y2": -4.202898550724638, "center_x": -4.927536231884058, "center_y": -4.3478260869565215, "value_uncond": 3.3221275906039403e-06}, {"x": -4.782608695652174, "y": -4.492753623188405, "x2": -4.492753623188406, "y2": -4.202898550724638, "center_x": -4.63768115942029, "center_y": -4.3478260869565215, "value_uncond": 4.428791350264565e-06}, {"x": -4.492753623188405, "y": -4.492753623188405, "x2": -4.202898550724638, "y2": -4.202898550724638, "center_x": -4.3478260869565215, "center_y": -4.3478260869565215, "value_uncond": 5.8492468106773934e-06}, {"x": -4.202898550724638, "y": -4.492753623188405, "x2": -3.91304347826087, "y2": -4.202898550724638, "center_x": -4.057971014492754, "center_y": -4.3478260869565215, "value_uncond": 7.653507077953004e-06}, {"x": -3.913043478260869, "y": -4.492753623188405, "x2": -3.6231884057971016, "y2": -4.202898550724638, "center_x": -3.7681159420289854, "center_y": -4.3478260869565215, "value_uncond": 9.921260294568287e-06}, {"x": -3.6231884057971016, "y": -4.492753623188405, "x2": -3.333333333333334, "y2": -4.202898550724638, "center_x": -3.4782608695652177, "center_y": -4.3478260869565215, "value_uncond": 1.2741454692988741e-05}, {"x": -3.333333333333333, "y": -4.492753623188405, "x2": -3.0434782608695654, "y2": -4.202898550724638, "center_x": -3.1884057971014492, "center_y": -4.3478260869565215, "value_uncond": 1.621126850961822e-05}, {"x": -3.0434782608695645, "y": -4.492753623188405, "x2": -2.753623188405797, "y2": -4.202898550724638, "center_x": -2.8985507246376807, "center_y": -4.3478260869565215, "value_uncond": 2.0434348626731224e-05}, {"x": -2.753623188405797, "y": -4.492753623188405, "x2": -2.4637681159420293, "y2": -4.202898550724638, "center_x": -2.608695652173913, "center_y": -4.3478260869565215, "value_uncond": 2.551822206681418e-05}, {"x": -2.4637681159420284, "y": -4.492753623188405, "x2": -2.1739130434782608, "y2": -4.202898550724638, "center_x": -2.3188405797101446, "center_y": -4.3478260869565215, "value_uncond": 3.157081846080717e-05}, {"x": -2.1739130434782608, "y": -4.492753623188405, "x2": -1.8840579710144931, "y2": -4.202898550724638, "center_x": -2.028985507246377, "center_y": -4.3478260869565215, "value_uncond": 3.869608995530632e-05}, {"x": -1.8840579710144922, "y": -4.492753623188405, "x2": -1.5942028985507246, "y2": -4.202898550724638, "center_x": -1.7391304347826084, "center_y": -4.3478260869565215, "value_uncond": 4.698877699526274e-05}, {"x": -1.5942028985507246, "y": -4.492753623188405, "x2": -1.304347826086957, "y2": -4.202898550724638, "center_x": -1.4492753623188408, "center_y": -4.3478260869565215, "value_uncond": 5.652844170681153e-05}, {"x": -1.304347826086957, "y": -4.492753623188405, "x2": -1.0144927536231894, "y2": -4.202898550724638, "center_x": -1.1594202898550732, "center_y": -4.3478260869565215, "value_uncond": 6.737297116537058e-05}, {"x": -1.0144927536231876, "y": -4.492753623188405, "x2": -0.72463768115942, "y2": -4.202898550724638, "center_x": -0.8695652173913038, "center_y": -4.3478260869565215, "value_uncond": 7.955183492813199e-05}, {"x": -0.72463768115942, "y": -4.492753623188405, "x2": -0.43478260869565233, "y2": -4.202898550724638, "center_x": -0.5797101449275361, "center_y": -4.3478260869565215, "value_uncond": 9.305945765838754e-05}, {"x": -0.43478260869565233, "y": -4.492753623188405, "x2": -0.1449275362318847, "y2": -4.202898550724638, "center_x": -0.2898550724637685, "center_y": -4.3478260869565215, "value_uncond": 0.00010784913033906096}, {"x": -0.14492753623188293, "y": -4.492753623188405, "x2": 0.1449275362318847, "y2": -4.202898550724638, "center_x": 8.881784197001252e-16, "center_y": -4.3478260869565215, "value_uncond": 0.0001238279240835204}, {"x": 0.1449275362318847, "y": -4.492753623188405, "x2": 0.43478260869565233, "y2": -4.202898550724638, "center_x": 0.2898550724637685, "center_y": -4.3478260869565215, "value_uncond": 0.0001408530811513238}, {"x": 0.43478260869565233, "y": -4.492753623188405, "x2": 0.72463768115942, "y2": -4.202898550724638, "center_x": 0.5797101449275361, "center_y": -4.3478260869565215, "value_uncond": 0.00015873033231027375}, {"x": 0.72463768115942, "y": -4.492753623188405, "x2": 1.0144927536231876, "y2": -4.202898550724638, "center_x": 0.8695652173913038, "center_y": -4.3478260869565215, "value_uncond": 0.00017721452454710887}, {"x": 1.0144927536231894, "y": -4.492753623188405, "x2": 1.304347826086957, "y2": -4.202898550724638, "center_x": 1.1594202898550732, "center_y": -4.3478260869565215, "value_uncond": 0.0001960128380658796}, {"x": 1.304347826086957, "y": -4.492753623188405, "x2": 1.5942028985507246, "y2": -4.202898550724638, "center_x": 1.4492753623188408, "center_y": -4.3478260869565215, "value_uncond": 0.0002147907301672421}, {"x": 1.5942028985507246, "y": -4.492753623188405, "x2": 1.8840579710144922, "y2": -4.202898550724638, "center_x": 1.7391304347826084, "center_y": -4.3478260869565215, "value_uncond": 0.00023318057366654825}, {"x": 1.884057971014494, "y": -4.492753623188405, "x2": 2.1739130434782616, "y2": -4.202898550724638, "center_x": 2.028985507246378, "center_y": -4.3478260869565215, "value_uncond": 0.0002507927704329367}, {"x": 2.1739130434782616, "y": -4.492753623188405, "x2": 2.4637681159420293, "y2": -4.202898550724638, "center_x": 2.3188405797101455, "center_y": -4.3478260869565215, "value_uncond": 0.0002672289308507321}, {"x": 2.4637681159420293, "y": -4.492753623188405, "x2": 2.753623188405797, "y2": -4.202898550724638, "center_x": 2.608695652173913, "center_y": -4.3478260869565215, "value_uncond": 0.0002820965337334932}, {"x": 2.753623188405797, "y": -4.492753623188405, "x2": 3.0434782608695645, "y2": -4.202898550724638, "center_x": 2.8985507246376807, "center_y": -4.3478260869565215, "value_uncond": 0.000295024334917117}, {"x": 3.0434782608695663, "y": -4.492753623188405, "x2": 3.333333333333334, "y2": -4.202898550724638, "center_x": 3.18840579710145, "center_y": -4.3478260869565215, "value_uncond": 0.00030567769140861566}, {"x": 3.333333333333334, "y": -4.492753623188405, "x2": 3.6231884057971016, "y2": -4.202898550724638, "center_x": 3.4782608695652177, "center_y": -4.3478260869565215, "value_uncond": 0.0003137729233999119}, {"x": 3.6231884057971016, "y": -4.492753623188405, "x2": 3.913043478260869, "y2": -4.202898550724638, "center_x": 3.7681159420289854, "center_y": -4.3478260869565215, "value_uncond": 0.00031908985588565455}, {"x": 3.913043478260871, "y": -4.492753623188405, "x2": 4.202898550724639, "y2": -4.202898550724638, "center_x": 4.057971014492755, "center_y": -4.3478260869565215, "value_uncond": 0.0003214817666246586}, {"x": 4.202898550724639, "y": -4.492753623188405, "x2": 4.492753623188406, "y2": -4.202898550724638, "center_x": 4.347826086956522, "center_y": -4.3478260869565215, "value_uncond": 0.0003208821132434606}, {"x": 4.492753623188406, "y": -4.492753623188405, "x2": 4.782608695652174, "y2": -4.202898550724638, "center_x": 4.63768115942029, "center_y": -4.3478260869565215, "value_uncond": 0.00031730760901551403}, {"x": 4.782608695652174, "y": -4.492753623188405, "x2": 5.0724637681159415, "y2": -4.202898550724638, "center_x": 4.927536231884058, "center_y": -4.3478260869565215, "value_uncond": 0.0003108574488905761}, {"x": 5.072463768115943, "y": -4.492753623188405, "x2": 5.362318840579711, "y2": -4.202898550724638, "center_x": 5.217391304347827, "center_y": -4.3478260869565215, "value_uncond": 0.00030170873579742915}, {"x": 5.362318840579711, "y": -4.492753623188405, "x2": 5.6521739130434785, "y2": -4.202898550724638, "center_x": 5.507246376811595, "center_y": -4.3478260869565215, "value_uncond": 0.0002901084015476537}, {"x": 5.6521739130434785, "y": -4.492753623188405, "x2": 5.942028985507246, "y2": -4.202898550724638, "center_x": 5.797101449275362, "center_y": -4.3478260869565215, "value_uncond": 0.0002763621366955009}, {"x": 5.942028985507246, "y": -4.492753623188405, "x2": 6.231884057971014, "y2": -4.202898550724638, "center_x": 6.08695652173913, "center_y": -4.3478260869565215, "value_uncond": 0.00026082102176564175}, {"x": 6.2318840579710155, "y": -4.492753623188405, "x2": 6.521739130434783, "y2": -4.202898550724638, "center_x": 6.376811594202899, "center_y": -4.3478260869565215, "value_uncond": 0.00024386667482613364}, {"x": 6.521739130434785, "y": -4.492753623188405, "x2": 6.8115942028985526, "y2": -4.202898550724638, "center_x": 6.666666666666669, "center_y": -4.3478260869565215, "value_uncond": 0.00022589578935435225}, {"x": 6.811594202898551, "y": -4.492753623188405, "x2": 7.101449275362318, "y2": -4.202898550724638, "center_x": 6.956521739130435, "center_y": -4.3478260869565215, "value_uncond": 0.00020730492965299356}, {"x": 7.10144927536232, "y": -4.492753623188405, "x2": 7.391304347826088, "y2": -4.202898550724638, "center_x": 7.246376811594204, "center_y": -4.3478260869565215, "value_uncond": 0.00018847638264041263}, {"x": 7.391304347826086, "y": -4.492753623188405, "x2": 7.681159420289854, "y2": -4.202898550724638, "center_x": 7.53623188405797, "center_y": -4.3478260869565215, "value_uncond": 0.0001697657438757553}, {"x": 7.681159420289855, "y": -4.492753623188405, "x2": 7.971014492753623, "y2": -4.202898550724638, "center_x": 7.826086956521739, "center_y": -4.3478260869565215, "value_uncond": 0.00015149175546875064}, {"x": 7.971014492753625, "y": -4.492753623188405, "x2": 8.260869565217392, "y2": -4.202898550724638, "center_x": 8.115942028985508, "center_y": -4.3478260869565215, "value_uncond": 0.00013392872985047388}, {"x": 8.26086956521739, "y": -4.492753623188405, "x2": 8.550724637681158, "y2": -4.202898550724638, "center_x": 8.405797101449274, "center_y": -4.3478260869565215, "value_uncond": 0.00011730170280492166}, {"x": 8.55072463768116, "y": -4.492753623188405, "x2": 8.840579710144928, "y2": -4.202898550724638, "center_x": 8.695652173913043, "center_y": -4.3478260869565215, "value_uncond": 0.00010178427735403919}, {"x": 8.84057971014493, "y": -4.492753623188405, "x2": 9.130434782608697, "y2": -4.202898550724638, "center_x": 8.985507246376812, "center_y": -4.3478260869565215, "value_uncond": 8.74989604135519e-05}, {"x": 9.130434782608695, "y": -4.492753623188405, "x2": 9.420289855072463, "y2": -4.202898550724638, "center_x": 9.275362318840578, "center_y": -4.3478260869565215, "value_uncond": 7.451966660635891e-05}, {"x": 9.420289855072465, "y": -4.492753623188405, "x2": 9.710144927536232, "y2": -4.202898550724638, "center_x": 9.565217391304348, "center_y": -4.3478260869565215, "value_uncond": 6.287597431574483e-05}, {"x": 9.710144927536234, "y": -4.492753623188405, "x2": 10.000000000000002, "y2": -4.202898550724638, "center_x": 9.855072463768117, "center_y": -4.3478260869565215, "value_uncond": 5.25586700243223e-05}, {"x": 10.0, "y": -4.492753623188405, "x2": 10.289855072463768, "y2": -4.202898550724638, "center_x": 10.144927536231883, "center_y": -4.3478260869565215, "value_uncond": 4.3526106540421027e-05}, {"x": -10.0, "y": -4.202898550724638, "x2": -9.710144927536232, "y2": -3.91304347826087, "center_x": -9.855072463768117, "center_y": -4.057971014492754, "value_uncond": 7.85443531273968e-09}, {"x": -9.710144927536232, "y": -4.202898550724638, "x2": -9.420289855072465, "y2": -3.91304347826087, "center_x": -9.565217391304348, "center_y": -4.057971014492754, "value_uncond": 1.2271708548123759e-08}, {"x": -9.420289855072463, "y": -4.202898550724638, "x2": -9.130434782608695, "y2": -3.91304347826087, "center_x": -9.275362318840578, "center_y": -4.057971014492754, "value_uncond": 1.8995070588148614e-08}, {"x": -9.130434782608695, "y": -4.202898550724638, "x2": -8.840579710144928, "y2": -3.91304347826087, "center_x": -8.985507246376812, "center_y": -4.057971014492754, "value_uncond": 2.912880081752954e-08}, {"x": -8.840579710144928, "y": -4.202898550724638, "x2": -8.55072463768116, "y2": -3.91304347826087, "center_x": -8.695652173913043, "center_y": -4.057971014492754, "value_uncond": 4.425375370325845e-08}, {"x": -8.55072463768116, "y": -4.202898550724638, "x2": -8.260869565217392, "y2": -3.91304347826087, "center_x": -8.405797101449277, "center_y": -4.057971014492754, "value_uncond": 6.660754664192793e-08}, {"x": -8.26086956521739, "y": -4.202898550724638, "x2": -7.971014492753623, "y2": -3.91304347826087, "center_x": -8.115942028985508, "center_y": -4.057971014492754, "value_uncond": 9.932134114545186e-08}, {"x": -7.971014492753623, "y": -4.202898550724638, "x2": -7.681159420289855, "y2": -3.91304347826087, "center_x": -7.826086956521739, "center_y": -4.057971014492754, "value_uncond": 1.467261518154846e-07}, {"x": -7.681159420289855, "y": -4.202898550724638, "x2": -7.391304347826088, "y2": -3.91304347826087, "center_x": -7.536231884057972, "center_y": -4.057971014492754, "value_uncond": 2.1474264310538774e-07}, {"x": -7.391304347826087, "y": -4.202898550724638, "x2": -7.101449275362319, "y2": -3.91304347826087, "center_x": -7.246376811594203, "center_y": -4.057971014492754, "value_uncond": 3.113686441201083e-07}, {"x": -7.101449275362318, "y": -4.202898550724638, "x2": -6.811594202898551, "y2": -3.91304347826087, "center_x": -6.956521739130435, "center_y": -4.057971014492754, "value_uncond": 4.4727772607802706e-07}, {"x": -6.811594202898551, "y": -4.202898550724638, "x2": -6.521739130434783, "y2": -3.91304347826087, "center_x": -6.666666666666667, "center_y": -4.057971014492754, "value_uncond": 6.365396803650244e-07}, {"x": -6.521739130434782, "y": -4.202898550724638, "x2": -6.231884057971015, "y2": -3.91304347826087, "center_x": -6.3768115942028984, "center_y": -4.057971014492754, "value_uncond": 8.974691040289142e-07}, {"x": -6.231884057971014, "y": -4.202898550724638, "x2": -5.942028985507246, "y2": -3.91304347826087, "center_x": -6.08695652173913, "center_y": -4.057971014492754, "value_uncond": 1.2536010467300358e-06}, {"x": -5.942028985507246, "y": -4.202898550724638, "x2": -5.6521739130434785, "y2": -3.91304347826087, "center_x": -5.797101449275362, "center_y": -4.057971014492754, "value_uncond": 1.7347823706825448e-06}, {"x": -5.6521739130434785, "y": -4.202898550724638, "x2": -5.362318840579711, "y2": -3.91304347826087, "center_x": -5.507246376811595, "center_y": -4.057971014492754, "value_uncond": 2.3783538470920915e-06}, {"x": -5.36231884057971, "y": -4.202898550724638, "x2": -5.072463768115942, "y2": -3.91304347826087, "center_x": -5.217391304347826, "center_y": -4.057971014492754, "value_uncond": 3.230381033194009e-06}, {"x": -5.0724637681159415, "y": -4.202898550724638, "x2": -4.782608695652174, "y2": -3.91304347826087, "center_x": -4.927536231884058, "center_y": -4.057971014492754, "value_uncond": 4.346871973693597e-06}, {"x": -4.782608695652174, "y": -4.202898550724638, "x2": -4.492753623188406, "y2": -3.91304347826087, "center_x": -4.63768115942029, "center_y": -4.057971014492754, "value_uncond": 5.794897538628808e-06}, {"x": -4.492753623188405, "y": -4.202898550724638, "x2": -4.202898550724638, "y2": -3.91304347826087, "center_x": -4.3478260869565215, "center_y": -4.057971014492754, "value_uncond": 7.653507077953004e-06}, {"x": -4.202898550724638, "y": -4.202898550724638, "x2": -3.91304347826087, "y2": -3.91304347826087, "center_x": -4.057971014492754, "center_y": -4.057971014492754, "value_uncond": 1.0014309959591713e-05}, {"x": -3.913043478260869, "y": -4.202898550724638, "x2": -3.6231884057971016, "y2": -3.91304347826087, "center_x": -3.7681159420289854, "center_y": -4.057971014492754, "value_uncond": 1.2981574952194378e-05}, {"x": -3.6231884057971016, "y": -4.202898550724638, "x2": -3.333333333333334, "y2": -3.91304347826087, "center_x": -3.4782608695652177, "center_y": -4.057971014492754, "value_uncond": 1.667168728428361e-05}, {"x": -3.333333333333333, "y": -4.202898550724638, "x2": -3.0434782608695654, "y2": -3.91304347826087, "center_x": -3.1884057971014492, "center_y": -4.057971014492754, "value_uncond": 2.1211800817580984e-05}, {"x": -3.0434782608695645, "y": -4.202898550724638, "x2": -2.753623188405797, "y2": -3.91304347826087, "center_x": -2.8985507246376807, "center_y": -4.057971014492754, "value_uncond": 2.6737533379948934e-05}, {"x": -2.753623188405797, "y": -4.202898550724638, "x2": -2.4637681159420293, "y2": -3.91304347826087, "center_x": -2.608695652173913, "center_y": -4.057971014492754, "value_uncond": 3.33895798085704e-05}, {"x": -2.4637681159420284, "y": -4.202898550724638, "x2": -2.1739130434782608, "y2": -3.91304347826087, "center_x": -2.3188405797101446, "center_y": -4.057971014492754, "value_uncond": 4.130916173779552e-05}, {"x": -2.1739130434782608, "y": -4.202898550724638, "x2": -1.8840579710144931, "y2": -3.91304347826087, "center_x": -2.028985507246377, "center_y": -4.057971014492754, "value_uncond": 5.063229642172422e-05}, {"x": -1.8840579710144922, "y": -4.202898550724638, "x2": -1.5942028985507246, "y2": -3.91304347826087, "center_x": -1.7391304347826084, "center_y": -4.057971014492754, "value_uncond": 6.148294796880874e-05}, {"x": -1.5942028985507246, "y": -4.202898550724638, "x2": -1.304347826086957, "y2": -3.91304347826087, "center_x": -1.4492753623188408, "center_y": -4.057971014492754, "value_uncond": 7.396522026032139e-05}, {"x": -1.304347826086957, "y": -4.202898550724638, "x2": -1.0144927536231894, "y2": -3.91304347826087, "center_x": -1.1594202898550732, "center_y": -4.057971014492754, "value_uncond": 8.815485623475879e-05}, {"x": -1.0144927536231876, "y": -4.202898550724638, "x2": -0.72463768115942, "y2": -3.91304347826087, "center_x": -0.8695652173913038, "center_y": -4.057971014492754, "value_uncond": 0.0001040904156369658}, {"x": -0.72463768115942, "y": -4.202898550724638, "x2": -0.43478260869565233, "y2": -3.91304347826087, "center_x": -0.5797101449275361, "center_y": -4.057971014492754, "value_uncond": 0.00012176460336035191}, {"x": -0.43478260869565233, "y": -4.202898550724638, "x2": -0.1449275362318847, "y2": -3.91304347826087, "center_x": -0.2898550724637685, "center_y": -4.057971014492754, "value_uncond": 0.0001411163025116883}, {"x": -0.14492753623188293, "y": -4.202898550724638, "x2": 0.1449275362318847, "y2": -3.91304347826087, "center_x": 8.881784197001252e-16, "center_y": -4.057971014492754, "value_uncond": 0.00016202391933461542}, {"x": 0.1449275362318847, "y": -4.202898550724638, "x2": 0.43478260869565233, "y2": -3.91304347826087, "center_x": 0.2898550724637685, "center_y": -4.057971014492754, "value_uncond": 0.00018430066099712087}, {"x": 0.43478260869565233, "y": -4.202898550724638, "x2": 0.72463768115942, "y2": -3.91304347826087, "center_x": 0.5797101449275361, "center_y": -4.057971014492754, "value_uncond": 0.00020769233392663476}, {"x": 0.72463768115942, "y": -4.202898550724638, "x2": 1.0144927536231876, "y2": -3.91304347826087, "center_x": 0.8695652173913038, "center_y": -4.057971014492754, "value_uncond": 0.00023187816514453103}, {"x": 1.0144927536231894, "y": -4.202898550724638, "x2": 1.304347826086957, "y2": -3.91304347826087, "center_x": 1.1594202898550732, "center_y": -4.057971014492754, "value_uncond": 0.0002564750115807015}, {"x": 1.304347826086957, "y": -4.202898550724638, "x2": 1.5942028985507246, "y2": -3.91304347826087, "center_x": 1.4492753623188408, "center_y": -4.057971014492754, "value_uncond": 0.0002810451374034776}, {"x": 1.5942028985507246, "y": -4.202898550724638, "x2": 1.8840579710144922, "y2": -3.91304347826087, "center_x": 1.7391304347826084, "center_y": -4.057971014492754, "value_uncond": 0.00030510751704652234}, {"x": 1.884057971014494, "y": -4.202898550724638, "x2": 2.1739130434782616, "y2": -3.91304347826087, "center_x": 2.028985507246378, "center_y": -4.057971014492754, "value_uncond": 0.000328152376833221}, {"x": 2.1739130434782616, "y": -4.202898550724638, "x2": 2.4637681159420293, "y2": -3.91304347826087, "center_x": 2.3188405797101455, "center_y": -4.057971014492754, "value_uncond": 0.00034965843977834024}, {"x": 2.4637681159420293, "y": -4.202898550724638, "x2": 2.753623188405797, "y2": -3.91304347826087, "center_x": 2.608695652173913, "center_y": -4.057971014492754, "value_uncond": 0.0003691121075031647}, {"x": 2.753623188405797, "y": -4.202898550724638, "x2": 3.0434782608695645, "y2": -3.91304347826087, "center_x": 2.8985507246376807, "center_y": -4.057971014492754, "value_uncond": 0.0003860276217674322}, {"x": 3.0434782608695663, "y": -4.202898550724638, "x2": 3.333333333333334, "y2": -3.91304347826087, "center_x": 3.18840579710145, "center_y": -4.057971014492754, "value_uncond": 0.0003999671155092253}, {"x": 3.333333333333334, "y": -4.202898550724638, "x2": 3.6231884057971016, "y2": -3.91304347826087, "center_x": 3.4782608695652177, "center_y": -4.057971014492754, "value_uncond": 0.0004105594049694614}, {"x": 3.6231884057971016, "y": -4.202898550724638, "x2": 3.913043478260869, "y2": -3.91304347826087, "center_x": 3.7681159420289854, "center_y": -4.057971014492754, "value_uncond": 0.00041751639990056063}, {"x": 3.913043478260871, "y": -4.202898550724638, "x2": 4.202898550724639, "y2": -3.91304347826087, "center_x": 4.057971014492755, "center_y": -4.057971014492754, "value_uncond": 0.0004206461200787862}, {"x": 4.202898550724639, "y": -4.202898550724638, "x2": 4.492753623188406, "y2": -3.91304347826087, "center_x": 4.347826086956522, "center_y": -4.057971014492754, "value_uncond": 0.0004198614974519994}, {"x": 4.492753623188406, "y": -4.202898550724638, "x2": 4.782608695652174, "y2": -3.91304347826087, "center_x": 4.63768115942029, "center_y": -4.057971014492754, "value_uncond": 0.0004151844006745436}, {"x": 4.782608695652174, "y": -4.202898550724638, "x2": 5.0724637681159415, "y2": -3.91304347826087, "center_x": 4.927536231884058, "center_y": -4.057971014492754, "value_uncond": 0.00040674462239744533}, {"x": 5.072463768115943, "y": -4.202898550724638, "x2": 5.362318840579711, "y2": -3.91304347826087, "center_x": 5.217391304347827, "center_y": -4.057971014492754, "value_uncond": 0.0003947738947672235}, {"x": 5.362318840579711, "y": -4.202898550724638, "x2": 5.6521739130434785, "y2": -3.91304347826087, "center_x": 5.507246376811595, "center_y": -4.057971014492754, "value_uncond": 0.0003795953182494388}, {"x": 5.6521739130434785, "y": -4.202898550724638, "x2": 5.942028985507246, "y2": -3.91304347826087, "center_x": 5.797101449275362, "center_y": -4.057971014492754, "value_uncond": 0.00036160887679011775}, {"x": 5.942028985507246, "y": -4.202898550724638, "x2": 6.231884057971014, "y2": -3.91304347826087, "center_x": 6.08695652173913, "center_y": -4.057971014492754, "value_uncond": 0.0003412739453083699}, {"x": 6.2318840579710155, "y": -4.202898550724638, "x2": 6.521739130434783, "y2": -3.91304347826087, "center_x": 6.376811594202899, "center_y": -4.057971014492754, "value_uncond": 0.0003190898558856549}, {"x": 6.521739130434785, "y": -4.202898550724638, "x2": 6.8115942028985526, "y2": -3.91304347826087, "center_x": 6.666666666666669, "center_y": -4.057971014492754, "value_uncond": 0.00029557566617762447}, {"x": 6.811594202898551, "y": -4.202898550724638, "x2": 7.101449275362318, "y2": -3.91304347826087, "center_x": 6.956521739130435, "center_y": -4.057971014492754, "value_uncond": 0.0002712502648199919}, {"x": 7.10144927536232, "y": -4.202898550724638, "x2": 7.391304347826088, "y2": -3.91304347826087, "center_x": 7.246376811594204, "center_y": -4.057971014492754, "value_uncond": 0.0002466138590582607}, {"x": 7.391304347826086, "y": -4.202898550724638, "x2": 7.681159420289854, "y2": -3.91304347826087, "center_x": 7.53623188405797, "center_y": -4.057971014492754, "value_uncond": 0.00022213173155478084}, {"x": 7.681159420289855, "y": -4.202898550724638, "x2": 7.971014492753623, "y2": -3.91304347826087, "center_x": 7.826086956521739, "center_y": -4.057971014492754, "value_uncond": 0.0001982209436974218}, {"x": 7.971014492753625, "y": -4.202898550724638, "x2": 8.260869565217392, "y2": -3.91304347826087, "center_x": 8.115942028985508, "center_y": -4.057971014492754, "value_uncond": 0.00017524042240459845}, {"x": 8.26086956521739, "y": -4.202898550724638, "x2": 8.550724637681158, "y2": -3.91304347826087, "center_x": 8.405797101449274, "center_y": -4.057971014492754, "value_uncond": 0.00015348461805964338}, {"x": 8.55072463768116, "y": -4.202898550724638, "x2": 8.840579710144928, "y2": -3.91304347826087, "center_x": 8.695652173913043, "center_y": -4.057971014492754, "value_uncond": 0.0001331806833200212}, {"x": 8.84057971014493, "y": -4.202898550724638, "x2": 9.130434782608697, "y2": -3.91304347826087, "center_x": 8.985507246376812, "center_y": -4.057971014492754, "value_uncond": 0.00011448891361810995}, {"x": 9.130434782608695, "y": -4.202898550724638, "x2": 9.420289855072463, "y2": -3.91304347826087, "center_x": 9.275362318840578, "center_y": -4.057971014492754, "value_uncond": 9.750602330155659e-05}, {"x": 9.420289855072465, "y": -4.202898550724638, "x2": 9.710144927536232, "y2": -3.91304347826087, "center_x": 9.565217391304348, "center_y": -4.057971014492754, "value_uncond": 8.227071450982501e-05}, {"x": 9.710144927536234, "y": -4.202898550724638, "x2": 10.000000000000002, "y2": -3.91304347826087, "center_x": 9.855072463768117, "center_y": -4.057971014492754, "value_uncond": 6.877093172144017e-05}, {"x": 10.0, "y": -4.202898550724638, "x2": 10.289855072463768, "y2": -3.91304347826087, "center_x": 10.144927536231883, "center_y": -4.057971014492754, "value_uncond": 5.695218124062533e-05}, {"x": -10.0, "y": -3.913043478260869, "x2": -9.710144927536232, "y2": -3.6231884057971016, "center_x": -9.855072463768117, "center_y": -3.7681159420289854, "value_uncond": 1.0181724065953475e-08}, {"x": -9.710144927536232, "y": -3.913043478260869, "x2": -9.420289855072465, "y2": -3.6231884057971016, "center_x": -9.565217391304348, "center_y": -3.7681159420289854, "value_uncond": 1.5907846367024987e-08}, {"x": -9.420289855072463, "y": -3.913043478260869, "x2": -9.130434782608695, "y2": -3.6231884057971016, "center_x": -9.275362318840578, "center_y": -3.7681159420289854, "value_uncond": 2.4623357331384997e-08}, {"x": -9.130434782608695, "y": -3.913043478260869, "x2": -8.840579710144928, "y2": -3.6231884057971016, "center_x": -8.985507246376812, "center_y": -3.7681159420289854, "value_uncond": 3.775973707685375e-08}, {"x": -8.840579710144928, "y": -3.913043478260869, "x2": -8.55072463768116, "y2": -3.6231884057971016, "center_x": -8.695652173913043, "center_y": -3.7681159420289854, "value_uncond": 5.736625118783737e-08}, {"x": -8.55072463768116, "y": -3.913043478260869, "x2": -8.260869565217392, "y2": -3.6231884057971016, "center_x": -8.405797101449277, "center_y": -3.7681159420289854, "value_uncond": 8.634352867076865e-08}, {"x": -8.26086956521739, "y": -3.913043478260869, "x2": -7.971014492753623, "y2": -3.6231884057971016, "center_x": -8.115942028985508, "center_y": -3.7681159420289854, "value_uncond": 1.287505019951189e-07}, {"x": -7.971014492753623, "y": -3.913043478260869, "x2": -7.681159420289855, "y2": -3.6231884057971016, "center_x": -7.826086956521739, "center_y": -3.7681159420289854, "value_uncond": 1.902014761801341e-07}, {"x": -7.681159420289855, "y": -3.913043478260869, "x2": -7.391304347826088, "y2": -3.6231884057971016, "center_x": -7.536231884057972, "center_y": -3.7681159420289854, "value_uncond": 2.783714233085887e-07}, {"x": -7.391304347826087, "y": -3.913043478260869, "x2": -7.101449275362319, "y2": -3.6231884057971016, "center_x": -7.246376811594203, "center_y": -3.7681159420289854, "value_uncond": 4.036279491765524e-07}, {"x": -7.101449275362318, "y": -3.913043478260869, "x2": -6.811594202898551, "y2": -3.6231884057971016, "center_x": -6.956521739130435, "center_y": -3.7681159420289854, "value_uncond": 5.798072307485984e-07}, {"x": -6.811594202898551, "y": -3.913043478260869, "x2": -6.521739130434783, "y2": -3.6231884057971016, "center_x": -6.666666666666667, "center_y": -3.7681159420289854, "value_uncond": 8.25147973654423e-07}, {"x": -6.521739130434782, "y": -3.913043478260869, "x2": -6.231884057971015, "y2": -3.6231884057971016, "center_x": -6.3768115942028984, "center_y": -3.7681159420289854, "value_uncond": 1.1633914356796153e-06}, {"x": -6.231884057971014, "y": -3.913043478260869, "x2": -5.942028985507246, "y2": -3.6231884057971016, "center_x": -6.08695652173913, "center_y": -3.7681159420289854, "value_uncond": 1.625046160338616e-06}, {"x": -5.942028985507246, "y": -3.913043478260869, "x2": -5.6521739130434785, "y2": -3.6231884057971016, "center_x": -5.797101449275362, "center_y": -3.7681159420289854, "value_uncond": 2.248802709485845e-06}, {"x": -5.6521739130434785, "y": -3.913043478260869, "x2": -5.362318840579711, "y2": -3.6231884057971016, "center_x": -5.507246376811595, "center_y": -3.7681159420289854, "value_uncond": 3.0830660178731517e-06}, {"x": -5.36231884057971, "y": -3.913043478260869, "x2": -5.072463768115942, "y2": -3.6231884057971016, "center_x": -5.217391304347826, "center_y": -3.7681159420289854, "value_uncond": 4.187550982121279e-06}, {"x": -5.0724637681159415, "y": -3.913043478260869, "x2": -4.782608695652174, "y2": -3.6231884057971016, "center_x": -4.927536231884058, "center_y": -3.7681159420289854, "value_uncond": 5.634860970130909e-06}, {"x": -4.782608695652174, "y": -3.913043478260869, "x2": -4.492753623188406, "y2": -3.6231884057971016, "center_x": -4.63768115942029, "center_y": -3.7681159420289854, "value_uncond": 7.511940117845491e-06}, {"x": -4.492753623188405, "y": -3.913043478260869, "x2": -4.202898550724638, "y2": -3.6231884057971016, "center_x": -4.3478260869565215, "center_y": -3.7681159420289854, "value_uncond": 9.921260294568287e-06}, {"x": -4.202898550724638, "y": -3.913043478260869, "x2": -3.91304347826087, "y2": -3.6231884057971016, "center_x": -4.057971014492754, "center_y": -3.7681159420289854, "value_uncond": 1.2981574952194378e-05}, {"x": -3.913043478260869, "y": -3.913043478260869, "x2": -3.6231884057971016, "y2": -3.6231884057971016, "center_x": -3.7681159420289854, "center_y": -3.7681159420289854, "value_uncond": 1.6828047955319243e-05}, {"x": -3.6231884057971016, "y": -3.913043478260869, "x2": -3.333333333333334, "y2": -3.6231884057971016, "center_x": -3.4782608695652177, "center_y": -3.7681159420289854, "value_uncond": 2.1611549765661293e-05}, {"x": -3.333333333333333, "y": -3.913043478260869, "x2": -3.0434782608695654, "y2": -3.6231884057971016, "center_x": -3.1884057971014492, "center_y": -3.7681159420289854, "value_uncond": 2.7496910250985696e-05}, {"x": -3.0434782608695645, "y": -3.913043478260869, "x2": -2.753623188405797, "y2": -3.6231884057971016, "center_x": -2.8985507246376807, "center_y": -3.7681159420289854, "value_uncond": 3.4659931139454876e-05}, {"x": -2.753623188405797, "y": -3.913043478260869, "x2": -2.4637681159420293, "y2": -3.6231884057971016, "center_x": -2.608695652173913, "center_y": -3.7681159420289854, "value_uncond": 4.328299549906327e-05}, {"x": -2.4637681159420284, "y": -3.913043478260869, "x2": -2.1739130434782608, "y2": -3.6231884057971016, "center_x": -2.3188405797101446, "center_y": -3.7681159420289854, "value_uncond": 5.354916928628562e-05}, {"x": -2.1739130434782608, "y": -3.913043478260869, "x2": -1.8840579710144931, "y2": -3.6231884057971016, "center_x": -2.028985507246377, "center_y": -3.7681159420289854, "value_uncond": 6.563477200651124e-05}, {"x": -1.8840579710144922, "y": -3.913043478260869, "x2": -1.5942028985507246, "y2": -3.6231884057971016, "center_x": -1.7391304347826084, "center_y": -3.7681159420289854, "value_uncond": 7.97004986423945e-05}, {"x": -1.5942028985507246, "y": -3.913043478260869, "x2": -1.304347826086957, "y2": -3.6231884057971016, "center_x": -1.4492753623188408, "center_y": -3.7681159420289854, "value_uncond": 9.588129931461353e-05}, {"x": -1.304347826086957, "y": -3.913043478260869, "x2": -1.0144927536231894, "y2": -3.6231884057971016, "center_x": -1.1594202898550732, "center_y": -3.7681159420289854, "value_uncond": 0.0001142753597830617}, {"x": -1.0144927536231876, "y": -3.913043478260869, "x2": -0.72463768115942, "y2": -3.6231884057971016, "center_x": -0.8695652173913038, "center_y": -3.7681159420289854, "value_uncond": 0.0001349326651410567}, {"x": -0.72463768115942, "y": -3.913043478260869, "x2": -0.43478260869565233, "y2": -3.6231884057971016, "center_x": -0.5797101449275361, "center_y": -3.7681159420289854, "value_uncond": 0.0001578437587237487}, {"x": -0.43478260869565233, "y": -3.913043478260869, "x2": -0.1449275362318847, "y2": -3.6231884057971016, "center_x": -0.2898550724637685, "center_y": -3.7681159420289854, "value_uncond": 0.00018292941455016692}, {"x": -0.14492753623188293, "y": -3.913043478260869, "x2": 0.1449275362318847, "y2": -3.6231884057971016, "center_x": 8.881784197001252e-16, "center_y": -3.7681159420289854, "value_uncond": 0.00021003201033098035}, {"x": 0.1449275362318847, "y": -3.913043478260869, "x2": 0.43478260869565233, "y2": -3.6231884057971016, "center_x": 0.2898550724637685, "center_y": -3.7681159420289854, "value_uncond": 0.00023890940605263985}, {"x": 0.43478260869565233, "y": -3.913043478260869, "x2": 0.72463768115942, "y2": -3.6231884057971016, "center_x": 0.5797101449275361, "center_y": -3.7681159420289854, "value_uncond": 0.0002692320899536763}, {"x": 0.72463768115942, "y": -3.913043478260869, "x2": 1.0144927536231876, "y2": -3.6231884057971016, "center_x": 0.8695652173913038, "center_y": -3.7681159420289854, "value_uncond": 0.00030058424322266115}, {"x": 1.0144927536231894, "y": -3.913043478260869, "x2": 1.304347826086957, "y2": -3.6231884057971016, "center_x": 1.1594202898550732, "center_y": -3.7681159420289854, "value_uncond": 0.0003324691965431773}, {"x": 1.304347826086957, "y": -3.913043478260869, "x2": 1.5942028985507246, "y2": -3.6231884057971016, "center_x": 1.4492753623188408, "center_y": -3.7681159420289854, "value_uncond": 0.00036431951186597375}, {"x": 1.5942028985507246, "y": -3.913043478260869, "x2": 1.8840579710144922, "y2": -3.6231884057971016, "center_x": 1.7391304347826084, "center_y": -3.7681159420289854, "value_uncond": 0.00039551163455088756}, {"x": 1.884057971014494, "y": -3.913043478260869, "x2": 2.1739130434782616, "y2": -3.6231884057971016, "center_x": 2.028985507246378, "center_y": -3.7681159420289854, "value_uncond": 0.00042538474371077597}, {"x": 2.1739130434782616, "y": -3.913043478260869, "x2": 2.4637681159420293, "y2": -3.6231884057971016, "center_x": 2.3188405797101455, "center_y": -3.7681159420289854, "value_uncond": 0.00045326310669087074}, {"x": 2.4637681159420293, "y": -3.913043478260869, "x2": 2.753623188405797, "y2": -3.6231884057971016, "center_x": 2.608695652173913, "center_y": -3.7681159420289854, "value_uncond": 0.0004784809446331656}, {"x": 2.753623188405797, "y": -3.913043478260869, "x2": 3.0434782608695645, "y2": -3.6231884057971016, "center_x": 2.8985507246376807, "center_y": -3.7681159420289854, "value_uncond": 0.0005004085679204973}, {"x": 3.0434782608695663, "y": -3.913043478260869, "x2": 3.333333333333334, "y2": -3.6231884057971016, "center_x": 3.18840579710145, "center_y": -3.7681159420289854, "value_uncond": 0.0005184783683895163}, {"x": 3.333333333333334, "y": -3.913043478260869, "x2": 3.6231884057971016, "y2": -3.6231884057971016, "center_x": 3.4782608695652177, "center_y": -3.7681159420289854, "value_uncond": 0.0005322091796084853}, {"x": 3.6231884057971016, "y": -3.913043478260869, "x2": 3.913043478260869, "y2": -3.6231884057971016, "center_x": 3.7681159420289854, "center_y": -3.7681159420289854, "value_uncond": 0.0005412275494716628}, {"x": 3.913043478260871, "y": -3.913043478260869, "x2": 4.202898550724639, "y2": -3.6231884057971016, "center_x": 4.057971014492755, "center_y": -3.7681159420289854, "value_uncond": 0.0005452846135366828}, {"x": 4.202898550724639, "y": -3.913043478260869, "x2": 4.492753623188406, "y2": -3.6231884057971016, "center_x": 4.347826086956522, "center_y": -3.7681159420289854, "value_uncond": 0.0005442675052706195}, {"x": 4.492753623188406, "y": -3.913043478260869, "x2": 4.782608695652174, "y2": -3.6231884057971016, "center_x": 4.63768115942029, "center_y": -3.7681159420289854, "value_uncond": 0.000538204573064586}, {"x": 4.782608695652174, "y": -3.913043478260869, "x2": 5.0724637681159415, "y2": -3.6231884057971016, "center_x": 4.927536231884058, "center_y": -3.7681159420289854, "value_uncond": 0.0005272640674554986}, {"x": 5.072463768115943, "y": -3.913043478260869, "x2": 5.362318840579711, "y2": -3.6231884057971016, "center_x": 5.217391304347827, "center_y": -3.7681159420289854, "value_uncond": 0.0005117463834022716}, {"x": 5.362318840579711, "y": -3.913043478260869, "x2": 5.6521739130434785, "y2": -3.6231884057971016, "center_x": 5.507246376811595, "center_y": -3.7681159420289854, "value_uncond": 0.0004920703568434459}, {"x": 5.6521739130434785, "y": -3.913043478260869, "x2": 5.942028985507246, "y2": -3.6231884057971016, "center_x": 5.797101449275362, "center_y": -3.7681159420289854, "value_uncond": 0.0004687544879648525}, {"x": 5.942028985507246, "y": -3.913043478260869, "x2": 6.231884057971014, "y2": -3.6231884057971016, "center_x": 6.08695652173913, "center_y": -3.7681159420289854, "value_uncond": 0.00044239426561870794}, {"x": 6.2318840579710155, "y": -3.913043478260869, "x2": 6.521739130434783, "y2": -3.6231884057971016, "center_x": 6.376811594202899, "center_y": -3.7681159420289854, "value_uncond": 0.0004136369752263406}, {"x": 6.521739130434785, "y": -3.913043478260869, "x2": 6.8115942028985526, "y2": -3.6231884057971016, "center_x": 6.666666666666669, "center_y": -3.7681159420289854, "value_uncond": 0.00038315547252005096}, {"x": 6.811594202898551, "y": -3.913043478260869, "x2": 7.101449275362318, "y2": -3.6231884057971016, "center_x": 6.956521739130435, "center_y": -3.7681159420289854, "value_uncond": 0.000351622394131174}, {"x": 7.10144927536232, "y": -3.913043478260869, "x2": 7.391304347826088, "y2": -3.6231884057971016, "center_x": 7.246376811594204, "center_y": -3.7681159420289854, "value_uncond": 0.00031968615995836775}, {"x": 7.391304347826086, "y": -3.913043478260869, "x2": 7.681159420289854, "y2": -3.6231884057971016, "center_x": 7.53623188405797, "center_y": -3.7681159420289854, "value_uncond": 0.0002879499170761312}, {"x": 7.681159420289855, "y": -3.913043478260869, "x2": 7.971014492753623, "y2": -3.6231884057971016, "center_x": 7.826086956521739, "center_y": -3.7681159420289854, "value_uncond": 0.00025695430320070645}, {"x": 7.971014492753625, "y": -3.913043478260869, "x2": 8.260869565217392, "y2": -3.6231884057971016, "center_x": 8.115942028985508, "center_y": -3.7681159420289854, "value_uncond": 0.00022716459619073407}, {"x": 8.26086956521739, "y": -3.913043478260869, "x2": 8.550724637681158, "y2": -3.6231884057971016, "center_x": 8.405797101449274, "center_y": -3.7681159420289854, "value_uncond": 0.00019896249281177862}, {"x": 8.55072463768116, "y": -3.913043478260869, "x2": 8.840579710144928, "y2": -3.6231884057971016, "center_x": 8.695652173913043, "center_y": -3.7681159420289854, "value_uncond": 0.00017264245161968284}, {"x": 8.84057971014493, "y": -3.913043478260869, "x2": 9.130434782608697, "y2": -3.6231884057971016, "center_x": 8.985507246376812, "center_y": -3.7681159420289854, "value_uncond": 0.00014841226398282917}, {"x": 9.130434782608695, "y": -3.913043478260869, "x2": 9.420289855072463, "y2": -3.6231884057971016, "center_x": 9.275362318840578, "center_y": -3.7681159420289854, "value_uncond": 0.00012639730095104576}, {"x": 9.420289855072465, "y": -3.913043478260869, "x2": 9.710144927536232, "y2": -3.6231884057971016, "center_x": 9.565217391304348, "center_y": -3.7681159420289854, "value_uncond": 0.00010664773220414889}, {"x": 9.710144927536234, "y": -3.913043478260869, "x2": 10.000000000000002, "y2": -3.6231884057971016, "center_x": 9.855072463768117, "center_y": -3.7681159420289854, "value_uncond": 8.914793013961349e-05}, {"x": 10.0, "y": -3.913043478260869, "x2": 10.289855072463768, "y2": -3.6231884057971016, "center_x": 10.144927536231883, "center_y": -3.7681159420289854, "value_uncond": 7.382725444382787e-05}, {"x": -10.0, "y": -3.6231884057971016, "x2": -9.710144927536232, "y2": -3.333333333333334, "center_x": -9.855072463768117, "center_y": -3.4782608695652177, "value_uncond": 1.3075957290817584e-08}, {"x": -9.710144927536232, "y": -3.6231884057971016, "x2": -9.420289855072465, "y2": -3.333333333333334, "center_x": -9.565217391304348, "center_y": -3.4782608695652177, "value_uncond": 2.0429773812047134e-08}, {"x": -9.420289855072463, "y": -3.6231884057971016, "x2": -9.130434782608695, "y2": -3.333333333333334, "center_x": -9.275362318840578, "center_y": -3.4782608695652177, "value_uncond": 3.16227356718863e-08}, {"x": -9.130434782608695, "y": -3.6231884057971016, "x2": -8.840579710144928, "y2": -3.333333333333334, "center_x": -8.985507246376812, "center_y": -3.4782608695652177, "value_uncond": 4.8493232200278026e-08}, {"x": -8.840579710144928, "y": -3.6231884057971016, "x2": -8.55072463768116, "y2": -3.333333333333334, "center_x": -8.695652173913043, "center_y": -3.4782608695652177, "value_uncond": 7.36730484550044e-08}, {"x": -8.55072463768116, "y": -3.6231884057971016, "x2": -8.260869565217392, "y2": -3.333333333333334, "center_x": -8.405797101449277, "center_y": -3.4782608695652177, "value_uncond": 1.1088733950400234e-07}, {"x": -8.26086956521739, "y": -3.6231884057971016, "x2": -7.971014492753623, "y2": -3.333333333333334, "center_x": -8.115942028985508, "center_y": -3.4782608695652177, "value_uncond": 1.6534882052923152e-07}, {"x": -7.971014492753623, "y": -3.6231884057971016, "x2": -7.681159420289855, "y2": -3.333333333333334, "center_x": -7.826086956521739, "center_y": -3.4782608695652177, "value_uncond": 2.442677058493814e-07}, {"x": -7.681159420289855, "y": -3.6231884057971016, "x2": -7.391304347826088, "y2": -3.333333333333334, "center_x": -7.536231884057972, "center_y": -3.4782608695652177, "value_uncond": 3.575006372780089e-07}, {"x": -7.391304347826087, "y": -3.6231884057971016, "x2": -7.101449275362319, "y2": -3.333333333333334, "center_x": -7.246376811594203, "center_y": -3.4782608695652177, "value_uncond": 5.183622921447384e-07}, {"x": -7.101449275362318, "y": -3.6231884057971016, "x2": -6.811594202898551, "y2": -3.333333333333334, "center_x": -6.956521739130435, "center_y": -3.4782608695652177, "value_uncond": 7.446218869285287e-07}, {"x": -6.811594202898551, "y": -3.6231884057971016, "x2": -6.521739130434783, "y2": -3.333333333333334, "center_x": -6.666666666666667, "center_y": -3.4782608695652177, "value_uncond": 1.0597026193421523e-06}, {"x": -6.521739130434782, "y": -3.6231884057971016, "x2": -6.231884057971015, "y2": -3.333333333333334, "center_x": -6.3768115942028984, "center_y": -3.4782608695652177, "value_uncond": 1.4940943819444437e-06}, {"x": -6.231884057971014, "y": -3.6231884057971016, "x2": -5.942028985507246, "y2": -3.333333333333334, "center_x": -6.08695652173913, "center_y": -3.4782608695652177, "value_uncond": 2.0869780059399955e-06}, {"x": -5.942028985507246, "y": -3.6231884057971016, "x2": -5.6521739130434785, "y2": -3.333333333333334, "center_x": -5.797101449275362, "center_y": -3.4782608695652177, "value_uncond": 2.8880421423950747e-06}, {"x": -5.6521739130434785, "y": -3.6231884057971016, "x2": -5.362318840579711, "y2": -3.333333333333334, "center_x": -5.507246376811595, "center_y": -3.4782608695652177, "value_uncond": 3.959451200341003e-06}, {"x": -5.36231884057971, "y": -3.6231884057971016, "x2": -5.072463768115942, "y2": -3.333333333333334, "center_x": -5.217391304347826, "center_y": -3.4782608695652177, "value_uncond": 5.377894494159164e-06}, {"x": -5.0724637681159415, "y": -3.6231884057971016, "x2": -4.782608695652174, "y2": -3.333333333333334, "center_x": -4.927536231884058, "center_y": -3.4782608695652177, "value_uncond": 7.2366134564094345e-06}, {"x": -4.782608695652174, "y": -3.6231884057971016, "x2": -4.492753623188406, "y2": -3.333333333333334, "center_x": -4.63768115942029, "center_y": -3.4782608695652177, "value_uncond": 9.647266761096261e-06}, {"x": -4.492753623188405, "y": -3.6231884057971016, "x2": -4.202898550724638, "y2": -3.333333333333334, "center_x": -4.3478260869565215, "center_y": -3.4782608695652177, "value_uncond": 1.2741454692988741e-05}, {"x": -4.202898550724638, "y": -3.6231884057971016, "x2": -3.91304347826087, "y2": -3.333333333333334, "center_x": -4.057971014492754, "center_y": -3.4782608695652177, "value_uncond": 1.667168728428361e-05}, {"x": -3.913043478260869, "y": -3.6231884057971016, "x2": -3.6231884057971016, "y2": -3.333333333333334, "center_x": -3.7681159420289854, "center_y": -3.4782608695652177, "value_uncond": 2.1611549765661293e-05}, {"x": -3.6231884057971016, "y": -3.6231884057971016, "x2": -3.333333333333334, "y2": -3.333333333333334, "center_x": -3.4782608695652177, "center_y": -3.4782608695652177, "value_uncond": 2.775479868572752e-05}, {"x": -3.333333333333333, "y": -3.6231884057971016, "x2": -3.0434782608695654, "y2": -3.333333333333334, "center_x": -3.1884057971014492, "center_y": -3.4782608695652177, "value_uncond": 3.5313118067461914e-05}, {"x": -3.0434782608695645, "y": -3.6231884057971016, "x2": -2.753623188405797, "y2": -3.333333333333334, "center_x": -2.8985507246376807, "center_y": -3.4782608695652177, "value_uncond": 4.451228262978362e-05}, {"x": -2.753623188405797, "y": -3.6231884057971016, "x2": -2.4637681159420293, "y2": -3.333333333333334, "center_x": -2.608695652173913, "center_y": -3.4782608695652177, "value_uncond": 5.5586519227812194e-05}, {"x": -2.4637681159420284, "y": -3.6231884057971016, "x2": -2.1739130434782608, "y2": -3.333333333333334, "center_x": -2.3188405797101446, "center_y": -3.4782608695652177, "value_uncond": 6.87709317214403e-05}, {"x": -2.1739130434782608, "y": -3.6231884057971016, "x2": -1.8840579710144931, "y2": -3.333333333333334, "center_x": -2.028985507246377, "center_y": -3.4782608695652177, "value_uncond": 8.429195978896527e-05}, {"x": -1.8840579710144922, "y": -3.6231884057971016, "x2": -1.5942028985507246, "y2": -3.333333333333334, "center_x": -1.7391304347826084, "center_y": -3.4782608695652177, "value_uncond": 0.00010235597719542227}, {"x": -1.5942028985507246, "y": -3.6231884057971016, "x2": -1.304347826086957, "y2": -3.333333333333334, "center_x": -1.4492753623188408, "center_y": -3.4782608695652177, "value_uncond": 0.00012313629466922468}, {"x": -1.304347826086957, "y": -3.6231884057971016, "x2": -1.0144927536231894, "y2": -3.333333333333334, "center_x": -1.1594202898550732, "center_y": -3.4782608695652177, "value_uncond": 0.00014675900802623028}, {"x": -1.0144927536231876, "y": -3.6231884057971016, "x2": -0.72463768115942, "y2": -3.333333333333334, "center_x": -0.8695652173913038, "center_y": -3.4782608695652177, "value_uncond": 0.0001732883110062385}, {"x": -0.72463768115942, "y": -3.6231884057971016, "x2": -0.43478260869565233, "y2": -3.333333333333334, "center_x": -0.5797101449275361, "center_y": -3.4782608695652177, "value_uncond": 0.0002027120588148225}, {"x": -0.43478260869565233, "y": -3.6231884057971016, "x2": -0.1449275362318847, "y2": -3.333333333333334, "center_x": -0.2898550724637685, "center_y": -3.4782608695652177, "value_uncond": 0.00023492850487774914}, {"x": -0.14492753623188293, "y": -3.6231884057971016, "x2": 0.1449275362318847, "y2": -3.333333333333334, "center_x": 8.881784197001252e-16, "center_y": -3.4782608695652177, "value_uncond": 0.00026973522155997187}, {"x": 0.1449275362318847, "y": -3.6231884057971016, "x2": 0.43478260869565233, "y2": -3.333333333333334, "center_x": 0.2898550724637685, "center_y": -3.4782608695652177, "value_uncond": 0.0003068212386903227}, {"x": 0.43478260869565233, "y": -3.6231884057971016, "x2": 0.72463768115942, "y2": -3.333333333333334, "center_x": 0.5797101449275361, "center_y": -3.4782608695652177, "value_uncond": 0.00034576337825966737}, {"x": 0.72463768115942, "y": -3.6231884057971016, "x2": 1.0144927536231876, "y2": -3.333333333333334, "center_x": 0.8695652173913038, "center_y": -3.4782608695652177, "value_uncond": 0.0003860276217674317}, {"x": 1.0144927536231894, "y": -3.6231884057971016, "x2": 1.304347826086957, "y2": -3.333333333333334, "center_x": 1.1594202898550732, "center_y": -3.4782608695652177, "value_uncond": 0.0004269761178313679}, {"x": 1.304347826086957, "y": -3.6231884057971016, "x2": 1.5942028985507246, "y2": -3.333333333333334, "center_x": 1.4492753623188408, "center_y": -3.4782608695652177, "value_uncond": 0.0004678801297808369}, {"x": 1.5942028985507246, "y": -3.6231884057971016, "x2": 1.8840579710144922, "y2": -3.333333333333334, "center_x": 1.7391304347826084, "center_y": -3.4782608695652177, "value_uncond": 0.0005079388527825471}, {"x": 1.884057971014494, "y": -3.6231884057971016, "x2": 2.1739130434782616, "y2": -3.333333333333334, "center_x": 2.028985507246378, "center_y": -3.4782608695652177, "value_uncond": 0.000546303622539451}, {"x": 2.1739130434782616, "y": -3.6231884057971016, "x2": 2.4637681159420293, "y2": -3.333333333333334, "center_x": 2.3188405797101455, "center_y": -3.4782608695652177, "value_uncond": 0.0005821066242024599}, {"x": 2.4637681159420293, "y": -3.6231884057971016, "x2": 2.753623188405797, "y2": -3.333333333333334, "center_x": 2.608695652173913, "center_y": -3.4782608695652177, "value_uncond": 0.0006144928261623858}, {"x": 2.753623188405797, "y": -3.6231884057971016, "x2": 3.0434782608695645, "y2": -3.333333333333334, "center_x": 2.8985507246376807, "center_y": -3.4782608695652177, "value_uncond": 0.0006426535446946294}, {"x": 3.0434782608695663, "y": -3.6231884057971016, "x2": 3.333333333333334, "y2": -3.333333333333334, "center_x": 3.18840579710145, "center_y": -3.4782608695652177, "value_uncond": 0.0006658598246582143}, {"x": 3.333333333333334, "y": -3.6231884057971016, "x2": 3.6231884057971016, "y2": -3.333333333333334, "center_x": 3.4782608695652177, "center_y": -3.4782608695652177, "value_uncond": 0.0006834937243695501}, {"x": 3.6231884057971016, "y": -3.6231884057971016, "x2": 3.913043478260869, "y2": -3.333333333333334, "center_x": 3.7681159420289854, "center_y": -3.4782608695652177, "value_uncond": 0.0006950756350950657}, {"x": 3.913043478260871, "y": -3.6231884057971016, "x2": 4.202898550724639, "y2": -3.333333333333334, "center_x": 4.057971014492755, "center_y": -3.4782608695652177, "value_uncond": 0.0007002859507642661}, {"x": 4.202898550724639, "y": -3.6231884057971016, "x2": 4.492753623188406, "y2": -3.333333333333334, "center_x": 4.347826086956522, "center_y": -3.4782608695652177, "value_uncond": 0.0006989797216658312}, {"x": 4.492753623188406, "y": -3.6231884057971016, "x2": 4.782608695652174, "y2": -3.333333333333334, "center_x": 4.63768115942029, "center_y": -3.4782608695652177, "value_uncond": 0.0006911933544386626}, {"x": 4.782608695652174, "y": -3.6231884057971016, "x2": 5.0724637681159415, "y2": -3.333333333333334, "center_x": 4.927536231884058, "center_y": -3.4782608695652177, "value_uncond": 0.0006771429261263549}, {"x": 5.072463768115943, "y": -3.6231884057971016, "x2": 5.362318840579711, "y2": -3.333333333333334, "center_x": 5.217391304347827, "center_y": -3.4782608695652177, "value_uncond": 0.0006572142212608497}, {"x": 5.362318840579711, "y": -3.6231884057971016, "x2": 5.6521739130434785, "y2": -3.333333333333334, "center_x": 5.507246376811595, "center_y": -3.4782608695652177, "value_uncond": 0.000631945133111376}, {"x": 5.6521739130434785, "y": -3.6231884057971016, "x2": 5.942028985507246, "y2": -3.333333333333334, "center_x": 5.797101449275362, "center_y": -3.4782608695652177, "value_uncond": 0.0006020015495218082}, {"x": 5.942028985507246, "y": -3.6231884057971016, "x2": 6.231884057971014, "y2": -3.333333333333334, "center_x": 6.08695652173913, "center_y": -3.4782608695652177, "value_uncond": 0.0005681482316218242}, {"x": 6.2318840579710155, "y": -3.6231884057971016, "x2": 6.521739130434783, "y2": -3.333333333333334, "center_x": 6.376811594202899, "center_y": -3.4782608695652177, "value_uncond": 0.0005312164606825947}, {"x": 6.521739130434785, "y": -3.6231884057971016, "x2": 6.8115942028985526, "y2": -3.333333333333334, "center_x": 6.666666666666669, "center_y": -3.4782608695652177, "value_uncond": 0.000492070356843445}, {"x": 6.811594202898551, "y": -3.6231884057971016, "x2": 7.101449275362318, "y2": -3.333333333333334, "center_x": 6.956521739130435, "center_y": -3.4782608695652177, "value_uncond": 0.0004515737588616033}, {"x": 7.10144927536232, "y": -3.6231884057971016, "x2": 7.391304347826088, "y2": -3.333333333333334, "center_x": 7.246376811594204, "center_y": -3.4782608695652177, "value_uncond": 0.00041055940496946086}, {"x": 7.391304347826086, "y": -3.6231884057971016, "x2": 7.681159420289854, "y2": -3.333333333333334, "center_x": 7.53623188405797, "center_y": -3.4782608695652177, "value_uncond": 0.0003698018914274478}, {"x": 7.681159420289855, "y": -3.6231884057971016, "x2": 7.971014492753623, "y2": -3.333333333333334, "center_x": 7.826086956521739, "center_y": -3.4782608695652177, "value_uncond": 0.00032999553637280677}, {"x": 7.971014492753625, "y": -3.6231884057971016, "x2": 8.260869565217392, "y2": -3.333333333333334, "center_x": 8.115942028985508, "center_y": -3.4782608695652177, "value_uncond": 0.00029173787646716157}, {"x": 8.26086956521739, "y": -3.6231884057971016, "x2": 8.550724637681158, "y2": -3.333333333333334, "center_x": 8.405797101449274, "center_y": -3.4782608695652177, "value_uncond": 0.000255519108711751}, {"x": 8.55072463768116, "y": -3.6231884057971016, "x2": 8.840579710144928, "y2": -3.333333333333334, "center_x": 8.695652173913043, "center_y": -3.4782608695652177, "value_uncond": 0.0002217173937673012}, {"x": 8.84057971014493, "y": -3.6231884057971016, "x2": 9.130434782608697, "y2": -3.333333333333334, "center_x": 8.985507246376812, "center_y": -3.4782608695652177, "value_uncond": 0.00019059958929374977}, {"x": 9.130434782608695, "y": -3.6231884057971016, "x2": 9.420289855072463, "y2": -3.333333333333334, "center_x": 9.275362318840578, "center_y": -3.4782608695652177, "value_uncond": 0.00016232670402423812}, {"x": 9.420289855072465, "y": -3.6231884057971016, "x2": 9.710144927536232, "y2": -3.333333333333334, "center_x": 9.565217391304348, "center_y": -3.4782608695652177, "value_uncond": 0.00013696316875519372}, {"x": 9.710144927536234, "y": -3.6231884057971016, "x2": 10.000000000000002, "y2": -3.333333333333334, "center_x": 9.855072463768117, "center_y": -3.4782608695652177, "value_uncond": 0.00011448891361810975}, {"x": 10.0, "y": -3.6231884057971016, "x2": 10.289855072463768, "y2": -3.333333333333334, "center_x": 10.144927536231883, "center_y": -3.4782608695652177, "value_uncond": 9.48132182479661e-05}, {"x": -10.0, "y": -3.333333333333333, "x2": -9.710144927536232, "y2": -3.0434782608695654, "center_x": -9.855072463768117, "center_y": -3.1884057971014492, "value_uncond": 1.663686445303529e-08}, {"x": -9.710144927536232, "y": -3.333333333333333, "x2": -9.420289855072465, "y2": -3.0434782608695654, "center_x": -9.565217391304348, "center_y": -3.1884057971014492, "value_uncond": 2.5993307423532162e-08}, {"x": -9.420289855072463, "y": -3.333333333333333, "x2": -9.130434782608695, "y2": -3.0434782608695654, "center_x": -9.275362318840578, "center_y": -3.1884057971014492, "value_uncond": 4.0234390133469245e-08}, {"x": -9.130434782608695, "y": -3.333333333333333, "x2": -8.840579710144928, "y2": -3.0434782608695654, "center_x": -8.985507246376812, "center_y": -3.1884057971014492, "value_uncond": 6.169914087836146e-08}, {"x": -8.840579710144928, "y": -3.333333333333333, "x2": -8.55072463768116, "y2": -3.0434782608695654, "center_x": -8.695652173913043, "center_y": -3.1884057971014492, "value_uncond": 9.373604499676155e-08}, {"x": -8.55072463768116, "y": -3.333333333333333, "x2": -8.260869565217392, "y2": -3.0434782608695654, "center_x": -8.405797101449277, "center_y": -3.1884057971014492, "value_uncond": 1.41084709582318e-07}, {"x": -8.26086956521739, "y": -3.333333333333333, "x2": -7.971014492753623, "y2": -3.0434782608695654, "center_x": -8.115942028985508, "center_y": -3.1884057971014492, "value_uncond": 2.1037740132004386e-07}, {"x": -7.971014492753623, "y": -3.333333333333333, "x2": -7.681159420289855, "y2": -3.0434782608695654, "center_x": -7.826086956521739, "center_y": -3.1884057971014492, "value_uncond": 3.1078785454001425e-07}, {"x": -7.681159420289855, "y": -3.333333333333333, "x2": -7.391304347826088, "y2": -3.0434782608695654, "center_x": -7.536231884057972, "center_y": -3.1884057971014492, "value_uncond": 4.548569188463666e-07}, {"x": -7.391304347826087, "y": -3.333333333333333, "x2": -7.101449275362319, "y2": -3.0434782608695654, "center_x": -7.246376811594203, "center_y": -3.1884057971014492, "value_uncond": 6.595251881124395e-07}, {"x": -7.101449275362318, "y": -3.333333333333333, "x2": -6.811594202898551, "y2": -3.0434782608695654, "center_x": -6.956521739130435, "center_y": -3.1884057971014492, "value_uncond": 9.474008767444301e-07}, {"x": -6.811594202898551, "y": -3.333333333333333, "x2": -6.521739130434783, "y2": -3.0434782608695654, "center_x": -6.666666666666667, "center_y": -3.1884057971014492, "value_uncond": 1.3482858995648702e-06}, {"x": -6.521739130434782, "y": -3.333333333333333, "x2": -6.231884057971015, "y2": -3.0434782608695654, "center_x": -6.3768115942028984, "center_y": -3.1884057971014492, "value_uncond": 1.9009733023452697e-06}, {"x": -6.231884057971014, "y": -3.333333333333333, "x2": -5.942028985507246, "y2": -3.0434782608695654, "center_x": -6.08695652173913, "center_y": -3.1884057971014492, "value_uncond": 2.6553138274374587e-06}, {"x": -5.942028985507246, "y": -3.333333333333333, "x2": -5.6521739130434785, "y2": -3.0434782608695654, "center_x": -5.797101449275362, "center_y": -3.1884057971014492, "value_uncond": 3.674527576762701e-06}, {"x": -5.6521739130434785, "y": -3.333333333333333, "x2": -5.362318840579711, "y2": -3.0434782608695654, "center_x": -5.507246376811595, "center_y": -3.1884057971014492, "value_uncond": 5.037707868221586e-06}, {"x": -5.36231884057971, "y": -3.333333333333333, "x2": -5.072463768115942, "y2": -3.0434782608695654, "center_x": -5.217391304347826, "center_y": -3.1884057971014492, "value_uncond": 6.842428416685089e-06}, {"x": -5.0724637681159415, "y": -3.333333333333333, "x2": -4.782608695652174, "y2": -3.0434782608695654, "center_x": -4.927536231884058, "center_y": -3.1884057971014492, "value_uncond": 9.207322607105823e-06}, {"x": -4.782608695652174, "y": -3.333333333333333, "x2": -4.492753623188406, "y2": -3.0434782608695654, "center_x": -4.63768115942029, "center_y": -3.1884057971014492, "value_uncond": 1.227445653706291e-05}, {"x": -4.492753623188405, "y": -3.333333333333333, "x2": -4.202898550724638, "y2": -3.0434782608695654, "center_x": -4.3478260869565215, "center_y": -3.1884057971014492, "value_uncond": 1.621126850961822e-05}, {"x": -4.202898550724638, "y": -3.333333333333333, "x2": -3.91304347826087, "y2": -3.0434782608695654, "center_x": -4.057971014492754, "center_y": -3.1884057971014492, "value_uncond": 2.1211800817580984e-05}, {"x": -3.913043478260869, "y": -3.333333333333333, "x2": -3.6231884057971016, "y2": -3.0434782608695654, "center_x": -3.7681159420289854, "center_y": -3.1884057971014492, "value_uncond": 2.7496910250985696e-05}, {"x": -3.6231884057971016, "y": -3.333333333333333, "x2": -3.333333333333334, "y2": -3.0434782608695654, "center_x": -3.4782608695652177, "center_y": -3.1884057971014492, "value_uncond": 3.5313118067461914e-05}, {"x": -3.333333333333333, "y": -3.333333333333333, "x2": -3.0434782608695654, "y2": -3.0434782608695654, "center_x": -3.1884057971014492, "center_y": -3.1884057971014492, "value_uncond": 4.492975509448617e-05}, {"x": -3.0434782608695645, "y": -3.333333333333333, "x2": -2.753623188405797, "y2": -3.0434782608695654, "center_x": -2.8985507246376807, "center_y": -3.1884057971014492, "value_uncond": 5.6634080101113846e-05}, {"x": -2.753623188405797, "y": -3.333333333333333, "x2": -2.4637681159420293, "y2": -3.0434782608695654, "center_x": -2.608695652173913, "center_y": -3.1884057971014492, "value_uncond": 7.072410571871243e-05}, {"x": -2.4637681159420284, "y": -3.333333333333333, "x2": -2.1739130434782608, "y2": -3.0434782608695654, "center_x": -2.3188405797101446, "center_y": -3.1884057971014492, "value_uncond": 8.749896041355213e-05}, {"x": -2.1739130434782608, "y": -3.333333333333333, "x2": -1.8840579710144931, "y2": -3.0434782608695654, "center_x": -2.028985507246377, "center_y": -3.1884057971014492, "value_uncond": 0.00010724674899898157}, {"x": -1.8840579710144922, "y": -3.333333333333333, "x2": -1.5942028985507246, "y2": -3.0434782608695654, "center_x": -1.7391304347826084, "center_y": -3.1884057971014492, "value_uncond": 0.0001302300459297184}, {"x": -1.5942028985507246, "y": -3.333333333333333, "x2": -1.304347826086957, "y2": -3.0434782608695654, "center_x": -1.4492753623188408, "center_y": -3.1884057971014492, "value_uncond": 0.00015666935873976176}, {"x": -1.304347826086957, "y": -3.333333333333333, "x2": -1.0144927536231894, "y2": -3.0434782608695654, "center_x": -1.1594202898550732, "center_y": -3.1884057971014492, "value_uncond": 0.00018672512225998927}, {"x": -1.0144927536231876, "y": -3.333333333333333, "x2": -0.72463768115942, "y2": -3.0434782608695654, "center_x": -0.8695652173913038, "center_y": -3.1884057971014492, "value_uncond": 0.00022047901177611992}, {"x": -0.72463768115942, "y": -3.333333333333333, "x2": -0.43478260869565233, "y2": -3.0434782608695654, "center_x": -0.5797101449275361, "center_y": -3.1884057971014492, "value_uncond": 0.0002579155751652848}, {"x": -0.43478260869565233, "y": -3.333333333333333, "x2": -0.1449275362318847, "y2": -3.0434782608695654, "center_x": -0.2898550724637685, "center_y": -3.1884057971014492, "value_uncond": 0.00029890535774004296}, {"x": -0.14492753623188293, "y": -3.333333333333333, "x2": 0.1449275362318847, "y2": -3.0434782608695654, "center_x": 8.881784197001252e-16, "center_y": -3.1884057971014492, "value_uncond": 0.0003431908058046359}, {"x": 0.1449275362318847, "y": -3.333333333333333, "x2": 0.43478260869565233, "y2": -3.0434782608695654, "center_x": 0.2898550724637685, "center_y": -3.1884057971014492, "value_uncond": 0.0003903762643051674}, {"x": 0.43478260869565233, "y": -3.333333333333333, "x2": 0.72463768115942, "y2": -3.0434782608695654, "center_x": 0.5797101449275361, "center_y": -3.1884057971014492, "value_uncond": 0.0004399233133752442}, {"x": 0.72463768115942, "y": -3.333333333333333, "x2": 1.0144927536231876, "y2": -3.0434782608695654, "center_x": 0.8695652173913038, "center_y": -3.1884057971014492, "value_uncond": 0.000491152508044845}, {"x": 1.0144927536231894, "y": -3.333333333333333, "x2": 1.304347826086957, "y2": -3.0434782608695654, "center_x": 1.1594202898550732, "center_y": -3.1884057971014492, "value_uncond": 0.0005432522941958565}, {"x": 1.304347826086957, "y": -3.333333333333333, "x2": 1.5942028985507246, "y2": -3.0434782608695654, "center_x": 1.4492753623188408, "center_y": -3.1884057971014492, "value_uncond": 0.0005952954821058184}, {"x": 1.5942028985507246, "y": -3.333333333333333, "x2": 1.8840579710144922, "y2": -3.0434782608695654, "center_x": 1.7391304347826084, "center_y": -3.1884057971014492, "value_uncond": 0.0006462631879432444}, {"x": 1.884057971014494, "y": -3.333333333333333, "x2": 2.1739130434782616, "y2": -3.0434782608695654, "center_x": 2.028985507246378, "center_y": -3.1884057971014492, "value_uncond": 0.0006950756350950666}, {"x": 2.1739130434782616, "y": -3.333333333333333, "x2": 2.4637681159420293, "y2": -3.0434782608695654, "center_x": 2.3188405797101455, "center_y": -3.1884057971014492, "value_uncond": 0.0007406286812263477}, {"x": 2.4637681159420293, "y": -3.333333333333333, "x2": 2.753623188405797, "y2": -3.0434782608695654, "center_x": 2.608695652173913, "center_y": -3.1884057971014492, "value_uncond": 0.0007818344484350156}, {"x": 2.753623188405797, "y": -3.333333333333333, "x2": 3.0434782608695645, "y2": -3.0434782608695654, "center_x": 2.8985507246376807, "center_y": -3.1884057971014492, "value_uncond": 0.0008176640283809533}, {"x": 3.0434782608695663, "y": -3.333333333333333, "x2": 3.333333333333334, "y2": -3.0434782608695654, "center_x": 3.18840579710145, "center_y": -3.1884057971014492, "value_uncond": 0.000847189953376477}, {"x": 3.333333333333334, "y": -3.333333333333333, "x2": 3.6231884057971016, "y2": -3.0434782608695654, "center_x": 3.4782608695652177, "center_y": -3.1884057971014492, "value_uncond": 0.000869626000906391}, {"x": 3.6231884057971016, "y": -3.333333333333333, "x2": 3.913043478260869, "y2": -3.0434782608695654, "center_x": 3.7681159420289854, "center_y": -3.1884057971014492, "value_uncond": 0.0008843619528953801}, {"x": 3.913043478260871, "y": -3.333333333333333, "x2": 4.202898550724639, "y2": -3.0434782608695654, "center_x": 4.057971014492755, "center_y": -3.1884057971014492, "value_uncond": 0.000890991166620855}, {"x": 4.202898550724639, "y": -3.333333333333333, "x2": 4.492753623188406, "y2": -3.0434782608695654, "center_x": 4.347826086956522, "center_y": -3.1884057971014492, "value_uncond": 0.0008893292189735857}, {"x": 4.492753623188406, "y": -3.333333333333333, "x2": 4.782608695652174, "y2": -3.0434782608695654, "center_x": 4.63768115942029, "center_y": -3.1884057971014492, "value_uncond": 0.0008794224310223179}, {"x": 4.782608695652174, "y": -3.333333333333333, "x2": 5.0724637681159415, "y2": -3.0434782608695654, "center_x": 4.927536231884058, "center_y": -3.1884057971014492, "value_uncond": 0.0008615457229435064}, {"x": 5.072463768115943, "y": -3.333333333333333, "x2": 5.362318840579711, "y2": -3.0434782608695654, "center_x": 5.217391304347827, "center_y": -3.1884057971014492, "value_uncond": 0.0008361899379559874}, {"x": 5.362318840579711, "y": -3.333333333333333, "x2": 5.6521739130434785, "y2": -3.0434782608695654, "center_x": 5.507246376811595, "center_y": -3.1884057971014492, "value_uncond": 0.0008040394509939493}, {"x": 5.6521739130434785, "y": -3.333333333333333, "x2": 5.942028985507246, "y2": -3.0434782608695654, "center_x": 5.797101449275362, "center_y": -3.1884057971014492, "value_uncond": 0.0007659414876603125}, {"x": 5.942028985507246, "y": -3.333333333333333, "x2": 6.231884057971014, "y2": -3.0434782608695654, "center_x": 6.08695652173913, "center_y": -3.1884057971014492, "value_uncond": 0.0007228690724893748}, {"x": 6.2318840579710155, "y": -3.333333333333333, "x2": 6.521739130434783, "y2": -3.0434782608695654, "center_x": 6.376811594202899, "center_y": -3.1884057971014492, "value_uncond": 0.0006758798652396703}, {"x": 6.521739130434785, "y": -3.333333333333333, "x2": 6.8115942028985526, "y2": -3.0434782608695654, "center_x": 6.666666666666669, "center_y": -3.1884057971014492, "value_uncond": 0.0006260733073753584}, {"x": 6.811594202898551, "y": -3.333333333333333, "x2": 7.101449275362318, "y2": -3.0434782608695654, "center_x": 6.956521739130435, "center_y": -3.1884057971014492, "value_uncond": 0.0005745484823511837}, {"x": 7.10144927536232, "y": -3.333333333333333, "x2": 7.391304347826088, "y2": -3.0434782608695654, "center_x": 7.246376811594204, "center_y": -3.1884057971014492, "value_uncond": 0.0005223649036535408}, {"x": 7.391304347826086, "y": -3.333333333333333, "x2": 7.681159420289854, "y2": -3.0434782608695654, "center_x": 7.53623188405797, "center_y": -3.1884057971014492, "value_uncond": 0.00047050810929727627}, {"x": 7.681159420289855, "y": -3.333333333333333, "x2": 7.971014492753623, "y2": -3.0434782608695654, "center_x": 7.826086956521739, "center_y": -3.1884057971014492, "value_uncond": 0.0004198614974519994}, {"x": 7.971014492753625, "y": -3.333333333333333, "x2": 8.260869565217392, "y2": -3.0434782608695654, "center_x": 8.115942028985508, "center_y": -3.1884057971014492, "value_uncond": 0.00037118532881786785}, {"x": 8.26086956521739, "y": -3.333333333333333, "x2": 8.550724637681158, "y2": -3.0434782608695654, "center_x": 8.405797101449274, "center_y": -3.1884057971014492, "value_uncond": 0.0003251032931855033}, {"x": 8.55072463768116, "y": -3.333333333333333, "x2": 8.840579710144928, "y2": -3.0434782608695654, "center_x": 8.695652173913043, "center_y": -3.1884057971014492, "value_uncond": 0.0002820965337334934}, {"x": 8.84057971014493, "y": -3.333333333333333, "x2": 9.130434782608697, "y2": -3.0434782608695654, "center_x": 8.985507246376812, "center_y": -3.1884057971014492, "value_uncond": 0.0002425045800746907}, {"x": 9.130434782608695, "y": -3.333333333333333, "x2": 9.420289855072463, "y2": -3.0434782608695654, "center_x": 9.275362318840578, "center_y": -3.1884057971014492, "value_uncond": 0.000206532287609695}, {"x": 9.420289855072465, "y": -3.333333333333333, "x2": 9.710144927536232, "y2": -3.0434782608695654, "center_x": 9.565217391304348, "center_y": -3.1884057971014492, "value_uncond": 0.00017426163323724657}, {"x": 9.710144927536234, "y": -3.333333333333333, "x2": 10.000000000000002, "y2": -3.0434782608695654, "center_x": 9.855072463768117, "center_y": -3.1884057971014492, "value_uncond": 0.00014566708156635937}, {"x": 10.0, "y": -3.333333333333333, "x2": 10.289855072463768, "y2": -3.0434782608695654, "center_x": 10.144927536231883, "center_y": -3.1884057971014492, "value_uncond": 0.00012063320682877794}, {"x": -10.0, "y": -3.0434782608695645, "x2": -9.710144927536232, "y2": -2.753623188405797, "center_x": -9.855072463768117, "center_y": -2.8985507246376807, "value_uncond": 2.097081348614346e-08}, {"x": -9.710144927536232, "y": -3.0434782608695645, "x2": -9.420289855072465, "y2": -2.753623188405797, "center_x": -9.565217391304348, "center_y": -2.8985507246376807, "value_uncond": 3.276463563225292e-08}, {"x": -9.420289855072463, "y": -3.0434782608695645, "x2": -9.130434782608695, "y2": -2.753623188405797, "center_x": -9.275362318840578, "center_y": -2.8985507246376807, "value_uncond": 5.071555962961394e-08}, {"x": -9.130434782608695, "y": -3.0434782608695645, "x2": -8.840579710144928, "y2": -2.753623188405797, "center_x": -8.985507246376812, "center_y": -2.8985507246376807, "value_uncond": 7.777193708994542e-08}, {"x": -8.840579710144928, "y": -3.0434782608695645, "x2": -8.55072463768116, "y2": -2.753623188405797, "center_x": -8.695652173913043, "center_y": -2.8985507246376807, "value_uncond": 1.1815454300928705e-07}, {"x": -8.55072463768116, "y": -3.0434782608695645, "x2": -8.260869565217392, "y2": -2.753623188405797, "center_x": -8.405797101449277, "center_y": -2.8985507246376807, "value_uncond": 1.7783766518923127e-07}, {"x": -8.26086956521739, "y": -3.0434782608695645, "x2": -7.971014492753623, "y2": -2.753623188405797, "center_x": -8.115942028985508, "center_y": -2.8985507246376807, "value_uncond": 2.651812940615314e-07}, {"x": -7.971014492753623, "y": -3.0434782608695645, "x2": -7.681159420289855, "y2": -2.753623188405797, "center_x": -7.826086956521739, "center_y": -2.8985507246376807, "value_uncond": 3.917489470275911e-07}, {"x": -7.681159420289855, "y": -3.0434782608695645, "x2": -7.391304347826088, "y2": -2.753623188405797, "center_x": -7.536231884057972, "center_y": -2.8985507246376807, "value_uncond": 5.733483995698952e-07}, {"x": -7.391304347826087, "y": -3.0434782608695645, "x2": -7.101449275362319, "y2": -2.753623188405797, "center_x": -7.246376811594203, "center_y": -2.8985507246376807, "value_uncond": 8.31333316945809e-07}, {"x": -7.101449275362318, "y": -3.0434782608695645, "x2": -6.811594202898551, "y2": -2.753623188405797, "center_x": -6.956521739130435, "center_y": -2.8985507246376807, "value_uncond": 1.1942014157115696e-06}, {"x": -6.811594202898551, "y": -3.0434782608695645, "x2": -6.521739130434783, "y2": -2.753623188405797, "center_x": -6.666666666666667, "center_y": -2.8985507246376807, "value_uncond": 1.6995180916205377e-06}, {"x": -6.521739130434782, "y": -3.0434782608695645, "x2": -6.231884057971015, "y2": -2.753623188405797, "center_x": -6.3768115942028984, "center_y": -2.8985507246376807, "value_uncond": 2.3961820857624293e-06}, {"x": -6.231884057971014, "y": -3.0434782608695645, "x2": -5.942028985507246, "y2": -2.753623188405797, "center_x": -6.08695652173913, "center_y": -2.8985507246376807, "value_uncond": 3.3470303962360863e-06}, {"x": -5.942028985507246, "y": -3.0434782608695645, "x2": -5.6521739130434785, "y2": -2.753623188405797, "center_x": -5.797101449275362, "center_y": -2.8985507246376807, "value_uncond": 4.631752135717058e-06}, {"x": -5.6521739130434785, "y": -3.0434782608695645, "x2": -5.362318840579711, "y2": -2.753623188405797, "center_x": -5.507246376811595, "center_y": -2.8985507246376807, "value_uncond": 6.350044649361683e-06}, {"x": -5.36231884057971, "y": -3.0434782608695645, "x2": -5.072463768115942, "y2": -2.753623188405797, "center_x": -5.217391304347826, "center_y": -2.8985507246376807, "value_uncond": 8.624899873630453e-06}, {"x": -5.0724637681159415, "y": -3.0434782608695645, "x2": -4.782608695652174, "y2": -2.753623188405797, "center_x": -4.927536231884058, "center_y": -2.8985507246376807, "value_uncond": 1.1605855517151936e-05}, {"x": -4.782608695652174, "y": -3.0434782608695645, "x2": -4.492753623188406, "y2": -2.753623188405797, "center_x": -4.63768115942029, "center_y": -2.8985507246376807, "value_uncond": 1.547198628738956e-05}, {"x": -4.492753623188405, "y": -3.0434782608695645, "x2": -4.202898550724638, "y2": -2.753623188405797, "center_x": -4.3478260869565215, "center_y": -2.8985507246376807, "value_uncond": 2.0434348626731224e-05}, {"x": -4.202898550724638, "y": -3.0434782608695645, "x2": -3.91304347826087, "y2": -2.753623188405797, "center_x": -4.057971014492754, "center_y": -2.8985507246376807, "value_uncond": 2.6737533379948934e-05}, {"x": -3.913043478260869, "y": -3.0434782608695645, "x2": -3.6231884057971016, "y2": -2.753623188405797, "center_x": -3.7681159420289854, "center_y": -2.8985507246376807, "value_uncond": 3.4659931139454876e-05}, {"x": -3.6231884057971016, "y": -3.0434782608695645, "x2": -3.333333333333334, "y2": -2.753623188405797, "center_x": -3.4782608695652177, "center_y": -2.8985507246376807, "value_uncond": 4.451228262978362e-05}, {"x": -3.333333333333333, "y": -3.0434782608695645, "x2": -3.0434782608695654, "y2": -2.753623188405797, "center_x": -3.1884057971014492, "center_y": -2.8985507246376807, "value_uncond": 5.6634080101113846e-05}, {"x": -3.0434782608695645, "y": -3.0434782608695645, "x2": -2.753623188405797, "y2": -2.753623188405797, "center_x": -2.8985507246376807, "center_y": -2.8985507246376807, "value_uncond": 7.138741402338514e-05}, {"x": -2.753623188405797, "y": -3.0434782608695645, "x2": -2.4637681159420293, "y2": -2.753623188405797, "center_x": -2.608695652173913, "center_y": -2.8985507246376807, "value_uncond": 8.914793013961373e-05}, {"x": -2.4637681159420284, "y": -3.0434782608695645, "x2": -2.1739130434782608, "y2": -2.753623188405797, "center_x": -2.3188405797101446, "center_y": -2.8985507246376807, "value_uncond": 0.00011029268070578547}, {"x": -2.1739130434782608, "y": -3.0434782608695645, "x2": -1.8840579710144931, "y2": -2.753623188405797, "center_x": -2.028985507246377, "center_y": -2.8985507246376807, "value_uncond": 0.00013518482263300295}, {"x": -1.8840579710144922, "y": -3.0434782608695645, "x2": -1.5942028985507246, "y2": -2.753623188405797, "center_x": -1.7391304347826084, "center_y": -2.8985507246376807, "value_uncond": 0.0001641553317449651}, {"x": -1.5942028985507246, "y": -3.0434782608695645, "x2": -1.304347826086957, "y2": -2.753623188405797, "center_x": -1.4492753623188408, "center_y": -2.8985507246376807, "value_uncond": 0.00019748215839588876}, {"x": -1.304347826086957, "y": -3.0434782608695645, "x2": -1.0144927536231894, "y2": -2.753623188405797, "center_x": -1.1594202898550732, "center_y": -2.8985507246376807, "value_uncond": 0.000235367531132176}, {"x": -1.0144927536231876, "y": -3.0434782608695645, "x2": -0.72463768115942, "y2": -2.753623188405797, "center_x": -0.8695652173913038, "center_y": -2.8985507246376807, "value_uncond": 0.0002779144018765324}, {"x": -0.72463768115942, "y": -3.0434782608695645, "x2": -0.43478260869565233, "y2": -2.753623188405797, "center_x": -0.5797101449275361, "center_y": -2.8985507246376807, "value_uncond": 0.0003251032931855034}, {"x": -0.43478260869565233, "y": -3.0434782608695645, "x2": -0.1449275362318847, "y2": -2.753623188405797, "center_x": -0.2898550724637685, "center_y": -2.8985507246376807, "value_uncond": 0.00037677102706885516}, {"x": -0.14492753623188293, "y": -3.0434782608695645, "x2": 0.1449275362318847, "y2": -2.753623188405797, "center_x": 8.881784197001252e-16, "center_y": -2.8985507246376807, "value_uncond": 0.0004325929563833926}, {"x": 0.1449275362318847, "y": -3.0434782608695645, "x2": 0.43478260869565233, "y2": -2.753623188405797, "center_x": 0.2898550724637685, "center_y": -2.8985507246376807, "value_uncond": 0.000492070356843446}, {"x": 0.43478260869565233, "y": -3.0434782608695645, "x2": 0.72463768115942, "y2": -2.753623188405797, "center_x": 0.5797101449275361, "center_y": -2.8985507246376807, "value_uncond": 0.0005545245487238045}, {"x": 0.72463768115942, "y": -3.0434782608695645, "x2": 1.0144927536231876, "y2": -2.753623188405797, "center_x": 0.8695652173913038, "center_y": -2.8985507246376807, "value_uncond": 0.0006190990897675365}, {"x": 1.0144927536231894, "y": -3.0434782608695645, "x2": 1.304347826086957, "y2": -2.753623188405797, "center_x": 1.1594202898550732, "center_y": -2.8985507246376807, "value_uncond": 0.0006847710137725129}, {"x": 1.304347826086957, "y": -3.0434782608695645, "x2": 1.5942028985507246, "y2": -2.753623188405797, "center_x": 1.4492753623188408, "center_y": -2.8985507246376807, "value_uncond": 0.0007503715955386884}, {"x": 1.5942028985507246, "y": -3.0434782608695645, "x2": 1.8840579710144922, "y2": -2.753623188405797, "center_x": 1.7391304347826084, "center_y": -2.8985507246376807, "value_uncond": 0.0008146165291889287}, {"x": 1.884057971014494, "y": -3.0434782608695645, "x2": 2.1739130434782616, "y2": -2.753623188405797, "center_x": 2.028985507246378, "center_y": -2.8985507246376807, "value_uncond": 0.0008761447533271222}, {"x": 2.1739130434782616, "y": -3.0434782608695645, "x2": 2.4637681159420293, "y2": -2.753623188405797, "center_x": 2.3188405797101455, "center_y": -2.8985507246376807, "value_uncond": 0.0009335644934976026}, {"x": 2.4637681159420293, "y": -3.0434782608695645, "x2": 2.753623188405797, "y2": -2.753623188405797, "center_x": 2.608695652173913, "center_y": -2.8985507246376807, "value_uncond": 0.0009855044766071462}, {"x": 2.753623188405797, "y": -3.0434782608695645, "x2": 3.0434782608695645, "y2": -2.753623188405797, "center_x": 2.8985507246376807, "center_y": -2.8985507246376807, "value_uncond": 0.001030667760857866}, {"x": 3.0434782608695663, "y": -3.0434782608695645, "x2": 3.333333333333334, "y2": -2.753623188405797, "center_x": 3.18840579710145, "center_y": -2.8985507246376807, "value_uncond": 0.001067885270673787}, {"x": 3.333333333333334, "y": -3.0434782608695645, "x2": 3.6231884057971016, "y2": -2.753623188405797, "center_x": 3.4782608695652177, "center_y": -2.8985507246376807, "value_uncond": 0.001096165970408059}, {"x": 3.6231884057971016, "y": -3.0434782608695645, "x2": 3.913043478260869, "y2": -2.753623188405797, "center_x": 3.7681159420289854, "center_y": -2.8985507246376807, "value_uncond": 0.0011147406784952837}, {"x": 3.913043478260871, "y": -3.0434782608695645, "x2": 4.202898550724639, "y2": -2.753623188405797, "center_x": 4.057971014492755, "center_y": -2.8985507246376807, "value_uncond": 0.001123096820663128}, {"x": 4.202898550724639, "y": -3.0434782608695645, "x2": 4.492753623188406, "y2": -2.753623188405797, "center_x": 4.347826086956522, "center_y": -2.8985507246376807, "value_uncond": 0.0011210019310742272}, {"x": 4.492753623188406, "y": -3.0434782608695645, "x2": 4.782608695652174, "y2": -2.753623188405797, "center_x": 4.63768115942029, "center_y": -2.8985507246376807, "value_uncond": 0.0011085143975633734}, {"x": 4.782608695652174, "y": -3.0434782608695645, "x2": 5.0724637681159415, "y2": -2.753623188405797, "center_x": 4.927536231884058, "center_y": -2.8985507246376807, "value_uncond": 0.001085980757770534}, {"x": 5.072463768115943, "y": -3.0434782608695645, "x2": 5.362318840579711, "y2": -2.753623188405797, "center_x": 5.217391304347827, "center_y": -2.8985507246376807, "value_uncond": 0.0010540197209255768}, {"x": 5.362318840579711, "y": -3.0434782608695645, "x2": 5.6521739130434785, "y2": -2.753623188405797, "center_x": 5.507246376811595, "center_y": -2.8985507246376807, "value_uncond": 0.0010134939435188506}, {"x": 5.6521739130434785, "y": -3.0434782608695645, "x2": 5.942028985507246, "y2": -2.753623188405797, "center_x": 5.797101449275362, "center_y": -2.8985507246376807, "value_uncond": 0.0009654713557573767}, {"x": 5.942028985507246, "y": -3.0434782608695645, "x2": 6.231884057971014, "y2": -2.753623188405797, "center_x": 6.08695652173913, "center_y": -2.8985507246376807, "value_uncond": 0.0009111784577478195}, {"x": 6.2318840579710155, "y": -3.0434782608695645, "x2": 6.521739130434783, "y2": -2.753623188405797, "center_x": 6.376811594202899, "center_y": -2.8985507246376807, "value_uncond": 0.0008519484325302061}, {"x": 6.521739130434785, "y": -3.0434782608695645, "x2": 6.8115942028985526, "y2": -2.753623188405797, "center_x": 6.666666666666669, "center_y": -2.8985507246376807, "value_uncond": 0.0007891671290996348}, {"x": 6.811594202898551, "y": -3.0434782608695645, "x2": 7.101449275362318, "y2": -2.753623188405797, "center_x": 6.956521739130435, "center_y": -2.8985507246376807, "value_uncond": 0.0007242199451793485}, {"x": 7.10144927536232, "y": -3.0434782608695645, "x2": 7.391304347826088, "y2": -2.753623188405797, "center_x": 7.246376811594204, "center_y": -2.8985507246376807, "value_uncond": 0.0006584424004384523}, {"x": 7.391304347826086, "y": -3.0434782608695645, "x2": 7.681159420289854, "y2": -2.753623188405797, "center_x": 7.53623188405797, "center_y": -2.8985507246376807, "value_uncond": 0.000593076768260322}, {"x": 7.681159420289855, "y": -3.0434782608695645, "x2": 7.971014492753623, "y2": -2.753623188405797, "center_x": 7.826086956521739, "center_y": -2.8985507246376807, "value_uncond": 0.0005292365744719645}, {"x": 7.971014492753625, "y": -3.0434782608695645, "x2": 8.260869565217392, "y2": -2.753623188405797, "center_x": 8.115942028985508, "center_y": -2.8985507246376807, "value_uncond": 0.0004678801297808371}, {"x": 8.26086956521739, "y": -3.0434782608695645, "x2": 8.550724637681158, "y2": -2.753623188405797, "center_x": 8.405797101449274, "center_y": -2.8985507246376807, "value_uncond": 0.0004097935968866038}, {"x": 8.55072463768116, "y": -3.0434782608695645, "x2": 8.840579710144928, "y2": -2.753623188405797, "center_x": 8.695652173913043, "center_y": -2.8985507246376807, "value_uncond": 0.0003555834580916702}, {"x": 8.84057971014493, "y": -3.0434782608695645, "x2": 9.130434782608697, "y2": -2.753623188405797, "center_x": 8.985507246376812, "center_y": -2.8985507246376807, "value_uncond": 0.00030567769140861566}, {"x": 9.130434782608695, "y": -3.0434782608695645, "x2": 9.420289855072463, "y2": -2.753623188405797, "center_x": 9.275362318840578, "center_y": -2.8985507246376807, "value_uncond": 0.00026033451763437723}, {"x": 9.420289855072465, "y": -3.0434782608695645, "x2": 9.710144927536232, "y2": -2.753623188405797, "center_x": 9.565217391304348, "center_y": -2.8985507246376807, "value_uncond": 0.00021965726887570564}, {"x": 9.710144927536234, "y": -3.0434782608695645, "x2": 10.000000000000002, "y2": -2.753623188405797, "center_x": 9.855072463768117, "center_y": -2.8985507246376807, "value_uncond": 0.00018361375770189993}, {"x": 10.0, "y": -3.0434782608695645, "x2": 10.289855072463768, "y2": -2.753623188405797, "center_x": 10.144927536231883, "center_y": -2.8985507246376807, "value_uncond": 0.00015205848961401678}, {"x": -10.0, "y": -2.753623188405797, "x2": -9.710144927536232, "y2": -2.4637681159420293, "center_x": -9.855072463768117, "center_y": -2.608695652173913, "value_uncond": 2.6188154329573736e-08}, {"x": -9.710144927536232, "y": -2.753623188405797, "x2": -9.420289855072465, "y2": -2.4637681159420293, "center_x": -9.565217391304348, "center_y": -2.608695652173913, "value_uncond": 4.0916168323973e-08}, {"x": -9.420289855072463, "y": -2.753623188405797, "x2": -9.130434782608695, "y2": -2.4637681159420293, "center_x": -9.275362318840578, "center_y": -2.608695652173913, "value_uncond": 6.333311310830191e-08}, {"x": -9.130434782608695, "y": -2.753623188405797, "x2": -8.840579710144928, "y2": -2.4637681159420293, "center_x": -8.985507246376812, "center_y": -2.608695652173913, "value_uncond": 9.71208624008385e-08}, {"x": -8.840579710144928, "y": -2.753623188405797, "x2": -8.55072463768116, "y2": -2.4637681159420293, "center_x": -8.695652173913043, "center_y": -2.608695652173913, "value_uncond": 1.475502802555563e-07}, {"x": -8.55072463768116, "y": -2.753623188405797, "x2": -8.260869565217392, "y2": -2.4637681159420293, "center_x": -8.405797101449277, "center_y": -2.608695652173913, "value_uncond": 2.2208200099933804e-07}, {"x": -8.26086956521739, "y": -2.753623188405797, "x2": -7.971014492753623, "y2": -2.4637681159420293, "center_x": -8.115942028985508, "center_y": -2.608695652173913, "value_uncond": 3.3115590192951433e-07}, {"x": -7.971014492753623, "y": -2.753623188405797, "x2": -7.681159420289855, "y2": -2.4637681159420293, "center_x": -7.826086956521739, "center_y": -2.608695652173913, "value_uncond": 4.892123946448407e-07}, {"x": -7.681159420289855, "y": -2.753623188405797, "x2": -7.391304347826088, "y2": -2.4637681159420293, "center_x": -7.536231884057972, "center_y": -2.608695652173913, "value_uncond": 7.159920802534279e-07}, {"x": -7.391304347826087, "y": -2.753623188405797, "x2": -7.101449275362319, "y2": -2.4637681159420293, "center_x": -7.246376811594203, "center_y": -2.608695652173913, "value_uncond": 1.0381612147701664e-06}, {"x": -7.101449275362318, "y": -2.753623188405797, "x2": -6.811594202898551, "y2": -2.4637681159420293, "center_x": -6.956521739130435, "center_y": -2.608695652173913, "value_uncond": 1.4913074781726702e-06}, {"x": -6.811594202898551, "y": -2.753623188405797, "x2": -6.521739130434783, "y2": -2.4637681159420293, "center_x": -6.666666666666667, "center_y": -2.608695652173913, "value_uncond": 2.1223421827994224e-06}, {"x": -6.521739130434782, "y": -2.753623188405797, "x2": -6.231884057971015, "y2": -2.4637681159420293, "center_x": -6.3768115942028984, "center_y": -2.608695652173913, "value_uncond": 2.9923296158811253e-06}, {"x": -6.231884057971014, "y": -2.753623188405797, "x2": -5.942028985507246, "y2": -2.4637681159420293, "center_x": -6.08695652173913, "center_y": -2.608695652173913, "value_uncond": 4.179740028698538e-06}, {"x": -5.942028985507246, "y": -2.753623188405797, "x2": -5.6521739130434785, "y2": -2.4637681159420293, "center_x": -5.797101449275362, "center_y": -2.608695652173913, "value_uncond": 5.7840884344633715e-06}, {"x": -5.6521739130434785, "y": -2.753623188405797, "x2": -5.362318840579711, "y2": -2.4637681159420293, "center_x": -5.507246376811595, "center_y": -2.608695652173913, "value_uncond": 7.92987593862528e-06}, {"x": -5.36231884057971, "y": -2.753623188405797, "x2": -5.072463768115942, "y2": -2.4637681159420293, "center_x": -5.217391304347826, "center_y": -2.608695652173913, "value_uncond": 1.077069371281184e-05}, {"x": -5.0724637681159415, "y": -2.753623188405797, "x2": -4.782608695652174, "y2": -2.4637681159420293, "center_x": -4.927536231884058, "center_y": -2.608695652173913, "value_uncond": 1.4493283038864286e-05}, {"x": -4.782608695652174, "y": -2.753623188405797, "x2": -4.492753623188406, "y2": -2.4637681159420293, "center_x": -4.63768115942029, "center_y": -2.608695652173913, "value_uncond": 1.9321270724520628e-05}, {"x": -4.492753623188405, "y": -2.753623188405797, "x2": -4.202898550724638, "y2": -2.4637681159420293, "center_x": -4.3478260869565215, "center_y": -2.608695652173913, "value_uncond": 2.551822206681418e-05}, {"x": -4.202898550724638, "y": -2.753623188405797, "x2": -3.91304347826087, "y2": -2.4637681159420293, "center_x": -4.057971014492754, "center_y": -2.608695652173913, "value_uncond": 3.33895798085704e-05}, {"x": -3.913043478260869, "y": -2.753623188405797, "x2": -3.6231884057971016, "y2": -2.4637681159420293, "center_x": -3.7681159420289854, "center_y": -2.608695652173913, "value_uncond": 4.328299549906327e-05}, {"x": -3.6231884057971016, "y": -2.753623188405797, "x2": -3.333333333333334, "y2": -2.4637681159420293, "center_x": -3.4782608695652177, "center_y": -2.608695652173913, "value_uncond": 5.5586519227812194e-05}, {"x": -3.333333333333333, "y": -2.753623188405797, "x2": -3.0434782608695654, "y2": -2.4637681159420293, "center_x": -3.1884057971014492, "center_y": -2.608695652173913, "value_uncond": 7.072410571871243e-05}, {"x": -3.0434782608695645, "y": -2.753623188405797, "x2": -2.753623188405797, "y2": -2.4637681159420293, "center_x": -2.8985507246376807, "center_y": -2.608695652173913, "value_uncond": 8.914793013961373e-05}, {"x": -2.753623188405797, "y": -2.753623188405797, "x2": -2.4637681159420293, "y2": -2.4637681159420293, "center_x": -2.608695652173913, "center_y": -2.608695652173913, "value_uncond": 0.00011132709535568892}, {"x": -2.4637681159420284, "y": -2.753623188405797, "x2": -2.1739130434782608, "y2": -2.4637681159420293, "center_x": -2.3188405797101446, "center_y": -2.608695652173913, "value_uncond": 0.00013773246067225788}, {"x": -2.1739130434782608, "y": -2.753623188405797, "x2": -1.8840579710144931, "y2": -2.4637681159420293, "center_x": -2.028985507246377, "center_y": -2.608695652173913, "value_uncond": 0.0001688175330188482}, {"x": -1.8840579710144922, "y": -2.753623188405797, "x2": -1.5942028985507246, "y2": -2.4637681159420293, "center_x": -1.7391304347826084, "center_y": -2.608695652173913, "value_uncond": 0.00020499563188619514}, {"x": -1.5942028985507246, "y": -2.753623188405797, "x2": -1.304347826086957, "y2": -2.4637681159420293, "center_x": -1.4492753623188408, "center_y": -2.608695652173913, "value_uncond": 0.0002466138590582609}, {"x": -1.304347826086957, "y": -2.753623188405797, "x2": -1.0144927536231894, "y2": -2.4637681159420293, "center_x": -1.1594202898550732, "center_y": -2.608695652173913, "value_uncond": 0.0002939247556387334}, {"x": -1.0144927536231876, "y": -2.753623188405797, "x2": -0.72463768115942, "y2": -2.4637681159420293, "center_x": -0.8695652173913038, "center_y": -2.608695652173913, "value_uncond": 0.0003470568870188469}, {"x": -0.72463768115942, "y": -2.753623188405797, "x2": -0.43478260869565233, "y2": -2.4637681159420293, "center_x": -0.5797101449275361, "center_y": -2.608695652173913, "value_uncond": 0.00040598592995069906}, {"x": -0.43478260869565233, "y": -2.753623188405797, "x2": -0.1449275362318847, "y2": -2.4637681159420293, "center_x": -0.2898550724637685, "center_y": -2.608695652173913, "value_uncond": 0.00047050810929727627}, {"x": -0.14492753623188293, "y": -2.753623188405797, "x2": 0.1449275362318847, "y2": -2.4637681159420293, "center_x": 8.881784197001252e-16, "center_y": -2.608695652173913, "value_uncond": 0.0005402180087644379}, {"x": 0.1449275362318847, "y": -2.753623188405797, "x2": 0.43478260869565233, "y2": -2.4637681159420293, "center_x": 0.2898550724637685, "center_y": -2.608695652173913, "value_uncond": 0.0006144928261623863}, {"x": 0.43478260869565233, "y": -2.753623188405797, "x2": 0.72463768115942, "y2": -2.4637681159420293, "center_x": 0.5797101449275361, "center_y": -2.608695652173913, "value_uncond": 0.0006924850326436628}, {"x": 0.72463768115942, "y": -2.753623188405797, "x2": 1.0144927536231876, "y2": -2.4637681159420293, "center_x": 0.8695652173913038, "center_y": -2.608695652173913, "value_uncond": 0.0007731251111857775}, {"x": 1.0144927536231894, "y": -2.753623188405797, "x2": 1.304347826086957, "y2": -2.4637681159420293, "center_x": 1.1594202898550732, "center_y": -2.608695652173913, "value_uncond": 0.0008551355912321876}, {"x": 1.304347826086957, "y": -2.753623188405797, "x2": 1.5942028985507246, "y2": -2.4637681159420293, "center_x": 1.4492753623188408, "center_y": -2.608695652173913, "value_uncond": 0.0009370569797628511}, {"x": 1.5942028985507246, "y": -2.753623188405797, "x2": 1.8840579710144922, "y2": -2.4637681159420293, "center_x": 1.7391304347826084, "center_y": -2.608695652173913, "value_uncond": 0.0010172854476969823}, {"x": 1.884057971014494, "y": -2.753623188405797, "x2": 2.1739130434782616, "y2": -2.4637681159420293, "center_x": 2.028985507246378, "center_y": -2.608695652173913, "value_uncond": 0.0010941213143847621}, {"x": 2.1739130434782616, "y": -2.753623188405797, "x2": 2.4637681159420293, "y2": -2.4637681159420293, "center_x": 2.3188405797101455, "center_y": -2.608695652173913, "value_uncond": 0.0011658265449969248}, {"x": 2.4637681159420293, "y": -2.753623188405797, "x2": 2.753623188405797, "y2": -2.4637681159420293, "center_x": 2.608695652173913, "center_y": -2.608695652173913, "value_uncond": 0.001230688706612493}, {"x": 2.753623188405797, "y": -2.753623188405797, "x2": 3.0434782608695645, "y2": -2.4637681159420293, "center_x": 2.8985507246376807, "center_y": -2.608695652173913, "value_uncond": 0.001287088190531882}, {"x": 3.0434782608695663, "y": -2.753623188405797, "x2": 3.333333333333334, "y2": -2.4637681159420293, "center_x": 3.18840579710145, "center_y": -2.608695652173913, "value_uncond": 0.0013335650661888887}, {"x": 3.333333333333334, "y": -2.753623188405797, "x2": 3.6231884057971016, "y2": -2.4637681159420293, "center_x": 3.4782608695652177, "center_y": -2.608695652173913, "value_uncond": 0.0013688817376036064}, {"x": 3.6231884057971016, "y": -2.753623188405797, "x2": 3.913043478260869, "y2": -2.4637681159420293, "center_x": 3.7681159420289854, "center_y": -2.608695652173913, "value_uncond": 0.0013920776580831067}, {"x": 3.913043478260871, "y": -2.753623188405797, "x2": 4.202898550724639, "y2": -2.4637681159420293, "center_x": 4.057971014492755, "center_y": -2.608695652173913, "value_uncond": 0.0014025127297047182}, {"x": 4.202898550724639, "y": -2.753623188405797, "x2": 4.492753623188406, "y2": -2.4637681159420293, "center_x": 4.347826086956522, "center_y": -2.608695652173913, "value_uncond": 0.0013998966513206438}, {"x": 4.492753623188406, "y": -2.753623188405797, "x2": 4.782608695652174, "y2": -2.4637681159420293, "center_x": 4.63768115942029, "center_y": -2.608695652173913, "value_uncond": 0.0013843023371089397}, {"x": 4.782608695652174, "y": -2.753623188405797, "x2": 5.0724637681159415, "y2": -2.4637681159420293, "center_x": 4.927536231884058, "center_y": -2.608695652173913, "value_uncond": 0.0013561625400098994}, {"x": 5.072463768115943, "y": -2.753623188405797, "x2": 5.362318840579711, "y2": -2.4637681159420293, "center_x": 5.217391304347827, "center_y": -2.608695652173913, "value_uncond": 0.0013162498982813378}, {"x": 5.362318840579711, "y": -2.753623188405797, "x2": 5.6521739130434785, "y2": -2.4637681159420293, "center_x": 5.507246376811595, "center_y": -2.608695652173913, "value_uncond": 0.0012656416892218962}, {"x": 5.6521739130434785, "y": -2.753623188405797, "x2": 5.942028985507246, "y2": -2.4637681159420293, "center_x": 5.797101449275362, "center_y": -2.608695652173913, "value_uncond": 0.001205671534013852}, {"x": 5.942028985507246, "y": -2.753623188405797, "x2": 6.231884057971014, "y2": -2.4637681159420293, "center_x": 6.08695652173913, "center_y": -2.608695652173913, "value_uncond": 0.0011378710744363743}, {"x": 6.2318840579710155, "y": -2.753623188405797, "x2": 6.521739130434783, "y2": -2.4637681159420293, "center_x": 6.376811594202899, "center_y": -2.608695652173913, "value_uncond": 0.0010639051769108295}, {"x": 6.521739130434785, "y": -2.753623188405797, "x2": 6.8115942028985526, "y2": -2.4637681159420293, "center_x": 6.666666666666669, "center_y": -2.608695652173913, "value_uncond": 0.000985504476607145}, {"x": 6.811594202898551, "y": -2.753623188405797, "x2": 7.101449275362318, "y2": -2.4637681159420293, "center_x": 6.956521739130435, "center_y": -2.608695652173913, "value_uncond": 0.0009043990451512076}, {"x": 7.10144927536232, "y": -2.753623188405797, "x2": 7.391304347826088, "y2": -2.4637681159420293, "center_x": 7.246376811594204, "center_y": -2.608695652173913, "value_uncond": 0.000822256666924762}, {"x": 7.391304347826086, "y": -2.753623188405797, "x2": 7.681159420289854, "y2": -2.4637681159420293, "center_x": 7.53623188405797, "center_y": -2.608695652173913, "value_uncond": 0.0007406286812263477}, {"x": 7.681159420289855, "y": -2.753623188405797, "x2": 7.971014492753623, "y2": -2.4637681159420293, "center_x": 7.826086956521739, "center_y": -2.608695652173913, "value_uncond": 0.0006609056486189536}, {"x": 7.971014492753625, "y": -2.753623188405797, "x2": 8.260869565217392, "y2": -2.4637681159420293, "center_x": 8.115942028985508, "center_y": -2.608695652173913, "value_uncond": 0.0005842842984864515}, {"x": 8.26086956521739, "y": -2.753623188405797, "x2": 8.550724637681158, "y2": -2.4637681159420293, "center_x": 8.405797101449274, "center_y": -2.608695652173913, "value_uncond": 0.0005117463834022718}, {"x": 8.55072463768116, "y": -2.753623188405797, "x2": 8.840579710144928, "y2": -2.4637681159420293, "center_x": 8.695652173913043, "center_y": -2.608695652173913, "value_uncond": 0.0004440492727523974}, {"x": 8.84057971014493, "y": -2.753623188405797, "x2": 9.130434782608697, "y2": -2.4637681159420293, "center_x": 8.985507246376812, "center_y": -2.608695652173913, "value_uncond": 0.00038172742144724434}, {"x": 9.130434782608695, "y": -2.753623188405797, "x2": 9.420289855072463, "y2": -2.4637681159420293, "center_x": 9.275362318840578, "center_y": -2.608695652173913, "value_uncond": 0.00032510329318550315}, {"x": 9.420289855072465, "y": -2.753623188405797, "x2": 9.710144927536232, "y2": -2.4637681159420293, "center_x": 9.565217391304348, "center_y": -2.608695652173913, "value_uncond": 0.00027430592812866244}, {"x": 9.710144927536234, "y": -2.753623188405797, "x2": 10.000000000000002, "y2": -2.4637681159420293, "center_x": 9.855072463768117, "center_y": -2.608695652173913, "value_uncond": 0.00022929513091647812}, {"x": 10.0, "y": -2.753623188405797, "x2": 10.289855072463768, "y2": -2.4637681159420293, "center_x": 10.144927536231883, "center_y": -2.608695652173913, "value_uncond": 0.00018988920938927623}, {"x": -10.0, "y": -2.4637681159420284, "x2": -9.710144927536232, "y2": -2.1739130434782608, "center_x": -9.855072463768117, "center_y": -2.3188405797101446, "value_uncond": 3.239965010092863e-08}, {"x": -9.710144927536232, "y": -2.4637681159420284, "x2": -9.420289855072465, "y2": -2.1739130434782608, "center_x": -9.565217391304348, "center_y": -2.3188405797101446, "value_uncond": 5.0620960930811905e-08}, {"x": -9.420289855072463, "y": -2.4637681159420284, "x2": -9.130434782608695, "y2": -2.1739130434782608, "center_x": -9.275362318840578, "center_y": -2.3188405797101446, "value_uncond": 7.835491874256564e-08}, {"x": -9.130434782608695, "y": -2.4637681159420284, "x2": -8.840579710144928, "y2": -2.1739130434782608, "center_x": -8.985507246376812, "center_y": -2.3188405797101446, "value_uncond": 1.2015669068110387e-07}, {"x": -8.840579710144928, "y": -2.4637681159420284, "x2": -8.55072463768116, "y2": -2.1739130434782608, "center_x": -8.695652173913043, "center_y": -2.3188405797101446, "value_uncond": 1.8254732244247453e-07}, {"x": -8.55072463768116, "y": -2.4637681159420284, "x2": -8.260869565217392, "y2": -2.1739130434782608, "center_x": -8.405797101449277, "center_y": -2.3188405797101446, "value_uncond": 2.747570155399246e-07}, {"x": -8.26086956521739, "y": -2.4637681159420284, "x2": -7.971014492753623, "y2": -2.1739130434782608, "center_x": -8.115942028985508, "center_y": -2.3188405797101446, "value_uncond": 4.0970185284334017e-07}, {"x": -7.971014492753623, "y": -2.4637681159420284, "x2": -7.681159420289855, "y2": -2.1739130434782608, "center_x": -7.826086956521739, "center_y": -2.3188405797101446, "value_uncond": 6.052473271715371e-07}, {"x": -7.681159420289855, "y": -2.4637681159420284, "x2": -7.391304347826088, "y2": -2.1739130434782608, "center_x": -7.536231884057972, "center_y": -2.3188405797101446, "value_uncond": 8.858162581182814e-07}, {"x": -7.391304347826087, "y": -2.4637681159420284, "x2": -7.101449275362319, "y2": -2.1739130434782608, "center_x": -7.246376811594203, "center_y": -2.3188405797101446, "value_uncond": 1.2843997970839784e-06}, {"x": -7.101449275362318, "y": -2.4637681159420284, "x2": -6.811594202898551, "y2": -2.1739130434782608, "center_x": -6.956521739130435, "center_y": -2.3188405797101446, "value_uncond": 1.8450265672647442e-06}, {"x": -6.811594202898551, "y": -2.4637681159420284, "x2": -6.521739130434783, "y2": -2.1739130434782608, "center_x": -6.666666666666667, "center_y": -2.3188405797101446, "value_uncond": 2.6257346452051987e-06}, {"x": -6.521739130434782, "y": -2.4637681159420284, "x2": -6.231884057971015, "y2": -2.1739130434782608, "center_x": -6.3768115942028984, "center_y": -2.3188405797101446, "value_uncond": 3.7020719872461713e-06}, {"x": -6.231884057971014, "y": -2.4637681159420284, "x2": -5.942028985507246, "y2": -2.1739130434782608, "center_x": -6.08695652173913, "center_y": -2.3188405797101446, "value_uncond": 5.171120986168483e-06}, {"x": -5.942028985507246, "y": -2.4637681159420284, "x2": -5.6521739130434785, "y2": -2.1739130434782608, "center_x": -5.797101449275362, "center_y": -2.3188405797101446, "value_uncond": 7.15600034546198e-06}, {"x": -5.6521739130434785, "y": -2.4637681159420284, "x2": -5.362318840579711, "y2": -2.1739130434782608, "center_x": -5.507246376811595, "center_y": -2.3188405797101446, "value_uncond": 9.810741242848559e-06}, {"x": -5.36231884057971, "y": -2.4637681159420284, "x2": -5.072463768115942, "y2": -2.1739130434782608, "center_x": -5.217391304347826, "center_y": -2.3188405797101446, "value_uncond": 1.3325364714431008e-05}, {"x": -5.0724637681159415, "y": -2.4637681159420284, "x2": -4.782608695652174, "y2": -2.1739130434782608, "center_x": -4.927536231884058, "center_y": -2.3188405797101446, "value_uncond": 1.7930904689325227e-05}, {"x": -4.782608695652174, "y": -2.4637681159420284, "x2": -4.492753623188406, "y2": -2.1739130434782608, "center_x": -4.63768115942029, "center_y": -2.3188405797101446, "value_uncond": 2.3904029398240288e-05}, {"x": -4.492753623188405, "y": -2.4637681159420284, "x2": -4.202898550724638, "y2": -2.1739130434782608, "center_x": -4.3478260869565215, "center_y": -2.3188405797101446, "value_uncond": 3.157081846080717e-05}, {"x": -4.202898550724638, "y": -2.4637681159420284, "x2": -3.91304347826087, "y2": -2.1739130434782608, "center_x": -4.057971014492754, "center_y": -2.3188405797101446, "value_uncond": 4.130916173779552e-05}, {"x": -3.913043478260869, "y": -2.4637681159420284, "x2": -3.6231884057971016, "y2": -2.1739130434782608, "center_x": -3.7681159420289854, "center_y": -2.3188405797101446, "value_uncond": 5.354916928628562e-05}, {"x": -3.6231884057971016, "y": -2.4637681159420284, "x2": -3.333333333333334, "y2": -2.1739130434782608, "center_x": -3.4782608695652177, "center_y": -2.3188405797101446, "value_uncond": 6.87709317214403e-05}, {"x": -3.333333333333333, "y": -2.4637681159420284, "x2": -3.0434782608695654, "y2": -2.1739130434782608, "center_x": -3.1884057971014492, "center_y": -2.3188405797101446, "value_uncond": 8.749896041355213e-05}, {"x": -3.0434782608695645, "y": -2.4637681159420284, "x2": -2.753623188405797, "y2": -2.1739130434782608, "center_x": -2.8985507246376807, "center_y": -2.3188405797101446, "value_uncond": 0.00011029268070578547}, {"x": -2.753623188405797, "y": -2.4637681159420284, "x2": -2.4637681159420293, "y2": -2.1739130434782608, "center_x": -2.608695652173913, "center_y": -2.3188405797101446, "value_uncond": 0.00013773246067225788}, {"x": -2.4637681159420284, "y": -2.4637681159420284, "x2": -2.1739130434782608, "y2": -2.1739130434782608, "center_x": -2.3188405797101446, "center_y": -2.3188405797101446, "value_uncond": 0.00017040084143240576}, {"x": -2.1739130434782608, "y": -2.4637681159420284, "x2": -1.8840579710144931, "y2": -2.1739130434782608, "center_x": -2.028985507246377, "center_y": -2.3188405797101446, "value_uncond": 0.00020885889596793423}, {"x": -1.8840579710144922, "y": -2.4637681159420284, "x2": -1.5942028985507246, "y2": -2.1739130434782608, "center_x": -1.7391304347826084, "center_y": -2.3188405797101446, "value_uncond": 0.0002536179778744869}, {"x": -1.5942028985507246, "y": -2.4637681159420284, "x2": -1.304347826086957, "y2": -2.1739130434782608, "center_x": -1.4492753623188408, "center_y": -2.3188405797101446, "value_uncond": 0.00030510751704652234}, {"x": -1.304347826086957, "y": -2.4637681159420284, "x2": -1.0144927536231894, "y2": -2.1739130434782608, "center_x": -1.1594202898550732, "center_y": -2.3188405797101446, "value_uncond": 0.0003636399541124481}, {"x": -1.0144927536231876, "y": -2.4637681159420284, "x2": -0.72463768115942, "y2": -2.1739130434782608, "center_x": -0.8695652173913038, "center_y": -2.3188405797101446, "value_uncond": 0.0004293743485324563}, {"x": -0.72463768115942, "y": -2.4637681159420284, "x2": -0.43478260869565233, "y2": -2.1739130434782608, "center_x": -0.5797101449275361, "center_y": -2.3188405797101446, "value_uncond": 0.0005022806078948621}, {"x": -0.43478260869565233, "y": -2.4637681159420284, "x2": -0.1449275362318847, "y2": -2.1739130434782608, "center_x": -0.2898550724637685, "center_y": -2.3188405797101446, "value_uncond": 0.0005821066242024608}, {"x": -0.14492753623188293, "y": -2.4637681159420284, "x2": 0.1449275362318847, "y2": -2.1739130434782608, "center_x": 8.881784197001252e-16, "center_y": -2.3188405797101446, "value_uncond": 0.0006683508215935073}, {"x": 0.1449275362318847, "y": -2.4637681159420284, "x2": 0.43478260869565233, "y2": -2.1739130434782608, "center_x": 0.2898550724637685, "center_y": -2.3188405797101446, "value_uncond": 0.0007602426771522744}, {"x": 0.43478260869565233, "y": -2.4637681159420284, "x2": 0.72463768115942, "y2": -2.1739130434782608, "center_x": 0.5797101449275361, "center_y": -2.3188405797101446, "value_uncond": 0.0008567336390120467}, {"x": 0.72463768115942, "y": -2.4637681159420284, "x2": 1.0144927536231876, "y2": -2.1739130434782608, "center_x": 0.8695652173913038, "center_y": -2.3188405797101446, "value_uncond": 0.0009565005143708588}, {"x": 1.0144927536231894, "y": -2.4637681159420284, "x2": 1.304347826086957, "y2": -2.1739130434782608, "center_x": 1.1594202898550732, "center_y": -2.3188405797101446, "value_uncond": 0.0010579628329700835}, {"x": 1.304347826086957, "y": -2.4637681159420284, "x2": 1.5942028985507246, "y2": -2.1739130434782608, "center_x": 1.4492753623188408, "center_y": -2.3188405797101446, "value_uncond": 0.0011593149286837688}, {"x": 1.5942028985507246, "y": -2.4637681159420284, "x2": 1.8840579710144922, "y2": -2.1739130434782608, "center_x": 1.7391304347826084, "center_y": -2.3188405797101446, "value_uncond": 0.0012585725646548536}, {"x": 1.884057971014494, "y": -2.4637681159420284, "x2": 2.1739130434782616, "y2": -2.1739130434782608, "center_x": 2.028985507246378, "center_y": -2.3188405797101446, "value_uncond": 0.0013536329176891404}, {"x": 2.1739130434782616, "y": -2.4637681159420284, "x2": 2.4637681159420293, "y2": -2.1739130434782608, "center_x": 2.3188405797101455, "center_y": -2.3188405797101446, "value_uncond": 0.0014423457132914212}, {"x": 2.4637681159420293, "y": -2.4637681159420284, "x2": 2.753623188405797, "y2": -2.1739130434782608, "center_x": 2.608695652173913, "center_y": -2.3188405797101446, "value_uncond": 0.0015225923513204752}, {"x": 2.753623188405797, "y": -2.4637681159420284, "x2": 3.0434782608695645, "y2": -2.1739130434782608, "center_x": 2.8985507246376807, "center_y": -2.3188405797101446, "value_uncond": 0.001592369072576375}, {"x": 3.0434782608695663, "y": -2.4637681159420284, "x2": 3.333333333333334, "y2": -2.1739130434782608, "center_x": 3.18840579710145, "center_y": -2.3188405797101446, "value_uncond": 0.0016498696696066464}, {"x": 3.333333333333334, "y": -2.4637681159420284, "x2": 3.6231884057971016, "y2": -2.1739130434782608, "center_x": 3.4782608695652177, "center_y": -2.3188405797101446, "value_uncond": 0.001693563004469659}, {"x": 3.6231884057971016, "y": -2.4637681159420284, "x2": 3.913043478260869, "y2": -2.1739130434782608, "center_x": 3.7681159420289854, "center_y": -2.3188405797101446, "value_uncond": 0.0017222607010635757}, {"x": 3.913043478260871, "y": -2.4637681159420284, "x2": 4.202898550724639, "y2": -2.1739130434782608, "center_x": 4.057971014492755, "center_y": -2.3188405797101446, "value_uncond": 0.001735170838412833}, {"x": 4.202898550724639, "y": -2.4637681159420284, "x2": 4.492753623188406, "y2": -2.1739130434782608, "center_x": 4.347826086956522, "center_y": -2.3188405797101446, "value_uncond": 0.0017319342596446646}, {"x": 4.492753623188406, "y": -2.4637681159420284, "x2": 4.782608695652174, "y2": -2.1739130434782608, "center_x": 4.63768115942029, "center_y": -2.3188405797101446, "value_uncond": 0.0017126411732490121}, {"x": 4.782608695652174, "y": -2.4637681159420284, "x2": 5.0724637681159415, "y2": -2.1739130434782608, "center_x": 4.927536231884058, "center_y": -2.3188405797101446, "value_uncond": 0.001677826975637138}, {"x": 5.072463768115943, "y": -2.4637681159420284, "x2": 5.362318840579711, "y2": -2.1739130434782608, "center_x": 5.217391304347827, "center_y": -2.3188405797101446, "value_uncond": 0.0016284475649946408}, {"x": 5.362318840579711, "y": -2.4637681159420284, "x2": 5.6521739130434785, "y2": -2.1739130434782608, "center_x": 5.507246376811595, "center_y": -2.3188405797101446, "value_uncond": 0.0015658357350380376}, {"x": 5.6521739130434785, "y": -2.4637681159420284, "x2": 5.942028985507246, "y2": -2.1739130434782608, "center_x": 5.797101449275362, "center_y": -2.3188405797101446, "value_uncond": 0.0014916414248630431}, {"x": 5.942028985507246, "y": -2.4637681159420284, "x2": 6.231884057971014, "y2": -2.1739130434782608, "center_x": 6.08695652173913, "center_y": -2.3188405797101446, "value_uncond": 0.0014077595621190266}, {"x": 6.2318840579710155, "y": -2.4637681159420284, "x2": 6.521739130434783, "y2": -2.1739130434782608, "center_x": 6.376811594202899, "center_y": -2.3188405797101446, "value_uncond": 0.0013162498982813384}, {"x": 6.521739130434785, "y": -2.4637681159420284, "x2": 6.8115942028985526, "y2": -2.1739130434782608, "center_x": 6.666666666666669, "center_y": -2.3188405797101446, "value_uncond": 0.0012192535530811497}, {"x": 6.811594202898551, "y": -2.4637681159420284, "x2": 7.101449275362318, "y2": -2.1739130434782608, "center_x": 6.956521739130435, "center_y": -2.3188405797101446, "value_uncond": 0.001118910949040142}, {"x": 7.10144927536232, "y": -2.4637681159420284, "x2": 7.391304347826088, "y2": -2.1739130434782608, "center_x": 7.246376811594204, "center_y": -2.3188405797101446, "value_uncond": 0.0010172854476969823}, {"x": 7.391304347826086, "y": -2.4637681159420284, "x2": 7.681159420289854, "y2": -2.1739130434782608, "center_x": 7.53623188405797, "center_y": -2.3188405797101446, "value_uncond": 0.0009162963462204569}, {"x": 7.681159420289855, "y": -2.4637681159420284, "x2": 7.971014492753623, "y2": -2.1739130434782608, "center_x": 7.826086956521739, "center_y": -2.3188405797101446, "value_uncond": 0.0008176640283809533}, {"x": 7.971014492753625, "y": -2.4637681159420284, "x2": 8.260869565217392, "y2": -2.1739130434782608, "center_x": 8.115942028985508, "center_y": -2.3188405797101446, "value_uncond": 0.0007228690724893741}, {"x": 8.26086956521739, "y": -2.4637681159420284, "x2": 8.550724637681158, "y2": -2.1739130434782608, "center_x": 8.405797101449274, "center_y": -2.3188405797101446, "value_uncond": 0.0006331260902921042}, {"x": 8.55072463768116, "y": -2.4637681159420284, "x2": 8.840579710144928, "y2": -2.1739130434782608, "center_x": 8.695652173913043, "center_y": -2.3188405797101446, "value_uncond": 0.0005493720895215017}, {"x": 8.84057971014493, "y": -2.4637681159420284, "x2": 9.130434782608697, "y2": -2.1739130434782608, "center_x": 8.985507246376812, "center_y": -2.3188405797101446, "value_uncond": 0.000472268290967481}, {"x": 9.130434782608695, "y": -2.4637681159420284, "x2": 9.420289855072463, "y2": -2.1739130434782608, "center_x": 9.275362318840578, "center_y": -2.3188405797101446, "value_uncond": 0.0004022136426000418}, {"x": 9.420289855072465, "y": -2.4637681159420284, "x2": 9.710144927536232, "y2": -2.1739130434782608, "center_x": 9.565217391304348, "center_y": -2.3188405797101446, "value_uncond": 0.0003393677912590714}, {"x": 9.710144927536234, "y": -2.4637681159420284, "x2": 10.000000000000002, "y2": -2.1739130434782608, "center_x": 9.855072463768117, "center_y": -2.3188405797101446, "value_uncond": 0.0002836810077581909}, {"x": 10.0, "y": -2.4637681159420284, "x2": 10.289855072463768, "y2": -2.1739130434782608, "center_x": 10.144927536231883, "center_y": -2.3188405797101446, "value_uncond": 0.00023492850487774955}, {"x": -10.0, "y": -2.1739130434782608, "x2": -9.710144927536232, "y2": -1.8840579710144931, "center_x": -9.855072463768117, "center_y": -2.028985507246377, "value_uncond": 3.9711982012199266e-08}, {"x": -9.710144927536232, "y": -2.1739130434782608, "x2": -9.420289855072465, "y2": -1.8840579710144931, "center_x": -9.565217391304348, "center_y": -2.028985507246377, "value_uncond": 6.204569134735891e-08}, {"x": -9.420289855072463, "y": -2.1739130434782608, "x2": -9.130434782608695, "y2": -1.8840579710144931, "center_x": -9.275362318840578, "center_y": -2.028985507246377, "value_uncond": 9.603897307467887e-08}, {"x": -9.130434782608695, "y": -2.1739130434782608, "x2": -8.840579710144928, "y2": -1.8840579710144931, "center_x": -8.985507246376812, "center_y": -2.028985507246377, "value_uncond": 1.4727505772775686e-07}, {"x": -8.840579710144928, "y": -2.1739130434782608, "x2": -8.55072463768116, "y2": -1.8840579710144931, "center_x": -8.695652173913043, "center_y": -2.028985507246377, "value_uncond": 2.2374673685142385e-07}, {"x": -8.55072463768116, "y": -2.1739130434782608, "x2": -8.260869565217392, "y2": -1.8840579710144931, "center_x": -8.405797101449277, "center_y": -2.028985507246377, "value_uncond": 3.3676739177298414e-07}, {"x": -8.26086956521739, "y": -2.1739130434782608, "x2": -7.971014492753623, "y2": -1.8840579710144931, "center_x": -8.115942028985508, "center_y": -2.028985507246377, "value_uncond": 5.021681579830735e-07}, {"x": -7.971014492753623, "y": -2.1739130434782608, "x2": -7.681159420289855, "y2": -1.8840579710144931, "center_x": -7.826086956521739, "center_y": -2.028985507246377, "value_uncond": 7.418466216361657e-07}, {"x": -7.681159420289855, "y": -2.1739130434782608, "x2": -7.391304347826088, "y2": -1.8840579710144931, "center_x": -7.536231884057972, "center_y": -2.028985507246377, "value_uncond": 1.0857376298486197e-06}, {"x": -7.391304347826087, "y": -2.1739130434782608, "x2": -7.101449275362319, "y2": -1.8840579710144931, "center_x": -7.246376811594203, "center_y": -2.028985507246377, "value_uncond": 1.574278162862302e-06}, {"x": -7.101449275362318, "y": -2.1739130434782608, "x2": -6.811594202898551, "y2": -1.8840579710144931, "center_x": -6.956521739130435, "center_y": -2.028985507246377, "value_uncond": 2.261433738420133e-06}, {"x": -6.811594202898551, "y": -2.1739130434782608, "x2": -6.521739130434783, "y2": -1.8840579710144931, "center_x": -6.666666666666667, "center_y": -2.028985507246377, "value_uncond": 3.2183411448696105e-06}, {"x": -6.521739130434782, "y": -2.1739130434782608, "x2": -6.231884057971015, "y2": -1.8840579710144931, "center_x": -6.3768115942028984, "center_y": -2.028985507246377, "value_uncond": 4.537598884784661e-06}, {"x": -6.231884057971014, "y": -2.1739130434782608, "x2": -5.942028985507246, "y2": -1.8840579710144931, "center_x": -6.08695652173913, "center_y": -2.028985507246377, "value_uncond": 6.338200040615355e-06}, {"x": -5.942028985507246, "y": -2.1739130434782608, "x2": -5.6521739130434785, "y2": -1.8840579710144931, "center_x": -5.797101449275362, "center_y": -2.028985507246377, "value_uncond": 8.771050184586184e-06}, {"x": -5.6521739130434785, "y": -2.1739130434782608, "x2": -5.362318840579711, "y2": -1.8840579710144931, "center_x": -5.507246376811595, "center_y": -2.028985507246377, "value_uncond": 1.2024944051824084e-05}, {"x": -5.36231884057971, "y": -2.1739130434782608, "x2": -5.072463768115942, "y2": -1.8840579710144931, "center_x": -5.217391304347826, "center_y": -2.028985507246377, "value_uncond": 1.6332788847936102e-05}, {"x": -5.0724637681159415, "y": -2.1739130434782608, "x2": -4.782608695652174, "y2": -1.8840579710144931, "center_x": -4.927536231884058, "center_y": -2.028985507246377, "value_uncond": 2.197776094083601e-05}, {"x": -4.782608695652174, "y": -2.1739130434782608, "x2": -4.492753623188406, "y2": -1.8840579710144931, "center_x": -4.63768115942029, "center_y": -2.028985507246377, "value_uncond": 2.929897028285477e-05}, {"x": -4.492753623188405, "y": -2.1739130434782608, "x2": -4.202898550724638, "y2": -1.8840579710144931, "center_x": -4.3478260869565215, "center_y": -2.028985507246377, "value_uncond": 3.869608995530632e-05}, {"x": -4.202898550724638, "y": -2.1739130434782608, "x2": -3.91304347826087, "y2": -1.8840579710144931, "center_x": -4.057971014492754, "center_y": -2.028985507246377, "value_uncond": 5.063229642172422e-05}, {"x": -3.913043478260869, "y": -2.1739130434782608, "x2": -3.6231884057971016, "y2": -1.8840579710144931, "center_x": -3.7681159420289854, "center_y": -2.028985507246377, "value_uncond": 6.563477200651124e-05}, {"x": -3.6231884057971016, "y": -2.1739130434782608, "x2": -3.333333333333334, "y2": -1.8840579710144931, "center_x": -3.4782608695652177, "center_y": -2.028985507246377, "value_uncond": 8.429195978896527e-05}, {"x": -3.333333333333333, "y": -2.1739130434782608, "x2": -3.0434782608695654, "y2": -1.8840579710144931, "center_x": -3.1884057971014492, "center_y": -2.028985507246377, "value_uncond": 0.00010724674899898157}, {"x": -3.0434782608695645, "y": -2.1739130434782608, "x2": -2.753623188405797, "y2": -1.8840579710144931, "center_x": -2.8985507246376807, "center_y": -2.028985507246377, "value_uncond": 0.00013518482263300295}, {"x": -2.753623188405797, "y": -2.1739130434782608, "x2": -2.4637681159420293, "y2": -1.8840579710144931, "center_x": -2.608695652173913, "center_y": -2.028985507246377, "value_uncond": 0.0001688175330188482}, {"x": -2.4637681159420284, "y": -2.1739130434782608, "x2": -2.1739130434782608, "y2": -1.8840579710144931, "center_x": -2.3188405797101446, "center_y": -2.028985507246377, "value_uncond": 0.00020885889596793423}, {"x": -2.1739130434782608, "y": -2.1739130434782608, "x2": -1.8840579710144931, "y2": -1.8840579710144931, "center_x": -2.028985507246377, "center_y": -2.028985507246377, "value_uncond": 0.00025599661397357725}, {"x": -1.8840579710144922, "y": -2.1739130434782608, "x2": -1.5942028985507246, "y2": -1.8840579710144931, "center_x": -1.7391304347826084, "center_y": -2.028985507246377, "value_uncond": 0.0003108574488905764}, {"x": -1.5942028985507246, "y": -2.1739130434782608, "x2": -1.304347826086957, "y2": -1.8840579710144931, "center_x": -1.4492753623188408, "center_y": -2.028985507246377, "value_uncond": 0.0003739677493736574}, {"x": -1.304347826086957, "y": -2.1739130434782608, "x2": -1.0144927536231894, "y2": -1.8840579710144931, "center_x": -1.1594202898550732, "center_y": -2.028985507246377, "value_uncond": 0.00044571047130588027}, {"x": -1.0144927536231876, "y": -2.1739130434782608, "x2": -0.72463768115942, "y2": -1.8840579710144931, "center_x": -0.8695652173913038, "center_y": -2.028985507246377, "value_uncond": 0.0005262805725464293}, {"x": -0.72463768115942, "y": -2.1739130434782608, "x2": -0.43478260869565233, "y2": -1.8840579710144931, "center_x": -0.5797101449275361, "center_y": -2.028985507246377, "value_uncond": 0.0006156411690762544}, {"x": -0.43478260869565233, "y": -2.1739130434782608, "x2": -0.1449275362318847, "y2": -1.8840579710144931, "center_x": -0.2898550724637685, "center_y": -2.028985507246377, "value_uncond": 0.0007134832542172296}, {"x": -0.14492753623188293, "y": -2.1739130434782608, "x2": 0.1449275362318847, "y2": -1.8840579710144931, "center_x": 8.881784197001252e-16, "center_y": -2.028985507246377, "value_uncond": 0.0008191920506017823}, {"x": 0.1449275362318847, "y": -2.1739130434782608, "x2": 0.43478260869565233, "y2": -1.8840579710144931, "center_x": 0.2898550724637685, "center_y": -2.028985507246377, "value_uncond": 0.0009318231346921867}, {"x": 0.43478260869565233, "y": -2.1739130434782608, "x2": 0.72463768115942, "y2": -1.8840579710144931, "center_x": 0.5797101449275361, "center_y": -2.028985507246377, "value_uncond": 0.0010500913051748446}, {"x": 0.72463768115942, "y": -2.1739130434782608, "x2": 1.0144927536231876, "y2": -1.8840579710144931, "center_x": 0.8695652173913038, "center_y": -2.028985507246377, "value_uncond": 0.001172374735623031}, {"x": 1.0144927536231894, "y": -2.1739130434782608, "x2": 1.304347826086957, "y2": -1.8840579710144931, "center_x": 1.1594202898550732, "center_y": -2.028985507246377, "value_uncond": 0.0012967362567683765}, {"x": 1.304347826086957, "y": -2.1739130434782608, "x2": 1.5942028985507246, "y2": -1.8840579710144931, "center_x": 1.4492753623188408, "center_y": -2.028985507246377, "value_uncond": 0.0014209626786384445}, {"x": 1.5942028985507246, "y": -2.1739130434782608, "x2": 1.8840579710144922, "y2": -1.8840579710144931, "center_x": 1.7391304347826084, "center_y": -2.028985507246377, "value_uncond": 0.0015426219385989153}, {"x": 1.884057971014494, "y": -2.1739130434782608, "x2": 2.1739130434782616, "y2": -1.8840579710144931, "center_x": 2.028985507246378, "center_y": -2.028985507246377, "value_uncond": 0.0016591366237270336}, {"x": 2.1739130434782616, "y": -2.1739130434782608, "x2": 2.4637681159420293, "y2": -1.8840579710144931, "center_x": 2.3188405797101455, "center_y": -2.028985507246377, "value_uncond": 0.0017678711604345368}, {"x": 2.4637681159420293, "y": -2.1739130434782608, "x2": 2.753623188405797, "y2": -1.8840579710144931, "center_x": 2.608695652173913, "center_y": -2.028985507246377, "value_uncond": 0.001866228798125751}, {"x": 2.753623188405797, "y": -2.1739130434782608, "x2": 3.0434782608695645, "y2": -1.8840579710144931, "center_x": 2.8985507246376807, "center_y": -2.028985507246377, "value_uncond": 0.00195175354579286}, {"x": 3.0434782608695663, "y": -2.1739130434782608, "x2": 3.333333333333334, "y2": -1.8840579710144931, "center_x": 3.18840579710145, "center_y": -2.028985507246377, "value_uncond": 0.0020222315499640042}, {"x": 3.333333333333334, "y": -2.1739130434782608, "x2": 3.6231884057971016, "y2": -1.8840579710144931, "center_x": 3.4782608695652177, "center_y": -2.028985507246377, "value_uncond": 0.002075786107581996}, {"x": 3.6231884057971016, "y": -2.1739130434782608, "x2": 3.913043478260869, "y2": -1.8840579710144931, "center_x": 3.7681159420289854, "center_y": -2.028985507246377, "value_uncond": 0.0021109606359296495}, {"x": 3.913043478260871, "y": -2.1739130434782608, "x2": 4.202898550724639, "y2": -1.8840579710144931, "center_x": 4.057971014492755, "center_y": -2.028985507246377, "value_uncond": 0.002126784484045035}, {"x": 4.202898550724639, "y": -2.1739130434782608, "x2": 4.492753623188406, "y2": -1.8840579710144931, "center_x": 4.347826086956522, "center_y": -2.028985507246377, "value_uncond": 0.0021228174363324154}, {"x": 4.492753623188406, "y": -2.1739130434782608, "x2": 4.782608695652174, "y2": -1.8840579710144931, "center_x": 4.63768115942029, "center_y": -2.028985507246377, "value_uncond": 0.002099170060588626}, {"x": 4.782608695652174, "y": -2.1739130434782608, "x2": 5.0724637681159415, "y2": -1.8840579710144931, "center_x": 4.927536231884058, "center_y": -2.028985507246377, "value_uncond": 0.0020564985877478664}, {"x": 5.072463768115943, "y": -2.1739130434782608, "x2": 5.362318840579711, "y2": -1.8840579710144931, "center_x": 5.217391304347827, "center_y": -2.028985507246377, "value_uncond": 0.001995974654276386}, {"x": 5.362318840579711, "y": -2.1739130434782608, "x2": 5.6521739130434785, "y2": -1.8840579710144931, "center_x": 5.507246376811595, "center_y": -2.028985507246377, "value_uncond": 0.0019192318543621285}, {"x": 5.6521739130434785, "y": -2.1739130434782608, "x2": 5.942028985507246, "y2": -1.8840579710144931, "center_x": 5.797101449275362, "center_y": -2.028985507246377, "value_uncond": 0.0018282925046500629}, {"x": 5.942028985507246, "y": -2.1739130434782608, "x2": 6.231884057971014, "y2": -1.8840579710144931, "center_x": 6.08695652173913, "center_y": -2.028985507246377, "value_uncond": 0.0017254792022204579}, {"x": 6.2318840579710155, "y": -2.1739130434782608, "x2": 6.521739130434783, "y2": -1.8840579710144931, "center_x": 6.376811594202899, "center_y": -2.028985507246377, "value_uncond": 0.0016133165673480364}, {"x": 6.521739130434785, "y": -2.1739130434782608, "x2": 6.8115942028985526, "y2": -1.8840579710144931, "center_x": 6.666666666666669, "center_y": -2.028985507246377, "value_uncond": 0.0014944289527028226}, {"x": 6.811594202898551, "y": -2.1739130434782608, "x2": 7.101449275362318, "y2": -1.8840579710144931, "center_x": 6.956521739130435, "center_y": -2.028985507246377, "value_uncond": 0.0013714398563909602}, {"x": 7.10144927536232, "y": -2.1739130434782608, "x2": 7.391304347826088, "y2": -1.8840579710144931, "center_x": 7.246376811594204, "center_y": -2.028985507246377, "value_uncond": 0.001246878323511795}, {"x": 7.391304347826086, "y": -2.1739130434782608, "x2": 7.681159420289854, "y2": -1.8840579710144931, "center_x": 7.53623188405797, "center_y": -2.028985507246377, "value_uncond": 0.0011230968206631274}, {"x": 7.681159420289855, "y": -2.1739130434782608, "x2": 7.971014492753623, "y2": -1.8840579710144931, "center_x": 7.826086956521739, "center_y": -2.028985507246377, "value_uncond": 0.0010022040079425468}, {"x": 7.971014492753625, "y": -2.1739130434782608, "x2": 8.260869565217392, "y2": -1.8840579710144931, "center_x": 8.115942028985508, "center_y": -2.028985507246377, "value_uncond": 0.0008860146178878153}, {"x": 8.26086956521739, "y": -2.1739130434782608, "x2": 8.550724637681158, "y2": -1.8840579710144931, "center_x": 8.405797101449274, "center_y": -2.028985507246377, "value_uncond": 0.0007760173900277234}, {"x": 8.55072463768116, "y": -2.1739130434782608, "x2": 8.840579710144928, "y2": -1.8840579710144931, "center_x": 8.695652173913043, "center_y": -2.028985507246377, "value_uncond": 0.0006733608069568906}, {"x": 8.84057971014493, "y": -2.1739130434782608, "x2": 9.130434782608697, "y2": -1.8840579710144931, "center_x": 8.985507246376812, "center_y": -2.028985507246377, "value_uncond": 0.0005788553215053133}, {"x": 9.130434782608695, "y": -2.1739130434782608, "x2": 9.420289855072463, "y2": -1.8840579710144931, "center_x": 9.275362318840578, "center_y": -2.028985507246377, "value_uncond": 0.0004929899208860965}, {"x": 9.420289855072465, "y": -2.1739130434782608, "x2": 9.710144927536232, "y2": -1.8840579710144931, "center_x": 9.565217391304348, "center_y": -2.028985507246377, "value_uncond": 0.0004159602829048383}, {"x": 9.710144927536234, "y": -2.1739130434782608, "x2": 10.000000000000002, "y2": -1.8840579710144931, "center_x": 9.855072463768117, "center_y": -2.028985507246377, "value_uncond": 0.00034770545491085266}, {"x": 10.0, "y": -2.1739130434782608, "x2": 10.289855072463768, "y2": -1.8840579710144931, "center_x": 10.144927536231883, "center_y": -2.028985507246377, "value_uncond": 0.00028794991707613093}, {"x": -10.0, "y": -1.8840579710144922, "x2": -9.710144927536232, "y2": -1.5942028985507246, "center_x": -9.855072463768117, "center_y": -1.7391304347826084, "value_uncond": 4.822237773806992e-08}, {"x": -9.710144927536232, "y": -1.8840579710144922, "x2": -9.420289855072465, "y2": -1.5942028985507246, "center_x": -9.565217391304348, "center_y": -1.7391304347826084, "value_uncond": 7.53422673351565e-08}, {"x": -9.420289855072463, "y": -1.8840579710144922, "x2": -9.130434782608695, "y2": -1.5942028985507246, "center_x": -9.275362318840578, "center_y": -1.7391304347826084, "value_uncond": 1.1662041032756351e-07}, {"x": -9.130434782608695, "y": -1.8840579710144922, "x2": -8.840579710144928, "y2": -1.5942028985507246, "center_x": -8.985507246376812, "center_y": -1.7391304347826084, "value_uncond": 1.7883654013950458e-07}, {"x": -8.840579710144928, "y": -1.8840579710144922, "x2": -8.55072463768116, "y2": -1.5942028985507246, "center_x": -8.695652173913043, "center_y": -1.7391304347826084, "value_uncond": 2.7169632728971814e-07}, {"x": -8.55072463768116, "y": -1.8840579710144922, "x2": -8.260869565217392, "y2": -1.5942028985507246, "center_x": -8.405797101449277, "center_y": -1.7391304347826084, "value_uncond": 4.089376443349696e-07}, {"x": -8.26086956521739, "y": -1.8840579710144922, "x2": -7.971014492753623, "y2": -1.5942028985507246, "center_x": -8.115942028985508, "center_y": -1.7391304347826084, "value_uncond": 6.09784286134387e-07}, {"x": -7.971014492753623, "y": -1.8840579710144922, "x2": -7.681159420289855, "y2": -1.5942028985507246, "center_x": -7.826086956521739, "center_y": -1.7391304347826084, "value_uncond": 9.008265566110717e-07}, {"x": -7.681159420289855, "y": -1.8840579710144922, "x2": -7.391304347826088, "y2": -1.5942028985507246, "center_x": -7.536231884057972, "center_y": -1.7391304347826084, "value_uncond": 1.3184144295521006e-06}, {"x": -7.391304347826087, "y": -1.8840579710144922, "x2": -7.101449275362319, "y2": -1.5942028985507246, "center_x": -7.246376811594203, "center_y": -1.7391304347826084, "value_uncond": 1.9116506501997293e-06}, {"x": -7.101449275362318, "y": -1.8840579710144922, "x2": -6.811594202898551, "y2": -1.5942028985507246, "center_x": -6.956521739130435, "center_y": -1.7391304347826084, "value_uncond": 2.746065707075796e-06}, {"x": -6.811594202898551, "y": -1.8840579710144922, "x2": -6.521739130434783, "y2": -1.5942028985507246, "center_x": -6.666666666666667, "center_y": -1.7391304347826084, "value_uncond": 3.9080412136115375e-06}, {"x": -6.521739130434782, "y": -1.8840579710144922, "x2": -6.231884057971015, "y2": -1.5942028985507246, "center_x": -6.3768115942028984, "center_y": -1.7391304347826084, "value_uncond": 5.510019806584133e-06}, {"x": -6.231884057971014, "y": -1.8840579710144922, "x2": -5.942028985507246, "y2": -1.5942028985507246, "center_x": -6.08695652173913, "center_y": -1.7391304347826084, "value_uncond": 7.696495139530241e-06}, {"x": -5.942028985507246, "y": -1.8840579710144922, "x2": -5.6521739130434785, "y2": -1.5942028985507246, "center_x": -5.797101449275362, "center_y": -1.7391304347826084, "value_uncond": 1.0650712297128669e-05}, {"x": -5.6521739130434785, "y": -1.8840579710144922, "x2": -5.362318840579711, "y2": -1.5942028985507246, "center_x": -5.507246376811595, "center_y": -1.7391304347826084, "value_uncond": 1.4601925287135904e-05}, {"x": -5.36231884057971, "y": -1.8840579710144922, "x2": -5.072463768115942, "y2": -1.5942028985507246, "center_x": -5.217391304347826, "center_y": -1.7391304347826084, "value_uncond": 1.9832954021266523e-05}, {"x": -5.0724637681159415, "y": -1.8840579710144922, "x2": -4.782608695652174, "y2": -1.5942028985507246, "center_x": -4.927536231884058, "center_y": -1.7391304347826084, "value_uncond": 2.6687660404369246e-05}, {"x": -4.782608695652174, "y": -1.8840579710144922, "x2": -4.492753623188406, "y2": -1.5942028985507246, "center_x": -4.63768115942029, "center_y": -1.7391304347826084, "value_uncond": 3.557782665902412e-05}, {"x": -4.492753623188405, "y": -1.8840579710144922, "x2": -4.202898550724638, "y2": -1.5942028985507246, "center_x": -4.3478260869565215, "center_y": -1.7391304347826084, "value_uncond": 4.698877699526274e-05}, {"x": -4.202898550724638, "y": -1.8840579710144922, "x2": -3.91304347826087, "y2": -1.5942028985507246, "center_x": -4.057971014492754, "center_y": -1.7391304347826084, "value_uncond": 6.148294796880874e-05}, {"x": -3.913043478260869, "y": -1.8840579710144922, "x2": -3.6231884057971016, "y2": -1.5942028985507246, "center_x": -3.7681159420289854, "center_y": -1.7391304347826084, "value_uncond": 7.97004986423945e-05}, {"x": -3.6231884057971016, "y": -1.8840579710144922, "x2": -3.333333333333334, "y2": -1.5942028985507246, "center_x": -3.4782608695652177, "center_y": -1.7391304347826084, "value_uncond": 0.00010235597719542227}, {"x": -3.333333333333333, "y": -1.8840579710144922, "x2": -3.0434782608695654, "y2": -1.5942028985507246, "center_x": -3.1884057971014492, "center_y": -1.7391304347826084, "value_uncond": 0.0001302300459297184}, {"x": -3.0434782608695645, "y": -1.8840579710144922, "x2": -2.753623188405797, "y2": -1.5942028985507246, "center_x": -2.8985507246376807, "center_y": -1.7391304347826084, "value_uncond": 0.0001641553317449651}, {"x": -2.753623188405797, "y": -1.8840579710144922, "x2": -2.4637681159420293, "y2": -1.5942028985507246, "center_x": -2.608695652173913, "center_y": -1.7391304347826084, "value_uncond": 0.00020499563188619514}, {"x": -2.4637681159420284, "y": -1.8840579710144922, "x2": -2.1739130434782608, "y2": -1.5942028985507246, "center_x": -2.3188405797101446, "center_y": -1.7391304347826084, "value_uncond": 0.0002536179778744869}, {"x": -2.1739130434782608, "y": -1.8840579710144922, "x2": -1.8840579710144931, "y2": -1.5942028985507246, "center_x": -2.028985507246377, "center_y": -1.7391304347826084, "value_uncond": 0.0003108574488905764}, {"x": -1.8840579710144922, "y": -1.8840579710144922, "x2": -1.5942028985507246, "y2": -1.5942028985507246, "center_x": -1.7391304347826084, "center_y": -1.7391304347826084, "value_uncond": 0.0003774751237167975}, {"x": -1.5942028985507246, "y": -1.8840579710144922, "x2": -1.304347826086957, "y2": -1.5942028985507246, "center_x": -1.4492753623188408, "center_y": -1.7391304347826084, "value_uncond": 0.00045411014908831735}, {"x": -1.304347826086957, "y": -1.8840579710144922, "x2": -1.0144927536231894, "y2": -1.5942028985507246, "center_x": -1.1594202898550732, "center_y": -1.7391304347826084, "value_uncond": 0.0005412275494716625}, {"x": -1.0144927536231876, "y": -1.8840579710144922, "x2": -0.72463768115942, "y2": -1.5942028985507246, "center_x": -0.8695652173913038, "center_y": -1.7391304347826084, "value_uncond": 0.0006390640627744426}, {"x": -0.72463768115942, "y": -1.8840579710144922, "x2": -0.43478260869565233, "y2": -1.5942028985507246, "center_x": -0.5797101449275361, "center_y": -1.7391304347826084, "value_uncond": 0.000747574900622746}, {"x": -0.43478260869565233, "y": -1.8840579710144922, "x2": -0.1449275362318847, "y2": -1.5942028985507246, "center_x": -0.2898550724637685, "center_y": -1.7391304347826084, "value_uncond": 0.0008663848352892936}, {"x": -0.14492753623188293, "y": -1.8840579710144922, "x2": 0.1449275362318847, "y2": -1.5942028985507246, "center_x": 8.881784197001252e-16, "center_y": -1.7391304347826084, "value_uncond": 0.0009947473407901947}, {"x": 0.1449275362318847, "y": -1.8840579710144922, "x2": 0.43478260869565233, "y2": -1.5942028985507246, "center_x": 0.2898550724637685, "center_y": -1.7391304347826084, "value_uncond": 0.001131515600817794}, {"x": 0.43478260869565233, "y": -1.8840579710144922, "x2": 0.72463768115942, "y2": -1.5942028985507246, "center_x": 0.5797101449275361, "center_y": -1.7391304347826084, "value_uncond": 0.0012751289915987729}, {"x": 0.72463768115942, "y": -1.8840579710144922, "x2": 1.0144927536231876, "y2": -1.5942028985507246, "center_x": 0.8695652173913038, "center_y": -1.7391304347826084, "value_uncond": 0.0014236181244848623}, {"x": 1.0144927536231894, "y": -1.8840579710144922, "x2": 1.304347826086957, "y2": -1.5942028985507246, "center_x": 1.1594202898550732, "center_y": -1.7391304347826084, "value_uncond": 0.001574630689078329}, {"x": 1.304347826086957, "y": -1.8840579710144922, "x2": 1.5942028985507246, "y2": -1.5942028985507246, "center_x": 1.4492753623188408, "center_y": -1.7391304347826084, "value_uncond": 0.0017254792022204585}, {"x": 1.5942028985507246, "y": -1.8840579710144922, "x2": 1.8840579710144922, "y2": -1.5942028985507246, "center_x": 1.7391304347826084, "center_y": -1.7391304347826084, "value_uncond": 0.0018732104030289617}, {"x": 1.884057971014494, "y": -1.8840579710144922, "x2": 2.1739130434782616, "y2": -1.5942028985507246, "center_x": 2.028985507246378, "center_y": -1.7391304347826084, "value_uncond": 0.002014694531334479}, {"x": 2.1739130434782616, "y": -1.8840579710144922, "x2": 2.4637681159420293, "y2": -1.5942028985507246, "center_x": 2.3188405797101455, "center_y": -1.7391304347826084, "value_uncond": 0.002146731202298736}, {"x": 2.4637681159420293, "y": -1.8840579710144922, "x2": 2.753623188405797, "y2": -1.5942028985507246, "center_x": 2.608695652173913, "center_y": -1.7391304347826084, "value_uncond": 0.0022661671739586985}, {"x": 2.753623188405797, "y": -1.8840579710144922, "x2": 3.0434782608695645, "y2": -1.5942028985507246, "center_x": 2.8985507246376807, "center_y": -1.7391304347826084, "value_uncond": 0.0023700201291370505}, {"x": 3.0434782608695663, "y": -1.8840579710144922, "x2": 3.333333333333334, "y2": -1.5942028985507246, "center_x": 3.18840579710145, "center_y": -1.7391304347826084, "value_uncond": 0.002455601778985758}, {"x": 3.333333333333334, "y": -1.8840579710144922, "x2": 3.6231884057971016, "y2": -1.5942028985507246, "center_x": 3.4782608695652177, "center_y": -1.7391304347826084, "value_uncond": 0.0025206332374069643}, {"x": 3.6231884057971016, "y": -1.8840579710144922, "x2": 3.913043478260869, "y2": -1.5942028985507246, "center_x": 3.7681159420289854, "center_y": -1.7391304347826084, "value_uncond": 0.002563345771679817}, {"x": 3.913043478260871, "y": -1.8840579710144922, "x2": 4.202898550724639, "y2": -1.5942028985507246, "center_x": 4.057971014492755, "center_y": -1.7391304347826084, "value_uncond": 0.002582560717457531}, {"x": 4.202898550724639, "y": -1.8840579710144922, "x2": 4.492753623188406, "y2": -1.5942028985507246, "center_x": 4.347826086956522, "center_y": -1.7391304347826084, "value_uncond": 0.0025777435196343624}, {"x": 4.492753623188406, "y": -1.8840579710144922, "x2": 4.782608695652174, "y2": -1.5942028985507246, "center_x": 4.63768115942029, "center_y": -1.7391304347826084, "value_uncond": 0.0025490284410144945}, {"x": 4.782608695652174, "y": -1.8840579710144922, "x2": 5.0724637681159415, "y2": -1.5942028985507246, "center_x": 4.927536231884058, "center_y": -1.7391304347826084, "value_uncond": 0.0024972123447709275}, {"x": 5.072463768115943, "y": -1.8840579710144922, "x2": 5.362318840579711, "y2": -1.5942028985507246, "center_x": 5.217391304347827, "center_y": -1.7391304347826084, "value_uncond": 0.0024237179525454537}, {"x": 5.362318840579711, "y": -1.8840579710144922, "x2": 5.6521739130434785, "y2": -1.5942028985507246, "center_x": 5.507246376811595, "center_y": -1.7391304347826084, "value_uncond": 0.0023305289426137506}, {"x": 5.6521739130434785, "y": -1.8840579710144922, "x2": 5.942028985507246, "y2": -1.5942028985507246, "center_x": 5.797101449275362, "center_y": -1.7391304347826084, "value_uncond": 0.002220101020085922}, {"x": 5.942028985507246, "y": -1.8840579710144922, "x2": 6.231884057971014, "y2": -1.5942028985507246, "center_x": 6.08695652173913, "center_y": -1.7391304347826084, "value_uncond": 0.0020952545214967607}, {"x": 6.2318840579710155, "y": -1.8840579710144922, "x2": 6.521739130434783, "y2": -1.5942028985507246, "center_x": 6.376811594202899, "center_y": -1.7391304347826084, "value_uncond": 0.001959055100746278}, {"x": 6.521739130434785, "y": -1.8840579710144922, "x2": 6.8115942028985526, "y2": -1.5942028985507246, "center_x": 6.666666666666669, "center_y": -1.7391304347826084, "value_uncond": 0.0018146895170783953}, {"x": 6.811594202898551, "y": -1.8840579710144922, "x2": 7.101449275362318, "y2": -1.5942028985507246, "center_x": 6.956521739130435, "center_y": -1.7391304347826084, "value_uncond": 0.0016653434920375757}, {"x": 7.10144927536232, "y": -1.8840579710144922, "x2": 7.391304347826088, "y2": -1.5942028985507246, "center_x": 7.246376811594204, "center_y": -1.7391304347826084, "value_uncond": 0.001514088052601515}, {"x": 7.391304347826086, "y": -1.8840579710144922, "x2": 7.681159420289854, "y2": -1.5942028985507246, "center_x": 7.53623188405797, "center_y": -1.7391304347826084, "value_uncond": 0.0013637798059488858}, {"x": 7.681159420289855, "y": -1.8840579710144922, "x2": 7.971014492753623, "y2": -1.5942028985507246, "center_x": 7.826086956521739, "center_y": -1.7391304347826084, "value_uncond": 0.0012169793043008256}, {"x": 7.971014492753625, "y": -1.8840579710144922, "x2": 8.260869565217392, "y2": -1.5942028985507246, "center_x": 8.115942028985508, "center_y": -1.7391304347826084, "value_uncond": 0.0010758901827693436}, {"x": 8.26086956521739, "y": -1.8840579710144922, "x2": 8.550724637681158, "y2": -1.5942028985507246, "center_x": 8.405797101449274, "center_y": -1.7391304347826084, "value_uncond": 0.0009423202221871583}, {"x": 8.55072463768116, "y": -1.8840579710144922, "x2": 8.840579710144928, "y2": -1.5942028985507246, "center_x": 8.695652173913043, "center_y": -1.7391304347826084, "value_uncond": 0.0008176640283809529}, {"x": 8.84057971014493, "y": -1.8840579710144922, "x2": 9.130434782608697, "y2": -1.5942028985507246, "center_x": 8.985507246376812, "center_y": -1.7391304347826084, "value_uncond": 0.0007029057366299728}, {"x": 9.130434782608695, "y": -1.8840579710144922, "x2": 9.420289855072463, "y2": -1.5942028985507246, "center_x": 9.275362318840578, "center_y": -1.7391304347826084, "value_uncond": 0.0005986391255598276}, {"x": 9.420289855072465, "y": -1.8840579710144922, "x2": 9.710144927536232, "y2": -1.5942028985507246, "center_x": 9.565217391304348, "center_y": -1.7391304347826084, "value_uncond": 0.0005051018073111961}, {"x": 9.710144927536234, "y": -1.8840579710144922, "x2": 10.000000000000002, "y2": -1.5942028985507246, "center_x": 9.855072463768117, "center_y": -1.7391304347826084, "value_uncond": 0.00042221976689926533}, {"x": 10.0, "y": -1.8840579710144922, "x2": 10.289855072463768, "y2": -1.5942028985507246, "center_x": 10.144927536231883, "center_y": -1.7391304347826084, "value_uncond": 0.00034965843977834024}, {"x": -10.0, "y": -1.5942028985507246, "x2": -9.710144927536232, "y2": -1.304347826086957, "center_x": -9.855072463768117, "center_y": -1.4492753623188408, "value_uncond": 5.801248815659017e-08}, {"x": -9.710144927536232, "y": -1.5942028985507246, "x2": -9.420289855072465, "y2": -1.304347826086957, "center_x": -9.565217391304348, "center_y": -1.4492753623188408, "value_uncond": 9.063825959002471e-08}, {"x": -9.420289855072463, "y": -1.5942028985507246, "x2": -9.130434782608695, "y2": -1.304347826086957, "center_x": -9.275362318840578, "center_y": -1.4492753623188408, "value_uncond": 1.4029669398909313e-07}, {"x": -9.130434782608695, "y": -1.5942028985507246, "x2": -8.840579710144928, "y2": -1.304347826086957, "center_x": -8.985507246376812, "center_y": -1.4492753623188408, "value_uncond": 2.1514394672036343e-07}, {"x": -8.840579710144928, "y": -1.5942028985507246, "x2": -8.55072463768116, "y2": -1.304347826086957, "center_x": -8.695652173913043, "center_y": -1.4492753623188408, "value_uncond": 3.268561341934916e-07}, {"x": -8.55072463768116, "y": -1.5942028985507246, "x2": -8.260869565217392, "y2": -1.304347826086957, "center_x": -8.405797101449277, "center_y": -1.4492753623188408, "value_uncond": 4.919601927890292e-07}, {"x": -8.26086956521739, "y": -1.5942028985507246, "x2": -7.971014492753623, "y2": -1.304347826086957, "center_x": -8.115942028985508, "center_y": -1.4492753623188408, "value_uncond": 7.33582733510017e-07}, {"x": -7.971014492753623, "y": -1.5942028985507246, "x2": -7.681159420289855, "y2": -1.304347826086957, "center_x": -7.826086956521739, "center_y": -1.4492753623188408, "value_uncond": 1.0837124255962345e-06}, {"x": -7.681159420289855, "y": -1.5942028985507246, "x2": -7.391304347826088, "y2": -1.304347826086957, "center_x": -7.536231884057972, "center_y": -1.4492753623188408, "value_uncond": 1.586079016993117e-06}, {"x": -7.391304347826087, "y": -1.5942028985507246, "x2": -7.101449275362319, "y2": -1.304347826086957, "center_x": -7.246376811594203, "center_y": -1.4492753623188408, "value_uncond": 2.299754095632208e-06}, {"x": -7.101449275362318, "y": -1.5942028985507246, "x2": -6.811594202898551, "y2": -1.304347826086957, "center_x": -6.956521739130435, "center_y": -1.4492753623188408, "value_uncond": 3.3035721542860862e-06}, {"x": -6.811594202898551, "y": -1.5942028985507246, "x2": -6.521739130434783, "y2": -1.304347826086957, "center_x": -6.666666666666667, "center_y": -1.4492753623188408, "value_uncond": 4.701452007438475e-06}, {"x": -6.521739130434782, "y": -1.5942028985507246, "x2": -6.231884057971015, "y2": -1.304347826086957, "center_x": -6.3768115942028984, "center_y": -1.4492753623188408, "value_uncond": 6.628664403656853e-06}, {"x": -6.231884057971014, "y": -1.5942028985507246, "x2": -5.942028985507246, "y2": -1.304347826086957, "center_x": -6.08695652173913, "center_y": -1.4492753623188408, "value_uncond": 9.259038107877462e-06}, {"x": -5.942028985507246, "y": -1.5942028985507246, "x2": -5.6521739130434785, "y2": -1.304347826086957, "center_x": -5.797101449275362, "center_y": -1.4492753623188408, "value_uncond": 1.2813020634373129e-05}, {"x": -5.6521739130434785, "y": -1.5942028985507246, "x2": -5.362318840579711, "y2": -1.304347826086957, "center_x": -5.507246376811595, "center_y": -1.4492753623188408, "value_uncond": 1.7566409155196697e-05}, {"x": -5.36231884057971, "y": -1.5942028985507246, "x2": -5.072463768115942, "y2": -1.304347826086957, "center_x": -5.217391304347826, "center_y": -1.4492753623188408, "value_uncond": 2.38594416998354e-05}, {"x": -5.0724637681159415, "y": -1.5942028985507246, "x2": -4.782608695652174, "y2": -1.304347826086957, "center_x": -4.927536231884058, "center_y": -1.4492753623188408, "value_uncond": 3.21057910405215e-05}, {"x": -4.782608695652174, "y": -1.5942028985507246, "x2": -4.492753623188406, "y2": -1.304347826086957, "center_x": -4.63768115942029, "center_y": -1.4492753623188408, "value_uncond": 4.28008394547585e-05}, {"x": -4.492753623188405, "y": -1.5942028985507246, "x2": -4.202898550724638, "y2": -1.304347826086957, "center_x": -4.3478260869565215, "center_y": -1.4492753623188408, "value_uncond": 5.652844170681153e-05}, {"x": -4.202898550724638, "y": -1.5942028985507246, "x2": -3.91304347826087, "y2": -1.304347826086957, "center_x": -4.057971014492754, "center_y": -1.4492753623188408, "value_uncond": 7.396522026032139e-05}, {"x": -3.913043478260869, "y": -1.5942028985507246, "x2": -3.6231884057971016, "y2": -1.304347826086957, "center_x": -3.7681159420289854, "center_y": -1.4492753623188408, "value_uncond": 9.588129931461353e-05}, {"x": -3.6231884057971016, "y": -1.5942028985507246, "x2": -3.333333333333334, "y2": -1.304347826086957, "center_x": -3.4782608695652177, "center_y": -1.4492753623188408, "value_uncond": 0.00012313629466922468}, {"x": -3.333333333333333, "y": -1.5942028985507246, "x2": -3.0434782608695654, "y2": -1.304347826086957, "center_x": -3.1884057971014492, "center_y": -1.4492753623188408, "value_uncond": 0.00015666935873976176}, {"x": -3.0434782608695645, "y": -1.5942028985507246, "x2": -2.753623188405797, "y2": -1.304347826086957, "center_x": -2.8985507246376807, "center_y": -1.4492753623188408, "value_uncond": 0.00019748215839588876}, {"x": -2.753623188405797, "y": -1.5942028985507246, "x2": -2.4637681159420293, "y2": -1.304347826086957, "center_x": -2.608695652173913, "center_y": -1.4492753623188408, "value_uncond": 0.0002466138590582609}, {"x": -2.4637681159420284, "y": -1.5942028985507246, "x2": -2.1739130434782608, "y2": -1.304347826086957, "center_x": -2.3188405797101446, "center_y": -1.4492753623188408, "value_uncond": 0.00030510751704652234}, {"x": -2.1739130434782608, "y": -1.5942028985507246, "x2": -1.8840579710144931, "y2": -1.304347826086957, "center_x": -2.028985507246377, "center_y": -1.4492753623188408, "value_uncond": 0.0003739677493736574}, {"x": -1.8840579710144922, "y": -1.5942028985507246, "x2": -1.5942028985507246, "y2": -1.304347826086957, "center_x": -1.7391304347826084, "center_y": -1.4492753623188408, "value_uncond": 0.00045411014908831735}, {"x": -1.5942028985507246, "y": -1.5942028985507246, "x2": -1.304347826086957, "y2": -1.304347826086957, "center_x": -1.4492753623188408, "center_y": -1.4492753623188408, "value_uncond": 0.000546303622539451}, {"x": -1.304347826086957, "y": -1.5942028985507246, "x2": -1.0144927536231894, "y2": -1.304347826086957, "center_x": -1.1594202898550732, "center_y": -1.4492753623188408, "value_uncond": 0.0006511076034925066}, {"x": -1.0144927536231876, "y": -1.5942028985507246, "x2": -0.72463768115942, "y2": -1.304347826086957, "center_x": -0.8695652173913038, "center_y": -1.4492753623188408, "value_uncond": 0.0007688068924012487}, {"x": -0.72463768115942, "y": -1.5942028985507246, "x2": -0.43478260869565233, "y2": -1.304347826086957, "center_x": -0.5797101449275361, "center_y": -1.4492753623188408, "value_uncond": 0.0008993476079530388}, {"x": -0.43478260869565233, "y": -1.5942028985507246, "x2": -0.1449275362318847, "y2": -1.304347826086957, "center_x": -0.2898550724637685, "center_y": -1.4492753623188408, "value_uncond": 0.001042278343661805}, {"x": -0.14492753623188293, "y": -1.5942028985507246, "x2": 0.1449275362318847, "y2": -1.304347826086957, "center_x": 8.881784197001252e-16, "center_y": -1.4492753623188408, "value_uncond": 0.0011967010137874715}, {"x": 0.1449275362318847, "y": -1.5942028985507246, "x2": 0.43478260869565233, "y2": -1.304347826086957, "center_x": 0.2898550724637685, "center_y": -1.4492753623188408, "value_uncond": 0.0013612359752973578}, {"x": 0.43478260869565233, "y": -1.5942028985507246, "x2": 0.72463768115942, "y2": -1.304347826086957, "center_x": 0.5797101449275361, "center_y": -1.4492753623188408, "value_uncond": 0.0015340057664732067}, {"x": 0.72463768115942, "y": -1.5942028985507246, "x2": 1.0144927536231876, "y2": -1.304347826086957, "center_x": 0.8695652173913038, "center_y": -1.4492753623188408, "value_uncond": 0.0017126411732490106}, {"x": 1.0144927536231894, "y": -1.5942028985507246, "x2": 1.304347826086957, "y2": -1.304347826086957, "center_x": 1.1594202898550732, "center_y": -1.4492753623188408, "value_uncond": 0.0018943123190095946}, {"x": 1.304347826086957, "y": -1.5942028985507246, "x2": 1.5942028985507246, "y2": -1.304347826086957, "center_x": 1.4492753623188408, "center_y": -1.4492753623188408, "value_uncond": 0.0020757861075819967}, {"x": 1.5942028985507246, "y": -1.5942028985507246, "x2": 1.8840579710144922, "y2": -1.304347826086957, "center_x": 1.7391304347826084, "center_y": -1.4492753623188408, "value_uncond": 0.0022535097068581106}, {"x": 1.884057971014494, "y": -1.5942028985507246, "x2": 2.1739130434782616, "y2": -1.304347826086957, "center_x": 2.028985507246378, "center_y": -1.4492753623188408, "value_uncond": 0.0024237179525454533}, {"x": 2.1739130434782616, "y": -1.5942028985507246, "x2": 2.4637681159420293, "y2": -1.304347826086957, "center_x": 2.3188405797101455, "center_y": -1.4492753623188408, "value_uncond": 0.0025825607174575303}, {"x": 2.4637681159420293, "y": -1.5942028985507246, "x2": 2.753623188405797, "y2": -1.304347826086957, "center_x": 2.608695652173913, "center_y": -1.4492753623188408, "value_uncond": 0.002726244588232826}, {"x": 2.753623188405797, "y": -1.5942028985507246, "x2": 3.0434782608695645, "y2": -1.304347826086957, "center_x": 2.8985507246376807, "center_y": -1.4492753623188408, "value_uncond": 0.0028511817774572105}, {"x": 3.0434782608695663, "y": -1.5942028985507246, "x2": 3.333333333333334, "y2": -1.304347826086957, "center_x": 3.18840579710145, "center_y": -1.4492753623188408, "value_uncond": 0.0029541382196973053}, {"x": 3.333333333333334, "y": -1.5942028985507246, "x2": 3.6231884057971016, "y2": -1.304347826086957, "center_x": 3.4782608695652177, "center_y": -1.4492753623188408, "value_uncond": 0.0030323723692441797}, {"x": 3.6231884057971016, "y": -1.5942028985507246, "x2": 3.913043478260869, "y2": -1.304347826086957, "center_x": 3.7681159420289854, "center_y": -1.4492753623188408, "value_uncond": 0.0030837564051393158}, {"x": 3.913043478260871, "y": -1.5942028985507246, "x2": 4.202898550724639, "y2": -1.304347826086957, "center_x": 4.057971014492755, "center_y": -1.4492753623188408, "value_uncond": 0.003106872370519827}, {"x": 4.202898550724639, "y": -1.5942028985507246, "x2": 4.492753623188406, "y2": -1.304347826086957, "center_x": 4.347826086956522, "center_y": -1.4492753623188408, "value_uncond": 0.003101077184865929}, {"x": 4.492753623188406, "y": -1.5942028985507246, "x2": 4.782608695652174, "y2": -1.304347826086957, "center_x": 4.63768115942029, "center_y": -1.4492753623188408, "value_uncond": 0.00306653236902547}, {"x": 4.782608695652174, "y": -1.5942028985507246, "x2": 5.0724637681159415, "y2": -1.304347826086957, "center_x": 4.927536231884058, "center_y": -1.4492753623188408, "value_uncond": 0.003004196565387203}, {"x": 5.072463768115943, "y": -1.5942028985507246, "x2": 5.362318840579711, "y2": -1.304347826086957, "center_x": 5.217391304347827, "center_y": -1.4492753623188408, "value_uncond": 0.002915781336637707}, {"x": 5.362318840579711, "y": -1.5942028985507246, "x2": 5.6521739130434785, "y2": -1.304347826086957, "center_x": 5.507246376811595, "center_y": -1.4492753623188408, "value_uncond": 0.0028036730875515294}, {"x": 5.6521739130434785, "y": -1.5942028985507246, "x2": 5.942028985507246, "y2": -1.304347826086957, "center_x": 5.797101449275362, "center_y": -1.4492753623188408, "value_uncond": 0.0026708260806577767}, {"x": 5.942028985507246, "y": -1.5942028985507246, "x2": 6.231884057971014, "y2": -1.304347826086957, "center_x": 6.08695652173913, "center_y": -1.4492753623188408, "value_uncond": 0.002520633237406963}, {"x": 6.2318840579710155, "y": -1.5942028985507246, "x2": 6.521739130434783, "y2": -1.304347826086957, "center_x": 6.376811594202899, "center_y": -1.4492753623188408, "value_uncond": 0.0023567826009630436}, {"x": 6.521739130434785, "y": -1.5942028985507246, "x2": 6.8115942028985526, "y2": -1.304347826086957, "center_x": 6.666666666666669, "center_y": -1.4492753623188408, "value_uncond": 0.0021831079066490715}, {"x": 6.811594202898551, "y": -1.5942028985507246, "x2": 7.101449275362318, "y2": -1.304347826086957, "center_x": 6.956521739130435, "center_y": -1.4492753623188408, "value_uncond": 0.0020034416414148196}, {"x": 7.10144927536232, "y": -1.5942028985507246, "x2": 7.391304347826088, "y2": -1.304347826086957, "center_x": 7.246376811594204, "center_y": -1.4492753623188408, "value_uncond": 0.001821478312344528}, {"x": 7.391304347826086, "y": -1.5942028985507246, "x2": 7.681159420289854, "y2": -1.304347826086957, "center_x": 7.53623188405797, "center_y": -1.4492753623188408, "value_uncond": 0.0016406544752011858}, {"x": 7.681159420289855, "y": -1.5942028985507246, "x2": 7.971014492753623, "y2": -1.304347826086957, "center_x": 7.826086956521739, "center_y": -1.4492753623188408, "value_uncond": 0.0014640505256925686}, {"x": 7.971014492753625, "y": -1.5942028985507246, "x2": 8.260869565217392, "y2": -1.304347826086957, "center_x": 8.115942028985508, "center_y": -1.4492753623188408, "value_uncond": 0.0012943174810814762}, {"x": 8.26086956521739, "y": -1.5942028985507246, "x2": 8.550724637681158, "y2": -1.304347826086957, "center_x": 8.405797101449274, "center_y": -1.4492753623188408, "value_uncond": 0.001133630137988626}, {"x": 8.55072463768116, "y": -1.5942028985507246, "x2": 8.840579710144928, "y2": -1.304347826086957, "center_x": 8.695652173913043, "center_y": -1.4492753623188408, "value_uncond": 0.0009836662352107881}, {"x": 8.84057971014493, "y": -1.5942028985507246, "x2": 9.130434782608697, "y2": -1.304347826086957, "center_x": 8.985507246376812, "center_y": -1.4492753623188408, "value_uncond": 0.0008456097072387457}, {"x": 9.130434782608695, "y": -1.5942028985507246, "x2": 9.420289855072463, "y2": -1.304347826086957, "center_x": 9.275362318840578, "center_y": -1.4492753623188408, "value_uncond": 0.0007201748816751926}, {"x": 9.420289855072465, "y": -1.5942028985507246, "x2": 9.710144927536232, "y2": -1.304347826086957, "center_x": 9.565217391304348, "center_y": -1.4492753623188408, "value_uncond": 0.0006076476106938192}, {"x": 9.710144927536234, "y": -1.5942028985507246, "x2": 10.000000000000002, "y2": -1.304347826086957, "center_x": 9.855072463768117, "center_y": -1.4492753623188408, "value_uncond": 0.0005079388527825467}, {"x": 10.0, "y": -1.5942028985507246, "x2": 10.289855072463768, "y2": -1.304347826086957, "center_x": 10.144927536231883, "center_y": -1.4492753623188408, "value_uncond": 0.00042064612007878583}, {"x": -10.0, "y": -1.304347826086957, "x2": -9.710144927536232, "y2": -1.0144927536231894, "center_x": -9.855072463768117, "center_y": -1.1594202898550732, "value_uncond": 6.914172005796482e-08}, {"x": -9.710144927536232, "y": -1.304347826086957, "x2": -9.420289855072465, "y2": -1.0144927536231894, "center_x": -9.565217391304348, "center_y": -1.1594202898550732, "value_uncond": 1.080264848182127e-07}, {"x": -9.420289855072463, "y": -1.304347826086957, "x2": -9.130434782608695, "y2": -1.0144927536231894, "center_x": -9.275362318840578, "center_y": -1.1594202898550732, "value_uncond": 1.6721149271632956e-07}, {"x": -9.130434782608695, "y": -1.304347826086957, "x2": -8.840579710144928, "y2": -1.0144927536231894, "center_x": -8.985507246376812, "center_y": -1.1594202898550732, "value_uncond": 2.564175922975858e-07}, {"x": -8.840579710144928, "y": -1.304347826086957, "x2": -8.55072463768116, "y2": -1.0144927536231894, "center_x": -8.695652173913043, "center_y": -1.1594202898550732, "value_uncond": 3.895608695257747e-07}, {"x": -8.55072463768116, "y": -1.304347826086957, "x2": -8.260869565217392, "y2": -1.0144927536231894, "center_x": -8.405797101449277, "center_y": -1.1594202898550732, "value_uncond": 5.863388213528535e-07}, {"x": -8.26086956521739, "y": -1.304347826086957, "x2": -7.971014492753623, "y2": -1.0144927536231894, "center_x": -8.115942028985508, "center_y": -1.1594202898550732, "value_uncond": 8.743147141490828e-07}, {"x": -7.971014492753623, "y": -1.304347826086957, "x2": -7.681159420289855, "y2": -1.0144927536231894, "center_x": -7.826086956521739, "center_y": -1.1594202898550732, "value_uncond": 1.291613987520393e-06}, {"x": -7.681159420289855, "y": -1.304347826086957, "x2": -7.391304347826088, "y2": -1.0144927536231894, "center_x": -7.536231884057972, "center_y": -1.1594202898550732, "value_uncond": 1.8903555918294522e-06}, {"x": -7.391304347826087, "y": -1.304347826086957, "x2": -7.101449275362319, "y2": -1.0144927536231894, "center_x": -7.246376811594203, "center_y": -1.1594202898550732, "value_uncond": 2.740943526730923e-06}, {"x": -7.101449275362318, "y": -1.304347826086957, "x2": -6.811594202898551, "y2": -1.0144927536231894, "center_x": -6.956521739130435, "center_y": -1.1594202898550732, "value_uncond": 3.937336051961573e-06}, {"x": -6.811594202898551, "y": -1.304347826086957, "x2": -6.521739130434783, "y2": -1.0144927536231894, "center_x": -6.666666666666667, "center_y": -1.1594202898550732, "value_uncond": 5.603387975479224e-06}, {"x": -6.521739130434782, "y": -1.304347826086957, "x2": -6.231884057971015, "y2": -1.0144927536231894, "center_x": -6.3768115942028984, "center_y": -1.1594202898550732, "value_uncond": 7.900320657144142e-06}, {"x": -6.231884057971014, "y": -1.304347826086957, "x2": -5.942028985507246, "y2": -1.0144927536231894, "center_x": -6.08695652173913, "center_y": -1.1594202898550732, "value_uncond": 1.1035310520260253e-05}, {"x": -5.942028985507246, "y": -1.304347826086957, "x2": -5.6521739130434785, "y2": -1.0144927536231894, "center_x": -5.797101449275362, "center_y": -1.1594202898550732, "value_uncond": 1.5271096171697562e-05}, {"x": -5.6521739130434785, "y": -1.304347826086957, "x2": -5.362318840579711, "y2": -1.0144927536231894, "center_x": -5.507246376811595, "center_y": -1.1594202898550732, "value_uncond": 2.0936384265295586e-05}, {"x": -5.36231884057971, "y": -1.304347826086957, "x2": -5.072463768115942, "y2": -1.0144927536231894, "center_x": -5.217391304347826, "center_y": -1.1594202898550732, "value_uncond": 2.8436684775465024e-05}, {"x": -5.0724637681159415, "y": -1.304347826086957, "x2": -4.782608695652174, "y2": -1.0144927536231894, "center_x": -4.927536231884058, "center_y": -1.1594202898550732, "value_uncond": 3.826503028746719e-05}, {"x": -4.782608695652174, "y": -1.304347826086957, "x2": -4.492753623188406, "y2": -1.0144927536231894, "center_x": -4.63768115942029, "center_y": -1.1594202898550732, "value_uncond": 5.1011838206953956e-05}, {"x": -4.492753623188405, "y": -1.304347826086957, "x2": -4.202898550724638, "y2": -1.0144927536231894, "center_x": -4.3478260869565215, "center_y": -1.1594202898550732, "value_uncond": 6.737297116537058e-05}, {"x": -4.202898550724638, "y": -1.304347826086957, "x2": -3.91304347826087, "y2": -1.0144927536231894, "center_x": -4.057971014492754, "center_y": -1.1594202898550732, "value_uncond": 8.815485623475879e-05}, {"x": -3.913043478260869, "y": -1.304347826086957, "x2": -3.6231884057971016, "y2": -1.0144927536231894, "center_x": -3.7681159420289854, "center_y": -1.1594202898550732, "value_uncond": 0.0001142753597830617}, {"x": -3.6231884057971016, "y": -1.304347826086957, "x2": -3.333333333333334, "y2": -1.0144927536231894, "center_x": -3.4782608695652177, "center_y": -1.1594202898550732, "value_uncond": 0.00014675900802623028}, {"x": -3.333333333333333, "y": -1.304347826086957, "x2": -3.0434782608695654, "y2": -1.0144927536231894, "center_x": -3.1884057971014492, "center_y": -1.1594202898550732, "value_uncond": 0.00018672512225998927}, {"x": -3.0434782608695645, "y": -1.304347826086957, "x2": -2.753623188405797, "y2": -1.0144927536231894, "center_x": -2.8985507246376807, "center_y": -1.1594202898550732, "value_uncond": 0.000235367531132176}, {"x": -2.753623188405797, "y": -1.304347826086957, "x2": -2.4637681159420293, "y2": -1.0144927536231894, "center_x": -2.608695652173913, "center_y": -1.1594202898550732, "value_uncond": 0.0002939247556387334}, {"x": -2.4637681159420284, "y": -1.304347826086957, "x2": -2.1739130434782608, "y2": -1.0144927536231894, "center_x": -2.3188405797101446, "center_y": -1.1594202898550732, "value_uncond": 0.0003636399541124481}, {"x": -2.1739130434782608, "y": -1.304347826086957, "x2": -1.8840579710144931, "y2": -1.0144927536231894, "center_x": -2.028985507246377, "center_y": -1.1594202898550732, "value_uncond": 0.00044571047130588027}, {"x": -1.8840579710144922, "y": -1.304347826086957, "x2": -1.5942028985507246, "y2": -1.0144927536231894, "center_x": -1.7391304347826084, "center_y": -1.1594202898550732, "value_uncond": 0.0005412275494716625}, {"x": -1.5942028985507246, "y": -1.304347826086957, "x2": -1.304347826086957, "y2": -1.0144927536231894, "center_x": -1.4492753623188408, "center_y": -1.1594202898550732, "value_uncond": 0.0006511076034925066}, {"x": -1.304347826086957, "y": -1.304347826086957, "x2": -1.0144927536231894, "y2": -1.0144927536231894, "center_x": -1.1594202898550732, "center_y": -1.1594202898550732, "value_uncond": 0.0007760173900277227}, {"x": -1.0144927536231876, "y": -1.304347826086957, "x2": -0.72463768115942, "y2": -1.0144927536231894, "center_x": -0.8695652173913038, "center_y": -1.1594202898550732, "value_uncond": 0.0009162963462204561}, {"x": -0.72463768115942, "y": -1.304347826086957, "x2": -0.43478260869565233, "y2": -1.0144927536231894, "center_x": -0.5797101449275361, "center_y": -1.1594202898550732, "value_uncond": 0.0010718802540591508}, {"x": -0.43478260869565233, "y": -1.304347826086957, "x2": -0.1449275362318847, "y2": -1.0144927536231894, "center_x": -0.2898550724637685, "center_y": -1.1594202898550732, "value_uncond": 0.0012422311083334794}, {"x": -0.14492753623188293, "y": -1.304347826086957, "x2": 0.1449275362318847, "y2": -1.0144927536231894, "center_x": 8.881784197001252e-16, "center_y": -1.1594202898550732, "value_uncond": 0.001426278532736519}, {"x": 0.1449275362318847, "y": -1.304347826086957, "x2": 0.43478260869565233, "y2": -1.0144927536231894, "center_x": 0.2898550724637685, "center_y": -1.1594202898550732, "value_uncond": 0.001622378210753385}, {"x": 0.43478260869565233, "y": -1.304347826086957, "x2": 0.72463768115942, "y2": -1.0144927536231894, "center_x": 0.5797101449275361, "center_y": -1.1594202898550732, "value_uncond": 0.0018282925046500629}, {"x": 0.72463768115942, "y": -1.304347826086957, "x2": 1.0144927536231876, "y2": -1.0144927536231894, "center_x": 0.8695652173913038, "center_y": -1.1594202898550732, "value_uncond": 0.0020411976855896296}, {"x": 1.0144927536231894, "y": -1.304347826086957, "x2": 1.304347826086957, "y2": -1.0144927536231894, "center_x": 1.1594202898550732, "center_y": -1.1594202898550732, "value_uncond": 0.002257720987760061}, {"x": 1.304347826086957, "y": -1.304347826086957, "x2": 1.5942028985507246, "y2": -1.0144927536231894, "center_x": 1.4492753623188408, "center_y": -1.1594202898550732, "value_uncond": 0.002474009071344113}, {"x": 1.5942028985507246, "y": -1.304347826086957, "x2": 1.8840579710144922, "y2": -1.0144927536231894, "center_x": 1.7391304347826084, "center_y": -1.1594202898550732, "value_uncond": 0.0026858275218073005}, {"x": 1.884057971014494, "y": -1.304347826086957, "x2": 2.1739130434782616, "y2": -1.0144927536231894, "center_x": 2.028985507246378, "center_y": -1.1594202898550732, "value_uncond": 0.0028886888581993115}, {"x": 2.1739130434782616, "y": -1.304347826086957, "x2": 2.4637681159420293, "y2": -1.0144927536231894, "center_x": 2.3188405797101455, "center_y": -1.1594202898550732, "value_uncond": 0.0030780043372240864}, {"x": 2.4637681159420293, "y": -1.304347826086957, "x2": 2.753623188405797, "y2": -1.0144927536231894, "center_x": 2.608695652173913, "center_y": -1.1594202898550732, "value_uncond": 0.003249252809504304}, {"x": 2.753623188405797, "y": -1.304347826086957, "x2": 3.0434782608695645, "y2": -1.0144927536231894, "center_x": 2.8985507246376807, "center_y": -1.1594202898550732, "value_uncond": 0.0033981581993035538}, {"x": 3.0434782608695663, "y": -1.304347826086957, "x2": 3.333333333333334, "y2": -1.0144927536231894, "center_x": 3.18840579710145, "center_y": -1.1594202898550732, "value_uncond": 0.0035208660115993097}, {"x": 3.333333333333334, "y": -1.304347826086957, "x2": 3.6231884057971016, "y2": -1.0144927536231894, "center_x": 3.4782608695652177, "center_y": -1.1594202898550732, "value_uncond": 0.0036141087570637355}, {"x": 3.6231884057971016, "y": -1.304347826086957, "x2": 3.913043478260869, "y2": -1.0144927536231894, "center_x": 3.7681159420289854, "center_y": -1.1594202898550732, "value_uncond": 0.0036753504093045447}, {"x": 3.913043478260871, "y": -1.304347826086957, "x2": 4.202898550724639, "y2": -1.0144927536231894, "center_x": 4.057971014492755, "center_y": -1.1594202898550732, "value_uncond": 0.0037029009877747312}, {"x": 4.202898550724639, "y": -1.304347826086957, "x2": 4.492753623188406, "y2": -1.0144927536231894, "center_x": 4.347826086956522, "center_y": -1.1594202898550732, "value_uncond": 0.0036959940420997896}, {"x": 4.492753623188406, "y": -1.304347826086957, "x2": 4.782608695652174, "y2": -1.0144927536231894, "center_x": 4.63768115942029, "center_y": -1.1594202898550732, "value_uncond": 0.003654822079610475}, {"x": 4.782608695652174, "y": -1.304347826086957, "x2": 5.0724637681159415, "y2": -1.0144927536231894, "center_x": 4.927536231884058, "center_y": -1.1594202898550732, "value_uncond": 0.0035805276505711356}, {"x": 5.072463768115943, "y": -1.304347826086957, "x2": 5.362318840579711, "y2": -1.0144927536231894, "center_x": 5.217391304347827, "center_y": -1.1594202898550732, "value_uncond": 0.0034751506672816477}, {"x": 5.362318840579711, "y": -1.304347826086957, "x2": 5.6521739130434785, "y2": -1.0144927536231894, "center_x": 5.507246376811595, "center_y": -1.1594202898550732, "value_uncond": 0.0033415353471874256}, {"x": 5.6521739130434785, "y": -1.304347826086957, "x2": 5.942028985507246, "y2": -1.0144927536231894, "center_x": 5.797101449275362, "center_y": -1.1594202898550732, "value_uncond": 0.003183202704457242}, {"x": 5.942028985507246, "y": -1.304347826086957, "x2": 6.231884057971014, "y2": -1.0144927536231894, "center_x": 6.08695652173913, "center_y": -1.1594202898550732, "value_uncond": 0.003004196565387202}, {"x": 6.2318840579710155, "y": -1.304347826086957, "x2": 6.521739130434783, "y2": -1.0144927536231894, "center_x": 6.376811594202899, "center_y": -1.1594202898550732, "value_uncond": 0.0028089124947273613}, {"x": 6.521739130434785, "y": -1.304347826086957, "x2": 6.8115942028985526, "y2": -1.0144927536231894, "center_x": 6.666666666666669, "center_y": -1.1594202898550732, "value_uncond": 0.0026019196992624204}, {"x": 6.811594202898551, "y": -1.304347826086957, "x2": 7.101449275362318, "y2": -1.0144927536231894, "center_x": 6.956521739130435, "center_y": -1.1594202898550732, "value_uncond": 0.002387785897913383}, {"x": 7.10144927536232, "y": -1.304347826086957, "x2": 7.391304347826088, "y2": -1.0144927536231894, "center_x": 7.246376811594204, "center_y": -1.1594202898550732, "value_uncond": 0.0021709143594019938}, {"x": 7.391304347826086, "y": -1.304347826086957, "x2": 7.681159420289854, "y2": -1.0144927536231894, "center_x": 7.53623188405797, "center_y": -1.1594202898550732, "value_uncond": 0.001955400915230719}, {"x": 7.681159420289855, "y": -1.304347826086957, "x2": 7.971014492753623, "y2": -1.0144927536231894, "center_x": 7.826086956521739, "center_y": -1.1594202898550732, "value_uncond": 0.0017449169103885887}, {"x": 7.971014492753625, "y": -1.304347826086957, "x2": 8.260869565217392, "y2": -1.0144927536231894, "center_x": 8.115942028985508, "center_y": -1.1594202898550732, "value_uncond": 0.001542621938598914}, {"x": 8.26086956521739, "y": -1.304347826086957, "x2": 8.550724637681158, "y2": -1.0144927536231894, "center_x": 8.405797101449274, "center_y": -1.1594202898550732, "value_uncond": 0.0013511080138212909}, {"x": 8.55072463768116, "y": -1.304347826086957, "x2": 8.840579710144928, "y2": -1.0144927536231894, "center_x": 8.695652173913043, "center_y": -1.1594202898550732, "value_uncond": 0.00117237473562303}, {"x": 8.84057971014493, "y": -1.304347826086957, "x2": 9.130434782608697, "y2": -1.0144927536231894, "center_x": 8.985507246376812, "center_y": -1.1594202898550732, "value_uncond": 0.0010078331668585262}, {"x": 9.130434782608695, "y": -1.304347826086957, "x2": 9.420289855072463, "y2": -1.0144927536231894, "center_x": 9.275362318840578, "center_y": -1.1594202898550732, "value_uncond": 0.0008583346731682558}, {"x": 9.420289855072465, "y": -1.304347826086957, "x2": 9.710144927536232, "y2": -1.0144927536231894, "center_x": 9.565217391304348, "center_y": -1.1594202898550732, "value_uncond": 0.0007242199451793476}, {"x": 9.710144927536234, "y": -1.304347826086957, "x2": 10.000000000000002, "y2": -1.0144927536231894, "center_x": 9.855072463768117, "center_y": -1.1594202898550732, "value_uncond": 0.000605382859477733}, {"x": 10.0, "y": -1.304347826086957, "x2": 10.289855072463768, "y2": -1.0144927536231894, "center_x": 10.144927536231883, "center_y": -1.1594202898550732, "value_uncond": 0.0005013437141232592}, {"x": -10.0, "y": -1.0144927536231876, "x2": -9.710144927536232, "y2": -0.72463768115942, "center_x": -9.855072463768117, "center_y": -0.8695652173913038, "value_uncond": 8.164031666641845e-08}, {"x": -9.710144927536232, "y": -1.0144927536231876, "x2": -9.420289855072465, "y2": -0.72463768115942, "center_x": -9.565217391304348, "center_y": -0.8695652173913038, "value_uncond": 1.2755419479766016e-07}, {"x": -9.420289855072463, "y": -1.0144927536231876, "x2": -9.130434782608695, "y2": -0.72463768115942, "center_x": -9.275362318840578, "center_y": -0.8695652173913038, "value_uncond": 1.9743794635396995e-07}, {"x": -9.130434782608695, "y": -1.0144927536231876, "x2": -8.840579710144928, "y2": -0.72463768115942, "center_x": -8.985507246376812, "center_y": -0.8695652173913038, "value_uncond": 3.0276963628422175e-07}, {"x": -8.840579710144928, "y": -1.0144927536231876, "x2": -8.55072463768116, "y2": -0.72463768115942, "center_x": -8.695652173913043, "center_y": -0.8695652173913038, "value_uncond": 4.5998093079354775e-07}, {"x": -8.55072463768116, "y": -1.0144927536231876, "x2": -8.260869565217392, "y2": -0.72463768115942, "center_x": -8.405797101449277, "center_y": -0.8695652173913038, "value_uncond": 6.923300000192465e-07}, {"x": -8.26086956521739, "y": -1.0144927536231876, "x2": -7.971014492753623, "y2": -0.72463768115942, "center_x": -8.115942028985508, "center_y": -0.8695652173913038, "value_uncond": 1.032362661348308e-06}, {"x": -7.971014492753623, "y": -1.0144927536231876, "x2": -7.681159420289855, "y2": -0.72463768115942, "center_x": -7.826086956521739, "center_y": -0.8695652173913038, "value_uncond": 1.5250962062201841e-06}, {"x": -7.681159420289855, "y": -1.0144927536231876, "x2": -7.391304347826088, "y2": -0.72463768115942, "center_x": -7.536231884057972, "center_y": -0.8695652173913038, "value_uncond": 2.2320710129818836e-06}, {"x": -7.391304347826087, "y": -1.0144927536231876, "x2": -7.101449275362319, "y2": -0.72463768115942, "center_x": -7.246376811594203, "center_y": -0.8695652173913038, "value_uncond": 3.2364178574019272e-06}, {"x": -7.101449275362318, "y": -1.0144927536231876, "x2": -6.811594202898551, "y2": -0.72463768115942, "center_x": -6.956521739130435, "center_y": -0.8695652173913038, "value_uncond": 4.649079627101635e-06}, {"x": -6.811594202898551, "y": -1.0144927536231876, "x2": -6.521739130434783, "y2": -0.72463768115942, "center_x": -6.666666666666667, "center_y": -0.8695652173913038, "value_uncond": 6.616300091166552e-06}, {"x": -6.521739130434782, "y": -1.0144927536231876, "x2": -6.231884057971015, "y2": -0.72463768115942, "center_x": -6.3768115942028984, "center_y": -0.8695652173913038, "value_uncond": 9.328444239957765e-06}, {"x": -6.231884057971014, "y": -1.0144927536231876, "x2": -5.942028985507246, "y2": -0.72463768115942, "center_x": -6.08695652173913, "center_y": -0.8695652173913038, "value_uncond": 1.3030139322987851e-05}, {"x": -5.942028985507246, "y": -1.0144927536231876, "x2": -5.6521739130434785, "y2": -0.72463768115942, "center_x": -5.797101449275362, "center_y": -0.8695652173913038, "value_uncond": 1.8031618627010143e-05}, {"x": -5.6521739130434785, "y": -1.0144927536231876, "x2": -5.362318840579711, "y2": -0.72463768115942, "center_x": -5.507246376811595, "center_y": -0.8695652173913038, "value_uncond": 2.4721008384454473e-05}, {"x": -5.36231884057971, "y": -1.0144927536231876, "x2": -5.072463768115942, "y2": -0.72463768115942, "center_x": -5.217391304347826, "center_y": -0.8695652173913038, "value_uncond": 3.3577121715597955e-05}, {"x": -5.0724637681159415, "y": -1.0144927536231876, "x2": -4.782608695652174, "y2": -0.72463768115942, "center_x": -4.927536231884058, "center_y": -0.8695652173913038, "value_uncond": 4.51821156213635e-05}, {"x": -4.782608695652174, "y": -1.0144927536231876, "x2": -4.492753623188406, "y2": -0.72463768115942, "center_x": -4.63768115942029, "center_y": -0.8695652173913038, "value_uncond": 6.0233135962779376e-05}, {"x": -4.492753623188405, "y": -1.0144927536231876, "x2": -4.202898550724638, "y2": -0.72463768115942, "center_x": -4.3478260869565215, "center_y": -0.8695652173913038, "value_uncond": 7.955183492813199e-05}, {"x": -4.202898550724638, "y": -1.0144927536231876, "x2": -3.91304347826087, "y2": -0.72463768115942, "center_x": -4.057971014492754, "center_y": -0.8695652173913038, "value_uncond": 0.0001040904156369658}, {"x": -3.913043478260869, "y": -1.0144927536231876, "x2": -3.6231884057971016, "y2": -0.72463768115942, "center_x": -3.7681159420289854, "center_y": -0.8695652173913038, "value_uncond": 0.0001349326651410567}, {"x": -3.6231884057971016, "y": -1.0144927536231876, "x2": -3.333333333333334, "y2": -0.72463768115942, "center_x": -3.4782608695652177, "center_y": -0.8695652173913038, "value_uncond": 0.0001732883110062385}, {"x": -3.333333333333333, "y": -1.0144927536231876, "x2": -3.0434782608695654, "y2": -0.72463768115942, "center_x": -3.1884057971014492, "center_y": -0.8695652173913038, "value_uncond": 0.00022047901177611992}, {"x": -3.0434782608695645, "y": -1.0144927536231876, "x2": -2.753623188405797, "y2": -0.72463768115942, "center_x": -2.8985507246376807, "center_y": -0.8695652173913038, "value_uncond": 0.0002779144018765324}, {"x": -2.753623188405797, "y": -1.0144927536231876, "x2": -2.4637681159420293, "y2": -0.72463768115942, "center_x": -2.608695652173913, "center_y": -0.8695652173913038, "value_uncond": 0.0003470568870188469}, {"x": -2.4637681159420284, "y": -1.0144927536231876, "x2": -2.1739130434782608, "y2": -0.72463768115942, "center_x": -2.3188405797101446, "center_y": -0.8695652173913038, "value_uncond": 0.0004293743485324563}, {"x": -2.1739130434782608, "y": -1.0144927536231876, "x2": -1.8840579710144931, "y2": -0.72463768115942, "center_x": -2.028985507246377, "center_y": -0.8695652173913038, "value_uncond": 0.0005262805725464293}, {"x": -1.8840579710144922, "y": -1.0144927536231876, "x2": -1.5942028985507246, "y2": -0.72463768115942, "center_x": -1.7391304347826084, "center_y": -0.8695652173913038, "value_uncond": 0.0006390640627744426}, {"x": -1.5942028985507246, "y": -1.0144927536231876, "x2": -1.304347826086957, "y2": -0.72463768115942, "center_x": -1.4492753623188408, "center_y": -0.8695652173913038, "value_uncond": 0.0007688068924012487}, {"x": -1.304347826086957, "y": -1.0144927536231876, "x2": -1.0144927536231894, "y2": -0.72463768115942, "center_x": -1.1594202898550732, "center_y": -0.8695652173913038, "value_uncond": 0.0009162963462204561}, {"x": -1.0144927536231876, "y": -1.0144927536231876, "x2": -0.72463768115942, "y2": -0.72463768115942, "center_x": -0.8695652173913038, "center_y": -0.8695652173913038, "value_uncond": 0.001081933220680743}, {"x": -0.72463768115942, "y": -1.0144927536231876, "x2": -0.43478260869565233, "y2": -0.72463768115942, "center_x": -0.5797101449275361, "center_y": -0.8695652173913038, "value_uncond": 0.0012656416892218969}, {"x": -0.43478260869565233, "y": -1.0144927536231876, "x2": -0.1449275362318847, "y2": -0.72463768115942, "center_x": -0.2898550724637685, "center_y": -0.8695652173913038, "value_uncond": 0.0014667864926154442}, {"x": -0.14492753623188293, "y": -1.0144927536231876, "x2": 0.1449275362318847, "y2": -0.72463768115942, "center_x": 8.881784197001252e-16, "center_y": -0.8695652173913038, "value_uncond": 0.0016841037649845162}, {"x": 0.1449275362318847, "y": -1.0144927536231876, "x2": 0.43478260869565233, "y2": -0.72463768115942, "center_x": 0.2898550724637685, "center_y": -0.8695652173913038, "value_uncond": 0.0019156519503356758}, {"x": 0.43478260869565233, "y": -1.0144927536231876, "x2": 0.72463768115942, "y2": -0.72463768115942, "center_x": 0.5797101449275361, "center_y": -0.8695652173913038, "value_uncond": 0.0021587889180850073}, {"x": 0.72463768115942, "y": -1.0144927536231876, "x2": 1.0144927536231876, "y2": -0.72463768115942, "center_x": 0.8695652173913038, "center_y": -0.8695652173913038, "value_uncond": 0.0024101805001465397}, {"x": 1.0144927536231894, "y": -1.0144927536231876, "x2": 1.304347826086957, "y2": -0.72463768115942, "center_x": 1.1594202898550732, "center_y": -0.8695652173913038, "value_uncond": 0.002665844243253208}, {"x": 1.304347826086957, "y": -1.0144927536231876, "x2": 1.5942028985507246, "y2": -0.72463768115942, "center_x": 1.4492753623188408, "center_y": -0.8695652173913038, "value_uncond": 0.002921230247827166}, {"x": 1.5942028985507246, "y": -1.0144927536231876, "x2": 1.8840579710144922, "y2": -0.72463768115942, "center_x": 1.7391304347826084, "center_y": -0.8695652173913038, "value_uncond": 0.0031713386535351415}, {"x": 1.884057971014494, "y": -1.0144927536231876, "x2": 2.1739130434782616, "y2": -0.72463768115942, "center_x": 2.028985507246378, "center_y": -0.8695652173913038, "value_uncond": 0.00341087078736884}, {"x": 2.1739130434782616, "y": -1.0144927536231876, "x2": 2.4637681159420293, "y2": -0.72463768115942, "center_x": 2.3188405797101455, "center_y": -0.8695652173913038, "value_uncond": 0.0036344084090027826}, {"x": 2.4637681159420293, "y": -1.0144927536231876, "x2": 2.753623188405797, "y2": -0.72463768115942, "center_x": 2.608695652173913, "center_y": -0.8695652173913038, "value_uncond": 0.0038366130908341948}, {"x": 2.753623188405797, "y": -1.0144927536231876, "x2": 3.0434782608695645, "y2": -0.72463768115942, "center_x": 2.8985507246376807, "center_y": -0.8695652173913038, "value_uncond": 0.004012435780324067}, {"x": 3.0434782608695663, "y": -1.0144927536231876, "x2": 3.333333333333334, "y2": -0.72463768115942, "center_x": 3.18840579710145, "center_y": -0.8695652173913038, "value_uncond": 0.004157325213865357}, {"x": 3.333333333333334, "y": -1.0144927536231876, "x2": 3.6231884057971016, "y2": -0.72463768115942, "center_x": 3.4782608695652177, "center_y": -0.8695652173913038, "value_uncond": 0.004267423245273602}, {"x": 3.6231884057971016, "y": -1.0144927536231876, "x2": 3.913043478260869, "y2": -0.72463768115942, "center_x": 3.7681159420289854, "center_y": -0.8695652173913038, "value_uncond": 0.00433973541624538}, {"x": 3.913043478260871, "y": -1.0144927536231876, "x2": 4.202898550724639, "y2": -0.72463768115942, "center_x": 4.057971014492755, "center_y": -0.8695652173913038, "value_uncond": 0.004372266252168516}, {"x": 4.202898550724639, "y": -1.0144927536231876, "x2": 4.492753623188406, "y2": -0.72463768115942, "center_x": 4.347826086956522, "center_y": -0.8695652173913038, "value_uncond": 0.004364110753120658}, {"x": 4.492753623188406, "y": -1.0144927536231876, "x2": 4.782608695652174, "y2": -0.72463768115942, "center_x": 4.63768115942029, "center_y": -0.8695652173913038, "value_uncond": 0.004315496225559185}, {"x": 4.782608695652174, "y": -1.0144927536231876, "x2": 5.0724637681159415, "y2": -0.72463768115942, "center_x": 4.927536231884058, "center_y": -0.8695652173913038, "value_uncond": 0.0042277717560458795}, {"x": 5.072463768115943, "y": -1.0144927536231876, "x2": 5.362318840579711, "y2": -0.72463768115942, "center_x": 5.217391304347827, "center_y": -0.8695652173913038, "value_uncond": 0.004103346007338828}, {"x": 5.362318840579711, "y": -1.0144927536231876, "x2": 5.6521739130434785, "y2": -0.72463768115942, "center_x": 5.507246376811595, "center_y": -0.8695652173913038, "value_uncond": 0.00394557733981317}, {"x": 5.6521739130434785, "y": -1.0144927536231876, "x2": 5.942028985507246, "y2": -0.72463768115942, "center_x": 5.797101449275362, "center_y": -0.8695652173913038, "value_uncond": 0.0037586232536219923}, {"x": 5.942028985507246, "y": -1.0144927536231876, "x2": 6.231884057971014, "y2": -0.72463768115942, "center_x": 6.08695652173913, "center_y": -0.8695652173913038, "value_uncond": 0.003547258568643672}, {"x": 6.2318840579710155, "y": -1.0144927536231876, "x2": 6.521739130434783, "y2": -0.72463768115942, "center_x": 6.376811594202899, "center_y": -0.8695652173913038, "value_uncond": 0.0033166734261969566}, {"x": 6.521739130434785, "y": -1.0144927536231876, "x2": 6.8115942028985526, "y2": -0.72463768115942, "center_x": 6.666666666666669, "center_y": -0.8695652173913038, "value_uncond": 0.0030722629985238}, {"x": 6.811594202898551, "y": -1.0144927536231876, "x2": 7.101449275362318, "y2": -0.72463768115942, "center_x": 6.956521739130435, "center_y": -0.8695652173913038, "value_uncond": 0.0028194207010446017}, {"x": 7.10144927536232, "y": -1.0144927536231876, "x2": 7.391304347826088, "y2": -0.72463768115942, "center_x": 7.246376811594204, "center_y": -0.8695652173913038, "value_uncond": 0.002563345771679815}, {"x": 7.391304347826086, "y": -1.0144927536231876, "x2": 7.681159420289854, "y2": -0.72463768115942, "center_x": 7.53623188405797, "center_y": -0.8695652173913038, "value_uncond": 0.0023088744363809113}, {"x": 7.681159420289855, "y": -1.0144927536231876, "x2": 7.971014492753623, "y2": -0.72463768115942, "center_x": 7.826086956521739, "center_y": -0.8695652173913038, "value_uncond": 0.0020603417010928485}, {"x": 7.971014492753625, "y": -1.0144927536231876, "x2": 8.260869565217392, "y2": -0.72463768115942, "center_x": 8.115942028985508, "center_y": -0.8695652173913038, "value_uncond": 0.001821478312344528}, {"x": 8.26086956521739, "y": -1.0144927536231876, "x2": 8.550724637681158, "y2": -0.72463768115942, "center_x": 8.405797101449274, "center_y": -0.8695652173913038, "value_uncond": 0.0015953448367560417}, {"x": 8.55072463768116, "y": -1.0144927536231876, "x2": 8.840579710144928, "y2": -0.72463768115942, "center_x": 8.695652173913043, "center_y": -0.8695652173913038, "value_uncond": 0.0013843023371089397}, {"x": 8.84057971014493, "y": -1.0144927536231876, "x2": 9.130434782608697, "y2": -0.72463768115942, "center_x": 8.985507246376812, "center_y": -0.8695652173913038, "value_uncond": 0.001190016950985169}, {"x": 9.130434782608695, "y": -1.0144927536231876, "x2": 9.420289855072463, "y2": -0.72463768115942, "center_x": 9.275362318840578, "center_y": -0.8695652173913038, "value_uncond": 0.0010134939435188506}, {"x": 9.420289855072465, "y": -1.0144927536231876, "x2": 9.710144927536232, "y2": -0.72463768115942, "center_x": 9.565217391304348, "center_y": -0.8695652173913038, "value_uncond": 0.0008551355912321872}, {"x": 9.710144927536234, "y": -1.0144927536231876, "x2": 10.000000000000002, "y2": -0.72463768115942, "center_x": 9.855072463768117, "center_y": -0.8695652173913038, "value_uncond": 0.0007148165870150437}, {"x": 10.0, "y": -1.0144927536231876, "x2": 10.289855072463768, "y2": -0.72463768115942, "center_x": 10.144927536231883, "center_y": -0.8695652173913038, "value_uncond": 0.0005919705142629914}, {"x": -10.0, "y": -0.72463768115942, "x2": -9.710144927536232, "y2": -0.43478260869565233, "center_x": -9.855072463768117, "center_y": -0.5797101449275361, "value_uncond": 9.550255627540823e-08}, {"x": -9.710144927536232, "y": -0.72463768115942, "x2": -9.420289855072465, "y2": -0.43478260869565233, "center_x": -9.565217391304348, "center_y": -0.5797101449275361, "value_uncond": 1.4921244997863546e-07}, {"x": -9.420289855072463, "y": -0.72463768115942, "x2": -9.130434782608695, "y2": -0.43478260869565233, "center_x": -9.275362318840578, "center_y": -0.5797101449275361, "value_uncond": 2.3096221759667814e-07}, {"x": -9.130434782608695, "y": -0.72463768115942, "x2": -8.840579710144928, "y2": -0.43478260869565233, "center_x": -8.985507246376812, "center_y": -0.5797101449275361, "value_uncond": 3.5417885927447224e-07}, {"x": -8.840579710144928, "y": -0.72463768115942, "x2": -8.55072463768116, "y2": -0.43478260869565233, "center_x": -8.695652173913043, "center_y": -0.5797101449275361, "value_uncond": 5.380840805434449e-07}, {"x": -8.55072463768116, "y": -0.72463768115942, "x2": -8.260869565217392, "y2": -0.43478260869565233, "center_x": -8.405797101449277, "center_y": -0.5797101449275361, "value_uncond": 8.098852073070005e-07}, {"x": -8.26086956521739, "y": -0.72463768115942, "x2": -7.971014492753623, "y2": -0.43478260869565233, "center_x": -8.115942028985508, "center_y": -0.5797101449275361, "value_uncond": 1.2076542226667024e-06}, {"x": -7.971014492753623, "y": -0.72463768115942, "x2": -7.681159420289855, "y2": -0.43478260869565233, "center_x": -7.826086956521739, "center_y": -0.5797101449275361, "value_uncond": 1.7840521963563896e-06}, {"x": -7.681159420289855, "y": -0.72463768115942, "x2": -7.391304347826088, "y2": -0.43478260869565233, "center_x": -7.536231884057972, "center_y": -0.5797101449275361, "value_uncond": 2.611068847258569e-06}, {"x": -7.391304347826087, "y": -0.72463768115942, "x2": -7.101449275362319, "y2": -0.43478260869565233, "center_x": -7.246376811594203, "center_y": -0.5797101449275361, "value_uncond": 3.785950265482027e-06}, {"x": -7.101449275362318, "y": -0.72463768115942, "x2": -6.811594202898551, "y2": -0.43478260869565233, "center_x": -6.956521739130435, "center_y": -0.5797101449275361, "value_uncond": 5.4384770520955155e-06}, {"x": -6.811594202898551, "y": -0.72463768115942, "x2": -6.521739130434783, "y2": -0.43478260869565233, "center_x": -6.666666666666667, "center_y": -0.5797101449275361, "value_uncond": 7.739724655570018e-06}, {"x": -6.521739130434782, "y": -0.72463768115942, "x2": -6.231884057971015, "y2": -0.43478260869565233, "center_x": -6.3768115942028984, "center_y": -0.5797101449275361, "value_uncond": 1.091238137437345e-05}, {"x": -6.231884057971014, "y": -0.72463768115942, "x2": -5.942028985507246, "y2": -0.43478260869565233, "center_x": -6.08695652173913, "center_y": -0.5797101449275361, "value_uncond": 1.5242611307532183e-05}, {"x": -5.942028985507246, "y": -0.72463768115942, "x2": -5.6521739130434785, "y2": -0.43478260869565233, "center_x": -5.797101449275362, "center_y": -0.5797101449275361, "value_uncond": 2.1093324266478302e-05}, {"x": -5.6521739130434785, "y": -0.72463768115942, "x2": -5.362318840579711, "y2": -0.43478260869565233, "center_x": -5.507246376811595, "center_y": -0.5797101449275361, "value_uncond": 2.8918548957470345e-05}, {"x": -5.36231884057971, "y": -0.72463768115942, "x2": -5.072463768115942, "y2": -0.43478260869565233, "center_x": -5.217391304347826, "center_y": -0.5797101449275361, "value_uncond": 3.927839929030012e-05}, {"x": -5.0724637681159415, "y": -0.72463768115942, "x2": -4.782608695652174, "y2": -0.43478260869565233, "center_x": -4.927536231884058, "center_y": -0.5797101449275361, "value_uncond": 5.285388048410386e-05}, {"x": -4.782608695652174, "y": -0.72463768115942, "x2": -4.492753623188406, "y2": -0.43478260869565233, "center_x": -4.63768115942029, "center_y": -0.5797101449275361, "value_uncond": 7.046051132351661e-05}, {"x": -4.492753623188405, "y": -0.72463768115942, "x2": -4.202898550724638, "y2": -0.43478260869565233, "center_x": -4.3478260869565215, "center_y": -0.5797101449275361, "value_uncond": 9.305945765838754e-05}, {"x": -4.202898550724638, "y": -0.72463768115942, "x2": -3.91304347826087, "y2": -0.43478260869565233, "center_x": -4.057971014492754, "center_y": -0.5797101449275361, "value_uncond": 0.00012176460336035191}, {"x": -3.913043478260869, "y": -0.72463768115942, "x2": -3.6231884057971016, "y2": -0.43478260869565233, "center_x": -3.7681159420289854, "center_y": -0.5797101449275361, "value_uncond": 0.0001578437587237487}, {"x": -3.6231884057971016, "y": -0.72463768115942, "x2": -3.333333333333334, "y2": -0.43478260869565233, "center_x": -3.4782608695652177, "center_y": -0.5797101449275361, "value_uncond": 0.0002027120588148225}, {"x": -3.333333333333333, "y": -0.72463768115942, "x2": -3.0434782608695654, "y2": -0.43478260869565233, "center_x": -3.1884057971014492, "center_y": -0.5797101449275361, "value_uncond": 0.0002579155751652848}, {"x": -3.0434782608695645, "y": -0.72463768115942, "x2": -2.753623188405797, "y2": -0.43478260869565233, "center_x": -2.8985507246376807, "center_y": -0.5797101449275361, "value_uncond": 0.0003251032931855034}, {"x": -2.753623188405797, "y": -0.72463768115942, "x2": -2.4637681159420293, "y2": -0.43478260869565233, "center_x": -2.608695652173913, "center_y": -0.5797101449275361, "value_uncond": 0.00040598592995069906}, {"x": -2.4637681159420284, "y": -0.72463768115942, "x2": -2.1739130434782608, "y2": -0.43478260869565233, "center_x": -2.3188405797101446, "center_y": -0.5797101449275361, "value_uncond": 0.0005022806078948621}, {"x": -2.1739130434782608, "y": -0.72463768115942, "x2": -1.8840579710144931, "y2": -0.43478260869565233, "center_x": -2.028985507246377, "center_y": -0.5797101449275361, "value_uncond": 0.0006156411690762544}, {"x": -1.8840579710144922, "y": -0.72463768115942, "x2": -1.5942028985507246, "y2": -0.43478260869565233, "center_x": -1.7391304347826084, "center_y": -0.5797101449275361, "value_uncond": 0.000747574900622746}, {"x": -1.5942028985507246, "y": -0.72463768115942, "x2": -1.304347826086957, "y2": -0.43478260869565233, "center_x": -1.4492753623188408, "center_y": -0.5797101449275361, "value_uncond": 0.0008993476079530388}, {"x": -1.304347826086957, "y": -0.72463768115942, "x2": -1.0144927536231894, "y2": -0.43478260869565233, "center_x": -1.1594202898550732, "center_y": -0.5797101449275361, "value_uncond": 0.0010718802540591508}, {"x": -1.0144927536231876, "y": -0.72463768115942, "x2": -0.72463768115942, "y2": -0.43478260869565233, "center_x": -0.8695652173913038, "center_y": -0.5797101449275361, "value_uncond": 0.0012656416892218969}, {"x": -0.72463768115942, "y": -0.72463768115942, "x2": -0.43478260869565233, "y2": -0.43478260869565233, "center_x": -0.5797101449275361, "center_y": -0.5797101449275361, "value_uncond": 0.001480543211796923}, {"x": -0.43478260869565233, "y": -0.72463768115942, "x2": -0.1449275362318847, "y2": -0.43478260869565233, "center_x": -0.2898550724637685, "center_y": -0.5797101449275361, "value_uncond": 0.001715841697765436}, {"x": -0.14492753623188293, "y": -0.72463768115942, "x2": 0.1449275362318847, "y2": -0.43478260869565233, "center_x": 8.881784197001252e-16, "center_y": -0.5797101449275361, "value_uncond": 0.0019700586812547044}, {"x": 0.1449275362318847, "y": -0.72463768115942, "x2": 0.43478260869565233, "y2": -0.43478260869565233, "center_x": 0.2898550724637685, "center_y": -0.5797101449275361, "value_uncond": 0.002240922936869036}, {"x": 0.43478260869565233, "y": -0.72463768115942, "x2": 0.72463768115942, "y2": -0.43478260869565233, "center_x": 0.5797101449275361, "center_y": -0.5797101449275361, "value_uncond": 0.002525343709512413}, {"x": 0.72463768115942, "y": -0.72463768115942, "x2": 1.0144927536231876, "y2": -0.43478260869565233, "center_x": 0.8695652173913038, "center_y": -0.5797101449275361, "value_uncond": 0.0028194207010446004}, {"x": 1.0144927536231894, "y": -0.72463768115942, "x2": 1.304347826086957, "y2": -0.43478260869565233, "center_x": 1.1594202898550732, "center_y": -0.5797101449275361, "value_uncond": 0.0031184952515928535}, {"x": 1.304347826086957, "y": -0.72463768115942, "x2": 1.5942028985507246, "y2": -0.43478260869565233, "center_x": 1.4492753623188408, "center_y": -0.5797101449275361, "value_uncond": 0.0034172449045790543}, {"x": 1.5942028985507246, "y": -0.72463768115942, "x2": 1.8840579710144922, "y2": -0.43478260869565233, "center_x": 1.7391304347826084, "center_y": -0.5797101449275361, "value_uncond": 0.003709820840910567}, {"x": 1.884057971014494, "y": -0.72463768115942, "x2": 2.1739130434782616, "y2": -0.43478260869565233, "center_x": 2.028985507246378, "center_y": -0.5797101449275361, "value_uncond": 0.003990024691474894}, {"x": 2.1739130434782616, "y": -0.72463768115942, "x2": 2.4637681159420293, "y2": -0.43478260869565233, "center_x": 2.3188405797101455, "center_y": -0.5797101449275361, "value_uncond": 0.004251518217730996}, {"x": 2.4637681159420293, "y": -0.72463768115942, "x2": 2.753623188405797, "y2": -0.43478260869565233, "center_x": 2.608695652173913, "center_y": -0.5797101449275361, "value_uncond": 0.004488056545781097}, {"x": 2.753623188405797, "y": -0.72463768115942, "x2": 3.0434782608695645, "y2": -0.43478260869565233, "center_x": 2.8985507246376807, "center_y": -0.5797101449275361, "value_uncond": 0.004693733311662716}, {"x": 3.0434782608695663, "y": -0.72463768115942, "x2": 3.333333333333334, "y2": -0.43478260869565233, "center_x": 3.18840579710145, "center_y": -0.5797101449275361, "value_uncond": 0.004863224463161162}, {"x": 3.333333333333334, "y": -0.72463768115942, "x2": 3.6231884057971016, "y2": -0.43478260869565233, "center_x": 3.4782608695652177, "center_y": -0.5797101449275361, "value_uncond": 0.004992016754393206}, {"x": 3.6231884057971016, "y": -0.72463768115942, "x2": 3.913043478260869, "y2": -0.43478260869565233, "center_x": 3.7681159420289854, "center_y": -0.5797101449275361, "value_uncond": 0.005076607278531506}, {"x": 3.913043478260871, "y": -0.72463768115942, "x2": 4.202898550724639, "y2": -0.43478260869565233, "center_x": 4.057971014492755, "center_y": -0.5797101449275361, "value_uncond": 0.005114661736369165}, {"x": 4.202898550724639, "y": -0.72463768115942, "x2": 4.492753623188406, "y2": -0.43478260869565233, "center_x": 4.347826086956522, "center_y": -0.5797101449275361, "value_uncond": 0.005105121462169169}, {"x": 4.492753623188406, "y": -0.72463768115942, "x2": 4.782608695652174, "y2": -0.43478260869565233, "center_x": 4.63768115942029, "center_y": -0.5797101449275361, "value_uncond": 0.005048252358228621}, {"x": 4.782608695652174, "y": -0.72463768115942, "x2": 5.0724637681159415, "y2": -0.43478260869565233, "center_x": 4.927536231884058, "center_y": -0.5797101449275361, "value_uncond": 0.004945632581278748}, {"x": 5.072463768115943, "y": -0.72463768115942, "x2": 5.362318840579711, "y2": -0.43478260869565233, "center_x": 5.217391304347827, "center_y": -0.5797101449275361, "value_uncond": 0.004800079776571257}, {"x": 5.362318840579711, "y": -0.72463768115942, "x2": 5.6521739130434785, "y2": -0.43478260869565233, "center_x": 5.507246376811595, "center_y": -0.5797101449275361, "value_uncond": 0.004615522542301451}, {"x": 5.6521739130434785, "y": -0.72463768115942, "x2": 5.942028985507246, "y2": -0.43478260869565233, "center_x": 5.797101449275362, "center_y": -0.5797101449275361, "value_uncond": 0.004396824307575779}, {"x": 5.942028985507246, "y": -0.72463768115942, "x2": 6.231884057971014, "y2": -0.43478260869565233, "center_x": 6.08695652173913, "center_y": -0.5797101449275361, "value_uncond": 0.004149570639951542}, {"x": 6.2318840579710155, "y": -0.72463768115942, "x2": 6.521739130434783, "y2": -0.43478260869565233, "center_x": 6.376811594202899, "center_y": -0.5797101449275361, "value_uncond": 0.003879832948551227}, {"x": 6.521739130434785, "y": -0.72463768115942, "x2": 6.8115942028985526, "y2": -0.43478260869565233, "center_x": 6.666666666666669, "center_y": -0.5797101449275361, "value_uncond": 0.0035939224869526182}, {"x": 6.811594202898551, "y": -0.72463768115942, "x2": 7.101449275362318, "y2": -0.43478260869565233, "center_x": 6.956521739130435, "center_y": -0.5797101449275361, "value_uncond": 0.00329814845360981}, {"x": 7.10144927536232, "y": -0.72463768115942, "x2": 7.391304347826088, "y2": -0.43478260869565233, "center_x": 7.246376811594204, "center_y": -0.5797101449275361, "value_uncond": 0.0029985928988180773}, {"x": 7.391304347826086, "y": -0.72463768115942, "x2": 7.681159420289854, "y2": -0.43478260869565233, "center_x": 7.53623188405797, "center_y": -0.5797101449275361, "value_uncond": 0.002700913222743788}, {"x": 7.681159420289855, "y": -0.72463768115942, "x2": 7.971014492753623, "y2": -0.43478260869565233, "center_x": 7.826086956521739, "center_y": -0.5797101449275361, "value_uncond": 0.0024101805001465392}, {"x": 7.971014492753625, "y": -0.72463768115942, "x2": 8.260869565217392, "y2": -0.43478260869565233, "center_x": 8.115942028985508, "center_y": -0.5797101449275361, "value_uncond": 0.00213075894523904}, {"x": 8.26086956521739, "y": -0.72463768115942, "x2": 8.550724637681158, "y2": -0.43478260869565233, "center_x": 8.405797101449274, "center_y": -0.5797101449275361, "value_uncond": 0.0018662287981257527}, {"x": 8.55072463768116, "y": -0.72463768115942, "x2": 8.840579710144928, "y2": -0.43478260869565233, "center_x": 8.695652173913043, "center_y": -0.5797101449275361, "value_uncond": 0.0016193520217726706}, {"x": 8.84057971014493, "y": -0.72463768115942, "x2": 9.130434782608697, "y2": -0.43478260869565233, "center_x": 8.985507246376812, "center_y": -0.5797101449275361, "value_uncond": 0.0013920776580831054}, {"x": 9.130434782608695, "y": -0.72463768115942, "x2": 9.420289855072463, "y2": -0.43478260869565233, "center_x": 9.275362318840578, "center_y": -0.5797101449275361, "value_uncond": 0.0011855816626873544}, {"x": 9.420289855072465, "y": -0.72463768115942, "x2": 9.710144927536232, "y2": -0.43478260869565233, "center_x": 9.565217391304348, "center_y": -0.5797101449275361, "value_uncond": 0.0010003346172510537}, {"x": 9.710144927536234, "y": -0.72463768115942, "x2": 10.000000000000002, "y2": -0.43478260869565233, "center_x": 9.855072463768117, "center_y": -0.5797101449275361, "value_uncond": 0.0008361899379559863}, {"x": 10.0, "y": -0.72463768115942, "x2": 10.289855072463768, "y2": -0.43478260869565233, "center_x": 10.144927536231883, "center_y": -0.5797101449275361, "value_uncond": 0.0006924850326436628}, {"x": -10.0, "y": -0.43478260869565233, "x2": -9.710144927536232, "y2": -0.1449275362318847, "center_x": -9.855072463768117, "center_y": -0.2898550724637685, "value_uncond": 1.1068050361167863e-07}, {"x": -9.710144927536232, "y": -0.43478260869565233, "x2": -9.420289855072465, "y2": -0.1449275362318847, "center_x": -9.565217391304348, "center_y": -0.2898550724637685, "value_uncond": 1.7292635666361052e-07}, {"x": -9.420289855072463, "y": -0.43478260869565233, "x2": -9.130434782608695, "y2": -0.1449275362318847, "center_x": -9.275362318840578, "center_y": -0.2898550724637685, "value_uncond": 2.6766838036410634e-07}, {"x": -9.130434782608695, "y": -0.43478260869565233, "x2": -8.840579710144928, "y2": -0.1449275362318847, "center_x": -8.985507246376812, "center_y": -0.2898550724637685, "value_uncond": 4.1046748947810695e-07}, {"x": -8.840579710144928, "y": -0.43478260869565233, "x2": -8.55072463768116, "y2": -0.1449275362318847, "center_x": -8.695652173913043, "center_y": -0.2898550724637685, "value_uncond": 6.236002400630083e-07}, {"x": -8.55072463768116, "y": -0.43478260869565233, "x2": -8.260869565217392, "y2": -0.1449275362318847, "center_x": -8.405797101449277, "center_y": -0.2898550724637685, "value_uncond": 9.385979402885297e-07}, {"x": -8.26086956521739, "y": -0.43478260869565233, "x2": -7.971014492753623, "y2": -0.1449275362318847, "center_x": -8.115942028985508, "center_y": -0.2898550724637685, "value_uncond": 1.3995832443276615e-06}, {"x": -7.971014492753623, "y": -0.43478260869565233, "x2": -7.681159420289855, "y2": -0.1449275362318847, "center_x": -7.826086956521739, "center_y": -0.2898550724637685, "value_uncond": 2.067586494677862e-06}, {"x": -7.681159420289855, "y": -0.43478260869565233, "x2": -7.391304347826088, "y2": -0.1449275362318847, "center_x": -7.536231884057972, "center_y": -0.2898550724637685, "value_uncond": 3.0260385297535673e-06}, {"x": -7.391304347826087, "y": -0.43478260869565233, "x2": -7.101449275362319, "y2": -0.1449275362318847, "center_x": -7.246376811594203, "center_y": -0.2898550724637685, "value_uncond": 4.387640481830946e-06}, {"x": -7.101449275362318, "y": -0.43478260869565233, "x2": -6.811594202898551, "y2": -0.1449275362318847, "center_x": -6.956521739130435, "center_y": -0.2898550724637685, "value_uncond": 6.302798610653378e-06}, {"x": -6.811594202898551, "y": -0.43478260869565233, "x2": -6.521739130434783, "y2": -0.1449275362318847, "center_x": -6.666666666666667, "center_y": -0.2898550724637685, "value_uncond": 8.969776895016973e-06}, {"x": -6.521739130434782, "y": -0.43478260869565233, "x2": -6.231884057971015, "y2": -0.1449275362318847, "center_x": -6.3768115942028984, "center_y": -0.2898550724637685, "value_uncond": 1.2646654845922255e-05}, {"x": -6.231884057971014, "y": -0.43478260869565233, "x2": -5.942028985507246, "y2": -0.1449275362318847, "center_x": -6.08695652173913, "center_y": -0.2898550724637685, "value_uncond": 1.7665075801841584e-05}, {"x": -5.942028985507246, "y": -0.43478260869565233, "x2": -5.6521739130434785, "y2": -0.1449275362318847, "center_x": -5.797101449275362, "center_y": -0.2898550724637685, "value_uncond": 2.4445625789593858e-05}, {"x": -5.6521739130434785, "y": -0.43478260869565233, "x2": -5.362318840579711, "y2": -0.1449275362318847, "center_x": -5.507246376811595, "center_y": -0.2898550724637685, "value_uncond": 3.3514490995420406e-05}, {"x": -5.36231884057971, "y": -0.43478260869565233, "x2": -5.072463768115942, "y2": -0.1449275362318847, "center_x": -5.217391304347826, "center_y": -0.2898550724637685, "value_uncond": 4.5520802626206266e-05}, {"x": -5.0724637681159415, "y": -0.43478260869565233, "x2": -4.782608695652174, "y2": -0.1449275362318847, "center_x": -4.927536231884058, "center_y": -0.2898550724637685, "value_uncond": 6.125379610721919e-05}, {"x": -4.782608695652174, "y": -0.43478260869565233, "x2": -4.492753623188406, "y2": -0.1449275362318847, "center_x": -4.63768115942029, "center_y": -0.2898550724637685, "value_uncond": 8.165859828436157e-05}, {"x": -4.492753623188405, "y": -0.43478260869565233, "x2": -4.202898550724638, "y2": -0.1449275362318847, "center_x": -4.3478260869565215, "center_y": -0.2898550724637685, "value_uncond": 0.00010784913033906096}, {"x": -4.202898550724638, "y": -0.43478260869565233, "x2": -3.91304347826087, "y2": -0.1449275362318847, "center_x": -4.057971014492754, "center_y": -0.2898550724637685, "value_uncond": 0.0001411163025116883}, {"x": -3.913043478260869, "y": -0.43478260869565233, "x2": -3.6231884057971016, "y2": -0.1449275362318847, "center_x": -3.7681159420289854, "center_y": -0.2898550724637685, "value_uncond": 0.00018292941455016692}, {"x": -3.6231884057971016, "y": -0.43478260869565233, "x2": -3.333333333333334, "y2": -0.1449275362318847, "center_x": -3.4782608695652177, "center_y": -0.2898550724637685, "value_uncond": 0.00023492850487774914}, {"x": -3.333333333333333, "y": -0.43478260869565233, "x2": -3.0434782608695654, "y2": -0.1449275362318847, "center_x": -3.1884057971014492, "center_y": -0.2898550724637685, "value_uncond": 0.00029890535774004296}, {"x": -3.0434782608695645, "y": -0.43478260869565233, "x2": -2.753623188405797, "y2": -0.1449275362318847, "center_x": -2.8985507246376807, "center_y": -0.2898550724637685, "value_uncond": 0.00037677102706885516}, {"x": -2.753623188405797, "y": -0.43478260869565233, "x2": -2.4637681159420293, "y2": -0.1449275362318847, "center_x": -2.608695652173913, "center_y": -0.2898550724637685, "value_uncond": 0.00047050810929727627}, {"x": -2.4637681159420284, "y": -0.43478260869565233, "x2": -2.1739130434782608, "y2": -0.1449275362318847, "center_x": -2.3188405797101446, "center_y": -0.2898550724637685, "value_uncond": 0.0005821066242024608}, {"x": -2.1739130434782608, "y": -0.43478260869565233, "x2": -1.8840579710144931, "y2": -0.1449275362318847, "center_x": -2.028985507246377, "center_y": -0.2898550724637685, "value_uncond": 0.0007134832542172296}, {"x": -1.8840579710144922, "y": -0.43478260869565233, "x2": -1.5942028985507246, "y2": -0.1449275362318847, "center_x": -1.7391304347826084, "center_y": -0.2898550724637685, "value_uncond": 0.0008663848352892936}, {"x": -1.5942028985507246, "y": -0.43478260869565233, "x2": -1.304347826086957, "y2": -0.1449275362318847, "center_x": -1.4492753623188408, "center_y": -0.2898550724637685, "value_uncond": 0.001042278343661805}, {"x": -1.304347826086957, "y": -0.43478260869565233, "x2": -1.0144927536231894, "y2": -0.1449275362318847, "center_x": -1.1594202898550732, "center_y": -0.2898550724637685, "value_uncond": 0.0012422311083334794}, {"x": -1.0144927536231876, "y": -0.43478260869565233, "x2": -0.72463768115942, "y2": -0.1449275362318847, "center_x": -0.8695652173913038, "center_y": -0.2898550724637685, "value_uncond": 0.0014667864926154442}, {"x": -0.72463768115942, "y": -0.43478260869565233, "x2": -0.43478260869565233, "y2": -0.1449275362318847, "center_x": -0.5797101449275361, "center_y": -0.2898550724637685, "value_uncond": 0.001715841697765436}, {"x": -0.43478260869565233, "y": -0.43478260869565233, "x2": -0.1449275362318847, "y2": -0.1449275362318847, "center_x": -0.2898550724637685, "center_y": -0.2898550724637685, "value_uncond": 0.001988535497195876}, {"x": -0.14492753623188293, "y": -0.43478260869565233, "x2": 0.1449275362318847, "y2": -0.1449275362318847, "center_x": 8.881784197001252e-16, "center_y": -0.2898550724637685, "value_uncond": 0.002283154456693605}, {"x": 0.1449275362318847, "y": -0.43478260869565233, "x2": 0.43478260869565233, "y2": -0.1449275362318847, "center_x": 0.2898550724637685, "center_y": -0.2898550724637685, "value_uncond": 0.002597066391525409}, {"x": 0.43478260869565233, "y": -0.43478260869565233, "x2": 0.72463768115942, "y2": -0.1449275362318847, "center_x": 0.5797101449275361, "center_y": -0.2898550724637685, "value_uncond": 0.0029266893417531576}, {"x": 0.72463768115942, "y": -0.43478260869565233, "x2": 1.0144927536231876, "y2": -0.1449275362318847, "center_x": 0.8695652173913038, "center_y": -0.2898550724637685, "value_uncond": 0.003267503146040521}, {"x": 1.0144927536231894, "y": -0.43478260869565233, "x2": 1.304347826086957, "y2": -0.1449275362318847, "center_x": 1.1594202898550732, "center_y": -0.2898550724637685, "value_uncond": 0.003614108757063738}, {"x": 1.304347826086957, "y": -0.43478260869565233, "x2": 1.5942028985507246, "y2": -0.1449275362318847, "center_x": 1.4492753623188408, "center_y": -0.2898550724637685, "value_uncond": 0.003960337835487279}, {"x": 1.5942028985507246, "y": -0.43478260869565233, "x2": 1.8840579710144922, "y2": -0.1449275362318847, "center_x": 1.7391304347826084, "center_y": -0.2898550724637685, "value_uncond": 0.004299412026176441}, {"x": 1.884057971014494, "y": -0.43478260869565233, "x2": 2.1739130434782616, "y2": -0.1449275362318847, "center_x": 2.028985507246378, "center_y": -0.2898550724637685, "value_uncond": 0.004624147870994629}, {"x": 2.1739130434782616, "y": -0.43478260869565233, "x2": 2.4637681159420293, "y2": -0.1449275362318847, "center_x": 2.3188405797101455, "center_y": -0.2898550724637685, "value_uncond": 0.004927199813329617}, {"x": 2.4637681159420293, "y": -0.43478260869565233, "x2": 2.753623188405797, "y2": -0.1449275362318847, "center_x": 2.608695652173913, "center_y": -0.2898550724637685, "value_uncond": 0.005201330499387401}, {"x": 2.753623188405797, "y": -0.43478260869565233, "x2": 3.0434782608695645, "y2": -0.1449275362318847, "center_x": 2.8985507246376807, "center_y": -0.2898550724637685, "value_uncond": 0.005439694883722322}, {"x": 3.0434782608695663, "y": -0.43478260869565233, "x2": 3.333333333333334, "y2": -0.1449275362318847, "center_x": 3.18840579710145, "center_y": -0.2898550724637685, "value_uncond": 0.005636122777772336}, {"x": 3.333333333333334, "y": -0.43478260869565233, "x2": 3.6231884057971016, "y2": -0.1449275362318847, "center_x": 3.4782608695652177, "center_y": -0.2898550724637685, "value_uncond": 0.005785383658431456}, {"x": 3.6231884057971016, "y": -0.43478260869565233, "x2": 3.913043478260869, "y2": -0.1449275362318847, "center_x": 3.7681159420289854, "center_y": -0.2898550724637685, "value_uncond": 0.005883417911937755}, {"x": 3.913043478260871, "y": -0.43478260869565233, "x2": 4.202898550724639, "y2": -0.1449275362318847, "center_x": 4.057971014492755, "center_y": -0.2898550724637685, "value_uncond": 0.005927520255606916}, {"x": 4.202898550724639, "y": -0.43478260869565233, "x2": 4.492753623188406, "y2": -0.1449275362318847, "center_x": 4.347826086956522, "center_y": -0.2898550724637685, "value_uncond": 0.005916463772992943}, {"x": 4.492753623188406, "y": -0.43478260869565233, "x2": 4.782608695652174, "y2": -0.1449275362318847, "center_x": 4.63768115942029, "center_y": -0.2898550724637685, "value_uncond": 0.005850556625482321}, {"x": 4.782608695652174, "y": -0.43478260869565233, "x2": 5.0724637681159415, "y2": -0.1449275362318847, "center_x": 4.927536231884058, "center_y": -0.2898550724637685, "value_uncond": 0.005731627781728902}, {"x": 5.072463768115943, "y": -0.43478260869565233, "x2": 5.362318840579711, "y2": -0.1449275362318847, "center_x": 5.217391304347827, "center_y": -0.2898550724637685, "value_uncond": 0.005562942687262318}, {"x": 5.362318840579711, "y": -0.43478260869565233, "x2": 5.6521739130434785, "y2": -0.1449275362318847, "center_x": 5.507246376811595, "center_y": -0.2898550724637685, "value_uncond": 0.0053490543011205476}, {"x": 5.6521739130434785, "y": -0.43478260869565233, "x2": 5.942028985507246, "y2": -0.1449275362318847, "center_x": 5.797101449275362, "center_y": -0.2898550724637685, "value_uncond": 0.005095598983248022}, {"x": 5.942028985507246, "y": -0.43478260869565233, "x2": 6.231884057971014, "y2": -0.1449275362318847, "center_x": 6.08695652173913, "center_y": -0.2898550724637685, "value_uncond": 0.004809049999432688}, {"x": 6.2318840579710155, "y": -0.43478260869565233, "x2": 6.521739130434783, "y2": -0.1449275362318847, "center_x": 6.376811594202899, "center_y": -0.2898550724637685, "value_uncond": 0.004496443670434078}, {"x": 6.521739130434785, "y": -0.43478260869565233, "x2": 6.8115942028985526, "y2": -0.1449275362318847, "center_x": 6.666666666666669, "center_y": -0.2898550724637685, "value_uncond": 0.004165094279258357}, {"x": 6.811594202898551, "y": -0.43478260869565233, "x2": 7.101449275362318, "y2": -0.1449275362318847, "center_x": 6.956521739130435, "center_y": -0.2898550724637685, "value_uncond": 0.0038223137271730825}, {"x": 7.10144927536232, "y": -0.43478260869565233, "x2": 7.391304347826088, "y2": -0.1449275362318847, "center_x": 7.246376811594204, "center_y": -0.2898550724637685, "value_uncond": 0.003475150667281647}, {"x": 7.391304347826086, "y": -0.43478260869565233, "x2": 7.681159420289854, "y2": -0.1449275362318847, "center_x": 7.53623188405797, "center_y": -0.2898550724637685, "value_uncond": 0.003130161614131584}, {"x": 7.681159420289855, "y": -0.43478260869565233, "x2": 7.971014492753623, "y2": -0.1449275362318847, "center_x": 7.826086956521739, "center_y": -0.2898550724637685, "value_uncond": 0.002793223573848532}, {"x": 7.971014492753625, "y": -0.43478260869565233, "x2": 8.260869565217392, "y2": -0.1449275362318847, "center_x": 8.115942028985508, "center_y": -0.2898550724637685, "value_uncond": 0.002469394352692033}, {"x": 8.26086956521739, "y": -0.43478260869565233, "x2": 8.550724637681158, "y2": -0.1449275362318847, "center_x": 8.405797101449274, "center_y": -0.2898550724637685, "value_uncond": 0.002162823188057046}, {"x": 8.55072463768116, "y": -0.43478260869565233, "x2": 8.840579710144928, "y2": -0.1449275362318847, "center_x": 8.695652173913043, "center_y": -0.2898550724637685, "value_uncond": 0.0018767109937615424}, {"x": 8.84057971014493, "y": -0.43478260869565233, "x2": 9.130434782608697, "y2": -0.1449275362318847, "center_x": 8.985507246376812, "center_y": -0.2898550724637685, "value_uncond": 0.001613316567348035}, {"x": 9.130434782608695, "y": -0.43478260869565233, "x2": 9.420289855072463, "y2": -0.1449275362318847, "center_x": 9.275362318840578, "center_y": -0.2898550724637685, "value_uncond": 0.0013740027557021192}, {"x": 9.420289855072465, "y": -0.43478260869565233, "x2": 9.710144927536232, "y2": -0.1449275362318847, "center_x": 9.565217391304348, "center_y": -0.2898550724637685, "value_uncond": 0.0011593149286837669}, {"x": 9.710144927536234, "y": -0.43478260869565233, "x2": 10.000000000000002, "y2": -0.1449275362318847, "center_x": 9.855072463768117, "center_y": -0.2898550724637685, "value_uncond": 0.0009690832063289839}, {"x": 10.0, "y": -0.43478260869565233, "x2": 10.289855072463768, "y2": -0.1449275362318847, "center_x": 10.144927536231883, "center_y": -0.2898550724637685, "value_uncond": 0.0008025396926080617}, {"x": -10.0, "y": -0.14492753623188293, "x2": -9.710144927536232, "y2": 0.1449275362318847, "center_x": -9.855072463768117, "center_y": 8.881784197001252e-16, "value_uncond": 1.2707879011787393e-07}, {"x": -9.710144927536232, "y": -0.14492753623188293, "x2": -9.420289855072465, "y2": 0.1449275362318847, "center_x": -9.565217391304348, "center_y": 8.881784197001252e-16, "value_uncond": 1.98546911761475e-07}, {"x": -9.420289855072463, "y": -0.14492753623188293, "x2": -9.130434782608695, "y2": 0.1449275362318847, "center_x": -9.275362318840578, "center_y": 8.881784197001252e-16, "value_uncond": 3.073257965000113e-07}, {"x": -9.130434782608695, "y": -0.14492753623188293, "x2": -8.840579710144928, "y2": 0.1449275362318847, "center_x": -8.985507246376812, "center_y": 8.881784197001252e-16, "value_uncond": 4.7128184498154966e-07}, {"x": -8.840579710144928, "y": -0.14492753623188293, "x2": -8.55072463768116, "y2": 0.1449275362318847, "center_x": -8.695652173913043, "center_y": 8.881784197001252e-16, "value_uncond": 7.159920802534279e-07}, {"x": -8.55072463768116, "y": -0.14492753623188293, "x2": -8.260869565217392, "y2": 0.1449275362318847, "center_x": -8.405797101449277, "center_y": 8.881784197001252e-16, "value_uncond": 1.077659450100381e-06}, {"x": -8.26086956521739, "y": -0.14492753623188293, "x2": -7.971014492753623, "y2": 0.1449275362318847, "center_x": -8.115942028985508, "center_y": 8.881784197001252e-16, "value_uncond": 1.6069437665590913e-06}, {"x": -7.971014492753623, "y": -0.14492753623188293, "x2": -7.681159420289855, "y2": 0.1449275362318847, "center_x": -7.826086956521739, "center_y": 8.881784197001252e-16, "value_uncond": 2.373917552178486e-06}, {"x": -7.681159420289855, "y": -0.14492753623188293, "x2": -7.391304347826088, "y2": 0.1449275362318847, "center_x": -7.536231884057972, "center_y": 8.881784197001252e-16, "value_uncond": 3.4743726551907147e-06}, {"x": -7.391304347826087, "y": -0.14492753623188293, "x2": -7.101449275362319, "y2": 0.1449275362318847, "center_x": -7.246376811594203, "center_y": 8.881784197001252e-16, "value_uncond": 5.037707868221594e-06}, {"x": -7.101449275362318, "y": -0.14492753623188293, "x2": -6.811594202898551, "y2": 0.1449275362318847, "center_x": -6.956521739130435, "center_y": 8.881784197001252e-16, "value_uncond": 7.236613456409447e-06}, {"x": -6.811594202898551, "y": -0.14492753623188293, "x2": -6.521739130434783, "y2": 0.1449275362318847, "center_x": -6.666666666666667, "center_y": 8.881784197001252e-16, "value_uncond": 1.0298727944401408e-05}, {"x": -6.521739130434782, "y": -0.14492753623188293, "x2": -6.231884057971015, "y2": 0.1449275362318847, "center_x": -6.3768115942028984, "center_y": 8.881784197001252e-16, "value_uncond": 1.4520367584310195e-05}, {"x": -6.231884057971014, "y": -0.14492753623188293, "x2": -5.942028985507246, "y2": 0.1449275362318847, "center_x": -6.08695652173913, "center_y": 8.881784197001252e-16, "value_uncond": 2.0282311581402023e-05}, {"x": -5.942028985507246, "y": -0.14492753623188293, "x2": -5.6521739130434785, "y2": 0.1449275362318847, "center_x": -5.797101449275362, "center_y": 8.881784197001252e-16, "value_uncond": 2.80674594679753e-05}, {"x": -5.6521739130434785, "y": -0.14492753623188293, "x2": -5.362318840579711, "y2": 0.1449275362318847, "center_x": -5.507246376811595, "center_y": 8.881784197001252e-16, "value_uncond": 3.8479956524746164e-05}, {"x": -5.36231884057971, "y": -0.14492753623188293, "x2": -5.072463768115942, "y2": 0.1449275362318847, "center_x": -5.217391304347826, "center_y": 8.881784197001252e-16, "value_uncond": 5.226510843525332e-05}, {"x": -5.0724637681159415, "y": -0.14492753623188293, "x2": -4.782608695652174, "y2": 0.1449275362318847, "center_x": -4.927536231884058, "center_y": 8.881784197001252e-16, "value_uncond": 7.032908276910843e-05}, {"x": -4.782608695652174, "y": -0.14492753623188293, "x2": -4.492753623188406, "y2": 0.1449275362318847, "center_x": -4.63768115942029, "center_y": 8.881784197001252e-16, "value_uncond": 9.37570351966054e-05}, {"x": -4.492753623188405, "y": -0.14492753623188293, "x2": -4.202898550724638, "y2": 0.1449275362318847, "center_x": -4.3478260869565215, "center_y": 8.881784197001252e-16, "value_uncond": 0.0001238279240835204}, {"x": -4.202898550724638, "y": -0.14492753623188293, "x2": -3.91304347826087, "y2": 0.1449275362318847, "center_x": -4.057971014492754, "center_y": 8.881784197001252e-16, "value_uncond": 0.00016202391933461542}, {"x": -3.913043478260869, "y": -0.14492753623188293, "x2": -3.6231884057971016, "y2": 0.1449275362318847, "center_x": -3.7681159420289854, "center_y": 8.881784197001252e-16, "value_uncond": 0.00021003201033098035}, {"x": -3.6231884057971016, "y": -0.14492753623188293, "x2": -3.333333333333334, "y2": 0.1449275362318847, "center_x": -3.4782608695652177, "center_y": 8.881784197001252e-16, "value_uncond": 0.00026973522155997187}, {"x": -3.333333333333333, "y": -0.14492753623188293, "x2": -3.0434782608695654, "y2": 0.1449275362318847, "center_x": -3.1884057971014492, "center_y": 8.881784197001252e-16, "value_uncond": 0.0003431908058046359}, {"x": -3.0434782608695645, "y": -0.14492753623188293, "x2": -2.753623188405797, "y2": 0.1449275362318847, "center_x": -2.8985507246376807, "center_y": 8.881784197001252e-16, "value_uncond": 0.0004325929563833926}, {"x": -2.753623188405797, "y": -0.14492753623188293, "x2": -2.4637681159420293, "y2": 0.1449275362318847, "center_x": -2.608695652173913, "center_y": 8.881784197001252e-16, "value_uncond": 0.0005402180087644379}, {"x": -2.4637681159420284, "y": -0.14492753623188293, "x2": -2.1739130434782608, "y2": 0.1449275362318847, "center_x": -2.3188405797101446, "center_y": 8.881784197001252e-16, "value_uncond": 0.0006683508215935073}, {"x": -2.1739130434782608, "y": -0.14492753623188293, "x2": -1.8840579710144931, "y2": 0.1449275362318847, "center_x": -2.028985507246377, "center_y": 8.881784197001252e-16, "value_uncond": 0.0008191920506017823}, {"x": -1.8840579710144922, "y": -0.14492753623188293, "x2": -1.5942028985507246, "y2": 0.1449275362318847, "center_x": -1.7391304347826084, "center_y": 8.881784197001252e-16, "value_uncond": 0.0009947473407901947}, {"x": -1.5942028985507246, "y": -0.14492753623188293, "x2": -1.304347826086957, "y2": 0.1449275362318847, "center_x": -1.4492753623188408, "center_y": 8.881784197001252e-16, "value_uncond": 0.0011967010137874715}, {"x": -1.304347826086957, "y": -0.14492753623188293, "x2": -1.0144927536231894, "y2": 0.1449275362318847, "center_x": -1.1594202898550732, "center_y": 8.881784197001252e-16, "value_uncond": 0.001426278532736519}, {"x": -1.0144927536231876, "y": -0.14492753623188293, "x2": -0.72463768115942, "y2": 0.1449275362318847, "center_x": -0.8695652173913038, "center_y": 8.881784197001252e-16, "value_uncond": 0.0016841037649845162}, {"x": -0.72463768115942, "y": -0.14492753623188293, "x2": -0.43478260869565233, "y2": 0.1449275362318847, "center_x": -0.5797101449275361, "center_y": 8.881784197001252e-16, "value_uncond": 0.0019700586812547044}, {"x": -0.43478260869565233, "y": -0.14492753623188293, "x2": -0.1449275362318847, "y2": 0.1449275362318847, "center_x": -0.2898550724637685, "center_y": 8.881784197001252e-16, "value_uncond": 0.002283154456693605}, {"x": -0.14492753623188293, "y": -0.14492753623188293, "x2": 0.1449275362318847, "y2": 0.1449275362318847, "center_x": 8.881784197001252e-16, "center_y": 8.881784197001252e-16, "value_uncond": 0.0026214237967945083}, {"x": 0.1449275362318847, "y": -0.14492753623188293, "x2": 0.43478260869565233, "y2": 0.1449275362318847, "center_x": 0.2898550724637685, "center_y": 8.881784197001252e-16, "value_uncond": 0.002981844535590075}, {"x": 0.43478260869565233, "y": -0.14492753623188293, "x2": 0.72463768115942, "y2": 0.1449275362318847, "center_x": 0.5797101449275361, "center_y": 8.881784197001252e-16, "value_uncond": 0.003360304014388531}, {"x": 0.72463768115942, "y": -0.14492753623188293, "x2": 1.0144927536231876, "y2": 0.1449275362318847, "center_x": 0.8695652173913038, "center_y": 8.881784197001252e-16, "value_uncond": 0.003751612370341276}, {"x": 1.0144927536231894, "y": -0.14492753623188293, "x2": 1.304347826086957, "y2": 0.1449275362318847, "center_x": 1.1594202898550732, "center_y": 8.881784197001252e-16, "value_uncond": 0.004149570639951545}, {"x": 1.304347826086957, "y": -0.14492753623188293, "x2": 1.5942028985507246, "y2": 0.1449275362318847, "center_x": 1.4492753623188408, "center_y": 8.881784197001252e-16, "value_uncond": 0.004547096590357931}, {"x": 1.5942028985507246, "y": -0.14492753623188293, "x2": 1.8840579710144922, "y2": 0.1449275362318847, "center_x": 1.7391304347826084, "center_y": 8.881784197001252e-16, "value_uncond": 0.004936407593713624}, {"x": 1.884057971014494, "y": -0.14492753623188293, "x2": 2.1739130434782616, "y2": 0.1449275362318847, "center_x": 2.028985507246378, "center_y": 8.881784197001252e-16, "value_uncond": 0.005309255899610263}, {"x": 2.1739130434782616, "y": -0.14492753623188293, "x2": 2.4637681159420293, "y2": 0.1449275362318847, "center_x": 2.3188405797101455, "center_y": 8.881784197001252e-16, "value_uncond": 0.005657207642854213}, {"x": 2.4637681159420293, "y": -0.14492753623188293, "x2": 2.753623188405797, "y2": 0.1449275362318847, "center_x": 2.608695652173913, "center_y": 8.881784197001252e-16, "value_uncond": 0.005971953192265772}, {"x": 2.753623188405797, "y": -0.14492753623188293, "x2": 3.0434782608695645, "y2": 0.1449275362318847, "center_x": 2.8985507246376807, "center_y": 8.881784197001252e-16, "value_uncond": 0.006245633348933196}, {"x": 3.0434782608695663, "y": -0.14492753623188293, "x2": 3.333333333333334, "y2": 0.1449275362318847, "center_x": 3.18840579710145, "center_y": 8.881784197001252e-16, "value_uncond": 0.0064711637567894525}, {"x": 3.333333333333334, "y": -0.14492753623188293, "x2": 3.6231884057971016, "y2": 0.1449275362318847, "center_x": 3.4782608695652177, "center_y": 8.881784197001252e-16, "value_uncond": 0.00664253894489519}, {"x": 3.6231884057971016, "y": -0.14492753623188293, "x2": 3.913043478260869, "y2": 0.1449275362318847, "center_x": 3.7681159420289854, "center_y": 8.881784197001252e-16, "value_uncond": 0.006755097832135153}, {"x": 3.913043478260871, "y": -0.14492753623188293, "x2": 4.202898550724639, "y2": 0.1449275362318847, "center_x": 4.057971014492755, "center_y": 8.881784197001252e-16, "value_uncond": 0.006805734324488884}, {"x": 4.202898550724639, "y": -0.14492753623188293, "x2": 4.492753623188406, "y2": 0.1449275362318847, "center_x": 4.347826086956522, "center_y": 8.881784197001252e-16, "value_uncond": 0.006793039727087408}, {"x": 4.492753623188406, "y": -0.14492753623188293, "x2": 4.782608695652174, "y2": 0.1449275362318847, "center_x": 4.63768115942029, "center_y": 8.881784197001252e-16, "value_uncond": 0.0067173678581270435}, {"x": 4.782608695652174, "y": -0.14492753623188293, "x2": 5.0724637681159415, "y2": 0.1449275362318847, "center_x": 4.927536231884058, "center_y": 8.881784197001252e-16, "value_uncond": 0.006580818663995012}, {"x": 5.072463768115943, "y": -0.14492753623188293, "x2": 5.362318840579711, "y2": 0.1449275362318847, "center_x": 5.217391304347827, "center_y": 8.881784197001252e-16, "value_uncond": 0.006387141394591343}, {"x": 5.362318840579711, "y": -0.14492753623188293, "x2": 5.6521739130434785, "y2": 0.1449275362318847, "center_x": 5.507246376811595, "center_y": 8.881784197001252e-16, "value_uncond": 0.006141563569733192}, {"x": 5.6521739130434785, "y": -0.14492753623188293, "x2": 5.942028985507246, "y2": 0.1449275362318847, "center_x": 5.797101449275362, "center_y": 8.881784197001252e-16, "value_uncond": 0.005850556625482325}, {"x": 5.942028985507246, "y": -0.14492753623188293, "x2": 6.231884057971014, "y2": 0.1449275362318847, "center_x": 6.08695652173913, "center_y": 8.881784197001252e-16, "value_uncond": 0.005521552898678568}, {"x": 6.2318840579710155, "y": -0.14492753623188293, "x2": 6.521739130434783, "y2": 0.1449275362318847, "center_x": 6.376811594202899, "center_y": 8.881784197001252e-16, "value_uncond": 0.005162631202661442}, {"x": 6.521739130434785, "y": -0.14492753623188293, "x2": 6.8115942028985526, "y2": 0.1449275362318847, "center_x": 6.666666666666669, "center_y": 8.881784197001252e-16, "value_uncond": 0.004782189495559725}, {"x": 6.811594202898551, "y": -0.14492753623188293, "x2": 7.101449275362318, "y2": 0.1449275362318847, "center_x": 6.956521739130435, "center_y": 8.881784197001252e-16, "value_uncond": 0.004388623000888145}, {"x": 7.10144927536232, "y": -0.14492753623188293, "x2": 7.391304347826088, "y2": 0.1449275362318847, "center_x": 7.246376811594204, "center_y": 8.881784197001252e-16, "value_uncond": 0.003990024691474892}, {"x": 7.391304347826086, "y": -0.14492753623188293, "x2": 7.681159420289854, "y2": 0.1449275362318847, "center_x": 7.53623188405797, "center_y": 8.881784197001252e-16, "value_uncond": 0.003593922486952622}, {"x": 7.681159420289855, "y": -0.14492753623188293, "x2": 7.971014492753623, "y2": 0.1449275362318847, "center_x": 7.826086956521739, "center_y": 8.881784197001252e-16, "value_uncond": 0.0032070641234048475}, {"x": 7.971014492753625, "y": -0.14492753623188293, "x2": 8.260869565217392, "y2": 0.1449275362318847, "center_x": 8.115942028985508, "center_y": 8.881784197001252e-16, "value_uncond": 0.002835256765410144}, {"x": 8.26086956521739, "y": -0.14492753623188293, "x2": 8.550724637681158, "y2": 0.1449275362318847, "center_x": 8.405797101449274, "center_y": 8.881784197001252e-16, "value_uncond": 0.002483264396243414}, {"x": 8.55072463768116, "y": -0.14492753623188293, "x2": 8.840579710144928, "y2": 0.1449275362318847, "center_x": 8.695652173913043, "center_y": 8.881784197001252e-16, "value_uncond": 0.0021547621731544497}, {"x": 8.84057971014493, "y": -0.14492753623188293, "x2": 9.130434782608697, "y2": 0.1449275362318847, "center_x": 8.985507246376812, "center_y": 8.881784197001252e-16, "value_uncond": 0.0018523435543355879}, {"x": 9.130434782608695, "y": -0.14492753623188293, "x2": 9.420289855072463, "y2": 0.1449275362318847, "center_x": 9.275362318840578, "center_y": 8.881784197001252e-16, "value_uncond": 0.0015775733043811879}, {"x": 9.420289855072465, "y": -0.14492753623188293, "x2": 9.710144927536232, "y2": 0.1449275362318847, "center_x": 9.565217391304348, "center_y": 8.881784197001252e-16, "value_uncond": 0.0013310775944750685}, {"x": 9.710144927536234, "y": -0.14492753623188293, "x2": 10.000000000000002, "y2": 0.1449275362318847, "center_x": 9.855072463768117, "center_y": 8.881784197001252e-16, "value_uncond": 0.001112661375447905}, {"x": 10.0, "y": -0.14492753623188293, "x2": 10.289855072463768, "y2": 0.1449275362318847, "center_x": 10.144927536231883, "center_y": 8.881784197001252e-16, "value_uncond": 0.0009214429807440965}, {"x": -10.0, "y": 0.1449275362318847, "x2": -9.710144927536232, "y2": 0.43478260869565233, "center_x": -9.855072463768117, "center_y": 0.2898550724637685, "value_uncond": 1.445509102212839e-07}, {"x": -9.710144927536232, "y": 0.1449275362318847, "x2": -9.420289855072465, "y2": 0.43478260869565233, "center_x": -9.565217391304348, "center_y": 0.2898550724637685, "value_uncond": 2.258452161066759e-07}, {"x": -9.420289855072463, "y": 0.1449275362318847, "x2": -9.130434782608695, "y2": 0.43478260869565233, "center_x": -9.275362318840578, "center_y": 0.2898550724637685, "value_uncond": 3.4958015871375006e-07}, {"x": -9.130434782608695, "y": 0.1449275362318847, "x2": -8.840579710144928, "y2": 0.43478260869565233, "center_x": -8.985507246376812, "center_y": 0.2898550724637685, "value_uncond": 5.360785981646451e-07}, {"x": -8.840579710144928, "y": 0.1449275362318847, "x2": -8.55072463768116, "y2": 0.43478260869565233, "center_x": -8.695652173913043, "center_y": 0.2898550724637685, "value_uncond": 8.144341539281496e-07}, {"x": -8.55072463768116, "y": 0.1449275362318847, "x2": -8.260869565217392, "y2": 0.43478260869565233, "center_x": -8.405797101449277, "center_y": 0.2898550724637685, "value_uncond": 1.2258273333896651e-06}, {"x": -8.26086956521739, "y": 0.1449275362318847, "x2": -7.971014492753623, "y2": 0.43478260869565233, "center_x": -8.115942028985508, "center_y": 0.2898550724637685, "value_uncond": 1.8278831889654851e-06}, {"x": -7.971014492753623, "y": 0.1449275362318847, "x2": -7.681159420289855, "y2": 0.43478260869565233, "center_x": -7.826086956521739, "center_y": 0.2898550724637685, "value_uncond": 2.7003085458980758e-06}, {"x": -7.681159420289855, "y": 0.1449275362318847, "x2": -7.391304347826088, "y2": 0.43478260869565233, "center_x": -7.536231884057972, "center_y": 0.2898550724637685, "value_uncond": 3.952065716788075e-06}, {"x": -7.391304347826087, "y": 0.1449275362318847, "x2": -7.101449275362319, "y2": 0.43478260869565233, "center_x": -7.246376811594203, "center_y": 0.2898550724637685, "value_uncond": 5.73034459255472e-06}, {"x": -7.101449275362318, "y": 0.1449275362318847, "x2": -6.811594202898551, "y2": 0.43478260869565233, "center_x": -6.956521739130435, "center_y": 0.2898550724637685, "value_uncond": 8.23157870068867e-06}, {"x": -6.811594202898551, "y": 0.1449275362318847, "x2": -6.521739130434783, "y2": 0.43478260869565233, "center_x": -6.666666666666667, "center_y": 0.2898550724637685, "value_uncond": 1.1714704689143955e-05}, {"x": -6.521739130434782, "y": 0.1449275362318847, "x2": -6.231884057971015, "y2": 0.43478260869565233, "center_x": -6.3768115942028984, "center_y": 0.2898550724637685, "value_uncond": 1.6516779465029294e-05}, {"x": -6.231884057971014, "y": 0.1449275362318847, "x2": -5.942028985507246, "y2": 0.43478260869565233, "center_x": -6.08695652173913, "center_y": 0.2898550724637685, "value_uncond": 2.307093573808732e-05}, {"x": -5.942028985507246, "y": 0.1449275362318847, "x2": -5.6521739130434785, "y2": 0.43478260869565233, "center_x": -5.797101449275362, "center_y": 0.2898550724637685, "value_uncond": 3.192646711486255e-05}, {"x": -5.6521739130434785, "y": 0.1449275362318847, "x2": -5.362318840579711, "y2": 0.43478260869565233, "center_x": -5.507246376811595, "center_y": 0.2898550724637685, "value_uncond": 4.37705830828896e-05}, {"x": -5.36231884057971, "y": 0.1449275362318847, "x2": -5.072463768115942, "y2": 0.43478260869565233, "center_x": -5.217391304347826, "center_y": 0.2898550724637685, "value_uncond": 5.9451061739903565e-05}, {"x": -5.0724637681159415, "y": 0.1449275362318847, "x2": -4.782608695652174, "y2": 0.43478260869565233, "center_x": -4.927536231884058, "center_y": 0.2898550724637685, "value_uncond": 7.999866004289843e-05}, {"x": -4.782608695652174, "y": 0.1449275362318847, "x2": -4.492753623188406, "y2": 0.43478260869565233, "center_x": -4.63768115942029, "center_y": 0.2898550724637685, "value_uncond": 0.00010664773220414889}, {"x": -4.492753623188405, "y": 0.1449275362318847, "x2": -4.202898550724638, "y2": 0.43478260869565233, "center_x": -4.3478260869565215, "center_y": 0.2898550724637685, "value_uncond": 0.0001408530811513238}, {"x": -4.202898550724638, "y": 0.1449275362318847, "x2": -3.91304347826087, "y2": 0.43478260869565233, "center_x": -4.057971014492754, "center_y": 0.2898550724637685, "value_uncond": 0.00018430066099712087}, {"x": -3.913043478260869, "y": 0.1449275362318847, "x2": -3.6231884057971016, "y2": 0.43478260869565233, "center_x": -3.7681159420289854, "center_y": 0.2898550724637685, "value_uncond": 0.00023890940605263985}, {"x": -3.6231884057971016, "y": 0.1449275362318847, "x2": -3.333333333333334, "y2": 0.43478260869565233, "center_x": -3.4782608695652177, "center_y": 0.2898550724637685, "value_uncond": 0.0003068212386903227}, {"x": -3.333333333333333, "y": 0.1449275362318847, "x2": -3.0434782608695654, "y2": 0.43478260869565233, "center_x": -3.1884057971014492, "center_y": 0.2898550724637685, "value_uncond": 0.0003903762643051674}, {"x": -3.0434782608695645, "y": 0.1449275362318847, "x2": -2.753623188405797, "y2": 0.43478260869565233, "center_x": -2.8985507246376807, "center_y": 0.2898550724637685, "value_uncond": 0.000492070356843446}, {"x": -2.753623188405797, "y": 0.1449275362318847, "x2": -2.4637681159420293, "y2": 0.43478260869565233, "center_x": -2.608695652173913, "center_y": 0.2898550724637685, "value_uncond": 0.0006144928261623863}, {"x": -2.4637681159420284, "y": 0.1449275362318847, "x2": -2.1739130434782608, "y2": 0.43478260869565233, "center_x": -2.3188405797101446, "center_y": 0.2898550724637685, "value_uncond": 0.0007602426771522744}, {"x": -2.1739130434782608, "y": 0.1449275362318847, "x2": -1.8840579710144931, "y2": 0.43478260869565233, "center_x": -2.028985507246377, "center_y": 0.2898550724637685, "value_uncond": 0.0009318231346921867}, {"x": -1.8840579710144922, "y": 0.1449275362318847, "x2": -1.5942028985507246, "y2": 0.43478260869565233, "center_x": -1.7391304347826084, "center_y": 0.2898550724637685, "value_uncond": 0.001131515600817794}, {"x": -1.5942028985507246, "y": 0.1449275362318847, "x2": -1.304347826086957, "y2": 0.43478260869565233, "center_x": -1.4492753623188408, "center_y": 0.2898550724637685, "value_uncond": 0.0013612359752973578}, {"x": -1.304347826086957, "y": 0.1449275362318847, "x2": -1.0144927536231894, "y2": 0.43478260869565233, "center_x": -1.1594202898550732, "center_y": 0.2898550724637685, "value_uncond": 0.001622378210753385}, {"x": -1.0144927536231876, "y": 0.1449275362318847, "x2": -0.72463768115942, "y2": 0.43478260869565233, "center_x": -0.8695652173913038, "center_y": 0.2898550724637685, "value_uncond": 0.0019156519503356758}, {"x": -0.72463768115942, "y": 0.1449275362318847, "x2": -0.43478260869565233, "y2": 0.43478260869565233, "center_x": -0.5797101449275361, "center_y": 0.2898550724637685, "value_uncond": 0.002240922936869036}, {"x": -0.43478260869565233, "y": 0.1449275362318847, "x2": -0.1449275362318847, "y2": 0.43478260869565233, "center_x": -0.2898550724637685, "center_y": 0.2898550724637685, "value_uncond": 0.002597066391525409}, {"x": -0.14492753623188293, "y": 0.1449275362318847, "x2": 0.1449275362318847, "y2": 0.43478260869565233, "center_x": 8.881784197001252e-16, "center_y": 0.2898550724637685, "value_uncond": 0.002981844535590075}, {"x": 0.1449275362318847, "y": 0.1449275362318847, "x2": 0.43478260869565233, "y2": 0.43478260869565233, "center_x": 0.2898550724637685, "center_y": 0.2898550724637685, "value_uncond": 0.0033918196841353316}, {"x": 0.43478260869565233, "y": 0.1449275362318847, "x2": 0.72463768115942, "y2": 0.43478260869565233, "center_x": 0.5797101449275361, "center_y": 0.2898550724637685, "value_uncond": 0.0038223137271730843}, {"x": 0.72463768115942, "y": 0.1449275362318847, "x2": 1.0144927536231876, "y2": 0.43478260869565233, "center_x": 0.8695652173913038, "center_y": 0.2898550724637685, "value_uncond": 0.0042674232452736}, {"x": 1.0144927536231894, "y": 0.1449275362318847, "x2": 1.304347826086957, "y2": 0.43478260869565233, "center_x": 1.1594202898550732, "center_y": 0.2898550724637685, "value_uncond": 0.004720096976656257}, {"x": 1.304347826086957, "y": 0.1449275362318847, "x2": 1.5942028985507246, "y2": 0.43478260869565233, "center_x": 1.4492753623188408, "center_y": 0.2898550724637685, "value_uncond": 0.005172278949072928}, {"x": 1.5942028985507246, "y": 0.1449275362318847, "x2": 1.8840579710144922, "y2": 0.43478260869565233, "center_x": 1.7391304347826084, "center_y": 0.2898550724637685, "value_uncond": 0.005615116497667997}, {"x": 1.884057971014494, "y": 0.1449275362318847, "x2": 2.1739130434782616, "y2": 0.43478260869565233, "center_x": 2.028985507246378, "center_y": 0.2898550724637685, "value_uncond": 0.006039227885113778}, {"x": 2.1739130434782616, "y": 0.1449275362318847, "x2": 2.4637681159420293, "y2": 0.43478260869565233, "center_x": 2.3188405797101455, "center_y": 0.2898550724637685, "value_uncond": 0.006435019670291636}, {"x": 2.4637681159420293, "y": 0.1449275362318847, "x2": 2.753623188405797, "y2": 0.43478260869565233, "center_x": 2.608695652173913, "center_y": 0.2898550724637685, "value_uncond": 0.006793039727087407}, {"x": 2.753623188405797, "y": 0.1449275362318847, "x2": 3.0434782608695645, "y2": 0.43478260869565233, "center_x": 2.8985507246376807, "center_y": 0.2898550724637685, "value_uncond": 0.007104348291790332}, {"x": 3.0434782608695663, "y": 0.1449275362318847, "x2": 3.333333333333334, "y2": 0.43478260869565233, "center_x": 3.18840579710145, "center_y": 0.2898550724637685, "value_uncond": 0.007360886977026161}, {"x": 3.333333333333334, "y": 0.1449275362318847, "x2": 3.6231884057971016, "y2": 0.43478260869565233, "center_x": 3.4782608695652177, "center_y": 0.2898550724637685, "value_uncond": 0.007555824616950575}, {"x": 3.6231884057971016, "y": 0.1449275362318847, "x2": 3.913043478260869, "y2": 0.43478260869565233, "center_x": 3.7681159420289854, "center_y": 0.2898550724637685, "value_uncond": 0.007683859276305922}, {"x": 3.913043478260871, "y": 0.1449275362318847, "x2": 4.202898550724639, "y2": 0.43478260869565233, "center_x": 4.057971014492755, "center_y": 0.2898550724637685, "value_uncond": 0.007741457802805548}, {"x": 4.202898550724639, "y": 0.1449275362318847, "x2": 4.492753623188406, "y2": 0.43478260869565233, "center_x": 4.347826086956522, "center_y": 0.2898550724637685, "value_uncond": 0.007727017819488317}, {"x": 4.492753623188406, "y": 0.1449275362318847, "x2": 4.782608695652174, "y2": 0.43478260869565233, "center_x": 4.63768115942029, "center_y": 0.2898550724637685, "value_uncond": 0.007640941791173754}, {"x": 4.782608695652174, "y": 0.1449275362318847, "x2": 5.0724637681159415, "y2": 0.43478260869565233, "center_x": 4.927536231884058, "center_y": 0.2898550724637685, "value_uncond": 0.0074856183868239065}, {"x": 5.072463768115943, "y": 0.1449275362318847, "x2": 5.362318840579711, "y2": 0.43478260869565233, "center_x": 5.217391304347827, "center_y": 0.2898550724637685, "value_uncond": 0.007265312342396628}, {"x": 5.362318840579711, "y": 0.1449275362318847, "x2": 5.6521739130434785, "y2": 0.43478260869565233, "center_x": 5.507246376811595, "center_y": 0.2898550724637685, "value_uncond": 0.006985969911763776}, {"x": 5.6521739130434785, "y": 0.1449275362318847, "x2": 5.942028985507246, "y2": 0.43478260869565233, "center_x": 5.797101449275362, "center_y": 0.2898550724637685, "value_uncond": 0.006654952291646691}, {"x": 5.942028985507246, "y": 0.1449275362318847, "x2": 6.231884057971014, "y2": 0.43478260869565233, "center_x": 6.08695652173913, "center_y": 0.2898550724637685, "value_uncond": 0.006280713694225636}, {"x": 6.2318840579710155, "y": 0.1449275362318847, "x2": 6.521739130434783, "y2": 0.43478260869565233, "center_x": 6.376811594202899, "center_y": 0.2898550724637685, "value_uncond": 0.0058724436925257605}, {"x": 6.521739130434785, "y": 0.1449275362318847, "x2": 6.8115942028985526, "y2": 0.43478260869565233, "center_x": 6.666666666666669, "center_y": 0.2898550724637685, "value_uncond": 0.005439694883722319}, {"x": 6.811594202898551, "y": 0.1449275362318847, "x2": 7.101449275362318, "y2": 0.43478260869565233, "center_x": 6.956521739130435, "center_y": 0.2898550724637685, "value_uncond": 0.004992016754393205}, {"x": 7.10144927536232, "y": 0.1449275362318847, "x2": 7.391304347826088, "y2": 0.43478260869565233, "center_x": 7.246376811594204, "center_y": 0.2898550724637685, "value_uncond": 0.004538614983846708}, {"x": 7.391304347826086, "y": 0.1449275362318847, "x2": 7.681159420289854, "y2": 0.43478260869565233, "center_x": 7.53623188405797, "center_y": 0.2898550724637685, "value_uncond": 0.004088052508777173}, {"x": 7.681159420289855, "y": 0.1449275362318847, "x2": 7.971014492753623, "y2": 0.43478260869565233, "center_x": 7.826086956521739, "center_y": 0.2898550724637685, "value_uncond": 0.0036480048145421467}, {"x": 7.971014492753625, "y": 0.1449275362318847, "x2": 8.260869565217392, "y2": 0.43478260869565233, "center_x": 8.115942028985508, "center_y": 0.2898550724637685, "value_uncond": 0.0032250774953942927}, {"x": 8.26086956521739, "y": 0.1449275362318847, "x2": 8.550724637681158, "y2": 0.43478260869565233, "center_x": 8.405797101449274, "center_y": 0.2898550724637685, "value_uncond": 0.0028246895368151965}, {"x": 8.55072463768116, "y": 0.1449275362318847, "x2": 8.840579710144928, "y2": 0.43478260869565233, "center_x": 8.695652173913043, "center_y": 0.2898550724637685, "value_uncond": 0.002451021395080612}, {"x": 8.84057971014493, "y": 0.1449275362318847, "x2": 9.130434782608697, "y2": 0.43478260869565233, "center_x": 8.985507246376812, "center_y": 0.2898550724637685, "value_uncond": 0.002107023104118119}, {"x": 9.130434782608695, "y": 0.1449275362318847, "x2": 9.420289855072463, "y2": 0.43478260869565233, "center_x": 9.275362318840578, "center_y": 0.2898550724637685, "value_uncond": 0.001794474568711094}, {"x": 9.420289855072465, "y": 0.1449275362318847, "x2": 9.710144927536232, "y2": 0.43478260869565233, "center_x": 9.565217391304348, "center_y": 0.2898550724637685, "value_uncond": 0.0015140880526015143}, {"x": 9.710144927536234, "y": 0.1449275362318847, "x2": 10.000000000000002, "y2": 0.43478260869565233, "center_x": 9.855072463768117, "center_y": 0.2898550724637685, "value_uncond": 0.001265641689221894}, {"x": 10.0, "y": 0.1449275362318847, "x2": 10.289855072463768, "y2": 0.43478260869565233, "center_x": 10.144927536231883, "center_y": 0.2898550724637685, "value_uncond": 0.001048132591284704}, {"x": -10.0, "y": 0.43478260869565233, "x2": -9.710144927536232, "y2": 0.72463768115942, "center_x": -9.855072463768117, "center_y": 0.5797101449275361, "value_uncond": 1.628974945214488e-07}, {"x": -9.710144927536232, "y": 0.43478260869565233, "x2": -9.420289855072465, "y2": 0.72463768115942, "center_x": -9.565217391304348, "center_y": 0.5797101449275361, "value_uncond": 2.545097765009833e-07}, {"x": -9.420289855072463, "y": 0.43478260869565233, "x2": -9.130434782608695, "y2": 0.72463768115942, "center_x": -9.275362318840578, "center_y": 0.5797101449275361, "value_uncond": 3.9394931447823936e-07}, {"x": -9.130434782608695, "y": 0.43478260869565233, "x2": -8.840579710144928, "y2": 0.72463768115942, "center_x": -8.985507246376812, "center_y": 0.5797101449275361, "value_uncond": 6.04118371678944e-07}, {"x": -8.840579710144928, "y": 0.43478260869565233, "x2": -8.55072463768116, "y2": 0.72463768115942, "center_x": -8.695652173913043, "center_y": 0.5797101449275361, "value_uncond": 9.178031665417845e-07}, {"x": -8.55072463768116, "y": 0.43478260869565233, "x2": -8.260869565217392, "y2": 0.72463768115942, "center_x": -8.405797101449277, "center_y": 0.5797101449275361, "value_uncond": 1.3814108885194928e-06}, {"x": -8.26086956521739, "y": 0.43478260869565233, "x2": -7.971014492753623, "y2": 0.72463768115942, "center_x": -8.115942028985508, "center_y": 0.5797101449275361, "value_uncond": 2.0598804345440314e-06}, {"x": -7.971014492753623, "y": 0.43478260869565233, "x2": -7.681159420289855, "y2": 0.72463768115942, "center_x": -7.826086956521739, "center_y": 0.5797101449275361, "value_uncond": 3.043035120901547e-06}, {"x": -7.681159420289855, "y": 0.43478260869565233, "x2": -7.391304347826088, "y2": 0.72463768115942, "center_x": -7.536231884057972, "center_y": 0.5797101449275361, "value_uncond": 4.453666894683446e-06}, {"x": -7.391304347826087, "y": 0.43478260869565233, "x2": -7.101449275362319, "y2": 0.72463768115942, "center_x": -7.246376811594203, "center_y": 0.5797101449275361, "value_uncond": 6.4576471738761325e-06}, {"x": -7.101449275362318, "y": 0.43478260869565233, "x2": -6.811594202898551, "y2": 0.72463768115942, "center_x": -6.956521739130435, "center_y": 0.5797101449275361, "value_uncond": 9.276341077656326e-06}, {"x": -6.811594202898551, "y": 0.43478260869565233, "x2": -6.521739130434783, "y2": 0.72463768115942, "center_x": -6.666666666666667, "center_y": 0.5797101449275361, "value_uncond": 1.3201549820744305e-05}, {"x": -6.521739130434782, "y": 0.43478260869565233, "x2": -6.231884057971015, "y2": 0.72463768115942, "center_x": -6.3768115942028984, "center_y": 0.5797101449275361, "value_uncond": 1.8613109999084778e-05}, {"x": -6.231884057971014, "y": 0.43478260869565233, "x2": -5.942028985507246, "y2": 0.72463768115942, "center_x": -6.08695652173913, "center_y": 0.5797101449275361, "value_uncond": 2.5999128073608017e-05}, {"x": -5.942028985507246, "y": 0.43478260869565233, "x2": -5.6521739130434785, "y2": 0.72463768115942, "center_x": -5.797101449275362, "center_y": 0.5797101449275361, "value_uncond": 3.5978614689945916e-05}, {"x": -5.6521739130434785, "y": 0.43478260869565233, "x2": -5.362318840579711, "y2": 0.72463768115942, "center_x": -5.507246376811595, "center_y": 0.5797101449275361, "value_uncond": 4.932600083272101e-05}, {"x": -5.36231884057971, "y": 0.43478260869565233, "x2": -5.072463768115942, "y2": 0.72463768115942, "center_x": -5.217391304347826, "center_y": 0.5797101449275361, "value_uncond": 6.699666566779119e-05}, {"x": -5.0724637681159415, "y": 0.43478260869565233, "x2": -4.782608695652174, "y2": 0.72463768115942, "center_x": -4.927536231884058, "center_y": 0.5797101449275361, "value_uncond": 9.015219112845478e-05}, {"x": -4.782608695652174, "y": 0.43478260869565233, "x2": -4.492753623188406, "y2": 0.72463768115942, "center_x": -4.63768115942029, "center_y": 0.5797101449275361, "value_uncond": 0.00012018359722436608}, {"x": -4.492753623188405, "y": 0.43478260869565233, "x2": -4.202898550724638, "y2": 0.72463768115942, "center_x": -4.3478260869565215, "center_y": 0.5797101449275361, "value_uncond": 0.00015873033231027375}, {"x": -4.202898550724638, "y": 0.43478260869565233, "x2": -3.91304347826087, "y2": 0.72463768115942, "center_x": -4.057971014492754, "center_y": 0.5797101449275361, "value_uncond": 0.00020769233392663476}, {"x": -3.913043478260869, "y": 0.43478260869565233, "x2": -3.6231884057971016, "y2": 0.72463768115942, "center_x": -3.7681159420289854, "center_y": 0.5797101449275361, "value_uncond": 0.0002692320899536763}, {"x": -3.6231884057971016, "y": 0.43478260869565233, "x2": -3.333333333333334, "y2": 0.72463768115942, "center_x": -3.4782608695652177, "center_y": 0.5797101449275361, "value_uncond": 0.00034576337825966737}, {"x": -3.333333333333333, "y": 0.43478260869565233, "x2": -3.0434782608695654, "y2": 0.72463768115942, "center_x": -3.1884057971014492, "center_y": 0.5797101449275361, "value_uncond": 0.0004399233133752442}, {"x": -3.0434782608695645, "y": 0.43478260869565233, "x2": -2.753623188405797, "y2": 0.72463768115942, "center_x": -2.8985507246376807, "center_y": 0.5797101449275361, "value_uncond": 0.0005545245487238045}, {"x": -2.753623188405797, "y": 0.43478260869565233, "x2": -2.4637681159420293, "y2": 0.72463768115942, "center_x": -2.608695652173913, "center_y": 0.5797101449275361, "value_uncond": 0.0006924850326436628}, {"x": -2.4637681159420284, "y": 0.43478260869565233, "x2": -2.1739130434782608, "y2": 0.72463768115942, "center_x": -2.3188405797101446, "center_y": 0.5797101449275361, "value_uncond": 0.0008567336390120467}, {"x": -2.1739130434782608, "y": 0.43478260869565233, "x2": -1.8840579710144931, "y2": 0.72463768115942, "center_x": -2.028985507246377, "center_y": 0.5797101449275361, "value_uncond": 0.0010500913051748446}, {"x": -1.8840579710144922, "y": 0.43478260869565233, "x2": -1.5942028985507246, "y2": 0.72463768115942, "center_x": -1.7391304347826084, "center_y": 0.5797101449275361, "value_uncond": 0.0012751289915987729}, {"x": -1.5942028985507246, "y": 0.43478260869565233, "x2": -1.304347826086957, "y2": 0.72463768115942, "center_x": -1.4492753623188408, "center_y": 0.5797101449275361, "value_uncond": 0.0015340057664732067}, {"x": -1.304347826086957, "y": 0.43478260869565233, "x2": -1.0144927536231894, "y2": 0.72463768115942, "center_x": -1.1594202898550732, "center_y": 0.5797101449275361, "value_uncond": 0.0018282925046500629}, {"x": -1.0144927536231876, "y": 0.43478260869565233, "x2": -0.72463768115942, "y2": 0.72463768115942, "center_x": -0.8695652173913038, "center_y": 0.5797101449275361, "value_uncond": 0.0021587889180850073}, {"x": -0.72463768115942, "y": 0.43478260869565233, "x2": -0.43478260869565233, "y2": 0.72463768115942, "center_x": -0.5797101449275361, "center_y": 0.5797101449275361, "value_uncond": 0.002525343709512413}, {"x": -0.43478260869565233, "y": 0.43478260869565233, "x2": -0.1449275362318847, "y2": 0.72463768115942, "center_x": -0.2898550724637685, "center_y": 0.5797101449275361, "value_uncond": 0.0029266893417531576}, {"x": -0.14492753623188293, "y": 0.43478260869565233, "x2": 0.1449275362318847, "y2": 0.72463768115942, "center_x": 8.881784197001252e-16, "center_y": 0.5797101449275361, "value_uncond": 0.003360304014388531}, {"x": 0.1449275362318847, "y": 0.43478260869565233, "x2": 0.43478260869565233, "y2": 0.72463768115942, "center_x": 0.2898550724637685, "center_y": 0.5797101449275361, "value_uncond": 0.0038223137271730843}, {"x": 0.43478260869565233, "y": 0.43478260869565233, "x2": 0.72463768115942, "y2": 0.72463768115942, "center_x": 0.5797101449275361, "center_y": 0.5797101449275361, "value_uncond": 0.004307446618483878}, {"x": 0.72463768115942, "y": 0.43478260869565233, "x2": 1.0144927536231876, "y2": 0.72463768115942, "center_x": 0.8695652173913038, "center_y": 0.5797101449275361, "value_uncond": 0.004809049999432688}, {"x": 1.0144927536231894, "y": 0.43478260869565233, "x2": 1.304347826086957, "y2": 0.72463768115942, "center_x": 1.1594202898550732, "center_y": 0.5797101449275361, "value_uncond": 0.005319177653177842}, {"x": 1.304347826086957, "y": 0.43478260869565233, "x2": 1.5942028985507246, "y2": 0.72463768115942, "center_x": 1.4492753623188408, "center_y": 0.5797101449275361, "value_uncond": 0.005828751133287251}, {"x": 1.5942028985507246, "y": 0.43478260869565233, "x2": 1.8840579710144922, "y2": 0.72463768115942, "center_x": 1.7391304347826084, "center_y": 0.5797101449275361, "value_uncond": 0.00632779418348823}, {"x": 1.884057971014494, "y": 0.43478260869565233, "x2": 2.1739130434782616, "y2": 0.72463768115942, "center_x": 2.028985507246378, "center_y": 0.5797101449275361, "value_uncond": 0.006805734324488883}, {"x": 2.1739130434782616, "y": 0.43478260869565233, "x2": 2.4637681159420293, "y2": 0.72463768115942, "center_x": 2.3188405797101455, "center_y": 0.5797101449275361, "value_uncond": 0.007251760503493538}, {"x": 2.4637681159420293, "y": 0.43478260869565233, "x2": 2.753623188405797, "y2": 0.72463768115942, "center_x": 2.608695652173913, "center_y": 0.5797101449275361, "value_uncond": 0.007655220918590051}, {"x": 2.753623188405797, "y": 0.43478260869565233, "x2": 3.0434782608695645, "y2": 0.72463768115942, "center_x": 2.8985507246376807, "center_y": 0.5797101449275361, "value_uncond": 0.008006041159953762}, {"x": 3.0434782608695663, "y": 0.43478260869565233, "x2": 3.333333333333334, "y2": 0.72463768115942, "center_x": 3.18840579710145, "center_y": 0.5797101449275361, "value_uncond": 0.008295140059495594}, {"x": 3.333333333333334, "y": 0.43478260869565233, "x2": 3.6231884057971016, "y2": 0.72463768115942, "center_x": 3.4782608695652177, "center_y": 0.5797101449275361, "value_uncond": 0.008514819431164715}, {"x": 3.6231884057971016, "y": 0.43478260869565233, "x2": 3.913043478260869, "y2": 0.72463768115942, "center_x": 3.7681159420289854, "center_y": 0.5797101449275361, "value_uncond": 0.008659104411376637}, {"x": 3.913043478260871, "y": 0.43478260869565233, "x2": 4.202898550724639, "y2": 0.72463768115942, "center_x": 4.057971014492755, "center_y": 0.5797101449275361, "value_uncond": 0.008724013415689048}, {"x": 4.202898550724639, "y": 0.43478260869565233, "x2": 4.492753623188406, "y2": 0.72463768115942, "center_x": 4.347826086956522, "center_y": 0.5797101449275361, "value_uncond": 0.008707740691430809}, {"x": 4.492753623188406, "y": 0.43478260869565233, "x2": 4.782608695652174, "y2": 0.72463768115942, "center_x": 4.63768115942029, "center_y": 0.5797101449275361, "value_uncond": 0.008610739784765228}, {"x": 4.782608695652174, "y": 0.43478260869565233, "x2": 5.0724637681159415, "y2": 0.72463768115942, "center_x": 4.927536231884058, "center_y": 0.5797101449275361, "value_uncond": 0.008435702537539325}, {"x": 5.072463768115943, "y": 0.43478260869565233, "x2": 5.362318840579711, "y2": 0.72463768115942, "center_x": 5.217391304347827, "center_y": 0.5797101449275361, "value_uncond": 0.008187434971391197}, {"x": 5.362318840579711, "y": 0.43478260869565233, "x2": 5.6521739130434785, "y2": 0.72463768115942, "center_x": 5.507246376811595, "center_y": 0.5797101449275361, "value_uncond": 0.007872638046252756}, {"x": 5.6521739130434785, "y": 0.43478260869565233, "x2": 5.942028985507246, "y2": 0.72463768115942, "center_x": 5.797101449275362, "center_y": 0.5797101449275361, "value_uncond": 0.0074996072512409475}, {"x": 5.942028985507246, "y": 0.43478260869565233, "x2": 6.231884057971014, "y2": 0.72463768115942, "center_x": 6.08695652173913, "center_y": 0.5797101449275361, "value_uncond": 0.00707786981783574}, {"x": 6.2318840579710155, "y": 0.43478260869565233, "x2": 6.521739130434783, "y2": 0.72463768115942, "center_x": 6.376811594202899, "center_y": 0.5797101449275361, "value_uncond": 0.006617781671290226}, {"x": 6.521739130434785, "y": 0.43478260869565233, "x2": 6.8115942028985526, "y2": 0.72463768115942, "center_x": 6.666666666666669, "center_y": 0.5797101449275361, "value_uncond": 0.006130107836491764}, {"x": 6.811594202898551, "y": 0.43478260869565233, "x2": 7.101449275362318, "y2": 0.72463768115942, "center_x": 6.956521739130435, "center_y": 0.5797101449275361, "value_uncond": 0.005625609832929387}, {"x": 7.10144927536232, "y": 0.43478260869565233, "x2": 7.391304347826088, "y2": 0.72463768115942, "center_x": 7.246376811594204, "center_y": 0.5797101449275361, "value_uncond": 0.005114661736369161}, {"x": 7.391304347826086, "y": 0.43478260869565233, "x2": 7.681159420289854, "y2": 0.72463768115942, "center_x": 7.53623188405797, "center_y": 0.5797101449275361, "value_uncond": 0.004606913302257929}, {"x": 7.681159420289855, "y": 0.43478260869565233, "x2": 7.971014492753623, "y2": 0.72463768115942, "center_x": 7.826086956521739, "center_y": 0.5797101449275361, "value_uncond": 0.004111014198259955}, {"x": 7.971014492753625, "y": 0.43478260869565233, "x2": 8.260869565217392, "y2": 0.72463768115942, "center_x": 8.115942028985508, "center_y": 0.5797101449275361, "value_uncond": 0.0036344084090027774}, {"x": 8.26086956521739, "y": 0.43478260869565233, "x2": 8.550724637681158, "y2": 0.72463768115942, "center_x": 8.405797101449274, "center_y": 0.5797101449275361, "value_uncond": 0.0031832027044572447}, {"x": 8.55072463768116, "y": 0.43478260869565233, "x2": 8.840579710144928, "y2": 0.72463768115942, "center_x": 8.695652173913043, "center_y": 0.5797101449275361, "value_uncond": 0.0027621081296955365}, {"x": 8.84057971014493, "y": 0.43478260869565233, "x2": 9.130434782608697, "y2": 0.72463768115942, "center_x": 8.985507246376812, "center_y": 0.5797101449275361, "value_uncond": 0.0023744491406814394}, {"x": 9.130434782608695, "y": 0.43478260869565233, "x2": 9.420289855072463, "y2": 0.72463768115942, "center_x": 9.275362318840578, "center_y": 0.5797101449275361, "value_uncond": 0.002022231549964005}, {"x": 9.420289855072465, "y": 0.43478260869565233, "x2": 9.710144927536232, "y2": 0.72463768115942, "center_x": 9.565217391304348, "center_y": 0.5797101449275361, "value_uncond": 0.0017062580226999535}, {"x": 9.710144927536234, "y": 0.43478260869565233, "x2": 10.000000000000002, "y2": 0.72463768115942, "center_x": 9.855072463768117, "center_y": 0.5797101449275361, "value_uncond": 0.0014262785327365166}, {"x": 10.0, "y": 0.43478260869565233, "x2": 10.289855072463768, "y2": 0.72463768115942, "center_x": 10.144927536231883, "center_y": 0.5797101449275361, "value_uncond": 0.0011811629050635496}, {"x": -10.0, "y": 0.72463768115942, "x2": -9.710144927536232, "y2": 1.0144927536231876, "center_x": -9.855072463768117, "center_y": 0.8695652173913038, "value_uncond": 1.8186695398019615e-07}, {"x": -9.710144927536232, "y": 0.72463768115942, "x2": -9.420289855072465, "y2": 1.0144927536231876, "center_x": -9.565217391304348, "center_y": 0.8695652173913038, "value_uncond": 2.841475121909858e-07}, {"x": -9.420289855072463, "y": 0.72463768115942, "x2": -9.130434782608695, "y2": 1.0144927536231876, "center_x": -9.275362318840578, "center_y": 0.8695652173913038, "value_uncond": 4.398248239312864e-07}, {"x": -9.130434782608695, "y": 0.72463768115942, "x2": -8.840579710144928, "y2": 1.0144927536231876, "center_x": -8.985507246376812, "center_y": 0.8695652173913038, "value_uncond": 6.744681274779165e-07}, {"x": -8.840579710144928, "y": 0.72463768115942, "x2": -8.55072463768116, "y2": 1.0144927536231876, "center_x": -8.695652173913043, "center_y": 0.8695652173913038, "value_uncond": 1.024681605709748e-06}, {"x": -8.55072463768116, "y": 0.72463768115942, "x2": -8.260869565217392, "y2": 1.0144927536231876, "center_x": -8.405797101449277, "center_y": 0.8695652173913038, "value_uncond": 1.5422765784592037e-06}, {"x": -8.26086956521739, "y": 0.72463768115942, "x2": -7.971014492753623, "y2": 1.0144927536231876, "center_x": -8.115942028985508, "center_y": 0.8695652173913038, "value_uncond": 2.2997540956322e-06}, {"x": -7.971014492753623, "y": 0.72463768115942, "x2": -7.681159420289855, "y2": 1.0144927536231876, "center_x": -7.826086956521739, "center_y": 0.8695652173913038, "value_uncond": 3.3973974241835387e-06}, {"x": -7.681159420289855, "y": 0.72463768115942, "x2": -7.391304347826088, "y2": 1.0144927536231876, "center_x": -7.536231884057972, "center_y": 0.8695652173913038, "value_uncond": 4.97229766828531e-06}, {"x": -7.391304347826087, "y": 0.72463768115942, "x2": -7.101449275362319, "y2": 1.0144927536231876, "center_x": -7.246376811594203, "center_y": 0.8695652173913038, "value_uncond": 7.209642019613979e-06}, {"x": -7.101449275362318, "y": 0.72463768115942, "x2": -6.811594202898551, "y2": 1.0144927536231876, "center_x": -6.956521739130435, "center_y": 0.8695652173913038, "value_uncond": 1.0356573628286171e-05}, {"x": -6.811594202898551, "y": 0.72463768115942, "x2": -6.521739130434783, "y2": 1.0144927536231876, "center_x": -6.666666666666667, "center_y": 0.8695652173913038, "value_uncond": 1.4738874043274142e-05}, {"x": -6.521739130434782, "y": 0.72463768115942, "x2": -6.231884057971015, "y2": 1.0144927536231876, "center_x": -6.3768115942028984, "center_y": 0.8695652173913038, "value_uncond": 2.078061193989797e-05}, {"x": -6.231884057971014, "y": 0.72463768115942, "x2": -5.942028985507246, "y2": 1.0144927536231876, "center_x": -6.08695652173913, "center_y": 0.8695652173913038, "value_uncond": 2.9026733914962152e-05}, {"x": -5.942028985507246, "y": 0.72463768115942, "x2": -5.6521739130434785, "y2": 1.0144927536231876, "center_x": -5.797101449275362, "center_y": 0.8695652173913038, "value_uncond": 4.0168334579425016e-05}, {"x": -5.6521739130434785, "y": 0.72463768115942, "x2": -5.362318840579711, "y2": 1.0144927536231876, "center_x": -5.507246376811595, "center_y": 0.8695652173913038, "value_uncond": 5.507002762581109e-05}, {"x": -5.36231884057971, "y": 0.72463768115942, "x2": -5.072463768115942, "y2": 1.0144927536231876, "center_x": -5.217391304347826, "center_y": 0.8695652173913038, "value_uncond": 7.47984463949287e-05}, {"x": -5.0724637681159415, "y": 0.72463768115942, "x2": -4.782608695652174, "y2": 1.0144927536231876, "center_x": -4.927536231884058, "center_y": 0.8695652173913038, "value_uncond": 0.00010065043936580447}, {"x": -4.782608695652174, "y": 0.72463768115942, "x2": -4.492753623188406, "y2": 1.0144927536231876, "center_x": -4.63768115942029, "center_y": 0.8695652173913038, "value_uncond": 0.00013417901122291513}, {"x": -4.492753623188405, "y": 0.72463768115942, "x2": -4.202898550724638, "y2": 1.0144927536231876, "center_x": -4.3478260869565215, "center_y": 0.8695652173913038, "value_uncond": 0.00017721452454710887}, {"x": -4.202898550724638, "y": 0.72463768115942, "x2": -3.91304347826087, "y2": 1.0144927536231876, "center_x": -4.057971014492754, "center_y": 0.8695652173913038, "value_uncond": 0.00023187816514453103}, {"x": -3.913043478260869, "y": 0.72463768115942, "x2": -3.6231884057971016, "y2": 1.0144927536231876, "center_x": -3.7681159420289854, "center_y": 0.8695652173913038, "value_uncond": 0.00030058424322266115}, {"x": -3.6231884057971016, "y": 0.72463768115942, "x2": -3.333333333333334, "y2": 1.0144927536231876, "center_x": -3.4782608695652177, "center_y": 0.8695652173913038, "value_uncond": 0.0003860276217674317}, {"x": -3.333333333333333, "y": 0.72463768115942, "x2": -3.0434782608695654, "y2": 1.0144927536231876, "center_x": -3.1884057971014492, "center_y": 0.8695652173913038, "value_uncond": 0.000491152508044845}, {"x": -3.0434782608695645, "y": 0.72463768115942, "x2": -2.753623188405797, "y2": 1.0144927536231876, "center_x": -2.8985507246376807, "center_y": 0.8695652173913038, "value_uncond": 0.0006190990897675365}, {"x": -2.753623188405797, "y": 0.72463768115942, "x2": -2.4637681159420293, "y2": 1.0144927536231876, "center_x": -2.608695652173913, "center_y": 0.8695652173913038, "value_uncond": 0.0007731251111857775}, {"x": -2.4637681159420284, "y": 0.72463768115942, "x2": -2.1739130434782608, "y2": 1.0144927536231876, "center_x": -2.3188405797101446, "center_y": 0.8695652173913038, "value_uncond": 0.0009565005143708588}, {"x": -2.1739130434782608, "y": 0.72463768115942, "x2": -1.8840579710144931, "y2": 1.0144927536231876, "center_x": -2.028985507246377, "center_y": 0.8695652173913038, "value_uncond": 0.001172374735623031}, {"x": -1.8840579710144922, "y": 0.72463768115942, "x2": -1.5942028985507246, "y2": 1.0144927536231876, "center_x": -1.7391304347826084, "center_y": 0.8695652173913038, "value_uncond": 0.0014236181244848623}, {"x": -1.5942028985507246, "y": 0.72463768115942, "x2": -1.304347826086957, "y2": 1.0144927536231876, "center_x": -1.4492753623188408, "center_y": 0.8695652173913038, "value_uncond": 0.0017126411732490106}, {"x": -1.304347826086957, "y": 0.72463768115942, "x2": -1.0144927536231894, "y2": 1.0144927536231876, "center_x": -1.1594202898550732, "center_y": 0.8695652173913038, "value_uncond": 0.0020411976855896296}, {"x": -1.0144927536231876, "y": 0.72463768115942, "x2": -0.72463768115942, "y2": 1.0144927536231876, "center_x": -0.8695652173913038, "center_y": 0.8695652173913038, "value_uncond": 0.0024101805001465397}, {"x": -0.72463768115942, "y": 0.72463768115942, "x2": -0.43478260869565233, "y2": 1.0144927536231876, "center_x": -0.5797101449275361, "center_y": 0.8695652173913038, "value_uncond": 0.0028194207010446004}, {"x": -0.43478260869565233, "y": 0.72463768115942, "x2": -0.1449275362318847, "y2": 1.0144927536231876, "center_x": -0.2898550724637685, "center_y": 0.8695652173913038, "value_uncond": 0.003267503146040521}, {"x": -0.14492753623188293, "y": 0.72463768115942, "x2": 0.1449275362318847, "y2": 1.0144927536231876, "center_x": 8.881784197001252e-16, "center_y": 0.8695652173913038, "value_uncond": 0.003751612370341276}, {"x": 0.1449275362318847, "y": 0.72463768115942, "x2": 0.43478260869565233, "y2": 1.0144927536231876, "center_x": 0.2898550724637685, "center_y": 0.8695652173913038, "value_uncond": 0.0042674232452736}, {"x": 0.43478260869565233, "y": 0.72463768115942, "x2": 0.72463768115942, "y2": 1.0144927536231876, "center_x": 0.5797101449275361, "center_y": 0.8695652173913038, "value_uncond": 0.004809049999432688}, {"x": 0.72463768115942, "y": 0.72463768115942, "x2": 1.0144927536231876, "y2": 1.0144927536231876, "center_x": 0.8695652173913038, "center_y": 0.8695652173913038, "value_uncond": 0.00536906523642159}, {"x": 1.0144927536231894, "y": 0.72463768115942, "x2": 1.304347826086957, "y2": 1.0144927536231876, "center_x": 1.1594202898550732, "center_y": 0.8695652173913038, "value_uncond": 0.005938597400192714}, {"x": 1.304347826086957, "y": 0.72463768115942, "x2": 1.5942028985507246, "y2": 1.0144927536231876, "center_x": 1.4492753623188408, "center_y": 0.8695652173913038, "value_uncond": 0.006507510856650965}, {"x": 1.5942028985507246, "y": 0.72463768115942, "x2": 1.8840579710144922, "y2": 1.0144927536231876, "center_x": 1.7391304347826084, "center_y": 0.8695652173913038, "value_uncond": 0.007064667611649967}, {"x": 1.884057971014494, "y": 0.72463768115942, "x2": 2.1739130434782616, "y2": 1.0144927536231876, "center_x": 2.028985507246378, "center_y": 0.8695652173913038, "value_uncond": 0.007598264017684372}, {"x": 2.1739130434782616, "y": 0.72463768115942, "x2": 2.4637681159420293, "y2": 1.0144927536231876, "center_x": 2.3188405797101455, "center_y": 0.8695652173913038, "value_uncond": 0.008096230071792845}, {"x": 2.4637681159420293, "y": 0.72463768115942, "x2": 2.753623188405797, "y2": 1.0144927536231876, "center_x": 2.608695652173913, "center_y": 0.8695652173913038, "value_uncond": 0.008546673566708152}, {"x": 2.753623188405797, "y": 0.72463768115942, "x2": 3.0434782608695645, "y2": 1.0144927536231876, "center_x": 2.8985507246376807, "center_y": 0.8695652173913038, "value_uncond": 0.008938346924722965}, {"x": 3.0434782608695663, "y": 0.72463768115942, "x2": 3.333333333333334, "y2": 1.0144927536231876, "center_x": 3.18840579710145, "center_y": 0.8695652173913038, "value_uncond": 0.009261111473147475}, {"x": 3.333333333333334, "y": 0.72463768115942, "x2": 3.6231884057971016, "y2": 1.0144927536231876, "center_x": 3.4782608695652177, "center_y": 0.8695652173913038, "value_uncond": 0.009506372569980895}, {"x": 3.6231884057971016, "y": 0.72463768115942, "x2": 3.913043478260869, "y2": 1.0144927536231876, "center_x": 3.7681159420289854, "center_y": 0.8695652173913038, "value_uncond": 0.00966745957707897}, {"x": 3.913043478260871, "y": 0.72463768115942, "x2": 4.202898550724639, "y2": 1.0144927536231876, "center_x": 4.057971014492755, "center_y": 0.8695652173913038, "value_uncond": 0.009739927253361315}, {"x": 4.202898550724639, "y": 0.72463768115942, "x2": 4.492753623188406, "y2": 1.0144927536231876, "center_x": 4.347826086956522, "center_y": 0.8695652173913038, "value_uncond": 0.009721759565745862}, {"x": 4.492753623188406, "y": 0.72463768115942, "x2": 4.782608695652174, "y2": 1.0144927536231876, "center_x": 4.63768115942029, "center_y": 0.8695652173913038, "value_uncond": 0.00961346287597533}, {"x": 4.782608695652174, "y": 0.72463768115942, "x2": 5.0724637681159415, "y2": 1.0144927536231876, "center_x": 4.927536231884058, "center_y": 0.8695652173913038, "value_uncond": 0.009418042491643623}, {"x": 5.072463768115943, "y": 0.72463768115942, "x2": 5.362318840579711, "y2": 1.0144927536231876, "center_x": 5.217391304347827, "center_y": 0.8695652173913038, "value_uncond": 0.009140864096972293}, {"x": 5.362318840579711, "y": 0.72463768115942, "x2": 5.6521739130434785, "y2": 1.0144927536231876, "center_x": 5.507246376811595, "center_y": 0.8695652173913038, "value_uncond": 0.008789408980578704}, {"x": 5.6521739130434785, "y": 0.72463768115942, "x2": 5.942028985507246, "y2": 1.0144927536231876, "center_x": 5.797101449275362, "center_y": 0.8695652173913038, "value_uncond": 0.008372938643641286}, {"x": 5.942028985507246, "y": 0.72463768115942, "x2": 6.231884057971014, "y2": 1.0144927536231876, "center_x": 6.08695652173913, "center_y": 0.8695652173913038, "value_uncond": 0.007902089766449183}, {"x": 6.2318840579710155, "y": 0.72463768115942, "x2": 6.521739130434783, "y2": 1.0144927536231876, "center_x": 6.376811594202899, "center_y": 0.8695652173913038, "value_uncond": 0.007388424224689674}, {"x": 6.521739130434785, "y": 0.72463768115942, "x2": 6.8115942028985526, "y2": 1.0144927536231876, "center_x": 6.666666666666669, "center_y": 0.8695652173913038, "value_uncond": 0.006843960633452795}, {"x": 6.811594202898551, "y": 0.72463768115942, "x2": 7.101449275362318, "y2": 1.0144927536231876, "center_x": 6.956521739130435, "center_y": 0.8695652173913038, "value_uncond": 0.006280713694225632}, {"x": 7.10144927536232, "y": 0.72463768115942, "x2": 7.391304347826088, "y2": 1.0144927536231876, "center_x": 7.246376811594204, "center_y": 0.8695652173913038, "value_uncond": 0.0057102655468408235}, {"x": 7.391304347826086, "y": 0.72463768115942, "x2": 7.681159420289854, "y2": 1.0144927536231876, "center_x": 7.53623188405797, "center_y": 0.8695652173913038, "value_uncond": 0.00514338966350509}, {"x": 7.681159420289855, "y": 0.72463768115942, "x2": 7.971014492753623, "y2": 1.0144927536231876, "center_x": 7.826086956521739, "center_y": 0.8695652173913038, "value_uncond": 0.004589742968136519}, {"x": 7.971014492753625, "y": 0.72463768115942, "x2": 8.260869565217392, "y2": 1.0144927536231876, "center_x": 8.115942028985508, "center_y": 0.8695652173913038, "value_uncond": 0.004057636299484735}, {"x": 8.26086956521739, "y": 0.72463768115942, "x2": 8.550724637681158, "y2": 1.0144927536231876, "center_x": 8.405797101449274, "center_y": 0.8695652173913038, "value_uncond": 0.0035538875626164724}, {"x": 8.55072463768116, "y": 0.72463768115942, "x2": 8.840579710144928, "y2": 1.0144927536231876, "center_x": 8.695652173913043, "center_y": 0.8695652173913038, "value_uncond": 0.003083756405139314}, {"x": 8.84057971014493, "y": 0.72463768115942, "x2": 9.130434782608697, "y2": 1.0144927536231876, "center_x": 8.985507246376812, "center_y": 0.8695652173913038, "value_uncond": 0.002650954416857332}, {"x": 9.130434782608695, "y": 0.72463768115942, "x2": 9.420289855072463, "y2": 1.0144927536231876, "center_x": 9.275362318840578, "center_y": 0.8695652173913038, "value_uncond": 0.002257720987760062}, {"x": 9.420289855072465, "y": 0.72463768115942, "x2": 9.710144927536232, "y2": 1.0144927536231876, "center_x": 9.565217391304348, "center_y": 0.8695652173913038, "value_uncond": 0.0019049522535894748}, {"x": 9.710144927536234, "y": 0.72463768115942, "x2": 10.000000000000002, "y2": 1.0144927536231876, "center_x": 9.855072463768117, "center_y": 0.8695652173913038, "value_uncond": 0.0015923690725763713}, {"x": 10.0, "y": 0.72463768115942, "x2": 10.289855072463768, "y2": 1.0144927536231876, "center_x": 10.144927536231883, "center_y": 0.8695652173913038, "value_uncond": 0.0013187096605099884}, {"x": -10.0, "y": 1.0144927536231894, "x2": -9.710144927536232, "y2": 1.304347826086957, "center_x": -9.855072463768117, "center_y": 1.1594202898550732, "value_uncond": 2.0115878137617703e-07}, {"x": -9.710144927536232, "y": 1.0144927536231894, "x2": -9.420289855072465, "y2": 1.304347826086957, "center_x": -9.565217391304348, "center_y": 1.1594202898550732, "value_uncond": 3.1428891303493833e-07}, {"x": -9.420289855072463, "y": 1.0144927536231894, "x2": -9.130434782608695, "y2": 1.304347826086957, "center_x": -9.275362318840578, "center_y": 1.1594202898550732, "value_uncond": 4.864799440729798e-07}, {"x": -9.130434782608695, "y": 1.0144927536231894, "x2": -8.840579710144928, "y2": 1.304347826086957, "center_x": -8.985507246376812, "center_y": 1.1594202898550732, "value_uncond": 7.460134105248357e-07}, {"x": -8.840579710144928, "y": 1.0144927536231894, "x2": -8.55072463768116, "y2": 1.304347826086957, "center_x": -8.695652173913043, "center_y": 1.1594202898550732, "value_uncond": 1.1333763423870968e-06}, {"x": -8.55072463768116, "y": 1.0144927536231894, "x2": -8.260869565217392, "y2": 1.304347826086957, "center_x": -8.405797101449277, "center_y": 1.1594202898550732, "value_uncond": 1.705876027932241e-06}, {"x": -8.26086956521739, "y": 1.0144927536231894, "x2": -7.971014492753623, "y2": 1.304347826086957, "center_x": -8.115942028985508, "center_y": 1.1594202898550732, "value_uncond": 2.5437041816438e-06}, {"x": -7.971014492753623, "y": 1.0144927536231894, "x2": -7.681159420289855, "y2": 1.304347826086957, "center_x": -7.826086956521739, "center_y": 1.1594202898550732, "value_uncond": 3.757781778066953e-06}, {"x": -7.681159420289855, "y": 1.0144927536231894, "x2": -7.391304347826088, "y2": 1.304347826086957, "center_x": -7.536231884057972, "center_y": 1.1594202898550732, "value_uncond": 5.499742079040889e-06}, {"x": -7.391304347826087, "y": 1.0144927536231894, "x2": -7.101449275362319, "y2": 1.304347826086957, "center_x": -7.246376811594203, "center_y": 1.1594202898550732, "value_uncond": 7.97441630315065e-06}, {"x": -7.101449275362318, "y": 1.0144927536231894, "x2": -6.811594202898551, "y2": 1.304347826086957, "center_x": -6.956521739130435, "center_y": 1.1594202898550732, "value_uncond": 1.1455163704592264e-05}, {"x": -6.811594202898551, "y": 1.0144927536231894, "x2": -6.521739130434783, "y2": 1.304347826086957, "center_x": -6.666666666666667, "center_y": 1.1594202898550732, "value_uncond": 1.6302323630079804e-05}, {"x": -6.521739130434782, "y": 1.0144927536231894, "x2": -6.231884057971015, "y2": 1.304347826086957, "center_x": -6.3768115942028984, "center_y": 1.1594202898550732, "value_uncond": 2.2984948516464915e-05}, {"x": -6.231884057971014, "y": 1.0144927536231894, "x2": -5.942028985507246, "y2": 1.304347826086957, "center_x": -6.08695652173913, "center_y": 1.1594202898550732, "value_uncond": 3.210579104052153e-05}, {"x": -5.942028985507246, "y": 1.0144927536231894, "x2": -5.6521739130434785, "y2": 1.304347826086957, "center_x": -5.797101449275362, "center_y": 1.1594202898550732, "value_uncond": 4.442925477702533e-05}, {"x": -5.6521739130434785, "y": 1.0144927536231894, "x2": -5.362318840579711, "y2": 1.304347826086957, "center_x": -5.507246376811595, "center_y": 1.1594202898550732, "value_uncond": 6.09116686958249e-05}, {"x": -5.36231884057971, "y": 1.0144927536231894, "x2": -5.072463768115942, "y2": 1.304347826086957, "center_x": -5.217391304347826, "center_y": 1.1594202898550732, "value_uncond": 8.273281097165984e-05}, {"x": -5.0724637681159415, "y": 1.0144927536231894, "x2": -4.782608695652174, "y2": 1.304347826086957, "center_x": -4.927536231884058, "center_y": 1.1594202898550732, "value_uncond": 0.00011132709535568892}, {"x": -4.782608695652174, "y": 1.0144927536231894, "x2": -4.492753623188406, "y2": 1.304347826086957, "center_x": -4.63768115942029, "center_y": 1.1594202898550732, "value_uncond": 0.00014841226398282928}, {"x": -4.492753623188405, "y": 1.0144927536231894, "x2": -4.202898550724638, "y2": 1.304347826086957, "center_x": -4.3478260869565215, "center_y": 1.1594202898550732, "value_uncond": 0.0001960128380658796}, {"x": -4.202898550724638, "y": 1.0144927536231894, "x2": -3.91304347826087, "y2": 1.304347826086957, "center_x": -4.057971014492754, "center_y": 1.1594202898550732, "value_uncond": 0.0002564750115807015}, {"x": -3.913043478260869, "y": 1.0144927536231894, "x2": -3.6231884057971016, "y2": 1.304347826086957, "center_x": -3.7681159420289854, "center_y": 1.1594202898550732, "value_uncond": 0.0003324691965431773}, {"x": -3.6231884057971016, "y": 1.0144927536231894, "x2": -3.333333333333334, "y2": 1.304347826086957, "center_x": -3.4782608695652177, "center_y": 1.1594202898550732, "value_uncond": 0.0004269761178313679}, {"x": -3.333333333333333, "y": 1.0144927536231894, "x2": -3.0434782608695654, "y2": 1.304347826086957, "center_x": -3.1884057971014492, "center_y": 1.1594202898550732, "value_uncond": 0.0005432522941958565}, {"x": -3.0434782608695645, "y": 1.0144927536231894, "x2": -2.753623188405797, "y2": 1.304347826086957, "center_x": -2.8985507246376807, "center_y": 1.1594202898550732, "value_uncond": 0.0006847710137725129}, {"x": -2.753623188405797, "y": 1.0144927536231894, "x2": -2.4637681159420293, "y2": 1.304347826086957, "center_x": -2.608695652173913, "center_y": 1.1594202898550732, "value_uncond": 0.0008551355912321876}, {"x": -2.4637681159420284, "y": 1.0144927536231894, "x2": -2.1739130434782608, "y2": 1.304347826086957, "center_x": -2.3188405797101446, "center_y": 1.1594202898550732, "value_uncond": 0.0010579628329700835}, {"x": -2.1739130434782608, "y": 1.0144927536231894, "x2": -1.8840579710144931, "y2": 1.304347826086957, "center_x": -2.028985507246377, "center_y": 1.1594202898550732, "value_uncond": 0.0012967362567683765}, {"x": -1.8840579710144922, "y": 1.0144927536231894, "x2": -1.5942028985507246, "y2": 1.304347826086957, "center_x": -1.7391304347826084, "center_y": 1.1594202898550732, "value_uncond": 0.001574630689078329}, {"x": -1.5942028985507246, "y": 1.0144927536231894, "x2": -1.304347826086957, "y2": 1.304347826086957, "center_x": -1.4492753623188408, "center_y": 1.1594202898550732, "value_uncond": 0.0018943123190095946}, {"x": -1.304347826086957, "y": 1.0144927536231894, "x2": -1.0144927536231894, "y2": 1.304347826086957, "center_x": -1.1594202898550732, "center_y": 1.1594202898550732, "value_uncond": 0.002257720987760061}, {"x": -1.0144927536231876, "y": 1.0144927536231894, "x2": -0.72463768115942, "y2": 1.304347826086957, "center_x": -0.8695652173913038, "center_y": 1.1594202898550732, "value_uncond": 0.002665844243253208}, {"x": -0.72463768115942, "y": 1.0144927536231894, "x2": -0.43478260869565233, "y2": 1.304347826086957, "center_x": -0.5797101449275361, "center_y": 1.1594202898550732, "value_uncond": 0.0031184952515928535}, {"x": -0.43478260869565233, "y": 1.0144927536231894, "x2": -0.1449275362318847, "y2": 1.304347826086957, "center_x": -0.2898550724637685, "center_y": 1.1594202898550732, "value_uncond": 0.003614108757063738}, {"x": -0.14492753623188293, "y": 1.0144927536231894, "x2": 0.1449275362318847, "y2": 1.304347826086957, "center_x": 8.881784197001252e-16, "center_y": 1.1594202898550732, "value_uncond": 0.004149570639951545}, {"x": 0.1449275362318847, "y": 1.0144927536231894, "x2": 0.43478260869565233, "y2": 1.304347826086957, "center_x": 0.2898550724637685, "center_y": 1.1594202898550732, "value_uncond": 0.004720096976656257}, {"x": 0.43478260869565233, "y": 1.0144927536231894, "x2": 0.72463768115942, "y2": 1.304347826086957, "center_x": 0.5797101449275361, "center_y": 1.1594202898550732, "value_uncond": 0.005319177653177842}, {"x": 0.72463768115942, "y": 1.0144927536231894, "x2": 1.0144927536231876, "y2": 1.304347826086957, "center_x": 0.8695652173913038, "center_y": 1.1594202898550732, "value_uncond": 0.005938597400192714}, {"x": 1.0144927536231894, "y": 1.0144927536231894, "x2": 1.304347826086957, "y2": 1.304347826086957, "center_x": 1.1594202898550732, "center_y": 1.1594202898550732, "value_uncond": 0.006568543597186876}, {"x": 1.304347826086957, "y": 1.0144927536231894, "x2": 1.5942028985507246, "y2": 1.304347826086957, "center_x": 1.4492753623188408, "center_y": 1.1594202898550732, "value_uncond": 0.007197805456502516}, {"x": 1.5942028985507246, "y": 1.0144927536231894, "x2": 1.8840579710144922, "y2": 1.304347826086957, "center_x": 1.7391304347826084, "center_y": 1.1594202898550732, "value_uncond": 0.007814063503488382}, {"x": 1.884057971014494, "y": 1.0144927536231894, "x2": 2.1739130434782616, "y2": 1.304347826086957, "center_x": 2.028985507246378, "center_y": 1.1594202898550732, "value_uncond": 0.00840426199989184}, {"x": 2.1739130434782616, "y": 1.0144927536231894, "x2": 2.4637681159420293, "y2": 1.304347826086957, "center_x": 2.3188405797101455, "center_y": 1.1594202898550732, "value_uncond": 0.008955050597924176}, {"x": 2.4637681159420293, "y": 1.0144927536231894, "x2": 2.753623188405797, "y2": 1.304347826086957, "center_x": 2.608695652173913, "center_y": 1.1594202898550732, "value_uncond": 0.00945327560545279}, {"x": 2.753623188405797, "y": 1.0144927536231894, "x2": 3.0434782608695645, "y2": 1.304347826086957, "center_x": 2.8985507246376807, "center_y": 1.1594202898550732, "value_uncond": 0.009886496340014353}, {"x": 3.0434782608695663, "y": 1.0144927536231894, "x2": 3.333333333333334, "y2": 1.304347826086957, "center_x": 3.18840579710145, "center_y": 1.1594202898550732, "value_uncond": 0.010243498653032564}, {"x": 3.333333333333334, "y": 1.0144927536231894, "x2": 3.6231884057971016, "y2": 1.304347826086957, "center_x": 3.4782608695652177, "center_y": 1.1594202898550732, "value_uncond": 0.010514776212139686}, {"x": 3.6231884057971016, "y": 1.0144927536231894, "x2": 3.913043478260869, "y2": 1.304347826086957, "center_x": 3.7681159420289854, "center_y": 1.1594202898550732, "value_uncond": 0.01069295078060424}, {"x": 3.913043478260871, "y": 1.0144927536231894, "x2": 4.202898550724639, "y2": 1.304347826086957, "center_x": 4.057971014492755, "center_y": 1.1594202898550732, "value_uncond": 0.010773105581303807}, {"x": 4.202898550724639, "y": 1.0144927536231894, "x2": 4.492753623188406, "y2": 1.304347826086957, "center_x": 4.347826086956522, "center_y": 1.1594202898550732, "value_uncond": 0.010753010727229628}, {"x": 4.492753623188406, "y": 1.0144927536231894, "x2": 4.782608695652174, "y2": 1.304347826086957, "center_x": 4.63768115942029, "center_y": 1.1594202898550732, "value_uncond": 0.010633226293254413}, {"x": 4.782608695652174, "y": 1.0144927536231894, "x2": 5.0724637681159415, "y2": 1.304347826086957, "center_x": 4.927536231884058, "center_y": 1.1594202898550732, "value_uncond": 0.010417076379771448}, {"x": 5.072463768115943, "y": 1.0144927536231894, "x2": 5.362318840579711, "y2": 1.304347826086957, "center_x": 5.217391304347827, "center_y": 1.1594202898550732, "value_uncond": 0.0101104958445195}, {"x": 5.362318840579711, "y": 1.0144927536231894, "x2": 5.6521739130434785, "y2": 1.304347826086957, "center_x": 5.507246376811595, "center_y": 1.1594202898550732, "value_uncond": 0.009721759565745867}, {"x": 5.6521739130434785, "y": 1.0144927536231894, "x2": 5.942028985507246, "y2": 1.304347826086957, "center_x": 5.797101449275362, "center_y": 1.1594202898550732, "value_uncond": 0.009261111473147477}, {"x": 5.942028985507246, "y": 1.0144927536231894, "x2": 6.231884057971014, "y2": 1.304347826086957, "center_x": 6.08695652173913, "center_y": 1.1594202898550732, "value_uncond": 0.008740316549850866}, {"x": 6.2318840579710155, "y": 1.0144927536231894, "x2": 6.521739130434783, "y2": 1.304347826086957, "center_x": 6.376811594202899, "center_y": 1.1594202898550732, "value_uncond": 0.008172163115959143}, {"x": 6.521739130434785, "y": 1.0144927536231894, "x2": 6.8115942028985526, "y2": 1.304347826086957, "center_x": 6.666666666666669, "center_y": 1.1594202898550732, "value_uncond": 0.0075699446803392575}, {"x": 6.811594202898551, "y": 1.0144927536231894, "x2": 7.101449275362318, "y2": 1.304347826086957, "center_x": 6.956521739130435, "center_y": 1.1594202898550732, "value_uncond": 0.006946950423113533}, {"x": 7.10144927536232, "y": 1.0144927536231894, "x2": 7.391304347826088, "y2": 1.304347826086957, "center_x": 7.246376811594204, "center_y": 1.1594202898550732, "value_uncond": 0.006315991078081992}, {"x": 7.391304347826086, "y": 1.0144927536231894, "x2": 7.681159420289854, "y2": 1.304347826086957, "center_x": 7.53623188405797, "center_y": 1.1594202898550732, "value_uncond": 0.0056889829307097284}, {"x": 7.681159420289855, "y": 1.0144927536231894, "x2": 7.971014492753623, "y2": 1.304347826086957, "center_x": 7.826086956521739, "center_y": 1.1594202898550732, "value_uncond": 0.0050766072785315055}, {"x": 7.971014492753625, "y": 1.0144927536231894, "x2": 8.260869565217392, "y2": 1.304347826086957, "center_x": 8.115942028985508, "center_y": 1.1594202898550732, "value_uncond": 0.004488056545781094}, {"x": 8.26086956521739, "y": 1.0144927536231894, "x2": 8.550724637681158, "y2": 1.304347826086957, "center_x": 8.405797101449274, "center_y": 1.1594202898550732, "value_uncond": 0.003930871857686288}, {"x": 8.55072463768116, "y": 1.0144927536231894, "x2": 8.840579710144928, "y2": 1.304347826086957, "center_x": 8.695652173913043, "center_y": 1.1594202898550732, "value_uncond": 0.0034108707873688375}, {"x": 8.84057971014493, "y": 1.0144927536231894, "x2": 9.130434782608697, "y2": 1.304347826086957, "center_x": 8.985507246376812, "center_y": 1.1594202898550732, "value_uncond": 0.0029321586374448324}, {"x": 9.130434782608695, "y": 1.0144927536231894, "x2": 9.420289855072463, "y2": 1.304347826086957, "center_x": 9.275362318840578, "center_y": 1.1594202898550732, "value_uncond": 0.0024972123447709275}, {"x": 9.420289855072465, "y": 1.0144927536231894, "x2": 9.710144927536232, "y2": 1.304347826086957, "center_x": 9.565217391304348, "center_y": 1.1594202898550732, "value_uncond": 0.00210702310411812}, {"x": 9.710144927536234, "y": 1.0144927536231894, "x2": 10.000000000000002, "y2": 1.304347826086957, "center_x": 9.855072463768117, "center_y": 1.1594202898550732, "value_uncond": 0.0017612821633085447}, {"x": 10.0, "y": 1.0144927536231894, "x2": 10.289855072463768, "y2": 1.304347826086957, "center_x": 10.144927536231883, "center_y": 1.1594202898550732, "value_uncond": 0.0014585938923575234}, {"x": -10.0, "y": 1.304347826086957, "x2": -9.710144927536232, "y2": 1.5942028985507246, "center_x": -9.855072463768117, "center_y": 1.4492753623188408, "value_uncond": 2.2042965122937443e-07}, {"x": -9.710144927536232, "y": 1.304347826086957, "x2": -9.420289855072465, "y2": 1.5942028985507246, "center_x": -9.565217391304348, "center_y": 1.4492753623188408, "value_uncond": 3.4439756997730165e-07}, {"x": -9.420289855072463, "y": 1.304347826086957, "x2": -9.130434782608695, "y2": 1.5942028985507246, "center_x": -9.275362318840578, "center_y": 1.4492753623188408, "value_uncond": 5.330843807487501e-07}, {"x": -9.130434782608695, "y": 1.304347826086957, "x2": -8.840579710144928, "y2": 1.5942028985507246, "center_x": -8.985507246376812, "center_y": 1.4492753623188408, "value_uncond": 8.17480970850127e-07}, {"x": -8.840579710144928, "y": 1.304347826086957, "x2": -8.55072463768116, "y2": 1.5942028985507246, "center_x": -8.695652173913043, "center_y": 1.4492753623188408, "value_uncond": 1.241952999291727e-06}, {"x": -8.55072463768116, "y": 1.304347826086957, "x2": -8.260869565217392, "y2": 1.5942028985507246, "center_x": -8.405797101449277, "center_y": 1.4492753623188408, "value_uncond": 1.8692977522789205e-06}, {"x": -8.26086956521739, "y": 1.304347826086957, "x2": -7.971014492753623, "y2": 1.5942028985507246, "center_x": -8.115942028985508, "center_y": 1.4492753623188408, "value_uncond": 2.7873892541727638e-06}, {"x": -7.971014492753623, "y": 1.304347826086957, "x2": -7.681159420289855, "y2": 1.5942028985507246, "center_x": -7.826086956521739, "center_y": 1.4492753623188408, "value_uncond": 4.117774630909027e-06}, {"x": -7.681159420289855, "y": 1.304347826086957, "x2": -7.391304347826088, "y2": 1.5942028985507246, "center_x": -7.536231884057972, "center_y": 1.4492753623188408, "value_uncond": 6.026613504221936e-06}, {"x": -7.391304347826087, "y": 1.304347826086957, "x2": -7.101449275362319, "y2": 1.5942028985507246, "center_x": -7.246376811594203, "center_y": 1.4492753623188408, "value_uncond": 8.738359779452854e-06}, {"x": -7.101449275362318, "y": 1.304347826086957, "x2": -6.811594202898551, "y2": 1.5942028985507246, "center_x": -6.956521739130435, "center_y": 1.4492753623188408, "value_uncond": 1.2552560335194498e-05}, {"x": -6.811594202898551, "y": 1.304347826086957, "x2": -6.521739130434783, "y2": 1.5942028985507246, "center_x": -6.666666666666667, "center_y": 1.4492753623188408, "value_uncond": 1.7864074774279058e-05}, {"x": -6.521739130434782, "y": 1.304347826086957, "x2": -6.231884057971015, "y2": 1.5942028985507246, "center_x": -6.3768115942028984, "center_y": 1.4492753623188408, "value_uncond": 2.5186890427292652e-05}, {"x": -6.231884057971014, "y": 1.304347826086957, "x2": -5.942028985507246, "y2": 1.5942028985507246, "center_x": -6.08695652173913, "center_y": 1.4492753623188408, "value_uncond": 3.518150325374492e-05}, {"x": -5.942028985507246, "y": 1.304347826086957, "x2": -5.6521739130434785, "y2": 1.5942028985507246, "center_x": -5.797101449275362, "center_y": 1.4492753623188408, "value_uncond": 4.8685546153544873e-05}, {"x": -5.6521739130434785, "y": 1.304347826086957, "x2": -5.362318840579711, "y2": 1.5942028985507246, "center_x": -5.507246376811595, "center_y": 1.4492753623188408, "value_uncond": 6.674696373961032e-05}, {"x": -5.36231884057971, "y": 1.304347826086957, "x2": -5.072463768115942, "y2": 1.5942028985507246, "center_x": -5.217391304347826, "center_y": 1.4492753623188408, "value_uncond": 9.065855610650711e-05}, {"x": -5.0724637681159415, "y": 1.304347826086957, "x2": -4.782608695652174, "y2": 1.5942028985507246, "center_x": -4.927536231884058, "center_y": 1.4492753623188408, "value_uncond": 0.00012199215283444759}, {"x": -4.782608695652174, "y": 1.304347826086957, "x2": -4.492753623188406, "y2": 1.5942028985507246, "center_x": -4.63768115942029, "center_y": 1.4492753623188408, "value_uncond": 0.00016263005454740363}, {"x": -4.492753623188405, "y": 1.304347826086957, "x2": -4.202898550724638, "y2": 1.5942028985507246, "center_x": -4.3478260869565215, "center_y": 1.4492753623188408, "value_uncond": 0.0002147907301672421}, {"x": -4.202898550724638, "y": 1.304347826086957, "x2": -3.91304347826087, "y2": 1.5942028985507246, "center_x": -4.057971014492754, "center_y": 1.4492753623188408, "value_uncond": 0.0002810451374034776}, {"x": -3.913043478260869, "y": 1.304347826086957, "x2": -3.6231884057971016, "y2": 1.5942028985507246, "center_x": -3.7681159420289854, "center_y": 1.4492753623188408, "value_uncond": 0.00036431951186597375}, {"x": -3.6231884057971016, "y": 1.304347826086957, "x2": -3.333333333333334, "y2": 1.5942028985507246, "center_x": -3.4782608695652177, "center_y": 1.4492753623188408, "value_uncond": 0.0004678801297808369}, {"x": -3.333333333333333, "y": 1.304347826086957, "x2": -3.0434782608695654, "y2": 1.5942028985507246, "center_x": -3.1884057971014492, "center_y": 1.4492753623188408, "value_uncond": 0.0005952954821058184}, {"x": -3.0434782608695645, "y": 1.304347826086957, "x2": -2.753623188405797, "y2": 1.5942028985507246, "center_x": -2.8985507246376807, "center_y": 1.4492753623188408, "value_uncond": 0.0007503715955386884}, {"x": -2.753623188405797, "y": 1.304347826086957, "x2": -2.4637681159420293, "y2": 1.5942028985507246, "center_x": -2.608695652173913, "center_y": 1.4492753623188408, "value_uncond": 0.0009370569797628511}, {"x": -2.4637681159420284, "y": 1.304347826086957, "x2": -2.1739130434782608, "y2": 1.5942028985507246, "center_x": -2.3188405797101446, "center_y": 1.4492753623188408, "value_uncond": 0.0011593149286837688}, {"x": -2.1739130434782608, "y": 1.304347826086957, "x2": -1.8840579710144931, "y2": 1.5942028985507246, "center_x": -2.028985507246377, "center_y": 1.4492753623188408, "value_uncond": 0.0014209626786384445}, {"x": -1.8840579710144922, "y": 1.304347826086957, "x2": -1.5942028985507246, "y2": 1.5942028985507246, "center_x": -1.7391304347826084, "center_y": 1.4492753623188408, "value_uncond": 0.0017254792022204585}, {"x": -1.5942028985507246, "y": 1.304347826086957, "x2": -1.304347826086957, "y2": 1.5942028985507246, "center_x": -1.4492753623188408, "center_y": 1.4492753623188408, "value_uncond": 0.0020757861075819967}, {"x": -1.304347826086957, "y": 1.304347826086957, "x2": -1.0144927536231894, "y2": 1.5942028985507246, "center_x": -1.1594202898550732, "center_y": 1.4492753623188408, "value_uncond": 0.002474009071344113}, {"x": -1.0144927536231876, "y": 1.304347826086957, "x2": -0.72463768115942, "y2": 1.5942028985507246, "center_x": -0.8695652173913038, "center_y": 1.4492753623188408, "value_uncond": 0.002921230247827166}, {"x": -0.72463768115942, "y": 1.304347826086957, "x2": -0.43478260869565233, "y2": 1.5942028985507246, "center_x": -0.5797101449275361, "center_y": 1.4492753623188408, "value_uncond": 0.0034172449045790543}, {"x": -0.43478260869565233, "y": 1.304347826086957, "x2": -0.1449275362318847, "y2": 1.5942028985507246, "center_x": -0.2898550724637685, "center_y": 1.4492753623188408, "value_uncond": 0.003960337835487279}, {"x": -0.14492753623188293, "y": 1.304347826086957, "x2": 0.1449275362318847, "y2": 1.5942028985507246, "center_x": 8.881784197001252e-16, "center_y": 1.4492753623188408, "value_uncond": 0.004547096590357931}, {"x": 0.1449275362318847, "y": 1.304347826086957, "x2": 0.43478260869565233, "y2": 1.5942028985507246, "center_x": 0.2898550724637685, "center_y": 1.4492753623188408, "value_uncond": 0.005172278949072928}, {"x": 0.43478260869565233, "y": 1.304347826086957, "x2": 0.72463768115942, "y2": 1.5942028985507246, "center_x": 0.5797101449275361, "center_y": 1.4492753623188408, "value_uncond": 0.005828751133287251}, {"x": 0.72463768115942, "y": 1.304347826086957, "x2": 1.0144927536231876, "y2": 1.5942028985507246, "center_x": 0.8695652173913038, "center_y": 1.4492753623188408, "value_uncond": 0.006507510856650965}, {"x": 1.0144927536231894, "y": 1.304347826086957, "x2": 1.304347826086957, "y2": 1.5942028985507246, "center_x": 1.1594202898550732, "center_y": 1.4492753623188408, "value_uncond": 0.007197805456502516}, {"x": 1.304347826086957, "y": 1.304347826086957, "x2": 1.5942028985507246, "y2": 1.5942028985507246, "center_x": 1.4492753623188408, "center_y": 1.4492753623188408, "value_uncond": 0.007887350159606992}, {"x": 1.5942028985507246, "y": 1.304347826086957, "x2": 1.8840579710144922, "y2": 1.5942028985507246, "center_x": 1.7391304347826084, "center_y": 1.4492753623188408, "value_uncond": 0.008562645294301409}, {"x": 1.884057971014494, "y": 1.304347826086957, "x2": 2.1739130434782616, "y2": 1.5942028985507246, "center_x": 2.028985507246378, "center_y": 1.4492753623188408, "value_uncond": 0.009209384391785931}, {"x": 2.1739130434782616, "y": 1.304347826086957, "x2": 2.4637681159420293, "y2": 1.5942028985507246, "center_x": 2.3188405797101455, "center_y": 1.4492753623188408, "value_uncond": 0.009812938150338193}, {"x": 2.4637681159420293, "y": 1.304347826086957, "x2": 2.753623188405797, "y2": 1.5942028985507246, "center_x": 2.608695652173913, "center_y": 1.4492753623188408, "value_uncond": 0.010358892763365544}, {"x": 2.753623188405797, "y": 1.304347826086957, "x2": 3.0434782608695645, "y2": 1.5942028985507246, "center_x": 2.8985507246376807, "center_y": 1.4492753623188408, "value_uncond": 0.010833615739769736}, {"x": 3.0434782608695663, "y": 1.304347826086957, "x2": 3.333333333333334, "y2": 1.5942028985507246, "center_x": 3.18840579710145, "center_y": 1.4492753623188408, "value_uncond": 0.01122481862342373}, {"x": 3.333333333333334, "y": 1.304347826086957, "x2": 3.6231884057971016, "y2": 1.5942028985507246, "center_x": 3.4782608695652177, "center_y": 1.4492753623188408, "value_uncond": 0.011522084382001354}, {"x": 3.6231884057971016, "y": 1.304347826086957, "x2": 3.913043478260869, "y2": 1.5942028985507246, "center_x": 3.7681159420289854, "center_y": 1.4492753623188408, "value_uncond": 0.011717327948878703}, {"x": 3.913043478260871, "y": 1.304347826086957, "x2": 4.202898550724639, "y2": 1.5942028985507246, "center_x": 4.057971014492755, "center_y": 1.4492753623188408, "value_uncond": 0.01180516152314124}, {"x": 4.202898550724639, "y": 1.304347826086957, "x2": 4.492753623188406, "y2": 1.5942028985507246, "center_x": 4.347826086956522, "center_y": 1.4492753623188408, "value_uncond": 0.011783141596172239}, {"x": 4.492753623188406, "y": 1.304347826086957, "x2": 4.782608695652174, "y2": 1.5942028985507246, "center_x": 4.63768115942029, "center_y": 1.4492753623188408, "value_uncond": 0.011651881897623518}, {"x": 4.782608695652174, "y": 1.304347826086957, "x2": 5.0724637681159415, "y2": 1.5942028985507246, "center_x": 4.927536231884058, "center_y": 1.4492753623188408, "value_uncond": 0.011415024974369399}, {"x": 5.072463768115943, "y": 1.304347826086957, "x2": 5.362318840579711, "y2": 1.5942028985507246, "center_x": 5.217391304347827, "center_y": 1.4492753623188408, "value_uncond": 0.01107907423934817}, {"x": 5.362318840579711, "y": 1.304347826086957, "x2": 5.6521739130434785, "y2": 1.5942028985507246, "center_x": 5.507246376811595, "center_y": 1.4492753623188408, "value_uncond": 0.010653097298326468}, {"x": 5.6521739130434785, "y": 1.304347826086957, "x2": 5.942028985507246, "y2": 1.5942028985507246, "center_x": 5.797101449275362, "center_y": 1.4492753623188408, "value_uncond": 0.010148319442265323}, {"x": 5.942028985507246, "y": 1.304347826086957, "x2": 6.231884057971014, "y2": 1.5942028985507246, "center_x": 6.08695652173913, "center_y": 1.4492753623188408, "value_uncond": 0.009577632731404702}, {"x": 6.2318840579710155, "y": 1.304347826086957, "x2": 6.521739130434783, "y2": 1.5942028985507246, "center_x": 6.376811594202899, "center_y": 1.4492753623188408, "value_uncond": 0.008955050597924173}, {"x": 6.521739130434785, "y": 1.304347826086957, "x2": 6.8115942028985526, "y2": 1.5942028985507246, "center_x": 6.666666666666669, "center_y": 1.4492753623188408, "value_uncond": 0.008295140059495587}, {"x": 6.811594202898551, "y": 1.304347826086957, "x2": 7.101449275362318, "y2": 1.5942028985507246, "center_x": 6.956521739130435, "center_y": 1.4492753623188408, "value_uncond": 0.007612463390355489}, {"x": 7.10144927536232, "y": 1.304347826086957, "x2": 7.391304347826088, "y2": 1.5942028985507246, "center_x": 7.246376811594204, "center_y": 1.4492753623188408, "value_uncond": 0.00692105858359676}, {"x": 7.391304347826086, "y": 1.304347826086957, "x2": 7.681159420289854, "y2": 1.5942028985507246, "center_x": 7.53623188405797, "center_y": 1.4492753623188408, "value_uncond": 0.00623398349645561}, {"x": 7.681159420289855, "y": 1.304347826086957, "x2": 7.971014492753623, "y2": 1.5942028985507246, "center_x": 7.826086956521739, "center_y": 1.4492753623188408, "value_uncond": 0.005562942687262318}, {"x": 7.971014492753625, "y": 1.304347826086957, "x2": 8.260869565217392, "y2": 1.5942028985507246, "center_x": 8.115942028985508, "center_y": 1.4492753623188408, "value_uncond": 0.0049180092080305235}, {"x": 8.26086956521739, "y": 1.304347826086957, "x2": 8.550724637681158, "y2": 1.5942028985507246, "center_x": 8.405797101449274, "center_y": 1.4492753623188408, "value_uncond": 0.004307446618483881}, {"x": 8.55072463768116, "y": 1.304347826086957, "x2": 8.840579710144928, "y2": 1.5942028985507246, "center_x": 8.695652173913043, "center_y": 1.4492753623188408, "value_uncond": 0.003737629811159793}, {"x": 8.84057971014493, "y": 1.304347826086957, "x2": 9.130434782608697, "y2": 1.5942028985507246, "center_x": 8.985507246376812, "center_y": 1.4492753623188408, "value_uncond": 0.0032130573737791934}, {"x": 9.130434782608695, "y": 1.304347826086957, "x2": 9.420289855072463, "y2": 1.5942028985507246, "center_x": 9.275362318840578, "center_y": 1.4492753623188408, "value_uncond": 0.002736443532008462}, {"x": 9.420289855072465, "y": 1.304347826086957, "x2": 9.710144927536232, "y2": 1.5942028985507246, "center_x": 9.565217391304348, "center_y": 1.4492753623188408, "value_uncond": 0.0023088744363809082}, {"x": 9.710144927536234, "y": 1.304347826086957, "x2": 10.000000000000002, "y2": 1.5942028985507246, "center_x": 9.855072463768117, "center_y": 1.4492753623188408, "value_uncond": 0.0019300117564770617}, {"x": 10.0, "y": 1.304347826086957, "x2": 10.289855072463768, "y2": 1.5942028985507246, "center_x": 10.144927536231883, "center_y": 1.4492753623188408, "value_uncond": 0.001598326161940756}, {"x": -10.0, "y": 1.5942028985507246, "x2": -9.710144927536232, "y2": 1.8840579710144922, "center_x": -9.855072463768117, "center_y": 1.7391304347826084, "value_uncond": 2.3930228500439113e-07}, {"x": -9.710144927536232, "y": 1.5942028985507246, "x2": -9.420289855072465, "y2": 1.8840579710144922, "center_x": -9.565217391304348, "center_y": 1.7391304347826084, "value_uncond": 3.738840259732958e-07}, {"x": -9.420289855072463, "y": 1.5942028985507246, "x2": -9.130434782608695, "y2": 1.8840579710144922, "center_x": -9.275362318840578, "center_y": 1.7391304347826084, "value_uncond": 5.787257281488953e-07}, {"x": -9.130434782608695, "y": 1.5942028985507246, "x2": -8.840579710144928, "y2": 1.8840579710144922, "center_x": -8.985507246376812, "center_y": 1.7391304347826084, "value_uncond": 8.874716408659564e-07}, {"x": -8.840579710144928, "y": 1.5942028985507246, "x2": -8.55072463768116, "y2": 1.8840579710144922, "center_x": -8.695652173913043, "center_y": 1.7391304347826084, "value_uncond": 1.3482858995648677e-06}, {"x": -8.55072463768116, "y": 1.5942028985507246, "x2": -8.260869565217392, "y2": 1.8840579710144922, "center_x": -8.405797101449277, "center_y": 1.7391304347826084, "value_uncond": 2.0293423365645064e-06}, {"x": -8.26086956521739, "y": 1.5942028985507246, "x2": -7.971014492753623, "y2": 1.8840579710144922, "center_x": -8.115942028985508, "center_y": 1.7391304347826084, "value_uncond": 3.0260385297535673e-06}, {"x": -7.971014492753623, "y": 1.5942028985507246, "x2": -7.681159420289855, "y2": 1.8840579710144922, "center_x": -7.826086956521739, "center_y": 1.7391304347826084, "value_uncond": 4.470328165080958e-06}, {"x": -7.681159420289855, "y": 1.5942028985507246, "x2": -7.391304347826088, "y2": 1.8840579710144922, "center_x": -7.536231884057972, "center_y": 1.7391304347826084, "value_uncond": 6.5425970342707065e-06}, {"x": -7.391304347826087, "y": 1.5942028985507246, "x2": -7.101449275362319, "y2": 1.8840579710144922, "center_x": -7.246376811594203, "center_y": 1.7391304347826084, "value_uncond": 9.486516222981147e-06}, {"x": -7.101449275362318, "y": 1.5942028985507246, "x2": -6.811594202898551, "y2": 1.8840579710144922, "center_x": -6.956521739130435, "center_y": 1.7391304347826084, "value_uncond": 1.362727906211575e-05}, {"x": -6.811594202898551, "y": 1.5942028985507246, "x2": -6.521739130434783, "y2": 1.8840579710144922, "center_x": -6.666666666666667, "center_y": 1.7391304347826084, "value_uncond": 1.9393552043168186e-05}, {"x": -6.521739130434782, "y": 1.5942028985507246, "x2": -6.231884057971015, "y2": 1.8840579710144922, "center_x": -6.3768115942028984, "center_y": 1.7391304347826084, "value_uncond": 2.7343328802596077e-05}, {"x": -6.231884057971014, "y": 1.5942028985507246, "x2": -5.942028985507246, "y2": 1.8840579710144922, "center_x": -6.08695652173913, "center_y": 1.7391304347826084, "value_uncond": 3.819365530706185e-05}, {"x": -5.942028985507246, "y": 1.5942028985507246, "x2": -5.6521739130434785, "y2": 1.8840579710144922, "center_x": -5.797101449275362, "center_y": 1.7391304347826084, "value_uncond": 5.285388048410381e-05}, {"x": -5.6521739130434785, "y": 1.5942028985507246, "x2": -5.362318840579711, "y2": 1.8840579710144922, "center_x": -5.507246376811595, "center_y": 1.7391304347826084, "value_uncond": 7.246167133555524e-05}, {"x": -5.36231884057971, "y": 1.5942028985507246, "x2": -5.072463768115942, "y2": 1.8840579710144922, "center_x": -5.217391304347826, "center_y": 1.7391304347826084, "value_uncond": 9.8420514256999e-05}, {"x": -5.0724637681159415, "y": 1.5942028985507246, "x2": -4.782608695652174, "y2": 1.8840579710144922, "center_x": -4.927536231884058, "center_y": 1.7391304347826084, "value_uncond": 0.00013243681493426047}, {"x": -4.782608695652174, "y": 1.5942028985507246, "x2": -4.492753623188406, "y2": 1.8840579710144922, "center_x": -4.63768115942029, "center_y": 1.7391304347826084, "value_uncond": 0.00017655403184885278}, {"x": -4.492753623188405, "y": 1.5942028985507246, "x2": -4.202898550724638, "y2": 1.8840579710144922, "center_x": -4.3478260869565215, "center_y": 1.7391304347826084, "value_uncond": 0.00023318057366654825}, {"x": -4.202898550724638, "y": 1.5942028985507246, "x2": -3.91304347826087, "y2": 1.8840579710144922, "center_x": -4.057971014492754, "center_y": 1.7391304347826084, "value_uncond": 0.00030510751704652234}, {"x": -3.913043478260869, "y": 1.5942028985507246, "x2": -3.6231884057971016, "y2": 1.8840579710144922, "center_x": -3.7681159420289854, "center_y": 1.7391304347826084, "value_uncond": 0.00039551163455088756}, {"x": -3.6231884057971016, "y": 1.5942028985507246, "x2": -3.333333333333334, "y2": 1.8840579710144922, "center_x": -3.4782608695652177, "center_y": 1.7391304347826084, "value_uncond": 0.0005079388527825471}, {"x": -3.333333333333333, "y": 1.5942028985507246, "x2": -3.0434782608695654, "y2": 1.8840579710144922, "center_x": -3.1884057971014492, "center_y": 1.7391304347826084, "value_uncond": 0.0006462631879432444}, {"x": -3.0434782608695645, "y": 1.5942028985507246, "x2": -2.753623188405797, "y2": 1.8840579710144922, "center_x": -2.8985507246376807, "center_y": 1.7391304347826084, "value_uncond": 0.0008146165291889287}, {"x": -2.753623188405797, "y": 1.5942028985507246, "x2": -2.4637681159420293, "y2": 1.8840579710144922, "center_x": -2.608695652173913, "center_y": 1.7391304347826084, "value_uncond": 0.0010172854476969823}, {"x": -2.4637681159420284, "y": 1.5942028985507246, "x2": -2.1739130434782608, "y2": 1.8840579710144922, "center_x": -2.3188405797101446, "center_y": 1.7391304347826084, "value_uncond": 0.0012585725646548536}, {"x": -2.1739130434782608, "y": 1.5942028985507246, "x2": -1.8840579710144931, "y2": 1.8840579710144922, "center_x": -2.028985507246377, "center_y": 1.7391304347826084, "value_uncond": 0.0015426219385989153}, {"x": -1.8840579710144922, "y": 1.5942028985507246, "x2": -1.5942028985507246, "y2": 1.8840579710144922, "center_x": -1.7391304347826084, "center_y": 1.7391304347826084, "value_uncond": 0.0018732104030289617}, {"x": -1.5942028985507246, "y": 1.5942028985507246, "x2": -1.304347826086957, "y2": 1.8840579710144922, "center_x": -1.4492753623188408, "center_y": 1.7391304347826084, "value_uncond": 0.0022535097068581106}, {"x": -1.304347826086957, "y": 1.5942028985507246, "x2": -1.0144927536231894, "y2": 1.8840579710144922, "center_x": -1.1594202898550732, "center_y": 1.7391304347826084, "value_uncond": 0.0026858275218073005}, {"x": -1.0144927536231876, "y": 1.5942028985507246, "x2": -0.72463768115942, "y2": 1.8840579710144922, "center_x": -0.8695652173913038, "center_y": 1.7391304347826084, "value_uncond": 0.0031713386535351415}, {"x": -0.72463768115942, "y": 1.5942028985507246, "x2": -0.43478260869565233, "y2": 1.8840579710144922, "center_x": -0.5797101449275361, "center_y": 1.7391304347826084, "value_uncond": 0.003709820840910567}, {"x": -0.43478260869565233, "y": 1.5942028985507246, "x2": -0.1449275362318847, "y2": 1.8840579710144922, "center_x": -0.2898550724637685, "center_y": 1.7391304347826084, "value_uncond": 0.004299412026176441}, {"x": -0.14492753623188293, "y": 1.5942028985507246, "x2": 0.1449275362318847, "y2": 1.8840579710144922, "center_x": 8.881784197001252e-16, "center_y": 1.7391304347826084, "value_uncond": 0.004936407593713624}, {"x": 0.1449275362318847, "y": 1.5942028985507246, "x2": 0.43478260869565233, "y2": 1.8840579710144922, "center_x": 0.2898550724637685, "center_y": 1.7391304347826084, "value_uncond": 0.005615116497667997}, {"x": 0.43478260869565233, "y": 1.5942028985507246, "x2": 0.72463768115942, "y2": 1.8840579710144922, "center_x": 0.5797101449275361, "center_y": 1.7391304347826084, "value_uncond": 0.00632779418348823}, {"x": 0.72463768115942, "y": 1.5942028985507246, "x2": 1.0144927536231876, "y2": 1.8840579710144922, "center_x": 0.8695652173913038, "center_y": 1.7391304347826084, "value_uncond": 0.007064667611649967}, {"x": 1.0144927536231894, "y": 1.5942028985507246, "x2": 1.304347826086957, "y2": 1.8840579710144922, "center_x": 1.1594202898550732, "center_y": 1.7391304347826084, "value_uncond": 0.007814063503488382}, {"x": 1.304347826086957, "y": 1.5942028985507246, "x2": 1.5942028985507246, "y2": 1.8840579710144922, "center_x": 1.4492753623188408, "center_y": 1.7391304347826084, "value_uncond": 0.008562645294301409}, {"x": 1.5942028985507246, "y": 1.5942028985507246, "x2": 1.8840579710144922, "y2": 1.8840579710144922, "center_x": 1.7391304347826084, "center_y": 1.7391304347826084, "value_uncond": 0.009295757504403146}, {"x": 1.884057971014494, "y": 1.5942028985507246, "x2": 2.1739130434782616, "y2": 1.8840579710144922, "center_x": 2.028985507246378, "center_y": 1.7391304347826084, "value_uncond": 0.009997868781023904}, {"x": 2.1739130434782616, "y": 1.5942028985507246, "x2": 2.4637681159420293, "y2": 1.8840579710144922, "center_x": 2.3188405797101455, "center_y": 1.7391304347826084, "value_uncond": 0.010653097298326468}, {"x": 2.4637681159420293, "y": 1.5942028985507246, "x2": 2.753623188405797, "y2": 1.8840579710144922, "center_x": 2.608695652173913, "center_y": 1.7391304347826084, "value_uncond": 0.011245795175755779}, {"x": 2.753623188405797, "y": 1.5942028985507246, "x2": 3.0434782608695645, "y2": 1.8840579710144922, "center_x": 2.8985507246376807, "center_y": 1.7391304347826084, "value_uncond": 0.011761162742523815}, {"x": 3.0434782608695663, "y": 1.5942028985507246, "x2": 3.333333333333334, "y2": 1.8840579710144922, "center_x": 3.18840579710145, "center_y": 1.7391304347826084, "value_uncond": 0.012185859435716389}, {"x": 3.333333333333334, "y": 1.5942028985507246, "x2": 3.6231884057971016, "y2": 1.8840579710144922, "center_x": 3.4782608695652177, "center_y": 1.7391304347826084, "value_uncond": 0.01250857634283142}, {"x": 3.6231884057971016, "y": 1.5942028985507246, "x2": 3.913043478260869, "y2": 1.8840579710144922, "center_x": 3.7681159420289854, "center_y": 1.7391304347826084, "value_uncond": 0.012720536174122625}, {"x": 3.913043478260871, "y": 1.5942028985507246, "x2": 4.202898550724639, "y2": 1.8840579710144922, "center_x": 4.057971014492755, "center_y": 1.7391304347826084, "value_uncond": 0.012815889838676837}, {"x": 4.202898550724639, "y": 1.5942028985507246, "x2": 4.492753623188406, "y2": 1.8840579710144922, "center_x": 4.347826086956522, "center_y": 1.7391304347826084, "value_uncond": 0.012791984620799281}, {"x": 4.492753623188406, "y": 1.5942028985507246, "x2": 4.782608695652174, "y2": 1.8840579710144922, "center_x": 4.63768115942029, "center_y": 1.7391304347826084, "value_uncond": 0.012649486796134982}, {"x": 4.782608695652174, "y": 1.5942028985507246, "x2": 5.0724637681159415, "y2": 1.8840579710144922, "center_x": 4.927536231884058, "center_y": 1.7391304347826084, "value_uncond": 0.012392350777284051}, {"x": 5.072463768115943, "y": 1.5942028985507246, "x2": 5.362318840579711, "y2": 1.8840579710144922, "center_x": 5.217391304347827, "center_y": 1.7391304347826084, "value_uncond": 0.012027636783086286}, {"x": 5.362318840579711, "y": 1.5942028985507246, "x2": 5.6521739130434785, "y2": 1.8840579710144922, "center_x": 5.507246376811595, "center_y": 1.7391304347826084, "value_uncond": 0.011565188764967345}, {"x": 5.6521739130434785, "y": 1.5942028985507246, "x2": 5.942028985507246, "y2": 1.8840579710144922, "center_x": 5.797101449275362, "center_y": 1.7391304347826084, "value_uncond": 0.011017193095140902}, {"x": 5.942028985507246, "y": 1.5942028985507246, "x2": 6.231884057971014, "y2": 1.8840579710144922, "center_x": 6.08695652173913, "center_y": 1.7391304347826084, "value_uncond": 0.010397645619704042}, {"x": 6.2318840579710155, "y": 1.5942028985507246, "x2": 6.521739130434783, "y2": 1.8840579710144922, "center_x": 6.376811594202899, "center_y": 1.7391304347826084, "value_uncond": 0.00972175956574586}, {"x": 6.521739130434785, "y": 1.5942028985507246, "x2": 6.8115942028985526, "y2": 1.8840579710144922, "center_x": 6.666666666666669, "center_y": 1.7391304347826084, "value_uncond": 0.009005349142448897}, {"x": 6.811594202898551, "y": 1.5942028985507246, "x2": 7.101449275362318, "y2": 1.8840579710144922, "center_x": 6.956521739130435, "center_y": 1.7391304347826084, "value_uncond": 0.008264223409439334}, {"x": 7.10144927536232, "y": 1.5942028985507246, "x2": 7.391304347826088, "y2": 1.8840579710144922, "center_x": 7.246376811594204, "center_y": 1.7391304347826084, "value_uncond": 0.0075136222575633805}, {"x": 7.391304347826086, "y": 1.5942028985507246, "x2": 7.681159420289854, "y2": 1.8840579710144922, "center_x": 7.53623188405797, "center_y": 1.7391304347826084, "value_uncond": 0.006767721525037255}, {"x": 7.681159420289855, "y": 1.5942028985507246, "x2": 7.971014492753623, "y2": 1.8840579710144922, "center_x": 7.826086956521739, "center_y": 1.7391304347826084, "value_uncond": 0.006039227885113773}, {"x": 7.971014492753625, "y": 1.5942028985507246, "x2": 8.260869565217392, "y2": 1.8840579710144922, "center_x": 8.115942028985508, "center_y": 1.7391304347826084, "value_uncond": 0.005339076819251023}, {"x": 8.26086956521739, "y": 1.5942028985507246, "x2": 8.550724637681158, "y2": 1.8840579710144922, "center_x": 8.405797101449274, "center_y": 1.7391304347826084, "value_uncond": 0.004676239392426481}, {"x": 8.55072463768116, "y": 1.5942028985507246, "x2": 8.840579710144928, "y2": 1.8840579710144922, "center_x": 8.695652173913043, "center_y": 1.7391304347826084, "value_uncond": 0.004057636299484736}, {"x": 8.84057971014493, "y": 1.5942028985507246, "x2": 9.130434782608697, "y2": 1.8840579710144922, "center_x": 8.985507246376812, "center_y": 1.7391304347826084, "value_uncond": 0.0034881512859423654}, {"x": 9.130434782608695, "y": 1.5942028985507246, "x2": 9.420289855072463, "y2": 1.8840579710144922, "center_x": 9.275362318840578, "center_y": 1.7391304347826084, "value_uncond": 0.002970730962658479}, {"x": 9.420289855072465, "y": 1.5942028985507246, "x2": 9.710144927536232, "y2": 1.8840579710144922, "center_x": 9.565217391304348, "center_y": 1.7391304347826084, "value_uncond": 0.002506554473650362}, {"x": 9.710144927536234, "y": 1.5942028985507246, "x2": 10.000000000000002, "y2": 1.8840579710144922, "center_x": 9.855072463768117, "center_y": 1.7391304347826084, "value_uncond": 0.002095254521496756}, {"x": 10.0, "y": 1.5942028985507246, "x2": 10.289855072463768, "y2": 1.8840579710144922, "center_x": 10.144927536231883, "center_y": 1.7391304347826084, "value_uncond": 0.0017351708384128314}, {"x": -10.0, "y": 1.884057971014494, "x2": -9.710144927536232, "y2": 2.1739130434782616, "center_x": -9.855072463768117, "center_y": 2.028985507246378, "value_uncond": 2.573768564143178e-07}, {"x": -9.710144927536232, "y": 1.884057971014494, "x2": -9.420289855072465, "y2": 2.1739130434782616, "center_x": -9.565217391304348, "center_y": 2.028985507246378, "value_uncond": 4.021235955468218e-07}, {"x": -9.420289855072463, "y": 1.884057971014494, "x2": -9.130434782608695, "y2": 2.1739130434782616, "center_x": -9.275362318840578, "center_y": 2.028985507246378, "value_uncond": 6.224370512563913e-07}, {"x": -9.130434782608695, "y": 1.884057971014494, "x2": -8.840579710144928, "y2": 2.1739130434782616, "center_x": -8.985507246376812, "center_y": 2.028985507246378, "value_uncond": 9.54502632846757e-07}, {"x": -8.840579710144928, "y": 1.884057971014494, "x2": -8.55072463768116, "y2": 2.1739130434782616, "center_x": -8.695652173913043, "center_y": 2.028985507246378, "value_uncond": 1.4501223269614357e-06}, {"x": -8.55072463768116, "y": 1.884057971014494, "x2": -8.260869565217392, "y2": 2.1739130434782616, "center_x": -8.405797101449277, "center_y": 2.028985507246378, "value_uncond": 2.1826191553660887e-06}, {"x": -8.26086956521739, "y": 1.884057971014494, "x2": -7.971014492753623, "y2": 2.1739130434782616, "center_x": -8.115942028985508, "center_y": 2.028985507246378, "value_uncond": 3.2545961028424198e-06}, {"x": -7.971014492753623, "y": 1.884057971014494, "x2": -7.681159420289855, "y2": 2.1739130434782616, "center_x": -7.826086956521739, "center_y": 2.028985507246378, "value_uncond": 4.807973355740461e-06}, {"x": -7.681159420289855, "y": 1.884057971014494, "x2": -7.391304347826088, "y2": 2.1739130434782616, "center_x": -7.536231884057972, "center_y": 2.028985507246378, "value_uncond": 7.036761297266066e-06}, {"x": -7.391304347826087, "y": 1.884057971014494, "x2": -7.101449275362319, "y2": 2.1739130434782616, "center_x": -7.246376811594203, "center_y": 2.028985507246378, "value_uncond": 1.0203035561275618e-05}, {"x": -7.101449275362318, "y": 1.884057971014494, "x2": -6.811594202898551, "y2": 2.1739130434782616, "center_x": -6.956521739130435, "center_y": 2.028985507246378, "value_uncond": 1.465655142584053e-05}, {"x": -6.811594202898551, "y": 1.884057971014494, "x2": -6.521739130434783, "y2": 2.1739130434782616, "center_x": -6.666666666666667, "center_y": 2.028985507246378, "value_uncond": 2.0858352687633163e-05}, {"x": -6.521739130434782, "y": 1.884057971014494, "x2": -6.231884057971015, "y2": 2.1739130434782616, "center_x": -6.3768115942028984, "center_y": 2.028985507246378, "value_uncond": 2.9408578405283986e-05}, {"x": -6.231884057971014, "y": 1.884057971014494, "x2": -5.942028985507246, "y2": 2.1739130434782616, "center_x": -6.08695652173913, "center_y": 2.028985507246378, "value_uncond": 4.107843323653689e-05}, {"x": -5.942028985507246, "y": 1.884057971014494, "x2": -5.6521739130434785, "y2": 2.1739130434782616, "center_x": -5.797101449275362, "center_y": 2.028985507246378, "value_uncond": 5.684594949875671e-05}, {"x": -5.6521739130434785, "y": 1.884057971014494, "x2": -5.362318840579711, "y2": 2.1739130434782616, "center_x": -5.507246376811595, "center_y": 2.028985507246378, "value_uncond": 7.793472251437328e-05}, {"x": -5.36231884057971, "y": 1.884057971014494, "x2": -5.072463768115942, "y2": 2.1739130434782616, "center_x": -5.217391304347826, "center_y": 2.028985507246378, "value_uncond": 0.00010585424441593667}, {"x": -5.0724637681159415, "y": 1.884057971014494, "x2": -4.782608695652174, "y2": 2.1739130434782616, "center_x": -4.927536231884058, "center_y": 2.028985507246378, "value_uncond": 0.00014243980620861715}, {"x": -4.782608695652174, "y": 1.884057971014494, "x2": -4.492753623188406, "y2": 2.1739130434782616, "center_x": -4.63768115942029, "center_y": 2.028985507246378, "value_uncond": 0.00018988920938927623}, {"x": -4.492753623188405, "y": 1.884057971014494, "x2": -4.202898550724638, "y2": 2.1739130434782616, "center_x": -4.3478260869565215, "center_y": 2.028985507246378, "value_uncond": 0.0002507927704329367}, {"x": -4.202898550724638, "y": 1.884057971014494, "x2": -3.91304347826087, "y2": 2.1739130434782616, "center_x": -4.057971014492754, "center_y": 2.028985507246378, "value_uncond": 0.000328152376833221}, {"x": -3.913043478260869, "y": 1.884057971014494, "x2": -3.6231884057971016, "y2": 2.1739130434782616, "center_x": -3.7681159420289854, "center_y": 2.028985507246378, "value_uncond": 0.00042538474371077597}, {"x": -3.6231884057971016, "y": 1.884057971014494, "x2": -3.333333333333334, "y2": 2.1739130434782616, "center_x": -3.4782608695652177, "center_y": 2.028985507246378, "value_uncond": 0.000546303622539451}, {"x": -3.333333333333333, "y": 1.884057971014494, "x2": -3.0434782608695654, "y2": 2.1739130434782616, "center_x": -3.1884057971014492, "center_y": 2.028985507246378, "value_uncond": 0.0006950756350950666}, {"x": -3.0434782608695645, "y": 1.884057971014494, "x2": -2.753623188405797, "y2": 2.1739130434782616, "center_x": -2.8985507246376807, "center_y": 2.028985507246378, "value_uncond": 0.0008761447533271222}, {"x": -2.753623188405797, "y": 1.884057971014494, "x2": -2.4637681159420293, "y2": 2.1739130434782616, "center_x": -2.608695652173913, "center_y": 2.028985507246378, "value_uncond": 0.0010941213143847621}, {"x": -2.4637681159420284, "y": 1.884057971014494, "x2": -2.1739130434782608, "y2": 2.1739130434782616, "center_x": -2.3188405797101446, "center_y": 2.028985507246378, "value_uncond": 0.0013536329176891404}, {"x": -2.1739130434782608, "y": 1.884057971014494, "x2": -1.8840579710144931, "y2": 2.1739130434782616, "center_x": -2.028985507246377, "center_y": 2.028985507246378, "value_uncond": 0.0016591366237270336}, {"x": -1.8840579710144922, "y": 1.884057971014494, "x2": -1.5942028985507246, "y2": 2.1739130434782616, "center_x": -1.7391304347826084, "center_y": 2.028985507246378, "value_uncond": 0.002014694531334479}, {"x": -1.5942028985507246, "y": 1.884057971014494, "x2": -1.304347826086957, "y2": 2.1739130434782616, "center_x": -1.4492753623188408, "center_y": 2.028985507246378, "value_uncond": 0.0024237179525454533}, {"x": -1.304347826086957, "y": 1.884057971014494, "x2": -1.0144927536231894, "y2": 2.1739130434782616, "center_x": -1.1594202898550732, "center_y": 2.028985507246378, "value_uncond": 0.0028886888581993115}, {"x": -1.0144927536231876, "y": 1.884057971014494, "x2": -0.72463768115942, "y2": 2.1739130434782616, "center_x": -0.8695652173913038, "center_y": 2.028985507246378, "value_uncond": 0.00341087078736884}, {"x": -0.72463768115942, "y": 1.884057971014494, "x2": -0.43478260869565233, "y2": 2.1739130434782616, "center_x": -0.5797101449275361, "center_y": 2.028985507246378, "value_uncond": 0.003990024691474894}, {"x": -0.43478260869565233, "y": 1.884057971014494, "x2": -0.1449275362318847, "y2": 2.1739130434782616, "center_x": -0.2898550724637685, "center_y": 2.028985507246378, "value_uncond": 0.004624147870994629}, {"x": -0.14492753623188293, "y": 1.884057971014494, "x2": 0.1449275362318847, "y2": 2.1739130434782616, "center_x": 8.881784197001252e-16, "center_y": 2.028985507246378, "value_uncond": 0.005309255899610263}, {"x": 0.1449275362318847, "y": 1.884057971014494, "x2": 0.43478260869565233, "y2": 2.1739130434782616, "center_x": 0.2898550724637685, "center_y": 2.028985507246378, "value_uncond": 0.006039227885113778}, {"x": 0.43478260869565233, "y": 1.884057971014494, "x2": 0.72463768115942, "y2": 2.1739130434782616, "center_x": 0.5797101449275361, "center_y": 2.028985507246378, "value_uncond": 0.006805734324488883}, {"x": 0.72463768115942, "y": 1.884057971014494, "x2": 1.0144927536231876, "y2": 2.1739130434782616, "center_x": 0.8695652173913038, "center_y": 2.028985507246378, "value_uncond": 0.007598264017684372}, {"x": 1.0144927536231894, "y": 1.884057971014494, "x2": 1.304347826086957, "y2": 2.1739130434782616, "center_x": 1.1594202898550732, "center_y": 2.028985507246378, "value_uncond": 0.00840426199989184}, {"x": 1.304347826086957, "y": 1.884057971014494, "x2": 1.5942028985507246, "y2": 2.1739130434782616, "center_x": 1.4492753623188408, "center_y": 2.028985507246378, "value_uncond": 0.009209384391785931}, {"x": 1.5942028985507246, "y": 1.884057971014494, "x2": 1.8840579710144922, "y2": 2.1739130434782616, "center_x": 1.7391304347826084, "center_y": 2.028985507246378, "value_uncond": 0.009997868781023904}, {"x": 1.884057971014494, "y": 1.884057971014494, "x2": 2.1739130434782616, "y2": 2.1739130434782616, "center_x": 2.028985507246378, "center_y": 2.028985507246378, "value_uncond": 0.010753010727229631}, {"x": 2.1739130434782616, "y": 1.884057971014494, "x2": 2.4637681159420293, "y2": 2.1739130434782616, "center_x": 2.3188405797101455, "center_y": 2.028985507246378, "value_uncond": 0.01145772884562643}, {"x": 2.4637681159420293, "y": 1.884057971014494, "x2": 2.753623188405797, "y2": 2.1739130434782616, "center_x": 2.608695652173913, "center_y": 2.028985507246378, "value_uncond": 0.012095193366675175}, {"x": 2.753623188405797, "y": 1.884057971014494, "x2": 3.0434782608695645, "y2": 2.1739130434782616, "center_x": 2.8985507246376807, "center_y": 2.028985507246378, "value_uncond": 0.012649486796134986}, {"x": 3.0434782608695663, "y": 1.884057971014494, "x2": 3.333333333333334, "y2": 2.1739130434782616, "center_x": 3.18840579710145, "center_y": 2.028985507246378, "value_uncond": 0.013106260954482262}, {"x": 3.333333333333334, "y": 1.884057971014494, "x2": 3.6231884057971016, "y2": 2.1739130434782616, "center_x": 3.4782608695652177, "center_y": 2.028985507246378, "value_uncond": 0.013453352763753928}, {"x": 3.6231884057971016, "y": 1.884057971014494, "x2": 3.913043478260869, "y2": 2.1739130434782616, "center_x": 3.7681159420289854, "center_y": 2.028985507246378, "value_uncond": 0.013681321982948132}, {"x": 3.913043478260871, "y": 1.884057971014494, "x2": 4.202898550724639, "y2": 2.1739130434782616, "center_x": 4.057971014492755, "center_y": 2.028985507246378, "value_uncond": 0.013783877737608386}, {"x": 4.202898550724639, "y": 1.884057971014494, "x2": 4.492753623188406, "y2": 2.1739130434782616, "center_x": 4.347826086956522, "center_y": 2.028985507246378, "value_uncond": 0.013758166951649482}, {"x": 4.492753623188406, "y": 1.884057971014494, "x2": 4.782608695652174, "y2": 2.1739130434782616, "center_x": 4.63768115942029, "center_y": 2.028985507246378, "value_uncond": 0.013604906224710316}, {"x": 4.782608695652174, "y": 1.884057971014494, "x2": 5.0724637681159415, "y2": 2.1739130434782616, "center_x": 4.927536231884058, "center_y": 2.028985507246378, "value_uncond": 0.013328348647328505}, {"x": 5.072463768115943, "y": 1.884057971014494, "x2": 5.362318840579711, "y2": 2.1739130434782616, "center_x": 5.217391304347827, "center_y": 2.028985507246378, "value_uncond": 0.012936087698732852}, {"x": 5.362318840579711, "y": 1.884057971014494, "x2": 5.6521739130434785, "y2": 2.1739130434782616, "center_x": 5.507246376811595, "center_y": 2.028985507246378, "value_uncond": 0.01243871084687245}, {"x": 5.6521739130434785, "y": 1.884057971014494, "x2": 5.942028985507246, "y2": 2.1739130434782616, "center_x": 5.797101449275362, "center_y": 2.028985507246378, "value_uncond": 0.011849324904210014}, {"x": 5.942028985507246, "y": 1.884057971014494, "x2": 6.231884057971014, "y2": 2.1739130434782616, "center_x": 6.08695652173913, "center_y": 2.028985507246378, "value_uncond": 0.011182982827182043}, {"x": 6.2318840579710155, "y": 1.884057971014494, "x2": 6.521739130434783, "y2": 2.1739130434782616, "center_x": 6.376811594202899, "center_y": 2.028985507246378, "value_uncond": 0.010456046902358579}, {"x": 6.521739130434785, "y": 1.884057971014494, "x2": 6.8115942028985526, "y2": 2.1739130434782616, "center_x": 6.666666666666669, "center_y": 2.028985507246378, "value_uncond": 0.009685525790755987}, {"x": 6.811594202898551, "y": 1.884057971014494, "x2": 7.101449275362318, "y2": 2.1739130434782616, "center_x": 6.956521739130435, "center_y": 2.028985507246378, "value_uncond": 0.00888842261488678}, {"x": 7.10144927536232, "y": 1.884057971014494, "x2": 7.391304347826088, "y2": 2.1739130434782616, "center_x": 7.246376811594204, "center_y": 2.028985507246378, "value_uncond": 0.008081128338999469}, {"x": 7.391304347826086, "y": 1.884057971014494, "x2": 7.681159420289854, "y2": 2.1739130434782616, "center_x": 7.53623188405797, "center_y": 2.028985507246378, "value_uncond": 0.007278889506506966}, {"x": 7.681159420289855, "y": 1.884057971014494, "x2": 7.971014492753623, "y2": 2.1739130434782616, "center_x": 7.826086956521739, "center_y": 2.028985507246378, "value_uncond": 0.006495372529400421}, {"x": 7.971014492753625, "y": 1.884057971014494, "x2": 8.260869565217392, "y2": 2.1739130434782616, "center_x": 8.115942028985508, "center_y": 2.028985507246378, "value_uncond": 0.0057423388492432005}, {"x": 8.26086956521739, "y": 1.884057971014494, "x2": 8.550724637681158, "y2": 2.1739130434782616, "center_x": 8.405797101449274, "center_y": 2.028985507246378, "value_uncond": 0.005029437118168106}, {"x": 8.55072463768116, "y": 1.884057971014494, "x2": 8.840579710144928, "y2": 2.1739130434782616, "center_x": 8.695652173913043, "center_y": 2.028985507246378, "value_uncond": 0.004364110753120656}, {"x": 8.84057971014493, "y": 1.884057971014494, "x2": 9.130434782608697, "y2": 2.1739130434782616, "center_x": 8.985507246376812, "center_y": 2.028985507246378, "value_uncond": 0.003751612370341272}, {"x": 9.130434782608695, "y": 1.884057971014494, "x2": 9.420289855072463, "y2": 2.1739130434782616, "center_x": 9.275362318840578, "center_y": 2.028985507246378, "value_uncond": 0.0031951111390670145}, {"x": 9.420289855072465, "y": 1.884057971014494, "x2": 9.710144927536232, "y2": 2.1739130434782616, "center_x": 9.565217391304348, "center_y": 2.028985507246378, "value_uncond": 0.002695875264406846}, {"x": 9.710144927536234, "y": 1.884057971014494, "x2": 10.000000000000002, "y2": 2.1739130434782616, "center_x": 9.855072463768117, "center_y": 2.028985507246378, "value_uncond": 0.0022535097068581075}, {"x": 10.0, "y": 1.884057971014494, "x2": 10.289855072463768, "y2": 2.1739130434782616, "center_x": 10.144927536231883, "center_y": 2.028985507246378, "value_uncond": 0.001866228798125752}, {"x": -10.0, "y": 2.1739130434782616, "x2": -9.710144927536232, "y2": 2.4637681159420293, "center_x": -9.855072463768117, "center_y": 2.3188405797101455, "value_uncond": 2.742445168837601e-07}, {"x": -9.710144927536232, "y": 2.1739130434782616, "x2": -9.420289855072465, "y2": 2.4637681159420293, "center_x": -9.565217391304348, "center_y": 2.3188405797101455, "value_uncond": 4.284774968685328e-07}, {"x": -9.420289855072463, "y": 2.1739130434782616, "x2": -9.130434782608695, "y2": 2.4637681159420293, "center_x": -9.275362318840578, "center_y": 2.3188405797101455, "value_uncond": 6.632295956617537e-07}, {"x": -9.130434782608695, "y": 2.1739130434782616, "x2": -8.840579710144928, "y2": 2.4637681159420293, "center_x": -8.985507246376812, "center_y": 2.3188405797101455, "value_uncond": 1.0170576991893582e-06}, {"x": -8.840579710144928, "y": 2.1739130434782616, "x2": -8.55072463768116, "y2": 2.4637681159420293, "center_x": -8.695652173913043, "center_y": 2.3188405797101455, "value_uncond": 1.5451587315205457e-06}, {"x": -8.55072463768116, "y": 2.1739130434782616, "x2": -8.260869565217392, "y2": 2.4637681159420293, "center_x": -8.405797101449277, "center_y": 2.3188405797101455, "value_uncond": 2.325661072031476e-06}, {"x": -8.26086956521739, "y": 2.1739130434782616, "x2": -7.971014492753623, "y2": 2.4637681159420293, "center_x": -8.115942028985508, "center_y": 2.3188405797101455, "value_uncond": 3.4678919787526597e-06}, {"x": -7.971014492753623, "y": 2.1739130434782616, "x2": -7.681159420289855, "y2": 2.4637681159420293, "center_x": -7.826086956521739, "center_y": 2.3188405797101455, "value_uncond": 5.123072635608127e-06}, {"x": -7.681159420289855, "y": 2.1739130434782616, "x2": -7.391304347826088, "y2": 2.4637681159420293, "center_x": -7.536231884057972, "center_y": 2.3188405797101455, "value_uncond": 7.497928249183951e-06}, {"x": -7.391304347826087, "y": 2.1739130434782616, "x2": -7.101449275362319, "y2": 2.4637681159420293, "center_x": -7.246376811594203, "center_y": 2.3188405797101455, "value_uncond": 1.0871710056732976e-05}, {"x": -7.101449275362318, "y": 2.1739130434782616, "x2": -6.811594202898551, "y2": 2.4637681159420293, "center_x": -6.956521739130435, "center_y": 2.3188405797101455, "value_uncond": 1.5617095184701392e-05}, {"x": -6.811594202898551, "y": 2.1739130434782616, "x2": -6.521739130434783, "y2": 2.4637681159420293, "center_x": -6.666666666666667, "center_y": 2.3188405797101455, "value_uncond": 2.2225342773643506e-05}, {"x": -6.521739130434782, "y": 2.1739130434782616, "x2": -6.231884057971015, "y2": 2.4637681159420293, "center_x": -6.3768115942028984, "center_y": 2.3188405797101455, "value_uncond": 3.133592308708699e-05}, {"x": -6.231884057971014, "y": 2.1739130434782616, "x2": -5.942028985507246, "y2": 2.4637681159420293, "center_x": -6.08695652173913, "center_y": 2.3188405797101455, "value_uncond": 4.377058308288967e-05}, {"x": -5.942028985507246, "y": 2.1739130434782616, "x2": -5.6521739130434785, "y2": 2.4637681159420293, "center_x": -5.797101449275362, "center_y": 2.3188405797101455, "value_uncond": 6.057145220543583e-05}, {"x": -5.6521739130434785, "y": 2.1739130434782616, "x2": -5.362318840579711, "y2": 2.4637681159420293, "center_x": -5.507246376811595, "center_y": 2.3188405797101455, "value_uncond": 8.304231632240589e-05}, {"x": -5.36231884057971, "y": 2.1739130434782616, "x2": -5.072463768115942, "y2": 2.4637681159420293, "center_x": -5.217391304347826, "center_y": 2.3188405797101455, "value_uncond": 0.0001127915948791156}, {"x": -5.0724637681159415, "y": 2.1739130434782616, "x2": -4.782608695652174, "y2": 2.4637681159420293, "center_x": -4.927536231884058, "center_y": 2.3188405797101455, "value_uncond": 0.00015177485801526626}, {"x": -4.782608695652174, "y": 2.1739130434782616, "x2": -4.492753623188406, "y2": 2.4637681159420293, "center_x": -4.63768115942029, "center_y": 2.3188405797101455, "value_uncond": 0.0002023339441467523}, {"x": -4.492753623188405, "y": 2.1739130434782616, "x2": -4.202898550724638, "y2": 2.4637681159420293, "center_x": -4.3478260869565215, "center_y": 2.3188405797101455, "value_uncond": 0.0002672289308507321}, {"x": -4.202898550724638, "y": 2.1739130434782616, "x2": -3.91304347826087, "y2": 2.4637681159420293, "center_x": -4.057971014492754, "center_y": 2.3188405797101455, "value_uncond": 0.00034965843977834024}, {"x": -3.913043478260869, "y": 2.1739130434782616, "x2": -3.6231884057971016, "y2": 2.4637681159420293, "center_x": -3.7681159420289854, "center_y": 2.3188405797101455, "value_uncond": 0.00045326310669087074}, {"x": -3.6231884057971016, "y": 2.1739130434782616, "x2": -3.333333333333334, "y2": 2.4637681159420293, "center_x": -3.4782608695652177, "center_y": 2.3188405797101455, "value_uncond": 0.0005821066242024599}, {"x": -3.333333333333333, "y": 2.1739130434782616, "x2": -3.0434782608695654, "y2": 2.4637681159420293, "center_x": -3.1884057971014492, "center_y": 2.3188405797101455, "value_uncond": 0.0007406286812263477}, {"x": -3.0434782608695645, "y": 2.1739130434782616, "x2": -2.753623188405797, "y2": 2.4637681159420293, "center_x": -2.8985507246376807, "center_y": 2.3188405797101455, "value_uncond": 0.0009335644934976026}, {"x": -2.753623188405797, "y": 2.1739130434782616, "x2": -2.4637681159420293, "y2": 2.4637681159420293, "center_x": -2.608695652173913, "center_y": 2.3188405797101455, "value_uncond": 0.0011658265449969248}, {"x": -2.4637681159420284, "y": 2.1739130434782616, "x2": -2.1739130434782608, "y2": 2.4637681159420293, "center_x": -2.3188405797101446, "center_y": 2.3188405797101455, "value_uncond": 0.0014423457132914212}, {"x": -2.1739130434782608, "y": 2.1739130434782616, "x2": -1.8840579710144931, "y2": 2.4637681159420293, "center_x": -2.028985507246377, "center_y": 2.3188405797101455, "value_uncond": 0.0017678711604345368}, {"x": -1.8840579710144922, "y": 2.1739130434782616, "x2": -1.5942028985507246, "y2": 2.4637681159420293, "center_x": -1.7391304347826084, "center_y": 2.3188405797101455, "value_uncond": 0.002146731202298736}, {"x": -1.5942028985507246, "y": 2.1739130434782616, "x2": -1.304347826086957, "y2": 2.4637681159420293, "center_x": -1.4492753623188408, "center_y": 2.3188405797101455, "value_uncond": 0.0025825607174575303}, {"x": -1.304347826086957, "y": 2.1739130434782616, "x2": -1.0144927536231894, "y2": 2.4637681159420293, "center_x": -1.1594202898550732, "center_y": 2.3188405797101455, "value_uncond": 0.0030780043372240864}, {"x": -1.0144927536231876, "y": 2.1739130434782616, "x2": -0.72463768115942, "y2": 2.4637681159420293, "center_x": -0.8695652173913038, "center_y": 2.3188405797101455, "value_uncond": 0.0036344084090027826}, {"x": -0.72463768115942, "y": 2.1739130434782616, "x2": -0.43478260869565233, "y2": 2.4637681159420293, "center_x": -0.5797101449275361, "center_y": 2.3188405797101455, "value_uncond": 0.004251518217730996}, {"x": -0.43478260869565233, "y": 2.1739130434782616, "x2": -0.1449275362318847, "y2": 2.4637681159420293, "center_x": -0.2898550724637685, "center_y": 2.3188405797101455, "value_uncond": 0.004927199813329617}, {"x": -0.14492753623188293, "y": 2.1739130434782616, "x2": 0.1449275362318847, "y2": 2.4637681159420293, "center_x": 8.881784197001252e-16, "center_y": 2.3188405797101455, "value_uncond": 0.005657207642854213}, {"x": 0.1449275362318847, "y": 2.1739130434782616, "x2": 0.43478260869565233, "y2": 2.4637681159420293, "center_x": 0.2898550724637685, "center_y": 2.3188405797101455, "value_uncond": 0.006435019670291636}, {"x": 0.43478260869565233, "y": 2.1739130434782616, "x2": 0.72463768115942, "y2": 2.4637681159420293, "center_x": 0.5797101449275361, "center_y": 2.3188405797101455, "value_uncond": 0.007251760503493538}, {"x": 0.72463768115942, "y": 2.1739130434782616, "x2": 1.0144927536231876, "y2": 2.4637681159420293, "center_x": 0.8695652173913038, "center_y": 2.3188405797101455, "value_uncond": 0.008096230071792845}, {"x": 1.0144927536231894, "y": 2.1739130434782616, "x2": 1.304347826086957, "y2": 2.4637681159420293, "center_x": 1.1594202898550732, "center_y": 2.3188405797101455, "value_uncond": 0.008955050597924176}, {"x": 1.304347826086957, "y": 2.1739130434782616, "x2": 1.5942028985507246, "y2": 2.4637681159420293, "center_x": 1.4492753623188408, "center_y": 2.3188405797101455, "value_uncond": 0.009812938150338193}, {"x": 1.5942028985507246, "y": 2.1739130434782616, "x2": 1.8840579710144922, "y2": 2.4637681159420293, "center_x": 1.7391304347826084, "center_y": 2.3188405797101455, "value_uncond": 0.010653097298326468}, {"x": 1.884057971014494, "y": 2.1739130434782616, "x2": 2.1739130434782616, "y2": 2.4637681159420293, "center_x": 2.028985507246378, "center_y": 2.3188405797101455, "value_uncond": 0.01145772884562643}, {"x": 2.1739130434782616, "y": 2.1739130434782616, "x2": 2.4637681159420293, "y2": 2.4637681159420293, "center_x": 2.3188405797101455, "center_y": 2.3188405797101455, "value_uncond": 0.012208631947837958}, {"x": 2.4637681159420293, "y": 2.1739130434782616, "x2": 2.753623188405797, "y2": 2.4637681159420293, "center_x": 2.608695652173913, "center_y": 2.3188405797101455, "value_uncond": 0.012887873865860803}, {"x": 2.753623188405797, "y": 2.1739130434782616, "x2": 3.0434782608695645, "y2": 2.4637681159420293, "center_x": 2.8985507246376807, "center_y": 2.3188405797101455, "value_uncond": 0.013478493923514094}, {"x": 3.0434782608695663, "y": 2.1739130434782616, "x2": 3.333333333333334, "y2": 2.4637681159420293, "center_x": 3.18840579710145, "center_y": 2.3188405797101455, "value_uncond": 0.013965203607228947}, {"x": 3.333333333333334, "y": 2.1739130434782616, "x2": 3.6231884057971016, "y2": 2.4637681159420293, "center_x": 3.4782608695652177, "center_y": 2.3188405797101455, "value_uncond": 0.014335042709602577}, {"x": 3.6231884057971016, "y": 2.1739130434782616, "x2": 3.913043478260869, "y2": 2.4637681159420293, "center_x": 3.7681159420289854, "center_y": 2.3188405797101455, "value_uncond": 0.014577952306266703}, {"x": 3.913043478260871, "y": 2.1739130434782616, "x2": 4.202898550724639, "y2": 2.4637681159420293, "center_x": 4.057971014492755, "center_y": 2.3188405797101455, "value_uncond": 0.01468722923886384}, {"x": 4.202898550724639, "y": 2.1739130434782616, "x2": 4.492753623188406, "y2": 2.4637681159420293, "center_x": 4.347826086956522, "center_y": 2.3188405797101455, "value_uncond": 0.014659833449777619}, {"x": 4.492753623188406, "y": 2.1739130434782616, "x2": 4.782608695652174, "y2": 2.4637681159420293, "center_x": 4.63768115942029, "center_y": 2.3188405797101455, "value_uncond": 0.014496528502307806}, {"x": 4.782608695652174, "y": 2.1739130434782616, "x2": 5.0724637681159415, "y2": 2.4637681159420293, "center_x": 4.927536231884058, "center_y": 2.3188405797101455, "value_uncond": 0.014201846221017042}, {"x": 5.072463768115943, "y": 2.1739130434782616, "x2": 5.362318840579711, "y2": 2.4637681159420293, "center_x": 5.217391304347827, "center_y": 2.3188405797101455, "value_uncond": 0.013783877737608382}, {"x": 5.362318840579711, "y": 2.1739130434782616, "x2": 5.6521739130434785, "y2": 2.4637681159420293, "center_x": 5.507246376811595, "center_y": 2.3188405797101455, "value_uncond": 0.013253904389002227}, {"x": 5.6521739130434785, "y": 2.1739130434782616, "x2": 5.942028985507246, "y2": 2.4637681159420293, "center_x": 5.797101449275362, "center_y": 2.3188405797101455, "value_uncond": 0.012625891966458132}, {"x": 5.942028985507246, "y": 2.1739130434782616, "x2": 6.231884057971014, "y2": 2.4637681159420293, "center_x": 6.08695652173913, "center_y": 2.3188405797101455, "value_uncond": 0.011915879949294914}, {"x": 6.2318840579710155, "y": 2.1739130434782616, "x2": 6.521739130434783, "y2": 2.4637681159420293, "center_x": 6.376811594202899, "center_y": 2.3188405797101455, "value_uncond": 0.011141302956296993}, {"x": 6.521739130434785, "y": 2.1739130434782616, "x2": 6.8115942028985526, "y2": 2.4637681159420293, "center_x": 6.666666666666669, "center_y": 2.3188405797101455, "value_uncond": 0.01032028434202024}, {"x": 6.811594202898551, "y": 2.1739130434782616, "x2": 7.101449275362318, "y2": 2.4637681159420293, "center_x": 6.956521739130435, "center_y": 2.3188405797101455, "value_uncond": 0.009470941559540745}, {"x": 7.10144927536232, "y": 2.1739130434782616, "x2": 7.391304347826088, "y2": 2.4637681159420293, "center_x": 7.246376811594204, "center_y": 2.3188405797101455, "value_uncond": 0.008610739784765224}, {"x": 7.391304347826086, "y": 2.1739130434782616, "x2": 7.681159420289854, "y2": 2.4637681159420293, "center_x": 7.53623188405797, "center_y": 2.3188405797101455, "value_uncond": 0.007755924771063552}, {"x": 7.681159420289855, "y": 2.1739130434782616, "x2": 7.971014492753623, "y2": 2.4637681159420293, "center_x": 7.826086956521739, "center_y": 2.3188405797101455, "value_uncond": 0.006921058583596764}, {"x": 7.971014492753625, "y": 2.1739130434782616, "x2": 8.260869565217392, "y2": 2.4637681159420293, "center_x": 8.115942028985508, "center_y": 2.3188405797101455, "value_uncond": 0.006118673471395866}, {"x": 8.26086956521739, "y": 2.1739130434782616, "x2": 8.550724637681158, "y2": 2.4637681159420293, "center_x": 8.405797101449274, "center_y": 2.3188405797101455, "value_uncond": 0.005359050428562672}, {"x": 8.55072463768116, "y": 2.1739130434782616, "x2": 8.840579710144928, "y2": 2.4637681159420293, "center_x": 8.695652173913043, "center_y": 2.3188405797101455, "value_uncond": 0.004650120689912263}, {"x": 8.84057971014493, "y": 2.1739130434782616, "x2": 9.130434782608697, "y2": 2.4637681159420293, "center_x": 8.985507246376812, "center_y": 2.3188405797101455, "value_uncond": 0.003997481111445207}, {"x": 9.130434782608695, "y": 2.1739130434782616, "x2": 9.420289855072463, "y2": 2.4637681159420293, "center_x": 9.275362318840578, "center_y": 2.3188405797101455, "value_uncond": 0.0034045085596694277}, {"x": 9.420289855072465, "y": 2.1739130434782616, "x2": 9.710144927536232, "y2": 2.4637681159420293, "center_x": 9.565217391304348, "center_y": 2.3188405797101455, "value_uncond": 0.0028725543538226468}, {"x": 9.710144927536234, "y": 2.1739130434782616, "x2": 10.000000000000002, "y2": 2.4637681159420293, "center_x": 9.855072463768117, "center_y": 2.3188405797101455, "value_uncond": 0.0024011975647697976}, {"x": 10.0, "y": 2.1739130434782616, "x2": 10.289855072463768, "y2": 2.4637681159420293, "center_x": 10.144927536231883, "center_y": 2.3188405797101455, "value_uncond": 0.001988535497195876}, {"x": -10.0, "y": 2.4637681159420293, "x2": -9.710144927536232, "y2": 2.753623188405797, "center_x": -9.855072463768117, "center_y": 2.608695652173913, "value_uncond": 2.8950244033097844e-07}, {"x": -9.710144927536232, "y": 2.4637681159420293, "x2": -9.420289855072465, "y2": 2.753623188405797, "center_x": -9.565217391304348, "center_y": 2.608695652173913, "value_uncond": 4.523163576062548e-07}, {"x": -9.420289855072463, "y": 2.4637681159420293, "x2": -9.130434782608695, "y2": 2.753623188405797, "center_x": -9.275362318840578, "center_y": 2.608695652173913, "value_uncond": 7.001291716807186e-07}, {"x": -9.130434782608695, "y": 2.4637681159420293, "x2": -8.840579710144928, "y2": 2.753623188405797, "center_x": -8.985507246376812, "center_y": 2.608695652173913, "value_uncond": 1.0736429271894232e-06}, {"x": -8.840579710144928, "y": 2.4637681159420293, "x2": -8.55072463768116, "y2": 2.753623188405797, "center_x": -8.695652173913043, "center_y": 2.608695652173913, "value_uncond": 1.6311254954406947e-06}, {"x": -8.55072463768116, "y": 2.4637681159420293, "x2": -8.260869565217392, "y2": 2.753623188405797, "center_x": -8.405797101449277, "center_y": 2.608695652173913, "value_uncond": 2.455052022138501e-06}, {"x": -8.26086956521739, "y": 2.4637681159420293, "x2": -7.971014492753623, "y2": 2.753623188405797, "center_x": -8.115942028985508, "center_y": 2.608695652173913, "value_uncond": 3.660832318768493e-06}, {"x": -7.971014492753623, "y": 2.4637681159420293, "x2": -7.681159420289855, "y2": 2.753623188405797, "center_x": -7.826086956521739, "center_y": 2.608695652173913, "value_uncond": 5.4081009416499825e-06}, {"x": -7.681159420289855, "y": 2.4637681159420293, "x2": -7.391304347826088, "y2": 2.753623188405797, "center_x": -7.536231884057972, "center_y": 2.608695652173913, "value_uncond": 7.915084502802953e-06}, {"x": -7.391304347826087, "y": 2.4637681159420293, "x2": -7.101449275362319, "y2": 2.753623188405797, "center_x": -7.246376811594203, "center_y": 2.608695652173913, "value_uncond": 1.1476570717835243e-05}, {"x": -7.101449275362318, "y": 2.4637681159420293, "x2": -6.811594202898551, "y2": 2.753623188405797, "center_x": -6.956521739130435, "center_y": 2.608695652173913, "value_uncond": 1.6485971053228203e-05}, {"x": -6.811594202898551, "y": 2.4637681159420293, "x2": -6.521739130434783, "y2": 2.753623188405797, "center_x": -6.666666666666667, "center_y": 2.608695652173913, "value_uncond": 2.346187644250868e-05}, {"x": -6.521739130434782, "y": 2.4637681159420293, "x2": -6.231884057971015, "y2": 2.753623188405797, "center_x": -6.3768115942028984, "center_y": 2.608695652173913, "value_uncond": 3.3079334846211935e-05}, {"x": -6.231884057971014, "y": 2.4637681159420293, "x2": -5.942028985507246, "y2": 2.753623188405797, "center_x": -6.08695652173913, "center_y": 2.608695652173913, "value_uncond": 4.62058121022611e-05}, {"x": -5.942028985507246, "y": 2.4637681159420293, "x2": -5.6521739130434785, "y2": 2.753623188405797, "center_x": -5.797101449275362, "center_y": 2.608695652173913, "value_uncond": 6.394141777973059e-05}, {"x": -5.6521739130434785, "y": 2.4637681159420293, "x2": -5.362318840579711, "y2": 2.753623188405797, "center_x": -5.507246376811595, "center_y": 2.608695652173913, "value_uncond": 8.766247544071558e-05}, {"x": -5.36231884057971, "y": 2.4637681159420293, "x2": -5.072463768115942, "y2": 2.753623188405797, "center_x": -5.217391304347826, "center_y": 2.608695652173913, "value_uncond": 0.00011906689088032833}, {"x": -5.0724637681159415, "y": 2.4637681159420293, "x2": -4.782608695652174, "y2": 2.753623188405797, "center_x": -4.927536231884058, "center_y": 2.608695652173913, "value_uncond": 0.00016021903473436135}, {"x": -4.782608695652174, "y": 2.4637681159420293, "x2": -4.492753623188406, "y2": 2.753623188405797, "center_x": -4.63768115942029, "center_y": 2.608695652173913, "value_uncond": 0.00021359103641479342}, {"x": -4.492753623188405, "y": 2.4637681159420293, "x2": -4.202898550724638, "y2": 2.753623188405797, "center_x": -4.3478260869565215, "center_y": 2.608695652173913, "value_uncond": 0.0002820965337334932}, {"x": -4.202898550724638, "y": 2.4637681159420293, "x2": -3.91304347826087, "y2": 2.753623188405797, "center_x": -4.057971014492754, "center_y": 2.608695652173913, "value_uncond": 0.0003691121075031647}, {"x": -3.913043478260869, "y": 2.4637681159420293, "x2": -3.6231884057971016, "y2": 2.753623188405797, "center_x": -3.7681159420289854, "center_y": 2.608695652173913, "value_uncond": 0.0004784809446331656}, {"x": -3.6231884057971016, "y": 2.4637681159420293, "x2": -3.333333333333334, "y2": 2.753623188405797, "center_x": -3.4782608695652177, "center_y": 2.608695652173913, "value_uncond": 0.0006144928261623858}, {"x": -3.333333333333333, "y": 2.4637681159420293, "x2": -3.0434782608695654, "y2": 2.753623188405797, "center_x": -3.1884057971014492, "center_y": 2.608695652173913, "value_uncond": 0.0007818344484350156}, {"x": -3.0434782608695645, "y": 2.4637681159420293, "x2": -2.753623188405797, "y2": 2.753623188405797, "center_x": -2.8985507246376807, "center_y": 2.608695652173913, "value_uncond": 0.0009855044766071462}, {"x": -2.753623188405797, "y": 2.4637681159420293, "x2": -2.4637681159420293, "y2": 2.753623188405797, "center_x": -2.608695652173913, "center_y": 2.608695652173913, "value_uncond": 0.001230688706612493}, {"x": -2.4637681159420284, "y": 2.4637681159420293, "x2": -2.1739130434782608, "y2": 2.753623188405797, "center_x": -2.3188405797101446, "center_y": 2.608695652173913, "value_uncond": 0.0015225923513204752}, {"x": -2.1739130434782608, "y": 2.4637681159420293, "x2": -1.8840579710144931, "y2": 2.753623188405797, "center_x": -2.028985507246377, "center_y": 2.608695652173913, "value_uncond": 0.001866228798125751}, {"x": -1.8840579710144922, "y": 2.4637681159420293, "x2": -1.5942028985507246, "y2": 2.753623188405797, "center_x": -1.7391304347826084, "center_y": 2.608695652173913, "value_uncond": 0.0022661671739586985}, {"x": -1.5942028985507246, "y": 2.4637681159420293, "x2": -1.304347826086957, "y2": 2.753623188405797, "center_x": -1.4492753623188408, "center_y": 2.608695652173913, "value_uncond": 0.002726244588232826}, {"x": -1.304347826086957, "y": 2.4637681159420293, "x2": -1.0144927536231894, "y2": 2.753623188405797, "center_x": -1.1594202898550732, "center_y": 2.608695652173913, "value_uncond": 0.003249252809504304}, {"x": -1.0144927536231876, "y": 2.4637681159420293, "x2": -0.72463768115942, "y2": 2.753623188405797, "center_x": -0.8695652173913038, "center_y": 2.608695652173913, "value_uncond": 0.0038366130908341948}, {"x": -0.72463768115942, "y": 2.4637681159420293, "x2": -0.43478260869565233, "y2": 2.753623188405797, "center_x": -0.5797101449275361, "center_y": 2.608695652173913, "value_uncond": 0.004488056545781097}, {"x": -0.43478260869565233, "y": 2.4637681159420293, "x2": -0.1449275362318847, "y2": 2.753623188405797, "center_x": -0.2898550724637685, "center_y": 2.608695652173913, "value_uncond": 0.005201330499387401}, {"x": -0.14492753623188293, "y": 2.4637681159420293, "x2": 0.1449275362318847, "y2": 2.753623188405797, "center_x": 8.881784197001252e-16, "center_y": 2.608695652173913, "value_uncond": 0.005971953192265772}, {"x": 0.1449275362318847, "y": 2.4637681159420293, "x2": 0.43478260869565233, "y2": 2.753623188405797, "center_x": 0.2898550724637685, "center_y": 2.608695652173913, "value_uncond": 0.006793039727087407}, {"x": 0.43478260869565233, "y": 2.4637681159420293, "x2": 0.72463768115942, "y2": 2.753623188405797, "center_x": 0.5797101449275361, "center_y": 2.608695652173913, "value_uncond": 0.007655220918590051}, {"x": 0.72463768115942, "y": 2.4637681159420293, "x2": 1.0144927536231876, "y2": 2.753623188405797, "center_x": 0.8695652173913038, "center_y": 2.608695652173913, "value_uncond": 0.008546673566708152}, {"x": 1.0144927536231894, "y": 2.4637681159420293, "x2": 1.304347826086957, "y2": 2.753623188405797, "center_x": 1.1594202898550732, "center_y": 2.608695652173913, "value_uncond": 0.00945327560545279}, {"x": 1.304347826086957, "y": 2.4637681159420293, "x2": 1.5942028985507246, "y2": 2.753623188405797, "center_x": 1.4492753623188408, "center_y": 2.608695652173913, "value_uncond": 0.010358892763365544}, {"x": 1.5942028985507246, "y": 2.4637681159420293, "x2": 1.8840579710144922, "y2": 2.753623188405797, "center_x": 1.7391304347826084, "center_y": 2.608695652173913, "value_uncond": 0.011245795175755779}, {"x": 1.884057971014494, "y": 2.4637681159420293, "x2": 2.1739130434782616, "y2": 2.753623188405797, "center_x": 2.028985507246378, "center_y": 2.608695652173913, "value_uncond": 0.012095193366675175}, {"x": 2.1739130434782616, "y": 2.4637681159420293, "x2": 2.4637681159420293, "y2": 2.753623188405797, "center_x": 2.3188405797101455, "center_y": 2.608695652173913, "value_uncond": 0.012887873865860803}, {"x": 2.4637681159420293, "y": 2.4637681159420293, "x2": 2.753623188405797, "y2": 2.753623188405797, "center_x": 2.608695652173913, "center_y": 2.608695652173913, "value_uncond": 0.013604906224710313}, {"x": 2.753623188405797, "y": 2.4637681159420293, "x2": 3.0434782608695645, "y2": 2.753623188405797, "center_x": 2.8985507246376807, "center_y": 2.608695652173913, "value_uncond": 0.014228386139430085}, {"x": 3.0434782608695663, "y": 2.4637681159420293, "x2": 3.333333333333334, "y2": 2.753623188405797, "center_x": 3.18840579710145, "center_y": 2.608695652173913, "value_uncond": 0.014742174501615976}, {"x": 3.333333333333334, "y": 2.4637681159420293, "x2": 3.6231884057971016, "y2": 2.753623188405797, "center_x": 3.4782608695652177, "center_y": 2.608695652173913, "value_uncond": 0.01513259004714306}, {"x": 3.6231884057971016, "y": 2.4637681159420293, "x2": 3.913043478260869, "y2": 2.753623188405797, "center_x": 3.7681159420289854, "center_y": 2.608695652173913, "value_uncond": 0.015389014211291014}, {"x": 3.913043478260871, "y": 2.4637681159420293, "x2": 4.202898550724639, "y2": 2.753623188405797, "center_x": 4.057971014492755, "center_y": 2.608695652173913, "value_uncond": 0.015504370897427292}, {"x": 4.202898550724639, "y": 2.4637681159420293, "x2": 4.492753623188406, "y2": 2.753623188405797, "center_x": 4.347826086956522, "center_y": 2.608695652173913, "value_uncond": 0.015475450910674683}, {"x": 4.492753623188406, "y": 2.4637681159420293, "x2": 4.782608695652174, "y2": 2.753623188405797, "center_x": 4.63768115942029, "center_y": 2.608695652173913, "value_uncond": 0.015303060296095244}, {"x": 4.782608695652174, "y": 2.4637681159420293, "x2": 5.0724637681159415, "y2": 2.753623188405797, "center_x": 4.927536231884058, "center_y": 2.608695652173913, "value_uncond": 0.014991983011760199}, {"x": 5.072463768115943, "y": 2.4637681159420293, "x2": 5.362318840579711, "y2": 2.753623188405797, "center_x": 5.217391304347827, "center_y": 2.608695652173913, "value_uncond": 0.014550760349213649}, {"x": 5.362318840579711, "y": 2.4637681159420293, "x2": 5.6521739130434785, "y2": 2.753623188405797, "center_x": 5.507246376811595, "center_y": 2.608695652173913, "value_uncond": 0.013991301296120189}, {"x": 5.6521739130434785, "y": 2.4637681159420293, "x2": 5.942028985507246, "y2": 2.753623188405797, "center_x": 5.797101449275362, "center_y": 2.608695652173913, "value_uncond": 0.013328348647328502}, {"x": 5.942028985507246, "y": 2.4637681159420293, "x2": 6.231884057971014, "y2": 2.753623188405797, "center_x": 6.08695652173913, "center_y": 2.608695652173913, "value_uncond": 0.012578834257875109}, {"x": 6.2318840579710155, "y": 2.4637681159420293, "x2": 6.521739130434783, "y2": 2.753623188405797, "center_x": 6.376811594202899, "center_y": 2.608695652173913, "value_uncond": 0.011761162742523812}, {"x": 6.521739130434785, "y": 2.4637681159420293, "x2": 6.8115942028985526, "y2": 2.753623188405797, "center_x": 6.666666666666669, "center_y": 2.608695652173913, "value_uncond": 0.010894465770452633}, {"x": 6.811594202898551, "y": 2.4637681159420293, "x2": 7.101449275362318, "y2": 2.753623188405797, "center_x": 6.956521739130435, "center_y": 2.608695652173913, "value_uncond": 0.0099978687810239}, {"x": 7.10144927536232, "y": 2.4637681159420293, "x2": 7.391304347826088, "y2": 2.753623188405797, "center_x": 7.246376811594204, "center_y": 2.608695652173913, "value_uncond": 0.009089808646205944}, {"x": 7.391304347826086, "y": 2.4637681159420293, "x2": 7.681159420289854, "y2": 2.753623188405797, "center_x": 7.53623188405797, "center_y": 2.608695652173913, "value_uncond": 0.0081874349713912}, {"x": 7.681159420289855, "y": 2.4637681159420293, "x2": 7.971014492753623, "y2": 2.753623188405797, "center_x": 7.826086956521739, "center_y": 2.608695652173913, "value_uncond": 0.007306119999745298}, {"x": 7.971014492753625, "y": 2.4637681159420293, "x2": 8.260869565217392, "y2": 2.753623188405797, "center_x": 8.115942028985508, "center_y": 2.608695652173913, "value_uncond": 0.006459093227042803}, {"x": 8.26086956521739, "y": 2.4637681159420293, "x2": 8.550724637681158, "y2": 2.753623188405797, "center_x": 8.405797101449274, "center_y": 2.608695652173913, "value_uncond": 0.005657207642854211}, {"x": 8.55072463768116, "y": 2.4637681159420293, "x2": 8.840579710144928, "y2": 2.753623188405797, "center_x": 8.695652173913043, "center_y": 2.608695652173913, "value_uncond": 0.004908835745780014}, {"x": 8.84057971014493, "y": 2.4637681159420293, "x2": 9.130434782608697, "y2": 2.753623188405797, "center_x": 8.985507246376812, "center_y": 2.608695652173913, "value_uncond": 0.004219885779634011}, {"x": 9.130434782608695, "y": 2.4637681159420293, "x2": 9.420289855072463, "y2": 2.753623188405797, "center_x": 9.275362318840578, "center_y": 2.608695652173913, "value_uncond": 0.0035939224869526204}, {"x": 9.420289855072465, "y": 2.4637681159420293, "x2": 9.710144927536232, "y2": 2.753623188405797, "center_x": 9.565217391304348, "center_y": 2.608695652173913, "value_uncond": 0.003032372369244177}, {"x": 9.710144927536234, "y": 2.4637681159420293, "x2": 10.000000000000002, "y2": 2.753623188405797, "center_x": 9.855072463768117, "center_y": 2.608695652173913, "value_uncond": 0.0025347910784750617}, {"x": 10.0, "y": 2.4637681159420293, "x2": 10.289855072463768, "y2": 2.753623188405797, "center_x": 10.144927536231883, "center_y": 2.608695652173913, "value_uncond": 0.002099170060588627}, {"x": -10.0, "y": 2.753623188405797, "x2": -9.710144927536232, "y2": 3.0434782608695645, "center_x": -9.855072463768117, "center_y": 2.8985507246376807, "value_uncond": 3.027696362842212e-07}, {"x": -9.710144927536232, "y": 2.753623188405797, "x2": -9.420289855072465, "y2": 3.0434782608695645, "center_x": -9.565217391304348, "center_y": 2.8985507246376807, "value_uncond": 4.7304492121476363e-07}, {"x": -9.420289855072463, "y": 2.753623188405797, "x2": -9.130434782608695, "y2": 3.0434782608695645, "center_x": -9.275362318840578, "center_y": 2.8985507246376807, "value_uncond": 7.322143966019667e-07}, {"x": -9.130434782608695, "y": 2.753623188405797, "x2": -8.840579710144928, "y2": 3.0434782608695645, "center_x": -8.985507246376812, "center_y": 2.8985507246376807, "value_uncond": 1.1228453832466169e-06}, {"x": -8.840579710144928, "y": 2.753623188405797, "x2": -8.55072463768116, "y2": 3.0434782608695645, "center_x": -8.695652173913043, "center_y": 2.8985507246376807, "value_uncond": 1.7058760279322381e-06}, {"x": -8.55072463768116, "y": 2.753623188405797, "x2": -8.260869565217392, "y2": 3.0434782608695645, "center_x": -8.405797101449277, "center_y": 2.8985507246376807, "value_uncond": 2.567561112617595e-06}, {"x": -8.26086956521739, "y": 2.753623188405797, "x2": -7.971014492753623, "y2": 3.0434782608695645, "center_x": -8.115942028985508, "center_y": 2.8985507246376807, "value_uncond": 3.828599401040885e-06}, {"x": -7.971014492753623, "y": 2.753623188405797, "x2": -7.681159420289855, "y2": 3.0434782608695645, "center_x": -7.826086956521739, "center_y": 2.8985507246376807, "value_uncond": 5.65594111476133e-06}, {"x": -7.681159420289855, "y": 2.753623188405797, "x2": -7.391304347826088, "y2": 3.0434782608695645, "center_x": -7.536231884057972, "center_y": 2.8985507246376807, "value_uncond": 8.277813663099864e-06}, {"x": -7.391304347826087, "y": 2.753623188405797, "x2": -7.101449275362319, "y2": 3.0434782608695645, "center_x": -7.246376811594203, "center_y": 2.8985507246376807, "value_uncond": 1.2002514168987824e-05}, {"x": -7.101449275362318, "y": 2.753623188405797, "x2": -6.811594202898551, "y2": 3.0434782608695645, "center_x": -6.956521739130435, "center_y": 2.8985507246376807, "value_uncond": 1.7241483193963902e-05}, {"x": -6.811594202898551, "y": 2.753623188405797, "x2": -6.521739130434783, "y2": 3.0434782608695645, "center_x": -6.666666666666667, "center_y": 2.8985507246376807, "value_uncond": 2.4537077438526764e-05}, {"x": -6.521739130434782, "y": 2.753623188405797, "x2": -6.231884057971015, "y2": 3.0434782608695645, "center_x": -6.3768115942028984, "center_y": 2.8985507246376807, "value_uncond": 3.459528067694787e-05}, {"x": -6.231884057971014, "y": 2.753623188405797, "x2": -5.942028985507246, "y2": 3.0434782608695645, "center_x": -6.08695652173913, "center_y": 2.8985507246376807, "value_uncond": 4.832331260636244e-05}, {"x": -5.942028985507246, "y": 2.753623188405797, "x2": -5.6521739130434785, "y2": 3.0434782608695645, "center_x": -5.797101449275362, "center_y": 2.8985507246376807, "value_uncond": 6.687169815402376e-05}, {"x": -5.6521739130434785, "y": 2.753623188405797, "x2": -5.362318840579711, "y2": 3.0434782608695645, "center_x": -5.507246376811595, "center_y": 2.8985507246376807, "value_uncond": 9.167983445879034e-05}, {"x": -5.36231884057971, "y": 2.753623188405797, "x2": -5.072463768115942, "y2": 3.0434782608695645, "center_x": -5.217391304347826, "center_y": 2.8985507246376807, "value_uncond": 0.00012452343822772443}, {"x": -5.0724637681159415, "y": 2.753623188405797, "x2": -4.782608695652174, "y2": 3.0434782608695645, "center_x": -4.927536231884058, "center_y": 2.8985507246376807, "value_uncond": 0.00016756148520500328}, {"x": -4.782608695652174, "y": 2.753623188405797, "x2": -4.492753623188406, "y2": 3.0434782608695645, "center_x": -4.63768115942029, "center_y": 2.8985507246376807, "value_uncond": 0.0002233793965085168}, {"x": -4.492753623188405, "y": 2.753623188405797, "x2": -4.202898550724638, "y2": 3.0434782608695645, "center_x": -4.3478260869565215, "center_y": 2.8985507246376807, "value_uncond": 0.000295024334917117}, {"x": -4.202898550724638, "y": 2.753623188405797, "x2": -3.91304347826087, "y2": 3.0434782608695645, "center_x": -4.057971014492754, "center_y": 2.8985507246376807, "value_uncond": 0.0003860276217674322}, {"x": -3.913043478260869, "y": 2.753623188405797, "x2": -3.6231884057971016, "y2": 3.0434782608695645, "center_x": -3.7681159420289854, "center_y": 2.8985507246376807, "value_uncond": 0.0005004085679204973}, {"x": -3.6231884057971016, "y": 2.753623188405797, "x2": -3.333333333333334, "y2": 3.0434782608695645, "center_x": -3.4782608695652177, "center_y": 2.8985507246376807, "value_uncond": 0.0006426535446946294}, {"x": -3.333333333333333, "y": 2.753623188405797, "x2": -3.0434782608695654, "y2": 3.0434782608695645, "center_x": -3.1884057971014492, "center_y": 2.8985507246376807, "value_uncond": 0.0008176640283809533}, {"x": -3.0434782608695645, "y": 2.753623188405797, "x2": -2.753623188405797, "y2": 3.0434782608695645, "center_x": -2.8985507246376807, "center_y": 2.8985507246376807, "value_uncond": 0.001030667760857866}, {"x": -2.753623188405797, "y": 2.753623188405797, "x2": -2.4637681159420293, "y2": 3.0434782608695645, "center_x": -2.608695652173913, "center_y": 2.8985507246376807, "value_uncond": 0.001287088190531882}, {"x": -2.4637681159420284, "y": 2.753623188405797, "x2": -2.1739130434782608, "y2": 3.0434782608695645, "center_x": -2.3188405797101446, "center_y": 2.8985507246376807, "value_uncond": 0.001592369072576375}, {"x": -2.1739130434782608, "y": 2.753623188405797, "x2": -1.8840579710144931, "y2": 3.0434782608695645, "center_x": -2.028985507246377, "center_y": 2.8985507246376807, "value_uncond": 0.00195175354579286}, {"x": -1.8840579710144922, "y": 2.753623188405797, "x2": -1.5942028985507246, "y2": 3.0434782608695645, "center_x": -1.7391304347826084, "center_y": 2.8985507246376807, "value_uncond": 0.0023700201291370505}, {"x": -1.5942028985507246, "y": 2.753623188405797, "x2": -1.304347826086957, "y2": 3.0434782608695645, "center_x": -1.4492753623188408, "center_y": 2.8985507246376807, "value_uncond": 0.0028511817774572105}, {"x": -1.304347826086957, "y": 2.753623188405797, "x2": -1.0144927536231894, "y2": 3.0434782608695645, "center_x": -1.1594202898550732, "center_y": 2.8985507246376807, "value_uncond": 0.0033981581993035538}, {"x": -1.0144927536231876, "y": 2.753623188405797, "x2": -0.72463768115942, "y2": 3.0434782608695645, "center_x": -0.8695652173913038, "center_y": 2.8985507246376807, "value_uncond": 0.004012435780324067}, {"x": -0.72463768115942, "y": 2.753623188405797, "x2": -0.43478260869565233, "y2": 3.0434782608695645, "center_x": -0.5797101449275361, "center_y": 2.8985507246376807, "value_uncond": 0.004693733311662716}, {"x": -0.43478260869565233, "y": 2.753623188405797, "x2": -0.1449275362318847, "y2": 3.0434782608695645, "center_x": -0.2898550724637685, "center_y": 2.8985507246376807, "value_uncond": 0.005439694883722322}, {"x": -0.14492753623188293, "y": 2.753623188405797, "x2": 0.1449275362318847, "y2": 3.0434782608695645, "center_x": 8.881784197001252e-16, "center_y": 2.8985507246376807, "value_uncond": 0.006245633348933196}, {"x": 0.1449275362318847, "y": 2.753623188405797, "x2": 0.43478260869565233, "y2": 3.0434782608695645, "center_x": 0.2898550724637685, "center_y": 2.8985507246376807, "value_uncond": 0.007104348291790332}, {"x": 0.43478260869565233, "y": 2.753623188405797, "x2": 0.72463768115942, "y2": 3.0434782608695645, "center_x": 0.5797101449275361, "center_y": 2.8985507246376807, "value_uncond": 0.008006041159953762}, {"x": 0.72463768115942, "y": 2.753623188405797, "x2": 1.0144927536231876, "y2": 3.0434782608695645, "center_x": 0.8695652173913038, "center_y": 2.8985507246376807, "value_uncond": 0.008938346924722965}, {"x": 1.0144927536231894, "y": 2.753623188405797, "x2": 1.304347826086957, "y2": 3.0434782608695645, "center_x": 1.1594202898550732, "center_y": 2.8985507246376807, "value_uncond": 0.009886496340014353}, {"x": 1.304347826086957, "y": 2.753623188405797, "x2": 1.5942028985507246, "y2": 3.0434782608695645, "center_x": 1.4492753623188408, "center_y": 2.8985507246376807, "value_uncond": 0.010833615739769736}, {"x": 1.5942028985507246, "y": 2.753623188405797, "x2": 1.8840579710144922, "y2": 3.0434782608695645, "center_x": 1.7391304347826084, "center_y": 2.8985507246376807, "value_uncond": 0.011761162742523815}, {"x": 1.884057971014494, "y": 2.753623188405797, "x2": 2.1739130434782616, "y2": 3.0434782608695645, "center_x": 2.028985507246378, "center_y": 2.8985507246376807, "value_uncond": 0.012649486796134986}, {"x": 2.1739130434782616, "y": 2.753623188405797, "x2": 2.4637681159420293, "y2": 3.0434782608695645, "center_x": 2.3188405797101455, "center_y": 2.8985507246376807, "value_uncond": 0.013478493923514094}, {"x": 2.4637681159420293, "y": 2.753623188405797, "x2": 2.753623188405797, "y2": 3.0434782608695645, "center_x": 2.608695652173913, "center_y": 2.8985507246376807, "value_uncond": 0.014228386139430085}, {"x": 2.753623188405797, "y": 2.753623188405797, "x2": 3.0434782608695645, "y2": 3.0434782608695645, "center_x": 2.8985507246376807, "center_y": 2.8985507246376807, "value_uncond": 0.01488043862919289}, {"x": 3.0434782608695663, "y": 2.753623188405797, "x2": 3.333333333333334, "y2": 3.0434782608695645, "center_x": 3.18840579710145, "center_y": 2.8985507246376807, "value_uncond": 0.015417772668133087}, {"x": 3.333333333333334, "y": 2.753623188405797, "x2": 3.6231884057971016, "y2": 3.0434782608695645, "center_x": 3.4782608695652177, "center_y": 2.8985507246376807, "value_uncond": 0.015826080012913326}, {"x": 3.6231884057971016, "y": 2.753623188405797, "x2": 3.913043478260869, "y2": 3.0434782608695645, "center_x": 3.7681159420289854, "center_y": 2.8985507246376807, "value_uncond": 0.016094255475699756}, {"x": 3.913043478260871, "y": 2.753623188405797, "x2": 4.202898550724639, "y2": 3.0434782608695645, "center_x": 4.057971014492755, "center_y": 2.8985507246376807, "value_uncond": 0.01621489867948244}, {"x": 4.202898550724639, "y": 2.753623188405797, "x2": 4.492753623188406, "y2": 3.0434782608695645, "center_x": 4.347826086956522, "center_y": 2.8985507246376807, "value_uncond": 0.01618465335975242}, {"x": 4.492753623188406, "y": 2.753623188405797, "x2": 4.782608695652174, "y2": 3.0434782608695645, "center_x": 4.63768115942029, "center_y": 2.8985507246376807, "value_uncond": 0.016004362500665503}, {"x": 4.782608695652174, "y": 2.753623188405797, "x2": 5.0724637681159415, "y2": 3.0434782608695645, "center_x": 4.927536231884058, "center_y": 2.8985507246376807, "value_uncond": 0.015679029297509334}, {"x": 5.072463768115943, "y": 2.753623188405797, "x2": 5.362318840579711, "y2": 3.0434782608695645, "center_x": 5.217391304347827, "center_y": 2.8985507246376807, "value_uncond": 0.01521758646854096}, {"x": 5.362318840579711, "y": 2.753623188405797, "x2": 5.6521739130434785, "y2": 3.0434782608695645, "center_x": 5.507246376811595, "center_y": 2.8985507246376807, "value_uncond": 0.014632488761497914}, {"x": 5.6521739130434785, "y": 2.753623188405797, "x2": 5.942028985507246, "y2": 3.0434782608695645, "center_x": 5.797101449275362, "center_y": 2.8985507246376807, "value_uncond": 0.013939154597824402}, {"x": 5.942028985507246, "y": 2.753623188405797, "x2": 6.231884057971014, "y2": 3.0434782608695645, "center_x": 6.08695652173913, "center_y": 2.8985507246376807, "value_uncond": 0.013155291778481145}, {"x": 6.2318840579710155, "y": 2.753623188405797, "x2": 6.521739130434783, "y2": 3.0434782608695645, "center_x": 6.376811594202899, "center_y": 2.8985507246376807, "value_uncond": 0.012300148357168889}, {"x": 6.521739130434785, "y": 2.753623188405797, "x2": 6.8115942028985526, "y2": 3.0434782608695645, "center_x": 6.666666666666669, "center_y": 2.8985507246376807, "value_uncond": 0.011393732761146198}, {"x": 6.811594202898551, "y": 2.753623188405797, "x2": 7.101449275362318, "y2": 3.0434782608695645, "center_x": 6.956521739130435, "center_y": 2.8985507246376807, "value_uncond": 0.010456046902358577}, {"x": 7.10144927536232, "y": 2.753623188405797, "x2": 7.391304347826088, "y2": 3.0434782608695645, "center_x": 7.246376811594204, "center_y": 2.8985507246376807, "value_uncond": 0.00950637256998089}, {"x": 7.391304347826086, "y": 2.753623188405797, "x2": 7.681159420289854, "y2": 3.0434782608695645, "center_x": 7.53623188405797, "center_y": 2.8985507246376807, "value_uncond": 0.008562645294301409}, {"x": 7.681159420289855, "y": 2.753623188405797, "x2": 7.971014492753623, "y2": 3.0434782608695645, "center_x": 7.826086956521739, "center_y": 2.8985507246376807, "value_uncond": 0.00764094179117375}, {"x": 7.971014492753625, "y": 2.753623188405797, "x2": 8.260869565217392, "y2": 3.0434782608695645, "center_x": 8.115942028985508, "center_y": 2.8985507246376807, "value_uncond": 0.0067550978321351445}, {"x": 8.26086956521739, "y": 2.753623188405797, "x2": 8.550724637681158, "y2": 3.0434782608695645, "center_x": 8.405797101449274, "center_y": 2.8985507246376807, "value_uncond": 0.005916463772992945}, {"x": 8.55072463768116, "y": 2.753623188405797, "x2": 8.840579710144928, "y2": 3.0434782608695645, "center_x": 8.695652173913043, "center_y": 2.8985507246376807, "value_uncond": 0.0051337958036886434}, {"x": 8.84057971014493, "y": 2.753623188405797, "x2": 9.130434782608697, "y2": 3.0434782608695645, "center_x": 8.985507246376812, "center_y": 2.8985507246376807, "value_uncond": 0.004413272928546124}, {"x": 9.130434782608695, "y": 2.753623188405797, "x2": 9.420289855072463, "y2": 3.0434782608695645, "center_x": 9.275362318840578, "center_y": 2.8985507246376807, "value_uncond": 0.0037586232536219915}, {"x": 9.420289855072465, "y": 2.753623188405797, "x2": 9.710144927536232, "y2": 3.0434782608695645, "center_x": 9.565217391304348, "center_y": 2.8985507246376807, "value_uncond": 0.003171338653535138}, {"x": 9.710144927536234, "y": 2.753623188405797, "x2": 10.000000000000002, "y2": 3.0434782608695645, "center_x": 9.855072463768117, "center_y": 2.8985507246376807, "value_uncond": 0.002650954416857331}, {"x": 10.0, "y": 2.753623188405797, "x2": 10.289855072463768, "y2": 3.0434782608695645, "center_x": 10.144927536231883, "center_y": 2.8985507246376807, "value_uncond": 0.0021953699423622308}, {"x": -10.0, "y": 3.0434782608695663, "x2": -9.710144927536232, "y2": 3.333333333333334, "center_x": -9.855072463768117, "center_y": 3.18840579710145, "value_uncond": 3.137026763368097e-07}, {"x": -9.710144927536232, "y": 3.0434782608695663, "x2": -9.420289855072465, "y2": 3.333333333333334, "center_x": -9.565217391304348, "center_y": 3.18840579710145, "value_uncond": 4.901266178267039e-07}, {"x": -9.420289855072463, "y": 3.0434782608695663, "x2": -9.130434782608695, "y2": 3.333333333333334, "center_x": -9.275362318840578, "center_y": 3.18840579710145, "value_uncond": 7.586547273543421e-07}, {"x": -9.130434782608695, "y": 3.0434782608695663, "x2": -8.840579710144928, "y2": 3.333333333333334, "center_x": -8.985507246376812, "center_y": 3.18840579710145, "value_uncond": 1.1633914356796134e-06}, {"x": -8.840579710144928, "y": 3.0434782608695663, "x2": -8.55072463768116, "y2": 3.333333333333334, "center_x": -8.695652173913043, "center_y": 3.18840579710145, "value_uncond": 1.7674753717998176e-06}, {"x": -8.55072463768116, "y": 3.0434782608695663, "x2": -8.260869565217392, "y2": 3.333333333333334, "center_x": -8.405797101449277, "center_y": 3.18840579710145, "value_uncond": 2.6602759859656123e-06}, {"x": -8.26086956521739, "y": 3.0434782608695663, "x2": -7.971014492753623, "y2": 3.333333333333334, "center_x": -8.115942028985508, "center_y": 3.18840579710145, "value_uncond": 3.966850485629838e-06}, {"x": -7.971014492753623, "y": 3.0434782608695663, "x2": -7.681159420289855, "y2": 3.333333333333334, "center_x": -7.826086956521739, "center_y": 3.18840579710145, "value_uncond": 5.860177680559899e-06}, {"x": -7.681159420289855, "y": 3.0434782608695663, "x2": -7.391304347826088, "y2": 3.333333333333334, "center_x": -7.536231884057972, "center_y": 3.18840579710145, "value_uncond": 8.57672629330027e-06}, {"x": -7.391304347826087, "y": 3.0434782608695663, "x2": -7.101449275362319, "y2": 3.333333333333334, "center_x": -7.246376811594203, "center_y": 3.18840579710145, "value_uncond": 1.2435926084897789e-05}, {"x": -7.101449275362318, "y": 3.0434782608695663, "x2": -6.811594202898551, "y2": 3.333333333333334, "center_x": -6.956521739130435, "center_y": 3.18840579710145, "value_uncond": 1.7864074774279074e-05}, {"x": -6.811594202898551, "y": 3.0434782608695663, "x2": -6.521739130434783, "y2": 3.333333333333334, "center_x": -6.666666666666667, "center_y": 3.18840579710145, "value_uncond": 2.542311361342594e-05}, {"x": -6.521739130434782, "y": 3.0434782608695663, "x2": -6.231884057971015, "y2": 3.333333333333334, "center_x": -6.3768115942028984, "center_y": 3.18840579710145, "value_uncond": 3.5844519517121926e-05}, {"x": -6.231884057971014, "y": 3.0434782608695663, "x2": -5.942028985507246, "y2": 3.333333333333334, "center_x": -6.08695652173913, "center_y": 3.18840579710145, "value_uncond": 5.006827197112243e-05}, {"x": -5.942028985507246, "y": 3.0434782608695663, "x2": -5.6521739130434785, "y2": 3.333333333333334, "center_x": -5.797101449275362, "center_y": 3.18840579710145, "value_uncond": 6.928644146605207e-05}, {"x": -5.6521739130434785, "y": 3.0434782608695663, "x2": -5.362318840579711, "y2": 3.333333333333334, "center_x": -5.507246376811595, "center_y": 3.18840579710145, "value_uncond": 9.499040190688058e-05}, {"x": -5.36231884057971, "y": 3.0434782608695663, "x2": -5.072463768115942, "y2": 3.333333333333334, "center_x": -5.217391304347826, "center_y": 3.18840579710145, "value_uncond": 0.00012901999129803215}, {"x": -5.0724637681159415, "y": 3.0434782608695663, "x2": -4.782608695652174, "y2": 3.333333333333334, "center_x": -4.927536231884058, "center_y": 3.18840579710145, "value_uncond": 0.00017361214620093563}, {"x": -4.782608695652174, "y": 3.0434782608695663, "x2": -4.492753623188406, "y2": 3.333333333333334, "center_x": -4.63768115942029, "center_y": 3.18840579710145, "value_uncond": 0.0002314456475332996}, {"x": -4.492753623188405, "y": 3.0434782608695663, "x2": -4.202898550724638, "y2": 3.333333333333334, "center_x": -4.3478260869565215, "center_y": 3.18840579710145, "value_uncond": 0.00030567769140861566}, {"x": -4.202898550724638, "y": 3.0434782608695663, "x2": -3.91304347826087, "y2": 3.333333333333334, "center_x": -4.057971014492754, "center_y": 3.18840579710145, "value_uncond": 0.0003999671155092253}, {"x": -3.913043478260869, "y": 3.0434782608695663, "x2": -3.6231884057971016, "y2": 3.333333333333334, "center_x": -3.7681159420289854, "center_y": 3.18840579710145, "value_uncond": 0.0005184783683895163}, {"x": -3.6231884057971016, "y": 3.0434782608695663, "x2": -3.333333333333334, "y2": 3.333333333333334, "center_x": -3.4782608695652177, "center_y": 3.18840579710145, "value_uncond": 0.0006658598246582143}, {"x": -3.333333333333333, "y": 3.0434782608695663, "x2": -3.0434782608695654, "y2": 3.333333333333334, "center_x": -3.1884057971014492, "center_y": 3.18840579710145, "value_uncond": 0.000847189953376477}, {"x": -3.0434782608695645, "y": 3.0434782608695663, "x2": -2.753623188405797, "y2": 3.333333333333334, "center_x": -2.8985507246376807, "center_y": 3.18840579710145, "value_uncond": 0.001067885270673787}, {"x": -2.753623188405797, "y": 3.0434782608695663, "x2": -2.4637681159420293, "y2": 3.333333333333334, "center_x": -2.608695652173913, "center_y": 3.18840579710145, "value_uncond": 0.0013335650661888887}, {"x": -2.4637681159420284, "y": 3.0434782608695663, "x2": -2.1739130434782608, "y2": 3.333333333333334, "center_x": -2.3188405797101446, "center_y": 3.18840579710145, "value_uncond": 0.0016498696696066464}, {"x": -2.1739130434782608, "y": 3.0434782608695663, "x2": -1.8840579710144931, "y2": 3.333333333333334, "center_x": -2.028985507246377, "center_y": 3.18840579710145, "value_uncond": 0.0020222315499640042}, {"x": -1.8840579710144922, "y": 3.0434782608695663, "x2": -1.5942028985507246, "y2": 3.333333333333334, "center_x": -1.7391304347826084, "center_y": 3.18840579710145, "value_uncond": 0.002455601778985758}, {"x": -1.5942028985507246, "y": 3.0434782608695663, "x2": -1.304347826086957, "y2": 3.333333333333334, "center_x": -1.4492753623188408, "center_y": 3.18840579710145, "value_uncond": 0.0029541382196973053}, {"x": -1.304347826086957, "y": 3.0434782608695663, "x2": -1.0144927536231894, "y2": 3.333333333333334, "center_x": -1.1594202898550732, "center_y": 3.18840579710145, "value_uncond": 0.0035208660115993097}, {"x": -1.0144927536231876, "y": 3.0434782608695663, "x2": -0.72463768115942, "y2": 3.333333333333334, "center_x": -0.8695652173913038, "center_y": 3.18840579710145, "value_uncond": 0.004157325213865357}, {"x": -0.72463768115942, "y": 3.0434782608695663, "x2": -0.43478260869565233, "y2": 3.333333333333334, "center_x": -0.5797101449275361, "center_y": 3.18840579710145, "value_uncond": 0.004863224463161162}, {"x": -0.43478260869565233, "y": 3.0434782608695663, "x2": -0.1449275362318847, "y2": 3.333333333333334, "center_x": -0.2898550724637685, "center_y": 3.18840579710145, "value_uncond": 0.005636122777772336}, {"x": -0.14492753623188293, "y": 3.0434782608695663, "x2": 0.1449275362318847, "y2": 3.333333333333334, "center_x": 8.881784197001252e-16, "center_y": 3.18840579710145, "value_uncond": 0.0064711637567894525}, {"x": 0.1449275362318847, "y": 3.0434782608695663, "x2": 0.43478260869565233, "y2": 3.333333333333334, "center_x": 0.2898550724637685, "center_y": 3.18840579710145, "value_uncond": 0.007360886977026161}, {"x": 0.43478260869565233, "y": 3.0434782608695663, "x2": 0.72463768115942, "y2": 3.333333333333334, "center_x": 0.5797101449275361, "center_y": 3.18840579710145, "value_uncond": 0.008295140059495594}, {"x": 0.72463768115942, "y": 3.0434782608695663, "x2": 1.0144927536231876, "y2": 3.333333333333334, "center_x": 0.8695652173913038, "center_y": 3.18840579710145, "value_uncond": 0.009261111473147475}, {"x": 1.0144927536231894, "y": 3.0434782608695663, "x2": 1.304347826086957, "y2": 3.333333333333334, "center_x": 1.1594202898550732, "center_y": 3.18840579710145, "value_uncond": 0.010243498653032564}, {"x": 1.304347826086957, "y": 3.0434782608695663, "x2": 1.5942028985507246, "y2": 3.333333333333334, "center_x": 1.4492753623188408, "center_y": 3.18840579710145, "value_uncond": 0.01122481862342373}, {"x": 1.5942028985507246, "y": 3.0434782608695663, "x2": 1.8840579710144922, "y2": 3.333333333333334, "center_x": 1.7391304347826084, "center_y": 3.18840579710145, "value_uncond": 0.012185859435716389}, {"x": 1.884057971014494, "y": 3.0434782608695663, "x2": 2.1739130434782616, "y2": 3.333333333333334, "center_x": 2.028985507246378, "center_y": 3.18840579710145, "value_uncond": 0.013106260954482262}, {"x": 2.1739130434782616, "y": 3.0434782608695663, "x2": 2.4637681159420293, "y2": 3.333333333333334, "center_x": 2.3188405797101455, "center_y": 3.18840579710145, "value_uncond": 0.013965203607228947}, {"x": 2.4637681159420293, "y": 3.0434782608695663, "x2": 2.753623188405797, "y2": 3.333333333333334, "center_x": 2.608695652173913, "center_y": 3.18840579710145, "value_uncond": 0.014742174501615976}, {"x": 2.753623188405797, "y": 3.0434782608695663, "x2": 3.0434782608695645, "y2": 3.333333333333334, "center_x": 2.8985507246376807, "center_y": 3.18840579710145, "value_uncond": 0.015417772668133087}, {"x": 3.0434782608695663, "y": 3.0434782608695663, "x2": 3.333333333333334, "y2": 3.333333333333334, "center_x": 3.18840579710145, "center_y": 3.18840579710145, "value_uncond": 0.015974509889774988}, {"x": 3.333333333333334, "y": 3.0434782608695663, "x2": 3.6231884057971016, "y2": 3.333333333333334, "center_x": 3.4782608695652177, "center_y": 3.18840579710145, "value_uncond": 0.016397561251191222}, {"x": 3.6231884057971016, "y": 3.0434782608695663, "x2": 3.913043478260869, "y2": 3.333333333333334, "center_x": 3.7681159420289854, "center_y": 3.18840579710145, "value_uncond": 0.016675420555170413}, {"x": 3.913043478260871, "y": 3.0434782608695663, "x2": 4.202898550724639, "y2": 3.333333333333334, "center_x": 4.057971014492755, "center_y": 3.18840579710145, "value_uncond": 0.016800420196392517}, {"x": 4.202898550724639, "y": 3.0434782608695663, "x2": 4.492753623188406, "y2": 3.333333333333334, "center_x": 4.347826086956522, "center_y": 3.18840579710145, "value_uncond": 0.016769082715321383}, {"x": 4.492753623188406, "y": 3.0434782608695663, "x2": 4.782608695652174, "y2": 3.333333333333334, "center_x": 4.63768115942029, "center_y": 3.18840579710145, "value_uncond": 0.01658228153635001}, {"x": 4.782608695652174, "y": 3.0434782608695663, "x2": 5.0724637681159415, "y2": 3.333333333333334, "center_x": 4.927536231884058, "center_y": 3.18840579710145, "value_uncond": 0.016245200520618588}, {"x": 5.072463768115943, "y": 3.0434782608695663, "x2": 5.362318840579711, "y2": 3.333333333333334, "center_x": 5.217391304347827, "center_y": 3.18840579710145, "value_uncond": 0.015767094947680884}, {"x": 5.362318840579711, "y": 3.0434782608695663, "x2": 5.6521739130434785, "y2": 3.333333333333334, "center_x": 5.507246376811595, "center_y": 3.18840579710145, "value_uncond": 0.015160869307387047}, {"x": 5.6521739130434785, "y": 3.0434782608695663, "x2": 5.942028985507246, "y2": 3.333333333333334, "center_x": 5.797101449275362, "center_y": 3.18840579710145, "value_uncond": 0.01444249878183029}, {"x": 5.942028985507246, "y": 3.0434782608695663, "x2": 6.231884057971014, "y2": 3.333333333333334, "center_x": 6.08695652173913, "center_y": 3.18840579710145, "value_uncond": 0.013630330602330078}, {"x": 6.2318840579710155, "y": 3.0434782608695663, "x2": 6.521739130434783, "y2": 3.333333333333334, "center_x": 6.376811594202899, "center_y": 3.18840579710145, "value_uncond": 0.012744307871617264}, {"x": 6.521739130434785, "y": 3.0434782608695663, "x2": 6.8115942028985526, "y2": 3.333333333333334, "center_x": 6.666666666666669, "center_y": 3.18840579710145, "value_uncond": 0.011805161523141232}, {"x": 6.811594202898551, "y": 3.0434782608695663, "x2": 7.101449275362318, "y2": 3.333333333333334, "center_x": 6.956521739130435, "center_y": 3.18840579710145, "value_uncond": 0.010833615739769736}, {"x": 7.10144927536232, "y": 3.0434782608695663, "x2": 7.391304347826088, "y2": 3.333333333333334, "center_x": 7.246376811594204, "center_y": 3.18840579710145, "value_uncond": 0.00984964857789889}, {"x": 7.391304347826086, "y": 3.0434782608695663, "x2": 7.681159420289854, "y2": 3.333333333333334, "center_x": 7.53623188405797, "center_y": 3.18840579710145, "value_uncond": 0.008871843221503157}, {"x": 7.681159420289855, "y": 3.0434782608695663, "x2": 7.971014492753623, "y2": 3.333333333333334, "center_x": 7.826086956521739, "center_y": 3.18840579710145, "value_uncond": 0.007916856918158218}, {"x": 7.971014492753625, "y": 3.0434782608695663, "x2": 8.260869565217392, "y2": 3.333333333333334, "center_x": 8.115942028985508, "center_y": 3.18840579710145, "value_uncond": 0.006999025050413267}, {"x": 8.26086956521739, "y": 3.0434782608695663, "x2": 8.550724637681158, "y2": 3.333333333333334, "center_x": 8.405797101449274, "center_y": 3.18840579710145, "value_uncond": 0.00613010783649177}, {"x": 8.55072463768116, "y": 3.0434782608695663, "x2": 8.840579710144928, "y2": 3.333333333333334, "center_x": 8.695652173913043, "center_y": 3.18840579710145, "value_uncond": 0.005319177653177839}, {"x": 8.84057971014493, "y": 3.0434782608695663, "x2": 9.130434782608697, "y2": 3.333333333333334, "center_x": 8.985507246376812, "center_y": 3.18840579710145, "value_uncond": 0.0045726366292228515}, {"x": 9.130434782608695, "y": 3.0434782608695663, "x2": 9.420289855072463, "y2": 3.333333333333334, "center_x": 9.275362318840578, "center_y": 3.18840579710145, "value_uncond": 0.0038943474929438796}, {"x": 9.420289855072465, "y": 3.0434782608695663, "x2": 9.710144927536232, "y2": 3.333333333333334, "center_x": 9.565217391304348, "center_y": 3.18840579710145, "value_uncond": 0.0032858559906926666}, {"x": 9.710144927536234, "y": 3.0434782608695663, "x2": 10.000000000000002, "y2": 3.333333333333334, "center_x": 9.855072463768117, "center_y": 3.18840579710145, "value_uncond": 0.0027466806302675847}, {"x": 10.0, "y": 3.0434782608695663, "x2": 10.289855072463768, "y2": 3.333333333333334, "center_x": 10.144927536231883, "center_y": 3.18840579710145, "value_uncond": 0.0022746449575343722}, {"x": -10.0, "y": 3.333333333333334, "x2": -9.710144927536232, "y2": 3.6231884057971016, "center_x": -9.855072463768117, "center_y": 3.4782608695652177, "value_uncond": 3.2201043320822097e-07}, {"x": -9.710144927536232, "y": 3.333333333333334, "x2": -9.420289855072465, "y2": 3.6231884057971016, "center_x": -9.565217391304348, "center_y": 3.4782608695652177, "value_uncond": 5.031065924468107e-07}, {"x": -9.420289855072463, "y": 3.333333333333334, "x2": -9.130434782608695, "y2": 3.6231884057971016, "center_x": -9.275362318840578, "center_y": 3.4782608695652177, "value_uncond": 7.787461052724562e-07}, {"x": -9.130434782608695, "y": 3.333333333333334, "x2": -8.840579710144928, "y2": 3.6231884057971016, "center_x": -8.985507246376812, "center_y": 3.4782608695652177, "value_uncond": 1.1942014157115696e-06}, {"x": -8.840579710144928, "y": 3.333333333333334, "x2": -8.55072463768116, "y2": 3.6231884057971016, "center_x": -8.695652173913043, "center_y": 3.4782608695652177, "value_uncond": 1.814283246812509e-06}, {"x": -8.55072463768116, "y": 3.333333333333334, "x2": -8.260869565217392, "y2": 3.6231884057971016, "center_x": -8.405797101449277, "center_y": 3.4782608695652177, "value_uncond": 2.7307278111152564e-06}, {"x": -8.26086956521739, "y": 3.333333333333334, "x2": -7.971014492753623, "y2": 3.6231884057971016, "center_x": -8.115942028985508, "center_y": 3.4782608695652177, "value_uncond": 4.071904193697249e-06}, {"x": -7.971014492753623, "y": 3.333333333333334, "x2": -7.681159420289855, "y2": 3.6231884057971016, "center_x": -7.826086956521739, "center_y": 3.4782608695652177, "value_uncond": 6.015372184992783e-06}, {"x": -7.681159420289855, "y": 3.333333333333334, "x2": -7.391304347826088, "y2": 3.6231884057971016, "center_x": -7.536231884057972, "center_y": 3.4782608695652177, "value_uncond": 8.803862885277813e-06}, {"x": -7.391304347826087, "y": 3.333333333333334, "x2": -7.101449275362319, "y2": 3.6231884057971016, "center_x": -7.246376811594203, "center_y": 3.4782608695652177, "value_uncond": 1.2765265482287069e-05}, {"x": -7.101449275362318, "y": 3.333333333333334, "x2": -6.811594202898551, "y2": 3.6231884057971016, "center_x": -6.956521739130435, "center_y": 3.4782608695652177, "value_uncond": 1.833716729516683e-05}, {"x": -6.811594202898551, "y": 3.333333333333334, "x2": -6.521739130434783, "y2": 3.6231884057971016, "center_x": -6.666666666666667, "center_y": 3.4782608695652177, "value_uncond": 2.6096391410354376e-05}, {"x": -6.521739130434782, "y": 3.333333333333334, "x2": -6.231884057971015, "y2": 3.6231884057971016, "center_x": -6.3768115942028984, "center_y": 3.4782608695652177, "value_uncond": 3.679378637323594e-05}, {"x": -6.231884057971014, "y": 3.333333333333334, "x2": -5.942028985507246, "y2": 3.6231884057971016, "center_x": -6.08695652173913, "center_y": 3.4782608695652177, "value_uncond": 5.1394225053082035e-05}, {"x": -5.942028985507246, "y": 3.333333333333334, "x2": -5.6521739130434785, "y2": 3.6231884057971016, "center_x": -5.797101449275362, "center_y": 3.4782608695652177, "value_uncond": 7.112134742511759e-05}, {"x": -5.6521739130434785, "y": 3.333333333333334, "x2": -5.362318840579711, "y2": 3.6231884057971016, "center_x": -5.507246376811595, "center_y": 3.4782608695652177, "value_uncond": 9.75060233015565e-05}, {"x": -5.36231884057971, "y": 3.333333333333334, "x2": -5.072463768115942, "y2": 3.6231884057971016, "center_x": -5.217391304347826, "center_y": 3.4782608695652177, "value_uncond": 0.00013243681493426023}, {"x": -5.0724637681159415, "y": 3.333333333333334, "x2": -4.782608695652174, "y2": 3.6231884057971016, "center_x": -4.927536231884058, "center_y": 3.4782608695652177, "value_uncond": 0.00017820989945380452}, {"x": -4.782608695652174, "y": 3.333333333333334, "x2": -4.492753623188406, "y2": 3.6231884057971016, "center_x": -4.63768115942029, "center_y": 3.4782608695652177, "value_uncond": 0.00023757499966732003}, {"x": -4.492753623188405, "y": 3.333333333333334, "x2": -4.202898550724638, "y2": 3.6231884057971016, "center_x": -4.3478260869565215, "center_y": 3.4782608695652177, "value_uncond": 0.0003137729233999119}, {"x": -4.202898550724638, "y": 3.333333333333334, "x2": -3.91304347826087, "y2": 3.6231884057971016, "center_x": -4.057971014492754, "center_y": 3.4782608695652177, "value_uncond": 0.0004105594049694614}, {"x": -3.913043478260869, "y": 3.333333333333334, "x2": -3.6231884057971016, "y2": 3.6231884057971016, "center_x": -3.7681159420289854, "center_y": 3.4782608695652177, "value_uncond": 0.0005322091796084853}, {"x": -3.6231884057971016, "y": 3.333333333333334, "x2": -3.333333333333334, "y2": 3.6231884057971016, "center_x": -3.4782608695652177, "center_y": 3.4782608695652177, "value_uncond": 0.0006834937243695501}, {"x": -3.333333333333333, "y": 3.333333333333334, "x2": -3.0434782608695654, "y2": 3.6231884057971016, "center_x": -3.1884057971014492, "center_y": 3.4782608695652177, "value_uncond": 0.000869626000906391}, {"x": -3.0434782608695645, "y": 3.333333333333334, "x2": -2.753623188405797, "y2": 3.6231884057971016, "center_x": -2.8985507246376807, "center_y": 3.4782608695652177, "value_uncond": 0.001096165970408059}, {"x": -2.753623188405797, "y": 3.333333333333334, "x2": -2.4637681159420293, "y2": 3.6231884057971016, "center_x": -2.608695652173913, "center_y": 3.4782608695652177, "value_uncond": 0.0013688817376036064}, {"x": -2.4637681159420284, "y": 3.333333333333334, "x2": -2.1739130434782608, "y2": 3.6231884057971016, "center_x": -2.3188405797101446, "center_y": 3.4782608695652177, "value_uncond": 0.001693563004469659}, {"x": -2.1739130434782608, "y": 3.333333333333334, "x2": -1.8840579710144931, "y2": 3.6231884057971016, "center_x": -2.028985507246377, "center_y": 3.4782608695652177, "value_uncond": 0.002075786107581996}, {"x": -1.8840579710144922, "y": 3.333333333333334, "x2": -1.5942028985507246, "y2": 3.6231884057971016, "center_x": -1.7391304347826084, "center_y": 3.4782608695652177, "value_uncond": 0.0025206332374069643}, {"x": -1.5942028985507246, "y": 3.333333333333334, "x2": -1.304347826086957, "y2": 3.6231884057971016, "center_x": -1.4492753623188408, "center_y": 3.4782608695652177, "value_uncond": 0.0030323723692441797}, {"x": -1.304347826086957, "y": 3.333333333333334, "x2": -1.0144927536231894, "y2": 3.6231884057971016, "center_x": -1.1594202898550732, "center_y": 3.4782608695652177, "value_uncond": 0.0036141087570637355}, {"x": -1.0144927536231876, "y": 3.333333333333334, "x2": -0.72463768115942, "y2": 3.6231884057971016, "center_x": -0.8695652173913038, "center_y": 3.4782608695652177, "value_uncond": 0.004267423245273602}, {"x": -0.72463768115942, "y": 3.333333333333334, "x2": -0.43478260869565233, "y2": 3.6231884057971016, "center_x": -0.5797101449275361, "center_y": 3.4782608695652177, "value_uncond": 0.004992016754393206}, {"x": -0.43478260869565233, "y": 3.333333333333334, "x2": -0.1449275362318847, "y2": 3.6231884057971016, "center_x": -0.2898550724637685, "center_y": 3.4782608695652177, "value_uncond": 0.005785383658431456}, {"x": -0.14492753623188293, "y": 3.333333333333334, "x2": 0.1449275362318847, "y2": 3.6231884057971016, "center_x": 8.881784197001252e-16, "center_y": 3.4782608695652177, "value_uncond": 0.00664253894489519}, {"x": 0.1449275362318847, "y": 3.333333333333334, "x2": 0.43478260869565233, "y2": 3.6231884057971016, "center_x": 0.2898550724637685, "center_y": 3.4782608695652177, "value_uncond": 0.007555824616950575}, {"x": 0.43478260869565233, "y": 3.333333333333334, "x2": 0.72463768115942, "y2": 3.6231884057971016, "center_x": 0.5797101449275361, "center_y": 3.4782608695652177, "value_uncond": 0.008514819431164715}, {"x": 0.72463768115942, "y": 3.333333333333334, "x2": 1.0144927536231876, "y2": 3.6231884057971016, "center_x": 0.8695652173913038, "center_y": 3.4782608695652177, "value_uncond": 0.009506372569980895}, {"x": 1.0144927536231894, "y": 3.333333333333334, "x2": 1.304347826086957, "y2": 3.6231884057971016, "center_x": 1.1594202898550732, "center_y": 3.4782608695652177, "value_uncond": 0.010514776212139686}, {"x": 1.304347826086957, "y": 3.333333333333334, "x2": 1.5942028985507246, "y2": 3.6231884057971016, "center_x": 1.4492753623188408, "center_y": 3.4782608695652177, "value_uncond": 0.011522084382001354}, {"x": 1.5942028985507246, "y": 3.333333333333334, "x2": 1.8840579710144922, "y2": 3.6231884057971016, "center_x": 1.7391304347826084, "center_y": 3.4782608695652177, "value_uncond": 0.01250857634283142}, {"x": 1.884057971014494, "y": 3.333333333333334, "x2": 2.1739130434782616, "y2": 3.6231884057971016, "center_x": 2.028985507246378, "center_y": 3.4782608695652177, "value_uncond": 0.013453352763753928}, {"x": 2.1739130434782616, "y": 3.333333333333334, "x2": 2.4637681159420293, "y2": 3.6231884057971016, "center_x": 2.3188405797101455, "center_y": 3.4782608695652177, "value_uncond": 0.014335042709602577}, {"x": 2.4637681159420293, "y": 3.333333333333334, "x2": 2.753623188405797, "y2": 3.6231884057971016, "center_x": 2.608695652173913, "center_y": 3.4782608695652177, "value_uncond": 0.01513259004714306}, {"x": 2.753623188405797, "y": 3.333333333333334, "x2": 3.0434782608695645, "y2": 3.6231884057971016, "center_x": 2.8985507246376807, "center_y": 3.4782608695652177, "value_uncond": 0.015826080012913326}, {"x": 3.0434782608695663, "y": 3.333333333333334, "x2": 3.333333333333334, "y2": 3.6231884057971016, "center_x": 3.18840579710145, "center_y": 3.4782608695652177, "value_uncond": 0.016397561251191222}, {"x": 3.333333333333334, "y": 3.333333333333334, "x2": 3.6231884057971016, "y2": 3.6231884057971016, "center_x": 3.4782608695652177, "center_y": 3.4782608695652177, "value_uncond": 0.01683181623986307}, {"x": 3.6231884057971016, "y": 3.333333333333334, "x2": 3.913043478260869, "y2": 3.6231884057971016, "center_x": 3.7681159420289854, "center_y": 3.4782608695652177, "value_uncond": 0.017117034064237667}, {"x": 3.913043478260871, "y": 3.333333333333334, "x2": 4.202898550724639, "y2": 3.6231884057971016, "center_x": 4.057971014492755, "center_y": 3.4782608695652177, "value_uncond": 0.017245344058563587}, {"x": 4.202898550724639, "y": 3.333333333333334, "x2": 4.492753623188406, "y2": 3.6231884057971016, "center_x": 4.347826086956522, "center_y": 3.4782608695652177, "value_uncond": 0.0172131766700886}, {"x": 4.492753623188406, "y": 3.333333333333334, "x2": 4.782608695652174, "y2": 3.6231884057971016, "center_x": 4.63768115942029, "center_y": 3.4782608695652177, "value_uncond": 0.017021428454017287}, {"x": 4.782608695652174, "y": 3.333333333333334, "x2": 5.0724637681159415, "y2": 3.6231884057971016, "center_x": 4.927536231884058, "center_y": 3.4782608695652177, "value_uncond": 0.01667542055517041}, {"x": 5.072463768115943, "y": 3.333333333333334, "x2": 5.362318840579711, "y2": 3.6231884057971016, "center_x": 5.217391304347827, "center_y": 3.4782608695652177, "value_uncond": 0.016184653359752416}, {"x": 5.362318840579711, "y": 3.333333333333334, "x2": 5.6521739130434785, "y2": 3.6231884057971016, "center_x": 5.507246376811595, "center_y": 3.4782608695652177, "value_uncond": 0.01556237310593858}, {"x": 5.6521739130434785, "y": 3.333333333333334, "x2": 5.942028985507246, "y2": 3.6231884057971016, "center_x": 5.797101449275362, "center_y": 3.4782608695652177, "value_uncond": 0.014824978044985428}, {"x": 5.942028985507246, "y": 3.333333333333334, "x2": 6.231884057971014, "y2": 3.6231884057971016, "center_x": 6.08695652173913, "center_y": 3.4782608695652177, "value_uncond": 0.01399130129612019}, {"x": 6.2318840579710155, "y": 3.333333333333334, "x2": 6.521739130434783, "y2": 3.6231884057971016, "center_x": 6.376811594202899, "center_y": 3.4782608695652177, "value_uncond": 0.01308181411328583}, {"x": 6.521739130434785, "y": 3.333333333333334, "x2": 6.8115942028985526, "y2": 3.6231884057971016, "center_x": 6.666666666666669, "center_y": 3.4782608695652177, "value_uncond": 0.012117796445186641}, {"x": 6.811594202898551, "y": 3.333333333333334, "x2": 7.101449275362318, "y2": 3.6231884057971016, "center_x": 6.956521739130435, "center_y": 3.4782608695652177, "value_uncond": 0.011120521311170306}, {"x": 7.10144927536232, "y": 3.333333333333334, "x2": 7.391304347826088, "y2": 3.6231884057971016, "center_x": 7.246376811594204, "center_y": 3.4782608695652177, "value_uncond": 0.010110495844519491}, {"x": 7.391304347826086, "y": 3.333333333333334, "x2": 7.681159420289854, "y2": 3.6231884057971016, "center_x": 7.53623188405797, "center_y": 3.4782608695652177, "value_uncond": 0.0091067953658272}, {"x": 7.681159420289855, "y": 3.333333333333334, "x2": 7.971014492753623, "y2": 3.6231884057971016, "center_x": 7.826086956521739, "center_y": 3.4782608695652177, "value_uncond": 0.008126518254904964}, {"x": 7.971014492753625, "y": 3.333333333333334, "x2": 8.260869565217392, "y2": 3.6231884057971016, "center_x": 8.115942028985508, "center_y": 3.4782608695652177, "value_uncond": 0.007184379536816565}, {"x": 8.26086956521739, "y": 3.333333333333334, "x2": 8.550724637681158, "y2": 3.6231884057971016, "center_x": 8.405797101449274, "center_y": 3.4782608695652177, "value_uncond": 0.006292450874478565}, {"x": 8.55072463768116, "y": 3.333333333333334, "x2": 8.840579710144928, "y2": 3.6231884057971016, "center_x": 8.695652173913043, "center_y": 3.4782608695652177, "value_uncond": 0.005460044907529852}, {"x": 8.84057971014493, "y": 3.333333333333334, "x2": 9.130434782608697, "y2": 3.6231884057971016, "center_x": 8.985507246376812, "center_y": 3.4782608695652177, "value_uncond": 0.00469373331166271}, {"x": 9.130434782608695, "y": 3.333333333333334, "x2": 9.420289855072463, "y2": 3.6231884057971016, "center_x": 9.275362318840578, "center_y": 3.4782608695652177, "value_uncond": 0.003997481111445211}, {"x": 9.420289855072465, "y": 3.333333333333334, "x2": 9.710144927536232, "y2": 3.6231884057971016, "center_x": 9.565217391304348, "center_y": 3.4782608695652177, "value_uncond": 0.00337287498907646}, {"x": 9.710144927536234, "y": 3.333333333333334, "x2": 10.000000000000002, "y2": 3.6231884057971016, "center_x": 9.855072463768117, "center_y": 3.4782608695652177, "value_uncond": 0.002819420701044596}, {"x": 10.0, "y": 3.333333333333334, "x2": 10.289855072463768, "y2": 3.6231884057971016, "center_x": 10.144927536231883, "center_y": 3.4782608695652177, "value_uncond": 0.0023348841543963327}, {"x": -10.0, "y": 3.6231884057971016, "x2": -9.710144927536232, "y2": 3.913043478260869, "center_x": -9.855072463768117, "center_y": 3.7681159420289854, "value_uncond": 3.2746695161816275e-07}, {"x": -9.710144927536232, "y": 3.6231884057971016, "x2": -9.420289855072465, "y2": 3.913043478260869, "center_x": -9.565217391304348, "center_y": 3.7681159420289854, "value_uncond": 5.116318143053023e-07}, {"x": -9.420289855072463, "y": 3.6231884057971016, "x2": -9.130434782608695, "y2": 3.913043478260869, "center_x": -9.275362318840578, "center_y": 3.7681159420289854, "value_uncond": 7.919420828616108e-07}, {"x": -9.130434782608695, "y": 3.6231884057971016, "x2": -8.840579710144928, "y2": 3.913043478260869, "center_x": -8.985507246376812, "center_y": 3.7681159420289854, "value_uncond": 1.2144373501348344e-06}, {"x": -8.840579710144928, "y": 3.6231884057971016, "x2": -8.55072463768116, "y2": 3.913043478260869, "center_x": -8.695652173913043, "center_y": 3.7681159420289854, "value_uncond": 1.8450265672647379e-06}, {"x": -8.55072463768116, "y": 3.6231884057971016, "x2": -8.260869565217392, "y2": 3.913043478260869, "center_x": -8.405797101449277, "center_y": 3.7681159420289854, "value_uncond": 2.7770004316183796e-06}, {"x": -8.26086956521739, "y": 3.6231884057971016, "x2": -7.971014492753623, "y2": 3.913043478260869, "center_x": -8.115942028985508, "center_y": 3.7681159420289854, "value_uncond": 4.14090326299778e-06}, {"x": -7.971014492753623, "y": 3.6231884057971016, "x2": -7.681159420289855, "y2": 3.913043478260869, "center_x": -7.826086956521739, "center_y": 3.7681159420289854, "value_uncond": 6.117303630949506e-06}, {"x": -7.681159420289855, "y": 3.6231884057971016, "x2": -7.391304347826088, "y2": 3.913043478260869, "center_x": -7.536231884057972, "center_y": 3.7681159420289854, "value_uncond": 8.953045753154204e-06}, {"x": -7.391304347826087, "y": 3.6231884057971016, "x2": -7.101449275362319, "y2": 3.913043478260869, "center_x": -7.246376811594203, "center_y": 3.7681159420289854, "value_uncond": 1.2981574952194378e-05}, {"x": -7.101449275362318, "y": 3.6231884057971016, "x2": -6.811594202898551, "y2": 3.913043478260869, "center_x": -6.956521739130435, "center_y": 3.7681159420289854, "value_uncond": 1.8647893534485788e-05}, {"x": -6.811594202898551, "y": 3.6231884057971016, "x2": -6.521739130434783, "y2": 3.913043478260869, "center_x": -6.666666666666667, "center_y": 3.7681159420289854, "value_uncond": 2.6538598946131853e-05}, {"x": -6.521739130434782, "y": 3.6231884057971016, "x2": -6.231884057971015, "y2": 3.913043478260869, "center_x": -6.3768115942028984, "center_y": 3.7681159420289854, "value_uncond": 3.741726298148362e-05}, {"x": -6.231884057971014, "y": 3.6231884057971016, "x2": -5.942028985507246, "y2": 3.913043478260869, "center_x": -6.08695652173913, "center_y": 3.7681159420289854, "value_uncond": 5.2265108435253366e-05}, {"x": -5.942028985507246, "y": 3.6231884057971016, "x2": -5.6521739130434785, "y2": 3.913043478260869, "center_x": -5.797101449275362, "center_y": 3.7681159420289854, "value_uncond": 7.232651005819936e-05}, {"x": -5.6521739130434785, "y": 3.6231884057971016, "x2": -5.362318840579711, "y2": 3.913043478260869, "center_x": -5.507246376811595, "center_y": 3.7681159420289854, "value_uncond": 9.91582784969064e-05}, {"x": -5.36231884057971, "y": 3.6231884057971016, "x2": -5.072463768115942, "y2": 3.913043478260869, "center_x": -5.217391304347826, "center_y": 3.7681159420289854, "value_uncond": 0.0001346809779933359}, {"x": -5.0724637681159415, "y": 3.6231884057971016, "x2": -4.782608695652174, "y2": 3.913043478260869, "center_x": -4.927536231884058, "center_y": 3.7681159420289854, "value_uncond": 0.0001812296947676252}, {"x": -4.782608695652174, "y": 3.6231884057971016, "x2": -4.492753623188406, "y2": 3.913043478260869, "center_x": -4.63768115942029, "center_y": 3.7681159420289854, "value_uncond": 0.00024160074612066055}, {"x": -4.492753623188405, "y": 3.6231884057971016, "x2": -4.202898550724638, "y2": 3.913043478260869, "center_x": -4.3478260869565215, "center_y": 3.7681159420289854, "value_uncond": 0.00031908985588565455}, {"x": -4.202898550724638, "y": 3.6231884057971016, "x2": -3.91304347826087, "y2": 3.913043478260869, "center_x": -4.057971014492754, "center_y": 3.7681159420289854, "value_uncond": 0.00041751639990056063}, {"x": -3.913043478260869, "y": 3.6231884057971016, "x2": -3.6231884057971016, "y2": 3.913043478260869, "center_x": -3.7681159420289854, "center_y": 3.7681159420289854, "value_uncond": 0.0005412275494716628}, {"x": -3.6231884057971016, "y": 3.6231884057971016, "x2": -3.333333333333334, "y2": 3.913043478260869, "center_x": -3.4782608695652177, "center_y": 3.7681159420289854, "value_uncond": 0.0006950756350950657}, {"x": -3.333333333333333, "y": 3.6231884057971016, "x2": -3.0434782608695654, "y2": 3.913043478260869, "center_x": -3.1884057971014492, "center_y": 3.7681159420289854, "value_uncond": 0.0008843619528953801}, {"x": -3.0434782608695645, "y": 3.6231884057971016, "x2": -2.753623188405797, "y2": 3.913043478260869, "center_x": -2.8985507246376807, "center_y": 3.7681159420289854, "value_uncond": 0.0011147406784952837}, {"x": -2.753623188405797, "y": 3.6231884057971016, "x2": -2.4637681159420293, "y2": 3.913043478260869, "center_x": -2.608695652173913, "center_y": 3.7681159420289854, "value_uncond": 0.0013920776580831067}, {"x": -2.4637681159420284, "y": 3.6231884057971016, "x2": -2.1739130434782608, "y2": 3.913043478260869, "center_x": -2.3188405797101446, "center_y": 3.7681159420289854, "value_uncond": 0.0017222607010635757}, {"x": -2.1739130434782608, "y": 3.6231884057971016, "x2": -1.8840579710144931, "y2": 3.913043478260869, "center_x": -2.028985507246377, "center_y": 3.7681159420289854, "value_uncond": 0.0021109606359296495}, {"x": -1.8840579710144922, "y": 3.6231884057971016, "x2": -1.5942028985507246, "y2": 3.913043478260869, "center_x": -1.7391304347826084, "center_y": 3.7681159420289854, "value_uncond": 0.002563345771679817}, {"x": -1.5942028985507246, "y": 3.6231884057971016, "x2": -1.304347826086957, "y2": 3.913043478260869, "center_x": -1.4492753623188408, "center_y": 3.7681159420289854, "value_uncond": 0.0030837564051393158}, {"x": -1.304347826086957, "y": 3.6231884057971016, "x2": -1.0144927536231894, "y2": 3.913043478260869, "center_x": -1.1594202898550732, "center_y": 3.7681159420289854, "value_uncond": 0.0036753504093045447}, {"x": -1.0144927536231876, "y": 3.6231884057971016, "x2": -0.72463768115942, "y2": 3.913043478260869, "center_x": -0.8695652173913038, "center_y": 3.7681159420289854, "value_uncond": 0.00433973541624538}, {"x": -0.72463768115942, "y": 3.6231884057971016, "x2": -0.43478260869565233, "y2": 3.913043478260869, "center_x": -0.5797101449275361, "center_y": 3.7681159420289854, "value_uncond": 0.005076607278531506}, {"x": -0.43478260869565233, "y": 3.6231884057971016, "x2": -0.1449275362318847, "y2": 3.913043478260869, "center_x": -0.2898550724637685, "center_y": 3.7681159420289854, "value_uncond": 0.005883417911937755}, {"x": -0.14492753623188293, "y": 3.6231884057971016, "x2": 0.1449275362318847, "y2": 3.913043478260869, "center_x": 8.881784197001252e-16, "center_y": 3.7681159420289854, "value_uncond": 0.006755097832135153}, {"x": 0.1449275362318847, "y": 3.6231884057971016, "x2": 0.43478260869565233, "y2": 3.913043478260869, "center_x": 0.2898550724637685, "center_y": 3.7681159420289854, "value_uncond": 0.007683859276305922}, {"x": 0.43478260869565233, "y": 3.6231884057971016, "x2": 0.72463768115942, "y2": 3.913043478260869, "center_x": 0.5797101449275361, "center_y": 3.7681159420289854, "value_uncond": 0.008659104411376637}, {"x": 0.72463768115942, "y": 3.6231884057971016, "x2": 1.0144927536231876, "y2": 3.913043478260869, "center_x": 0.8695652173913038, "center_y": 3.7681159420289854, "value_uncond": 0.00966745957707897}, {"x": 1.0144927536231894, "y": 3.6231884057971016, "x2": 1.304347826086957, "y2": 3.913043478260869, "center_x": 1.1594202898550732, "center_y": 3.7681159420289854, "value_uncond": 0.01069295078060424}, {"x": 1.304347826086957, "y": 3.6231884057971016, "x2": 1.5942028985507246, "y2": 3.913043478260869, "center_x": 1.4492753623188408, "center_y": 3.7681159420289854, "value_uncond": 0.011717327948878703}, {"x": 1.5942028985507246, "y": 3.6231884057971016, "x2": 1.8840579710144922, "y2": 3.913043478260869, "center_x": 1.7391304347826084, "center_y": 3.7681159420289854, "value_uncond": 0.012720536174122625}, {"x": 1.884057971014494, "y": 3.6231884057971016, "x2": 2.1739130434782616, "y2": 3.913043478260869, "center_x": 2.028985507246378, "center_y": 3.7681159420289854, "value_uncond": 0.013681321982948132}, {"x": 2.1739130434782616, "y": 3.6231884057971016, "x2": 2.4637681159420293, "y2": 3.913043478260869, "center_x": 2.3188405797101455, "center_y": 3.7681159420289854, "value_uncond": 0.014577952306266703}, {"x": 2.4637681159420293, "y": 3.6231884057971016, "x2": 2.753623188405797, "y2": 3.913043478260869, "center_x": 2.608695652173913, "center_y": 3.7681159420289854, "value_uncond": 0.015389014211291014}, {"x": 2.753623188405797, "y": 3.6231884057971016, "x2": 3.0434782608695645, "y2": 3.913043478260869, "center_x": 2.8985507246376807, "center_y": 3.7681159420289854, "value_uncond": 0.016094255475699756}, {"x": 3.0434782608695663, "y": 3.6231884057971016, "x2": 3.333333333333334, "y2": 3.913043478260869, "center_x": 3.18840579710145, "center_y": 3.7681159420289854, "value_uncond": 0.016675420555170413}, {"x": 3.333333333333334, "y": 3.6231884057971016, "x2": 3.6231884057971016, "y2": 3.913043478260869, "center_x": 3.4782608695652177, "center_y": 3.7681159420289854, "value_uncond": 0.017117034064237667}, {"x": 3.6231884057971016, "y": 3.6231884057971016, "x2": 3.913043478260869, "y2": 3.913043478260869, "center_x": 3.7681159420289854, "center_y": 3.7681159420289854, "value_uncond": 0.017407084950367555}, {"x": 3.913043478260871, "y": 3.6231884057971016, "x2": 4.202898550724639, "y2": 3.913043478260869, "center_x": 4.057971014492755, "center_y": 3.7681159420289854, "value_uncond": 0.017537569178115803}, {"x": 4.202898550724639, "y": 3.6231884057971016, "x2": 4.492753623188406, "y2": 3.913043478260869, "center_x": 4.347826086956522, "center_y": 3.7681159420289854, "value_uncond": 0.017504856708086578}, {"x": 4.492753623188406, "y": 3.6231884057971016, "x2": 4.782608695652174, "y2": 3.913043478260869, "center_x": 4.63768115942029, "center_y": 3.7681159420289854, "value_uncond": 0.01730985928775613}, {"x": 4.782608695652174, "y": 3.6231884057971016, "x2": 5.0724637681159415, "y2": 3.913043478260869, "center_x": 4.927536231884058, "center_y": 3.7681159420289854, "value_uncond": 0.0169579882295972}, {"x": 5.072463768115943, "y": 3.6231884057971016, "x2": 5.362318840579711, "y2": 3.913043478260869, "center_x": 5.217391304347827, "center_y": 3.7681159420289854, "value_uncond": 0.01645890490538141}, {"x": 5.362318840579711, "y": 3.6231884057971016, "x2": 5.6521739130434785, "y2": 3.913043478260869, "center_x": 5.507246376811595, "center_y": 3.7681159420289854, "value_uncond": 0.015826080012913323}, {"x": 5.6521739130434785, "y": 3.6231884057971016, "x2": 5.942028985507246, "y2": 3.913043478260869, "center_x": 5.797101449275362, "center_y": 3.7681159420289854, "value_uncond": 0.015076189674445703}, {"x": 5.942028985507246, "y": 3.6231884057971016, "x2": 6.231884057971014, "y2": 3.913043478260869, "center_x": 6.08695652173913, "center_y": 3.7681159420289854, "value_uncond": 0.014228386139430086}, {"x": 6.2318840579710155, "y": 3.6231884057971016, "x2": 6.521739130434783, "y2": 3.913043478260869, "center_x": 6.376811594202899, "center_y": 3.7681159420289854, "value_uncond": 0.013303487550489101}, {"x": 6.521739130434785, "y": 3.6231884057971016, "x2": 6.8115942028985526, "y2": 3.913043478260869, "center_x": 6.666666666666669, "center_y": 3.7681159420289854, "value_uncond": 0.012323134448469077}, {"x": 6.811594202898551, "y": 3.6231884057971016, "x2": 7.101449275362318, "y2": 3.913043478260869, "center_x": 6.956521739130435, "center_y": 3.7681159420289854, "value_uncond": 0.011308960327440668}, {"x": 7.10144927536232, "y": 3.6231884057971016, "x2": 7.391304347826088, "y2": 3.913043478260869, "center_x": 7.246376811594204, "center_y": 3.7681159420289854, "value_uncond": 0.010281819817347378}, {"x": 7.391304347826086, "y": 3.6231884057971016, "x2": 7.681159420289854, "y2": 3.913043478260869, "center_x": 7.53623188405797, "center_y": 3.7681159420289854, "value_uncond": 0.009261111473147477}, {"x": 7.681159420289855, "y": 3.6231884057971016, "x2": 7.971014492753623, "y2": 3.913043478260869, "center_x": 7.826086956521739, "center_y": 3.7681159420289854, "value_uncond": 0.008264223409439334}, {"x": 7.971014492753625, "y": 3.6231884057971016, "x2": 8.260869565217392, "y2": 3.913043478260869, "center_x": 8.115942028985508, "center_y": 3.7681159420289854, "value_uncond": 0.0073061199997452924}, {"x": 8.26086956521739, "y": 3.6231884057971016, "x2": 8.550724637681158, "y2": 3.913043478260869, "center_x": 8.405797101449274, "center_y": 3.7681159420289854, "value_uncond": 0.006399077463245162}, {"x": 8.55072463768116, "y": 3.6231884057971016, "x2": 8.840579710144928, "y2": 3.913043478260869, "center_x": 8.695652173913043, "center_y": 3.7681159420289854, "value_uncond": 0.005552566243749356}, {"x": 8.84057971014493, "y": 3.6231884057971016, "x2": 9.130434782608697, "y2": 3.913043478260869, "center_x": 8.985507246376812, "center_y": 3.7681159420289854, "value_uncond": 0.004773269375048221}, {"x": 9.130434782608695, "y": 3.6231884057971016, "x2": 9.420289855072463, "y2": 3.913043478260869, "center_x": 9.275362318840578, "center_y": 3.7681159420289854, "value_uncond": 0.004065219069686742}, {"x": 9.420289855072465, "y": 3.6231884057971016, "x2": 9.710144927536232, "y2": 3.913043478260869, "center_x": 9.565217391304348, "center_y": 3.7681159420289854, "value_uncond": 0.003430028896448236}, {"x": 9.710144927536234, "y": 3.6231884057971016, "x2": 10.000000000000002, "y2": 3.913043478260869, "center_x": 9.855072463768117, "center_y": 3.7681159420289854, "value_uncond": 0.0028671962367853064}, {"x": 10.0, "y": 3.6231884057971016, "x2": 10.289855072463768, "y2": 3.913043478260869, "center_x": 10.144927536231883, "center_y": 3.7681159420289854, "value_uncond": 0.002374449140681441}, {"x": -10.0, "y": 3.913043478260871, "x2": -9.710144927536232, "y2": 4.202898550724639, "center_x": -9.855072463768117, "center_y": 4.057971014492755, "value_uncond": 3.2992165741277494e-07}, {"x": -9.710144927536232, "y": 3.913043478260871, "x2": -9.420289855072465, "y2": 4.202898550724639, "center_x": -9.565217391304348, "center_y": 4.057971014492755, "value_uncond": 5.154670275171308e-07}, {"x": -9.420289855072463, "y": 3.913043478260871, "x2": -9.130434782608695, "y2": 4.202898550724639, "center_x": -9.275362318840578, "center_y": 4.057971014492755, "value_uncond": 7.978785134241195e-07}, {"x": -9.130434782608695, "y": 3.913043478260871, "x2": -8.840579710144928, "y2": 4.202898550724639, "center_x": -8.985507246376812, "center_y": 4.057971014492755, "value_uncond": 1.2235408226710357e-06}, {"x": -8.840579710144928, "y": 3.913043478260871, "x2": -8.55072463768116, "y2": 4.202898550724639, "center_x": -8.695652173913043, "center_y": 4.057971014492755, "value_uncond": 1.8588569626176071e-06}, {"x": -8.55072463768116, "y": 3.913043478260871, "x2": -8.260869565217392, "y2": 4.202898550724639, "center_x": -8.405797101449277, "center_y": 4.057971014492755, "value_uncond": 2.7978169415515185e-06}, {"x": -8.26086956521739, "y": 3.913043478260871, "x2": -7.971014492753623, "y2": 4.202898550724639, "center_x": -8.115942028985508, "center_y": 4.057971014492755, "value_uncond": 4.171943644887863e-06}, {"x": -7.971014492753623, "y": 3.913043478260871, "x2": -7.681159420289855, "y2": 4.202898550724639, "center_x": -7.826086956521739, "center_y": 4.057971014492755, "value_uncond": 6.1631591916285006e-06}, {"x": -7.681159420289855, "y": 3.913043478260871, "x2": -7.391304347826088, "y2": 4.202898550724639, "center_x": -7.536231884057972, "center_y": 4.057971014492755, "value_uncond": 9.020158153905162e-06}, {"x": -7.391304347826087, "y": 3.913043478260871, "x2": -7.101449275362319, "y2": 4.202898550724639, "center_x": -7.246376811594203, "center_y": 4.057971014492755, "value_uncond": 1.3078885374210632e-05}, {"x": -7.101449275362318, "y": 3.913043478260871, "x2": -6.811594202898551, "y2": 4.202898550724639, "center_x": -6.956521739130435, "center_y": 4.057971014492755, "value_uncond": 1.878767891462938e-05}, {"x": -6.811594202898551, "y": 3.913043478260871, "x2": -6.521739130434783, "y2": 4.202898550724639, "center_x": -6.666666666666667, "center_y": 4.057971014492755, "value_uncond": 2.673753337994889e-05}, {"x": -6.521739130434782, "y": 3.913043478260871, "x2": -6.231884057971015, "y2": 4.202898550724639, "center_x": -6.3768115942028984, "center_y": 4.057971014492755, "value_uncond": 3.769774433022827e-05}, {"x": -6.231884057971014, "y": 3.913043478260871, "x2": -5.942028985507246, "y2": 4.202898550724639, "center_x": -6.08695652173913, "center_y": 4.057971014492755, "value_uncond": 5.265688984677617e-05}, {"x": -5.942028985507246, "y": 3.913043478260871, "x2": -5.6521739130434785, "y2": 4.202898550724639, "center_x": -5.797101449275362, "center_y": 4.057971014492755, "value_uncond": 7.28686725648786e-05}, {"x": -5.6521739130434785, "y": 3.913043478260871, "x2": -5.362318840579711, "y2": 4.202898550724639, "center_x": -5.507246376811595, "center_y": 4.057971014492755, "value_uncond": 9.990157304802774e-05}, {"x": -5.36231884057971, "y": 3.913043478260871, "x2": -5.072463768115942, "y2": 4.202898550724639, "center_x": -5.217391304347826, "center_y": 4.057971014492755, "value_uncond": 0.00013569055216706725}, {"x": -5.0724637681159415, "y": 3.913043478260871, "x2": -4.782608695652174, "y2": 4.202898550724639, "center_x": -4.927536231884058, "center_y": 4.057971014492755, "value_uncond": 0.0001825882000448861}, {"x": -4.782608695652174, "y": 3.913043478260871, "x2": -4.492753623188406, "y2": 4.202898550724639, "center_x": -4.63768115942029, "center_y": 4.057971014492755, "value_uncond": 0.00024341179529235364}, {"x": -4.492753623188405, "y": 3.913043478260871, "x2": -4.202898550724638, "y2": 4.202898550724639, "center_x": -4.3478260869565215, "center_y": 4.057971014492755, "value_uncond": 0.0003214817666246586}, {"x": -4.202898550724638, "y": 3.913043478260871, "x2": -3.91304347826087, "y2": 4.202898550724639, "center_x": -4.057971014492754, "center_y": 4.057971014492755, "value_uncond": 0.0004206461200787862}, {"x": -3.913043478260869, "y": 3.913043478260871, "x2": -3.6231884057971016, "y2": 4.202898550724639, "center_x": -3.7681159420289854, "center_y": 4.057971014492755, "value_uncond": 0.0005452846135366828}, {"x": -3.6231884057971016, "y": 3.913043478260871, "x2": -3.333333333333334, "y2": 4.202898550724639, "center_x": -3.4782608695652177, "center_y": 4.057971014492755, "value_uncond": 0.0007002859507642661}, {"x": -3.333333333333333, "y": 3.913043478260871, "x2": -3.0434782608695654, "y2": 4.202898550724639, "center_x": -3.1884057971014492, "center_y": 4.057971014492755, "value_uncond": 0.000890991166620855}, {"x": -3.0434782608695645, "y": 3.913043478260871, "x2": -2.753623188405797, "y2": 4.202898550724639, "center_x": -2.8985507246376807, "center_y": 4.057971014492755, "value_uncond": 0.001123096820663128}, {"x": -2.753623188405797, "y": 3.913043478260871, "x2": -2.4637681159420293, "y2": 4.202898550724639, "center_x": -2.608695652173913, "center_y": 4.057971014492755, "value_uncond": 0.0014025127297047182}, {"x": -2.4637681159420284, "y": 3.913043478260871, "x2": -2.1739130434782608, "y2": 4.202898550724639, "center_x": -2.3188405797101446, "center_y": 4.057971014492755, "value_uncond": 0.001735170838412833}, {"x": -2.1739130434782608, "y": 3.913043478260871, "x2": -1.8840579710144931, "y2": 4.202898550724639, "center_x": -2.028985507246377, "center_y": 4.057971014492755, "value_uncond": 0.002126784484045035}, {"x": -1.8840579710144922, "y": 3.913043478260871, "x2": -1.5942028985507246, "y2": 4.202898550724639, "center_x": -1.7391304347826084, "center_y": 4.057971014492755, "value_uncond": 0.002582560717457531}, {"x": -1.5942028985507246, "y": 3.913043478260871, "x2": -1.304347826086957, "y2": 4.202898550724639, "center_x": -1.4492753623188408, "center_y": 4.057971014492755, "value_uncond": 0.003106872370519827}, {"x": -1.304347826086957, "y": 3.913043478260871, "x2": -1.0144927536231894, "y2": 4.202898550724639, "center_x": -1.1594202898550732, "center_y": 4.057971014492755, "value_uncond": 0.0037029009877747312}, {"x": -1.0144927536231876, "y": 3.913043478260871, "x2": -0.72463768115942, "y2": 4.202898550724639, "center_x": -0.8695652173913038, "center_y": 4.057971014492755, "value_uncond": 0.004372266252168516}, {"x": -0.72463768115942, "y": 3.913043478260871, "x2": -0.43478260869565233, "y2": 4.202898550724639, "center_x": -0.5797101449275361, "center_y": 4.057971014492755, "value_uncond": 0.005114661736369165}, {"x": -0.43478260869565233, "y": 3.913043478260871, "x2": -0.1449275362318847, "y2": 4.202898550724639, "center_x": -0.2898550724637685, "center_y": 4.057971014492755, "value_uncond": 0.005927520255606916}, {"x": -0.14492753623188293, "y": 3.913043478260871, "x2": 0.1449275362318847, "y2": 4.202898550724639, "center_x": 8.881784197001252e-16, "center_y": 4.057971014492755, "value_uncond": 0.006805734324488884}, {"x": 0.1449275362318847, "y": 3.913043478260871, "x2": 0.43478260869565233, "y2": 4.202898550724639, "center_x": 0.2898550724637685, "center_y": 4.057971014492755, "value_uncond": 0.007741457802805548}, {"x": 0.43478260869565233, "y": 3.913043478260871, "x2": 0.72463768115942, "y2": 4.202898550724639, "center_x": 0.5797101449275361, "center_y": 4.057971014492755, "value_uncond": 0.008724013415689048}, {"x": 0.72463768115942, "y": 3.913043478260871, "x2": 1.0144927536231876, "y2": 4.202898550724639, "center_x": 0.8695652173913038, "center_y": 4.057971014492755, "value_uncond": 0.009739927253361315}, {"x": 1.0144927536231894, "y": 3.913043478260871, "x2": 1.304347826086957, "y2": 4.202898550724639, "center_x": 1.1594202898550732, "center_y": 4.057971014492755, "value_uncond": 0.010773105581303807}, {"x": 1.304347826086957, "y": 3.913043478260871, "x2": 1.5942028985507246, "y2": 4.202898550724639, "center_x": 1.4492753623188408, "center_y": 4.057971014492755, "value_uncond": 0.01180516152314124}, {"x": 1.5942028985507246, "y": 3.913043478260871, "x2": 1.8840579710144922, "y2": 4.202898550724639, "center_x": 1.7391304347826084, "center_y": 4.057971014492755, "value_uncond": 0.012815889838676837}, {"x": 1.884057971014494, "y": 3.913043478260871, "x2": 2.1739130434782616, "y2": 4.202898550724639, "center_x": 2.028985507246378, "center_y": 4.057971014492755, "value_uncond": 0.013783877737608386}, {"x": 2.1739130434782616, "y": 3.913043478260871, "x2": 2.4637681159420293, "y2": 4.202898550724639, "center_x": 2.3188405797101455, "center_y": 4.057971014492755, "value_uncond": 0.01468722923886384}, {"x": 2.4637681159420293, "y": 3.913043478260871, "x2": 2.753623188405797, "y2": 4.202898550724639, "center_x": 2.608695652173913, "center_y": 4.057971014492755, "value_uncond": 0.015504370897427292}, {"x": 2.753623188405797, "y": 3.913043478260871, "x2": 3.0434782608695645, "y2": 4.202898550724639, "center_x": 2.8985507246376807, "center_y": 4.057971014492755, "value_uncond": 0.01621489867948244}, {"x": 3.0434782608695663, "y": 3.913043478260871, "x2": 3.333333333333334, "y2": 4.202898550724639, "center_x": 3.18840579710145, "center_y": 4.057971014492755, "value_uncond": 0.016800420196392517}, {"x": 3.333333333333334, "y": 3.913043478260871, "x2": 3.6231884057971016, "y2": 4.202898550724639, "center_x": 3.4782608695652177, "center_y": 4.057971014492755, "value_uncond": 0.017245344058563587}, {"x": 3.6231884057971016, "y": 3.913043478260871, "x2": 3.913043478260869, "y2": 4.202898550724639, "center_x": 3.7681159420289854, "center_y": 4.057971014492755, "value_uncond": 0.017537569178115803}, {"x": 3.913043478260871, "y": 3.913043478260871, "x2": 4.202898550724639, "y2": 4.202898550724639, "center_x": 4.057971014492755, "center_y": 4.057971014492755, "value_uncond": 0.017669031521024604}, {"x": 4.202898550724639, "y": 3.913043478260871, "x2": 4.492753623188406, "y2": 4.202898550724639, "center_x": 4.347826086956522, "center_y": 4.057971014492755, "value_uncond": 0.017636073836968927}, {"x": 4.492753623188406, "y": 3.913043478260871, "x2": 4.782608695652174, "y2": 4.202898550724639, "center_x": 4.63768115942029, "center_y": 4.057971014492755, "value_uncond": 0.017439614707921755}, {"x": 4.782608695652174, "y": 3.913043478260871, "x2": 5.0724637681159415, "y2": 4.202898550724639, "center_x": 4.927536231884058, "center_y": 4.057971014492755, "value_uncond": 0.017085106009777626}, {"x": 5.072463768115943, "y": 3.913043478260871, "x2": 5.362318840579711, "y2": 4.202898550724639, "center_x": 5.217391304347827, "center_y": 4.057971014492755, "value_uncond": 0.016582281536350007}, {"x": 5.362318840579711, "y": 3.913043478260871, "x2": 5.6521739130434785, "y2": 4.202898550724639, "center_x": 5.507246376811595, "center_y": 4.057971014492755, "value_uncond": 0.015944712962350577}, {"x": 5.6521739130434785, "y": 3.913043478260871, "x2": 5.942028985507246, "y2": 4.202898550724639, "center_x": 5.797101449275362, "center_y": 4.057971014492755, "value_uncond": 0.01518920141493328}, {"x": 5.942028985507246, "y": 3.913043478260871, "x2": 6.231884057971014, "y2": 4.202898550724639, "center_x": 6.08695652173913, "center_y": 4.057971014492755, "value_uncond": 0.014335042709602576}, {"x": 6.2318840579710155, "y": 3.913043478260871, "x2": 6.521739130434783, "y2": 4.202898550724639, "center_x": 6.376811594202899, "center_y": 4.057971014492755, "value_uncond": 0.013403211042638046}, {"x": 6.521739130434785, "y": 3.913043478260871, "x2": 6.8115942028985526, "y2": 4.202898550724639, "center_x": 6.666666666666669, "center_y": 4.057971014492755, "value_uncond": 0.012415509173274013}, {"x": 6.811594202898551, "y": 3.913043478260871, "x2": 7.101449275362318, "y2": 4.202898550724639, "center_x": 6.956521739130435, "center_y": 4.057971014492755, "value_uncond": 0.011393732761146204}, {"x": 7.10144927536232, "y": 3.913043478260871, "x2": 7.391304347826088, "y2": 4.202898550724639, "center_x": 7.246376811594204, "center_y": 4.057971014492755, "value_uncond": 0.010358892763365537}, {"x": 7.391304347826086, "y": 3.913043478260871, "x2": 7.681159420289854, "y2": 4.202898550724639, "center_x": 7.53623188405797, "center_y": 4.057971014492755, "value_uncond": 0.009330533147259464}, {"x": 7.681159420289855, "y": 3.913043478260871, "x2": 7.971014492753623, "y2": 4.202898550724639, "center_x": 7.826086956521739, "center_y": 4.057971014492755, "value_uncond": 0.008326172369451556}, {"x": 7.971014492753625, "y": 3.913043478260871, "x2": 8.260869565217392, "y2": 4.202898550724639, "center_x": 8.115942028985508, "center_y": 4.057971014492755, "value_uncond": 0.007360886977026152}, {"x": 8.26086956521739, "y": 3.913043478260871, "x2": 8.550724637681158, "y2": 4.202898550724639, "center_x": 8.405797101449274, "center_y": 4.057971014492755, "value_uncond": 0.006447045212209076}, {"x": 8.55072463768116, "y": 3.913043478260871, "x2": 8.840579710144928, "y2": 4.202898550724639, "center_x": 8.695652173913043, "center_y": 4.057971014492755, "value_uncond": 0.005594188509648697}, {"x": 8.84057971014493, "y": 3.913043478260871, "x2": 9.130434782608697, "y2": 4.202898550724639, "center_x": 8.985507246376812, "center_y": 4.057971014492755, "value_uncond": 0.004809049999432683}, {"x": 9.130434782608695, "y": 3.913043478260871, "x2": 9.420289855072463, "y2": 4.202898550724639, "center_x": 9.275362318840578, "center_y": 4.057971014492755, "value_uncond": 0.004095692119737797}, {"x": 9.420289855072465, "y": 3.913043478260871, "x2": 9.710144927536232, "y2": 4.202898550724639, "center_x": 9.565217391304348, "center_y": 4.057971014492755, "value_uncond": 0.003455740534725601}, {"x": 9.710144927536234, "y": 3.913043478260871, "x2": 10.000000000000002, "y2": 4.202898550724639, "center_x": 9.855072463768117, "center_y": 4.057971014492755, "value_uncond": 0.0028886888581993076}, {"x": 10.0, "y": 3.913043478260871, "x2": 10.289855072463768, "y2": 4.202898550724639, "center_x": 10.144927536231883, "center_y": 4.057971014492755, "value_uncond": 0.002392248109511243}, {"x": -10.0, "y": 4.202898550724639, "x2": -9.710144927536232, "y2": 4.492753623188406, "center_x": -9.855072463768117, "center_y": 4.347826086956522, "value_uncond": 3.2930626127546e-07}, {"x": -9.710144927536232, "y": 4.202898550724639, "x2": -9.420289855072465, "y2": 4.492753623188406, "center_x": -9.565217391304348, "center_y": 4.347826086956522, "value_uncond": 5.145055373860044e-07}, {"x": -9.420289855072463, "y": 4.202898550724639, "x2": -9.130434782608695, "y2": 4.492753623188406, "center_x": -9.275362318840578, "center_y": 4.347826086956522, "value_uncond": 7.963902469094011e-07}, {"x": -9.130434782608695, "y": 4.202898550724639, "x2": -8.840579710144928, "y2": 4.492753623188406, "center_x": -8.985507246376812, "center_y": 4.347826086956522, "value_uncond": 1.2212585769342034e-06}, {"x": -8.840579710144928, "y": 4.202898550724639, "x2": -8.55072463768116, "y2": 4.492753623188406, "center_x": -8.695652173913043, "center_y": 4.347826086956522, "value_uncond": 1.8553896746451031e-06}, {"x": -8.55072463768116, "y": 4.202898550724639, "x2": -8.260869565217392, "y2": 4.492753623188406, "center_x": -8.405797101449277, "center_y": 4.347826086956522, "value_uncond": 2.7925982306846808e-06}, {"x": -8.26086956521739, "y": 4.202898550724639, "x2": -7.971014492753623, "y2": 4.492753623188406, "center_x": -8.115942028985508, "center_y": 4.347826086956522, "value_uncond": 4.164161803512874e-06}, {"x": -7.971014492753623, "y": 4.202898550724639, "x2": -7.681159420289855, "y2": 4.492753623188406, "center_x": -7.826086956521739, "center_y": 4.347826086956522, "value_uncond": 6.1516631765141e-06}, {"x": -7.681159420289855, "y": 4.202898550724639, "x2": -7.391304347826088, "y2": 4.492753623188406, "center_x": -7.536231884057972, "center_y": 4.347826086956522, "value_uncond": 9.003333036907952e-06}, {"x": -7.391304347826087, "y": 4.202898550724639, "x2": -7.101449275362319, "y2": 4.492753623188406, "center_x": -7.246376811594203, "center_y": 4.347826086956522, "value_uncond": 1.3054489596125642e-05}, {"x": -7.101449275362318, "y": 4.202898550724639, "x2": -6.811594202898551, "y2": 4.492753623188406, "center_x": -6.956521739130435, "center_y": 4.347826086956522, "value_uncond": 1.8752634640410333e-05}, {"x": -6.811594202898551, "y": 4.202898550724639, "x2": -6.521739130434783, "y2": 4.492753623188406, "center_x": -6.666666666666667, "center_y": 4.347826086956522, "value_uncond": 2.6687660404369222e-05}, {"x": -6.521739130434782, "y": 4.202898550724639, "x2": -6.231884057971015, "y2": 4.492753623188406, "center_x": -6.3768115942028984, "center_y": 4.347826086956522, "value_uncond": 3.762742749674654e-05}, {"x": -6.231884057971014, "y": 4.202898550724639, "x2": -5.942028985507246, "y2": 4.492753623188406, "center_x": -6.08695652173913, "center_y": 4.347826086956522, "value_uncond": 5.2558670024322436e-05}, {"x": -5.942028985507246, "y": 4.202898550724639, "x2": -5.6521739130434785, "y2": 4.492753623188406, "center_x": -5.797101449275362, "center_y": 4.347826086956522, "value_uncond": 7.273275211643228e-05}, {"x": -5.6521739130434785, "y": 4.202898550724639, "x2": -5.362318840579711, "y2": 4.492753623188406, "center_x": -5.507246376811595, "center_y": 4.347826086956522, "value_uncond": 9.971522868176951e-05}, {"x": -5.36231884057971, "y": 4.202898550724639, "x2": -5.072463768115942, "y2": 4.492753623188406, "center_x": -5.217391304347826, "center_y": 4.347826086956522, "value_uncond": 0.00013543745134813776}, {"x": -5.0724637681159415, "y": 4.202898550724639, "x2": -4.782608695652174, "y2": 4.492753623188406, "center_x": -4.927536231884058, "center_y": 4.347826086956522, "value_uncond": 0.0001822476220000616}, {"x": -4.782608695652174, "y": 4.202898550724639, "x2": -4.492753623188406, "y2": 4.492753623188406, "center_x": -4.63768115942029, "center_y": 4.347826086956522, "value_uncond": 0.00024295776423608866}, {"x": -4.492753623188405, "y": 4.202898550724639, "x2": -4.202898550724638, "y2": 4.492753623188406, "center_x": -4.3478260869565215, "center_y": 4.347826086956522, "value_uncond": 0.0003208821132434606}, {"x": -4.202898550724638, "y": 4.202898550724639, "x2": -3.91304347826087, "y2": 4.492753623188406, "center_x": -4.057971014492754, "center_y": 4.347826086956522, "value_uncond": 0.0004198614974519994}, {"x": -3.913043478260869, "y": 4.202898550724639, "x2": -3.6231884057971016, "y2": 4.492753623188406, "center_x": -3.7681159420289854, "center_y": 4.347826086956522, "value_uncond": 0.0005442675052706195}, {"x": -3.6231884057971016, "y": 4.202898550724639, "x2": -3.333333333333334, "y2": 4.492753623188406, "center_x": -3.4782608695652177, "center_y": 4.347826086956522, "value_uncond": 0.0006989797216658312}, {"x": -3.333333333333333, "y": 4.202898550724639, "x2": -3.0434782608695654, "y2": 4.492753623188406, "center_x": -3.1884057971014492, "center_y": 4.347826086956522, "value_uncond": 0.0008893292189735857}, {"x": -3.0434782608695645, "y": 4.202898550724639, "x2": -2.753623188405797, "y2": 4.492753623188406, "center_x": -2.8985507246376807, "center_y": 4.347826086956522, "value_uncond": 0.0011210019310742272}, {"x": -2.753623188405797, "y": 4.202898550724639, "x2": -2.4637681159420293, "y2": 4.492753623188406, "center_x": -2.608695652173913, "center_y": 4.347826086956522, "value_uncond": 0.0013998966513206438}, {"x": -2.4637681159420284, "y": 4.202898550724639, "x2": -2.1739130434782608, "y2": 4.492753623188406, "center_x": -2.3188405797101446, "center_y": 4.347826086956522, "value_uncond": 0.0017319342596446646}, {"x": -2.1739130434782608, "y": 4.202898550724639, "x2": -1.8840579710144931, "y2": 4.492753623188406, "center_x": -2.028985507246377, "center_y": 4.347826086956522, "value_uncond": 0.0021228174363324154}, {"x": -1.8840579710144922, "y": 4.202898550724639, "x2": -1.5942028985507246, "y2": 4.492753623188406, "center_x": -1.7391304347826084, "center_y": 4.347826086956522, "value_uncond": 0.0025777435196343624}, {"x": -1.5942028985507246, "y": 4.202898550724639, "x2": -1.304347826086957, "y2": 4.492753623188406, "center_x": -1.4492753623188408, "center_y": 4.347826086956522, "value_uncond": 0.003101077184865929}, {"x": -1.304347826086957, "y": 4.202898550724639, "x2": -1.0144927536231894, "y2": 4.492753623188406, "center_x": -1.1594202898550732, "center_y": 4.347826086956522, "value_uncond": 0.0036959940420997896}, {"x": -1.0144927536231876, "y": 4.202898550724639, "x2": -0.72463768115942, "y2": 4.492753623188406, "center_x": -0.8695652173913038, "center_y": 4.347826086956522, "value_uncond": 0.004364110753120658}, {"x": -0.72463768115942, "y": 4.202898550724639, "x2": -0.43478260869565233, "y2": 4.492753623188406, "center_x": -0.5797101449275361, "center_y": 4.347826086956522, "value_uncond": 0.005105121462169169}, {"x": -0.43478260869565233, "y": 4.202898550724639, "x2": -0.1449275362318847, "y2": 4.492753623188406, "center_x": -0.2898550724637685, "center_y": 4.347826086956522, "value_uncond": 0.005916463772992943}, {"x": -0.14492753623188293, "y": 4.202898550724639, "x2": 0.1449275362318847, "y2": 4.492753623188406, "center_x": 8.881784197001252e-16, "center_y": 4.347826086956522, "value_uncond": 0.006793039727087408}, {"x": 0.1449275362318847, "y": 4.202898550724639, "x2": 0.43478260869565233, "y2": 4.492753623188406, "center_x": 0.2898550724637685, "center_y": 4.347826086956522, "value_uncond": 0.007727017819488317}, {"x": 0.43478260869565233, "y": 4.202898550724639, "x2": 0.72463768115942, "y2": 4.492753623188406, "center_x": 0.5797101449275361, "center_y": 4.347826086956522, "value_uncond": 0.008707740691430809}, {"x": 0.72463768115942, "y": 4.202898550724639, "x2": 1.0144927536231876, "y2": 4.492753623188406, "center_x": 0.8695652173913038, "center_y": 4.347826086956522, "value_uncond": 0.009721759565745862}, {"x": 1.0144927536231894, "y": 4.202898550724639, "x2": 1.304347826086957, "y2": 4.492753623188406, "center_x": 1.1594202898550732, "center_y": 4.347826086956522, "value_uncond": 0.010753010727229628}, {"x": 1.304347826086957, "y": 4.202898550724639, "x2": 1.5942028985507246, "y2": 4.492753623188406, "center_x": 1.4492753623188408, "center_y": 4.347826086956522, "value_uncond": 0.011783141596172239}, {"x": 1.5942028985507246, "y": 4.202898550724639, "x2": 1.8840579710144922, "y2": 4.492753623188406, "center_x": 1.7391304347826084, "center_y": 4.347826086956522, "value_uncond": 0.012791984620799281}, {"x": 1.884057971014494, "y": 4.202898550724639, "x2": 2.1739130434782616, "y2": 4.492753623188406, "center_x": 2.028985507246378, "center_y": 4.347826086956522, "value_uncond": 0.013758166951649482}, {"x": 2.1739130434782616, "y": 4.202898550724639, "x2": 2.4637681159420293, "y2": 4.492753623188406, "center_x": 2.3188405797101455, "center_y": 4.347826086956522, "value_uncond": 0.014659833449777619}, {"x": 2.4637681159420293, "y": 4.202898550724639, "x2": 2.753623188405797, "y2": 4.492753623188406, "center_x": 2.608695652173913, "center_y": 4.347826086956522, "value_uncond": 0.015475450910674683}, {"x": 2.753623188405797, "y": 4.202898550724639, "x2": 3.0434782608695645, "y2": 4.492753623188406, "center_x": 2.8985507246376807, "center_y": 4.347826086956522, "value_uncond": 0.01618465335975242}, {"x": 3.0434782608695663, "y": 4.202898550724639, "x2": 3.333333333333334, "y2": 4.492753623188406, "center_x": 3.18840579710145, "center_y": 4.347826086956522, "value_uncond": 0.016769082715321383}, {"x": 3.333333333333334, "y": 4.202898550724639, "x2": 3.6231884057971016, "y2": 4.492753623188406, "center_x": 3.4782608695652177, "center_y": 4.347826086956522, "value_uncond": 0.0172131766700886}, {"x": 3.6231884057971016, "y": 4.202898550724639, "x2": 3.913043478260869, "y2": 4.492753623188406, "center_x": 3.7681159420289854, "center_y": 4.347826086956522, "value_uncond": 0.017504856708086578}, {"x": 3.913043478260871, "y": 4.202898550724639, "x2": 4.202898550724639, "y2": 4.492753623188406, "center_x": 4.057971014492755, "center_y": 4.347826086956522, "value_uncond": 0.017636073836968927}, {"x": 4.202898550724639, "y": 4.202898550724639, "x2": 4.492753623188406, "y2": 4.492753623188406, "center_x": 4.347826086956522, "center_y": 4.347826086956522, "value_uncond": 0.017603177628208996}, {"x": 4.492753623188406, "y": 4.202898550724639, "x2": 4.782608695652174, "y2": 4.492753623188406, "center_x": 4.63768115942029, "center_y": 4.347826086956522, "value_uncond": 0.017407084950367555}, {"x": 4.782608695652174, "y": 4.202898550724639, "x2": 5.0724637681159415, "y2": 4.492753623188406, "center_x": 4.927536231884058, "center_y": 4.347826086956522, "value_uncond": 0.017053237510066252}, {"x": 5.072463768115943, "y": 4.202898550724639, "x2": 5.362318840579711, "y2": 4.492753623188406, "center_x": 5.217391304347827, "center_y": 4.347826086956522, "value_uncond": 0.016551350944871517}, {"x": 5.362318840579711, "y": 4.202898550724639, "x2": 5.6521739130434785, "y2": 4.492753623188406, "center_x": 5.507246376811595, "center_y": 4.347826086956522, "value_uncond": 0.01591497161452705}, {"x": 5.6521739130434785, "y": 4.202898550724639, "x2": 5.942028985507246, "y2": 4.492753623188406, "center_x": 5.797101449275362, "center_y": 4.347826086956522, "value_uncond": 0.015160869307387045}, {"x": 5.942028985507246, "y": 4.202898550724639, "x2": 6.231884057971014, "y2": 4.492753623188406, "center_x": 6.08695652173913, "center_y": 4.347826086956522, "value_uncond": 0.014308303846864935}, {"x": 6.2318840579710155, "y": 4.202898550724639, "x2": 6.521739130434783, "y2": 4.492753623188406, "center_x": 6.376811594202899, "center_y": 4.347826086956522, "value_uncond": 0.013378210306499836}, {"x": 6.521739130434785, "y": 4.202898550724639, "x2": 6.8115942028985526, "y2": 4.492753623188406, "center_x": 6.666666666666669, "center_y": 4.347826086956522, "value_uncond": 0.01239235077728404}, {"x": 6.811594202898551, "y": 4.202898550724639, "x2": 7.101449275362318, "y2": 4.492753623188406, "center_x": 6.956521739130435, "center_y": 4.347826086956522, "value_uncond": 0.011372480263853986}, {"x": 7.10144927536232, "y": 4.202898550724639, "x2": 7.391304347826088, "y2": 4.492753623188406, "center_x": 7.246376811594204, "center_y": 4.347826086956522, "value_uncond": 0.010339570532010896}, {"x": 7.391304347826086, "y": 4.202898550724639, "x2": 7.681159420289854, "y2": 4.492753623188406, "center_x": 7.53623188405797, "center_y": 4.347826086956522, "value_uncond": 0.009313129094118662}, {"x": 7.681159420289855, "y": 4.202898550724639, "x2": 7.971014492753623, "y2": 4.492753623188406, "center_x": 7.826086956521739, "center_y": 4.347826086956522, "value_uncond": 0.00831064172998108}, {"x": 7.971014492753625, "y": 4.202898550724639, "x2": 8.260869565217392, "y2": 4.492753623188406, "center_x": 8.115942028985508, "center_y": 4.347826086956522, "value_uncond": 0.007347156864706769}, {"x": 8.26086956521739, "y": 4.202898550724639, "x2": 8.550724637681158, "y2": 4.492753623188406, "center_x": 8.405797101449274, "center_y": 4.347826086956522, "value_uncond": 0.006435019670291634}, {"x": 8.55072463768116, "y": 4.202898550724639, "x2": 8.840579710144928, "y2": 4.492753623188406, "center_x": 8.695652173913043, "center_y": 4.347826086956522, "value_uncond": 0.005583753783940638}, {"x": 8.84057971014493, "y": 4.202898550724639, "x2": 9.130434782608697, "y2": 4.492753623188406, "center_x": 8.985507246376812, "center_y": 4.347826086956522, "value_uncond": 0.00480007977657125}, {"x": 9.130434782608695, "y": 4.202898550724639, "x2": 9.420289855072463, "y2": 4.492753623188406, "center_x": 9.275362318840578, "center_y": 4.347826086956522, "value_uncond": 0.004088052508777171}, {"x": 9.420289855072465, "y": 4.202898550724639, "x2": 9.710144927536232, "y2": 4.492753623188406, "center_x": 9.565217391304348, "center_y": 4.347826086956522, "value_uncond": 0.003449294612401767}, {"x": 9.710144927536234, "y": 4.202898550724639, "x2": 10.000000000000002, "y2": 4.492753623188406, "center_x": 9.855072463768117, "center_y": 4.347826086956522, "value_uncond": 0.0028833006458000928}, {"x": 10.0, "y": 4.202898550724639, "x2": 10.289855072463768, "y2": 4.492753623188406, "center_x": 10.144927536231883, "center_y": 4.347826086956522, "value_uncond": 0.002387785897913383}, {"x": -10.0, "y": 4.492753623188406, "x2": -9.710144927536232, "y2": 4.782608695652174, "center_x": -9.855072463768117, "center_y": 4.63768115942029, "value_uncond": 3.256379152547972e-07}, {"x": -9.710144927536232, "y": 4.492753623188406, "x2": -9.420289855072465, "y2": 4.782608695652174, "center_x": -9.565217391304348, "center_y": 4.63768115942029, "value_uncond": 5.087741421390123e-07}, {"x": -9.420289855072463, "y": 4.492753623188406, "x2": -9.130434782608695, "y2": 4.782608695652174, "center_x": -9.275362318840578, "center_y": 4.63768115942029, "value_uncond": 7.875187636225984e-07}, {"x": -9.130434782608695, "y": 4.492753623188406, "x2": -8.840579710144928, "y2": 4.782608695652174, "center_x": -8.985507246376812, "center_y": 4.63768115942029, "value_uncond": 1.2076542226667046e-06}, {"x": -8.840579710144928, "y": 4.492753623188406, "x2": -8.55072463768116, "y2": 4.782608695652174, "center_x": -8.695652173913043, "center_y": 4.63768115942029, "value_uncond": 1.834721342061928e-06}, {"x": -8.55072463768116, "y": 4.492753623188406, "x2": -8.260869565217392, "y2": 4.782608695652174, "center_x": -8.405797101449277, "center_y": 4.63768115942029, "value_uncond": 2.761489752615771e-06}, {"x": -8.26086956521739, "y": 4.492753623188406, "x2": -7.971014492753623, "y2": 4.782608695652174, "center_x": -8.115942028985508, "center_y": 4.63768115942029, "value_uncond": 4.117774630909027e-06}, {"x": -7.971014492753623, "y": 4.492753623188406, "x2": -7.681159420289855, "y2": 4.782608695652174, "center_x": -7.826086956521739, "center_y": 4.63768115942029, "value_uncond": 6.08313599744797e-06}, {"x": -7.681159420289855, "y": 4.492753623188406, "x2": -7.391304347826088, "y2": 4.782608695652174, "center_x": -7.536231884057972, "center_y": 4.63768115942029, "value_uncond": 8.90303934437165e-06}, {"x": -7.391304347826087, "y": 4.492753623188406, "x2": -7.101449275362319, "y2": 4.782608695652174, "center_x": -7.246376811594203, "center_y": 4.63768115942029, "value_uncond": 1.2909067566261262e-05}, {"x": -7.101449275362318, "y": 4.492753623188406, "x2": -6.811594202898551, "y2": 4.782608695652174, "center_x": -6.956521739130435, "center_y": 4.63768115942029, "value_uncond": 1.8543737450318508e-05}, {"x": -6.811594202898551, "y": 4.492753623188406, "x2": -6.521739130434783, "y2": 4.782608695652174, "center_x": -6.666666666666667, "center_y": 4.63768115942029, "value_uncond": 2.639037005687939e-05}, {"x": -6.521739130434782, "y": 4.492753623188406, "x2": -6.231884057971015, "y2": 4.782608695652174, "center_x": -6.3768115942028984, "center_y": 4.63768115942029, "value_uncond": 3.72082723206778e-05}, {"x": -6.231884057971014, "y": 4.492753623188406, "x2": -5.942028985507246, "y2": 4.782608695652174, "center_x": -6.08695652173913, "center_y": 4.63768115942029, "value_uncond": 5.197318650728187e-05}, {"x": -5.942028985507246, "y": 4.492753623188406, "x2": -5.6521739130434785, "y2": 4.782608695652174, "center_x": -5.797101449275362, "center_y": 4.63768115942029, "value_uncond": 7.192253702740012e-05}, {"x": -5.6521739130434785, "y": 4.492753623188406, "x2": -5.362318840579711, "y2": 4.782608695652174, "center_x": -5.507246376811595, "center_y": 4.63768115942029, "value_uncond": 9.860443910577588e-05}, {"x": -5.36231884057971, "y": 4.492753623188406, "x2": -5.072463768115942, "y2": 4.782608695652174, "center_x": -5.217391304347826, "center_y": 4.63768115942029, "value_uncond": 0.00013392872985047388}, {"x": -5.0724637681159415, "y": 4.492753623188406, "x2": -4.782608695652174, "y2": 4.782608695652174, "center_x": -4.927536231884058, "center_y": 4.63768115942029, "value_uncond": 0.00018021745307357436}, {"x": -4.782608695652174, "y": 4.492753623188406, "x2": -4.492753623188406, "y2": 4.782608695652174, "center_x": -4.63768115942029, "center_y": 4.63768115942029, "value_uncond": 0.00024025130750437475}, {"x": -4.492753623188405, "y": 4.492753623188406, "x2": -4.202898550724638, "y2": 4.782608695652174, "center_x": -4.3478260869565215, "center_y": 4.63768115942029, "value_uncond": 0.00031730760901551403}, {"x": -4.202898550724638, "y": 4.492753623188406, "x2": -3.91304347826087, "y2": 4.782608695652174, "center_x": -4.057971014492754, "center_y": 4.63768115942029, "value_uncond": 0.0004151844006745436}, {"x": -3.913043478260869, "y": 4.492753623188406, "x2": -3.6231884057971016, "y2": 4.782608695652174, "center_x": -3.7681159420289854, "center_y": 4.63768115942029, "value_uncond": 0.000538204573064586}, {"x": -3.6231884057971016, "y": 4.492753623188406, "x2": -3.333333333333334, "y2": 4.782608695652174, "center_x": -3.4782608695652177, "center_y": 4.63768115942029, "value_uncond": 0.0006911933544386626}, {"x": -3.333333333333333, "y": 4.492753623188406, "x2": -3.0434782608695654, "y2": 4.782608695652174, "center_x": -3.1884057971014492, "center_y": 4.63768115942029, "value_uncond": 0.0008794224310223179}, {"x": -3.0434782608695645, "y": 4.492753623188406, "x2": -2.753623188405797, "y2": 4.782608695652174, "center_x": -2.8985507246376807, "center_y": 4.63768115942029, "value_uncond": 0.0011085143975633734}, {"x": -2.753623188405797, "y": 4.492753623188406, "x2": -2.4637681159420293, "y2": 4.782608695652174, "center_x": -2.608695652173913, "center_y": 4.63768115942029, "value_uncond": 0.0013843023371089397}, {"x": -2.4637681159420284, "y": 4.492753623188406, "x2": -2.1739130434782608, "y2": 4.782608695652174, "center_x": -2.3188405797101446, "center_y": 4.63768115942029, "value_uncond": 0.0017126411732490121}, {"x": -2.1739130434782608, "y": 4.492753623188406, "x2": -1.8840579710144931, "y2": 4.782608695652174, "center_x": -2.028985507246377, "center_y": 4.63768115942029, "value_uncond": 0.002099170060588626}, {"x": -1.8840579710144922, "y": 4.492753623188406, "x2": -1.5942028985507246, "y2": 4.782608695652174, "center_x": -1.7391304347826084, "center_y": 4.63768115942029, "value_uncond": 0.0025490284410144945}, {"x": -1.5942028985507246, "y": 4.492753623188406, "x2": -1.304347826086957, "y2": 4.782608695652174, "center_x": -1.4492753623188408, "center_y": 4.63768115942029, "value_uncond": 0.00306653236902547}, {"x": -1.304347826086957, "y": 4.492753623188406, "x2": -1.0144927536231894, "y2": 4.782608695652174, "center_x": -1.1594202898550732, "center_y": 4.63768115942029, "value_uncond": 0.003654822079610475}, {"x": -1.0144927536231876, "y": 4.492753623188406, "x2": -0.72463768115942, "y2": 4.782608695652174, "center_x": -0.8695652173913038, "center_y": 4.63768115942029, "value_uncond": 0.004315496225559185}, {"x": -0.72463768115942, "y": 4.492753623188406, "x2": -0.43478260869565233, "y2": 4.782608695652174, "center_x": -0.5797101449275361, "center_y": 4.63768115942029, "value_uncond": 0.005048252358228621}, {"x": -0.43478260869565233, "y": 4.492753623188406, "x2": -0.1449275362318847, "y2": 4.782608695652174, "center_x": -0.2898550724637685, "center_y": 4.63768115942029, "value_uncond": 0.005850556625482321}, {"x": -0.14492753623188293, "y": 4.492753623188406, "x2": 0.1449275362318847, "y2": 4.782608695652174, "center_x": 8.881784197001252e-16, "center_y": 4.63768115942029, "value_uncond": 0.0067173678581270435}, {"x": 0.1449275362318847, "y": 4.492753623188406, "x2": 0.43478260869565233, "y2": 4.782608695652174, "center_x": 0.2898550724637685, "center_y": 4.63768115942029, "value_uncond": 0.007640941791173754}, {"x": 0.43478260869565233, "y": 4.492753623188406, "x2": 0.72463768115942, "y2": 4.782608695652174, "center_x": 0.5797101449275361, "center_y": 4.63768115942029, "value_uncond": 0.008610739784765228}, {"x": 0.72463768115942, "y": 4.492753623188406, "x2": 1.0144927536231876, "y2": 4.782608695652174, "center_x": 0.8695652173913038, "center_y": 4.63768115942029, "value_uncond": 0.00961346287597533}, {"x": 1.0144927536231894, "y": 4.492753623188406, "x2": 1.304347826086957, "y2": 4.782608695652174, "center_x": 1.1594202898550732, "center_y": 4.63768115942029, "value_uncond": 0.010633226293254413}, {"x": 1.304347826086957, "y": 4.492753623188406, "x2": 1.5942028985507246, "y2": 4.782608695652174, "center_x": 1.4492753623188408, "center_y": 4.63768115942029, "value_uncond": 0.011651881897623518}, {"x": 1.5942028985507246, "y": 4.492753623188406, "x2": 1.8840579710144922, "y2": 4.782608695652174, "center_x": 1.7391304347826084, "center_y": 4.63768115942029, "value_uncond": 0.012649486796134982}, {"x": 1.884057971014494, "y": 4.492753623188406, "x2": 2.1739130434782616, "y2": 4.782608695652174, "center_x": 2.028985507246378, "center_y": 4.63768115942029, "value_uncond": 0.013604906224710316}, {"x": 2.1739130434782616, "y": 4.492753623188406, "x2": 2.4637681159420293, "y2": 4.782608695652174, "center_x": 2.3188405797101455, "center_y": 4.63768115942029, "value_uncond": 0.014496528502307806}, {"x": 2.4637681159420293, "y": 4.492753623188406, "x2": 2.753623188405797, "y2": 4.782608695652174, "center_x": 2.608695652173913, "center_y": 4.63768115942029, "value_uncond": 0.015303060296095244}, {"x": 2.753623188405797, "y": 4.492753623188406, "x2": 3.0434782608695645, "y2": 4.782608695652174, "center_x": 2.8985507246376807, "center_y": 4.63768115942029, "value_uncond": 0.016004362500665503}, {"x": 3.0434782608695663, "y": 4.492753623188406, "x2": 3.333333333333334, "y2": 4.782608695652174, "center_x": 3.18840579710145, "center_y": 4.63768115942029, "value_uncond": 0.01658228153635001}, {"x": 3.333333333333334, "y": 4.492753623188406, "x2": 3.6231884057971016, "y2": 4.782608695652174, "center_x": 3.4782608695652177, "center_y": 4.63768115942029, "value_uncond": 0.017021428454017287}, {"x": 3.6231884057971016, "y": 4.492753623188406, "x2": 3.913043478260869, "y2": 4.782608695652174, "center_x": 3.7681159420289854, "center_y": 4.63768115942029, "value_uncond": 0.01730985928775613}, {"x": 3.913043478260871, "y": 4.492753623188406, "x2": 4.202898550724639, "y2": 4.782608695652174, "center_x": 4.057971014492755, "center_y": 4.63768115942029, "value_uncond": 0.017439614707921755}, {"x": 4.202898550724639, "y": 4.492753623188406, "x2": 4.492753623188406, "y2": 4.782608695652174, "center_x": 4.347826086956522, "center_y": 4.63768115942029, "value_uncond": 0.017407084950367555}, {"x": 4.492753623188406, "y": 4.492753623188406, "x2": 4.782608695652174, "y2": 4.782608695652174, "center_x": 4.63768115942029, "center_y": 4.63768115942029, "value_uncond": 0.017213176670088596}, {"x": 4.782608695652174, "y": 4.492753623188406, "x2": 5.0724637681159415, "y2": 4.782608695652174, "center_x": 4.927536231884058, "center_y": 4.63768115942029, "value_uncond": 0.016863270955172423}, {"x": 5.072463768115943, "y": 4.492753623188406, "x2": 5.362318840579711, "y2": 4.782608695652174, "center_x": 5.217391304347827, "center_y": 4.63768115942029, "value_uncond": 0.016366975214692422}, {"x": 5.362318840579711, "y": 4.492753623188406, "x2": 5.6521739130434785, "y2": 4.782608695652174, "center_x": 5.507246376811595, "center_y": 4.63768115942029, "value_uncond": 0.015737684907116793}, {"x": 5.6521739130434785, "y": 4.492753623188406, "x2": 5.942028985507246, "y2": 4.782608695652174, "center_x": 5.797101449275362, "center_y": 4.63768115942029, "value_uncond": 0.014991983011760197}, {"x": 5.942028985507246, "y": 4.492753623188406, "x2": 6.231884057971014, "y2": 4.782608695652174, "center_x": 6.08695652173913, "center_y": 4.63768115942029, "value_uncond": 0.014148914804956699}, {"x": 6.2318840579710155, "y": 4.492753623188406, "x2": 6.521739130434783, "y2": 4.782608695652174, "center_x": 6.376811594202899, "center_y": 4.63768115942029, "value_uncond": 0.01322918215151925}, {"x": 6.521739130434785, "y": 4.492753623188406, "x2": 6.8115942028985526, "y2": 4.782608695652174, "center_x": 6.666666666666669, "center_y": 4.63768115942029, "value_uncond": 0.01225430472105531}, {"x": 6.811594202898551, "y": 4.492753623188406, "x2": 7.101449275362318, "y2": 4.782608695652174, "center_x": 6.956521739130435, "center_y": 4.63768115942029, "value_uncond": 0.011245795175755779}, {"x": 7.10144927536232, "y": 4.492753623188406, "x2": 7.391304347826088, "y2": 4.782608695652174, "center_x": 7.246376811594204, "center_y": 4.63768115942029, "value_uncond": 0.01022439166395793}, {"x": 7.391304347826086, "y": 4.492753623188406, "x2": 7.681159420289854, "y2": 4.782608695652174, "center_x": 7.53623188405797, "center_y": 4.63768115942029, "value_uncond": 0.009209384391785931}, {"x": 7.681159420289855, "y": 4.492753623188406, "x2": 7.971014492753623, "y2": 4.782608695652174, "center_x": 7.826086956521739, "center_y": 4.63768115942029, "value_uncond": 0.008218064354132682}, {"x": 7.971014492753625, "y": 4.492753623188406, "x2": 8.260869565217392, "y2": 4.782608695652174, "center_x": 8.115942028985508, "center_y": 4.63768115942029, "value_uncond": 0.00726531234239662}, {"x": 8.26086956521739, "y": 4.492753623188406, "x2": 8.550724637681158, "y2": 4.782608695652174, "center_x": 8.405797101449274, "center_y": 4.63768115942029, "value_uncond": 0.00636333600807103}, {"x": 8.55072463768116, "y": 4.492753623188406, "x2": 8.840579710144928, "y2": 4.782608695652174, "center_x": 8.695652173913043, "center_y": 4.63768115942029, "value_uncond": 0.005521552898678561}, {"x": 8.84057971014493, "y": 4.492753623188406, "x2": 9.130434782608697, "y2": 4.782608695652174, "center_x": 8.985507246376812, "center_y": 4.63768115942029, "value_uncond": 0.004746608720542591}, {"x": 9.130434782608695, "y": 4.492753623188406, "x2": 9.420289855072463, "y2": 4.782608695652174, "center_x": 9.275362318840578, "center_y": 4.63768115942029, "value_uncond": 0.004042513164657964}, {"x": 9.420289855072465, "y": 4.492753623188406, "x2": 9.710144927536232, "y2": 4.782608695652174, "center_x": 9.565217391304348, "center_y": 4.63768115942029, "value_uncond": 0.0034108707873688354}, {"x": 9.710144927536234, "y": 4.492753623188406, "x2": 10.000000000000002, "y2": 4.782608695652174, "center_x": 9.855072463768117, "center_y": 4.63768115942029, "value_uncond": 0.002851181777457206}, {"x": 10.0, "y": 4.492753623188406, "x2": 10.289855072463768, "y2": 4.782608695652174, "center_x": 10.144927536231883, "center_y": 4.63768115942029, "value_uncond": 0.0023611868746731966}, {"x": -10.0, "y": 4.782608695652174, "x2": -9.710144927536232, "y2": 5.0724637681159415, "center_x": -9.855072463768117, "center_y": 4.927536231884058, "value_uncond": 3.1901841847480727e-07}, {"x": -9.710144927536232, "y": 4.782608695652174, "x2": -9.420289855072465, "y2": 5.0724637681159415, "center_x": -9.565217391304348, "center_y": 4.927536231884058, "value_uncond": 4.984318919345294e-07}, {"x": -9.420289855072463, "y": 4.782608695652174, "x2": -9.130434782608695, "y2": 5.0724637681159415, "center_x": -9.275362318840578, "center_y": 4.927536231884058, "value_uncond": 7.715102533239665e-07}, {"x": -9.130434782608695, "y": 4.782608695652174, "x2": -8.840579710144928, "y2": 5.0724637681159415, "center_x": -8.985507246376812, "center_y": 4.927536231884058, "value_uncond": 1.1831052900523056e-06}, {"x": -8.840579710144928, "y": 4.782608695652174, "x2": -8.55072463768116, "y2": 5.0724637681159415, "center_x": -8.695652173913043, "center_y": 4.927536231884058, "value_uncond": 1.7974255253065148e-06}, {"x": -8.55072463768116, "y": 4.782608695652174, "x2": -8.260869565217392, "y2": 5.0724637681159415, "center_x": -8.405797101449277, "center_y": 4.927536231884058, "value_uncond": 2.705354788997938e-06}, {"x": -8.26086956521739, "y": 4.782608695652174, "x2": -7.971014492753623, "y2": 5.0724637681159415, "center_x": -8.115942028985508, "center_y": 4.927536231884058, "value_uncond": 4.034069403006746e-06}, {"x": -7.971014492753623, "y": 4.782608695652174, "x2": -7.681159420289855, "y2": 5.0724637681159415, "center_x": -7.826086956521739, "center_y": 4.927536231884058, "value_uncond": 5.9594793307608665e-06}, {"x": -7.681159420289855, "y": 4.782608695652174, "x2": -7.391304347826088, "y2": 5.0724637681159415, "center_x": -7.536231884057972, "center_y": 4.927536231884058, "value_uncond": 8.72206029521493e-06}, {"x": -7.391304347826087, "y": 4.782608695652174, "x2": -7.101449275362319, "y2": 5.0724637681159415, "center_x": -7.246376811594203, "center_y": 4.927536231884058, "value_uncond": 1.2646654845922255e-05}, {"x": -7.101449275362318, "y": 4.782608695652174, "x2": -6.811594202898551, "y2": 5.0724637681159415, "center_x": -6.956521739130435, "center_y": 4.927536231884058, "value_uncond": 1.8166784384993456e-05}, {"x": -6.811594202898551, "y": 4.782608695652174, "x2": -6.521739130434783, "y2": 5.0724637681159415, "center_x": -6.666666666666667, "center_y": 4.927536231884058, "value_uncond": 2.585391234900603e-05}, {"x": -6.521739130434782, "y": 4.782608695652174, "x2": -6.231884057971015, "y2": 5.0724637681159415, "center_x": -6.3768115942028984, "center_y": 4.927536231884058, "value_uncond": 3.6451910646322456e-05}, {"x": -6.231884057971014, "y": 4.782608695652174, "x2": -5.942028985507246, "y2": 5.0724637681159415, "center_x": -6.08695652173913, "center_y": 4.927536231884058, "value_uncond": 5.0916686865765747e-05}, {"x": -5.942028985507246, "y": 4.782608695652174, "x2": -5.6521739130434785, "y2": 5.0724637681159415, "center_x": -5.797101449275362, "center_y": 4.927536231884058, "value_uncond": 7.046051132351661e-05}, {"x": -5.6521739130434785, "y": 4.782608695652174, "x2": -5.362318840579711, "y2": 5.0724637681159415, "center_x": -5.507246376811595, "center_y": 4.927536231884058, "value_uncond": 9.66000294944361e-05}, {"x": -5.36231884057971, "y": 4.782608695652174, "x2": -5.072463768115942, "y2": 5.0724637681159415, "center_x": -5.217391304347826, "center_y": 4.927536231884058, "value_uncond": 0.00013120625573286498}, {"x": -5.0724637681159415, "y": 4.782608695652174, "x2": -4.782608695652174, "y2": 5.0724637681159415, "center_x": -4.927536231884058, "center_y": 4.927536231884058, "value_uncond": 0.00017655403184885295}, {"x": -4.782608695652174, "y": 4.782608695652174, "x2": -4.492753623188406, "y2": 5.0724637681159415, "center_x": -4.63768115942029, "center_y": 4.927536231884058, "value_uncond": 0.00023536753113217578}, {"x": -4.492753623188405, "y": 4.782608695652174, "x2": -4.202898550724638, "y2": 5.0724637681159415, "center_x": -4.3478260869565215, "center_y": 4.927536231884058, "value_uncond": 0.0003108574488905761}, {"x": -4.202898550724638, "y": 4.782608695652174, "x2": -3.91304347826087, "y2": 5.0724637681159415, "center_x": -4.057971014492754, "center_y": 4.927536231884058, "value_uncond": 0.00040674462239744533}, {"x": -3.913043478260869, "y": 4.782608695652174, "x2": -3.6231884057971016, "y2": 5.0724637681159415, "center_x": -3.7681159420289854, "center_y": 4.927536231884058, "value_uncond": 0.0005272640674554986}, {"x": -3.6231884057971016, "y": 4.782608695652174, "x2": -3.333333333333334, "y2": 5.0724637681159415, "center_x": -3.4782608695652177, "center_y": 4.927536231884058, "value_uncond": 0.0006771429261263549}, {"x": -3.333333333333333, "y": 4.782608695652174, "x2": -3.0434782608695654, "y2": 5.0724637681159415, "center_x": -3.1884057971014492, "center_y": 4.927536231884058, "value_uncond": 0.0008615457229435064}, {"x": -3.0434782608695645, "y": 4.782608695652174, "x2": -2.753623188405797, "y2": 5.0724637681159415, "center_x": -2.8985507246376807, "center_y": 4.927536231884058, "value_uncond": 0.001085980757770534}, {"x": -2.753623188405797, "y": 4.782608695652174, "x2": -2.4637681159420293, "y2": 5.0724637681159415, "center_x": -2.608695652173913, "center_y": 4.927536231884058, "value_uncond": 0.0013561625400098994}, {"x": -2.4637681159420284, "y": 4.782608695652174, "x2": -2.1739130434782608, "y2": 5.0724637681159415, "center_x": -2.3188405797101446, "center_y": 4.927536231884058, "value_uncond": 0.001677826975637138}, {"x": -2.1739130434782608, "y": 4.782608695652174, "x2": -1.8840579710144931, "y2": 5.0724637681159415, "center_x": -2.028985507246377, "center_y": 4.927536231884058, "value_uncond": 0.0020564985877478664}, {"x": -1.8840579710144922, "y": 4.782608695652174, "x2": -1.5942028985507246, "y2": 5.0724637681159415, "center_x": -1.7391304347826084, "center_y": 4.927536231884058, "value_uncond": 0.0024972123447709275}, {"x": -1.5942028985507246, "y": 4.782608695652174, "x2": -1.304347826086957, "y2": 5.0724637681159415, "center_x": -1.4492753623188408, "center_y": 4.927536231884058, "value_uncond": 0.003004196565387203}, {"x": -1.304347826086957, "y": 4.782608695652174, "x2": -1.0144927536231894, "y2": 5.0724637681159415, "center_x": -1.1594202898550732, "center_y": 4.927536231884058, "value_uncond": 0.0035805276505711356}, {"x": -1.0144927536231876, "y": 4.782608695652174, "x2": -0.72463768115942, "y2": 5.0724637681159415, "center_x": -0.8695652173913038, "center_y": 4.927536231884058, "value_uncond": 0.0042277717560458795}, {"x": -0.72463768115942, "y": 4.782608695652174, "x2": -0.43478260869565233, "y2": 5.0724637681159415, "center_x": -0.5797101449275361, "center_y": 4.927536231884058, "value_uncond": 0.004945632581278748}, {"x": -0.43478260869565233, "y": 4.782608695652174, "x2": -0.1449275362318847, "y2": 5.0724637681159415, "center_x": -0.2898550724637685, "center_y": 4.927536231884058, "value_uncond": 0.005731627781728902}, {"x": -0.14492753623188293, "y": 4.782608695652174, "x2": 0.1449275362318847, "y2": 5.0724637681159415, "center_x": 8.881784197001252e-16, "center_y": 4.927536231884058, "value_uncond": 0.006580818663995012}, {"x": 0.1449275362318847, "y": 4.782608695652174, "x2": 0.43478260869565233, "y2": 5.0724637681159415, "center_x": 0.2898550724637685, "center_y": 4.927536231884058, "value_uncond": 0.0074856183868239065}, {"x": 0.43478260869565233, "y": 4.782608695652174, "x2": 0.72463768115942, "y2": 5.0724637681159415, "center_x": 0.5797101449275361, "center_y": 4.927536231884058, "value_uncond": 0.008435702537539325}, {"x": 0.72463768115942, "y": 4.782608695652174, "x2": 1.0144927536231876, "y2": 5.0724637681159415, "center_x": 0.8695652173913038, "center_y": 4.927536231884058, "value_uncond": 0.009418042491643623}, {"x": 1.0144927536231894, "y": 4.782608695652174, "x2": 1.304347826086957, "y2": 5.0724637681159415, "center_x": 1.1594202898550732, "center_y": 4.927536231884058, "value_uncond": 0.010417076379771448}, {"x": 1.304347826086957, "y": 4.782608695652174, "x2": 1.5942028985507246, "y2": 5.0724637681159415, "center_x": 1.4492753623188408, "center_y": 4.927536231884058, "value_uncond": 0.011415024974369399}, {"x": 1.5942028985507246, "y": 4.782608695652174, "x2": 1.8840579710144922, "y2": 5.0724637681159415, "center_x": 1.7391304347826084, "center_y": 4.927536231884058, "value_uncond": 0.012392350777284051}, {"x": 1.884057971014494, "y": 4.782608695652174, "x2": 2.1739130434782616, "y2": 5.0724637681159415, "center_x": 2.028985507246378, "center_y": 4.927536231884058, "value_uncond": 0.013328348647328505}, {"x": 2.1739130434782616, "y": 4.782608695652174, "x2": 2.4637681159420293, "y2": 5.0724637681159415, "center_x": 2.3188405797101455, "center_y": 4.927536231884058, "value_uncond": 0.014201846221017042}, {"x": 2.4637681159420293, "y": 4.782608695652174, "x2": 2.753623188405797, "y2": 5.0724637681159415, "center_x": 2.608695652173913, "center_y": 4.927536231884058, "value_uncond": 0.014991983011760199}, {"x": 2.753623188405797, "y": 4.782608695652174, "x2": 3.0434782608695645, "y2": 5.0724637681159415, "center_x": 2.8985507246376807, "center_y": 4.927536231884058, "value_uncond": 0.015679029297509334}, {"x": 3.0434782608695663, "y": 4.782608695652174, "x2": 3.333333333333334, "y2": 5.0724637681159415, "center_x": 3.18840579710145, "center_y": 4.927536231884058, "value_uncond": 0.016245200520618588}, {"x": 3.333333333333334, "y": 4.782608695652174, "x2": 3.6231884057971016, "y2": 5.0724637681159415, "center_x": 3.4782608695652177, "center_y": 4.927536231884058, "value_uncond": 0.01667542055517041}, {"x": 3.6231884057971016, "y": 4.782608695652174, "x2": 3.913043478260869, "y2": 5.0724637681159415, "center_x": 3.7681159420289854, "center_y": 4.927536231884058, "value_uncond": 0.0169579882295972}, {"x": 3.913043478260871, "y": 4.782608695652174, "x2": 4.202898550724639, "y2": 5.0724637681159415, "center_x": 4.057971014492755, "center_y": 4.927536231884058, "value_uncond": 0.017085106009777626}, {"x": 4.202898550724639, "y": 4.782608695652174, "x2": 4.492753623188406, "y2": 5.0724637681159415, "center_x": 4.347826086956522, "center_y": 4.927536231884058, "value_uncond": 0.017053237510066252}, {"x": 4.492753623188406, "y": 4.782608695652174, "x2": 4.782608695652174, "y2": 5.0724637681159415, "center_x": 4.63768115942029, "center_y": 4.927536231884058, "value_uncond": 0.016863270955172423}, {"x": 4.782608695652174, "y": 4.782608695652174, "x2": 5.0724637681159415, "y2": 5.0724637681159415, "center_x": 4.927536231884058, "center_y": 4.927536231884058, "value_uncond": 0.016520478047594347}, {"x": 5.072463768115943, "y": 4.782608695652174, "x2": 5.362318840579711, "y2": 5.0724637681159415, "center_x": 5.217391304347827, "center_y": 4.927536231884058, "value_uncond": 0.01603427089908147}, {"x": 5.362318840579711, "y": 4.782608695652174, "x2": 5.6521739130434785, "y2": 5.0724637681159415, "center_x": 5.507246376811595, "center_y": 4.927536231884058, "value_uncond": 0.015417772668133083}, {"x": 5.6521739130434785, "y": 4.782608695652174, "x2": 5.942028985507246, "y2": 5.0724637681159415, "center_x": 5.797101449275362, "center_y": 4.927536231884058, "value_uncond": 0.014687229238863838}, {"x": 5.942028985507246, "y": 4.782608695652174, "x2": 6.231884057971014, "y2": 5.0724637681159415, "center_x": 6.08695652173913, "center_y": 4.927536231884058, "value_uncond": 0.013861298739369025}, {"x": 6.2318840579710155, "y": 4.782608695652174, "x2": 6.521739130434783, "y2": 5.0724637681159415, "center_x": 6.376811594202899, "center_y": 4.927536231884058, "value_uncond": 0.012960262211452207}, {"x": 6.521739130434785, "y": 4.782608695652174, "x2": 6.8115942028985526, "y2": 5.0724637681159415, "center_x": 6.666666666666669, "center_y": 4.927536231884058, "value_uncond": 0.012005201877553301}, {"x": 6.811594202898551, "y": 4.782608695652174, "x2": 7.101449275362318, "y2": 5.0724637681159415, "center_x": 6.956521739130435, "center_y": 4.927536231884058, "value_uncond": 0.011017193095140902}, {"x": 7.10144927536232, "y": 4.782608695652174, "x2": 7.391304347826088, "y2": 5.0724637681159415, "center_x": 7.246376811594204, "center_y": 4.927536231884058, "value_uncond": 0.010016552451979297}, {"x": 7.391304347826086, "y": 4.782608695652174, "x2": 7.681159420289854, "y2": 5.0724637681159415, "center_x": 7.53623188405797, "center_y": 4.927536231884058, "value_uncond": 0.009022178027074335}, {"x": 7.681159420289855, "y": 4.782608695652174, "x2": 7.971014492753623, "y2": 5.0724637681159415, "center_x": 7.826086956521739, "center_y": 4.927536231884058, "value_uncond": 0.008051009327732077}, {"x": 7.971014492753625, "y": 4.782608695652174, "x2": 8.260869565217392, "y2": 5.0724637681159415, "center_x": 8.115942028985508, "center_y": 4.927536231884058, "value_uncond": 0.007117624651857015}, {"x": 8.26086956521739, "y": 4.782608695652174, "x2": 8.550724637681158, "y2": 5.0724637681159415, "center_x": 8.405797101449274, "center_y": 4.927536231884058, "value_uncond": 0.00623398349645561}, {"x": 8.55072463768116, "y": 4.782608695652174, "x2": 8.840579710144928, "y2": 5.0724637681159415, "center_x": 8.695652173913043, "center_y": 4.927536231884058, "value_uncond": 0.005409311971190908}, {"x": 8.84057971014493, "y": 4.782608695652174, "x2": 9.130434782608697, "y2": 5.0724637681159415, "center_x": 8.985507246376812, "center_y": 4.927536231884058, "value_uncond": 0.004650120689912261}, {"x": 9.130434782608695, "y": 4.782608695652174, "x2": 9.420289855072463, "y2": 5.0724637681159415, "center_x": 9.275362318840578, "center_y": 4.927536231884058, "value_uncond": 0.003960337835487279}, {"x": 9.420289855072465, "y": 4.782608695652174, "x2": 9.710144927536232, "y2": 5.0724637681159415, "center_x": 9.565217391304348, "center_y": 4.927536231884058, "value_uncond": 0.0033415353471874256}, {"x": 9.710144927536234, "y": 4.782608695652174, "x2": 10.000000000000002, "y2": 5.0724637681159415, "center_x": 9.855072463768117, "center_y": 4.927536231884058, "value_uncond": 0.0027932235738485287}, {"x": 10.0, "y": 4.782608695652174, "x2": 10.289855072463768, "y2": 5.0724637681159415, "center_x": 10.144927536231883, "center_y": 4.927536231884058, "value_uncond": 0.002313189180972133}, {"x": -10.0, "y": 5.072463768115943, "x2": -9.710144927536232, "y2": 5.362318840579711, "center_x": -9.855072463768117, "center_y": 5.217391304347827, "value_uncond": 3.096295233639719e-07}, {"x": -9.710144927536232, "y": 5.072463768115943, "x2": -9.420289855072465, "y2": 5.362318840579711, "center_x": -9.565217391304348, "center_y": 5.217391304347827, "value_uncond": 4.837627553509998e-07}, {"x": -9.420289855072463, "y": 5.072463768115943, "x2": -9.130434782608695, "y2": 5.362318840579711, "center_x": -9.275362318840578, "center_y": 5.217391304347827, "value_uncond": 7.488042638703676e-07}, {"x": -9.130434782608695, "y": 5.072463768115943, "x2": -8.840579710144928, "y2": 5.362318840579711, "center_x": -8.985507246376812, "center_y": 5.217391304347827, "value_uncond": 1.1482858224915232e-06}, {"x": -8.840579710144928, "y": 5.072463768115943, "x2": -8.55072463768116, "y2": 5.362318840579711, "center_x": -8.695652173913043, "center_y": 5.217391304347827, "value_uncond": 1.7445262607207185e-06}, {"x": -8.55072463768116, "y": 5.072463768115943, "x2": -8.260869565217392, "y2": 5.362318840579711, "center_x": -8.405797101449277, "center_y": 5.217391304347827, "value_uncond": 2.625734645205194e-06}, {"x": -8.26086956521739, "y": 5.072463768115943, "x2": -7.971014492753623, "y2": 5.362318840579711, "center_x": -8.115942028985508, "center_y": 5.217391304347827, "value_uncond": 3.915344425697475e-06}, {"x": -7.971014492753623, "y": 5.072463768115943, "x2": -7.681159420289855, "y2": 5.362318840579711, "center_x": -7.826086956521739, "center_y": 5.217391304347827, "value_uncond": 5.7840884344633715e-06}, {"x": -7.681159420289855, "y": 5.072463768115943, "x2": -7.391304347826088, "y2": 5.362318840579711, "center_x": -7.536231884057972, "center_y": 5.217391304347827, "value_uncond": 8.465365055944217e-06}, {"x": -7.391304347826087, "y": 5.072463768115943, "x2": -7.101449275362319, "y2": 5.362318840579711, "center_x": -7.246376811594203, "center_y": 5.217391304347827, "value_uncond": 1.227445653706292e-05}, {"x": -7.101449275362318, "y": 5.072463768115943, "x2": -6.811594202898551, "y2": 5.362318840579711, "center_x": -6.956521739130435, "center_y": 5.217391304347827, "value_uncond": 1.7632125496308203e-05}, {"x": -6.811594202898551, "y": 5.072463768115943, "x2": -6.521739130434783, "y2": 5.362318840579711, "center_x": -6.666666666666667, "center_y": 5.217391304347827, "value_uncond": 2.5093016873409156e-05}, {"x": -6.521739130434782, "y": 5.072463768115943, "x2": -6.231884057971015, "y2": 5.362318840579711, "center_x": -6.3768115942028984, "center_y": 5.217391304347827, "value_uncond": 3.537910999962595e-05}, {"x": -6.231884057971014, "y": 5.072463768115943, "x2": -5.942028985507246, "y2": 5.362318840579711, "center_x": -6.08695652173913, "center_y": 5.217391304347827, "value_uncond": 4.941817955493573e-05}, {"x": -5.942028985507246, "y": 5.072463768115943, "x2": -5.6521739130434785, "y2": 5.362318840579711, "center_x": -5.797101449275362, "center_y": 5.217391304347827, "value_uncond": 6.838681804450433e-05}, {"x": -5.6521739130434785, "y": 5.072463768115943, "x2": -5.362318840579711, "y2": 5.362318840579711, "center_x": -5.507246376811595, "center_y": 5.217391304347827, "value_uncond": 9.37570351966053e-05}, {"x": -5.36231884057971, "y": 5.072463768115943, "x2": -5.072463768115942, "y2": 5.362318840579711, "center_x": -5.217391304347826, "center_y": 5.217391304347827, "value_uncond": 0.00012734478033952931}, {"x": -5.0724637681159415, "y": 5.072463768115943, "x2": -4.782608695652174, "y2": 5.362318840579711, "center_x": -4.927536231884058, "center_y": 5.217391304347827, "value_uncond": 0.00017135794538353534}, {"x": -4.782608695652174, "y": 5.072463768115943, "x2": -4.492753623188406, "y2": 5.362318840579711, "center_x": -4.63768115942029, "center_y": 5.217391304347827, "value_uncond": 0.00022844052963533022}, {"x": -4.492753623188405, "y": 5.072463768115943, "x2": -4.202898550724638, "y2": 5.362318840579711, "center_x": -4.3478260869565215, "center_y": 5.217391304347827, "value_uncond": 0.00030170873579742915}, {"x": -4.202898550724638, "y": 5.072463768115943, "x2": -3.91304347826087, "y2": 5.362318840579711, "center_x": -4.057971014492754, "center_y": 5.217391304347827, "value_uncond": 0.0003947738947672235}, {"x": -3.913043478260869, "y": 5.072463768115943, "x2": -3.6231884057971016, "y2": 5.362318840579711, "center_x": -3.7681159420289854, "center_y": 5.217391304347827, "value_uncond": 0.0005117463834022716}, {"x": -3.6231884057971016, "y": 5.072463768115943, "x2": -3.333333333333334, "y2": 5.362318840579711, "center_x": -3.4782608695652177, "center_y": 5.217391304347827, "value_uncond": 0.0006572142212608497}, {"x": -3.333333333333333, "y": 5.072463768115943, "x2": -3.0434782608695654, "y2": 5.362318840579711, "center_x": -3.1884057971014492, "center_y": 5.217391304347827, "value_uncond": 0.0008361899379559874}, {"x": -3.0434782608695645, "y": 5.072463768115943, "x2": -2.753623188405797, "y2": 5.362318840579711, "center_x": -2.8985507246376807, "center_y": 5.217391304347827, "value_uncond": 0.0010540197209255768}, {"x": -2.753623188405797, "y": 5.072463768115943, "x2": -2.4637681159420293, "y2": 5.362318840579711, "center_x": -2.608695652173913, "center_y": 5.217391304347827, "value_uncond": 0.0013162498982813378}, {"x": -2.4637681159420284, "y": 5.072463768115943, "x2": -2.1739130434782608, "y2": 5.362318840579711, "center_x": -2.3188405797101446, "center_y": 5.217391304347827, "value_uncond": 0.0016284475649946408}, {"x": -2.1739130434782608, "y": 5.072463768115943, "x2": -1.8840579710144931, "y2": 5.362318840579711, "center_x": -2.028985507246377, "center_y": 5.217391304347827, "value_uncond": 0.001995974654276386}, {"x": -1.8840579710144922, "y": 5.072463768115943, "x2": -1.5942028985507246, "y2": 5.362318840579711, "center_x": -1.7391304347826084, "center_y": 5.217391304347827, "value_uncond": 0.0024237179525454537}, {"x": -1.5942028985507246, "y": 5.072463768115943, "x2": -1.304347826086957, "y2": 5.362318840579711, "center_x": -1.4492753623188408, "center_y": 5.217391304347827, "value_uncond": 0.002915781336637707}, {"x": -1.304347826086957, "y": 5.072463768115943, "x2": -1.0144927536231894, "y2": 5.362318840579711, "center_x": -1.1594202898550732, "center_y": 5.217391304347827, "value_uncond": 0.0034751506672816477}, {"x": -1.0144927536231876, "y": 5.072463768115943, "x2": -0.72463768115942, "y2": 5.362318840579711, "center_x": -0.8695652173913038, "center_y": 5.217391304347827, "value_uncond": 0.004103346007338828}, {"x": -0.72463768115942, "y": 5.072463768115943, "x2": -0.43478260869565233, "y2": 5.362318840579711, "center_x": -0.5797101449275361, "center_y": 5.217391304347827, "value_uncond": 0.004800079776571257}, {"x": -0.43478260869565233, "y": 5.072463768115943, "x2": -0.1449275362318847, "y2": 5.362318840579711, "center_x": -0.2898550724637685, "center_y": 5.217391304347827, "value_uncond": 0.005562942687262318}, {"x": -0.14492753623188293, "y": 5.072463768115943, "x2": 0.1449275362318847, "y2": 5.362318840579711, "center_x": 8.881784197001252e-16, "center_y": 5.217391304347827, "value_uncond": 0.006387141394591343}, {"x": 0.1449275362318847, "y": 5.072463768115943, "x2": 0.43478260869565233, "y2": 5.362318840579711, "center_x": 0.2898550724637685, "center_y": 5.217391304347827, "value_uncond": 0.007265312342396628}, {"x": 0.43478260869565233, "y": 5.072463768115943, "x2": 0.72463768115942, "y2": 5.362318840579711, "center_x": 0.5797101449275361, "center_y": 5.217391304347827, "value_uncond": 0.008187434971391197}, {"x": 0.72463768115942, "y": 5.072463768115943, "x2": 1.0144927536231876, "y2": 5.362318840579711, "center_x": 0.8695652173913038, "center_y": 5.217391304347827, "value_uncond": 0.009140864096972293}, {"x": 1.0144927536231894, "y": 5.072463768115943, "x2": 1.304347826086957, "y2": 5.362318840579711, "center_x": 1.1594202898550732, "center_y": 5.217391304347827, "value_uncond": 0.0101104958445195}, {"x": 1.304347826086957, "y": 5.072463768115943, "x2": 1.5942028985507246, "y2": 5.362318840579711, "center_x": 1.4492753623188408, "center_y": 5.217391304347827, "value_uncond": 0.01107907423934817}, {"x": 1.5942028985507246, "y": 5.072463768115943, "x2": 1.8840579710144922, "y2": 5.362318840579711, "center_x": 1.7391304347826084, "center_y": 5.217391304347827, "value_uncond": 0.012027636783086286}, {"x": 1.884057971014494, "y": 5.072463768115943, "x2": 2.1739130434782616, "y2": 5.362318840579711, "center_x": 2.028985507246378, "center_y": 5.217391304347827, "value_uncond": 0.012936087698732852}, {"x": 2.1739130434782616, "y": 5.072463768115943, "x2": 2.4637681159420293, "y2": 5.362318840579711, "center_x": 2.3188405797101455, "center_y": 5.217391304347827, "value_uncond": 0.013783877737608382}, {"x": 2.4637681159420293, "y": 5.072463768115943, "x2": 2.753623188405797, "y2": 5.362318840579711, "center_x": 2.608695652173913, "center_y": 5.217391304347827, "value_uncond": 0.014550760349213649}, {"x": 2.753623188405797, "y": 5.072463768115943, "x2": 3.0434782608695645, "y2": 5.362318840579711, "center_x": 2.8985507246376807, "center_y": 5.217391304347827, "value_uncond": 0.01521758646854096}, {"x": 3.0434782608695663, "y": 5.072463768115943, "x2": 3.333333333333334, "y2": 5.362318840579711, "center_x": 3.18840579710145, "center_y": 5.217391304347827, "value_uncond": 0.015767094947680884}, {"x": 3.333333333333334, "y": 5.072463768115943, "x2": 3.6231884057971016, "y2": 5.362318840579711, "center_x": 3.4782608695652177, "center_y": 5.217391304347827, "value_uncond": 0.016184653359752416}, {"x": 3.6231884057971016, "y": 5.072463768115943, "x2": 3.913043478260869, "y2": 5.362318840579711, "center_x": 3.7681159420289854, "center_y": 5.217391304347827, "value_uncond": 0.01645890490538141}, {"x": 3.913043478260871, "y": 5.072463768115943, "x2": 4.202898550724639, "y2": 5.362318840579711, "center_x": 4.057971014492755, "center_y": 5.217391304347827, "value_uncond": 0.016582281536350007}, {"x": 4.202898550724639, "y": 5.072463768115943, "x2": 4.492753623188406, "y2": 5.362318840579711, "center_x": 4.347826086956522, "center_y": 5.217391304347827, "value_uncond": 0.016551350944871517}, {"x": 4.492753623188406, "y": 5.072463768115943, "x2": 4.782608695652174, "y2": 5.362318840579711, "center_x": 4.63768115942029, "center_y": 5.217391304347827, "value_uncond": 0.016366975214692422}, {"x": 4.782608695652174, "y": 5.072463768115943, "x2": 5.0724637681159415, "y2": 5.362318840579711, "center_x": 4.927536231884058, "center_y": 5.217391304347827, "value_uncond": 0.01603427089908147}, {"x": 5.072463768115943, "y": 5.072463768115943, "x2": 5.362318840579711, "y2": 5.362318840579711, "center_x": 5.217391304347827, "center_y": 5.217391304347827, "value_uncond": 0.015562373105938575}, {"x": 5.362318840579711, "y": 5.072463768115943, "x2": 5.6521739130434785, "y2": 5.362318840579711, "center_x": 5.507246376811595, "center_y": 5.217391304347827, "value_uncond": 0.014964018771678233}, {"x": 5.6521739130434785, "y": 5.072463768115943, "x2": 5.942028985507246, "y2": 5.362318840579711, "center_x": 5.797101449275362, "center_y": 5.217391304347827, "value_uncond": 0.014254975654723591}, {"x": 5.942028985507246, "y": 5.072463768115943, "x2": 6.231884057971014, "y2": 5.362318840579711, "center_x": 6.08695652173913, "center_y": 5.217391304347827, "value_uncond": 0.013453352763753925}, {"x": 6.2318840579710155, "y": 5.072463768115943, "x2": 6.521739130434783, "y2": 5.362318840579711, "center_x": 6.376811594202899, "center_y": 5.217391304347827, "value_uncond": 0.012578834257875104}, {"x": 6.521739130434785, "y": 5.072463768115943, "x2": 6.8115942028985526, "y2": 5.362318840579711, "center_x": 6.666666666666669, "center_y": 5.217391304347827, "value_uncond": 0.011651881897623508}, {"x": 6.811594202898551, "y": 5.072463768115943, "x2": 7.101449275362318, "y2": 5.362318840579711, "center_x": 6.956521739130435, "center_y": 5.217391304347827, "value_uncond": 0.010692950780604234}, {"x": 7.10144927536232, "y": 5.072463768115943, "x2": 7.391304347826088, "y2": 5.362318840579711, "center_x": 7.246376811594204, "center_y": 5.217391304347827, "value_uncond": 0.009721759565745856}, {"x": 7.391304347826086, "y": 5.072463768115943, "x2": 7.681159420289854, "y2": 5.362318840579711, "center_x": 7.53623188405797, "center_y": 5.217391304347827, "value_uncond": 0.00875665015074523}, {"x": 7.681159420289855, "y": 5.072463768115943, "x2": 7.971014492753623, "y2": 5.362318840579711, "center_x": 7.826086956521739, "center_y": 5.217391304347827, "value_uncond": 0.007814063503488377}, {"x": 7.971014492753625, "y": 5.072463768115943, "x2": 8.260869565217392, "y2": 5.362318840579711, "center_x": 8.115942028985508, "center_y": 5.217391304347827, "value_uncond": 0.006908148874207331}, {"x": 8.26086956521739, "y": 5.072463768115943, "x2": 8.550724637681158, "y2": 5.362318840579711, "center_x": 8.405797101449274, "center_y": 5.217391304347827, "value_uncond": 0.006050513785049202}, {"x": 8.55072463768116, "y": 5.072463768115943, "x2": 8.840579710144928, "y2": 5.362318840579711, "center_x": 8.695652173913043, "center_y": 5.217391304347827, "value_uncond": 0.005250112815975646}, {"x": 8.84057971014493, "y": 5.072463768115943, "x2": 9.130434782608697, "y2": 5.362318840579711, "center_x": 8.985507246376812, "center_y": 5.217391304347827, "value_uncond": 0.004513264969734587}, {"x": 9.130434782608695, "y": 5.072463768115943, "x2": 9.420289855072463, "y2": 5.362318840579711, "center_x": 9.275362318840578, "center_y": 5.217391304347827, "value_uncond": 0.0038437828205178234}, {"x": 9.420289855072465, "y": 5.072463768115943, "x2": 9.710144927536232, "y2": 5.362318840579711, "center_x": 9.565217391304348, "center_y": 5.217391304347827, "value_uncond": 0.0032431920445220664}, {"x": 9.710144927536234, "y": 5.072463768115943, "x2": 10.000000000000002, "y2": 5.362318840579711, "center_x": 9.855072463768117, "center_y": 5.217391304347827, "value_uncond": 0.0027110174012978747}, {"x": 10.0, "y": 5.072463768115943, "x2": 10.289855072463768, "y2": 5.362318840579711, "center_x": 10.144927536231883, "center_y": 5.217391304347827, "value_uncond": 0.002245110696051106}, {"x": -10.0, "y": 5.362318840579711, "x2": -9.710144927536232, "y2": 5.6521739130434785, "center_x": -9.855072463768117, "center_y": 5.507246376811595, "value_uncond": 2.977246444577404e-07}, {"x": -9.710144927536232, "y": 5.362318840579711, "x2": -9.420289855072465, "y2": 5.6521739130434785, "center_x": -9.565217391304348, "center_y": 5.507246376811595, "value_uncond": 4.6516266528456056e-07}, {"x": -9.420289855072463, "y": 5.362318840579711, "x2": -9.130434782608695, "y2": 5.6521739130434785, "center_x": -9.275362318840578, "center_y": 5.507246376811595, "value_uncond": 7.200136498843506e-07}, {"x": -9.130434782608695, "y": 5.362318840579711, "x2": -8.840579710144928, "y2": 5.6521739130434785, "center_x": -8.985507246376812, "center_y": 5.507246376811595, "value_uncond": 1.1041356280333723e-06}, {"x": -8.840579710144928, "y": 5.362318840579711, "x2": -8.55072463768116, "y2": 5.6521739130434785, "center_x": -8.695652173913043, "center_y": 5.507246376811595, "value_uncond": 1.6774513459742732e-06}, {"x": -8.55072463768116, "y": 5.362318840579711, "x2": -8.260869565217392, "y2": 5.6521739130434785, "center_x": -8.405797101449277, "center_y": 5.507246376811595, "value_uncond": 2.52477833893488e-06}, {"x": -8.26086956521739, "y": 5.362318840579711, "x2": -7.971014492753623, "y2": 5.6521739130434785, "center_x": -8.115942028985508, "center_y": 5.507246376811595, "value_uncond": 3.7648041905231814e-06}, {"x": -7.971014492753623, "y": 5.362318840579711, "x2": -7.681159420289855, "y2": 5.6521739130434785, "center_x": -7.826086956521739, "center_y": 5.507246376811595, "value_uncond": 5.561697263081826e-06}, {"x": -7.681159420289855, "y": 5.362318840579711, "x2": -7.391304347826088, "y2": 5.6521739130434785, "center_x": -7.536231884057972, "center_y": 5.507246376811595, "value_uncond": 8.139882056800119e-06}, {"x": -7.391304347826087, "y": 5.362318840579711, "x2": -7.101449275362319, "y2": 5.6521739130434785, "center_x": -7.246376811594203, "center_y": 5.507246376811595, "value_uncond": 1.1802518599343171e-05}, {"x": -7.101449275362318, "y": 5.362318840579711, "x2": -6.811594202898551, "y2": 5.6521739130434785, "center_x": -6.956521739130435, "center_y": 5.507246376811595, "value_uncond": 1.6954191697836777e-05}, {"x": -6.811594202898551, "y": 5.362318840579711, "x2": -6.521739130434783, "y2": 5.6521739130434785, "center_x": -6.666666666666667, "center_y": 5.507246376811595, "value_uncond": 2.4128220868091493e-05}, {"x": -6.521739130434782, "y": 5.362318840579711, "x2": -6.231884057971015, "y2": 5.6521739130434785, "center_x": -6.3768115942028984, "center_y": 5.507246376811595, "value_uncond": 3.4018826213442224e-05}, {"x": -6.231884057971014, "y": 5.362318840579711, "x2": -5.942028985507246, "y2": 5.6521739130434785, "center_x": -6.08695652173913, "center_y": 5.507246376811595, "value_uncond": 4.7518110604868697e-05}, {"x": -5.942028985507246, "y": 5.362318840579711, "x2": -5.6521739130434785, "y2": 5.6521739130434785, "center_x": -5.797101449275362, "center_y": 5.507246376811595, "value_uncond": 6.575742799552855e-05}, {"x": -5.6521739130434785, "y": 5.362318840579711, "x2": -5.362318840579711, "y2": 5.6521739130434785, "center_x": -5.507246376811595, "center_y": 5.507246376811595, "value_uncond": 9.01521911284547e-05}, {"x": -5.36231884057971, "y": 5.362318840579711, "x2": -5.072463768115942, "y2": 5.6521739130434785, "center_x": -5.217391304347826, "center_y": 5.507246376811595, "value_uncond": 0.00012244852828703783}, {"x": -5.0724637681159415, "y": 5.362318840579711, "x2": -4.782608695652174, "y2": 5.6521739130434785, "center_x": -4.927536231884058, "center_y": 5.507246376811595, "value_uncond": 0.00016476944062065562}, {"x": -4.782608695652174, "y": 5.362318840579711, "x2": -4.492753623188406, "y2": 5.6521739130434785, "center_x": -4.63768115942029, "center_y": 5.507246376811595, "value_uncond": 0.00021965726887570545}, {"x": -4.492753623188405, "y": 5.362318840579711, "x2": -4.202898550724638, "y2": 5.6521739130434785, "center_x": -4.3478260869565215, "center_y": 5.507246376811595, "value_uncond": 0.0002901084015476537}, {"x": -4.202898550724638, "y": 5.362318840579711, "x2": -3.91304347826087, "y2": 5.6521739130434785, "center_x": -4.057971014492754, "center_y": 5.507246376811595, "value_uncond": 0.0003795953182494388}, {"x": -3.913043478260869, "y": 5.362318840579711, "x2": -3.6231884057971016, "y2": 5.6521739130434785, "center_x": -3.7681159420289854, "center_y": 5.507246376811595, "value_uncond": 0.0004920703568434459}, {"x": -3.6231884057971016, "y": 5.362318840579711, "x2": -3.333333333333334, "y2": 5.6521739130434785, "center_x": -3.4782608695652177, "center_y": 5.507246376811595, "value_uncond": 0.000631945133111376}, {"x": -3.333333333333333, "y": 5.362318840579711, "x2": -3.0434782608695654, "y2": 5.6521739130434785, "center_x": -3.1884057971014492, "center_y": 5.507246376811595, "value_uncond": 0.0008040394509939493}, {"x": -3.0434782608695645, "y": 5.362318840579711, "x2": -2.753623188405797, "y2": 5.6521739130434785, "center_x": -2.8985507246376807, "center_y": 5.507246376811595, "value_uncond": 0.0010134939435188506}, {"x": -2.753623188405797, "y": 5.362318840579711, "x2": -2.4637681159420293, "y2": 5.6521739130434785, "center_x": -2.608695652173913, "center_y": 5.507246376811595, "value_uncond": 0.0012656416892218962}, {"x": -2.4637681159420284, "y": 5.362318840579711, "x2": -2.1739130434782608, "y2": 5.6521739130434785, "center_x": -2.3188405797101446, "center_y": 5.507246376811595, "value_uncond": 0.0015658357350380376}, {"x": -2.1739130434782608, "y": 5.362318840579711, "x2": -1.8840579710144931, "y2": 5.6521739130434785, "center_x": -2.028985507246377, "center_y": 5.507246376811595, "value_uncond": 0.0019192318543621285}, {"x": -1.8840579710144922, "y": 5.362318840579711, "x2": -1.5942028985507246, "y2": 5.6521739130434785, "center_x": -1.7391304347826084, "center_y": 5.507246376811595, "value_uncond": 0.0023305289426137506}, {"x": -1.5942028985507246, "y": 5.362318840579711, "x2": -1.304347826086957, "y2": 5.6521739130434785, "center_x": -1.4492753623188408, "center_y": 5.507246376811595, "value_uncond": 0.0028036730875515294}, {"x": -1.304347826086957, "y": 5.362318840579711, "x2": -1.0144927536231894, "y2": 5.6521739130434785, "center_x": -1.1594202898550732, "center_y": 5.507246376811595, "value_uncond": 0.0033415353471874256}, {"x": -1.0144927536231876, "y": 5.362318840579711, "x2": -0.72463768115942, "y2": 5.6521739130434785, "center_x": -0.8695652173913038, "center_y": 5.507246376811595, "value_uncond": 0.00394557733981317}, {"x": -0.72463768115942, "y": 5.362318840579711, "x2": -0.43478260869565233, "y2": 5.6521739130434785, "center_x": -0.5797101449275361, "center_y": 5.507246376811595, "value_uncond": 0.004615522542301451}, {"x": -0.43478260869565233, "y": 5.362318840579711, "x2": -0.1449275362318847, "y2": 5.6521739130434785, "center_x": -0.2898550724637685, "center_y": 5.507246376811595, "value_uncond": 0.0053490543011205476}, {"x": -0.14492753623188293, "y": 5.362318840579711, "x2": 0.1449275362318847, "y2": 5.6521739130434785, "center_x": 8.881784197001252e-16, "center_y": 5.507246376811595, "value_uncond": 0.006141563569733192}, {"x": 0.1449275362318847, "y": 5.362318840579711, "x2": 0.43478260869565233, "y2": 5.6521739130434785, "center_x": 0.2898550724637685, "center_y": 5.507246376811595, "value_uncond": 0.006985969911763776}, {"x": 0.43478260869565233, "y": 5.362318840579711, "x2": 0.72463768115942, "y2": 5.6521739130434785, "center_x": 0.5797101449275361, "center_y": 5.507246376811595, "value_uncond": 0.007872638046252756}, {"x": 0.72463768115942, "y": 5.362318840579711, "x2": 1.0144927536231876, "y2": 5.6521739130434785, "center_x": 0.8695652173913038, "center_y": 5.507246376811595, "value_uncond": 0.008789408980578704}, {"x": 1.0144927536231894, "y": 5.362318840579711, "x2": 1.304347826086957, "y2": 5.6521739130434785, "center_x": 1.1594202898550732, "center_y": 5.507246376811595, "value_uncond": 0.009721759565745867}, {"x": 1.304347826086957, "y": 5.362318840579711, "x2": 1.5942028985507246, "y2": 5.6521739130434785, "center_x": 1.4492753623188408, "center_y": 5.507246376811595, "value_uncond": 0.010653097298326468}, {"x": 1.5942028985507246, "y": 5.362318840579711, "x2": 1.8840579710144922, "y2": 5.6521739130434785, "center_x": 1.7391304347826084, "center_y": 5.507246376811595, "value_uncond": 0.011565188764967345}, {"x": 1.884057971014494, "y": 5.362318840579711, "x2": 2.1739130434782616, "y2": 5.6521739130434785, "center_x": 2.028985507246378, "center_y": 5.507246376811595, "value_uncond": 0.01243871084687245}, {"x": 2.1739130434782616, "y": 5.362318840579711, "x2": 2.4637681159420293, "y2": 5.6521739130434785, "center_x": 2.3188405797101455, "center_y": 5.507246376811595, "value_uncond": 0.013253904389002227}, {"x": 2.4637681159420293, "y": 5.362318840579711, "x2": 2.753623188405797, "y2": 5.6521739130434785, "center_x": 2.608695652173913, "center_y": 5.507246376811595, "value_uncond": 0.013991301296120189}, {"x": 2.753623188405797, "y": 5.362318840579711, "x2": 3.0434782608695645, "y2": 5.6521739130434785, "center_x": 2.8985507246376807, "center_y": 5.507246376811595, "value_uncond": 0.014632488761497914}, {"x": 3.0434782608695663, "y": 5.362318840579711, "x2": 3.333333333333334, "y2": 5.6521739130434785, "center_x": 3.18840579710145, "center_y": 5.507246376811595, "value_uncond": 0.015160869307387047}, {"x": 3.333333333333334, "y": 5.362318840579711, "x2": 3.6231884057971016, "y2": 5.6521739130434785, "center_x": 3.4782608695652177, "center_y": 5.507246376811595, "value_uncond": 0.01556237310593858}, {"x": 3.6231884057971016, "y": 5.362318840579711, "x2": 3.913043478260869, "y2": 5.6521739130434785, "center_x": 3.7681159420289854, "center_y": 5.507246376811595, "value_uncond": 0.015826080012913323}, {"x": 3.913043478260871, "y": 5.362318840579711, "x2": 4.202898550724639, "y2": 5.6521739130434785, "center_x": 4.057971014492755, "center_y": 5.507246376811595, "value_uncond": 0.015944712962350577}, {"x": 4.202898550724639, "y": 5.362318840579711, "x2": 4.492753623188406, "y2": 5.6521739130434785, "center_x": 4.347826086956522, "center_y": 5.507246376811595, "value_uncond": 0.01591497161452705}, {"x": 4.492753623188406, "y": 5.362318840579711, "x2": 4.782608695652174, "y2": 5.6521739130434785, "center_x": 4.63768115942029, "center_y": 5.507246376811595, "value_uncond": 0.015737684907116793}, {"x": 4.782608695652174, "y": 5.362318840579711, "x2": 5.0724637681159415, "y2": 5.6521739130434785, "center_x": 4.927536231884058, "center_y": 5.507246376811595, "value_uncond": 0.015417772668133083}, {"x": 5.072463768115943, "y": 5.362318840579711, "x2": 5.362318840579711, "y2": 5.6521739130434785, "center_x": 5.217391304347827, "center_y": 5.507246376811595, "value_uncond": 0.014964018771678233}, {"x": 5.362318840579711, "y": 5.362318840579711, "x2": 5.6521739130434785, "y2": 5.6521739130434785, "center_x": 5.507246376811595, "center_y": 5.507246376811595, "value_uncond": 0.014388670434439739}, {"x": 5.6521739130434785, "y": 5.362318840579711, "x2": 5.942028985507246, "y2": 5.6521739130434785, "center_x": 5.797101449275362, "center_y": 5.507246376811595, "value_uncond": 0.013706889163690632}, {"x": 5.942028985507246, "y": 5.362318840579711, "x2": 6.231884057971014, "y2": 5.6521739130434785, "center_x": 6.08695652173913, "center_y": 5.507246376811595, "value_uncond": 0.01293608769873285}, {"x": 6.2318840579710155, "y": 5.362318840579711, "x2": 6.521739130434783, "y2": 5.6521739130434785, "center_x": 6.376811594202899, "center_y": 5.507246376811595, "value_uncond": 0.012095193366675168}, {"x": 6.521739130434785, "y": 5.362318840579711, "x2": 6.8115942028985526, "y2": 5.6521739130434785, "center_x": 6.666666666666669, "center_y": 5.507246376811595, "value_uncond": 0.011203881198226821}, {"x": 6.811594202898551, "y": 5.362318840579711, "x2": 7.101449275362318, "y2": 5.6521739130434785, "center_x": 6.956521739130435, "center_y": 5.507246376811595, "value_uncond": 0.010281819817347382}, {"x": 7.10144927536232, "y": 5.362318840579711, "x2": 7.391304347826088, "y2": 5.6521739130434785, "center_x": 7.246376811594204, "center_y": 5.507246376811595, "value_uncond": 0.00934796972449207}, {"x": 7.391304347826086, "y": 5.362318840579711, "x2": 7.681159420289854, "y2": 5.6521739130434785, "center_x": 7.53623188405797, "center_y": 5.507246376811595, "value_uncond": 0.008419967593680685}, {"x": 7.681159420289855, "y": 5.362318840579711, "x2": 7.971014492753623, "y2": 5.6521739130434785, "center_x": 7.826086956521739, "center_y": 5.507246376811595, "value_uncond": 0.007513622257563381}, {"x": 7.971014492753625, "y": 5.362318840579711, "x2": 8.260869565217392, "y2": 5.6521739130434785, "center_x": 8.115942028985508, "center_y": 5.507246376811595, "value_uncond": 0.00664253894489518}, {"x": 8.26086956521739, "y": 5.362318840579711, "x2": 8.550724637681158, "y2": 5.6521739130434785, "center_x": 8.405797101449274, "center_y": 5.507246376811595, "value_uncond": 0.005817878882702297}, {"x": 8.55072463768116, "y": 5.362318840579711, "x2": 8.840579710144928, "y2": 5.6521739130434785, "center_x": 8.695652173913043, "center_y": 5.507246376811595, "value_uncond": 0.005048252358228618}, {"x": 8.84057971014493, "y": 5.362318840579711, "x2": 9.130434782608697, "y2": 5.6521739130434785, "center_x": 8.985507246376812, "center_y": 5.507246376811595, "value_uncond": 0.004339735416245373}, {"x": 9.130434782608695, "y": 5.362318840579711, "x2": 9.420289855072463, "y2": 5.6521739130434785, "center_x": 9.275362318840578, "center_y": 5.507246376811595, "value_uncond": 0.003695994042099792}, {"x": 9.420289855072465, "y": 5.362318840579711, "x2": 9.710144927536232, "y2": 5.6521739130434785, "center_x": 9.565217391304348, "center_y": 5.507246376811595, "value_uncond": 0.003118495251592849}, {"x": 9.710144927536234, "y": 5.362318840579711, "x2": 10.000000000000002, "y2": 5.6521739130434785, "center_x": 9.855072463768117, "center_y": 5.507246376811595, "value_uncond": 0.002606782076692864}, {"x": 10.0, "y": 5.362318840579711, "x2": 10.289855072463768, "y2": 5.6521739130434785, "center_x": 10.144927536231883, "center_y": 5.507246376811595, "value_uncond": 0.0021587889180850065}, {"x": -10.0, "y": 5.6521739130434785, "x2": -9.710144927536232, "y2": 5.942028985507246, "center_x": -9.855072463768117, "center_y": 5.797101449275362, "value_uncond": 2.8361749763298007e-07}, {"x": -9.710144927536232, "y": 5.6521739130434785, "x2": -9.420289855072465, "y2": 5.942028985507246, "center_x": -9.565217391304348, "center_y": 5.797101449275362, "value_uncond": 4.4312176897744417e-07}, {"x": -9.420289855072463, "y": 5.6521739130434785, "x2": -9.130434782608695, "y2": 5.942028985507246, "center_x": -9.275362318840578, "center_y": 5.797101449275362, "value_uncond": 6.858970980172719e-07}, {"x": -9.130434782608695, "y": 5.6521739130434785, "x2": -8.840579710144928, "y2": 5.942028985507246, "center_x": -8.985507246376812, "center_y": 5.797101449275362, "value_uncond": 1.0518181470687534e-06}, {"x": -8.840579710144928, "y": 5.6521739130434785, "x2": -8.55072463768116, "y2": 5.942028985507246, "center_x": -8.695652173913043, "center_y": 5.797101449275362, "value_uncond": 1.5979683308139013e-06}, {"x": -8.55072463768116, "y": 5.6521739130434785, "x2": -8.260869565217392, "y2": 5.942028985507246, "center_x": -8.405797101449277, "center_y": 5.797101449275362, "value_uncond": 2.4051462581167118e-06}, {"x": -8.26086956521739, "y": 5.6521739130434785, "x2": -7.971014492753623, "y2": 5.942028985507246, "center_x": -8.115942028985508, "center_y": 5.797101449275362, "value_uncond": 3.586415714893573e-06}, {"x": -7.971014492753623, "y": 5.6521739130434785, "x2": -7.681159420289855, "y2": 5.942028985507246, "center_x": -7.826086956521739, "center_y": 5.797101449275362, "value_uncond": 5.2981662408916325e-06}, {"x": -7.681159420289855, "y": 5.6521739130434785, "x2": -7.391304347826088, "y2": 5.942028985507246, "center_x": -7.536231884057972, "center_y": 5.797101449275362, "value_uncond": 7.754188384982478e-06}, {"x": -7.391304347826087, "y": 5.6521739130434785, "x2": -7.101449275362319, "y2": 5.942028985507246, "center_x": -7.246376811594203, "center_y": 5.797101449275362, "value_uncond": 1.1243277482148635e-05}, {"x": -7.101449275362318, "y": 5.6521739130434785, "x2": -6.811594202898551, "y2": 5.942028985507246, "center_x": -6.956521739130435, "center_y": 5.797101449275362, "value_uncond": 1.6150847816069353e-05}, {"x": -6.811594202898551, "y": 5.6521739130434785, "x2": -6.521739130434783, "y2": 5.942028985507246, "center_x": -6.666666666666667, "center_y": 5.797101449275362, "value_uncond": 2.2984948516464874e-05}, {"x": -6.521739130434782, "y": 5.6521739130434785, "x2": -6.231884057971015, "y2": 5.942028985507246, "center_x": -6.3768115942028984, "center_y": 5.797101449275362, "value_uncond": 3.2406905315616995e-05}, {"x": -6.231884057971014, "y": 5.6521739130434785, "x2": -5.942028985507246, "y2": 5.942028985507246, "center_x": -6.08695652173913, "center_y": 5.797101449275362, "value_uncond": 4.52665503943964e-05}, {"x": -5.942028985507246, "y": 5.6521739130434785, "x2": -5.6521739130434785, "y2": 5.942028985507246, "center_x": -5.797101449275362, "center_y": 5.797101449275362, "value_uncond": 6.26416305336118e-05}, {"x": -5.6521739130434785, "y": 5.6521739130434785, "x2": -5.362318840579711, "y2": 5.942028985507246, "center_x": -5.507246376811595, "center_y": 5.797101449275362, "value_uncond": 8.588049168906403e-05}, {"x": -5.36231884057971, "y": 5.6521739130434785, "x2": -5.072463768115942, "y2": 5.942028985507246, "center_x": -5.217391304347826, "center_y": 5.797101449275362, "value_uncond": 0.00011664652499581822}, {"x": -5.0724637681159415, "y": 5.6521739130434785, "x2": -4.782608695652174, "y2": 5.942028985507246, "center_x": -4.927536231884058, "center_y": 5.797101449275362, "value_uncond": 0.00015696213701197142}, {"x": -4.782608695652174, "y": 5.6521739130434785, "x2": -4.492753623188406, "y2": 5.942028985507246, "center_x": -4.63768115942029, "center_y": 5.797101449275362, "value_uncond": 0.00020924920424001095}, {"x": -4.492753623188405, "y": 5.6521739130434785, "x2": -4.202898550724638, "y2": 5.942028985507246, "center_x": -4.3478260869565215, "center_y": 5.797101449275362, "value_uncond": 0.0002763621366955009}, {"x": -4.202898550724638, "y": 5.6521739130434785, "x2": -3.91304347826087, "y2": 5.942028985507246, "center_x": -4.057971014492754, "center_y": 5.797101449275362, "value_uncond": 0.00036160887679011775}, {"x": -3.913043478260869, "y": 5.6521739130434785, "x2": -3.6231884057971016, "y2": 5.942028985507246, "center_x": -3.7681159420289854, "center_y": 5.797101449275362, "value_uncond": 0.0004687544879648525}, {"x": -3.6231884057971016, "y": 5.6521739130434785, "x2": -3.333333333333334, "y2": 5.942028985507246, "center_x": -3.4782608695652177, "center_y": 5.797101449275362, "value_uncond": 0.0006020015495218082}, {"x": -3.333333333333333, "y": 5.6521739130434785, "x2": -3.0434782608695654, "y2": 5.942028985507246, "center_x": -3.1884057971014492, "center_y": 5.797101449275362, "value_uncond": 0.0007659414876603125}, {"x": -3.0434782608695645, "y": 5.6521739130434785, "x2": -2.753623188405797, "y2": 5.942028985507246, "center_x": -2.8985507246376807, "center_y": 5.797101449275362, "value_uncond": 0.0009654713557573767}, {"x": -2.753623188405797, "y": 5.6521739130434785, "x2": -2.4637681159420293, "y2": 5.942028985507246, "center_x": -2.608695652173913, "center_y": 5.797101449275362, "value_uncond": 0.001205671534013852}, {"x": -2.4637681159420284, "y": 5.6521739130434785, "x2": -2.1739130434782608, "y2": 5.942028985507246, "center_x": -2.3188405797101446, "center_y": 5.797101449275362, "value_uncond": 0.0014916414248630431}, {"x": -2.1739130434782608, "y": 5.6521739130434785, "x2": -1.8840579710144931, "y2": 5.942028985507246, "center_x": -2.028985507246377, "center_y": 5.797101449275362, "value_uncond": 0.0018282925046500629}, {"x": -1.8840579710144922, "y": 5.6521739130434785, "x2": -1.5942028985507246, "y2": 5.942028985507246, "center_x": -1.7391304347826084, "center_y": 5.797101449275362, "value_uncond": 0.002220101020085922}, {"x": -1.5942028985507246, "y": 5.6521739130434785, "x2": -1.304347826086957, "y2": 5.942028985507246, "center_x": -1.4492753623188408, "center_y": 5.797101449275362, "value_uncond": 0.0026708260806577767}, {"x": -1.304347826086957, "y": 5.6521739130434785, "x2": -1.0144927536231894, "y2": 5.942028985507246, "center_x": -1.1594202898550732, "center_y": 5.797101449275362, "value_uncond": 0.003183202704457242}, {"x": -1.0144927536231876, "y": 5.6521739130434785, "x2": -0.72463768115942, "y2": 5.942028985507246, "center_x": -0.8695652173913038, "center_y": 5.797101449275362, "value_uncond": 0.0037586232536219923}, {"x": -0.72463768115942, "y": 5.6521739130434785, "x2": -0.43478260869565233, "y2": 5.942028985507246, "center_x": -0.5797101449275361, "center_y": 5.797101449275362, "value_uncond": 0.004396824307575779}, {"x": -0.43478260869565233, "y": 5.6521739130434785, "x2": -0.1449275362318847, "y2": 5.942028985507246, "center_x": -0.2898550724637685, "center_y": 5.797101449275362, "value_uncond": 0.005095598983248022}, {"x": -0.14492753623188293, "y": 5.6521739130434785, "x2": 0.1449275362318847, "y2": 5.942028985507246, "center_x": 8.881784197001252e-16, "center_y": 5.797101449275362, "value_uncond": 0.005850556625482325}, {"x": 0.1449275362318847, "y": 5.6521739130434785, "x2": 0.43478260869565233, "y2": 5.942028985507246, "center_x": 0.2898550724637685, "center_y": 5.797101449275362, "value_uncond": 0.006654952291646691}, {"x": 0.43478260869565233, "y": 5.6521739130434785, "x2": 0.72463768115942, "y2": 5.942028985507246, "center_x": 0.5797101449275361, "center_y": 5.797101449275362, "value_uncond": 0.0074996072512409475}, {"x": 0.72463768115942, "y": 5.6521739130434785, "x2": 1.0144927536231876, "y2": 5.942028985507246, "center_x": 0.8695652173913038, "center_y": 5.797101449275362, "value_uncond": 0.008372938643641286}, {"x": 1.0144927536231894, "y": 5.6521739130434785, "x2": 1.304347826086957, "y2": 5.942028985507246, "center_x": 1.1594202898550732, "center_y": 5.797101449275362, "value_uncond": 0.009261111473147477}, {"x": 1.304347826086957, "y": 5.6521739130434785, "x2": 1.5942028985507246, "y2": 5.942028985507246, "center_x": 1.4492753623188408, "center_y": 5.797101449275362, "value_uncond": 0.010148319442265323}, {"x": 1.5942028985507246, "y": 5.6521739130434785, "x2": 1.8840579710144922, "y2": 5.942028985507246, "center_x": 1.7391304347826084, "center_y": 5.797101449275362, "value_uncond": 0.011017193095140902}, {"x": 1.884057971014494, "y": 5.6521739130434785, "x2": 2.1739130434782616, "y2": 5.942028985507246, "center_x": 2.028985507246378, "center_y": 5.797101449275362, "value_uncond": 0.011849324904210014}, {"x": 2.1739130434782616, "y": 5.6521739130434785, "x2": 2.4637681159420293, "y2": 5.942028985507246, "center_x": 2.3188405797101455, "center_y": 5.797101449275362, "value_uncond": 0.012625891966458132}, {"x": 2.4637681159420293, "y": 5.6521739130434785, "x2": 2.753623188405797, "y2": 5.942028985507246, "center_x": 2.608695652173913, "center_y": 5.797101449275362, "value_uncond": 0.013328348647328502}, {"x": 2.753623188405797, "y": 5.6521739130434785, "x2": 3.0434782608695645, "y2": 5.942028985507246, "center_x": 2.8985507246376807, "center_y": 5.797101449275362, "value_uncond": 0.013939154597824402}, {"x": 3.0434782608695663, "y": 5.6521739130434785, "x2": 3.333333333333334, "y2": 5.942028985507246, "center_x": 3.18840579710145, "center_y": 5.797101449275362, "value_uncond": 0.01444249878183029}, {"x": 3.333333333333334, "y": 5.6521739130434785, "x2": 3.6231884057971016, "y2": 5.942028985507246, "center_x": 3.4782608695652177, "center_y": 5.797101449275362, "value_uncond": 0.014824978044985428}, {"x": 3.6231884057971016, "y": 5.6521739130434785, "x2": 3.913043478260869, "y2": 5.942028985507246, "center_x": 3.7681159420289854, "center_y": 5.797101449275362, "value_uncond": 0.015076189674445703}, {"x": 3.913043478260871, "y": 5.6521739130434785, "x2": 4.202898550724639, "y2": 5.942028985507246, "center_x": 4.057971014492755, "center_y": 5.797101449275362, "value_uncond": 0.01518920141493328}, {"x": 4.202898550724639, "y": 5.6521739130434785, "x2": 4.492753623188406, "y2": 5.942028985507246, "center_x": 4.347826086956522, "center_y": 5.797101449275362, "value_uncond": 0.015160869307387045}, {"x": 4.492753623188406, "y": 5.6521739130434785, "x2": 4.782608695652174, "y2": 5.942028985507246, "center_x": 4.63768115942029, "center_y": 5.797101449275362, "value_uncond": 0.014991983011760197}, {"x": 4.782608695652174, "y": 5.6521739130434785, "x2": 5.0724637681159415, "y2": 5.942028985507246, "center_x": 4.927536231884058, "center_y": 5.797101449275362, "value_uncond": 0.014687229238863838}, {"x": 5.072463768115943, "y": 5.6521739130434785, "x2": 5.362318840579711, "y2": 5.942028985507246, "center_x": 5.217391304347827, "center_y": 5.797101449275362, "value_uncond": 0.014254975654723591}, {"x": 5.362318840579711, "y": 5.6521739130434785, "x2": 5.6521739130434785, "y2": 5.942028985507246, "center_x": 5.507246376811595, "center_y": 5.797101449275362, "value_uncond": 0.013706889163690632}, {"x": 5.6521739130434785, "y": 5.6521739130434785, "x2": 5.942028985507246, "y2": 5.942028985507246, "center_x": 5.797101449275362, "center_y": 5.797101449275362, "value_uncond": 0.013057412872283585}, {"x": 5.942028985507246, "y": 5.6521739130434785, "x2": 6.231884057971014, "y2": 5.942028985507246, "center_x": 6.08695652173913, "center_y": 5.797101449275362, "value_uncond": 0.012323134448469086}, {"x": 6.2318840579710155, "y": 5.6521739130434785, "x2": 6.521739130434783, "y2": 5.942028985507246, "center_x": 6.376811594202899, "center_y": 5.797101449275362, "value_uncond": 0.011522084382001349}, {"x": 6.521739130434785, "y": 5.6521739130434785, "x2": 6.8115942028985526, "y2": 5.942028985507246, "center_x": 6.666666666666669, "center_y": 5.797101449275362, "value_uncond": 0.010673005437644672}, {"x": 6.811594202898551, "y": 5.6521739130434785, "x2": 7.101449275362318, "y2": 5.942028985507246, "center_x": 6.956521739130435, "center_y": 5.797101449275362, "value_uncond": 0.009794634276985995}, {"x": 7.10144927536232, "y": 5.6521739130434785, "x2": 7.391304347826088, "y2": 5.942028985507246, "center_x": 7.246376811594204, "center_y": 5.797101449275362, "value_uncond": 0.00890503299126662}, {"x": 7.391304347826086, "y": 5.6521739130434785, "x2": 7.681159420289854, "y2": 5.942028985507246, "center_x": 7.53623188405797, "center_y": 5.797101449275362, "value_uncond": 0.008021002572427181}, {"x": 7.681159420289855, "y": 5.6521739130434785, "x2": 7.971014492753623, "y2": 5.942028985507246, "center_x": 7.826086956521739, "center_y": 5.797101449275362, "value_uncond": 0.007157602780014635}, {"x": 7.971014492753625, "y": 5.6521739130434785, "x2": 8.260869565217392, "y2": 5.942028985507246, "center_x": 8.115942028985508, "center_y": 5.797101449275362, "value_uncond": 0.006327794183488224}, {"x": 8.26086956521739, "y": 5.6521739130434785, "x2": 8.550724637681158, "y2": 5.942028985507246, "center_x": 8.405797101449274, "center_y": 5.797101449275362, "value_uncond": 0.005542209155204808}, {"x": 8.55072463768116, "y": 5.6521739130434785, "x2": 8.840579710144928, "y2": 5.942028985507246, "center_x": 8.695652173913043, "center_y": 5.797101449275362, "value_uncond": 0.004809049999432685}, {"x": 8.84057971014493, "y": 5.6521739130434785, "x2": 9.130434782608697, "y2": 5.942028985507246, "center_x": 8.985507246376812, "center_y": 5.797101449275362, "value_uncond": 0.004134104858489265}, {"x": 9.130434782608695, "y": 5.6521739130434785, "x2": 9.420289855072463, "y2": 5.942028985507246, "center_x": 9.275362318840578, "center_y": 5.797101449275362, "value_uncond": 0.003520866011599312}, {"x": 9.420289855072465, "y": 5.6521739130434785, "x2": 9.710144927536232, "y2": 5.942028985507246, "center_x": 9.565217391304348, "center_y": 5.797101449275362, "value_uncond": 0.002970730962658476}, {"x": 9.710144927536234, "y": 5.6521739130434785, "x2": 10.000000000000002, "y2": 5.942028985507246, "center_x": 9.855072463768117, "center_y": 5.797101449275362, "value_uncond": 0.0024832643962434085}, {"x": 10.0, "y": 5.6521739130434785, "x2": 10.289855072463768, "y2": 5.942028985507246, "center_x": 10.144927536231883, "center_y": 5.797101449275362, "value_uncond": 0.0020564985877478664}, {"x": -10.0, "y": 5.942028985507246, "x2": -9.710144927536232, "y2": 6.231884057971014, "center_x": -9.855072463768117, "center_y": 6.08695652173913, "value_uncond": 2.6766838036410634e-07}, {"x": -9.710144927536232, "y": 5.942028985507246, "x2": -9.420289855072465, "y2": 6.231884057971014, "center_x": -9.565217391304348, "center_y": 6.08695652173913, "value_uncond": 4.182029923970312e-07}, {"x": -9.420289855072463, "y": 5.942028985507246, "x2": -9.130434782608695, "y2": 6.231884057971014, "center_x": -9.275362318840578, "center_y": 6.08695652173913, "value_uncond": 6.473259472880103e-07}, {"x": -9.130434782608695, "y": 5.942028985507246, "x2": -8.840579710144928, "y2": 6.231884057971014, "center_x": -8.985507246376812, "center_y": 6.08695652173913, "value_uncond": 9.926695715642979e-07}, {"x": -8.840579710144928, "y": 5.942028985507246, "x2": -8.55072463768116, "y2": 6.231884057971014, "center_x": -8.695652173913043, "center_y": 6.08695652173913, "value_uncond": 1.5081072167683986e-06}, {"x": -8.55072463768116, "y": 5.942028985507246, "x2": -8.260869565217392, "y2": 6.231884057971014, "center_x": -8.405797101449277, "center_y": 6.08695652173913, "value_uncond": 2.2698938141044712e-06}, {"x": -8.26086956521739, "y": 5.942028985507246, "x2": -7.971014492753623, "y2": 6.231884057971014, "center_x": -8.115942028985508, "center_y": 6.08695652173913, "value_uncond": 3.3847350524198137e-06}, {"x": -7.971014492753623, "y": 5.942028985507246, "x2": -7.681159420289855, "y2": 6.231884057971014, "center_x": -7.826086956521739, "center_y": 6.08695652173913, "value_uncond": 5.0002259678435955e-06}, {"x": -7.681159420289855, "y": 5.942028985507246, "x2": -7.391304347826088, "y2": 6.231884057971014, "center_x": -7.536231884057972, "center_y": 6.08695652173913, "value_uncond": 7.318134682692684e-06}, {"x": -7.391304347826087, "y": 5.942028985507246, "x2": -7.101449275362319, "y2": 6.231884057971014, "center_x": -7.246376811594203, "center_y": 6.08695652173913, "value_uncond": 1.0611016241055063e-05}, {"x": -7.101449275362318, "y": 5.942028985507246, "x2": -6.811594202898551, "y2": 6.231884057971014, "center_x": -6.956521739130435, "center_y": 6.08695652173913, "value_uncond": 1.524261130753217e-05}, {"x": -6.811594202898551, "y": 5.942028985507246, "x2": -6.521739130434783, "y2": 6.231884057971014, "center_x": -6.666666666666667, "center_y": 6.08695652173913, "value_uncond": 2.1692399070934804e-05}, {"x": -6.521739130434782, "y": 5.942028985507246, "x2": -6.231884057971015, "y2": 6.231884057971014, "center_x": -6.3768115942028984, "center_y": 6.08695652173913, "value_uncond": 3.0584515873802894e-05}, {"x": -6.231884057971014, "y": 5.942028985507246, "x2": -5.942028985507246, "y2": 6.231884057971014, "center_x": -6.08695652173913, "center_y": 6.08695652173913, "value_uncond": 4.272100392204194e-05}, {"x": -5.942028985507246, "y": 5.942028985507246, "x2": -5.6521739130434785, "y2": 6.231884057971014, "center_x": -5.797101449275362, "center_y": 6.08695652173913, "value_uncond": 5.911900333454195e-05}, {"x": -5.6521739130434785, "y": 5.942028985507246, "x2": -5.362318840579711, "y2": 6.231884057971014, "center_x": -5.507246376811595, "center_y": 6.08695652173913, "value_uncond": 8.105103636811636e-05}, {"x": -5.36231884057971, "y": 5.942028985507246, "x2": -5.072463768115942, "y2": 6.231884057971014, "center_x": -5.217391304347826, "center_y": 6.08695652173913, "value_uncond": 0.00011008695401838697}, {"x": -5.0724637681159415, "y": 5.942028985507246, "x2": -4.782608695652174, "y2": 6.231884057971014, "center_x": -4.927536231884058, "center_y": 6.08695652173913, "value_uncond": 0.0001481354336143672}, {"x": -4.782608695652174, "y": 5.942028985507246, "x2": -4.492753623188406, "y2": 6.231884057971014, "center_x": -4.63768115942029, "center_y": 6.08695652173913, "value_uncond": 0.00019748215839588857}, {"x": -4.492753623188405, "y": 5.942028985507246, "x2": -4.202898550724638, "y2": 6.231884057971014, "center_x": -4.3478260869565215, "center_y": 6.08695652173913, "value_uncond": 0.00026082102176564175}, {"x": -4.202898550724638, "y": 5.942028985507246, "x2": -3.91304347826087, "y2": 6.231884057971014, "center_x": -4.057971014492754, "center_y": 6.08695652173913, "value_uncond": 0.0003412739453083699}, {"x": -3.913043478260869, "y": 5.942028985507246, "x2": -3.6231884057971016, "y2": 6.231884057971014, "center_x": -3.7681159420289854, "center_y": 6.08695652173913, "value_uncond": 0.00044239426561870794}, {"x": -3.6231884057971016, "y": 5.942028985507246, "x2": -3.333333333333334, "y2": 6.231884057971014, "center_x": -3.4782608695652177, "center_y": 6.08695652173913, "value_uncond": 0.0005681482316218242}, {"x": -3.333333333333333, "y": 5.942028985507246, "x2": -3.0434782608695654, "y2": 6.231884057971014, "center_x": -3.1884057971014492, "center_y": 6.08695652173913, "value_uncond": 0.0007228690724893748}, {"x": -3.0434782608695645, "y": 5.942028985507246, "x2": -2.753623188405797, "y2": 6.231884057971014, "center_x": -2.8985507246376807, "center_y": 6.08695652173913, "value_uncond": 0.0009111784577478195}, {"x": -2.753623188405797, "y": 5.942028985507246, "x2": -2.4637681159420293, "y2": 6.231884057971014, "center_x": -2.608695652173913, "center_y": 6.08695652173913, "value_uncond": 0.0011378710744363743}, {"x": -2.4637681159420284, "y": 5.942028985507246, "x2": -2.1739130434782608, "y2": 6.231884057971014, "center_x": -2.3188405797101446, "center_y": 6.08695652173913, "value_uncond": 0.0014077595621190266}, {"x": -2.1739130434782608, "y": 5.942028985507246, "x2": -1.8840579710144931, "y2": 6.231884057971014, "center_x": -2.028985507246377, "center_y": 6.08695652173913, "value_uncond": 0.0017254792022204579}, {"x": -1.8840579710144922, "y": 5.942028985507246, "x2": -1.5942028985507246, "y2": 6.231884057971014, "center_x": -1.7391304347826084, "center_y": 6.08695652173913, "value_uncond": 0.0020952545214967607}, {"x": -1.5942028985507246, "y": 5.942028985507246, "x2": -1.304347826086957, "y2": 6.231884057971014, "center_x": -1.4492753623188408, "center_y": 6.08695652173913, "value_uncond": 0.002520633237406963}, {"x": -1.304347826086957, "y": 5.942028985507246, "x2": -1.0144927536231894, "y2": 6.231884057971014, "center_x": -1.1594202898550732, "center_y": 6.08695652173913, "value_uncond": 0.003004196565387202}, {"x": -1.0144927536231876, "y": 5.942028985507246, "x2": -0.72463768115942, "y2": 6.231884057971014, "center_x": -0.8695652173913038, "center_y": 6.08695652173913, "value_uncond": 0.003547258568643672}, {"x": -0.72463768115942, "y": 5.942028985507246, "x2": -0.43478260869565233, "y2": 6.231884057971014, "center_x": -0.5797101449275361, "center_y": 6.08695652173913, "value_uncond": 0.004149570639951542}, {"x": -0.43478260869565233, "y": 5.942028985507246, "x2": -0.1449275362318847, "y2": 6.231884057971014, "center_x": -0.2898550724637685, "center_y": 6.08695652173913, "value_uncond": 0.004809049999432688}, {"x": -0.14492753623188293, "y": 5.942028985507246, "x2": 0.1449275362318847, "y2": 6.231884057971014, "center_x": 8.881784197001252e-16, "center_y": 6.08695652173913, "value_uncond": 0.005521552898678568}, {"x": 0.1449275362318847, "y": 5.942028985507246, "x2": 0.43478260869565233, "y2": 6.231884057971014, "center_x": 0.2898550724637685, "center_y": 6.08695652173913, "value_uncond": 0.006280713694225636}, {"x": 0.43478260869565233, "y": 5.942028985507246, "x2": 0.72463768115942, "y2": 6.231884057971014, "center_x": 0.5797101449275361, "center_y": 6.08695652173913, "value_uncond": 0.00707786981783574}, {"x": 0.72463768115942, "y": 5.942028985507246, "x2": 1.0144927536231876, "y2": 6.231884057971014, "center_x": 0.8695652173913038, "center_y": 6.08695652173913, "value_uncond": 0.007902089766449183}, {"x": 1.0144927536231894, "y": 5.942028985507246, "x2": 1.304347826086957, "y2": 6.231884057971014, "center_x": 1.1594202898550732, "center_y": 6.08695652173913, "value_uncond": 0.008740316549850866}, {"x": 1.304347826086957, "y": 5.942028985507246, "x2": 1.5942028985507246, "y2": 6.231884057971014, "center_x": 1.4492753623188408, "center_y": 6.08695652173913, "value_uncond": 0.009577632731404702}, {"x": 1.5942028985507246, "y": 5.942028985507246, "x2": 1.8840579710144922, "y2": 6.231884057971014, "center_x": 1.7391304347826084, "center_y": 6.08695652173913, "value_uncond": 0.010397645619704042}, {"x": 1.884057971014494, "y": 5.942028985507246, "x2": 2.1739130434782616, "y2": 6.231884057971014, "center_x": 2.028985507246378, "center_y": 6.08695652173913, "value_uncond": 0.011182982827182043}, {"x": 2.1739130434782616, "y": 5.942028985507246, "x2": 2.4637681159420293, "y2": 6.231884057971014, "center_x": 2.3188405797101455, "center_y": 6.08695652173913, "value_uncond": 0.011915879949294914}, {"x": 2.4637681159420293, "y": 5.942028985507246, "x2": 2.753623188405797, "y2": 6.231884057971014, "center_x": 2.608695652173913, "center_y": 6.08695652173913, "value_uncond": 0.012578834257875109}, {"x": 2.753623188405797, "y": 5.942028985507246, "x2": 3.0434782608695645, "y2": 6.231884057971014, "center_x": 2.8985507246376807, "center_y": 6.08695652173913, "value_uncond": 0.013155291778481145}, {"x": 3.0434782608695663, "y": 5.942028985507246, "x2": 3.333333333333334, "y2": 6.231884057971014, "center_x": 3.18840579710145, "center_y": 6.08695652173913, "value_uncond": 0.013630330602330078}, {"x": 3.333333333333334, "y": 5.942028985507246, "x2": 3.6231884057971016, "y2": 6.231884057971014, "center_x": 3.4782608695652177, "center_y": 6.08695652173913, "value_uncond": 0.01399130129612019}, {"x": 3.6231884057971016, "y": 5.942028985507246, "x2": 3.913043478260869, "y2": 6.231884057971014, "center_x": 3.7681159420289854, "center_y": 6.08695652173913, "value_uncond": 0.014228386139430086}, {"x": 3.913043478260871, "y": 5.942028985507246, "x2": 4.202898550724639, "y2": 6.231884057971014, "center_x": 4.057971014492755, "center_y": 6.08695652173913, "value_uncond": 0.014335042709602576}, {"x": 4.202898550724639, "y": 5.942028985507246, "x2": 4.492753623188406, "y2": 6.231884057971014, "center_x": 4.347826086956522, "center_y": 6.08695652173913, "value_uncond": 0.014308303846864935}, {"x": 4.492753623188406, "y": 5.942028985507246, "x2": 4.782608695652174, "y2": 6.231884057971014, "center_x": 4.63768115942029, "center_y": 6.08695652173913, "value_uncond": 0.014148914804956699}, {"x": 4.782608695652174, "y": 5.942028985507246, "x2": 5.0724637681159415, "y2": 6.231884057971014, "center_x": 4.927536231884058, "center_y": 6.08695652173913, "value_uncond": 0.013861298739369025}, {"x": 5.072463768115943, "y": 5.942028985507246, "x2": 5.362318840579711, "y2": 6.231884057971014, "center_x": 5.217391304347827, "center_y": 6.08695652173913, "value_uncond": 0.013453352763753925}, {"x": 5.362318840579711, "y": 5.942028985507246, "x2": 5.6521739130434785, "y2": 6.231884057971014, "center_x": 5.507246376811595, "center_y": 6.08695652173913, "value_uncond": 0.01293608769873285}, {"x": 5.6521739130434785, "y": 5.942028985507246, "x2": 5.942028985507246, "y2": 6.231884057971014, "center_x": 5.797101449275362, "center_y": 6.08695652173913, "value_uncond": 0.012323134448469086}, {"x": 5.942028985507246, "y": 5.942028985507246, "x2": 6.231884057971014, "y2": 6.231884057971014, "center_x": 6.08695652173913, "center_y": 6.08695652173913, "value_uncond": 0.01163014788001316}, {"x": 6.2318840579710155, "y": 5.942028985507246, "x2": 6.521739130434783, "y2": 6.231884057971014, "center_x": 6.376811594202899, "center_y": 6.08695652173913, "value_uncond": 0.010874144545693331}, {"x": 6.521739130434785, "y": 5.942028985507246, "x2": 6.8115942028985526, "y2": 6.231884057971014, "center_x": 6.666666666666669, "center_y": 6.08695652173913, "value_uncond": 0.010072813218345815}, {"x": 6.811594202898551, "y": 5.942028985507246, "x2": 7.101449275362318, "y2": 6.231884057971014, "center_x": 6.956521739130435, "center_y": 6.08695652173913, "value_uncond": 0.009243836910839224}, {"x": 7.10144927536232, "y": 5.942028985507246, "x2": 7.391304347826088, "y2": 6.231884057971014, "center_x": 7.246376811594204, "center_y": 6.08695652173913, "value_uncond": 0.008404261999891829}, {"x": 7.391304347826086, "y": 5.942028985507246, "x2": 7.681159420289854, "y2": 6.231884057971014, "center_x": 7.53623188405797, "center_y": 6.08695652173913, "value_uncond": 0.007569944680339263}, {"x": 7.681159420289855, "y": 5.942028985507246, "x2": 7.971014492753623, "y2": 6.231884057971014, "center_x": 7.826086956521739, "center_y": 6.08695652173913, "value_uncond": 0.00675509783213515}, {"x": 7.971014492753625, "y": 5.942028985507246, "x2": 8.260869565217392, "y2": 6.231884057971014, "center_x": 8.115942028985508, "center_y": 6.08695652173913, "value_uncond": 0.005971953192265764}, {"x": 8.26086956521739, "y": 5.942028985507246, "x2": 8.550724637681158, "y2": 6.231884057971014, "center_x": 8.405797101449274, "center_y": 6.08695652173913, "value_uncond": 0.00523054522585382}, {"x": 8.55072463768116, "y": 5.942028985507246, "x2": 8.840579710144928, "y2": 6.231884057971014, "center_x": 8.695652173913043, "center_y": 6.08695652173913, "value_uncond": 0.004538614983846707}, {"x": 8.84057971014493, "y": 5.942028985507246, "x2": 9.130434782608697, "y2": 6.231884057971014, "center_x": 8.985507246376812, "center_y": 6.08695652173913, "value_uncond": 0.003901625114678845}, {"x": 9.130434782608695, "y": 5.942028985507246, "x2": 9.420289855072463, "y2": 6.231884057971014, "center_x": 9.275362318840578, "center_y": 6.08695652173913, "value_uncond": 0.003322871510640635}, {"x": 9.420289855072465, "y": 5.942028985507246, "x2": 9.710144927536232, "y2": 6.231884057971014, "center_x": 9.565217391304348, "center_y": 6.08695652173913, "value_uncond": 0.0028036730875515285}, {"x": 9.710144927536234, "y": 5.942028985507246, "x2": 10.000000000000002, "y2": 6.231884057971014, "center_x": 9.855072463768117, "center_y": 6.08695652173913, "value_uncond": 0.002343619009778012}, {"x": 10.0, "y": 5.942028985507246, "x2": 10.289855072463768, "y2": 6.231884057971014, "center_x": 10.144927536231883, "center_y": 6.08695652173913, "value_uncond": 0.0019408522069250963}, {"x": -10.0, "y": 6.2318840579710155, "x2": -9.710144927536232, "y2": 6.521739130434783, "center_x": -9.855072463768117, "center_y": 6.376811594202899, "value_uncond": 2.502689293738903e-07}, {"x": -9.710144927536232, "y": 6.2318840579710155, "x2": -9.420289855072465, "y2": 6.521739130434783, "center_x": -9.565217391304348, "center_y": 6.376811594202899, "value_uncond": 3.9101822570820645e-07}, {"x": -9.420289855072463, "y": 6.2318840579710155, "x2": -9.130434782608695, "y2": 6.521739130434783, "center_x": -9.275362318840578, "center_y": 6.376811594202899, "value_uncond": 6.052473271715371e-07}, {"x": -9.130434782608695, "y": 6.2318840579710155, "x2": -8.840579710144928, "y2": 6.521739130434783, "center_x": -8.985507246376812, "center_y": 6.376811594202899, "value_uncond": 9.281423175927344e-07}, {"x": -8.840579710144928, "y": 6.2318840579710155, "x2": -8.55072463768116, "y2": 6.521739130434783, "center_x": -8.695652173913043, "center_y": 6.376811594202899, "value_uncond": 1.4100745781337623e-06}, {"x": -8.55072463768116, "y": 6.2318840579710155, "x2": -8.260869565217392, "y2": 6.521739130434783, "center_x": -8.405797101449277, "center_y": 6.376811594202899, "value_uncond": 2.1223421827994186e-06}, {"x": -8.26086956521739, "y": 6.2318840579710155, "x2": -7.971014492753623, "y2": 6.521739130434783, "center_x": -8.115942028985508, "center_y": 6.376811594202899, "value_uncond": 3.1647145495149364e-06}, {"x": -7.971014492753623, "y": 6.2318840579710155, "x2": -7.681159420289855, "y2": 6.521739130434783, "center_x": -7.826086956521739, "center_y": 6.376811594202899, "value_uncond": 4.675192482195596e-06}, {"x": -7.681159420289855, "y": 6.2318840579710155, "x2": -7.391304347826088, "y2": 6.521739130434783, "center_x": -7.536231884057972, "center_y": 6.376811594202899, "value_uncond": 6.842428416685089e-06}, {"x": -7.391304347826087, "y": 6.2318840579710155, "x2": -7.101449275362319, "y2": 6.521739130434783, "center_x": -7.246376811594203, "center_y": 6.376811594202899, "value_uncond": 9.921260294568306e-06}, {"x": -7.101449275362318, "y": 6.2318840579710155, "x2": -6.811594202898551, "y2": 6.521739130434783, "center_x": -6.956521739130435, "center_y": 6.376811594202899, "value_uncond": 1.4251784269809043e-05}, {"x": -6.811594202898551, "y": 6.2318840579710155, "x2": -6.521739130434783, "y2": 6.521739130434783, "center_x": -6.666666666666667, "center_y": 6.376811594202899, "value_uncond": 2.0282311581402006e-05}, {"x": -6.521739130434782, "y": 6.2318840579710155, "x2": -6.231884057971015, "y2": 6.521739130434783, "center_x": -6.3768115942028984, "center_y": 6.376811594202899, "value_uncond": 2.8596407363257766e-05}, {"x": -6.231884057971014, "y": 6.2318840579710155, "x2": -5.942028985507246, "y2": 6.521739130434783, "center_x": -6.08695652173913, "center_y": 6.376811594202899, "value_uncond": 3.9943978062718354e-05}, {"x": -5.942028985507246, "y": 6.2318840579710155, "x2": -5.6521739130434785, "y2": 6.521739130434783, "center_x": -5.797101449275362, "center_y": 6.376811594202899, "value_uncond": 5.5276045867132e-05}, {"x": -5.6521739130434785, "y": 6.2318840579710155, "x2": -5.362318840579711, "y2": 6.521739130434783, "center_x": -5.507246376811595, "center_y": 6.376811594202899, "value_uncond": 7.578241430272746e-05}, {"x": -5.36231884057971, "y": 6.2318840579710155, "x2": -5.072463768115942, "y2": 6.521739130434783, "center_x": -5.217391304347826, "center_y": 6.376811594202899, "value_uncond": 0.00010293088814874822}, {"x": -5.0724637681159415, "y": 6.2318840579710155, "x2": -4.782608695652174, "y2": 6.521739130434783, "center_x": -4.927536231884058, "center_y": 6.376811594202899, "value_uncond": 0.00013850607353238278}, {"x": -4.782608695652174, "y": 6.2318840579710155, "x2": -4.492753623188406, "y2": 6.521739130434783, "center_x": -4.63768115942029, "center_y": 6.376811594202899, "value_uncond": 0.00018464507569012695}, {"x": -4.492753623188405, "y": 6.2318840579710155, "x2": -4.202898550724638, "y2": 6.521739130434783, "center_x": -4.3478260869565215, "center_y": 6.376811594202899, "value_uncond": 0.00024386667482613364}, {"x": -4.202898550724638, "y": 6.2318840579710155, "x2": -3.91304347826087, "y2": 6.521739130434783, "center_x": -4.057971014492754, "center_y": 6.376811594202899, "value_uncond": 0.0003190898558856549}, {"x": -3.913043478260869, "y": 6.2318840579710155, "x2": -3.6231884057971016, "y2": 6.521739130434783, "center_x": -3.7681159420289854, "center_y": 6.376811594202899, "value_uncond": 0.0004136369752263406}, {"x": -3.6231884057971016, "y": 6.2318840579710155, "x2": -3.333333333333334, "y2": 6.521739130434783, "center_x": -3.4782608695652177, "center_y": 6.376811594202899, "value_uncond": 0.0005312164606825947}, {"x": -3.333333333333333, "y": 6.2318840579710155, "x2": -3.0434782608695654, "y2": 6.521739130434783, "center_x": -3.1884057971014492, "center_y": 6.376811594202899, "value_uncond": 0.0006758798652396703}, {"x": -3.0434782608695645, "y": 6.2318840579710155, "x2": -2.753623188405797, "y2": 6.521739130434783, "center_x": -2.8985507246376807, "center_y": 6.376811594202899, "value_uncond": 0.0008519484325302061}, {"x": -2.753623188405797, "y": 6.2318840579710155, "x2": -2.4637681159420293, "y2": 6.521739130434783, "center_x": -2.608695652173913, "center_y": 6.376811594202899, "value_uncond": 0.0010639051769108295}, {"x": -2.4637681159420284, "y": 6.2318840579710155, "x2": -2.1739130434782608, "y2": 6.521739130434783, "center_x": -2.3188405797101446, "center_y": 6.376811594202899, "value_uncond": 0.0013162498982813384}, {"x": -2.1739130434782608, "y": 6.2318840579710155, "x2": -1.8840579710144931, "y2": 6.521739130434783, "center_x": -2.028985507246377, "center_y": 6.376811594202899, "value_uncond": 0.0016133165673480364}, {"x": -1.8840579710144922, "y": 6.2318840579710155, "x2": -1.5942028985507246, "y2": 6.521739130434783, "center_x": -1.7391304347826084, "center_y": 6.376811594202899, "value_uncond": 0.001959055100746278}, {"x": -1.5942028985507246, "y": 6.2318840579710155, "x2": -1.304347826086957, "y2": 6.521739130434783, "center_x": -1.4492753623188408, "center_y": 6.376811594202899, "value_uncond": 0.0023567826009630436}, {"x": -1.304347826086957, "y": 6.2318840579710155, "x2": -1.0144927536231894, "y2": 6.521739130434783, "center_x": -1.1594202898550732, "center_y": 6.376811594202899, "value_uncond": 0.0028089124947273613}, {"x": -1.0144927536231876, "y": 6.2318840579710155, "x2": -0.72463768115942, "y2": 6.521739130434783, "center_x": -0.8695652173913038, "center_y": 6.376811594202899, "value_uncond": 0.0033166734261969566}, {"x": -0.72463768115942, "y": 6.2318840579710155, "x2": -0.43478260869565233, "y2": 6.521739130434783, "center_x": -0.5797101449275361, "center_y": 6.376811594202899, "value_uncond": 0.003879832948551227}, {"x": -0.43478260869565233, "y": 6.2318840579710155, "x2": -0.1449275362318847, "y2": 6.521739130434783, "center_x": -0.2898550724637685, "center_y": 6.376811594202899, "value_uncond": 0.004496443670434078}, {"x": -0.14492753623188293, "y": 6.2318840579710155, "x2": 0.1449275362318847, "y2": 6.521739130434783, "center_x": 8.881784197001252e-16, "center_y": 6.376811594202899, "value_uncond": 0.005162631202661442}, {"x": 0.1449275362318847, "y": 6.2318840579710155, "x2": 0.43478260869565233, "y2": 6.521739130434783, "center_x": 0.2898550724637685, "center_y": 6.376811594202899, "value_uncond": 0.0058724436925257605}, {"x": 0.43478260869565233, "y": 6.2318840579710155, "x2": 0.72463768115942, "y2": 6.521739130434783, "center_x": 0.5797101449275361, "center_y": 6.376811594202899, "value_uncond": 0.006617781671290226}, {"x": 0.72463768115942, "y": 6.2318840579710155, "x2": 1.0144927536231876, "y2": 6.521739130434783, "center_x": 0.8695652173913038, "center_y": 6.376811594202899, "value_uncond": 0.007388424224689674}, {"x": 1.0144927536231894, "y": 6.2318840579710155, "x2": 1.304347826086957, "y2": 6.521739130434783, "center_x": 1.1594202898550732, "center_y": 6.376811594202899, "value_uncond": 0.008172163115959143}, {"x": 1.304347826086957, "y": 6.2318840579710155, "x2": 1.5942028985507246, "y2": 6.521739130434783, "center_x": 1.4492753623188408, "center_y": 6.376811594202899, "value_uncond": 0.008955050597924173}, {"x": 1.5942028985507246, "y": 6.2318840579710155, "x2": 1.8840579710144922, "y2": 6.521739130434783, "center_x": 1.7391304347826084, "center_y": 6.376811594202899, "value_uncond": 0.00972175956574586}, {"x": 1.884057971014494, "y": 6.2318840579710155, "x2": 2.1739130434782616, "y2": 6.521739130434783, "center_x": 2.028985507246378, "center_y": 6.376811594202899, "value_uncond": 0.010456046902358579}, {"x": 2.1739130434782616, "y": 6.2318840579710155, "x2": 2.4637681159420293, "y2": 6.521739130434783, "center_x": 2.3188405797101455, "center_y": 6.376811594202899, "value_uncond": 0.011141302956296993}, {"x": 2.4637681159420293, "y": 6.2318840579710155, "x2": 2.753623188405797, "y2": 6.521739130434783, "center_x": 2.608695652173913, "center_y": 6.376811594202899, "value_uncond": 0.011761162742523812}, {"x": 2.753623188405797, "y": 6.2318840579710155, "x2": 3.0434782608695645, "y2": 6.521739130434783, "center_x": 2.8985507246376807, "center_y": 6.376811594202899, "value_uncond": 0.012300148357168889}, {"x": 3.0434782608695663, "y": 6.2318840579710155, "x2": 3.333333333333334, "y2": 6.521739130434783, "center_x": 3.18840579710145, "center_y": 6.376811594202899, "value_uncond": 0.012744307871617264}, {"x": 3.333333333333334, "y": 6.2318840579710155, "x2": 3.6231884057971016, "y2": 6.521739130434783, "center_x": 3.4782608695652177, "center_y": 6.376811594202899, "value_uncond": 0.01308181411328583}, {"x": 3.6231884057971016, "y": 6.2318840579710155, "x2": 3.913043478260869, "y2": 6.521739130434783, "center_x": 3.7681159420289854, "center_y": 6.376811594202899, "value_uncond": 0.013303487550489101}, {"x": 3.913043478260871, "y": 6.2318840579710155, "x2": 4.202898550724639, "y2": 6.521739130434783, "center_x": 4.057971014492755, "center_y": 6.376811594202899, "value_uncond": 0.013403211042638046}, {"x": 4.202898550724639, "y": 6.2318840579710155, "x2": 4.492753623188406, "y2": 6.521739130434783, "center_x": 4.347826086956522, "center_y": 6.376811594202899, "value_uncond": 0.013378210306499836}, {"x": 4.492753623188406, "y": 6.2318840579710155, "x2": 4.782608695652174, "y2": 6.521739130434783, "center_x": 4.63768115942029, "center_y": 6.376811594202899, "value_uncond": 0.01322918215151925}, {"x": 4.782608695652174, "y": 6.2318840579710155, "x2": 5.0724637681159415, "y2": 6.521739130434783, "center_x": 4.927536231884058, "center_y": 6.376811594202899, "value_uncond": 0.012960262211452207}, {"x": 5.072463768115943, "y": 6.2318840579710155, "x2": 5.362318840579711, "y2": 6.521739130434783, "center_x": 5.217391304347827, "center_y": 6.376811594202899, "value_uncond": 0.012578834257875104}, {"x": 5.362318840579711, "y": 6.2318840579710155, "x2": 5.6521739130434785, "y2": 6.521739130434783, "center_x": 5.507246376811595, "center_y": 6.376811594202899, "value_uncond": 0.012095193366675168}, {"x": 5.6521739130434785, "y": 6.2318840579710155, "x2": 5.942028985507246, "y2": 6.521739130434783, "center_x": 5.797101449275362, "center_y": 6.376811594202899, "value_uncond": 0.011522084382001349}, {"x": 5.942028985507246, "y": 6.2318840579710155, "x2": 6.231884057971014, "y2": 6.521739130434783, "center_x": 6.08695652173913, "center_y": 6.376811594202899, "value_uncond": 0.010874144545693331}, {"x": 6.2318840579710155, "y": 6.2318840579710155, "x2": 6.521739130434783, "y2": 6.521739130434783, "center_x": 6.376811594202899, "center_y": 6.376811594202899, "value_uncond": 0.010167284270206396}, {"x": 6.521739130434785, "y": 6.2318840579710155, "x2": 6.8115942028985526, "y2": 6.521739130434783, "center_x": 6.666666666666669, "center_y": 6.376811594202899, "value_uncond": 0.009418042491643618}, {"x": 6.811594202898551, "y": 6.2318840579710155, "x2": 7.101449275362318, "y2": 6.521739130434783, "center_x": 6.956521739130435, "center_y": 6.376811594202899, "value_uncond": 0.008642952760560024}, {"x": 7.10144927536232, "y": 6.2318840579710155, "x2": 7.391304347826088, "y2": 6.521739130434783, "center_x": 7.246376811594204, "center_y": 6.376811594202899, "value_uncond": 0.007857953375103437}, {"x": 7.391304347826086, "y": 6.2318840579710155, "x2": 7.681159420289854, "y2": 6.521739130434783, "center_x": 7.53623188405797, "center_y": 6.376811594202899, "value_uncond": 0.00707786981783574}, {"x": 7.681159420289855, "y": 6.2318840579710155, "x2": 7.971014492753623, "y2": 6.521739130434783, "center_x": 7.826086956521739, "center_y": 6.376811594202899, "value_uncond": 0.00631599107808199}, {"x": 7.971014492753625, "y": 6.2318840579710155, "x2": 8.260869565217392, "y2": 6.521739130434783, "center_x": 8.115942028985508, "center_y": 6.376811594202899, "value_uncond": 0.005583753783940637}, {"x": 8.26086956521739, "y": 6.2318840579710155, "x2": 8.550724637681158, "y2": 6.521739130434783, "center_x": 8.405797101449274, "center_y": 6.376811594202899, "value_uncond": 0.004890540122578068}, {"x": 8.55072463768116, "y": 6.2318840579710155, "x2": 8.840579710144928, "y2": 6.521739130434783, "center_x": 8.695652173913043, "center_y": 6.376811594202899, "value_uncond": 0.0042435879475285635}, {"x": 8.84057971014493, "y": 6.2318840579710155, "x2": 9.130434782608697, "y2": 6.521739130434783, "center_x": 8.985507246376812, "center_y": 6.376811594202899, "value_uncond": 0.003648004814542142}, {"x": 9.130434782608695, "y": 6.2318840579710155, "x2": 9.420289855072463, "y2": 6.521739130434783, "center_x": 9.275362318840578, "center_y": 6.376811594202899, "value_uncond": 0.0031068723705198263}, {"x": 9.420289855072465, "y": 6.2318840579710155, "x2": 9.710144927536232, "y2": 6.521739130434783, "center_x": 9.565217391304348, "center_y": 6.376811594202899, "value_uncond": 0.002621423796794503}, {"x": 9.710144927536234, "y": 6.2318840579710155, "x2": 10.000000000000002, "y2": 6.521739130434783, "center_x": 9.855072463768117, "center_y": 6.376811594202899, "value_uncond": 0.0021912749635933215}, {"x": 10.0, "y": 6.2318840579710155, "x2": 10.289855072463768, "y2": 6.521739130434783, "center_x": 10.144927536231883, "center_y": 6.376811594202899, "value_uncond": 0.0018146895170783953}, {"x": -10.0, "y": 6.521739130434785, "x2": -9.710144927536232, "y2": 6.8115942028985526, "center_x": -9.855072463768117, "center_y": 6.666666666666669, "value_uncond": 2.318262525705508e-07}, {"x": -9.710144927536232, "y": 6.521739130434785, "x2": -9.420289855072465, "y2": 6.8115942028985526, "center_x": -9.565217391304348, "center_y": 6.666666666666669, "value_uncond": 3.6220353113548075e-07}, {"x": -9.420289855072463, "y": 6.521739130434785, "x2": -9.130434782608695, "y2": 6.8115942028985526, "center_x": -9.275362318840578, "center_y": 6.666666666666669, "value_uncond": 5.606457824690636e-07}, {"x": -9.130434782608695, "y": 6.521739130434785, "x2": -8.840579710144928, "y2": 6.8115942028985526, "center_x": -8.985507246376812, "center_y": 6.666666666666669, "value_uncond": 8.59746177353957e-07}, {"x": -8.840579710144928, "y": 6.521739130434785, "x2": -8.55072463768116, "y2": 6.8115942028985526, "center_x": -8.695652173913043, "center_y": 6.666666666666669, "value_uncond": 1.3061641575386623e-06}, {"x": -8.55072463768116, "y": 6.521739130434785, "x2": -8.260869565217392, "y2": 6.8115942028985526, "center_x": -8.405797101449277, "center_y": 6.666666666666669, "value_uncond": 1.965943739567227e-06}, {"x": -8.26086956521739, "y": 6.521739130434785, "x2": -7.971014492753623, "y2": 6.8115942028985526, "center_x": -8.115942028985508, "center_y": 6.666666666666669, "value_uncond": 2.931502189684466e-06}, {"x": -7.971014492753623, "y": 6.521739130434785, "x2": -7.681159420289855, "y2": 6.8115942028985526, "center_x": -7.826086956521739, "center_y": 6.666666666666669, "value_uncond": 4.330670834389596e-06}, {"x": -7.681159420289855, "y": 6.521739130434785, "x2": -7.391304347826088, "y2": 6.8115942028985526, "center_x": -7.536231884057972, "center_y": 6.666666666666669, "value_uncond": 6.338200040615343e-06}, {"x": -7.391304347826087, "y": 6.521739130434785, "x2": -7.101449275362319, "y2": 6.8115942028985526, "center_x": -7.246376811594203, "center_y": 6.666666666666669, "value_uncond": 9.190148376072125e-06}, {"x": -7.101449275362318, "y": 6.521739130434785, "x2": -6.811594202898551, "y2": 6.8115942028985526, "center_x": -6.956521739130435, "center_y": 6.666666666666669, "value_uncond": 1.3201549820744305e-05}, {"x": -6.811594202898551, "y": 6.521739130434785, "x2": -6.521739130434783, "y2": 6.8115942028985526, "center_x": -6.666666666666667, "center_y": 6.666666666666669, "value_uncond": 1.8787678914629364e-05}, {"x": -6.521739130434782, "y": 6.521739130434785, "x2": -6.231884057971015, "y2": 6.8115942028985526, "center_x": -6.3768115942028984, "center_y": 6.666666666666669, "value_uncond": 2.6489097038893434e-05}, {"x": -6.231884057971014, "y": 6.521739130434785, "x2": -5.942028985507246, "y2": 6.8115942028985526, "center_x": -6.08695652173913, "center_y": 6.666666666666669, "value_uncond": 3.70004489578735e-05}, {"x": -5.942028985507246, "y": 6.521739130434785, "x2": -5.6521739130434785, "y2": 6.8115942028985526, "center_x": -5.797101449275362, "center_y": 6.666666666666669, "value_uncond": 5.12026746682202e-05}, {"x": -5.6521739130434785, "y": 6.521739130434785, "x2": -5.362318840579711, "y2": 6.8115942028985526, "center_x": -5.507246376811595, "center_y": 6.666666666666669, "value_uncond": 7.019789936570147e-05}, {"x": -5.36231884057971, "y": 6.521739130434785, "x2": -5.072463768115942, "y2": 6.8115942028985526, "center_x": -5.217391304347826, "center_y": 6.666666666666669, "value_uncond": 9.534576318754272e-05}, {"x": -5.0724637681159415, "y": 6.521739130434785, "x2": -4.782608695652174, "y2": 6.8115942028985526, "center_x": -4.927536231884058, "center_y": 6.666666666666669, "value_uncond": 0.00012829936207264282}, {"x": -4.782608695652174, "y": 6.521739130434785, "x2": -4.492753623188406, "y2": 6.8115942028985526, "center_x": -4.63768115942029, "center_y": 6.666666666666669, "value_uncond": 0.00017103831490363806}, {"x": -4.492753623188405, "y": 6.521739130434785, "x2": -4.202898550724638, "y2": 6.8115942028985526, "center_x": -4.3478260869565215, "center_y": 6.666666666666669, "value_uncond": 0.00022589578935435225}, {"x": -4.202898550724638, "y": 6.521739130434785, "x2": -3.91304347826087, "y2": 6.8115942028985526, "center_x": -4.057971014492754, "center_y": 6.666666666666669, "value_uncond": 0.00029557566617762447}, {"x": -3.913043478260869, "y": 6.521739130434785, "x2": -3.6231884057971016, "y2": 6.8115942028985526, "center_x": -3.7681159420289854, "center_y": 6.666666666666669, "value_uncond": 0.00038315547252005096}, {"x": -3.6231884057971016, "y": 6.521739130434785, "x2": -3.333333333333334, "y2": 6.8115942028985526, "center_x": -3.4782608695652177, "center_y": 6.666666666666669, "value_uncond": 0.000492070356843445}, {"x": -3.333333333333333, "y": 6.521739130434785, "x2": -3.0434782608695654, "y2": 6.8115942028985526, "center_x": -3.1884057971014492, "center_y": 6.666666666666669, "value_uncond": 0.0006260733073753584}, {"x": -3.0434782608695645, "y": 6.521739130434785, "x2": -2.753623188405797, "y2": 6.8115942028985526, "center_x": -2.8985507246376807, "center_y": 6.666666666666669, "value_uncond": 0.0007891671290996348}, {"x": -2.753623188405797, "y": 6.521739130434785, "x2": -2.4637681159420293, "y2": 6.8115942028985526, "center_x": -2.608695652173913, "center_y": 6.666666666666669, "value_uncond": 0.000985504476607145}, {"x": -2.4637681159420284, "y": 6.521739130434785, "x2": -2.1739130434782608, "y2": 6.8115942028985526, "center_x": -2.3188405797101446, "center_y": 6.666666666666669, "value_uncond": 0.0012192535530811497}, {"x": -2.1739130434782608, "y": 6.521739130434785, "x2": -1.8840579710144931, "y2": 6.8115942028985526, "center_x": -2.028985507246377, "center_y": 6.666666666666669, "value_uncond": 0.0014944289527028226}, {"x": -1.8840579710144922, "y": 6.521739130434785, "x2": -1.5942028985507246, "y2": 6.8115942028985526, "center_x": -1.7391304347826084, "center_y": 6.666666666666669, "value_uncond": 0.0018146895170783953}, {"x": -1.5942028985507246, "y": 6.521739130434785, "x2": -1.304347826086957, "y2": 6.8115942028985526, "center_x": -1.4492753623188408, "center_y": 6.666666666666669, "value_uncond": 0.0021831079066490715}, {"x": -1.304347826086957, "y": 6.521739130434785, "x2": -1.0144927536231894, "y2": 6.8115942028985526, "center_x": -1.1594202898550732, "center_y": 6.666666666666669, "value_uncond": 0.0026019196992624204}, {"x": -1.0144927536231876, "y": 6.521739130434785, "x2": -0.72463768115942, "y2": 6.8115942028985526, "center_x": -0.8695652173913038, "center_y": 6.666666666666669, "value_uncond": 0.0030722629985238}, {"x": -0.72463768115942, "y": 6.521739130434785, "x2": -0.43478260869565233, "y2": 6.8115942028985526, "center_x": -0.5797101449275361, "center_y": 6.666666666666669, "value_uncond": 0.0035939224869526182}, {"x": -0.43478260869565233, "y": 6.521739130434785, "x2": -0.1449275362318847, "y2": 6.8115942028985526, "center_x": -0.2898550724637685, "center_y": 6.666666666666669, "value_uncond": 0.004165094279258357}, {"x": -0.14492753623188293, "y": 6.521739130434785, "x2": 0.1449275362318847, "y2": 6.8115942028985526, "center_x": 8.881784197001252e-16, "center_y": 6.666666666666669, "value_uncond": 0.004782189495559725}, {"x": 0.1449275362318847, "y": 6.521739130434785, "x2": 0.43478260869565233, "y2": 6.8115942028985526, "center_x": 0.2898550724637685, "center_y": 6.666666666666669, "value_uncond": 0.005439694883722319}, {"x": 0.43478260869565233, "y": 6.521739130434785, "x2": 0.72463768115942, "y2": 6.8115942028985526, "center_x": 0.5797101449275361, "center_y": 6.666666666666669, "value_uncond": 0.006130107836491764}, {"x": 0.72463768115942, "y": 6.521739130434785, "x2": 1.0144927536231876, "y2": 6.8115942028985526, "center_x": 0.8695652173913038, "center_y": 6.666666666666669, "value_uncond": 0.006843960633452795}, {"x": 1.0144927536231894, "y": 6.521739130434785, "x2": 1.304347826086957, "y2": 6.8115942028985526, "center_x": 1.1594202898550732, "center_y": 6.666666666666669, "value_uncond": 0.0075699446803392575}, {"x": 1.304347826086957, "y": 6.521739130434785, "x2": 1.5942028985507246, "y2": 6.8115942028985526, "center_x": 1.4492753623188408, "center_y": 6.666666666666669, "value_uncond": 0.008295140059495587}, {"x": 1.5942028985507246, "y": 6.521739130434785, "x2": 1.8840579710144922, "y2": 6.8115942028985526, "center_x": 1.7391304347826084, "center_y": 6.666666666666669, "value_uncond": 0.009005349142448897}, {"x": 1.884057971014494, "y": 6.521739130434785, "x2": 2.1739130434782616, "y2": 6.8115942028985526, "center_x": 2.028985507246378, "center_y": 6.666666666666669, "value_uncond": 0.009685525790755987}, {"x": 2.1739130434782616, "y": 6.521739130434785, "x2": 2.4637681159420293, "y2": 6.8115942028985526, "center_x": 2.3188405797101455, "center_y": 6.666666666666669, "value_uncond": 0.01032028434202024}, {"x": 2.4637681159420293, "y": 6.521739130434785, "x2": 2.753623188405797, "y2": 6.8115942028985526, "center_x": 2.608695652173913, "center_y": 6.666666666666669, "value_uncond": 0.010894465770452633}, {"x": 2.753623188405797, "y": 6.521739130434785, "x2": 3.0434782608695645, "y2": 6.8115942028985526, "center_x": 2.8985507246376807, "center_y": 6.666666666666669, "value_uncond": 0.011393732761146198}, {"x": 3.0434782608695663, "y": 6.521739130434785, "x2": 3.333333333333334, "y2": 6.8115942028985526, "center_x": 3.18840579710145, "center_y": 6.666666666666669, "value_uncond": 0.011805161523141232}, {"x": 3.333333333333334, "y": 6.521739130434785, "x2": 3.6231884057971016, "y2": 6.8115942028985526, "center_x": 3.4782608695652177, "center_y": 6.666666666666669, "value_uncond": 0.012117796445186641}, {"x": 3.6231884057971016, "y": 6.521739130434785, "x2": 3.913043478260869, "y2": 6.8115942028985526, "center_x": 3.7681159420289854, "center_y": 6.666666666666669, "value_uncond": 0.012323134448469077}, {"x": 3.913043478260871, "y": 6.521739130434785, "x2": 4.202898550724639, "y2": 6.8115942028985526, "center_x": 4.057971014492755, "center_y": 6.666666666666669, "value_uncond": 0.012415509173274013}, {"x": 4.202898550724639, "y": 6.521739130434785, "x2": 4.492753623188406, "y2": 6.8115942028985526, "center_x": 4.347826086956522, "center_y": 6.666666666666669, "value_uncond": 0.01239235077728404}, {"x": 4.492753623188406, "y": 6.521739130434785, "x2": 4.782608695652174, "y2": 6.8115942028985526, "center_x": 4.63768115942029, "center_y": 6.666666666666669, "value_uncond": 0.01225430472105531}, {"x": 4.782608695652174, "y": 6.521739130434785, "x2": 5.0724637681159415, "y2": 6.8115942028985526, "center_x": 4.927536231884058, "center_y": 6.666666666666669, "value_uncond": 0.012005201877553301}, {"x": 5.072463768115943, "y": 6.521739130434785, "x2": 5.362318840579711, "y2": 6.8115942028985526, "center_x": 5.217391304347827, "center_y": 6.666666666666669, "value_uncond": 0.011651881897623508}, {"x": 5.362318840579711, "y": 6.521739130434785, "x2": 5.6521739130434785, "y2": 6.8115942028985526, "center_x": 5.507246376811595, "center_y": 6.666666666666669, "value_uncond": 0.011203881198226821}, {"x": 5.6521739130434785, "y": 6.521739130434785, "x2": 5.942028985507246, "y2": 6.8115942028985526, "center_x": 5.797101449275362, "center_y": 6.666666666666669, "value_uncond": 0.010673005437644672}, {"x": 5.942028985507246, "y": 6.521739130434785, "x2": 6.231884057971014, "y2": 6.8115942028985526, "center_x": 6.08695652173913, "center_y": 6.666666666666669, "value_uncond": 0.010072813218345815}, {"x": 6.2318840579710155, "y": 6.521739130434785, "x2": 6.521739130434783, "y2": 6.8115942028985526, "center_x": 6.376811594202899, "center_y": 6.666666666666669, "value_uncond": 0.009418042491643618}, {"x": 6.521739130434785, "y": 6.521739130434785, "x2": 6.8115942028985526, "y2": 6.8115942028985526, "center_x": 6.666666666666669, "center_y": 6.666666666666669, "value_uncond": 0.008724013415689036}, {"x": 6.811594202898551, "y": 6.521739130434785, "x2": 7.101449275362318, "y2": 6.8115942028985526, "center_x": 6.956521739130435, "center_y": 6.666666666666669, "value_uncond": 0.008006041159953757}, {"x": 7.10144927536232, "y": 6.521739130434785, "x2": 7.391304347826088, "y2": 6.8115942028985526, "center_x": 7.246376811594204, "center_y": 6.666666666666669, "value_uncond": 0.007278889506506953}, {"x": 7.391304347826086, "y": 6.521739130434785, "x2": 7.681159420289854, "y2": 6.8115942028985526, "center_x": 7.53623188405797, "center_y": 6.666666666666669, "value_uncond": 0.0065562914268104434}, {"x": 7.681159420289855, "y": 6.521739130434785, "x2": 7.971014492753623, "y2": 6.8115942028985526, "center_x": 7.826086956521739, "center_y": 6.666666666666669, "value_uncond": 0.005850556625482317}, {"x": 7.971014492753625, "y": 6.521739130434785, "x2": 8.260869565217392, "y2": 6.8115942028985526, "center_x": 8.115942028985508, "center_y": 6.666666666666669, "value_uncond": 0.005172278949072917}, {"x": 8.26086956521739, "y": 6.521739130434785, "x2": 8.550724637681158, "y2": 6.8115942028985526, "center_x": 8.405797101449274, "center_y": 6.666666666666669, "value_uncond": 0.004530149197903092}, {"x": 8.55072463768116, "y": 6.521739130434785, "x2": 8.840579710144928, "y2": 6.8115942028985526, "center_x": 8.695652173913043, "center_y": 6.666666666666669, "value_uncond": 0.003930871857686281}, {"x": 8.84057971014493, "y": 6.521739130434785, "x2": 9.130434782608697, "y2": 6.8115942028985526, "center_x": 8.985507246376812, "center_y": 6.666666666666669, "value_uncond": 0.0033791781010546027}, {"x": 9.130434782608695, "y": 6.521739130434785, "x2": 9.420289855072463, "y2": 6.8115942028985526, "center_x": 9.275362318840578, "center_y": 6.666666666666669, "value_uncond": 0.0028779224839235533}, {"x": 9.420289855072465, "y": 6.521739130434785, "x2": 9.710144927536232, "y2": 6.8115942028985526, "center_x": 9.565217391304348, "center_y": 6.666666666666669, "value_uncond": 0.0024282473127226916}, {"x": 9.710144927536234, "y": 6.521739130434785, "x2": 10.000000000000002, "y2": 6.8115942028985526, "center_x": 9.855072463768117, "center_y": 6.666666666666669, "value_uncond": 0.002029796764753759}, {"x": 10.0, "y": 6.521739130434785, "x2": 10.289855072463768, "y2": 6.8115942028985526, "center_x": 10.144927536231883, "center_y": 6.666666666666669, "value_uncond": 0.0016809624405866655}, {"x": -10.0, "y": 6.811594202898551, "x2": -9.710144927536232, "y2": 7.101449275362318, "center_x": -9.855072463768117, "center_y": 6.956521739130435, "value_uncond": 2.1274732529638975e-07}, {"x": -9.710144927536232, "y": 6.811594202898551, "x2": -9.420289855072465, "y2": 7.101449275362318, "center_x": -9.565217391304348, "center_y": 6.956521739130435, "value_uncond": 3.32394763783409e-07}, {"x": -9.420289855072463, "y": 6.811594202898551, "x2": -9.130434782608695, "y2": 7.101449275362318, "center_x": -9.275362318840578, "center_y": 6.956521739130435, "value_uncond": 5.145055373860044e-07}, {"x": -9.130434782608695, "y": 6.811594202898551, "x2": -8.840579710144928, "y2": 7.101449275362318, "center_x": -8.985507246376812, "center_y": 6.956521739130435, "value_uncond": 7.889904514165666e-07}, {"x": -8.840579710144928, "y": 6.811594202898551, "x2": -8.55072463768116, "y2": 7.101449275362318, "center_x": -8.695652173913043, "center_y": 6.956521739130435, "value_uncond": 1.198668950703914e-06}, {"x": -8.55072463768116, "y": 6.811594202898551, "x2": -8.260869565217392, "y2": 7.101449275362318, "center_x": -8.405797101449277, "center_y": 6.956521739130435, "value_uncond": 1.8041497355819331e-06}, {"x": -8.26086956521739, "y": 6.811594202898551, "x2": -7.971014492753623, "y2": 7.101449275362318, "center_x": -8.115942028985508, "center_y": 6.956521739130435, "value_uncond": 2.6902442801040447e-06}, {"x": -7.971014492753623, "y": 6.811594202898551, "x2": -7.681159420289855, "y2": 7.101449275362318, "center_x": -7.826086956521739, "center_y": 6.956521739130435, "value_uncond": 3.974263598446794e-06}, {"x": -7.681159420289855, "y": 6.811594202898551, "x2": -7.391304347826088, "y2": 7.101449275362318, "center_x": -7.536231884057972, "center_y": 6.956521739130435, "value_uncond": 5.816576383746788e-06}, {"x": -7.391304347826087, "y": 6.811594202898551, "x2": -7.101449275362319, "y2": 7.101449275362318, "center_x": -7.246376811594203, "center_y": 6.956521739130435, "value_uncond": 8.433813963719633e-06}, {"x": -7.101449275362318, "y": 6.811594202898551, "x2": -6.811594202898551, "y2": 7.101449275362318, "center_x": -6.956521739130435, "center_y": 6.956521739130435, "value_uncond": 1.2115083529099698e-05}, {"x": -6.811594202898551, "y": 6.811594202898551, "x2": -6.521739130434783, "y2": 7.101449275362318, "center_x": -6.666666666666667, "center_y": 6.956521739130435, "value_uncond": 1.7241483193963888e-05}, {"x": -6.521739130434782, "y": 6.811594202898551, "x2": -6.231884057971015, "y2": 7.101449275362318, "center_x": -6.3768115942028984, "center_y": 6.956521739130435, "value_uncond": 2.4309087008280366e-05}, {"x": -6.231884057971014, "y": 6.811594202898551, "x2": -5.942028985507246, "y2": 7.101449275362318, "center_x": -6.08695652173913, "center_y": 6.956521739130435, "value_uncond": 3.3955371590875396e-05}, {"x": -5.942028985507246, "y": 6.811594202898551, "x2": -5.6521739130434785, "y2": 7.101449275362318, "center_x": -5.797101449275362, "center_y": 6.956521739130435, "value_uncond": 4.698877699526274e-05}, {"x": -5.6521739130434785, "y": 6.811594202898551, "x2": -5.362318840579711, "y2": 7.101449275362318, "center_x": -5.507246376811595, "center_y": 6.956521739130435, "value_uncond": 6.44207252883631e-05}, {"x": -5.36231884057971, "y": 6.811594202898551, "x2": -5.072463768115942, "y2": 7.101449275362318, "center_x": -5.217391304347826, "center_y": 6.956521739130435, "value_uncond": 8.74989604135519e-05}, {"x": -5.0724637681159415, "y": 6.811594202898551, "x2": -4.782608695652174, "y2": 7.101449275362318, "center_x": -4.927536231884058, "center_y": 6.956521739130435, "value_uncond": 0.00011774053117595541}, {"x": -4.782608695652174, "y": 6.811594202898551, "x2": -4.492753623188406, "y2": 7.101449275362318, "center_x": -4.63768115942029, "center_y": 6.956521739130435, "value_uncond": 0.00015696213701197131}, {"x": -4.492753623188405, "y": 6.811594202898551, "x2": -4.202898550724638, "y2": 7.101449275362318, "center_x": -4.3478260869565215, "center_y": 6.956521739130435, "value_uncond": 0.00020730492965299356}, {"x": -4.202898550724638, "y": 6.811594202898551, "x2": -3.91304347826087, "y2": 7.101449275362318, "center_x": -4.057971014492754, "center_y": 6.956521739130435, "value_uncond": 0.0002712502648199919}, {"x": -3.913043478260869, "y": 6.811594202898551, "x2": -3.6231884057971016, "y2": 7.101449275362318, "center_x": -3.7681159420289854, "center_y": 6.956521739130435, "value_uncond": 0.000351622394131174}, {"x": -3.6231884057971016, "y": 6.811594202898551, "x2": -3.333333333333334, "y2": 7.101449275362318, "center_x": -3.4782608695652177, "center_y": 6.956521739130435, "value_uncond": 0.0004515737588616033}, {"x": -3.333333333333333, "y": 6.811594202898551, "x2": -3.0434782608695654, "y2": 7.101449275362318, "center_x": -3.1884057971014492, "center_y": 6.956521739130435, "value_uncond": 0.0005745484823511837}, {"x": -3.0434782608695645, "y": 6.811594202898551, "x2": -2.753623188405797, "y2": 7.101449275362318, "center_x": -2.8985507246376807, "center_y": 6.956521739130435, "value_uncond": 0.0007242199451793485}, {"x": -2.753623188405797, "y": 6.811594202898551, "x2": -2.4637681159420293, "y2": 7.101449275362318, "center_x": -2.608695652173913, "center_y": 6.956521739130435, "value_uncond": 0.0009043990451512076}, {"x": -2.4637681159420284, "y": 6.811594202898551, "x2": -2.1739130434782608, "y2": 7.101449275362318, "center_x": -2.3188405797101446, "center_y": 6.956521739130435, "value_uncond": 0.001118910949040142}, {"x": -2.1739130434782608, "y": 6.811594202898551, "x2": -1.8840579710144931, "y2": 7.101449275362318, "center_x": -2.028985507246377, "center_y": 6.956521739130435, "value_uncond": 0.0013714398563909602}, {"x": -1.8840579710144922, "y": 6.811594202898551, "x2": -1.5942028985507246, "y2": 7.101449275362318, "center_x": -1.7391304347826084, "center_y": 6.956521739130435, "value_uncond": 0.0016653434920375757}, {"x": -1.5942028985507246, "y": 6.811594202898551, "x2": -1.304347826086957, "y2": 7.101449275362318, "center_x": -1.4492753623188408, "center_y": 6.956521739130435, "value_uncond": 0.0020034416414148196}, {"x": -1.304347826086957, "y": 6.811594202898551, "x2": -1.0144927536231894, "y2": 7.101449275362318, "center_x": -1.1594202898550732, "center_y": 6.956521739130435, "value_uncond": 0.002387785897913383}, {"x": -1.0144927536231876, "y": 6.811594202898551, "x2": -0.72463768115942, "y2": 7.101449275362318, "center_x": -0.8695652173913038, "center_y": 6.956521739130435, "value_uncond": 0.0028194207010446017}, {"x": -0.72463768115942, "y": 6.811594202898551, "x2": -0.43478260869565233, "y2": 7.101449275362318, "center_x": -0.5797101449275361, "center_y": 6.956521739130435, "value_uncond": 0.00329814845360981}, {"x": -0.43478260869565233, "y": 6.811594202898551, "x2": -0.1449275362318847, "y2": 7.101449275362318, "center_x": -0.2898550724637685, "center_y": 6.956521739130435, "value_uncond": 0.0038223137271730825}, {"x": -0.14492753623188293, "y": 6.811594202898551, "x2": 0.1449275362318847, "y2": 7.101449275362318, "center_x": 8.881784197001252e-16, "center_y": 6.956521739130435, "value_uncond": 0.004388623000888145}, {"x": 0.1449275362318847, "y": 6.811594202898551, "x2": 0.43478260869565233, "y2": 7.101449275362318, "center_x": 0.2898550724637685, "center_y": 6.956521739130435, "value_uncond": 0.004992016754393205}, {"x": 0.43478260869565233, "y": 6.811594202898551, "x2": 0.72463768115942, "y2": 7.101449275362318, "center_x": 0.5797101449275361, "center_y": 6.956521739130435, "value_uncond": 0.005625609832929387}, {"x": 0.72463768115942, "y": 6.811594202898551, "x2": 1.0144927536231876, "y2": 7.101449275362318, "center_x": 0.8695652173913038, "center_y": 6.956521739130435, "value_uncond": 0.006280713694225632}, {"x": 1.0144927536231894, "y": 6.811594202898551, "x2": 1.304347826086957, "y2": 7.101449275362318, "center_x": 1.1594202898550732, "center_y": 6.956521739130435, "value_uncond": 0.006946950423113533}, {"x": 1.304347826086957, "y": 6.811594202898551, "x2": 1.5942028985507246, "y2": 7.101449275362318, "center_x": 1.4492753623188408, "center_y": 6.956521739130435, "value_uncond": 0.007612463390355489}, {"x": 1.5942028985507246, "y": 6.811594202898551, "x2": 1.8840579710144922, "y2": 7.101449275362318, "center_x": 1.7391304347826084, "center_y": 6.956521739130435, "value_uncond": 0.008264223409439334}, {"x": 1.884057971014494, "y": 6.811594202898551, "x2": 2.1739130434782616, "y2": 7.101449275362318, "center_x": 2.028985507246378, "center_y": 6.956521739130435, "value_uncond": 0.00888842261488678}, {"x": 2.1739130434782616, "y": 6.811594202898551, "x2": 2.4637681159420293, "y2": 7.101449275362318, "center_x": 2.3188405797101455, "center_y": 6.956521739130435, "value_uncond": 0.009470941559540745}, {"x": 2.4637681159420293, "y": 6.811594202898551, "x2": 2.753623188405797, "y2": 7.101449275362318, "center_x": 2.608695652173913, "center_y": 6.956521739130435, "value_uncond": 0.0099978687810239}, {"x": 2.753623188405797, "y": 6.811594202898551, "x2": 3.0434782608695645, "y2": 7.101449275362318, "center_x": 2.8985507246376807, "center_y": 6.956521739130435, "value_uncond": 0.010456046902358577}, {"x": 3.0434782608695663, "y": 6.811594202898551, "x2": 3.333333333333334, "y2": 7.101449275362318, "center_x": 3.18840579710145, "center_y": 6.956521739130435, "value_uncond": 0.010833615739769736}, {"x": 3.333333333333334, "y": 6.811594202898551, "x2": 3.6231884057971016, "y2": 7.101449275362318, "center_x": 3.4782608695652177, "center_y": 6.956521739130435, "value_uncond": 0.011120521311170306}, {"x": 3.6231884057971016, "y": 6.811594202898551, "x2": 3.913043478260869, "y2": 7.101449275362318, "center_x": 3.7681159420289854, "center_y": 6.956521739130435, "value_uncond": 0.011308960327440668}, {"x": 3.913043478260871, "y": 6.811594202898551, "x2": 4.202898550724639, "y2": 7.101449275362318, "center_x": 4.057971014492755, "center_y": 6.956521739130435, "value_uncond": 0.011393732761146204}, {"x": 4.202898550724639, "y": 6.811594202898551, "x2": 4.492753623188406, "y2": 7.101449275362318, "center_x": 4.347826086956522, "center_y": 6.956521739130435, "value_uncond": 0.011372480263853986}, {"x": 4.492753623188406, "y": 6.811594202898551, "x2": 4.782608695652174, "y2": 7.101449275362318, "center_x": 4.63768115942029, "center_y": 6.956521739130435, "value_uncond": 0.011245795175755779}, {"x": 4.782608695652174, "y": 6.811594202898551, "x2": 5.0724637681159415, "y2": 7.101449275362318, "center_x": 4.927536231884058, "center_y": 6.956521739130435, "value_uncond": 0.011017193095140902}, {"x": 5.072463768115943, "y": 6.811594202898551, "x2": 5.362318840579711, "y2": 7.101449275362318, "center_x": 5.217391304347827, "center_y": 6.956521739130435, "value_uncond": 0.010692950780604234}, {"x": 5.362318840579711, "y": 6.811594202898551, "x2": 5.6521739130434785, "y2": 7.101449275362318, "center_x": 5.507246376811595, "center_y": 6.956521739130435, "value_uncond": 0.010281819817347382}, {"x": 5.6521739130434785, "y": 6.811594202898551, "x2": 5.942028985507246, "y2": 7.101449275362318, "center_x": 5.797101449275362, "center_y": 6.956521739130435, "value_uncond": 0.009794634276985995}, {"x": 5.942028985507246, "y": 6.811594202898551, "x2": 6.231884057971014, "y2": 7.101449275362318, "center_x": 6.08695652173913, "center_y": 6.956521739130435, "value_uncond": 0.009243836910839224}, {"x": 6.2318840579710155, "y": 6.811594202898551, "x2": 6.521739130434783, "y2": 7.101449275362318, "center_x": 6.376811594202899, "center_y": 6.956521739130435, "value_uncond": 0.008642952760560024}, {"x": 6.521739130434785, "y": 6.811594202898551, "x2": 6.8115942028985526, "y2": 7.101449275362318, "center_x": 6.666666666666669, "center_y": 6.956521739130435, "value_uncond": 0.008006041159953757}, {"x": 6.811594202898551, "y": 6.811594202898551, "x2": 7.101449275362318, "y2": 7.101449275362318, "center_x": 6.956521739130435, "center_y": 6.956521739130435, "value_uncond": 0.0073471568647067755}, {"x": 7.10144927536232, "y": 6.811594202898551, "x2": 7.391304347826088, "y2": 7.101449275362318, "center_x": 7.246376811594204, "center_y": 6.956521739130435, "value_uncond": 0.00667984862139824}, {"x": 7.391304347826086, "y": 6.811594202898551, "x2": 7.681159420289854, "y2": 7.101449275362318, "center_x": 7.53623188405797, "center_y": 6.956521739130435, "value_uncond": 0.00601671920005302}, {"x": 7.681159420289855, "y": 6.811594202898551, "x2": 7.971014492753623, "y2": 7.101449275362318, "center_x": 7.826086956521739, "center_y": 6.956521739130435, "value_uncond": 0.00536906523642159}, {"x": 7.971014492753625, "y": 6.811594202898551, "x2": 8.260869565217392, "y2": 7.101449275362318, "center_x": 8.115942028985508, "center_y": 6.956521739130435, "value_uncond": 0.004746608720542592}, {"x": 8.26086956521739, "y": 6.811594202898551, "x2": 8.550724637681158, "y2": 7.101449275362318, "center_x": 8.405797101449274, "center_y": 6.956521739130435, "value_uncond": 0.004157325213865356}, {"x": 8.55072463768116, "y": 6.811594202898551, "x2": 8.840579710144928, "y2": 7.101449275362318, "center_x": 8.695652173913043, "center_y": 6.956521739130435, "value_uncond": 0.003607367433725416}, {"x": 8.84057971014493, "y": 6.811594202898551, "x2": 9.130434782608697, "y2": 7.101449275362318, "center_x": 8.985507246376812, "center_y": 6.956521739130435, "value_uncond": 0.003101077184865926}, {"x": 9.130434782608695, "y": 6.811594202898551, "x2": 9.420289855072463, "y2": 7.101449275362318, "center_x": 9.275362318840578, "center_y": 6.956521739130435, "value_uncond": 0.002641074097847261}, {"x": 9.420289855072465, "y": 6.811594202898551, "x2": 9.710144927536232, "y2": 7.101449275362318, "center_x": 9.565217391304348, "center_y": 6.956521739130435, "value_uncond": 0.002228406469119295}, {"x": 9.710144927536234, "y": 6.811594202898551, "x2": 10.000000000000002, "y2": 7.101449275362318, "center_x": 9.855072463768117, "center_y": 6.956521739130435, "value_uncond": 0.0018627477596188527}, {"x": 10.0, "y": 6.811594202898551, "x2": 10.289855072463768, "y2": 7.101449275362318, "center_x": 10.144927536231883, "center_y": 6.956521739130435, "value_uncond": 0.0015426219385989153}, {"x": -10.0, "y": 7.10144927536232, "x2": -9.710144927536232, "y2": 7.391304347826088, "center_x": -9.855072463768117, "center_y": 7.246376811594204, "value_uncond": 1.9342447068386744e-07}, {"x": -9.710144927536232, "y": 7.10144927536232, "x2": -9.420289855072465, "y2": 7.391304347826088, "center_x": -9.565217391304348, "center_y": 7.246376811594204, "value_uncond": 3.022048862580275e-07}, {"x": -9.420289855072463, "y": 7.10144927536232, "x2": -9.130434782608695, "y2": 7.391304347826088, "center_x": -9.275362318840578, "center_y": 7.246376811594204, "value_uncond": 4.677753814021533e-07}, {"x": -9.130434782608695, "y": 7.10144927536232, "x2": -8.840579710144928, "y2": 7.391304347826088, "center_x": -8.985507246376812, "center_y": 7.246376811594204, "value_uncond": 7.17330101458459e-07}, {"x": -8.840579710144928, "y": 7.10144927536232, "x2": -8.55072463768116, "y2": 7.391304347826088, "center_x": -8.695652173913043, "center_y": 7.246376811594204, "value_uncond": 1.089799399320701e-06}, {"x": -8.55072463768116, "y": 7.10144927536232, "x2": -8.260869565217392, "y2": 7.391304347826088, "center_x": -8.405797101449277, "center_y": 7.246376811594204, "value_uncond": 1.6402871676680804e-06}, {"x": -8.26086956521739, "y": 7.10144927536232, "x2": -7.971014492753623, "y2": 7.391304347826088, "center_x": -8.115942028985508, "center_y": 7.246376811594204, "value_uncond": 2.445901847012585e-06}, {"x": -7.971014492753623, "y": 7.10144927536232, "x2": -7.681159420289855, "y2": 7.391304347826088, "center_x": -7.826086956521739, "center_y": 7.246376811594204, "value_uncond": 3.613299635221212e-06}, {"x": -7.681159420289855, "y": 7.10144927536232, "x2": -7.391304347826088, "y2": 7.391304347826088, "center_x": -7.536231884057972, "center_y": 7.246376811594204, "value_uncond": 5.288283679482755e-06}, {"x": -7.391304347826087, "y": 7.10144927536232, "x2": -7.101449275362319, "y2": 7.391304347826088, "center_x": -7.246376811594203, "center_y": 7.246376811594204, "value_uncond": 7.66780968694211e-06}, {"x": -7.101449275362318, "y": 7.10144927536232, "x2": -6.811594202898551, "y2": 7.391304347826088, "center_x": -6.956521739130435, "center_y": 7.246376811594204, "value_uncond": 1.1014726580662296e-05}, {"x": -6.811594202898551, "y": 7.10144927536232, "x2": -6.521739130434783, "y2": 7.391304347826088, "center_x": -6.666666666666667, "center_y": 7.246376811594204, "value_uncond": 1.56755190973668e-05}, {"x": -6.521739130434782, "y": 7.10144927536232, "x2": -6.231884057971015, "y2": 7.391304347826088, "center_x": -6.3768115942028984, "center_y": 7.246376811594204, "value_uncond": 2.21012051777109e-05}, {"x": -6.231884057971014, "y": 7.10144927536232, "x2": -5.942028985507246, "y2": 7.391304347826088, "center_x": -6.08695652173913, "center_y": 7.246376811594204, "value_uncond": 3.0871362390521965e-05}, {"x": -5.942028985507246, "y": 7.10144927536232, "x2": -5.6521739130434785, "y2": 7.391304347826088, "center_x": -5.797101449275362, "center_y": 7.246376811594204, "value_uncond": 4.27210039220419e-05}, {"x": -5.6521739130434785, "y": 7.10144927536232, "x2": -5.362318840579711, "y2": 7.391304347826088, "center_x": -5.507246376811595, "center_y": 7.246376811594204, "value_uncond": 5.856968905537602e-05}, {"x": -5.36231884057971, "y": 7.10144927536232, "x2": -5.072463768115942, "y2": 7.391304347826088, "center_x": -5.217391304347826, "center_y": 7.246376811594204, "value_uncond": 7.955183492813184e-05}, {"x": -5.0724637681159415, "y": 7.10144927536232, "x2": -4.782608695652174, "y2": 7.391304347826088, "center_x": -4.927536231884058, "center_y": 7.246376811594204, "value_uncond": 0.00010704670382586031}, {"x": -4.782608695652174, "y": 7.10144927536232, "x2": -4.492753623188406, "y2": 7.391304347826088, "center_x": -4.63768115942029, "center_y": 7.246376811594204, "value_uncond": 0.00014270599278582075}, {"x": -4.492753623188405, "y": 7.10144927536232, "x2": -4.202898550724638, "y2": 7.391304347826088, "center_x": -4.3478260869565215, "center_y": 7.246376811594204, "value_uncond": 0.00018847638264041263}, {"x": -4.202898550724638, "y": 7.10144927536232, "x2": -3.91304347826087, "y2": 7.391304347826088, "center_x": -4.057971014492754, "center_y": 7.246376811594204, "value_uncond": 0.0002466138590582607}, {"x": -3.913043478260869, "y": 7.10144927536232, "x2": -3.6231884057971016, "y2": 7.391304347826088, "center_x": -3.7681159420289854, "center_y": 7.246376811594204, "value_uncond": 0.00031968615995836775}, {"x": -3.6231884057971016, "y": 7.10144927536232, "x2": -3.333333333333334, "y2": 7.391304347826088, "center_x": -3.4782608695652177, "center_y": 7.246376811594204, "value_uncond": 0.00041055940496946086}, {"x": -3.333333333333333, "y": 7.10144927536232, "x2": -3.0434782608695654, "y2": 7.391304347826088, "center_x": -3.1884057971014492, "center_y": 7.246376811594204, "value_uncond": 0.0005223649036535408}, {"x": -3.0434782608695645, "y": 7.10144927536232, "x2": -2.753623188405797, "y2": 7.391304347826088, "center_x": -2.8985507246376807, "center_y": 7.246376811594204, "value_uncond": 0.0006584424004384523}, {"x": -2.753623188405797, "y": 7.10144927536232, "x2": -2.4637681159420293, "y2": 7.391304347826088, "center_x": -2.608695652173913, "center_y": 7.246376811594204, "value_uncond": 0.000822256666924762}, {"x": -2.4637681159420284, "y": 7.10144927536232, "x2": -2.1739130434782608, "y2": 7.391304347826088, "center_x": -2.3188405797101446, "center_y": 7.246376811594204, "value_uncond": 0.0010172854476969823}, {"x": -2.1739130434782608, "y": 7.10144927536232, "x2": -1.8840579710144931, "y2": 7.391304347826088, "center_x": -2.028985507246377, "center_y": 7.246376811594204, "value_uncond": 0.001246878323511795}, {"x": -1.8840579710144922, "y": 7.10144927536232, "x2": -1.5942028985507246, "y2": 7.391304347826088, "center_x": -1.7391304347826084, "center_y": 7.246376811594204, "value_uncond": 0.001514088052601515}, {"x": -1.5942028985507246, "y": 7.10144927536232, "x2": -1.304347826086957, "y2": 7.391304347826088, "center_x": -1.4492753623188408, "center_y": 7.246376811594204, "value_uncond": 0.001821478312344528}, {"x": -1.304347826086957, "y": 7.10144927536232, "x2": -1.0144927536231894, "y2": 7.391304347826088, "center_x": -1.1594202898550732, "center_y": 7.246376811594204, "value_uncond": 0.0021709143594019938}, {"x": -1.0144927536231876, "y": 7.10144927536232, "x2": -0.72463768115942, "y2": 7.391304347826088, "center_x": -0.8695652173913038, "center_y": 7.246376811594204, "value_uncond": 0.002563345771679815}, {"x": -0.72463768115942, "y": 7.10144927536232, "x2": -0.43478260869565233, "y2": 7.391304347826088, "center_x": -0.5797101449275361, "center_y": 7.246376811594204, "value_uncond": 0.0029985928988180773}, {"x": -0.43478260869565233, "y": 7.10144927536232, "x2": -0.1449275362318847, "y2": 7.391304347826088, "center_x": -0.2898550724637685, "center_y": 7.246376811594204, "value_uncond": 0.003475150667281647}, {"x": -0.14492753623188293, "y": 7.10144927536232, "x2": 0.1449275362318847, "y2": 7.391304347826088, "center_x": 8.881784197001252e-16, "center_y": 7.246376811594204, "value_uncond": 0.003990024691474892}, {"x": 0.1449275362318847, "y": 7.10144927536232, "x2": 0.43478260869565233, "y2": 7.391304347826088, "center_x": 0.2898550724637685, "center_y": 7.246376811594204, "value_uncond": 0.004538614983846708}, {"x": 0.43478260869565233, "y": 7.10144927536232, "x2": 0.72463768115942, "y2": 7.391304347826088, "center_x": 0.5797101449275361, "center_y": 7.246376811594204, "value_uncond": 0.005114661736369161}, {"x": 0.72463768115942, "y": 7.10144927536232, "x2": 1.0144927536231876, "y2": 7.391304347826088, "center_x": 0.8695652173913038, "center_y": 7.246376811594204, "value_uncond": 0.0057102655468408235}, {"x": 1.0144927536231894, "y": 7.10144927536232, "x2": 1.304347826086957, "y2": 7.391304347826088, "center_x": 1.1594202898550732, "center_y": 7.246376811594204, "value_uncond": 0.006315991078081992}, {"x": 1.304347826086957, "y": 7.10144927536232, "x2": 1.5942028985507246, "y2": 7.391304347826088, "center_x": 1.4492753623188408, "center_y": 7.246376811594204, "value_uncond": 0.00692105858359676}, {"x": 1.5942028985507246, "y": 7.10144927536232, "x2": 1.8840579710144922, "y2": 7.391304347826088, "center_x": 1.7391304347826084, "center_y": 7.246376811594204, "value_uncond": 0.0075136222575633805}, {"x": 1.884057971014494, "y": 7.10144927536232, "x2": 2.1739130434782616, "y2": 7.391304347826088, "center_x": 2.028985507246378, "center_y": 7.246376811594204, "value_uncond": 0.008081128338999469}, {"x": 2.1739130434782616, "y": 7.10144927536232, "x2": 2.4637681159420293, "y2": 7.391304347826088, "center_x": 2.3188405797101455, "center_y": 7.246376811594204, "value_uncond": 0.008610739784765224}, {"x": 2.4637681159420293, "y": 7.10144927536232, "x2": 2.753623188405797, "y2": 7.391304347826088, "center_x": 2.608695652173913, "center_y": 7.246376811594204, "value_uncond": 0.009089808646205944}, {"x": 2.753623188405797, "y": 7.10144927536232, "x2": 3.0434782608695645, "y2": 7.391304347826088, "center_x": 2.8985507246376807, "center_y": 7.246376811594204, "value_uncond": 0.00950637256998089}, {"x": 3.0434782608695663, "y": 7.10144927536232, "x2": 3.333333333333334, "y2": 7.391304347826088, "center_x": 3.18840579710145, "center_y": 7.246376811594204, "value_uncond": 0.00984964857789889}, {"x": 3.333333333333334, "y": 7.10144927536232, "x2": 3.6231884057971016, "y2": 7.391304347826088, "center_x": 3.4782608695652177, "center_y": 7.246376811594204, "value_uncond": 0.010110495844519491}, {"x": 3.6231884057971016, "y": 7.10144927536232, "x2": 3.913043478260869, "y2": 7.391304347826088, "center_x": 3.7681159420289854, "center_y": 7.246376811594204, "value_uncond": 0.010281819817347378}, {"x": 3.913043478260871, "y": 7.10144927536232, "x2": 4.202898550724639, "y2": 7.391304347826088, "center_x": 4.057971014492755, "center_y": 7.246376811594204, "value_uncond": 0.010358892763365537}, {"x": 4.202898550724639, "y": 7.10144927536232, "x2": 4.492753623188406, "y2": 7.391304347826088, "center_x": 4.347826086956522, "center_y": 7.246376811594204, "value_uncond": 0.010339570532010896}, {"x": 4.492753623188406, "y": 7.10144927536232, "x2": 4.782608695652174, "y2": 7.391304347826088, "center_x": 4.63768115942029, "center_y": 7.246376811594204, "value_uncond": 0.01022439166395793}, {"x": 4.782608695652174, "y": 7.10144927536232, "x2": 5.0724637681159415, "y2": 7.391304347826088, "center_x": 4.927536231884058, "center_y": 7.246376811594204, "value_uncond": 0.010016552451979297}, {"x": 5.072463768115943, "y": 7.10144927536232, "x2": 5.362318840579711, "y2": 7.391304347826088, "center_x": 5.217391304347827, "center_y": 7.246376811594204, "value_uncond": 0.009721759565745856}, {"x": 5.362318840579711, "y": 7.10144927536232, "x2": 5.6521739130434785, "y2": 7.391304347826088, "center_x": 5.507246376811595, "center_y": 7.246376811594204, "value_uncond": 0.00934796972449207}, {"x": 5.6521739130434785, "y": 7.10144927536232, "x2": 5.942028985507246, "y2": 7.391304347826088, "center_x": 5.797101449275362, "center_y": 7.246376811594204, "value_uncond": 0.00890503299126662}, {"x": 5.942028985507246, "y": 7.10144927536232, "x2": 6.231884057971014, "y2": 7.391304347826088, "center_x": 6.08695652173913, "center_y": 7.246376811594204, "value_uncond": 0.008404261999891829}, {"x": 6.2318840579710155, "y": 7.10144927536232, "x2": 6.521739130434783, "y2": 7.391304347826088, "center_x": 6.376811594202899, "center_y": 7.246376811594204, "value_uncond": 0.007857953375103437}, {"x": 6.521739130434785, "y": 7.10144927536232, "x2": 6.8115942028985526, "y2": 7.391304347826088, "center_x": 6.666666666666669, "center_y": 7.246376811594204, "value_uncond": 0.007278889506506953}, {"x": 6.811594202898551, "y": 7.10144927536232, "x2": 7.101449275362318, "y2": 7.391304347826088, "center_x": 6.956521739130435, "center_y": 7.246376811594204, "value_uncond": 0.00667984862139824}, {"x": 7.10144927536232, "y": 7.10144927536232, "x2": 7.391304347826088, "y2": 7.391304347826088, "center_x": 7.246376811594204, "center_y": 7.246376811594204, "value_uncond": 0.0060731488964305335}, {"x": 7.391304347826086, "y": 7.10144927536232, "x2": 7.681159420289854, "y2": 7.391304347826088, "center_x": 7.53623188405797, "center_y": 7.246376811594204, "value_uncond": 0.005470248450373667}, {"x": 7.681159420289855, "y": 7.10144927536232, "x2": 7.971014492753623, "y2": 7.391304347826088, "center_x": 7.826086956521739, "center_y": 7.246376811594204, "value_uncond": 0.0048814178978522915}, {"x": 7.971014492753625, "y": 7.10144927536232, "x2": 8.260869565217392, "y2": 7.391304347826088, "center_x": 8.115942028985508, "center_y": 7.246376811594204, "value_uncond": 0.004315496225559179}, {"x": 8.26086956521739, "y": 7.10144927536232, "x2": 8.550724637681158, "y2": 7.391304347826088, "center_x": 8.405797101449274, "center_y": 7.246376811594204, "value_uncond": 0.0037797346116212206}, {"x": 8.55072463768116, "y": 7.10144927536232, "x2": 8.840579710144928, "y2": 7.391304347826088, "center_x": 8.695652173913043, "center_y": 7.246376811594204, "value_uncond": 0.0032797269505432467}, {"x": 8.84057971014493, "y": 7.10144927536232, "x2": 9.130434782608697, "y2": 7.391304347826088, "center_x": 8.985507246376812, "center_y": 7.246376811594204, "value_uncond": 0.002819420701044596}, {"x": 9.130434782608695, "y": 7.10144927536232, "x2": 9.420289855072463, "y2": 7.391304347826088, "center_x": 9.275362318840578, "center_y": 7.246376811594204, "value_uncond": 0.0024011975647698}, {"x": 9.420289855072465, "y": 7.10144927536232, "x2": 9.710144927536232, "y2": 7.391304347826088, "center_x": 9.565217391304348, "center_y": 7.246376811594204, "value_uncond": 0.0020260106262554294}, {"x": 9.710144927536234, "y": 7.10144927536232, "x2": 10.000000000000002, "y2": 7.391304347826088, "center_x": 9.855072463768117, "center_y": 7.246376811594204, "value_uncond": 0.0016935630044696544}, {"x": 10.0, "y": 7.10144927536232, "x2": 10.289855072463768, "y2": 7.391304347826088, "center_x": 10.144927536231883, "center_y": 7.246376811594204, "value_uncond": 0.0014025127297047169}, {"x": -10.0, "y": 7.391304347826086, "x2": -9.710144927536232, "y2": 7.681159420289854, "center_x": -9.855072463768117, "center_y": 7.53623188405797, "value_uncond": 1.7422261977549334e-07}, {"x": -9.710144927536232, "y": 7.391304347826086, "x2": -9.420289855072465, "y2": 7.681159420289854, "center_x": -9.565217391304348, "center_y": 7.53623188405797, "value_uncond": 2.7220406397741216e-07}, {"x": -9.420289855072463, "y": 7.391304347826086, "x2": -9.130434782608695, "y2": 7.681159420289854, "center_x": -9.275362318840578, "center_y": 7.53623188405797, "value_uncond": 4.213378593009689e-07}, {"x": -9.130434782608695, "y": 7.391304347826086, "x2": -8.840579710144928, "y2": 7.681159420289854, "center_x": -8.985507246376812, "center_y": 7.53623188405797, "value_uncond": 6.461185034036994e-07}, {"x": -8.840579710144928, "y": 7.391304347826086, "x2": -8.55072463768116, "y2": 7.681159420289854, "center_x": -8.695652173913043, "center_y": 7.53623188405797, "value_uncond": 9.8161161154077e-07}, {"x": -8.55072463768116, "y": 7.391304347826086, "x2": -8.260869565217392, "y2": 7.681159420289854, "center_x": -8.405797101449277, "center_y": 7.53623188405797, "value_uncond": 1.4774507409785143e-06}, {"x": -8.26086956521739, "y": 7.391304347826086, "x2": -7.971014492753623, "y2": 7.681159420289854, "center_x": -8.115942028985508, "center_y": 7.53623188405797, "value_uncond": 2.2030895366735617e-06}, {"x": -7.971014492753623, "y": 7.391304347826086, "x2": -7.681159420289855, "y2": 7.681159420289854, "center_x": -7.826086956521739, "center_y": 7.53623188405797, "value_uncond": 3.2545961028424198e-06}, {"x": -7.681159420289855, "y": 7.391304347826086, "x2": -7.391304347826088, "y2": 7.681159420289854, "center_x": -7.536231884057972, "center_y": 7.53623188405797, "value_uncond": 4.763299253181387e-06}, {"x": -7.391304347826087, "y": 7.391304347826086, "x2": -7.101449275362319, "y2": 7.681159420289854, "center_x": -7.246376811594203, "center_y": 7.53623188405797, "value_uncond": 6.906602287062016e-06}, {"x": -7.101449275362318, "y": 7.391304347826086, "x2": -6.811594202898551, "y2": 7.681159420289854, "center_x": -6.956521739130435, "center_y": 7.53623188405797, "value_uncond": 9.921260294568306e-06}, {"x": -6.811594202898551, "y": 7.391304347826086, "x2": -6.521739130434783, "y2": 7.681159420289854, "center_x": -6.666666666666667, "center_y": 7.53623188405797, "value_uncond": 1.4119361391184097e-05}, {"x": -6.521739130434782, "y": 7.391304347826086, "x2": -6.231884057971015, "y2": 7.681159420289854, "center_x": -6.3768115942028984, "center_y": 7.53623188405797, "value_uncond": 1.9907149558908627e-05}, {"x": -6.231884057971014, "y": 7.391304347826086, "x2": -5.942028985507246, "y2": 7.681159420289854, "center_x": -6.08695652173913, "center_y": 7.53623188405797, "value_uncond": 2.780666589237285e-05}, {"x": -5.942028985507246, "y": 7.391304347826086, "x2": -5.6521739130434785, "y2": 7.681159420289854, "center_x": -5.797101449275362, "center_y": 7.53623188405797, "value_uncond": 3.8479956524746164e-05}, {"x": -5.6521739130434785, "y": 7.391304347826086, "x2": -5.362318840579711, "y2": 7.681159420289854, "center_x": -5.507246376811595, "center_y": 7.53623188405797, "value_uncond": 5.275529321903279e-05}, {"x": -5.36231884057971, "y": 7.391304347826086, "x2": -5.072463768115942, "y2": 7.681159420289854, "center_x": -5.217391304347826, "center_y": 7.53623188405797, "value_uncond": 7.165447598292267e-05}, {"x": -5.0724637681159415, "y": 7.391304347826086, "x2": -4.782608695652174, "y2": 7.681159420289854, "center_x": -4.927536231884058, "center_y": 7.53623188405797, "value_uncond": 9.641984343001844e-05}, {"x": -4.782608695652174, "y": 7.391304347826086, "x2": -4.492753623188406, "y2": 7.681159420289854, "center_x": -4.63768115942029, "center_y": 7.53623188405797, "value_uncond": 0.0001285391234775238}, {"x": -4.492753623188405, "y": 7.391304347826086, "x2": -4.202898550724638, "y2": 7.681159420289854, "center_x": -4.3478260869565215, "center_y": 7.53623188405797, "value_uncond": 0.0001697657438757553}, {"x": -4.202898550724638, "y": 7.391304347826086, "x2": -3.91304347826087, "y2": 7.681159420289854, "center_x": -4.057971014492754, "center_y": 7.53623188405797, "value_uncond": 0.00022213173155478084}, {"x": -3.913043478260869, "y": 7.391304347826086, "x2": -3.6231884057971016, "y2": 7.681159420289854, "center_x": -3.7681159420289854, "center_y": 7.53623188405797, "value_uncond": 0.0002879499170761312}, {"x": -3.6231884057971016, "y": 7.391304347826086, "x2": -3.333333333333334, "y2": 7.681159420289854, "center_x": -3.4782608695652177, "center_y": 7.53623188405797, "value_uncond": 0.0003698018914274478}, {"x": -3.333333333333333, "y": 7.391304347826086, "x2": -3.0434782608695654, "y2": 7.681159420289854, "center_x": -3.1884057971014492, "center_y": 7.53623188405797, "value_uncond": 0.00047050810929727627}, {"x": -3.0434782608695645, "y": 7.391304347826086, "x2": -2.753623188405797, "y2": 7.681159420289854, "center_x": -2.8985507246376807, "center_y": 7.53623188405797, "value_uncond": 0.000593076768260322}, {"x": -2.753623188405797, "y": 7.391304347826086, "x2": -2.4637681159420293, "y2": 7.681159420289854, "center_x": -2.608695652173913, "center_y": 7.53623188405797, "value_uncond": 0.0007406286812263477}, {"x": -2.4637681159420284, "y": 7.391304347826086, "x2": -2.1739130434782608, "y2": 7.681159420289854, "center_x": -2.3188405797101446, "center_y": 7.53623188405797, "value_uncond": 0.0009162963462204569}, {"x": -2.1739130434782608, "y": 7.391304347826086, "x2": -1.8840579710144931, "y2": 7.681159420289854, "center_x": -2.028985507246377, "center_y": 7.53623188405797, "value_uncond": 0.0011230968206631274}, {"x": -1.8840579710144922, "y": 7.391304347826086, "x2": -1.5942028985507246, "y2": 7.681159420289854, "center_x": -1.7391304347826084, "center_y": 7.53623188405797, "value_uncond": 0.0013637798059488858}, {"x": -1.5942028985507246, "y": 7.391304347826086, "x2": -1.304347826086957, "y2": 7.681159420289854, "center_x": -1.4492753623188408, "center_y": 7.53623188405797, "value_uncond": 0.0016406544752011858}, {"x": -1.304347826086957, "y": 7.391304347826086, "x2": -1.0144927536231894, "y2": 7.681159420289854, "center_x": -1.1594202898550732, "center_y": 7.53623188405797, "value_uncond": 0.001955400915230719}, {"x": -1.0144927536231876, "y": 7.391304347826086, "x2": -0.72463768115942, "y2": 7.681159420289854, "center_x": -0.8695652173913038, "center_y": 7.53623188405797, "value_uncond": 0.0023088744363809113}, {"x": -0.72463768115942, "y": 7.391304347826086, "x2": -0.43478260869565233, "y2": 7.681159420289854, "center_x": -0.5797101449275361, "center_y": 7.53623188405797, "value_uncond": 0.002700913222743788}, {"x": -0.43478260869565233, "y": 7.391304347826086, "x2": -0.1449275362318847, "y2": 7.681159420289854, "center_x": -0.2898550724637685, "center_y": 7.53623188405797, "value_uncond": 0.003130161614131584}, {"x": -0.14492753623188293, "y": 7.391304347826086, "x2": 0.1449275362318847, "y2": 7.681159420289854, "center_x": 8.881784197001252e-16, "center_y": 7.53623188405797, "value_uncond": 0.003593922486952622}, {"x": 0.1449275362318847, "y": 7.391304347826086, "x2": 0.43478260869565233, "y2": 7.681159420289854, "center_x": 0.2898550724637685, "center_y": 7.53623188405797, "value_uncond": 0.004088052508777173}, {"x": 0.43478260869565233, "y": 7.391304347826086, "x2": 0.72463768115942, "y2": 7.681159420289854, "center_x": 0.5797101449275361, "center_y": 7.53623188405797, "value_uncond": 0.004606913302257929}, {"x": 0.72463768115942, "y": 7.391304347826086, "x2": 1.0144927536231876, "y2": 7.681159420289854, "center_x": 0.8695652173913038, "center_y": 7.53623188405797, "value_uncond": 0.00514338966350509}, {"x": 1.0144927536231894, "y": 7.391304347826086, "x2": 1.304347826086957, "y2": 7.681159420289854, "center_x": 1.1594202898550732, "center_y": 7.53623188405797, "value_uncond": 0.0056889829307097284}, {"x": 1.304347826086957, "y": 7.391304347826086, "x2": 1.5942028985507246, "y2": 7.681159420289854, "center_x": 1.4492753623188408, "center_y": 7.53623188405797, "value_uncond": 0.00623398349645561}, {"x": 1.5942028985507246, "y": 7.391304347826086, "x2": 1.8840579710144922, "y2": 7.681159420289854, "center_x": 1.7391304347826084, "center_y": 7.53623188405797, "value_uncond": 0.006767721525037255}, {"x": 1.884057971014494, "y": 7.391304347826086, "x2": 2.1739130434782616, "y2": 7.681159420289854, "center_x": 2.028985507246378, "center_y": 7.53623188405797, "value_uncond": 0.007278889506506966}, {"x": 2.1739130434782616, "y": 7.391304347826086, "x2": 2.4637681159420293, "y2": 7.681159420289854, "center_x": 2.3188405797101455, "center_y": 7.53623188405797, "value_uncond": 0.007755924771063552}, {"x": 2.4637681159420293, "y": 7.391304347826086, "x2": 2.753623188405797, "y2": 7.681159420289854, "center_x": 2.608695652173913, "center_y": 7.53623188405797, "value_uncond": 0.0081874349713912}, {"x": 2.753623188405797, "y": 7.391304347826086, "x2": 3.0434782608695645, "y2": 7.681159420289854, "center_x": 2.8985507246376807, "center_y": 7.53623188405797, "value_uncond": 0.008562645294301409}, {"x": 3.0434782608695663, "y": 7.391304347826086, "x2": 3.333333333333334, "y2": 7.681159420289854, "center_x": 3.18840579710145, "center_y": 7.53623188405797, "value_uncond": 0.008871843221503157}, {"x": 3.333333333333334, "y": 7.391304347826086, "x2": 3.6231884057971016, "y2": 7.681159420289854, "center_x": 3.4782608695652177, "center_y": 7.53623188405797, "value_uncond": 0.0091067953658272}, {"x": 3.6231884057971016, "y": 7.391304347826086, "x2": 3.913043478260869, "y2": 7.681159420289854, "center_x": 3.7681159420289854, "center_y": 7.53623188405797, "value_uncond": 0.009261111473147477}, {"x": 3.913043478260871, "y": 7.391304347826086, "x2": 4.202898550724639, "y2": 7.681159420289854, "center_x": 4.057971014492755, "center_y": 7.53623188405797, "value_uncond": 0.009330533147259464}, {"x": 4.202898550724639, "y": 7.391304347826086, "x2": 4.492753623188406, "y2": 7.681159420289854, "center_x": 4.347826086956522, "center_y": 7.53623188405797, "value_uncond": 0.009313129094118662}, {"x": 4.492753623188406, "y": 7.391304347826086, "x2": 4.782608695652174, "y2": 7.681159420289854, "center_x": 4.63768115942029, "center_y": 7.53623188405797, "value_uncond": 0.009209384391785931}, {"x": 4.782608695652174, "y": 7.391304347826086, "x2": 5.0724637681159415, "y2": 7.681159420289854, "center_x": 4.927536231884058, "center_y": 7.53623188405797, "value_uncond": 0.009022178027074335}, {"x": 5.072463768115943, "y": 7.391304347826086, "x2": 5.362318840579711, "y2": 7.681159420289854, "center_x": 5.217391304347827, "center_y": 7.53623188405797, "value_uncond": 0.00875665015074523}, {"x": 5.362318840579711, "y": 7.391304347826086, "x2": 5.6521739130434785, "y2": 7.681159420289854, "center_x": 5.507246376811595, "center_y": 7.53623188405797, "value_uncond": 0.008419967593680685}, {"x": 5.6521739130434785, "y": 7.391304347826086, "x2": 5.942028985507246, "y2": 7.681159420289854, "center_x": 5.797101449275362, "center_y": 7.53623188405797, "value_uncond": 0.008021002572427181}, {"x": 5.942028985507246, "y": 7.391304347826086, "x2": 6.231884057971014, "y2": 7.681159420289854, "center_x": 6.08695652173913, "center_y": 7.53623188405797, "value_uncond": 0.007569944680339263}, {"x": 6.2318840579710155, "y": 7.391304347826086, "x2": 6.521739130434783, "y2": 7.681159420289854, "center_x": 6.376811594202899, "center_y": 7.53623188405797, "value_uncond": 0.00707786981783574}, {"x": 6.521739130434785, "y": 7.391304347826086, "x2": 6.8115942028985526, "y2": 7.681159420289854, "center_x": 6.666666666666669, "center_y": 7.53623188405797, "value_uncond": 0.0065562914268104434}, {"x": 6.811594202898551, "y": 7.391304347826086, "x2": 7.101449275362318, "y2": 7.681159420289854, "center_x": 6.956521739130435, "center_y": 7.53623188405797, "value_uncond": 0.00601671920005302}, {"x": 7.10144927536232, "y": 7.391304347826086, "x2": 7.391304347826088, "y2": 7.681159420289854, "center_x": 7.246376811594204, "center_y": 7.53623188405797, "value_uncond": 0.005470248450373667}, {"x": 7.391304347826086, "y": 7.391304347826086, "x2": 7.681159420289854, "y2": 7.681159420289854, "center_x": 7.53623188405797, "center_y": 7.53623188405797, "value_uncond": 0.00492719981332962}, {"x": 7.681159420289855, "y": 7.391304347826086, "x2": 7.971014492753623, "y2": 7.681159420289854, "center_x": 7.826086956521739, "center_y": 7.53623188405797, "value_uncond": 0.004396824307575778}, {"x": 7.971014492753625, "y": 7.391304347826086, "x2": 8.260869565217392, "y2": 7.681159420289854, "center_x": 8.115942028985508, "center_y": 7.53623188405797, "value_uncond": 0.003887083446008268}, {"x": 8.26086956521739, "y": 7.391304347826086, "x2": 8.550724637681158, "y2": 7.681159420289854, "center_x": 8.405797101449274, "center_y": 7.53623188405797, "value_uncond": 0.0034045085596694285}, {"x": 8.55072463768116, "y": 7.391304347826086, "x2": 8.840579710144928, "y2": 7.681159420289854, "center_x": 8.695652173913043, "center_y": 7.53623188405797, "value_uncond": 0.002954138219697305}, {"x": 8.84057971014493, "y": 7.391304347826086, "x2": 9.130434782608697, "y2": 7.681159420289854, "center_x": 8.985507246376812, "center_y": 7.53623188405797, "value_uncond": 0.002539528008263621}, {"x": 9.130434782608695, "y": 7.391304347826086, "x2": 9.420289855072463, "y2": 7.681159420289854, "center_x": 9.275362318840578, "center_y": 7.53623188405797, "value_uncond": 0.002162823188057047}, {"x": 9.420289855072465, "y": 7.391304347826086, "x2": 9.710144927536232, "y2": 7.681159420289854, "center_x": 9.565217391304348, "center_y": 7.53623188405797, "value_uncond": 0.0018248822279375043}, {"x": 9.710144927536234, "y": 7.391304347826086, "x2": 10.000000000000002, "y2": 7.681159420289854, "center_x": 9.855072463768117, "center_y": 7.53623188405797, "value_uncond": 0.001525437719179798}, {"x": 10.0, "y": 7.391304347826086, "x2": 10.289855072463768, "y2": 7.681159420289854, "center_x": 10.144927536231883, "center_y": 7.53623188405797, "value_uncond": 0.001263280913597526}, {"x": -10.0, "y": 7.681159420289855, "x2": -9.710144927536232, "y2": 7.971014492753623, "center_x": -9.855072463768117, "center_y": 7.826086956521739, "value_uncond": 1.5546888264731634e-07}, {"x": -9.710144927536232, "y": 7.681159420289855, "x2": -9.420289855072465, "y2": 7.971014492753623, "center_x": -9.565217391304348, "center_y": 7.826086956521739, "value_uncond": 2.4290337117625886e-07}, {"x": -9.420289855072463, "y": 7.681159420289855, "x2": -9.130434782608695, "y2": 7.971014492753623, "center_x": -9.275362318840578, "center_y": 7.826086956521739, "value_uncond": 3.7598405010178783e-07}, {"x": -9.130434782608695, "y": 7.681159420289855, "x2": -8.840579710144928, "y2": 7.971014492753623, "center_x": -8.985507246376812, "center_y": 7.826086956521739, "value_uncond": 5.765687711008647e-07}, {"x": -8.840579710144928, "y": 7.681159420289855, "x2": -8.55072463768116, "y2": 7.971014492753623, "center_x": -8.695652173913043, "center_y": 7.826086956521739, "value_uncond": 8.759486032096825e-07}, {"x": -8.55072463768116, "y": 7.681159420289855, "x2": -8.260869565217392, "y2": 7.971014492753623, "center_x": -8.405797101449277, "center_y": 7.826086956521739, "value_uncond": 1.3184144295520983e-06}, {"x": -8.26086956521739, "y": 7.681159420289855, "x2": -7.971014492753623, "y2": 7.971014492753623, "center_x": -8.115942028985508, "center_y": 7.826086956521739, "value_uncond": 1.965943739567227e-06}, {"x": -7.971014492753623, "y": 7.681159420289855, "x2": -7.681159420289855, "y2": 7.971014492753623, "center_x": -7.826086956521739, "center_y": 7.826086956521739, "value_uncond": 2.9042636382649264e-06}, {"x": -7.681159420289855, "y": 7.681159420289855, "x2": -7.391304347826088, "y2": 7.971014492753623, "center_x": -7.536231884057972, "center_y": 7.826086956521739, "value_uncond": 4.250566393509563e-06}, {"x": -7.391304347826087, "y": 7.681159420289855, "x2": -7.101449275362319, "y2": 7.971014492753623, "center_x": -7.246376811594203, "center_y": 7.826086956521739, "value_uncond": 6.163159191628511e-06}, {"x": -7.101449275362318, "y": 7.681159420289855, "x2": -6.811594202898551, "y2": 7.971014492753623, "center_x": -6.956521739130435, "center_y": 7.826086956521739, "value_uncond": 8.853312241759115e-06}, {"x": -6.811594202898551, "y": 7.681159420289855, "x2": -6.521739130434783, "y2": 7.971014492753623, "center_x": -6.666666666666667, "center_y": 7.826086956521739, "value_uncond": 1.2599519752427816e-05}, {"x": -6.521739130434782, "y": 7.681159420289855, "x2": -6.231884057971015, "y2": 7.971014492753623, "center_x": -6.3768115942028984, "center_y": 7.826086956521739, "value_uncond": 1.7764296637283633e-05}, {"x": -6.231884057971014, "y": 7.681159420289855, "x2": -5.942028985507246, "y2": 7.971014492753623, "center_x": -6.08695652173913, "center_y": 7.826086956521739, "value_uncond": 2.4813490246015368e-05}, {"x": -5.942028985507246, "y": 7.681159420289855, "x2": -5.6521739130434785, "y2": 7.971014492753623, "center_x": -5.797101449275362, "center_y": 7.826086956521739, "value_uncond": 3.43378824915426e-05}, {"x": -5.6521739130434785, "y": 7.681159420289855, "x2": -5.362318840579711, "y2": 7.971014492753623, "center_x": -5.507246376811595, "center_y": 7.826086956521739, "value_uncond": 4.707658799450714e-05}, {"x": -5.36231884057971, "y": 7.681159420289855, "x2": -5.072463768115942, "y2": 7.971014492753623, "center_x": -5.217391304347826, "center_y": 7.826086956521739, "value_uncond": 6.394141777973048e-05}, {"x": -5.0724637681159415, "y": 7.681159420289855, "x2": -4.782608695652174, "y2": 7.971014492753623, "center_x": -4.927536231884058, "center_y": 7.826086956521739, "value_uncond": 8.604098217792227e-05}, {"x": -4.782608695652174, "y": 7.681159420289855, "x2": -4.492753623188406, "y2": 7.971014492753623, "center_x": -4.63768115942029, "center_y": 7.826086956521739, "value_uncond": 0.00011470286653516983}, {"x": -4.492753623188405, "y": 7.681159420289855, "x2": -4.202898550724638, "y2": 7.971014492753623, "center_x": -4.3478260869565215, "center_y": 7.826086956521739, "value_uncond": 0.00015149175546875064}, {"x": -4.202898550724638, "y": 7.681159420289855, "x2": -3.91304347826087, "y2": 7.971014492753623, "center_x": -4.057971014492754, "center_y": 7.826086956521739, "value_uncond": 0.0001982209436974218}, {"x": -3.913043478260869, "y": 7.681159420289855, "x2": -3.6231884057971016, "y2": 7.971014492753623, "center_x": -3.7681159420289854, "center_y": 7.826086956521739, "value_uncond": 0.00025695430320070645}, {"x": -3.6231884057971016, "y": 7.681159420289855, "x2": -3.333333333333334, "y2": 7.971014492753623, "center_x": -3.4782608695652177, "center_y": 7.826086956521739, "value_uncond": 0.00032999553637280677}, {"x": -3.333333333333333, "y": 7.681159420289855, "x2": -3.0434782608695654, "y2": 7.971014492753623, "center_x": -3.1884057971014492, "center_y": 7.826086956521739, "value_uncond": 0.0004198614974519994}, {"x": -3.0434782608695645, "y": 7.681159420289855, "x2": -2.753623188405797, "y2": 7.971014492753623, "center_x": -2.8985507246376807, "center_y": 7.826086956521739, "value_uncond": 0.0005292365744719645}, {"x": -2.753623188405797, "y": 7.681159420289855, "x2": -2.4637681159420293, "y2": 7.971014492753623, "center_x": -2.608695652173913, "center_y": 7.826086956521739, "value_uncond": 0.0006609056486189536}, {"x": -2.4637681159420284, "y": 7.681159420289855, "x2": -2.1739130434782608, "y2": 7.971014492753623, "center_x": -2.3188405797101446, "center_y": 7.826086956521739, "value_uncond": 0.0008176640283809533}, {"x": -2.1739130434782608, "y": 7.681159420289855, "x2": -1.8840579710144931, "y2": 7.971014492753623, "center_x": -2.028985507246377, "center_y": 7.826086956521739, "value_uncond": 0.0010022040079425468}, {"x": -1.8840579710144922, "y": 7.681159420289855, "x2": -1.5942028985507246, "y2": 7.971014492753623, "center_x": -1.7391304347826084, "center_y": 7.826086956521739, "value_uncond": 0.0012169793043008256}, {"x": -1.5942028985507246, "y": 7.681159420289855, "x2": -1.304347826086957, "y2": 7.971014492753623, "center_x": -1.4492753623188408, "center_y": 7.826086956521739, "value_uncond": 0.0014640505256925686}, {"x": -1.304347826086957, "y": 7.681159420289855, "x2": -1.0144927536231894, "y2": 7.971014492753623, "center_x": -1.1594202898550732, "center_y": 7.826086956521739, "value_uncond": 0.0017449169103885887}, {"x": -1.0144927536231876, "y": 7.681159420289855, "x2": -0.72463768115942, "y2": 7.971014492753623, "center_x": -0.8695652173913038, "center_y": 7.826086956521739, "value_uncond": 0.0020603417010928485}, {"x": -0.72463768115942, "y": 7.681159420289855, "x2": -0.43478260869565233, "y2": 7.971014492753623, "center_x": -0.5797101449275361, "center_y": 7.826086956521739, "value_uncond": 0.0024101805001465392}, {"x": -0.43478260869565233, "y": 7.681159420289855, "x2": -0.1449275362318847, "y2": 7.971014492753623, "center_x": -0.2898550724637685, "center_y": 7.826086956521739, "value_uncond": 0.002793223573848532}, {"x": -0.14492753623188293, "y": 7.681159420289855, "x2": 0.1449275362318847, "y2": 7.971014492753623, "center_x": 8.881784197001252e-16, "center_y": 7.826086956521739, "value_uncond": 0.0032070641234048475}, {"x": 0.1449275362318847, "y": 7.681159420289855, "x2": 0.43478260869565233, "y2": 7.971014492753623, "center_x": 0.2898550724637685, "center_y": 7.826086956521739, "value_uncond": 0.0036480048145421467}, {"x": 0.43478260869565233, "y": 7.681159420289855, "x2": 0.72463768115942, "y2": 7.971014492753623, "center_x": 0.5797101449275361, "center_y": 7.826086956521739, "value_uncond": 0.004111014198259955}, {"x": 0.72463768115942, "y": 7.681159420289855, "x2": 1.0144927536231876, "y2": 7.971014492753623, "center_x": 0.8695652173913038, "center_y": 7.826086956521739, "value_uncond": 0.004589742968136519}, {"x": 1.0144927536231894, "y": 7.681159420289855, "x2": 1.304347826086957, "y2": 7.971014492753623, "center_x": 1.1594202898550732, "center_y": 7.826086956521739, "value_uncond": 0.0050766072785315055}, {"x": 1.304347826086957, "y": 7.681159420289855, "x2": 1.5942028985507246, "y2": 7.971014492753623, "center_x": 1.4492753623188408, "center_y": 7.826086956521739, "value_uncond": 0.005562942687262318}, {"x": 1.5942028985507246, "y": 7.681159420289855, "x2": 1.8840579710144922, "y2": 7.971014492753623, "center_x": 1.7391304347826084, "center_y": 7.826086956521739, "value_uncond": 0.006039227885113773}, {"x": 1.884057971014494, "y": 7.681159420289855, "x2": 2.1739130434782616, "y2": 7.971014492753623, "center_x": 2.028985507246378, "center_y": 7.826086956521739, "value_uncond": 0.006495372529400421}, {"x": 2.1739130434782616, "y": 7.681159420289855, "x2": 2.4637681159420293, "y2": 7.971014492753623, "center_x": 2.3188405797101455, "center_y": 7.826086956521739, "value_uncond": 0.006921058583596764}, {"x": 2.4637681159420293, "y": 7.681159420289855, "x2": 2.753623188405797, "y2": 7.971014492753623, "center_x": 2.608695652173913, "center_y": 7.826086956521739, "value_uncond": 0.007306119999745298}, {"x": 2.753623188405797, "y": 7.681159420289855, "x2": 3.0434782608695645, "y2": 7.971014492753623, "center_x": 2.8985507246376807, "center_y": 7.826086956521739, "value_uncond": 0.00764094179117375}, {"x": 3.0434782608695663, "y": 7.681159420289855, "x2": 3.333333333333334, "y2": 7.971014492753623, "center_x": 3.18840579710145, "center_y": 7.826086956521739, "value_uncond": 0.007916856918158218}, {"x": 3.333333333333334, "y": 7.681159420289855, "x2": 3.6231884057971016, "y2": 7.971014492753623, "center_x": 3.4782608695652177, "center_y": 7.826086956521739, "value_uncond": 0.008126518254904964}, {"x": 3.6231884057971016, "y": 7.681159420289855, "x2": 3.913043478260869, "y2": 7.971014492753623, "center_x": 3.7681159420289854, "center_y": 7.826086956521739, "value_uncond": 0.008264223409439334}, {"x": 3.913043478260871, "y": 7.681159420289855, "x2": 4.202898550724639, "y2": 7.971014492753623, "center_x": 4.057971014492755, "center_y": 7.826086956521739, "value_uncond": 0.008326172369451556}, {"x": 4.202898550724639, "y": 7.681159420289855, "x2": 4.492753623188406, "y2": 7.971014492753623, "center_x": 4.347826086956522, "center_y": 7.826086956521739, "value_uncond": 0.00831064172998108}, {"x": 4.492753623188406, "y": 7.681159420289855, "x2": 4.782608695652174, "y2": 7.971014492753623, "center_x": 4.63768115942029, "center_y": 7.826086956521739, "value_uncond": 0.008218064354132682}, {"x": 4.782608695652174, "y": 7.681159420289855, "x2": 5.0724637681159415, "y2": 7.971014492753623, "center_x": 4.927536231884058, "center_y": 7.826086956521739, "value_uncond": 0.008051009327732077}, {"x": 5.072463768115943, "y": 7.681159420289855, "x2": 5.362318840579711, "y2": 7.971014492753623, "center_x": 5.217391304347827, "center_y": 7.826086956521739, "value_uncond": 0.007814063503488377}, {"x": 5.362318840579711, "y": 7.681159420289855, "x2": 5.6521739130434785, "y2": 7.971014492753623, "center_x": 5.507246376811595, "center_y": 7.826086956521739, "value_uncond": 0.007513622257563381}, {"x": 5.6521739130434785, "y": 7.681159420289855, "x2": 5.942028985507246, "y2": 7.971014492753623, "center_x": 5.797101449275362, "center_y": 7.826086956521739, "value_uncond": 0.007157602780014635}, {"x": 5.942028985507246, "y": 7.681159420289855, "x2": 6.231884057971014, "y2": 7.971014492753623, "center_x": 6.08695652173913, "center_y": 7.826086956521739, "value_uncond": 0.00675509783213515}, {"x": 6.2318840579710155, "y": 7.681159420289855, "x2": 6.521739130434783, "y2": 7.971014492753623, "center_x": 6.376811594202899, "center_y": 7.826086956521739, "value_uncond": 0.00631599107808199}, {"x": 6.521739130434785, "y": 7.681159420289855, "x2": 6.8115942028985526, "y2": 7.971014492753623, "center_x": 6.666666666666669, "center_y": 7.826086956521739, "value_uncond": 0.005850556625482317}, {"x": 6.811594202898551, "y": 7.681159420289855, "x2": 7.101449275362318, "y2": 7.971014492753623, "center_x": 6.956521739130435, "center_y": 7.826086956521739, "value_uncond": 0.00536906523642159}, {"x": 7.10144927536232, "y": 7.681159420289855, "x2": 7.391304347826088, "y2": 7.971014492753623, "center_x": 7.246376811594204, "center_y": 7.826086956521739, "value_uncond": 0.0048814178978522915}, {"x": 7.391304347826086, "y": 7.681159420289855, "x2": 7.681159420289854, "y2": 7.971014492753623, "center_x": 7.53623188405797, "center_y": 7.826086956521739, "value_uncond": 0.004396824307575778}, {"x": 7.681159420289855, "y": 7.681159420289855, "x2": 7.971014492753623, "y2": 7.971014492753623, "center_x": 7.826086956521739, "center_y": 7.826086956521739, "value_uncond": 0.003923539682598204}, {"x": 7.971014492753625, "y": 7.681159420289855, "x2": 8.260869565217392, "y2": 7.971014492753623, "center_x": 8.115942028985508, "center_y": 7.826086956521739, "value_uncond": 0.003468668539633514}, {"x": 8.26086956521739, "y": 7.681159420289855, "x2": 8.550724637681158, "y2": 7.971014492753623, "center_x": 8.405797101449274, "center_y": 7.826086956521739, "value_uncond": 0.0030380391617178667}, {"x": 8.55072463768116, "y": 7.681159420289855, "x2": 8.840579710144928, "y2": 7.971014492753623, "center_x": 8.695652173913043, "center_y": 7.826086956521739, "value_uncond": 0.0026361477562092976}, {"x": 8.84057971014493, "y": 7.681159420289855, "x2": 9.130434782608697, "y2": 7.971014492753623, "center_x": 8.985507246376812, "center_y": 7.826086956521739, "value_uncond": 0.0022661671739586946}, {"x": 9.130434782608695, "y": 7.681159420289855, "x2": 9.420289855072463, "y2": 7.971014492753623, "center_x": 9.275362318840578, "center_y": 7.826086956521739, "value_uncond": 0.001930011756477064}, {"x": 9.420289855072465, "y": 7.681159420289855, "x2": 9.710144927536232, "y2": 7.971014492753623, "center_x": 9.565217391304348, "center_y": 7.826086956521739, "value_uncond": 0.0016284475649946393}, {"x": 9.710144927536234, "y": 7.681159420289855, "x2": 10.000000000000002, "y2": 7.971014492753623, "center_x": 9.855072463768117, "center_y": 7.826086956521739, "value_uncond": 0.001361235975297355}, {"x": 10.0, "y": 7.681159420289855, "x2": 10.289855072463768, "y2": 7.971014492753623, "center_x": 10.144927536231883, "center_y": 7.826086956521739, "value_uncond": 0.001127298351728233}, {"x": -10.0, "y": 7.971014492753625, "x2": -9.710144927536232, "y2": 8.260869565217392, "center_x": -9.855072463768117, "center_y": 8.115942028985508, "value_uncond": 1.3744477328023635e-07}, {"x": -9.710144927536232, "y": 7.971014492753625, "x2": -9.420289855072465, "y2": 8.260869565217392, "center_x": -9.565217391304348, "center_y": 8.115942028985508, "value_uncond": 2.1474264310538734e-07}, {"x": -9.420289855072463, "y": 7.971014492753625, "x2": -9.130434782608695, "y2": 8.260869565217392, "center_x": -9.275362318840578, "center_y": 8.115942028985508, "value_uncond": 3.32394763783409e-07}, {"x": -9.130434782608695, "y": 7.971014492753625, "x2": -8.840579710144928, "y2": 8.260869565217392, "center_x": -8.985507246376812, "center_y": 8.115942028985508, "value_uncond": 5.097249216371772e-07}, {"x": -8.840579710144928, "y": 7.971014492753625, "x2": -8.55072463768116, "y2": 8.260869565217392, "center_x": -8.695652173913043, "center_y": 8.115942028985508, "value_uncond": 7.74396490945468e-07}, {"x": -8.55072463768116, "y": 7.971014492753625, "x2": -8.260869565217392, "y2": 8.260869565217392, "center_x": -8.405797101449277, "center_y": 8.115942028985508, "value_uncond": 1.165565541306785e-06}, {"x": -8.26086956521739, "y": 7.971014492753625, "x2": -7.971014492753623, "y2": 8.260869565217392, "center_x": -8.115942028985508, "center_y": 8.115942028985508, "value_uncond": 1.7380242719019876e-06}, {"x": -7.971014492753623, "y": 7.971014492753625, "x2": -7.681159420289855, "y2": 8.260869565217392, "center_x": -7.826086956521739, "center_y": 8.115942028985508, "value_uncond": 2.567561112617595e-06}, {"x": -7.681159420289855, "y": 7.971014492753625, "x2": -7.391304347826088, "y2": 8.260869565217392, "center_x": -7.536231884057972, "center_y": 8.115942028985508, "value_uncond": 3.7577817780669465e-06}, {"x": -7.391304347826087, "y": 7.971014492753625, "x2": -7.101449275362319, "y2": 8.260869565217392, "center_x": -7.246376811594203, "center_y": 8.115942028985508, "value_uncond": 5.448640289677979e-06}, {"x": -7.101449275362318, "y": 7.971014492753625, "x2": -6.811594202898551, "y2": 8.260869565217392, "center_x": -6.956521739130435, "center_y": 8.115942028985508, "value_uncond": 7.826913483440587e-06}, {"x": -6.811594202898551, "y": 7.971014492753625, "x2": -6.521739130434783, "y2": 8.260869565217392, "center_x": -6.666666666666667, "center_y": 8.115942028985508, "value_uncond": 1.1138808656268394e-05}, {"x": -6.521739130434782, "y": 7.971014492753625, "x2": -6.231884057971015, "y2": 8.260869565217392, "center_x": -6.3768115942028984, "center_y": 8.115942028985508, "value_uncond": 1.5704812964618436e-05}, {"x": -6.231884057971014, "y": 7.971014492753625, "x2": -5.942028985507246, "y2": 8.260869565217392, "center_x": -6.08695652173913, "center_y": 8.115942028985508, "value_uncond": 2.1936766271689755e-05}, {"x": -5.942028985507246, "y": 7.971014492753625, "x2": -5.6521739130434785, "y2": 8.260869565217392, "center_x": -5.797101449275362, "center_y": 8.115942028985508, "value_uncond": 3.035695885638976e-05}, {"x": -5.6521739130434785, "y": 7.971014492753625, "x2": -5.362318840579711, "y2": 8.260869565217392, "center_x": -5.507246376811595, "center_y": 8.115942028985508, "value_uncond": 4.161881692036346e-05}, {"x": -5.36231884057971, "y": 7.971014492753625, "x2": -5.072463768115942, "y2": 8.260869565217392, "center_x": -5.217391304347826, "center_y": 8.115942028985508, "value_uncond": 5.652844170681143e-05}, {"x": -5.0724637681159415, "y": 7.971014492753625, "x2": -4.782608695652174, "y2": 8.260869565217392, "center_x": -4.927536231884058, "center_y": 8.115942028985508, "value_uncond": 7.606591805950384e-05}, {"x": -4.782608695652174, "y": 7.971014492753625, "x2": -4.492753623188406, "y2": 8.260869565217392, "center_x": -4.63768115942029, "center_y": 8.115942028985508, "value_uncond": 0.00010140491921642922}, {"x": -4.492753623188405, "y": 7.971014492753625, "x2": -4.202898550724638, "y2": 8.260869565217392, "center_x": -4.3478260869565215, "center_y": 8.115942028985508, "value_uncond": 0.00013392872985047388}, {"x": -4.202898550724638, "y": 7.971014492753625, "x2": -3.91304347826087, "y2": 8.260869565217392, "center_x": -4.057971014492754, "center_y": 8.115942028985508, "value_uncond": 0.00017524042240459845}, {"x": -3.913043478260869, "y": 7.971014492753625, "x2": -3.6231884057971016, "y2": 8.260869565217392, "center_x": -3.7681159420289854, "center_y": 8.115942028985508, "value_uncond": 0.00022716459619073407}, {"x": -3.6231884057971016, "y": 7.971014492753625, "x2": -3.333333333333334, "y2": 8.260869565217392, "center_x": -3.4782608695652177, "center_y": 8.115942028985508, "value_uncond": 0.00029173787646716157}, {"x": -3.333333333333333, "y": 7.971014492753625, "x2": -3.0434782608695654, "y2": 8.260869565217392, "center_x": -3.1884057971014492, "center_y": 8.115942028985508, "value_uncond": 0.00037118532881786785}, {"x": -3.0434782608695645, "y": 7.971014492753625, "x2": -2.753623188405797, "y2": 8.260869565217392, "center_x": -2.8985507246376807, "center_y": 8.115942028985508, "value_uncond": 0.0004678801297808371}, {"x": -2.753623188405797, "y": 7.971014492753625, "x2": -2.4637681159420293, "y2": 8.260869565217392, "center_x": -2.608695652173913, "center_y": 8.115942028985508, "value_uncond": 0.0005842842984864515}, {"x": -2.4637681159420284, "y": 7.971014492753625, "x2": -2.1739130434782608, "y2": 8.260869565217392, "center_x": -2.3188405797101446, "center_y": 8.115942028985508, "value_uncond": 0.0007228690724893741}, {"x": -2.1739130434782608, "y": 7.971014492753625, "x2": -1.8840579710144931, "y2": 8.260869565217392, "center_x": -2.028985507246377, "center_y": 8.115942028985508, "value_uncond": 0.0008860146178878153}, {"x": -1.8840579710144922, "y": 7.971014492753625, "x2": -1.5942028985507246, "y2": 8.260869565217392, "center_x": -1.7391304347826084, "center_y": 8.115942028985508, "value_uncond": 0.0010758901827693436}, {"x": -1.5942028985507246, "y": 7.971014492753625, "x2": -1.304347826086957, "y2": 8.260869565217392, "center_x": -1.4492753623188408, "center_y": 8.115942028985508, "value_uncond": 0.0012943174810814762}, {"x": -1.304347826086957, "y": 7.971014492753625, "x2": -1.0144927536231894, "y2": 8.260869565217392, "center_x": -1.1594202898550732, "center_y": 8.115942028985508, "value_uncond": 0.001542621938598914}, {"x": -1.0144927536231876, "y": 7.971014492753625, "x2": -0.72463768115942, "y2": 8.260869565217392, "center_x": -0.8695652173913038, "center_y": 8.115942028985508, "value_uncond": 0.001821478312344528}, {"x": -0.72463768115942, "y": 7.971014492753625, "x2": -0.43478260869565233, "y2": 8.260869565217392, "center_x": -0.5797101449275361, "center_y": 8.115942028985508, "value_uncond": 0.00213075894523904}, {"x": -0.43478260869565233, "y": 7.971014492753625, "x2": -0.1449275362318847, "y2": 8.260869565217392, "center_x": -0.2898550724637685, "center_y": 8.115942028985508, "value_uncond": 0.002469394352692033}, {"x": -0.14492753623188293, "y": 7.971014492753625, "x2": 0.1449275362318847, "y2": 8.260869565217392, "center_x": 8.881784197001252e-16, "center_y": 8.115942028985508, "value_uncond": 0.002835256765410144}, {"x": 0.1449275362318847, "y": 7.971014492753625, "x2": 0.43478260869565233, "y2": 8.260869565217392, "center_x": 0.2898550724637685, "center_y": 8.115942028985508, "value_uncond": 0.0032250774953942927}, {"x": 0.43478260869565233, "y": 7.971014492753625, "x2": 0.72463768115942, "y2": 8.260869565217392, "center_x": 0.5797101449275361, "center_y": 8.115942028985508, "value_uncond": 0.0036344084090027774}, {"x": 0.72463768115942, "y": 7.971014492753625, "x2": 1.0144927536231876, "y2": 8.260869565217392, "center_x": 0.8695652173913038, "center_y": 8.115942028985508, "value_uncond": 0.004057636299484735}, {"x": 1.0144927536231894, "y": 7.971014492753625, "x2": 1.304347826086957, "y2": 8.260869565217392, "center_x": 1.1594202898550732, "center_y": 8.115942028985508, "value_uncond": 0.004488056545781094}, {"x": 1.304347826086957, "y": 7.971014492753625, "x2": 1.5942028985507246, "y2": 8.260869565217392, "center_x": 1.4492753623188408, "center_y": 8.115942028985508, "value_uncond": 0.0049180092080305235}, {"x": 1.5942028985507246, "y": 7.971014492753625, "x2": 1.8840579710144922, "y2": 8.260869565217392, "center_x": 1.7391304347826084, "center_y": 8.115942028985508, "value_uncond": 0.005339076819251023}, {"x": 1.884057971014494, "y": 7.971014492753625, "x2": 2.1739130434782616, "y2": 8.260869565217392, "center_x": 2.028985507246378, "center_y": 8.115942028985508, "value_uncond": 0.0057423388492432005}, {"x": 2.1739130434782616, "y": 7.971014492753625, "x2": 2.4637681159420293, "y2": 8.260869565217392, "center_x": 2.3188405797101455, "center_y": 8.115942028985508, "value_uncond": 0.006118673471395866}, {"x": 2.4637681159420293, "y": 7.971014492753625, "x2": 2.753623188405797, "y2": 8.260869565217392, "center_x": 2.608695652173913, "center_y": 8.115942028985508, "value_uncond": 0.006459093227042803}, {"x": 2.753623188405797, "y": 7.971014492753625, "x2": 3.0434782608695645, "y2": 8.260869565217392, "center_x": 2.8985507246376807, "center_y": 8.115942028985508, "value_uncond": 0.0067550978321351445}, {"x": 3.0434782608695663, "y": 7.971014492753625, "x2": 3.333333333333334, "y2": 8.260869565217392, "center_x": 3.18840579710145, "center_y": 8.115942028985508, "value_uncond": 0.006999025050413267}, {"x": 3.333333333333334, "y": 7.971014492753625, "x2": 3.6231884057971016, "y2": 8.260869565217392, "center_x": 3.4782608695652177, "center_y": 8.115942028985508, "value_uncond": 0.007184379536816565}, {"x": 3.6231884057971016, "y": 7.971014492753625, "x2": 3.913043478260869, "y2": 8.260869565217392, "center_x": 3.7681159420289854, "center_y": 8.115942028985508, "value_uncond": 0.0073061199997452924}, {"x": 3.913043478260871, "y": 7.971014492753625, "x2": 4.202898550724639, "y2": 8.260869565217392, "center_x": 4.057971014492755, "center_y": 8.115942028985508, "value_uncond": 0.007360886977026152}, {"x": 4.202898550724639, "y": 7.971014492753625, "x2": 4.492753623188406, "y2": 8.260869565217392, "center_x": 4.347826086956522, "center_y": 8.115942028985508, "value_uncond": 0.007347156864706769}, {"x": 4.492753623188406, "y": 7.971014492753625, "x2": 4.782608695652174, "y2": 8.260869565217392, "center_x": 4.63768115942029, "center_y": 8.115942028985508, "value_uncond": 0.00726531234239662}, {"x": 4.782608695652174, "y": 7.971014492753625, "x2": 5.0724637681159415, "y2": 8.260869565217392, "center_x": 4.927536231884058, "center_y": 8.115942028985508, "value_uncond": 0.007117624651857015}, {"x": 5.072463768115943, "y": 7.971014492753625, "x2": 5.362318840579711, "y2": 8.260869565217392, "center_x": 5.217391304347827, "center_y": 8.115942028985508, "value_uncond": 0.006908148874207331}, {"x": 5.362318840579711, "y": 7.971014492753625, "x2": 5.6521739130434785, "y2": 8.260869565217392, "center_x": 5.507246376811595, "center_y": 8.115942028985508, "value_uncond": 0.00664253894489518}, {"x": 5.6521739130434785, "y": 7.971014492753625, "x2": 5.942028985507246, "y2": 8.260869565217392, "center_x": 5.797101449275362, "center_y": 8.115942028985508, "value_uncond": 0.006327794183488224}, {"x": 5.942028985507246, "y": 7.971014492753625, "x2": 6.231884057971014, "y2": 8.260869565217392, "center_x": 6.08695652173913, "center_y": 8.115942028985508, "value_uncond": 0.005971953192265764}, {"x": 6.2318840579710155, "y": 7.971014492753625, "x2": 6.521739130434783, "y2": 8.260869565217392, "center_x": 6.376811594202899, "center_y": 8.115942028985508, "value_uncond": 0.005583753783940637}, {"x": 6.521739130434785, "y": 7.971014492753625, "x2": 6.8115942028985526, "y2": 8.260869565217392, "center_x": 6.666666666666669, "center_y": 8.115942028985508, "value_uncond": 0.005172278949072917}, {"x": 6.811594202898551, "y": 7.971014492753625, "x2": 7.101449275362318, "y2": 8.260869565217392, "center_x": 6.956521739130435, "center_y": 8.115942028985508, "value_uncond": 0.004746608720542592}, {"x": 7.10144927536232, "y": 7.971014492753625, "x2": 7.391304347826088, "y2": 8.260869565217392, "center_x": 7.246376811594204, "center_y": 8.115942028985508, "value_uncond": 0.004315496225559179}, {"x": 7.391304347826086, "y": 7.971014492753625, "x2": 7.681159420289854, "y2": 8.260869565217392, "center_x": 7.53623188405797, "center_y": 8.115942028985508, "value_uncond": 0.003887083446008268}, {"x": 7.681159420289855, "y": 7.971014492753625, "x2": 7.971014492753623, "y2": 8.260869565217392, "center_x": 7.826086956521739, "center_y": 8.115942028985508, "value_uncond": 0.003468668539633514}, {"x": 7.971014492753625, "y": 7.971014492753625, "x2": 8.260869565217392, "y2": 8.260869565217392, "center_x": 8.115942028985508, "center_y": 8.115942028985508, "value_uncond": 0.003066532369025466}, {"x": 8.26086956521739, "y": 7.971014492753625, "x2": 8.550724637681158, "y2": 8.260869565217392, "center_x": 8.405797101449274, "center_y": 8.115942028985508, "value_uncond": 0.0026858275218073005}, {"x": 8.55072463768116, "y": 7.971014492753625, "x2": 8.840579710144928, "y2": 8.260869565217392, "center_x": 8.695652173913043, "center_y": 8.115942028985508, "value_uncond": 0.0023305289426137467}, {"x": 8.84057971014493, "y": 7.971014492753625, "x2": 9.130434782608697, "y2": 8.260869565217392, "center_x": 8.985507246376812, "center_y": 8.115942028985508, "value_uncond": 0.002003441641414816}, {"x": 9.130434782608695, "y": 7.971014492753625, "x2": 9.420289855072463, "y2": 8.260869565217392, "center_x": 9.275362318840578, "center_y": 8.115942028985508, "value_uncond": 0.0017062580226999524}, {"x": 9.420289855072465, "y": 7.971014492753625, "x2": 9.710144927536232, "y2": 8.260869565217392, "center_x": 9.565217391304348, "center_y": 8.115942028985508, "value_uncond": 0.0014396553352556355}, {"x": 9.710144927536234, "y": 7.971014492753625, "x2": 10.000000000000002, "y2": 8.260869565217392, "center_x": 9.855072463768117, "center_y": 8.115942028985508, "value_uncond": 0.0012034226194966226}, {"x": 10.0, "y": 7.971014492753625, "x2": 10.289855072463768, "y2": 8.260869565217392, "center_x": 10.144927536231883, "center_y": 8.115942028985508, "value_uncond": 0.0009966062901729214}, {"x": -10.0, "y": 8.26086956521739, "x2": -9.710144927536232, "y2": 8.550724637681158, "center_x": -9.855072463768117, "center_y": 8.405797101449274, "value_uncond": 1.203812353436658e-07}, {"x": -9.710144927536232, "y": 8.26086956521739, "x2": -9.420289855072465, "y2": 8.550724637681158, "center_x": -9.565217391304348, "center_y": 8.405797101449274, "value_uncond": 1.880827043548819e-07}, {"x": -9.420289855072463, "y": 8.26086956521739, "x2": -9.130434782608695, "y2": 8.550724637681158, "center_x": -9.275362318840578, "center_y": 8.405797101449274, "value_uncond": 2.911285116999536e-07}, {"x": -9.130434782608695, "y": 8.26086956521739, "x2": -8.840579710144928, "y2": 8.550724637681158, "center_x": -8.985507246376812, "center_y": 8.405797101449274, "value_uncond": 4.4644342805984316e-07}, {"x": -8.840579710144928, "y": 8.26086956521739, "x2": -8.55072463768116, "y2": 8.550724637681158, "center_x": -8.695652173913043, "center_y": 8.405797101449274, "value_uncond": 6.782564662225695e-07}, {"x": -8.55072463768116, "y": 8.26086956521739, "x2": -8.260869565217392, "y2": 8.550724637681158, "center_x": -8.405797101449277, "center_y": 8.405797101449274, "value_uncond": 1.020862535459508e-06}, {"x": -8.26086956521739, "y": 8.26086956521739, "x2": -7.971014492753623, "y2": 8.550724637681158, "center_x": -8.115942028985508, "center_y": 8.405797101449274, "value_uncond": 1.5222514753780152e-06}, {"x": -7.971014492753623, "y": 8.26086956521739, "x2": -7.681159420289855, "y2": 8.550724637681158, "center_x": -7.826086956521739, "center_y": 8.405797101449274, "value_uncond": 2.248802709485845e-06}, {"x": -7.681159420289855, "y": 8.26086956521739, "x2": -7.391304347826088, "y2": 8.550724637681158, "center_x": -7.536231884057972, "center_y": 8.405797101449274, "value_uncond": 3.291259476802988e-06}, {"x": -7.391304347826087, "y": 8.26086956521739, "x2": -7.101449275362319, "y2": 8.550724637681158, "center_x": -7.246376811594203, "center_y": 8.405797101449274, "value_uncond": 4.772200741874412e-06}, {"x": -7.101449275362318, "y": 8.26086956521739, "x2": -6.811594202898551, "y2": 8.550724637681158, "center_x": -6.956521739130435, "center_y": 8.405797101449274, "value_uncond": 6.855215309959383e-06}, {"x": -6.811594202898551, "y": 8.26086956521739, "x2": -6.521739130434783, "y2": 8.550724637681158, "center_x": -6.666666666666667, "center_y": 8.405797101449274, "value_uncond": 9.755944255256153e-06}, {"x": -6.521739130434782, "y": 8.26086956521739, "x2": -6.231884057971015, "y2": 8.550724637681158, "center_x": -6.3768115942028984, "center_y": 8.405797101449274, "value_uncond": 1.375508679160399e-05}, {"x": -6.231884057971014, "y": 8.26086956521739, "x2": -5.942028985507246, "y2": 8.550724637681158, "center_x": -6.08695652173913, "center_y": 8.405797101449274, "value_uncond": 1.921335355435446e-05}, {"x": -5.942028985507246, "y": 8.26086956521739, "x2": -5.6521739130434785, "y2": 8.550724637681158, "center_x": -5.797101449275362, "center_y": 8.405797101449274, "value_uncond": 2.658819336082033e-05}, {"x": -5.6521739130434785, "y": 8.26086956521739, "x2": -5.362318840579711, "y2": 8.550724637681158, "center_x": -5.507246376811595, "center_y": 8.405797101449274, "value_uncond": 3.645191064632239e-05}, {"x": -5.36231884057971, "y": 8.26086956521739, "x2": -5.072463768115942, "y2": 8.550724637681158, "center_x": -5.217391304347826, "center_y": 8.405797101449274, "value_uncond": 4.9510530537554236e-05}, {"x": -5.0724637681159415, "y": 8.26086956521739, "x2": -4.782608695652174, "y2": 8.550724637681158, "center_x": -4.927536231884058, "center_y": 8.405797101449274, "value_uncond": 6.662246198975567e-05}, {"x": -4.782608695652174, "y": 8.26086956521739, "x2": -4.492753623188406, "y2": 8.550724637681158, "center_x": -4.63768115942029, "center_y": 8.405797101449274, "value_uncond": 8.881566867813159e-05}, {"x": -4.492753623188405, "y": 8.26086956521739, "x2": -4.202898550724638, "y2": 8.550724637681158, "center_x": -4.3478260869565215, "center_y": 8.405797101449274, "value_uncond": 0.00011730170280492166}, {"x": -4.202898550724638, "y": 8.26086956521739, "x2": -3.91304347826087, "y2": 8.550724637681158, "center_x": -4.057971014492754, "center_y": 8.405797101449274, "value_uncond": 0.00015348461805964338}, {"x": -3.913043478260869, "y": 8.26086956521739, "x2": -3.6231884057971016, "y2": 8.550724637681158, "center_x": -3.7681159420289854, "center_y": 8.405797101449274, "value_uncond": 0.00019896249281177862}, {"x": -3.6231884057971016, "y": 8.26086956521739, "x2": -3.333333333333334, "y2": 8.550724637681158, "center_x": -3.4782608695652177, "center_y": 8.405797101449274, "value_uncond": 0.000255519108711751}, {"x": -3.333333333333333, "y": 8.26086956521739, "x2": -3.0434782608695654, "y2": 8.550724637681158, "center_x": -3.1884057971014492, "center_y": 8.405797101449274, "value_uncond": 0.0003251032931855033}, {"x": -3.0434782608695645, "y": 8.26086956521739, "x2": -2.753623188405797, "y2": 8.550724637681158, "center_x": -2.8985507246376807, "center_y": 8.405797101449274, "value_uncond": 0.0004097935968866038}, {"x": -2.753623188405797, "y": 8.26086956521739, "x2": -2.4637681159420293, "y2": 8.550724637681158, "center_x": -2.608695652173913, "center_y": 8.405797101449274, "value_uncond": 0.0005117463834022718}, {"x": -2.4637681159420284, "y": 8.26086956521739, "x2": -2.1739130434782608, "y2": 8.550724637681158, "center_x": -2.3188405797101446, "center_y": 8.405797101449274, "value_uncond": 0.0006331260902921042}, {"x": -2.1739130434782608, "y": 8.26086956521739, "x2": -1.8840579710144931, "y2": 8.550724637681158, "center_x": -2.028985507246377, "center_y": 8.405797101449274, "value_uncond": 0.0007760173900277234}, {"x": -1.8840579710144922, "y": 8.26086956521739, "x2": -1.5942028985507246, "y2": 8.550724637681158, "center_x": -1.7391304347826084, "center_y": 8.405797101449274, "value_uncond": 0.0009423202221871583}, {"x": -1.5942028985507246, "y": 8.26086956521739, "x2": -1.304347826086957, "y2": 8.550724637681158, "center_x": -1.4492753623188408, "center_y": 8.405797101449274, "value_uncond": 0.001133630137988626}, {"x": -1.304347826086957, "y": 8.26086956521739, "x2": -1.0144927536231894, "y2": 8.550724637681158, "center_x": -1.1594202898550732, "center_y": 8.405797101449274, "value_uncond": 0.0013511080138212909}, {"x": -1.0144927536231876, "y": 8.26086956521739, "x2": -0.72463768115942, "y2": 8.550724637681158, "center_x": -0.8695652173913038, "center_y": 8.405797101449274, "value_uncond": 0.0015953448367560417}, {"x": -0.72463768115942, "y": 8.26086956521739, "x2": -0.43478260869565233, "y2": 8.550724637681158, "center_x": -0.5797101449275361, "center_y": 8.405797101449274, "value_uncond": 0.0018662287981257527}, {"x": -0.43478260869565233, "y": 8.26086956521739, "x2": -0.1449275362318847, "y2": 8.550724637681158, "center_x": -0.2898550724637685, "center_y": 8.405797101449274, "value_uncond": 0.002162823188057046}, {"x": -0.14492753623188293, "y": 8.26086956521739, "x2": 0.1449275362318847, "y2": 8.550724637681158, "center_x": 8.881784197001252e-16, "center_y": 8.405797101449274, "value_uncond": 0.002483264396243414}, {"x": 0.1449275362318847, "y": 8.26086956521739, "x2": 0.43478260869565233, "y2": 8.550724637681158, "center_x": 0.2898550724637685, "center_y": 8.405797101449274, "value_uncond": 0.0028246895368151965}, {"x": 0.43478260869565233, "y": 8.26086956521739, "x2": 0.72463768115942, "y2": 8.550724637681158, "center_x": 0.5797101449275361, "center_y": 8.405797101449274, "value_uncond": 0.0031832027044572447}, {"x": 0.72463768115942, "y": 8.26086956521739, "x2": 1.0144927536231876, "y2": 8.550724637681158, "center_x": 0.8695652173913038, "center_y": 8.405797101449274, "value_uncond": 0.0035538875626164724}, {"x": 1.0144927536231894, "y": 8.26086956521739, "x2": 1.304347826086957, "y2": 8.550724637681158, "center_x": 1.1594202898550732, "center_y": 8.405797101449274, "value_uncond": 0.003930871857686288}, {"x": 1.304347826086957, "y": 8.26086956521739, "x2": 1.5942028985507246, "y2": 8.550724637681158, "center_x": 1.4492753623188408, "center_y": 8.405797101449274, "value_uncond": 0.004307446618483881}, {"x": 1.5942028985507246, "y": 8.26086956521739, "x2": 1.8840579710144922, "y2": 8.550724637681158, "center_x": 1.7391304347826084, "center_y": 8.405797101449274, "value_uncond": 0.004676239392426481}, {"x": 1.884057971014494, "y": 8.26086956521739, "x2": 2.1739130434782616, "y2": 8.550724637681158, "center_x": 2.028985507246378, "center_y": 8.405797101449274, "value_uncond": 0.005029437118168106}, {"x": 2.1739130434782616, "y": 8.26086956521739, "x2": 2.4637681159420293, "y2": 8.550724637681158, "center_x": 2.3188405797101455, "center_y": 8.405797101449274, "value_uncond": 0.005359050428562672}, {"x": 2.4637681159420293, "y": 8.26086956521739, "x2": 2.753623188405797, "y2": 8.550724637681158, "center_x": 2.608695652173913, "center_y": 8.405797101449274, "value_uncond": 0.005657207642854211}, {"x": 2.753623188405797, "y": 8.26086956521739, "x2": 3.0434782608695645, "y2": 8.550724637681158, "center_x": 2.8985507246376807, "center_y": 8.405797101449274, "value_uncond": 0.005916463772992945}, {"x": 3.0434782608695663, "y": 8.26086956521739, "x2": 3.333333333333334, "y2": 8.550724637681158, "center_x": 3.18840579710145, "center_y": 8.405797101449274, "value_uncond": 0.00613010783649177}, {"x": 3.333333333333334, "y": 8.26086956521739, "x2": 3.6231884057971016, "y2": 8.550724637681158, "center_x": 3.4782608695652177, "center_y": 8.405797101449274, "value_uncond": 0.006292450874478565}, {"x": 3.6231884057971016, "y": 8.26086956521739, "x2": 3.913043478260869, "y2": 8.550724637681158, "center_x": 3.7681159420289854, "center_y": 8.405797101449274, "value_uncond": 0.006399077463245162}, {"x": 3.913043478260871, "y": 8.26086956521739, "x2": 4.202898550724639, "y2": 8.550724637681158, "center_x": 4.057971014492755, "center_y": 8.405797101449274, "value_uncond": 0.006447045212209076}, {"x": 4.202898550724639, "y": 8.26086956521739, "x2": 4.492753623188406, "y2": 8.550724637681158, "center_x": 4.347826086956522, "center_y": 8.405797101449274, "value_uncond": 0.006435019670291634}, {"x": 4.492753623188406, "y": 8.26086956521739, "x2": 4.782608695652174, "y2": 8.550724637681158, "center_x": 4.63768115942029, "center_y": 8.405797101449274, "value_uncond": 0.00636333600807103}, {"x": 4.782608695652174, "y": 8.26086956521739, "x2": 5.0724637681159415, "y2": 8.550724637681158, "center_x": 4.927536231884058, "center_y": 8.405797101449274, "value_uncond": 0.00623398349645561}, {"x": 5.072463768115943, "y": 8.26086956521739, "x2": 5.362318840579711, "y2": 8.550724637681158, "center_x": 5.217391304347827, "center_y": 8.405797101449274, "value_uncond": 0.006050513785049202}, {"x": 5.362318840579711, "y": 8.26086956521739, "x2": 5.6521739130434785, "y2": 8.550724637681158, "center_x": 5.507246376811595, "center_y": 8.405797101449274, "value_uncond": 0.005817878882702297}, {"x": 5.6521739130434785, "y": 8.26086956521739, "x2": 5.942028985507246, "y2": 8.550724637681158, "center_x": 5.797101449275362, "center_y": 8.405797101449274, "value_uncond": 0.005542209155204808}, {"x": 5.942028985507246, "y": 8.26086956521739, "x2": 6.231884057971014, "y2": 8.550724637681158, "center_x": 6.08695652173913, "center_y": 8.405797101449274, "value_uncond": 0.00523054522585382}, {"x": 6.2318840579710155, "y": 8.26086956521739, "x2": 6.521739130434783, "y2": 8.550724637681158, "center_x": 6.376811594202899, "center_y": 8.405797101449274, "value_uncond": 0.004890540122578068}, {"x": 6.521739130434785, "y": 8.26086956521739, "x2": 6.8115942028985526, "y2": 8.550724637681158, "center_x": 6.666666666666669, "center_y": 8.405797101449274, "value_uncond": 0.004530149197903092}, {"x": 6.811594202898551, "y": 8.26086956521739, "x2": 7.101449275362318, "y2": 8.550724637681158, "center_x": 6.956521739130435, "center_y": 8.405797101449274, "value_uncond": 0.004157325213865356}, {"x": 7.10144927536232, "y": 8.26086956521739, "x2": 7.391304347826088, "y2": 8.550724637681158, "center_x": 7.246376811594204, "center_y": 8.405797101449274, "value_uncond": 0.0037797346116212206}, {"x": 7.391304347826086, "y": 8.26086956521739, "x2": 7.681159420289854, "y2": 8.550724637681158, "center_x": 7.53623188405797, "center_y": 8.405797101449274, "value_uncond": 0.0034045085596694285}, {"x": 7.681159420289855, "y": 8.26086956521739, "x2": 7.971014492753623, "y2": 8.550724637681158, "center_x": 7.826086956521739, "center_y": 8.405797101449274, "value_uncond": 0.0030380391617178667}, {"x": 7.971014492753625, "y": 8.26086956521739, "x2": 8.260869565217392, "y2": 8.550724637681158, "center_x": 8.115942028985508, "center_y": 8.405797101449274, "value_uncond": 0.0026858275218073005}, {"x": 8.26086956521739, "y": 8.26086956521739, "x2": 8.550724637681158, "y2": 8.550724637681158, "center_x": 8.405797101449274, "center_y": 8.405797101449274, "value_uncond": 0.0023523865424548013}, {"x": 8.55072463768116, "y": 8.26086956521739, "x2": 8.840579710144928, "y2": 8.550724637681158, "center_x": 8.695652173913043, "center_y": 8.405797101449274, "value_uncond": 0.0020411976855896304}, {"x": 8.84057971014493, "y": 8.26086956521739, "x2": 9.130434782608697, "y2": 8.550724637681158, "center_x": 8.985507246376812, "center_y": 8.405797101449274, "value_uncond": 0.0017547177239015214}, {"x": 9.130434782608695, "y": 8.26086956521739, "x2": 9.420289855072463, "y2": 8.550724637681158, "center_x": 9.275362318840578, "center_y": 8.405797101449274, "value_uncond": 0.0014944289527028252}, {"x": 9.420289855072465, "y": 8.26086956521739, "x2": 9.710144927536232, "y2": 8.550724637681158, "center_x": 9.565217391304348, "center_y": 8.405797101449274, "value_uncond": 0.0012609245414797678}, {"x": 9.710144927536234, "y": 8.26086956521739, "x2": 10.000000000000002, "y2": 8.550724637681158, "center_x": 9.855072463768117, "center_y": 8.405797101449274, "value_uncond": 0.0010540197209255755}, {"x": 10.0, "y": 8.26086956521739, "x2": 10.289855072463768, "y2": 8.550724637681158, "center_x": 10.144927536231883, "center_y": 8.405797101449274, "value_uncond": 0.0008728792917986891}, {"x": -10.0, "y": 8.55072463768116, "x2": -9.710144927536232, "y2": 8.840579710144928, "center_x": -9.855072463768117, "center_y": 8.695652173913043, "value_uncond": 1.0445642947586815e-07}, {"x": -9.710144927536232, "y": 8.55072463768116, "x2": -9.420289855072465, "y2": 8.840579710144928, "center_x": -9.565217391304348, "center_y": 8.695652173913043, "value_uncond": 1.6320191171812923e-07}, {"x": -9.420289855072463, "y": 8.55072463768116, "x2": -9.130434782608695, "y2": 8.840579710144928, "center_x": -9.275362318840578, "center_y": 8.695652173913043, "value_uncond": 2.5261615536661616e-07}, {"x": -9.130434782608695, "y": 8.55072463768116, "x2": -8.840579710144928, "y2": 8.840579710144928, "center_x": -8.985507246376812, "center_y": 8.695652173913043, "value_uncond": 3.873850133284215e-07}, {"x": -8.840579710144928, "y": 8.55072463768116, "x2": -8.55072463768116, "y2": 8.840579710144928, "center_x": -8.695652173913043, "center_y": 8.695652173913043, "value_uncond": 5.885323283838296e-07}, {"x": -8.55072463768116, "y": 8.55072463768116, "x2": -8.260869565217392, "y2": 8.840579710144928, "center_x": -8.405797101449277, "center_y": 8.695652173913043, "value_uncond": 8.858162581182798e-07}, {"x": -8.26086956521739, "y": 8.55072463768116, "x2": -7.971014492753623, "y2": 8.840579710144928, "center_x": -8.115942028985508, "center_y": 8.695652173913043, "value_uncond": 1.3208782367818309e-06}, {"x": -7.971014492753623, "y": 8.55072463768116, "x2": -7.681159420289855, "y2": 8.840579710144928, "center_x": -7.826086956521739, "center_y": 8.695652173913043, "value_uncond": 1.9513165898152533e-06}, {"x": -7.681159420289855, "y": 8.55072463768116, "x2": -7.391304347826088, "y2": 8.840579710144928, "center_x": -7.536231884057972, "center_y": 8.695652173913043, "value_uncond": 2.8558704555904338e-06}, {"x": -7.391304347826087, "y": 8.55072463768116, "x2": -7.101449275362319, "y2": 8.840579710144928, "center_x": -7.246376811594203, "center_y": 8.695652173913043, "value_uncond": 4.140903262997788e-06}, {"x": -7.101449275362318, "y": 8.55072463768116, "x2": -6.811594202898551, "y2": 8.840579710144928, "center_x": -6.956521739130435, "center_y": 8.695652173913043, "value_uncond": 5.948363235535961e-06}, {"x": -6.811594202898551, "y": 8.55072463768116, "x2": -6.521739130434783, "y2": 8.840579710144928, "center_x": -6.666666666666667, "center_y": 8.695652173913043, "value_uncond": 8.465365055944217e-06}, {"x": -6.521739130434782, "y": 8.55072463768116, "x2": -6.231884057971015, "y2": 8.840579710144928, "center_x": -6.3768115942028984, "center_y": 8.695652173913043, "value_uncond": 1.1935475236483604e-05}, {"x": -6.231884057971014, "y": 8.55072463768116, "x2": -5.942028985507246, "y2": 8.840579710144928, "center_x": -6.08695652173913, "center_y": 8.695652173913043, "value_uncond": 1.6671687284283626e-05}, {"x": -5.942028985507246, "y": 8.55072463768116, "x2": -5.6521739130434785, "y2": 8.840579710144928, "center_x": -5.797101449275362, "center_y": 8.695652173913043, "value_uncond": 2.3070935738087277e-05}, {"x": -5.6521739130434785, "y": 8.55072463768116, "x2": -5.362318840579711, "y2": 8.840579710144928, "center_x": -5.507246376811595, "center_y": 8.695652173913043, "value_uncond": 3.1629816913060714e-05}, {"x": -5.36231884057971, "y": 8.55072463768116, "x2": -5.072463768115942, "y2": 8.840579710144928, "center_x": -5.217391304347826, "center_y": 8.695652173913043, "value_uncond": 4.296095838063664e-05}, {"x": -5.0724637681159415, "y": 8.55072463768116, "x2": -4.782608695652174, "y2": 8.840579710144928, "center_x": -4.927536231884058, "center_y": 8.695652173913043, "value_uncond": 5.780921322558761e-05}, {"x": -4.782608695652174, "y": 8.55072463768116, "x2": -4.492753623188406, "y2": 8.840579710144928, "center_x": -4.63768115942029, "center_y": 8.695652173913043, "value_uncond": 7.706655946123317e-05}, {"x": -4.492753623188405, "y": 8.55072463768116, "x2": -4.202898550724638, "y2": 8.840579710144928, "center_x": -4.3478260869565215, "center_y": 8.695652173913043, "value_uncond": 0.00010178427735403919}, {"x": -4.202898550724638, "y": 8.55072463768116, "x2": -3.91304347826087, "y2": 8.840579710144928, "center_x": -4.057971014492754, "center_y": 8.695652173913043, "value_uncond": 0.0001331806833200212}, {"x": -3.913043478260869, "y": 8.55072463768116, "x2": -3.6231884057971016, "y2": 8.840579710144928, "center_x": -3.7681159420289854, "center_y": 8.695652173913043, "value_uncond": 0.00017264245161968284}, {"x": -3.6231884057971016, "y": 8.55072463768116, "x2": -3.333333333333334, "y2": 8.840579710144928, "center_x": -3.4782608695652177, "center_y": 8.695652173913043, "value_uncond": 0.0002217173937673012}, {"x": -3.333333333333333, "y": 8.55072463768116, "x2": -3.0434782608695654, "y2": 8.840579710144928, "center_x": -3.1884057971014492, "center_y": 8.695652173913043, "value_uncond": 0.0002820965337334934}, {"x": -3.0434782608695645, "y": 8.55072463768116, "x2": -2.753623188405797, "y2": 8.840579710144928, "center_x": -2.8985507246376807, "center_y": 8.695652173913043, "value_uncond": 0.0003555834580916702}, {"x": -2.753623188405797, "y": 8.55072463768116, "x2": -2.4637681159420293, "y2": 8.840579710144928, "center_x": -2.608695652173913, "center_y": 8.695652173913043, "value_uncond": 0.0004440492727523974}, {"x": -2.4637681159420284, "y": 8.55072463768116, "x2": -2.1739130434782608, "y2": 8.840579710144928, "center_x": -2.3188405797101446, "center_y": 8.695652173913043, "value_uncond": 0.0005493720895215017}, {"x": -2.1739130434782608, "y": 8.55072463768116, "x2": -1.8840579710144931, "y2": 8.840579710144928, "center_x": -2.028985507246377, "center_y": 8.695652173913043, "value_uncond": 0.0006733608069568906}, {"x": -1.8840579710144922, "y": 8.55072463768116, "x2": -1.5942028985507246, "y2": 8.840579710144928, "center_x": -1.7391304347826084, "center_y": 8.695652173913043, "value_uncond": 0.0008176640283809529}, {"x": -1.5942028985507246, "y": 8.55072463768116, "x2": -1.304347826086957, "y2": 8.840579710144928, "center_x": -1.4492753623188408, "center_y": 8.695652173913043, "value_uncond": 0.0009836662352107881}, {"x": -1.304347826086957, "y": 8.55072463768116, "x2": -1.0144927536231894, "y2": 8.840579710144928, "center_x": -1.1594202898550732, "center_y": 8.695652173913043, "value_uncond": 0.00117237473562303}, {"x": -1.0144927536231876, "y": 8.55072463768116, "x2": -0.72463768115942, "y2": 8.840579710144928, "center_x": -0.8695652173913038, "center_y": 8.695652173913043, "value_uncond": 0.0013843023371089397}, {"x": -0.72463768115942, "y": 8.55072463768116, "x2": -0.43478260869565233, "y2": 8.840579710144928, "center_x": -0.5797101449275361, "center_y": 8.695652173913043, "value_uncond": 0.0016193520217726706}, {"x": -0.43478260869565233, "y": 8.55072463768116, "x2": -0.1449275362318847, "y2": 8.840579710144928, "center_x": -0.2898550724637685, "center_y": 8.695652173913043, "value_uncond": 0.0018767109937615424}, {"x": -0.14492753623188293, "y": 8.55072463768116, "x2": 0.1449275362318847, "y2": 8.840579710144928, "center_x": 8.881784197001252e-16, "center_y": 8.695652173913043, "value_uncond": 0.0021547621731544497}, {"x": 0.1449275362318847, "y": 8.55072463768116, "x2": 0.43478260869565233, "y2": 8.840579710144928, "center_x": 0.2898550724637685, "center_y": 8.695652173913043, "value_uncond": 0.002451021395080612}, {"x": 0.43478260869565233, "y": 8.55072463768116, "x2": 0.72463768115942, "y2": 8.840579710144928, "center_x": 0.5797101449275361, "center_y": 8.695652173913043, "value_uncond": 0.0027621081296955365}, {"x": 0.72463768115942, "y": 8.55072463768116, "x2": 1.0144927536231876, "y2": 8.840579710144928, "center_x": 0.8695652173913038, "center_y": 8.695652173913043, "value_uncond": 0.003083756405139314}, {"x": 1.0144927536231894, "y": 8.55072463768116, "x2": 1.304347826086957, "y2": 8.840579710144928, "center_x": 1.1594202898550732, "center_y": 8.695652173913043, "value_uncond": 0.0034108707873688375}, {"x": 1.304347826086957, "y": 8.55072463768116, "x2": 1.5942028985507246, "y2": 8.840579710144928, "center_x": 1.4492753623188408, "center_y": 8.695652173913043, "value_uncond": 0.003737629811159793}, {"x": 1.5942028985507246, "y": 8.55072463768116, "x2": 1.8840579710144922, "y2": 8.840579710144928, "center_x": 1.7391304347826084, "center_y": 8.695652173913043, "value_uncond": 0.004057636299484736}, {"x": 1.884057971014494, "y": 8.55072463768116, "x2": 2.1739130434782616, "y2": 8.840579710144928, "center_x": 2.028985507246378, "center_y": 8.695652173913043, "value_uncond": 0.004364110753120656}, {"x": 2.1739130434782616, "y": 8.55072463768116, "x2": 2.4637681159420293, "y2": 8.840579710144928, "center_x": 2.3188405797101455, "center_y": 8.695652173913043, "value_uncond": 0.004650120689912263}, {"x": 2.4637681159420293, "y": 8.55072463768116, "x2": 2.753623188405797, "y2": 8.840579710144928, "center_x": 2.608695652173913, "center_y": 8.695652173913043, "value_uncond": 0.004908835745780014}, {"x": 2.753623188405797, "y": 8.55072463768116, "x2": 3.0434782608695645, "y2": 8.840579710144928, "center_x": 2.8985507246376807, "center_y": 8.695652173913043, "value_uncond": 0.0051337958036886434}, {"x": 3.0434782608695663, "y": 8.55072463768116, "x2": 3.333333333333334, "y2": 8.840579710144928, "center_x": 3.18840579710145, "center_y": 8.695652173913043, "value_uncond": 0.005319177653177839}, {"x": 3.333333333333334, "y": 8.55072463768116, "x2": 3.6231884057971016, "y2": 8.840579710144928, "center_x": 3.4782608695652177, "center_y": 8.695652173913043, "value_uncond": 0.005460044907529852}, {"x": 3.6231884057971016, "y": 8.55072463768116, "x2": 3.913043478260869, "y2": 8.840579710144928, "center_x": 3.7681159420289854, "center_y": 8.695652173913043, "value_uncond": 0.005552566243749356}, {"x": 3.913043478260871, "y": 8.55072463768116, "x2": 4.202898550724639, "y2": 8.840579710144928, "center_x": 4.057971014492755, "center_y": 8.695652173913043, "value_uncond": 0.005594188509648697}, {"x": 4.202898550724639, "y": 8.55072463768116, "x2": 4.492753623188406, "y2": 8.840579710144928, "center_x": 4.347826086956522, "center_y": 8.695652173913043, "value_uncond": 0.005583753783940638}, {"x": 4.492753623188406, "y": 8.55072463768116, "x2": 4.782608695652174, "y2": 8.840579710144928, "center_x": 4.63768115942029, "center_y": 8.695652173913043, "value_uncond": 0.005521552898678561}, {"x": 4.782608695652174, "y": 8.55072463768116, "x2": 5.0724637681159415, "y2": 8.840579710144928, "center_x": 4.927536231884058, "center_y": 8.695652173913043, "value_uncond": 0.005409311971190908}, {"x": 5.072463768115943, "y": 8.55072463768116, "x2": 5.362318840579711, "y2": 8.840579710144928, "center_x": 5.217391304347827, "center_y": 8.695652173913043, "value_uncond": 0.005250112815975646}, {"x": 5.362318840579711, "y": 8.55072463768116, "x2": 5.6521739130434785, "y2": 8.840579710144928, "center_x": 5.507246376811595, "center_y": 8.695652173913043, "value_uncond": 0.005048252358228618}, {"x": 5.6521739130434785, "y": 8.55072463768116, "x2": 5.942028985507246, "y2": 8.840579710144928, "center_x": 5.797101449275362, "center_y": 8.695652173913043, "value_uncond": 0.004809049999432685}, {"x": 5.942028985507246, "y": 8.55072463768116, "x2": 6.231884057971014, "y2": 8.840579710144928, "center_x": 6.08695652173913, "center_y": 8.695652173913043, "value_uncond": 0.004538614983846707}, {"x": 6.2318840579710155, "y": 8.55072463768116, "x2": 6.521739130434783, "y2": 8.840579710144928, "center_x": 6.376811594202899, "center_y": 8.695652173913043, "value_uncond": 0.0042435879475285635}, {"x": 6.521739130434785, "y": 8.55072463768116, "x2": 6.8115942028985526, "y2": 8.840579710144928, "center_x": 6.666666666666669, "center_y": 8.695652173913043, "value_uncond": 0.003930871857686281}, {"x": 6.811594202898551, "y": 8.55072463768116, "x2": 7.101449275362318, "y2": 8.840579710144928, "center_x": 6.956521739130435, "center_y": 8.695652173913043, "value_uncond": 0.003607367433725416}, {"x": 7.10144927536232, "y": 8.55072463768116, "x2": 7.391304347826088, "y2": 8.840579710144928, "center_x": 7.246376811594204, "center_y": 8.695652173913043, "value_uncond": 0.0032797269505432467}, {"x": 7.391304347826086, "y": 8.55072463768116, "x2": 7.681159420289854, "y2": 8.840579710144928, "center_x": 7.53623188405797, "center_y": 8.695652173913043, "value_uncond": 0.002954138219697305}, {"x": 7.681159420289855, "y": 8.55072463768116, "x2": 7.971014492753623, "y2": 8.840579710144928, "center_x": 7.826086956521739, "center_y": 8.695652173913043, "value_uncond": 0.0026361477562092976}, {"x": 7.971014492753625, "y": 8.55072463768116, "x2": 8.260869565217392, "y2": 8.840579710144928, "center_x": 8.115942028985508, "center_y": 8.695652173913043, "value_uncond": 0.0023305289426137467}, {"x": 8.26086956521739, "y": 8.55072463768116, "x2": 8.550724637681158, "y2": 8.840579710144928, "center_x": 8.405797101449274, "center_y": 8.695652173913043, "value_uncond": 0.0020411976855896304}, {"x": 8.55072463768116, "y": 8.55072463768116, "x2": 8.840579710144928, "y2": 8.840579710144928, "center_x": 8.695652173913043, "center_y": 8.695652173913043, "value_uncond": 0.0017711748968384177}, {"x": 8.84057971014493, "y": 8.55072463768116, "x2": 9.130434782608697, "y2": 8.840579710144928, "center_x": 8.985507246376812, "center_y": 8.695652173913043, "value_uncond": 0.0015225923513204718}, {"x": 9.130434782608695, "y": 8.55072463768116, "x2": 9.420289855072463, "y2": 8.840579710144928, "center_x": 9.275362318840578, "center_y": 8.695652173913043, "value_uncond": 0.0012967362567683765}, {"x": 9.420289855072465, "y": 8.55072463768116, "x2": 9.710144927536232, "y2": 8.840579710144928, "center_x": 9.565217391304348, "center_y": 8.695652173913043, "value_uncond": 0.0010941213143847602}, {"x": 9.710144927536234, "y": 8.55072463768116, "x2": 10.000000000000002, "y2": 8.840579710144928, "center_x": 9.855072463768117, "center_y": 8.695652173913043, "value_uncond": 0.000914587197337893}, {"x": 10.0, "y": 8.55072463768116, "x2": 10.289855072463768, "y2": 8.840579710144928, "center_x": 10.144927536231883, "center_y": 8.695652173913043, "value_uncond": 0.0007574091919261327}, {"x": -10.0, "y": 8.84057971014493, "x2": -9.710144927536232, "y2": 9.130434782608697, "center_x": -9.855072463768117, "center_y": 8.985507246376812, "value_uncond": 8.979607877804766e-08}, {"x": -9.710144927536232, "y": 8.84057971014493, "x2": -9.420289855072465, "y2": 9.130434782608697, "center_x": -9.565217391304348, "center_y": 8.985507246376812, "value_uncond": 1.402966939890929e-07}, {"x": -9.420289855072463, "y": 8.84057971014493, "x2": -9.130434782608695, "y2": 9.130434782608697, "center_x": -9.275362318840578, "center_y": 8.985507246376812, "value_uncond": 2.1716174199835867e-07}, {"x": -9.130434782608695, "y": 8.84057971014493, "x2": -8.840579710144928, "y2": 9.130434782608697, "center_x": -8.985507246376812, "center_y": 8.985507246376812, "value_uncond": 3.330159316072577e-07}, {"x": -8.840579710144928, "y": 8.84057971014493, "x2": -8.55072463768116, "y2": 9.130434782608697, "center_x": -8.695652173913043, "center_y": 8.985507246376812, "value_uncond": 5.059324312362338e-07}, {"x": -8.55072463768116, "y": 8.84057971014493, "x2": -8.260869565217392, "y2": 9.130434782608697, "center_x": -8.405797101449277, "center_y": 8.985507246376812, "value_uncond": 7.614928721571976e-07}, {"x": -8.26086956521739, "y": 8.84057971014493, "x2": -7.971014492753623, "y2": 9.130434782608697, "center_x": -8.115942028985508, "center_y": 8.985507246376812, "value_uncond": 1.1354943568473354e-06}, {"x": -7.971014492753623, "y": 8.84057971014493, "x2": -7.681159420289855, "y2": 9.130434782608697, "center_x": -7.826086956521739, "center_y": 8.985507246376812, "value_uncond": 1.6774513459742732e-06}, {"x": -7.681159420289855, "y": 8.84057971014493, "x2": -7.391304347826088, "y2": 9.130434782608697, "center_x": -7.536231884057972, "center_y": 8.985507246376812, "value_uncond": 2.455052022138501e-06}, {"x": -7.391304347826087, "y": 8.84057971014493, "x2": -7.101449275362319, "y2": 9.130434782608697, "center_x": -7.246376811594203, "center_y": 8.985507246376812, "value_uncond": 3.559731818157989e-06}, {"x": -7.101449275362318, "y": 8.84057971014493, "x2": -6.811594202898551, "y2": 9.130434782608697, "center_x": -6.956521739130435, "center_y": 8.985507246376812, "value_uncond": 5.113516672729353e-06}, {"x": -6.811594202898551, "y": 8.84057971014493, "x2": -6.521739130434783, "y2": 9.130434782608697, "center_x": -6.666666666666667, "center_y": 8.985507246376812, "value_uncond": 7.277259918443921e-06}, {"x": -6.521739130434782, "y": 8.84057971014493, "x2": -6.231884057971015, "y2": 9.130434782608697, "center_x": -6.3768115942028984, "center_y": 8.985507246376812, "value_uncond": 1.0260343762145541e-05}, {"x": -6.231884057971014, "y": 8.84057971014493, "x2": -5.942028985507246, "y2": 9.130434782608697, "center_x": -6.08695652173913, "center_y": 8.985507246376812, "value_uncond": 1.4331833399382685e-05}, {"x": -5.942028985507246, "y": 8.84057971014493, "x2": -5.6521739130434785, "y2": 9.130434782608697, "center_x": -5.797101449275362, "center_y": 8.985507246376812, "value_uncond": 1.9832954021266523e-05}, {"x": -5.6521739130434785, "y": 8.84057971014493, "x2": -5.362318840579711, "y2": 9.130434782608697, "center_x": -5.507246376811595, "center_y": 8.985507246376812, "value_uncond": 2.719060516917808e-05}, {"x": -5.36231884057971, "y": 8.84057971014493, "x2": -5.072463768115942, "y2": 9.130434782608697, "center_x": -5.217391304347826, "center_y": 8.985507246376812, "value_uncond": 3.6931432775225205e-05}, {"x": -5.0724637681159415, "y": 8.84057971014493, "x2": -4.782608695652174, "y2": 9.130434782608697, "center_x": -4.927536231884058, "center_y": 8.985507246376812, "value_uncond": 4.9695750572262035e-05}, {"x": -4.782608695652174, "y": 8.84057971014493, "x2": -4.492753623188406, "y2": 9.130434782608697, "center_x": -4.63768115942029, "center_y": 8.985507246376812, "value_uncond": 6.625034839174487e-05}, {"x": -4.492753623188405, "y": 8.84057971014493, "x2": -4.202898550724638, "y2": 9.130434782608697, "center_x": -4.3478260869565215, "center_y": 8.985507246376812, "value_uncond": 8.74989604135519e-05}, {"x": -4.202898550724638, "y": 8.84057971014493, "x2": -3.91304347826087, "y2": 9.130434782608697, "center_x": -4.057971014492754, "center_y": 8.985507246376812, "value_uncond": 0.00011448891361810995}, {"x": -3.913043478260869, "y": 8.84057971014493, "x2": -3.6231884057971016, "y2": 9.130434782608697, "center_x": -3.7681159420289854, "center_y": 8.985507246376812, "value_uncond": 0.00014841226398282917}, {"x": -3.6231884057971016, "y": 8.84057971014493, "x2": -3.333333333333334, "y2": 9.130434782608697, "center_x": -3.4782608695652177, "center_y": 8.985507246376812, "value_uncond": 0.00019059958929374977}, {"x": -3.333333333333333, "y": 8.84057971014493, "x2": -3.0434782608695654, "y2": 9.130434782608697, "center_x": -3.1884057971014492, "center_y": 8.985507246376812, "value_uncond": 0.0002425045800746907}, {"x": -3.0434782608695645, "y": 8.84057971014493, "x2": -2.753623188405797, "y2": 9.130434782608697, "center_x": -2.8985507246376807, "center_y": 8.985507246376812, "value_uncond": 0.00030567769140861566}, {"x": -2.753623188405797, "y": 8.84057971014493, "x2": -2.4637681159420293, "y2": 9.130434782608697, "center_x": -2.608695652173913, "center_y": 8.985507246376812, "value_uncond": 0.00038172742144724434}, {"x": -2.4637681159420284, "y": 8.84057971014493, "x2": -2.1739130434782608, "y2": 9.130434782608697, "center_x": -2.3188405797101446, "center_y": 8.985507246376812, "value_uncond": 0.000472268290967481}, {"x": -2.1739130434782608, "y": 8.84057971014493, "x2": -1.8840579710144931, "y2": 9.130434782608697, "center_x": -2.028985507246377, "center_y": 8.985507246376812, "value_uncond": 0.0005788553215053133}, {"x": -1.8840579710144922, "y": 8.84057971014493, "x2": -1.5942028985507246, "y2": 9.130434782608697, "center_x": -1.7391304347826084, "center_y": 8.985507246376812, "value_uncond": 0.0007029057366299728}, {"x": -1.5942028985507246, "y": 8.84057971014493, "x2": -1.304347826086957, "y2": 9.130434782608697, "center_x": -1.4492753623188408, "center_y": 8.985507246376812, "value_uncond": 0.0008456097072387457}, {"x": -1.304347826086957, "y": 8.84057971014493, "x2": -1.0144927536231894, "y2": 9.130434782608697, "center_x": -1.1594202898550732, "center_y": 8.985507246376812, "value_uncond": 0.0010078331668585262}, {"x": -1.0144927536231876, "y": 8.84057971014493, "x2": -0.72463768115942, "y2": 9.130434782608697, "center_x": -0.8695652173913038, "center_y": 8.985507246376812, "value_uncond": 0.001190016950985169}, {"x": -0.72463768115942, "y": 8.84057971014493, "x2": -0.43478260869565233, "y2": 9.130434782608697, "center_x": -0.5797101449275361, "center_y": 8.985507246376812, "value_uncond": 0.0013920776580831054}, {"x": -0.43478260869565233, "y": 8.84057971014493, "x2": -0.1449275362318847, "y2": 9.130434782608697, "center_x": -0.2898550724637685, "center_y": 8.985507246376812, "value_uncond": 0.001613316567348035}, {"x": -0.14492753623188293, "y": 8.84057971014493, "x2": 0.1449275362318847, "y2": 9.130434782608697, "center_x": 8.881784197001252e-16, "center_y": 8.985507246376812, "value_uncond": 0.0018523435543355879}, {"x": 0.1449275362318847, "y": 8.84057971014493, "x2": 0.43478260869565233, "y2": 9.130434782608697, "center_x": 0.2898550724637685, "center_y": 8.985507246376812, "value_uncond": 0.002107023104118119}, {"x": 0.43478260869565233, "y": 8.84057971014493, "x2": 0.72463768115942, "y2": 9.130434782608697, "center_x": 0.5797101449275361, "center_y": 8.985507246376812, "value_uncond": 0.0023744491406814394}, {"x": 0.72463768115942, "y": 8.84057971014493, "x2": 1.0144927536231876, "y2": 9.130434782608697, "center_x": 0.8695652173913038, "center_y": 8.985507246376812, "value_uncond": 0.002650954416857332}, {"x": 1.0144927536231894, "y": 8.84057971014493, "x2": 1.304347826086957, "y2": 9.130434782608697, "center_x": 1.1594202898550732, "center_y": 8.985507246376812, "value_uncond": 0.0029321586374448324}, {"x": 1.304347826086957, "y": 8.84057971014493, "x2": 1.5942028985507246, "y2": 9.130434782608697, "center_x": 1.4492753623188408, "center_y": 8.985507246376812, "value_uncond": 0.0032130573737791934}, {"x": 1.5942028985507246, "y": 8.84057971014493, "x2": 1.8840579710144922, "y2": 9.130434782608697, "center_x": 1.7391304347826084, "center_y": 8.985507246376812, "value_uncond": 0.0034881512859423654}, {"x": 1.884057971014494, "y": 8.84057971014493, "x2": 2.1739130434782616, "y2": 9.130434782608697, "center_x": 2.028985507246378, "center_y": 8.985507246376812, "value_uncond": 0.003751612370341272}, {"x": 2.1739130434782616, "y": 8.84057971014493, "x2": 2.4637681159420293, "y2": 9.130434782608697, "center_x": 2.3188405797101455, "center_y": 8.985507246376812, "value_uncond": 0.003997481111445207}, {"x": 2.4637681159420293, "y": 8.84057971014493, "x2": 2.753623188405797, "y2": 9.130434782608697, "center_x": 2.608695652173913, "center_y": 8.985507246376812, "value_uncond": 0.004219885779634011}, {"x": 2.753623188405797, "y": 8.84057971014493, "x2": 3.0434782608695645, "y2": 9.130434782608697, "center_x": 2.8985507246376807, "center_y": 8.985507246376812, "value_uncond": 0.004413272928546124}, {"x": 3.0434782608695663, "y": 8.84057971014493, "x2": 3.333333333333334, "y2": 9.130434782608697, "center_x": 3.18840579710145, "center_y": 8.985507246376812, "value_uncond": 0.0045726366292228515}, {"x": 3.333333333333334, "y": 8.84057971014493, "x2": 3.6231884057971016, "y2": 9.130434782608697, "center_x": 3.4782608695652177, "center_y": 8.985507246376812, "value_uncond": 0.00469373331166271}, {"x": 3.6231884057971016, "y": 8.84057971014493, "x2": 3.913043478260869, "y2": 9.130434782608697, "center_x": 3.7681159420289854, "center_y": 8.985507246376812, "value_uncond": 0.004773269375048221}, {"x": 3.913043478260871, "y": 8.84057971014493, "x2": 4.202898550724639, "y2": 9.130434782608697, "center_x": 4.057971014492755, "center_y": 8.985507246376812, "value_uncond": 0.004809049999432683}, {"x": 4.202898550724639, "y": 8.84057971014493, "x2": 4.492753623188406, "y2": 9.130434782608697, "center_x": 4.347826086956522, "center_y": 8.985507246376812, "value_uncond": 0.00480007977657125}, {"x": 4.492753623188406, "y": 8.84057971014493, "x2": 4.782608695652174, "y2": 9.130434782608697, "center_x": 4.63768115942029, "center_y": 8.985507246376812, "value_uncond": 0.004746608720542591}, {"x": 4.782608695652174, "y": 8.84057971014493, "x2": 5.0724637681159415, "y2": 9.130434782608697, "center_x": 4.927536231884058, "center_y": 8.985507246376812, "value_uncond": 0.004650120689912261}, {"x": 5.072463768115943, "y": 8.84057971014493, "x2": 5.362318840579711, "y2": 9.130434782608697, "center_x": 5.217391304347827, "center_y": 8.985507246376812, "value_uncond": 0.004513264969734587}, {"x": 5.362318840579711, "y": 8.84057971014493, "x2": 5.6521739130434785, "y2": 9.130434782608697, "center_x": 5.507246376811595, "center_y": 8.985507246376812, "value_uncond": 0.004339735416245373}, {"x": 5.6521739130434785, "y": 8.84057971014493, "x2": 5.942028985507246, "y2": 9.130434782608697, "center_x": 5.797101449275362, "center_y": 8.985507246376812, "value_uncond": 0.004134104858489265}, {"x": 5.942028985507246, "y": 8.84057971014493, "x2": 6.231884057971014, "y2": 9.130434782608697, "center_x": 6.08695652173913, "center_y": 8.985507246376812, "value_uncond": 0.003901625114678845}, {"x": 6.2318840579710155, "y": 8.84057971014493, "x2": 6.521739130434783, "y2": 9.130434782608697, "center_x": 6.376811594202899, "center_y": 8.985507246376812, "value_uncond": 0.003648004814542142}, {"x": 6.521739130434785, "y": 8.84057971014493, "x2": 6.8115942028985526, "y2": 9.130434782608697, "center_x": 6.666666666666669, "center_y": 8.985507246376812, "value_uncond": 0.0033791781010546027}, {"x": 6.811594202898551, "y": 8.84057971014493, "x2": 7.101449275362318, "y2": 9.130434782608697, "center_x": 6.956521739130435, "center_y": 8.985507246376812, "value_uncond": 0.003101077184865926}, {"x": 7.10144927536232, "y": 8.84057971014493, "x2": 7.391304347826088, "y2": 9.130434782608697, "center_x": 7.246376811594204, "center_y": 8.985507246376812, "value_uncond": 0.002819420701044596}, {"x": 7.391304347826086, "y": 8.84057971014493, "x2": 7.681159420289854, "y2": 9.130434782608697, "center_x": 7.53623188405797, "center_y": 8.985507246376812, "value_uncond": 0.002539528008263621}, {"x": 7.681159420289855, "y": 8.84057971014493, "x2": 7.971014492753623, "y2": 9.130434782608697, "center_x": 7.826086956521739, "center_y": 8.985507246376812, "value_uncond": 0.0022661671739586946}, {"x": 7.971014492753625, "y": 8.84057971014493, "x2": 8.260869565217392, "y2": 9.130434782608697, "center_x": 8.115942028985508, "center_y": 8.985507246376812, "value_uncond": 0.002003441641414816}, {"x": 8.26086956521739, "y": 8.84057971014493, "x2": 8.550724637681158, "y2": 9.130434782608697, "center_x": 8.405797101449274, "center_y": 8.985507246376812, "value_uncond": 0.0017547177239015214}, {"x": 8.55072463768116, "y": 8.84057971014493, "x2": 8.840579710144928, "y2": 9.130434782608697, "center_x": 8.695652173913043, "center_y": 8.985507246376812, "value_uncond": 0.0015225923513204718}, {"x": 8.84057971014493, "y": 8.84057971014493, "x2": 9.130434782608697, "y2": 9.130434782608697, "center_x": 8.985507246376812, "center_y": 8.985507246376812, "value_uncond": 0.0013088981062445}, {"x": 9.130434782608695, "y": 8.84057971014493, "x2": 9.420289855072463, "y2": 9.130434782608697, "center_x": 9.275362318840578, "center_y": 8.985507246376812, "value_uncond": 0.0011147406784952822}, {"x": 9.420289855072465, "y": 8.84057971014493, "x2": 9.710144927536232, "y2": 9.130434782608697, "center_x": 9.565217391304348, "center_y": 8.985507246376812, "value_uncond": 0.0009405625314996294}, {"x": 9.710144927536234, "y": 8.84057971014493, "x2": 10.000000000000002, "y2": 9.130434782608697, "center_x": 9.855072463768117, "center_y": 8.985507246376812, "value_uncond": 0.0007862258401290695}, {"x": 10.0, "y": 8.84057971014493, "x2": 10.289855072463768, "y2": 9.130434782608697, "center_x": 10.144927536231883, "center_y": 8.985507246376812, "value_uncond": 0.000651107603492506}, {"x": -10.0, "y": 9.130434782608695, "x2": -9.710144927536232, "y2": 9.420289855072463, "center_x": -9.855072463768117, "center_y": 9.275362318840578, "value_uncond": 7.647603836058899e-08}, {"x": -9.710144927536232, "y": 9.130434782608695, "x2": -9.420289855072465, "y2": 9.420289855072463, "center_x": -9.565217391304348, "center_y": 9.275362318840578, "value_uncond": 1.1948556660134085e-07}, {"x": -9.420289855072463, "y": 9.130434782608695, "x2": -9.130434782608695, "y2": 9.420289855072463, "center_x": -9.275362318840578, "center_y": 9.275362318840578, "value_uncond": 1.8494871866920357e-07}, {"x": -9.130434782608695, "y": 9.130434782608695, "x2": -8.840579710144928, "y2": 9.420289855072463, "center_x": -8.985507246376812, "center_y": 9.275362318840578, "value_uncond": 2.836174976329806e-07}, {"x": -8.840579710144928, "y": 9.130434782608695, "x2": -8.55072463768116, "y2": 9.420289855072463, "center_x": -8.695652173913043, "center_y": 9.275362318840578, "value_uncond": 4.308841604846021e-07}, {"x": -8.55072463768116, "y": 9.130434782608695, "x2": -8.260869565217392, "y2": 9.420289855072463, "center_x": -8.405797101449277, "center_y": 9.275362318840578, "value_uncond": 6.485356476016378e-07}, {"x": -8.26086956521739, "y": 9.130434782608695, "x2": -7.971014492753623, "y2": 9.420289855072463, "center_x": -8.115942028985508, "center_y": 9.275362318840578, "value_uncond": 9.670590428244664e-07}, {"x": -7.971014492753623, "y": 9.130434782608695, "x2": -7.681159420289855, "y2": 9.420289855072463, "center_x": -7.826086956521739, "center_y": 9.275362318840578, "value_uncond": 1.4286240026119246e-06}, {"x": -7.681159420289855, "y": 9.130434782608695, "x2": -7.391304347826088, "y2": 9.420289855072463, "center_x": -7.536231884057972, "center_y": 9.275362318840578, "value_uncond": 2.0908780781662027e-06}, {"x": -7.391304347826087, "y": 9.130434782608695, "x2": -7.101449275362319, "y2": 9.420289855072463, "center_x": -7.246376811594203, "center_y": 9.275362318840578, "value_uncond": 3.0316934857673573e-06}, {"x": -7.101449275362318, "y": 9.130434782608695, "x2": -6.811594202898551, "y2": 9.420289855072463, "center_x": -6.956521739130435, "center_y": 9.275362318840578, "value_uncond": 4.354995257507432e-06}, {"x": -6.811594202898551, "y": 9.130434782608695, "x2": -6.521739130434783, "y2": 9.420289855072463, "center_x": -6.666666666666667, "center_y": 9.275362318840578, "value_uncond": 6.197776297765796e-06}, {"x": -6.521739130434782, "y": 9.130434782608695, "x2": -6.231884057971015, "y2": 9.420289855072463, "center_x": -6.3768115942028984, "center_y": 9.275362318840578, "value_uncond": 8.738359779452863e-06}, {"x": -6.231884057971014, "y": 9.130434782608695, "x2": -5.942028985507246, "y2": 9.420289855072463, "center_x": -6.08695652173913, "center_y": 9.275362318840578, "value_uncond": 1.2205898695619978e-05}, {"x": -5.942028985507246, "y": 9.130434782608695, "x2": -5.6521739130434785, "y2": 9.420289855072463, "center_x": -5.797101449275362, "center_y": 9.275362318840578, "value_uncond": 1.6891002070181413e-05}, {"x": -5.6521739130434785, "y": 9.130434782608695, "x2": -5.362318840579711, "y2": 9.420289855072463, "center_x": -5.507246376811595, "center_y": 9.275362318840578, "value_uncond": 2.315724463988563e-05}, {"x": -5.36231884057971, "y": 9.130434782608695, "x2": -5.072463768115942, "y2": 9.420289855072463, "center_x": -5.217391304347826, "center_y": 9.275362318840578, "value_uncond": 3.1453151496856975e-05}, {"x": -5.0724637681159415, "y": 9.130434782608695, "x2": -4.782608695652174, "y2": 9.420289855072463, "center_x": -4.927536231884058, "center_y": 9.275362318840578, "value_uncond": 4.2324054444699044e-05}, {"x": -4.782608695652174, "y": 9.130434782608695, "x2": -4.492753623188406, "y2": 9.420289855072463, "center_x": -4.63768115942029, "center_y": 9.275362318840578, "value_uncond": 5.642300035765128e-05}, {"x": -4.492753623188405, "y": 9.130434782608695, "x2": -4.202898550724638, "y2": 9.420289855072463, "center_x": -4.3478260869565215, "center_y": 9.275362318840578, "value_uncond": 7.451966660635891e-05}, {"x": -4.202898550724638, "y": 9.130434782608695, "x2": -3.91304347826087, "y2": 9.420289855072463, "center_x": -4.057971014492754, "center_y": 9.275362318840578, "value_uncond": 9.750602330155659e-05}, {"x": -3.913043478260869, "y": 9.130434782608695, "x2": -3.6231884057971016, "y2": 9.420289855072463, "center_x": -3.7681159420289854, "center_y": 9.275362318840578, "value_uncond": 0.00012639730095104576}, {"x": -3.6231884057971016, "y": 9.130434782608695, "x2": -3.333333333333334, "y2": 9.420289855072463, "center_x": -3.4782608695652177, "center_y": 9.275362318840578, "value_uncond": 0.00016232670402423812}, {"x": -3.333333333333333, "y": 9.130434782608695, "x2": -3.0434782608695654, "y2": 9.420289855072463, "center_x": -3.1884057971014492, "center_y": 9.275362318840578, "value_uncond": 0.000206532287609695}, {"x": -3.0434782608695645, "y": 9.130434782608695, "x2": -2.753623188405797, "y2": 9.420289855072463, "center_x": -2.8985507246376807, "center_y": 9.275362318840578, "value_uncond": 0.00026033451763437723}, {"x": -2.753623188405797, "y": 9.130434782608695, "x2": -2.4637681159420293, "y2": 9.420289855072463, "center_x": -2.608695652173913, "center_y": 9.275362318840578, "value_uncond": 0.00032510329318550315}, {"x": -2.4637681159420284, "y": 9.130434782608695, "x2": -2.1739130434782608, "y2": 9.420289855072463, "center_x": -2.3188405797101446, "center_y": 9.275362318840578, "value_uncond": 0.0004022136426000418}, {"x": -2.1739130434782608, "y": 9.130434782608695, "x2": -1.8840579710144931, "y2": 9.420289855072463, "center_x": -2.028985507246377, "center_y": 9.275362318840578, "value_uncond": 0.0004929899208860965}, {"x": -1.8840579710144922, "y": 9.130434782608695, "x2": -1.5942028985507246, "y2": 9.420289855072463, "center_x": -1.7391304347826084, "center_y": 9.275362318840578, "value_uncond": 0.0005986391255598276}, {"x": -1.5942028985507246, "y": 9.130434782608695, "x2": -1.304347826086957, "y2": 9.420289855072463, "center_x": -1.4492753623188408, "center_y": 9.275362318840578, "value_uncond": 0.0007201748816751926}, {"x": -1.304347826086957, "y": 9.130434782608695, "x2": -1.0144927536231894, "y2": 9.420289855072463, "center_x": -1.1594202898550732, "center_y": 9.275362318840578, "value_uncond": 0.0008583346731682558}, {"x": -1.0144927536231876, "y": 9.130434782608695, "x2": -0.72463768115942, "y2": 9.420289855072463, "center_x": -0.8695652173913038, "center_y": 9.275362318840578, "value_uncond": 0.0010134939435188506}, {"x": -0.72463768115942, "y": 9.130434782608695, "x2": -0.43478260869565233, "y2": 9.420289855072463, "center_x": -0.5797101449275361, "center_y": 9.275362318840578, "value_uncond": 0.0011855816626873544}, {"x": -0.43478260869565233, "y": 9.130434782608695, "x2": -0.1449275362318847, "y2": 9.420289855072463, "center_x": -0.2898550724637685, "center_y": 9.275362318840578, "value_uncond": 0.0013740027557021192}, {"x": -0.14492753623188293, "y": 9.130434782608695, "x2": 0.1449275362318847, "y2": 9.420289855072463, "center_x": 8.881784197001252e-16, "center_y": 9.275362318840578, "value_uncond": 0.0015775733043811879}, {"x": 0.1449275362318847, "y": 9.130434782608695, "x2": 0.43478260869565233, "y2": 9.420289855072463, "center_x": 0.2898550724637685, "center_y": 9.275362318840578, "value_uncond": 0.001794474568711094}, {"x": 0.43478260869565233, "y": 9.130434782608695, "x2": 0.72463768115942, "y2": 9.420289855072463, "center_x": 0.5797101449275361, "center_y": 9.275362318840578, "value_uncond": 0.002022231549964005}, {"x": 0.72463768115942, "y": 9.130434782608695, "x2": 1.0144927536231876, "y2": 9.420289855072463, "center_x": 0.8695652173913038, "center_y": 9.275362318840578, "value_uncond": 0.002257720987760062}, {"x": 1.0144927536231894, "y": 9.130434782608695, "x2": 1.304347826086957, "y2": 9.420289855072463, "center_x": 1.1594202898550732, "center_y": 9.275362318840578, "value_uncond": 0.0024972123447709275}, {"x": 1.304347826086957, "y": 9.130434782608695, "x2": 1.5942028985507246, "y2": 9.420289855072463, "center_x": 1.4492753623188408, "center_y": 9.275362318840578, "value_uncond": 0.002736443532008462}, {"x": 1.5942028985507246, "y": 9.130434782608695, "x2": 1.8840579710144922, "y2": 9.420289855072463, "center_x": 1.7391304347826084, "center_y": 9.275362318840578, "value_uncond": 0.002970730962658479}, {"x": 1.884057971014494, "y": 9.130434782608695, "x2": 2.1739130434782616, "y2": 9.420289855072463, "center_x": 2.028985507246378, "center_y": 9.275362318840578, "value_uncond": 0.0031951111390670145}, {"x": 2.1739130434782616, "y": 9.130434782608695, "x2": 2.4637681159420293, "y2": 9.420289855072463, "center_x": 2.3188405797101455, "center_y": 9.275362318840578, "value_uncond": 0.0034045085596694277}, {"x": 2.4637681159420293, "y": 9.130434782608695, "x2": 2.753623188405797, "y2": 9.420289855072463, "center_x": 2.608695652173913, "center_y": 9.275362318840578, "value_uncond": 0.0035939224869526204}, {"x": 2.753623188405797, "y": 9.130434782608695, "x2": 3.0434782608695645, "y2": 9.420289855072463, "center_x": 2.8985507246376807, "center_y": 9.275362318840578, "value_uncond": 0.0037586232536219915}, {"x": 3.0434782608695663, "y": 9.130434782608695, "x2": 3.333333333333334, "y2": 9.420289855072463, "center_x": 3.18840579710145, "center_y": 9.275362318840578, "value_uncond": 0.0038943474929438796}, {"x": 3.333333333333334, "y": 9.130434782608695, "x2": 3.6231884057971016, "y2": 9.420289855072463, "center_x": 3.4782608695652177, "center_y": 9.275362318840578, "value_uncond": 0.003997481111445211}, {"x": 3.6231884057971016, "y": 9.130434782608695, "x2": 3.913043478260869, "y2": 9.420289855072463, "center_x": 3.7681159420289854, "center_y": 9.275362318840578, "value_uncond": 0.004065219069686742}, {"x": 3.913043478260871, "y": 9.130434782608695, "x2": 4.202898550724639, "y2": 9.420289855072463, "center_x": 4.057971014492755, "center_y": 9.275362318840578, "value_uncond": 0.004095692119737797}, {"x": 4.202898550724639, "y": 9.130434782608695, "x2": 4.492753623188406, "y2": 9.420289855072463, "center_x": 4.347826086956522, "center_y": 9.275362318840578, "value_uncond": 0.004088052508777171}, {"x": 4.492753623188406, "y": 9.130434782608695, "x2": 4.782608695652174, "y2": 9.420289855072463, "center_x": 4.63768115942029, "center_y": 9.275362318840578, "value_uncond": 0.004042513164657964}, {"x": 4.782608695652174, "y": 9.130434782608695, "x2": 5.0724637681159415, "y2": 9.420289855072463, "center_x": 4.927536231884058, "center_y": 9.275362318840578, "value_uncond": 0.003960337835487279}, {"x": 5.072463768115943, "y": 9.130434782608695, "x2": 5.362318840579711, "y2": 9.420289855072463, "center_x": 5.217391304347827, "center_y": 9.275362318840578, "value_uncond": 0.0038437828205178234}, {"x": 5.362318840579711, "y": 9.130434782608695, "x2": 5.6521739130434785, "y2": 9.420289855072463, "center_x": 5.507246376811595, "center_y": 9.275362318840578, "value_uncond": 0.003695994042099792}, {"x": 5.6521739130434785, "y": 9.130434782608695, "x2": 5.942028985507246, "y2": 9.420289855072463, "center_x": 5.797101449275362, "center_y": 9.275362318840578, "value_uncond": 0.003520866011599312}, {"x": 5.942028985507246, "y": 9.130434782608695, "x2": 6.231884057971014, "y2": 9.420289855072463, "center_x": 6.08695652173913, "center_y": 9.275362318840578, "value_uncond": 0.003322871510640635}, {"x": 6.2318840579710155, "y": 9.130434782608695, "x2": 6.521739130434783, "y2": 9.420289855072463, "center_x": 6.376811594202899, "center_y": 9.275362318840578, "value_uncond": 0.0031068723705198263}, {"x": 6.521739130434785, "y": 9.130434782608695, "x2": 6.8115942028985526, "y2": 9.420289855072463, "center_x": 6.666666666666669, "center_y": 9.275362318840578, "value_uncond": 0.0028779224839235533}, {"x": 6.811594202898551, "y": 9.130434782608695, "x2": 7.101449275362318, "y2": 9.420289855072463, "center_x": 6.956521739130435, "center_y": 9.275362318840578, "value_uncond": 0.002641074097847261}, {"x": 7.10144927536232, "y": 9.130434782608695, "x2": 7.391304347826088, "y2": 9.420289855072463, "center_x": 7.246376811594204, "center_y": 9.275362318840578, "value_uncond": 0.0024011975647698}, {"x": 7.391304347826086, "y": 9.130434782608695, "x2": 7.681159420289854, "y2": 9.420289855072463, "center_x": 7.53623188405797, "center_y": 9.275362318840578, "value_uncond": 0.002162823188057047}, {"x": 7.681159420289855, "y": 9.130434782608695, "x2": 7.971014492753623, "y2": 9.420289855072463, "center_x": 7.826086956521739, "center_y": 9.275362318840578, "value_uncond": 0.001930011756477064}, {"x": 7.971014492753625, "y": 9.130434782608695, "x2": 8.260869565217392, "y2": 9.420289855072463, "center_x": 8.115942028985508, "center_y": 9.275362318840578, "value_uncond": 0.0017062580226999524}, {"x": 8.26086956521739, "y": 9.130434782608695, "x2": 8.550724637681158, "y2": 9.420289855072463, "center_x": 8.405797101449274, "center_y": 9.275362318840578, "value_uncond": 0.0014944289527028252}, {"x": 8.55072463768116, "y": 9.130434782608695, "x2": 8.840579710144928, "y2": 9.420289855072463, "center_x": 8.695652173913043, "center_y": 9.275362318840578, "value_uncond": 0.0012967362567683765}, {"x": 8.84057971014493, "y": 9.130434782608695, "x2": 9.130434782608697, "y2": 9.420289855072463, "center_x": 8.985507246376812, "center_y": 9.275362318840578, "value_uncond": 0.0011147406784952822}, {"x": 9.130434782608695, "y": 9.130434782608695, "x2": 9.420289855072463, "y2": 9.420289855072463, "center_x": 9.275362318840578, "center_y": 9.275362318840578, "value_uncond": 0.0009493838934930793}, {"x": 9.420289855072465, "y": 9.130434782608695, "x2": 9.710144927536232, "y2": 9.420289855072463, "center_x": 9.565217391304348, "center_y": 9.275362318840578, "value_uncond": 0.0008010427316908976}, {"x": 9.710144927536234, "y": 9.130434782608695, "x2": 10.000000000000002, "y2": 9.420289855072463, "center_x": 9.855072463768117, "center_y": 9.275362318840578, "value_uncond": 0.0006695998124641526}, {"x": 10.0, "y": 9.130434782608695, "x2": 10.289855072463768, "y2": 9.420289855072463, "center_x": 10.144927536231883, "center_y": 9.275362318840578, "value_uncond": 0.0005545245487238043}, {"x": -10.0, "y": 9.420289855072465, "x2": -9.710144927536232, "y2": 9.710144927536232, "center_x": -9.855072463768117, "center_y": 9.565217391304348, "value_uncond": 6.452666313083046e-08}, {"x": -9.710144927536232, "y": 9.420289855072465, "x2": -9.420289855072465, "y2": 9.710144927536232, "center_x": -9.565217391304348, "center_y": 9.565217391304348, "value_uncond": 1.0081595582564033e-07}, {"x": -9.420289855072463, "y": 9.420289855072465, "x2": -9.130434782608695, "y2": 9.710144927536232, "center_x": -9.275362318840578, "center_y": 9.565217391304348, "value_uncond": 1.5605049531692952e-07}, {"x": -9.130434782608695, "y": 9.420289855072465, "x2": -8.840579710144928, "y2": 9.710144927536232, "center_x": -8.985507246376812, "center_y": 9.565217391304348, "value_uncond": 2.3930228500439113e-07}, {"x": -8.840579710144928, "y": 9.420289855072465, "x2": -8.55072463768116, "y2": 9.710144927536232, "center_x": -8.695652173913043, "center_y": 9.565217391304348, "value_uncond": 3.6355854288509836e-07}, {"x": -8.55072463768116, "y": 9.420289855072465, "x2": -8.260869565217392, "y2": 9.710144927536232, "center_x": -8.405797101449277, "center_y": 9.565217391304348, "value_uncond": 5.472020015447292e-07}, {"x": -8.26086956521739, "y": 9.420289855072465, "x2": -7.971014492753623, "y2": 9.710144927536232, "center_x": -8.115942028985508, "center_y": 9.565217391304348, "value_uncond": 8.15956140271452e-07}, {"x": -7.971014492753623, "y": 9.420289855072465, "x2": -7.681159420289855, "y2": 9.710144927536232, "center_x": -7.826086956521739, "center_y": 9.565217391304348, "value_uncond": 1.2054016098807787e-06}, {"x": -7.681159420289855, "y": 9.420289855072465, "x2": -7.391304347826088, "y2": 9.710144927536232, "center_x": -7.536231884057972, "center_y": 9.565217391304348, "value_uncond": 1.7641785360445216e-06}, {"x": -7.391304347826087, "y": 9.420289855072465, "x2": -7.101449275362319, "y2": 9.710144927536232, "center_x": -7.246376811594203, "center_y": 9.565217391304348, "value_uncond": 2.5579916071182954e-06}, {"x": -7.101449275362318, "y": 9.420289855072465, "x2": -6.811594202898551, "y2": 9.710144927536232, "center_x": -6.956521739130435, "center_y": 9.565217391304348, "value_uncond": 3.674527576762701e-06}, {"x": -6.811594202898551, "y": 9.420289855072465, "x2": -6.521739130434783, "y2": 9.710144927536232, "center_x": -6.666666666666667, "center_y": 9.565217391304348, "value_uncond": 5.229374218373128e-06}, {"x": -6.521739130434782, "y": 9.420289855072465, "x2": -6.231884057971015, "y2": 9.710144927536232, "center_x": -6.3768115942028984, "center_y": 9.565217391304348, "value_uncond": 7.372991722533171e-06}, {"x": -6.231884057971014, "y": 9.420289855072465, "x2": -5.942028985507246, "y2": 9.710144927536232, "center_x": -6.08695652173913, "center_y": 9.565217391304348, "value_uncond": 1.0298727944401408e-05}, {"x": -5.942028985507246, "y": 9.420289855072465, "x2": -5.6521739130434785, "y2": 9.710144927536232, "center_x": -5.797101449275362, "center_y": 9.565217391304348, "value_uncond": 1.425178426980903e-05}, {"x": -5.6521739130434785, "y": 9.420289855072465, "x2": -5.362318840579711, "y2": 9.710144927536232, "center_x": -5.507246376811595, "center_y": 9.565217391304348, "value_uncond": 1.9538926910290582e-05}, {"x": -5.36231884057971, "y": 9.420289855072465, "x2": -5.072463768115942, "y2": 9.710144927536232, "center_x": -5.217391304347826, "center_y": 9.565217391304348, "value_uncond": 2.6538598946131802e-05}, {"x": -5.0724637681159415, "y": 9.420289855072465, "x2": -4.782608695652174, "y2": 9.710144927536232, "center_x": -4.927536231884058, "center_y": 9.565217391304348, "value_uncond": 3.5710924127725504e-05}, {"x": -4.782608695652174, "y": 9.420289855072465, "x2": -4.492753623188406, "y2": 9.710144927536232, "center_x": -4.63768115942029, "center_y": 9.565217391304348, "value_uncond": 4.760691080443206e-05}, {"x": -4.492753623188405, "y": 9.420289855072465, "x2": -4.202898550724638, "y2": 9.710144927536232, "center_x": -4.3478260869565215, "center_y": 9.565217391304348, "value_uncond": 6.287597431574483e-05}, {"x": -4.202898550724638, "y": 9.420289855072465, "x2": -3.91304347826087, "y2": 9.710144927536232, "center_x": -4.057971014492754, "center_y": 9.565217391304348, "value_uncond": 8.227071450982501e-05}, {"x": -3.913043478260869, "y": 9.420289855072465, "x2": -3.6231884057971016, "y2": 9.710144927536232, "center_x": -3.7681159420289854, "center_y": 9.565217391304348, "value_uncond": 0.00010664773220414889}, {"x": -3.6231884057971016, "y": 9.420289855072465, "x2": -3.333333333333334, "y2": 9.710144927536232, "center_x": -3.4782608695652177, "center_y": 9.565217391304348, "value_uncond": 0.00013696316875519372}, {"x": -3.333333333333333, "y": 9.420289855072465, "x2": -3.0434782608695654, "y2": 9.710144927536232, "center_x": -3.1884057971014492, "center_y": 9.565217391304348, "value_uncond": 0.00017426163323724657}, {"x": -3.0434782608695645, "y": 9.420289855072465, "x2": -2.753623188405797, "y2": 9.710144927536232, "center_x": -2.8985507246376807, "center_y": 9.565217391304348, "value_uncond": 0.00021965726887570564}, {"x": -2.753623188405797, "y": 9.420289855072465, "x2": -2.4637681159420293, "y2": 9.710144927536232, "center_x": -2.608695652173913, "center_y": 9.565217391304348, "value_uncond": 0.00027430592812866244}, {"x": -2.4637681159420284, "y": 9.420289855072465, "x2": -2.1739130434782608, "y2": 9.710144927536232, "center_x": -2.3188405797101446, "center_y": 9.565217391304348, "value_uncond": 0.0003393677912590714}, {"x": -2.1739130434782608, "y": 9.420289855072465, "x2": -1.8840579710144931, "y2": 9.710144927536232, "center_x": -2.028985507246377, "center_y": 9.565217391304348, "value_uncond": 0.0004159602829048383}, {"x": -1.8840579710144922, "y": 9.420289855072465, "x2": -1.5942028985507246, "y2": 9.710144927536232, "center_x": -1.7391304347826084, "center_y": 9.565217391304348, "value_uncond": 0.0005051018073111961}, {"x": -1.5942028985507246, "y": 9.420289855072465, "x2": -1.304347826086957, "y2": 9.710144927536232, "center_x": -1.4492753623188408, "center_y": 9.565217391304348, "value_uncond": 0.0006076476106938192}, {"x": -1.304347826086957, "y": 9.420289855072465, "x2": -1.0144927536231894, "y2": 9.710144927536232, "center_x": -1.1594202898550732, "center_y": 9.565217391304348, "value_uncond": 0.0007242199451793476}, {"x": -1.0144927536231876, "y": 9.420289855072465, "x2": -0.72463768115942, "y2": 9.710144927536232, "center_x": -0.8695652173913038, "center_y": 9.565217391304348, "value_uncond": 0.0008551355912321872}, {"x": -0.72463768115942, "y": 9.420289855072465, "x2": -0.43478260869565233, "y2": 9.710144927536232, "center_x": -0.5797101449275361, "center_y": 9.565217391304348, "value_uncond": 0.0010003346172510537}, {"x": -0.43478260869565233, "y": 9.420289855072465, "x2": -0.1449275362318847, "y2": 9.710144927536232, "center_x": -0.2898550724637685, "center_y": 9.565217391304348, "value_uncond": 0.0011593149286837669}, {"x": -0.14492753623188293, "y": 9.420289855072465, "x2": 0.1449275362318847, "y2": 9.710144927536232, "center_x": 8.881784197001252e-16, "center_y": 9.565217391304348, "value_uncond": 0.0013310775944750685}, {"x": 0.1449275362318847, "y": 9.420289855072465, "x2": 0.43478260869565233, "y2": 9.710144927536232, "center_x": 0.2898550724637685, "center_y": 9.565217391304348, "value_uncond": 0.0015140880526015143}, {"x": 0.43478260869565233, "y": 9.420289855072465, "x2": 0.72463768115942, "y2": 9.710144927536232, "center_x": 0.5797101449275361, "center_y": 9.565217391304348, "value_uncond": 0.0017062580226999535}, {"x": 0.72463768115942, "y": 9.420289855072465, "x2": 1.0144927536231876, "y2": 9.710144927536232, "center_x": 0.8695652173913038, "center_y": 9.565217391304348, "value_uncond": 0.0019049522535894748}, {"x": 1.0144927536231894, "y": 9.420289855072465, "x2": 1.304347826086957, "y2": 9.710144927536232, "center_x": 1.1594202898550732, "center_y": 9.565217391304348, "value_uncond": 0.00210702310411812}, {"x": 1.304347826086957, "y": 9.420289855072465, "x2": 1.5942028985507246, "y2": 9.710144927536232, "center_x": 1.4492753623188408, "center_y": 9.565217391304348, "value_uncond": 0.0023088744363809082}, {"x": 1.5942028985507246, "y": 9.420289855072465, "x2": 1.8840579710144922, "y2": 9.710144927536232, "center_x": 1.7391304347826084, "center_y": 9.565217391304348, "value_uncond": 0.002506554473650362}, {"x": 1.884057971014494, "y": 9.420289855072465, "x2": 2.1739130434782616, "y2": 9.710144927536232, "center_x": 2.028985507246378, "center_y": 9.565217391304348, "value_uncond": 0.002695875264406846}, {"x": 2.1739130434782616, "y": 9.420289855072465, "x2": 2.4637681159420293, "y2": 9.710144927536232, "center_x": 2.3188405797101455, "center_y": 9.565217391304348, "value_uncond": 0.0028725543538226468}, {"x": 2.4637681159420293, "y": 9.420289855072465, "x2": 2.753623188405797, "y2": 9.710144927536232, "center_x": 2.608695652173913, "center_y": 9.565217391304348, "value_uncond": 0.003032372369244177}, {"x": 2.753623188405797, "y": 9.420289855072465, "x2": 3.0434782608695645, "y2": 9.710144927536232, "center_x": 2.8985507246376807, "center_y": 9.565217391304348, "value_uncond": 0.003171338653535138}, {"x": 3.0434782608695663, "y": 9.420289855072465, "x2": 3.333333333333334, "y2": 9.710144927536232, "center_x": 3.18840579710145, "center_y": 9.565217391304348, "value_uncond": 0.0032858559906926666}, {"x": 3.333333333333334, "y": 9.420289855072465, "x2": 3.6231884057971016, "y2": 9.710144927536232, "center_x": 3.4782608695652177, "center_y": 9.565217391304348, "value_uncond": 0.00337287498907646}, {"x": 3.6231884057971016, "y": 9.420289855072465, "x2": 3.913043478260869, "y2": 9.710144927536232, "center_x": 3.7681159420289854, "center_y": 9.565217391304348, "value_uncond": 0.003430028896448236}, {"x": 3.913043478260871, "y": 9.420289855072465, "x2": 4.202898550724639, "y2": 9.710144927536232, "center_x": 4.057971014492755, "center_y": 9.565217391304348, "value_uncond": 0.003455740534725601}, {"x": 4.202898550724639, "y": 9.420289855072465, "x2": 4.492753623188406, "y2": 9.710144927536232, "center_x": 4.347826086956522, "center_y": 9.565217391304348, "value_uncond": 0.003449294612401767}, {"x": 4.492753623188406, "y": 9.420289855072465, "x2": 4.782608695652174, "y2": 9.710144927536232, "center_x": 4.63768115942029, "center_y": 9.565217391304348, "value_uncond": 0.0034108707873688354}, {"x": 4.782608695652174, "y": 9.420289855072465, "x2": 5.0724637681159415, "y2": 9.710144927536232, "center_x": 4.927536231884058, "center_y": 9.565217391304348, "value_uncond": 0.0033415353471874256}, {"x": 5.072463768115943, "y": 9.420289855072465, "x2": 5.362318840579711, "y2": 9.710144927536232, "center_x": 5.217391304347827, "center_y": 9.565217391304348, "value_uncond": 0.0032431920445220664}, {"x": 5.362318840579711, "y": 9.420289855072465, "x2": 5.6521739130434785, "y2": 9.710144927536232, "center_x": 5.507246376811595, "center_y": 9.565217391304348, "value_uncond": 0.003118495251592849}, {"x": 5.6521739130434785, "y": 9.420289855072465, "x2": 5.942028985507246, "y2": 9.710144927536232, "center_x": 5.797101449275362, "center_y": 9.565217391304348, "value_uncond": 0.002970730962658476}, {"x": 5.942028985507246, "y": 9.420289855072465, "x2": 6.231884057971014, "y2": 9.710144927536232, "center_x": 6.08695652173913, "center_y": 9.565217391304348, "value_uncond": 0.0028036730875515285}, {"x": 6.2318840579710155, "y": 9.420289855072465, "x2": 6.521739130434783, "y2": 9.710144927536232, "center_x": 6.376811594202899, "center_y": 9.565217391304348, "value_uncond": 0.002621423796794503}, {"x": 6.521739130434785, "y": 9.420289855072465, "x2": 6.8115942028985526, "y2": 9.710144927536232, "center_x": 6.666666666666669, "center_y": 9.565217391304348, "value_uncond": 0.0024282473127226916}, {"x": 6.811594202898551, "y": 9.420289855072465, "x2": 7.101449275362318, "y2": 9.710144927536232, "center_x": 6.956521739130435, "center_y": 9.565217391304348, "value_uncond": 0.002228406469119295}, {"x": 7.10144927536232, "y": 9.420289855072465, "x2": 7.391304347826088, "y2": 9.710144927536232, "center_x": 7.246376811594204, "center_y": 9.565217391304348, "value_uncond": 0.0020260106262554294}, {"x": 7.391304347826086, "y": 9.420289855072465, "x2": 7.681159420289854, "y2": 9.710144927536232, "center_x": 7.53623188405797, "center_y": 9.565217391304348, "value_uncond": 0.0018248822279375043}, {"x": 7.681159420289855, "y": 9.420289855072465, "x2": 7.971014492753623, "y2": 9.710144927536232, "center_x": 7.826086956521739, "center_y": 9.565217391304348, "value_uncond": 0.0016284475649946393}, {"x": 7.971014492753625, "y": 9.420289855072465, "x2": 8.260869565217392, "y2": 9.710144927536232, "center_x": 8.115942028985508, "center_y": 9.565217391304348, "value_uncond": 0.0014396553352556355}, {"x": 8.26086956521739, "y": 9.420289855072465, "x2": 8.550724637681158, "y2": 9.710144927536232, "center_x": 8.405797101449274, "center_y": 9.565217391304348, "value_uncond": 0.0012609245414797678}, {"x": 8.55072463768116, "y": 9.420289855072465, "x2": 8.840579710144928, "y2": 9.710144927536232, "center_x": 8.695652173913043, "center_y": 9.565217391304348, "value_uncond": 0.0010941213143847602}, {"x": 8.84057971014493, "y": 9.420289855072465, "x2": 9.130434782608697, "y2": 9.710144927536232, "center_x": 8.985507246376812, "center_y": 9.565217391304348, "value_uncond": 0.0009405625314996294}, {"x": 9.130434782608695, "y": 9.420289855072465, "x2": 9.420289855072463, "y2": 9.710144927536232, "center_x": 9.275362318840578, "center_y": 9.565217391304348, "value_uncond": 0.0008010427316908976}, {"x": 9.420289855072465, "y": 9.420289855072465, "x2": 9.710144927536232, "y2": 9.710144927536232, "center_x": 9.565217391304348, "center_y": 9.565217391304348, "value_uncond": 0.0006758798652396694}, {"x": 9.710144927536234, "y": 9.420289855072465, "x2": 10.000000000000002, "y2": 9.710144927536232, "center_x": 9.855072463768117, "center_y": 9.565217391304348, "value_uncond": 0.0005649748922351057}, {"x": 10.0, "y": 9.420289855072465, "x2": 10.289855072463768, "y2": 9.710144927536232, "center_x": 10.144927536231883, "center_y": 9.565217391304348, "value_uncond": 0.0004678801297808369}, {"x": -10.0, "y": 9.710144927536234, "x2": -9.710144927536232, "y2": 10.000000000000002, "center_x": -9.855072463768117, "center_y": 9.855072463768117, "value_uncond": 5.3938497688053584e-08}, {"x": -9.710144927536232, "y": 9.710144927536234, "x2": -9.420289855072465, "y2": 10.000000000000002, "center_x": -9.565217391304348, "center_y": 9.855072463768117, "value_uncond": 8.427308861756474e-08}, {"x": -9.420289855072463, "y": 9.710144927536234, "x2": -9.130434782608695, "y2": 10.000000000000002, "center_x": -9.275362318840578, "center_y": 9.855072463768117, "value_uncond": 1.3044420511573268e-07}, {"x": -9.130434782608695, "y": 9.710144927536234, "x2": -8.840579710144928, "y2": 10.000000000000002, "center_x": -8.985507246376812, "center_y": 9.855072463768117, "value_uncond": 2.0003522761257018e-07}, {"x": -8.840579710144928, "y": 9.710144927536234, "x2": -8.55072463768116, "y2": 10.000000000000002, "center_x": -8.695652173913043, "center_y": 9.855072463768117, "value_uncond": 3.039023044647501e-07}, {"x": -8.55072463768116, "y": 9.710144927536234, "x2": -8.260869565217392, "y2": 10.000000000000002, "center_x": -8.405797101449277, "center_y": 9.855072463768117, "value_uncond": 4.5741174985874186e-07}, {"x": -8.26086956521739, "y": 9.710144927536234, "x2": -7.971014492753623, "y2": 10.000000000000002, "center_x": -8.115942028985508, "center_y": 9.855072463768117, "value_uncond": 6.820660832305835e-07}, {"x": -7.971014492753623, "y": 9.710144927536234, "x2": -7.681159420289855, "y2": 10.000000000000002, "center_x": -7.826086956521739, "center_y": 9.855072463768117, "value_uncond": 1.0076075345149136e-06}, {"x": -7.681159420289855, "y": 9.710144927536234, "x2": -7.391304347826088, "y2": 10.000000000000002, "center_x": -7.536231884057972, "center_y": 9.855072463768117, "value_uncond": 1.4746948822507115e-06}, {"x": -7.391304347826087, "y": 9.710144927536234, "x2": -7.101449275362319, "y2": 10.000000000000002, "center_x": -7.246376811594203, "center_y": 9.855072463768117, "value_uncond": 2.138251347460231e-06}, {"x": -7.101449275362318, "y": 9.710144927536234, "x2": -6.811594202898551, "y2": 10.000000000000002, "center_x": -6.956521739130435, "center_y": 9.855072463768117, "value_uncond": 3.071575184386158e-06}, {"x": -6.811594202898551, "y": 9.710144927536234, "x2": -6.521739130434783, "y2": 10.000000000000002, "center_x": -6.666666666666667, "center_y": 9.855072463768117, "value_uncond": 4.371287395038365e-06}, {"x": -6.521739130434782, "y": 9.710144927536234, "x2": -6.231884057971015, "y2": 10.000000000000002, "center_x": -6.3768115942028984, "center_y": 9.855072463768117, "value_uncond": 6.1631591916285065e-06}, {"x": -6.231884057971014, "y": 9.710144927536234, "x2": -5.942028985507246, "y2": 10.000000000000002, "center_x": -6.08695652173913, "center_y": 9.855072463768117, "value_uncond": 8.608812023840343e-06}, {"x": -5.942028985507246, "y": 9.710144927536234, "x2": -5.6521739130434785, "y2": 10.000000000000002, "center_x": -5.797101449275362, "center_y": 9.855072463768117, "value_uncond": 1.191321223800342e-05}, {"x": -5.6521739130434785, "y": 9.710144927536234, "x2": -5.362318840579711, "y2": 10.000000000000002, "center_x": -5.507246376811595, "center_y": 9.855072463768117, "value_uncond": 1.6332788847936102e-05}, {"x": -5.36231884057971, "y": 9.710144927536234, "x2": -5.072463768115942, "y2": 10.000000000000002, "center_x": -5.217391304347826, "center_y": 9.855072463768117, "value_uncond": 2.2183886295154995e-05}, {"x": -5.0724637681159415, "y": 9.710144927536234, "x2": -4.782608695652174, "y2": 10.000000000000002, "center_x": -4.927536231884058, "center_y": 9.855072463768117, "value_uncond": 2.9851126728746904e-05}, {"x": -4.782608695652174, "y": 9.710144927536234, "x2": -4.492753623188406, "y2": 10.000000000000002, "center_x": -4.63768115942029, "center_y": 9.855072463768117, "value_uncond": 3.979510366364091e-05}, {"x": -4.492753623188405, "y": 9.710144927536234, "x2": -4.202898550724638, "y2": 10.000000000000002, "center_x": -4.3478260869565215, "center_y": 9.855072463768117, "value_uncond": 5.25586700243223e-05}, {"x": -4.202898550724638, "y": 9.710144927536234, "x2": -3.91304347826087, "y2": 10.000000000000002, "center_x": -4.057971014492754, "center_y": 9.855072463768117, "value_uncond": 6.877093172144017e-05}, {"x": -3.913043478260869, "y": 9.710144927536234, "x2": -3.6231884057971016, "y2": 10.000000000000002, "center_x": -3.7681159420289854, "center_y": 9.855072463768117, "value_uncond": 8.914793013961349e-05}, {"x": -3.6231884057971016, "y": 9.710144927536234, "x2": -3.333333333333334, "y2": 10.000000000000002, "center_x": -3.4782608695652177, "center_y": 9.855072463768117, "value_uncond": 0.00011448891361810975}, {"x": -3.333333333333333, "y": 9.710144927536234, "x2": -3.0434782608695654, "y2": 10.000000000000002, "center_x": -3.1884057971014492, "center_y": 9.855072463768117, "value_uncond": 0.00014566708156635937}, {"x": -3.0434782608695645, "y": 9.710144927536234, "x2": -2.753623188405797, "y2": 10.000000000000002, "center_x": -2.8985507246376807, "center_y": 9.855072463768117, "value_uncond": 0.00018361375770189993}, {"x": -2.753623188405797, "y": 9.710144927536234, "x2": -2.4637681159420293, "y2": 10.000000000000002, "center_x": -2.608695652173913, "center_y": 9.855072463768117, "value_uncond": 0.00022929513091647812}, {"x": -2.4637681159420284, "y": 9.710144927536234, "x2": -2.1739130434782608, "y2": 10.000000000000002, "center_x": -2.3188405797101446, "center_y": 9.855072463768117, "value_uncond": 0.0002836810077581909}, {"x": -2.1739130434782608, "y": 9.710144927536234, "x2": -1.8840579710144931, "y2": 10.000000000000002, "center_x": -2.028985507246377, "center_y": 9.855072463768117, "value_uncond": 0.00034770545491085266}, {"x": -1.8840579710144922, "y": 9.710144927536234, "x2": -1.5942028985507246, "y2": 10.000000000000002, "center_x": -1.7391304347826084, "center_y": 9.855072463768117, "value_uncond": 0.00042221976689926533}, {"x": -1.5942028985507246, "y": 9.710144927536234, "x2": -1.304347826086957, "y2": 10.000000000000002, "center_x": -1.4492753623188408, "center_y": 9.855072463768117, "value_uncond": 0.0005079388527825467}, {"x": -1.304347826086957, "y": 9.710144927536234, "x2": -1.0144927536231894, "y2": 10.000000000000002, "center_x": -1.1594202898550732, "center_y": 9.855072463768117, "value_uncond": 0.000605382859477733}, {"x": -1.0144927536231876, "y": 9.710144927536234, "x2": -0.72463768115942, "y2": 10.000000000000002, "center_x": -0.8695652173913038, "center_y": 9.855072463768117, "value_uncond": 0.0007148165870150437}, {"x": -0.72463768115942, "y": 9.710144927536234, "x2": -0.43478260869565233, "y2": 10.000000000000002, "center_x": -0.5797101449275361, "center_y": 9.855072463768117, "value_uncond": 0.0008361899379559863}, {"x": -0.43478260869565233, "y": 9.710144927536234, "x2": -0.1449275362318847, "y2": 10.000000000000002, "center_x": -0.2898550724637685, "center_y": 9.855072463768117, "value_uncond": 0.0009690832063289839}, {"x": -0.14492753623188293, "y": 9.710144927536234, "x2": 0.1449275362318847, "y2": 10.000000000000002, "center_x": 8.881784197001252e-16, "center_y": 9.855072463768117, "value_uncond": 0.001112661375447905}, {"x": 0.1449275362318847, "y": 9.710144927536234, "x2": 0.43478260869565233, "y2": 10.000000000000002, "center_x": 0.2898550724637685, "center_y": 9.855072463768117, "value_uncond": 0.001265641689221894}, {"x": 0.43478260869565233, "y": 9.710144927536234, "x2": 0.72463768115942, "y2": 10.000000000000002, "center_x": 0.5797101449275361, "center_y": 9.855072463768117, "value_uncond": 0.0014262785327365166}, {"x": 0.72463768115942, "y": 9.710144927536234, "x2": 1.0144927536231876, "y2": 10.000000000000002, "center_x": 0.8695652173913038, "center_y": 9.855072463768117, "value_uncond": 0.0015923690725763713}, {"x": 1.0144927536231894, "y": 9.710144927536234, "x2": 1.304347826086957, "y2": 10.000000000000002, "center_x": 1.1594202898550732, "center_y": 9.855072463768117, "value_uncond": 0.0017612821633085447}, {"x": 1.304347826086957, "y": 9.710144927536234, "x2": 1.5942028985507246, "y2": 10.000000000000002, "center_x": 1.4492753623188408, "center_y": 9.855072463768117, "value_uncond": 0.0019300117564770617}, {"x": 1.5942028985507246, "y": 9.710144927536234, "x2": 1.8840579710144922, "y2": 10.000000000000002, "center_x": 1.7391304347826084, "center_y": 9.855072463768117, "value_uncond": 0.002095254521496756}, {"x": 1.884057971014494, "y": 9.710144927536234, "x2": 2.1739130434782616, "y2": 10.000000000000002, "center_x": 2.028985507246378, "center_y": 9.855072463768117, "value_uncond": 0.0022535097068581075}, {"x": 2.1739130434782616, "y": 9.710144927536234, "x2": 2.4637681159420293, "y2": 10.000000000000002, "center_x": 2.3188405797101455, "center_y": 9.855072463768117, "value_uncond": 0.0024011975647697976}, {"x": 2.4637681159420293, "y": 9.710144927536234, "x2": 2.753623188405797, "y2": 10.000000000000002, "center_x": 2.608695652173913, "center_y": 9.855072463768117, "value_uncond": 0.0025347910784750617}, {"x": 2.753623188405797, "y": 9.710144927536234, "x2": 3.0434782608695645, "y2": 10.000000000000002, "center_x": 2.8985507246376807, "center_y": 9.855072463768117, "value_uncond": 0.002650954416857331}, {"x": 3.0434782608695663, "y": 9.710144927536234, "x2": 3.333333333333334, "y2": 10.000000000000002, "center_x": 3.18840579710145, "center_y": 9.855072463768117, "value_uncond": 0.0027466806302675847}, {"x": 3.333333333333334, "y": 9.710144927536234, "x2": 3.6231884057971016, "y2": 10.000000000000002, "center_x": 3.4782608695652177, "center_y": 9.855072463768117, "value_uncond": 0.002819420701044596}, {"x": 3.6231884057971016, "y": 9.710144927536234, "x2": 3.913043478260869, "y2": 10.000000000000002, "center_x": 3.7681159420289854, "center_y": 9.855072463768117, "value_uncond": 0.0028671962367853064}, {"x": 3.913043478260871, "y": 9.710144927536234, "x2": 4.202898550724639, "y2": 10.000000000000002, "center_x": 4.057971014492755, "center_y": 9.855072463768117, "value_uncond": 0.0028886888581993076}, {"x": 4.202898550724639, "y": 9.710144927536234, "x2": 4.492753623188406, "y2": 10.000000000000002, "center_x": 4.347826086956522, "center_y": 9.855072463768117, "value_uncond": 0.0028833006458000928}, {"x": 4.492753623188406, "y": 9.710144927536234, "x2": 4.782608695652174, "y2": 10.000000000000002, "center_x": 4.63768115942029, "center_y": 9.855072463768117, "value_uncond": 0.002851181777457206}, {"x": 4.782608695652174, "y": 9.710144927536234, "x2": 5.0724637681159415, "y2": 10.000000000000002, "center_x": 4.927536231884058, "center_y": 9.855072463768117, "value_uncond": 0.0027932235738485287}, {"x": 5.072463768115943, "y": 9.710144927536234, "x2": 5.362318840579711, "y2": 10.000000000000002, "center_x": 5.217391304347827, "center_y": 9.855072463768117, "value_uncond": 0.0027110174012978747}, {"x": 5.362318840579711, "y": 9.710144927536234, "x2": 5.6521739130434785, "y2": 10.000000000000002, "center_x": 5.507246376811595, "center_y": 9.855072463768117, "value_uncond": 0.002606782076692864}, {"x": 5.6521739130434785, "y": 9.710144927536234, "x2": 5.942028985507246, "y2": 10.000000000000002, "center_x": 5.797101449275362, "center_y": 9.855072463768117, "value_uncond": 0.0024832643962434085}, {"x": 5.942028985507246, "y": 9.710144927536234, "x2": 6.231884057971014, "y2": 10.000000000000002, "center_x": 6.08695652173913, "center_y": 9.855072463768117, "value_uncond": 0.002343619009778012}, {"x": 6.2318840579710155, "y": 9.710144927536234, "x2": 6.521739130434783, "y2": 10.000000000000002, "center_x": 6.376811594202899, "center_y": 9.855072463768117, "value_uncond": 0.0021912749635933215}, {"x": 6.521739130434785, "y": 9.710144927536234, "x2": 6.8115942028985526, "y2": 10.000000000000002, "center_x": 6.666666666666669, "center_y": 9.855072463768117, "value_uncond": 0.002029796764753759}, {"x": 6.811594202898551, "y": 9.710144927536234, "x2": 7.101449275362318, "y2": 10.000000000000002, "center_x": 6.956521739130435, "center_y": 9.855072463768117, "value_uncond": 0.0018627477596188527}, {"x": 7.10144927536232, "y": 9.710144927536234, "x2": 7.391304347826088, "y2": 10.000000000000002, "center_x": 7.246376811594204, "center_y": 9.855072463768117, "value_uncond": 0.0016935630044696544}, {"x": 7.391304347826086, "y": 9.710144927536234, "x2": 7.681159420289854, "y2": 10.000000000000002, "center_x": 7.53623188405797, "center_y": 9.855072463768117, "value_uncond": 0.001525437719179798}, {"x": 7.681159420289855, "y": 9.710144927536234, "x2": 7.971014492753623, "y2": 10.000000000000002, "center_x": 7.826086956521739, "center_y": 9.855072463768117, "value_uncond": 0.001361235975297355}, {"x": 7.971014492753625, "y": 9.710144927536234, "x2": 8.260869565217392, "y2": 10.000000000000002, "center_x": 8.115942028985508, "center_y": 9.855072463768117, "value_uncond": 0.0012034226194966226}, {"x": 8.26086956521739, "y": 9.710144927536234, "x2": 8.550724637681158, "y2": 10.000000000000002, "center_x": 8.405797101449274, "center_y": 9.855072463768117, "value_uncond": 0.0010540197209255755}, {"x": 8.55072463768116, "y": 9.710144927536234, "x2": 8.840579710144928, "y2": 10.000000000000002, "center_x": 8.695652173913043, "center_y": 9.855072463768117, "value_uncond": 0.000914587197337893}, {"x": 8.84057971014493, "y": 9.710144927536234, "x2": 9.130434782608697, "y2": 10.000000000000002, "center_x": 8.985507246376812, "center_y": 9.855072463768117, "value_uncond": 0.0007862258401290695}, {"x": 9.130434782608695, "y": 9.710144927536234, "x2": 9.420289855072463, "y2": 10.000000000000002, "center_x": 9.275362318840578, "center_y": 9.855072463768117, "value_uncond": 0.0006695998124641526}, {"x": 9.420289855072465, "y": 9.710144927536234, "x2": 9.710144927536232, "y2": 10.000000000000002, "center_x": 9.565217391304348, "center_y": 9.855072463768117, "value_uncond": 0.0005649748922351057}, {"x": 9.710144927536234, "y": 9.710144927536234, "x2": 10.000000000000002, "y2": 10.000000000000002, "center_x": 9.855072463768117, "center_y": 9.855072463768117, "value_uncond": 0.0004722682909674797}, {"x": 10.0, "y": 9.710144927536234, "x2": 10.289855072463768, "y2": 10.000000000000002, "center_x": 10.144927536231883, "center_y": 9.855072463768117, "value_uncond": 0.00039110578594931143}, {"x": -10.0, "y": 10.0, "x2": -9.710144927536232, "y2": 10.289855072463768, "center_x": -9.855072463768117, "center_y": 10.144927536231883, "value_uncond": 4.466880147298297e-08}, {"x": -9.710144927536232, "y": 10.0, "x2": -9.420289855072465, "y2": 10.289855072463768, "center_x": -9.565217391304348, "center_y": 10.144927536231883, "value_uncond": 6.979018746024219e-08}, {"x": -9.420289855072463, "y": 10.0, "x2": -9.130434782608695, "y2": 10.289855072463768, "center_x": -9.275362318840578, "center_y": 10.144927536231883, "value_uncond": 1.080264848182129e-07}, {"x": -9.130434782608695, "y": 10.0, "x2": -8.840579710144928, "y2": 10.289855072463768, "center_x": -8.985507246376812, "center_y": 10.144927536231883, "value_uncond": 1.6565781867906704e-07}, {"x": -8.840579710144928, "y": 10.0, "x2": -8.55072463768116, "y2": 10.289855072463768, "center_x": -8.695652173913043, "center_y": 10.144927536231883, "value_uncond": 2.5167463476322513e-07}, {"x": -8.55072463768116, "y": 10.0, "x2": -8.260869565217392, "y2": 10.289855072463768, "center_x": -8.405797101449277, "center_y": 10.144927536231883, "value_uncond": 3.7880244207052163e-07}, {"x": -8.26086956521739, "y": 10.0, "x2": -7.971014492753623, "y2": 10.289855072463768, "center_x": -8.115942028985508, "center_y": 10.144927536231883, "value_uncond": 5.648484064106578e-07}, {"x": -7.971014492753623, "y": 10.0, "x2": -7.681159420289855, "y2": 10.289855072463768, "center_x": -7.826086956521739, "center_y": 10.144927536231883, "value_uncond": 8.344433540257313e-07}, {"x": -7.681159420289855, "y": 10.0, "x2": -7.391304347826088, "y2": 10.289855072463768, "center_x": -7.536231884057972, "center_y": 10.144927536231883, "value_uncond": 1.221258576934201e-06}, {"x": -7.391304347826087, "y": 10.0, "x2": -7.101449275362319, "y2": 10.289855072463768, "center_x": -7.246376811594203, "center_y": 10.144927536231883, "value_uncond": 1.770778368567611e-06}, {"x": -7.101449275362318, "y": 10.0, "x2": -6.811594202898551, "y2": 10.289855072463768, "center_x": -6.956521739130435, "center_y": 10.144927536231883, "value_uncond": 2.5437041816438e-06}, {"x": -6.811594202898551, "y": 10.0, "x2": -6.521739130434783, "y2": 10.289855072463768, "center_x": -6.666666666666667, "center_y": 10.144927536231883, "value_uncond": 3.6200520444522546e-06}, {"x": -6.521739130434782, "y": 10.0, "x2": -6.231884057971015, "y2": 10.289855072463768, "center_x": -6.3768115942028984, "center_y": 10.144927536231883, "value_uncond": 5.103978534393217e-06}, {"x": -6.231884057971014, "y": 10.0, "x2": -5.942028985507246, "y2": 10.289855072463768, "center_x": -6.08695652173913, "center_y": 10.144927536231883, "value_uncond": 7.1293293601746525e-06}, {"x": -5.942028985507246, "y": 10.0, "x2": -5.6521739130434785, "y2": 10.289855072463768, "center_x": -5.797101449275362, "center_y": 10.144927536231883, "value_uncond": 9.865846013036942e-06}, {"x": -5.6521739130434785, "y": 10.0, "x2": -5.362318840579711, "y2": 10.289855072463768, "center_x": -5.507246376811595, "center_y": 10.144927536231883, "value_uncond": 1.3525888443685628e-05}, {"x": -5.36231884057971, "y": 10.0, "x2": -5.072463768115942, "y2": 10.289855072463768, "center_x": -5.217391304347826, "center_y": 10.144927536231883, "value_uncond": 1.837143515839854e-05}, {"x": -5.0724637681159415, "y": 10.0, "x2": -4.782608695652174, "y2": 10.289855072463768, "center_x": -4.927536231884058, "center_y": 10.144927536231883, "value_uncond": 2.4721008384454473e-05}, {"x": -4.782608695652174, "y": 10.0, "x2": -4.492753623188406, "y2": 10.289855072463768, "center_x": -4.63768115942029, "center_y": 10.144927536231883, "value_uncond": 3.29560455211132e-05}, {"x": -4.492753623188405, "y": 10.0, "x2": -4.202898550724638, "y2": 10.289855072463768, "center_x": -4.3478260869565215, "center_y": 10.144927536231883, "value_uncond": 4.3526106540421027e-05}, {"x": -4.202898550724638, "y": 10.0, "x2": -3.91304347826087, "y2": 10.289855072463768, "center_x": -4.057971014492754, "center_y": 10.144927536231883, "value_uncond": 5.695218124062533e-05}, {"x": -3.913043478260869, "y": 10.0, "x2": -3.6231884057971016, "y2": 10.289855072463768, "center_x": -3.7681159420289854, "center_y": 10.144927536231883, "value_uncond": 7.382725444382787e-05}, {"x": -3.6231884057971016, "y": 10.0, "x2": -3.333333333333334, "y2": 10.289855072463768, "center_x": -3.4782608695652177, "center_y": 10.144927536231883, "value_uncond": 9.48132182479661e-05}, {"x": -3.333333333333333, "y": 10.0, "x2": -3.0434782608695654, "y2": 10.289855072463768, "center_x": -3.1884057971014492, "center_y": 10.144927536231883, "value_uncond": 0.00012063320682877794}, {"x": -3.0434782608695645, "y": 10.0, "x2": -2.753623188405797, "y2": 10.289855072463768, "center_x": -2.8985507246376807, "center_y": 10.144927536231883, "value_uncond": 0.00015205848961401678}, {"x": -2.753623188405797, "y": 10.0, "x2": -2.4637681159420293, "y2": 10.289855072463768, "center_x": -2.608695652173913, "center_y": 10.144927536231883, "value_uncond": 0.00018988920938927623}, {"x": -2.4637681159420284, "y": 10.0, "x2": -2.1739130434782608, "y2": 10.289855072463768, "center_x": -2.3188405797101446, "center_y": 10.144927536231883, "value_uncond": 0.00023492850487774955}, {"x": -2.1739130434782608, "y": 10.0, "x2": -1.8840579710144931, "y2": 10.289855072463768, "center_x": -2.028985507246377, "center_y": 10.144927536231883, "value_uncond": 0.00028794991707613093}, {"x": -1.8840579710144922, "y": 10.0, "x2": -1.5942028985507246, "y2": 10.289855072463768, "center_x": -1.7391304347826084, "center_y": 10.144927536231883, "value_uncond": 0.00034965843977834024}, {"x": -1.5942028985507246, "y": 10.0, "x2": -1.304347826086957, "y2": 10.289855072463768, "center_x": -1.4492753623188408, "center_y": 10.144927536231883, "value_uncond": 0.00042064612007878583}, {"x": -1.304347826086957, "y": 10.0, "x2": -1.0144927536231894, "y2": 10.289855072463768, "center_x": -1.1594202898550732, "center_y": 10.144927536231883, "value_uncond": 0.0005013437141232592}, {"x": -1.0144927536231876, "y": 10.0, "x2": -0.72463768115942, "y2": 10.289855072463768, "center_x": -0.8695652173913038, "center_y": 10.144927536231883, "value_uncond": 0.0005919705142629914}, {"x": -0.72463768115942, "y": 10.0, "x2": -0.43478260869565233, "y2": 10.289855072463768, "center_x": -0.5797101449275361, "center_y": 10.144927536231883, "value_uncond": 0.0006924850326436628}, {"x": -0.43478260869565233, "y": 10.0, "x2": -0.1449275362318847, "y2": 10.289855072463768, "center_x": -0.2898550724637685, "center_y": 10.144927536231883, "value_uncond": 0.0008025396926080617}, {"x": -0.14492753623188293, "y": 10.0, "x2": 0.1449275362318847, "y2": 10.289855072463768, "center_x": 8.881784197001252e-16, "center_y": 10.144927536231883, "value_uncond": 0.0009214429807440965}, {"x": 0.1449275362318847, "y": 10.0, "x2": 0.43478260869565233, "y2": 10.289855072463768, "center_x": 0.2898550724637685, "center_y": 10.144927536231883, "value_uncond": 0.001048132591284704}, {"x": 0.43478260869565233, "y": 10.0, "x2": 0.72463768115942, "y2": 10.289855072463768, "center_x": 0.5797101449275361, "center_y": 10.144927536231883, "value_uncond": 0.0011811629050635496}, {"x": 0.72463768115942, "y": 10.0, "x2": 1.0144927536231876, "y2": 10.289855072463768, "center_x": 0.8695652173913038, "center_y": 10.144927536231883, "value_uncond": 0.0013187096605099884}, {"x": 1.0144927536231894, "y": 10.0, "x2": 1.304347826086957, "y2": 10.289855072463768, "center_x": 1.1594202898550732, "center_y": 10.144927536231883, "value_uncond": 0.0014585938923575234}, {"x": 1.304347826086957, "y": 10.0, "x2": 1.5942028985507246, "y2": 10.289855072463768, "center_x": 1.4492753623188408, "center_y": 10.144927536231883, "value_uncond": 0.001598326161940756}, {"x": 1.5942028985507246, "y": 10.0, "x2": 1.8840579710144922, "y2": 10.289855072463768, "center_x": 1.7391304347826084, "center_y": 10.144927536231883, "value_uncond": 0.0017351708384128314}, {"x": 1.884057971014494, "y": 10.0, "x2": 2.1739130434782616, "y2": 10.289855072463768, "center_x": 2.028985507246378, "center_y": 10.144927536231883, "value_uncond": 0.001866228798125752}, {"x": 2.1739130434782616, "y": 10.0, "x2": 2.4637681159420293, "y2": 10.289855072463768, "center_x": 2.3188405797101455, "center_y": 10.144927536231883, "value_uncond": 0.001988535497195876}, {"x": 2.4637681159420293, "y": 10.0, "x2": 2.753623188405797, "y2": 10.289855072463768, "center_x": 2.608695652173913, "center_y": 10.144927536231883, "value_uncond": 0.002099170060588627}, {"x": 2.753623188405797, "y": 10.0, "x2": 3.0434782608695645, "y2": 10.289855072463768, "center_x": 2.8985507246376807, "center_y": 10.144927536231883, "value_uncond": 0.0021953699423622308}, {"x": 3.0434782608695663, "y": 10.0, "x2": 3.333333333333334, "y2": 10.289855072463768, "center_x": 3.18840579710145, "center_y": 10.144927536231883, "value_uncond": 0.0022746449575343722}, {"x": 3.333333333333334, "y": 10.0, "x2": 3.6231884057971016, "y2": 10.289855072463768, "center_x": 3.4782608695652177, "center_y": 10.144927536231883, "value_uncond": 0.0023348841543963327}, {"x": 3.6231884057971016, "y": 10.0, "x2": 3.913043478260869, "y2": 10.289855072463768, "center_x": 3.7681159420289854, "center_y": 10.144927536231883, "value_uncond": 0.002374449140681441}, {"x": 3.913043478260871, "y": 10.0, "x2": 4.202898550724639, "y2": 10.289855072463768, "center_x": 4.057971014492755, "center_y": 10.144927536231883, "value_uncond": 0.002392248109511243}, {"x": 4.202898550724639, "y": 10.0, "x2": 4.492753623188406, "y2": 10.289855072463768, "center_x": 4.347826086956522, "center_y": 10.144927536231883, "value_uncond": 0.002387785897913383}, {"x": 4.492753623188406, "y": 10.0, "x2": 4.782608695652174, "y2": 10.289855072463768, "center_x": 4.63768115942029, "center_y": 10.144927536231883, "value_uncond": 0.0023611868746731966}, {"x": 4.782608695652174, "y": 10.0, "x2": 5.0724637681159415, "y2": 10.289855072463768, "center_x": 4.927536231884058, "center_y": 10.144927536231883, "value_uncond": 0.002313189180972133}, {"x": 5.072463768115943, "y": 10.0, "x2": 5.362318840579711, "y2": 10.289855072463768, "center_x": 5.217391304347827, "center_y": 10.144927536231883, "value_uncond": 0.002245110696051106}, {"x": 5.362318840579711, "y": 10.0, "x2": 5.6521739130434785, "y2": 10.289855072463768, "center_x": 5.507246376811595, "center_y": 10.144927536231883, "value_uncond": 0.0021587889180850065}, {"x": 5.6521739130434785, "y": 10.0, "x2": 5.942028985507246, "y2": 10.289855072463768, "center_x": 5.797101449275362, "center_y": 10.144927536231883, "value_uncond": 0.0020564985877478664}, {"x": 5.942028985507246, "y": 10.0, "x2": 6.231884057971014, "y2": 10.289855072463768, "center_x": 6.08695652173913, "center_y": 10.144927536231883, "value_uncond": 0.0019408522069250963}, {"x": 6.2318840579710155, "y": 10.0, "x2": 6.521739130434783, "y2": 10.289855072463768, "center_x": 6.376811594202899, "center_y": 10.144927536231883, "value_uncond": 0.0018146895170783953}, {"x": 6.521739130434785, "y": 10.0, "x2": 6.8115942028985526, "y2": 10.289855072463768, "center_x": 6.666666666666669, "center_y": 10.144927536231883, "value_uncond": 0.0016809624405866655}, {"x": 6.811594202898551, "y": 10.0, "x2": 7.101449275362318, "y2": 10.289855072463768, "center_x": 6.956521739130435, "center_y": 10.144927536231883, "value_uncond": 0.0015426219385989153}, {"x": 7.10144927536232, "y": 10.0, "x2": 7.391304347826088, "y2": 10.289855072463768, "center_x": 7.246376811594204, "center_y": 10.144927536231883, "value_uncond": 0.0014025127297047169}, {"x": 7.391304347826086, "y": 10.0, "x2": 7.681159420289854, "y2": 10.289855072463768, "center_x": 7.53623188405797, "center_y": 10.144927536231883, "value_uncond": 0.001263280913597526}, {"x": 7.681159420289855, "y": 10.0, "x2": 7.971014492753623, "y2": 10.289855072463768, "center_x": 7.826086956521739, "center_y": 10.144927536231883, "value_uncond": 0.001127298351728233}, {"x": 7.971014492753625, "y": 10.0, "x2": 8.260869565217392, "y2": 10.289855072463768, "center_x": 8.115942028985508, "center_y": 10.144927536231883, "value_uncond": 0.0009966062901729214}, {"x": 8.26086956521739, "y": 10.0, "x2": 8.550724637681158, "y2": 10.289855072463768, "center_x": 8.405797101449274, "center_y": 10.144927536231883, "value_uncond": 0.0008728792917986891}, {"x": 8.55072463768116, "y": 10.0, "x2": 8.840579710144928, "y2": 10.289855072463768, "center_x": 8.695652173913043, "center_y": 10.144927536231883, "value_uncond": 0.0007574091919261327}, {"x": 8.84057971014493, "y": 10.0, "x2": 9.130434782608697, "y2": 10.289855072463768, "center_x": 8.985507246376812, "center_y": 10.144927536231883, "value_uncond": 0.000651107603492506}, {"x": 9.130434782608695, "y": 10.0, "x2": 9.420289855072463, "y2": 10.289855072463768, "center_x": 9.275362318840578, "center_y": 10.144927536231883, "value_uncond": 0.0005545245487238043}, {"x": 9.420289855072465, "y": 10.0, "x2": 9.710144927536232, "y2": 10.289855072463768, "center_x": 9.565217391304348, "center_y": 10.144927536231883, "value_uncond": 0.0004678801297808369}, {"x": 9.710144927536234, "y": 10.0, "x2": 10.000000000000002, "y2": 10.289855072463768, "center_x": 9.855072463768117, "center_y": 10.144927536231883, "value_uncond": 0.00039110578594931143}, {"x": 10.0, "y": 10.0, "x2": 10.289855072463768, "y2": 10.289855072463768, "center_x": 10.144927536231883, "center_y": 10.144927536231883, "value_uncond": 0.00032389160722535483}]}}, {"mode": "vega-lite"});
</script>
</div>
</div>
<a class="quarto-notebook-link" id="nblink-1" href="satellite-preview.html#cell-plot1">Source: satellite.ipynb</a></div>
<p><em>A posteriori</em> distribution:</p>
<div class="quarto-embed-nb-cell">
<div id="cell-plot2" class="cell" data-execution_count="12">
<div id="plot2" class="cell-output cell-output-display" data-execution_count="12">

<style>
  #altair-viz-b77b89d535254052bd1f9f32b9ea11bb.vega-embed {
    width: 100%;
    display: flex;
  }

  #altair-viz-b77b89d535254052bd1f9f32b9ea11bb.vega-embed details,
  #altair-viz-b77b89d535254052bd1f9f32b9ea11bb.vega-embed details summary {
    position: relative;
  }
</style>
<div id="altair-viz-b77b89d535254052bd1f9f32b9ea11bb"></div>
<script type="text/javascript">
  var VEGA_DEBUG = (typeof VEGA_DEBUG == "undefined") ? {} : VEGA_DEBUG;
  (function(spec, embedOpt){
    let outputDiv = document.currentScript.previousElementSibling;
    if (outputDiv.id !== "altair-viz-b77b89d535254052bd1f9f32b9ea11bb") {
      outputDiv = document.getElementById("altair-viz-b77b89d535254052bd1f9f32b9ea11bb");
    }

    const paths = {
      "vega": "https://cdn.jsdelivr.net/npm/vega@5?noext",
      "vega-lib": "https://cdn.jsdelivr.net/npm/vega-lib?noext",
      "vega-lite": "https://cdn.jsdelivr.net/npm/vega-lite@5.20.1?noext",
      "vega-embed": "https://cdn.jsdelivr.net/npm/vega-embed@6?noext",
    };

    function maybeLoadScript(lib, version) {
      var key = `${lib.replace("-", "")}_version`;
      return (VEGA_DEBUG[key] == version) ?
        Promise.resolve(paths[lib]) :
        new Promise(function(resolve, reject) {
          var s = document.createElement('script');
          document.getElementsByTagName("head")[0].appendChild(s);
          s.async = true;
          s.onload = () => {
            VEGA_DEBUG[key] = version;
            return resolve(paths[lib]);
          };
          s.onerror = () => reject(`Error loading script: ${paths[lib]}`);
          s.src = paths[lib];
        });
    }

    function showError(err) {
      outputDiv.innerHTML = `<div class="error" style="color:red;">${err}</div>`;
      throw err;
    }

    function displayChart(vegaEmbed) {
      vegaEmbed(outputDiv, spec, embedOpt)
        .catch(err => showError(`Javascript Error: ${err.message}<br>This usually means there's a typo in your chart specification. See the javascript console for the full traceback.`));
    }

    if(typeof define === "function" && define.amd) {
      requirejs.config({paths});
      let deps = ["vega-embed"];
      require(deps, displayChart, err => showError(`Error loading script: ${err.message}`));
    } else {
      maybeLoadScript("vega", "5")
        .then(() => maybeLoadScript("vega-lite", "5.20.1"))
        .then(() => maybeLoadScript("vega-embed", "6"))
        .catch(showError)
        .then(() => displayChart(vegaEmbed));
    }
  })({"config": {"view": {"continuousWidth": 300, "continuousHeight": 300}}, "layer": [{"data": {"name": "data-14fe821a8b2c524d22cd359632b5b9ec"}, "mark": {"type": "rect"}, "encoding": {"color": {"field": "value_cond", "legend": null, "type": "quantitative"}, "x": {"axis": {"grid": false, "labelFont": "Times", "labelFontSize": 12, "labelFontStyle": "normal", "titleFont": "Times", "titleFontSize": 12, "titleFontStyle": "italic"}, "field": "x", "scale": {"domain": [-10, 10]}, "title": "x", "type": "quantitative"}, "x2": {"field": "x2"}, "y": {"axis": {"grid": false, "labelFont": "Times", "labelFontSize": 12, "labelFontStyle": "normal", "titleFont": "Times", "titleFontSize": 12, "titleFontStyle": "italic"}, "field": "y", "scale": {"domain": [-10, 10]}, "title": "y", "type": "quantitative"}, "y2": {"field": "y2"}}, "transform": [{"calculate": "datum.value_uncond / (sqrt(2 * PI) * 0.5) * exp(- (pow(d - sqrt(pow(datum.center_x, 2) + pow(datum.center_y, 2)), 2)) / (2 * 0.5 * 0.5))", "as": "value_cond"}]}, {"data": {"name": "data-8c80cb8577b8cc407d46734c5f0d66d3"}, "mark": {"type": "line", "color": "gray", "strokeWidth": 1}, "encoding": {"order": {"field": "theta", "type": "quantitative"}, "x": {"axis": {"grid": false, "labelFont": "Times", "labelFontSize": 12, "labelFontStyle": "normal", "titleFont": "Times", "titleFontSize": 12, "titleFontStyle": "italic"}, "field": "x_scaled", "scale": {"domain": [-10, 10]}, "type": "quantitative"}, "y": {"axis": {"grid": false, "labelFont": "Times", "labelFontSize": 12, "labelFontStyle": "normal", "titleFont": "Times", "titleFontSize": 12, "titleFontStyle": "italic"}, "field": "y_scaled", "scale": {"domain": [-10, 10]}, "type": "quantitative"}}, "transform": [{"calculate": "datum.x * d", "as": "x_scaled"}, {"calculate": "datum.y * d", "as": "y_scaled"}]}], "height": 300, "params": [{"name": "d", "bind": {"input": "range", "max": 7.656854249492381, "min": 3.6568542494923806, "name": "\ud835\udc51", "step": 0.1}, "value": 5.656854249492381}], "width": 300, "$schema": "https://vega.github.io/schema/vega-lite/v5.20.1.json", "datasets": {"data-14fe821a8b2c524d22cd359632b5b9ec": [{"x": -10.0, "y": -10.0, "x2": -9.710144927536232, "y2": -9.710144927536232, "center_x": -9.855072463768117, "center_y": -9.855072463768117, "value_uncond": 6.160399900836236e-12}, {"x": -9.710144927536232, "y": -10.0, "x2": -9.420289855072465, "y2": -9.710144927536232, "center_x": -9.565217391304348, "center_y": -9.855072463768117, "value_uncond": 9.624960816767312e-12}, {"x": -9.420289855072463, "y": -10.0, "x2": -9.130434782608695, "y2": -9.710144927536232, "center_x": -9.275362318840578, "center_y": -9.855072463768117, "value_uncond": 1.4898236004033224e-11}, {"x": -9.130434782608695, "y": -10.0, "x2": -8.840579710144928, "y2": -9.710144927536232, "center_x": -8.985507246376812, "center_y": -9.855072463768117, "value_uncond": 2.284633516259696e-11}, {"x": -8.840579710144928, "y": -10.0, "x2": -8.55072463768116, "y2": -9.710144927536232, "center_x": -8.695652173913043, "center_y": -9.855072463768117, "value_uncond": 3.470915591894953e-11}, {"x": -8.55072463768116, "y": -10.0, "x2": -8.260869565217392, "y2": -9.710144927536232, "center_x": -8.405797101449277, "center_y": -9.855072463768117, "value_uncond": 5.2241708969495986e-11}, {"x": -8.26086956521739, "y": -10.0, "x2": -7.971014492753623, "y2": -9.710144927536232, "center_x": -8.115942028985508, "center_y": -9.855072463768117, "value_uncond": 7.789983057737388e-11}, {"x": -7.971014492753623, "y": -10.0, "x2": -7.681159420289855, "y2": -9.710144927536232, "center_x": -7.826086956521739, "center_y": -9.855072463768117, "value_uncond": 1.150804271859119e-10}, {"x": -7.681159420289855, "y": -10.0, "x2": -7.391304347826088, "y2": -9.710144927536232, "center_x": -7.536231884057972, "center_y": -9.855072463768117, "value_uncond": 1.6842720127136773e-10}, {"x": -7.391304347826087, "y": -10.0, "x2": -7.101449275362319, "y2": -9.710144927536232, "center_x": -7.246376811594203, "center_y": -9.855072463768117, "value_uncond": 2.442130195215731e-10}, {"x": -7.101449275362318, "y": -10.0, "x2": -6.811594202898551, "y2": -9.710144927536232, "center_x": -6.956521739130435, "center_y": -9.855072463768117, "value_uncond": 3.508093898116566e-10}, {"x": -6.811594202898551, "y": -10.0, "x2": -6.521739130434783, "y2": -9.710144927536232, "center_x": -6.666666666666667, "center_y": -9.855072463768117, "value_uncond": 4.99251547394975e-10}, {"x": -6.521739130434782, "y": -10.0, "x2": -6.231884057971015, "y2": -9.710144927536232, "center_x": -6.3768115942028984, "center_y": -9.855072463768117, "value_uncond": 7.039040184716764e-10}, {"x": -6.231884057971014, "y": -10.0, "x2": -5.942028985507246, "y2": -9.710144927536232, "center_x": -6.08695652173913, "center_y": -9.855072463768117, "value_uncond": 9.832258407473207e-10}, {"x": -5.942028985507246, "y": -10.0, "x2": -5.6521739130434785, "y2": -9.710144927536232, "center_x": -5.797101449275362, "center_y": -9.855072463768117, "value_uncond": 1.360626540139841e-09}, {"x": -5.6521739130434785, "y": -10.0, "x2": -5.362318840579711, "y2": -9.710144927536232, "center_x": -5.507246376811595, "center_y": -9.855072463768117, "value_uncond": 1.8653932740416187e-09}, {"x": -5.36231884057971, "y": -10.0, "x2": -5.072463768115942, "y2": -9.710144927536232, "center_x": -5.217391304347826, "center_y": -9.855072463768117, "value_uncond": 2.5336562342392283e-09}, {"x": -5.0724637681159415, "y": -10.0, "x2": -4.782608695652174, "y2": -9.710144927536232, "center_x": -4.927536231884058, "center_y": -9.855072463768117, "value_uncond": 3.4093437159328184e-09}, {"x": -4.782608695652174, "y": -10.0, "x2": -4.492753623188406, "y2": -9.710144927536232, "center_x": -4.63768115942029, "center_y": -9.855072463768117, "value_uncond": 4.5450608224403395e-09}, {"x": -4.492753623188405, "y": -10.0, "x2": -4.202898550724638, "y2": -9.710144927536232, "center_x": -4.3478260869565215, "center_y": -9.855072463768117, "value_uncond": 6.002807632471971e-09}, {"x": -4.202898550724638, "y": -10.0, "x2": -3.91304347826087, "y2": -9.710144927536232, "center_x": -4.057971014492754, "center_y": -9.855072463768117, "value_uncond": 7.85443531273968e-09}, {"x": -3.913043478260869, "y": -10.0, "x2": -3.6231884057971016, "y2": -9.710144927536232, "center_x": -3.7681159420289854, "center_y": -9.855072463768117, "value_uncond": 1.0181724065953475e-08}, {"x": -3.6231884057971016, "y": -10.0, "x2": -3.333333333333334, "y2": -9.710144927536232, "center_x": -3.4782608695652177, "center_y": -9.855072463768117, "value_uncond": 1.3075957290817584e-08}, {"x": -3.333333333333333, "y": -10.0, "x2": -3.0434782608695654, "y2": -9.710144927536232, "center_x": -3.1884057971014492, "center_y": -9.855072463768117, "value_uncond": 1.663686445303529e-08}, {"x": -3.0434782608695645, "y": -10.0, "x2": -2.753623188405797, "y2": -9.710144927536232, "center_x": -2.8985507246376807, "center_y": -9.855072463768117, "value_uncond": 2.097081348614346e-08}, {"x": -2.753623188405797, "y": -10.0, "x2": -2.4637681159420293, "y2": -9.710144927536232, "center_x": -2.608695652173913, "center_y": -9.855072463768117, "value_uncond": 2.6188154329573736e-08}, {"x": -2.4637681159420284, "y": -10.0, "x2": -2.1739130434782608, "y2": -9.710144927536232, "center_x": -2.3188405797101446, "center_y": -9.855072463768117, "value_uncond": 3.239965010092863e-08}, {"x": -2.1739130434782608, "y": -10.0, "x2": -1.8840579710144931, "y2": -9.710144927536232, "center_x": -2.028985507246377, "center_y": -9.855072463768117, "value_uncond": 3.9711982012199266e-08}, {"x": -1.8840579710144922, "y": -10.0, "x2": -1.5942028985507246, "y2": -9.710144927536232, "center_x": -1.7391304347826084, "center_y": -9.855072463768117, "value_uncond": 4.822237773806992e-08}, {"x": -1.5942028985507246, "y": -10.0, "x2": -1.304347826086957, "y2": -9.710144927536232, "center_x": -1.4492753623188408, "center_y": -9.855072463768117, "value_uncond": 5.801248815659017e-08}, {"x": -1.304347826086957, "y": -10.0, "x2": -1.0144927536231894, "y2": -9.710144927536232, "center_x": -1.1594202898550732, "center_y": -9.855072463768117, "value_uncond": 6.914172005796482e-08}, {"x": -1.0144927536231876, "y": -10.0, "x2": -0.72463768115942, "y2": -9.710144927536232, "center_x": -0.8695652173913038, "center_y": -9.855072463768117, "value_uncond": 8.164031666641845e-08}, {"x": -0.72463768115942, "y": -10.0, "x2": -0.43478260869565233, "y2": -9.710144927536232, "center_x": -0.5797101449275361, "center_y": -9.855072463768117, "value_uncond": 9.550255627540823e-08}, {"x": -0.43478260869565233, "y": -10.0, "x2": -0.1449275362318847, "y2": -9.710144927536232, "center_x": -0.2898550724637685, "center_y": -9.855072463768117, "value_uncond": 1.1068050361167863e-07}, {"x": -0.14492753623188293, "y": -10.0, "x2": 0.1449275362318847, "y2": -9.710144927536232, "center_x": 8.881784197001252e-16, "center_y": -9.855072463768117, "value_uncond": 1.2707879011787393e-07}, {"x": 0.1449275362318847, "y": -10.0, "x2": 0.43478260869565233, "y2": -9.710144927536232, "center_x": 0.2898550724637685, "center_y": -9.855072463768117, "value_uncond": 1.445509102212839e-07}, {"x": 0.43478260869565233, "y": -10.0, "x2": 0.72463768115942, "y2": -9.710144927536232, "center_x": 0.5797101449275361, "center_y": -9.855072463768117, "value_uncond": 1.628974945214488e-07}, {"x": 0.72463768115942, "y": -10.0, "x2": 1.0144927536231876, "y2": -9.710144927536232, "center_x": 0.8695652173913038, "center_y": -9.855072463768117, "value_uncond": 1.8186695398019615e-07}, {"x": 1.0144927536231894, "y": -10.0, "x2": 1.304347826086957, "y2": -9.710144927536232, "center_x": 1.1594202898550732, "center_y": -9.855072463768117, "value_uncond": 2.0115878137617703e-07}, {"x": 1.304347826086957, "y": -10.0, "x2": 1.5942028985507246, "y2": -9.710144927536232, "center_x": 1.4492753623188408, "center_y": -9.855072463768117, "value_uncond": 2.2042965122937443e-07}, {"x": 1.5942028985507246, "y": -10.0, "x2": 1.8840579710144922, "y2": -9.710144927536232, "center_x": 1.7391304347826084, "center_y": -9.855072463768117, "value_uncond": 2.3930228500439113e-07}, {"x": 1.884057971014494, "y": -10.0, "x2": 2.1739130434782616, "y2": -9.710144927536232, "center_x": 2.028985507246378, "center_y": -9.855072463768117, "value_uncond": 2.573768564143178e-07}, {"x": 2.1739130434782616, "y": -10.0, "x2": 2.4637681159420293, "y2": -9.710144927536232, "center_x": 2.3188405797101455, "center_y": -9.855072463768117, "value_uncond": 2.742445168837601e-07}, {"x": 2.4637681159420293, "y": -10.0, "x2": 2.753623188405797, "y2": -9.710144927536232, "center_x": 2.608695652173913, "center_y": -9.855072463768117, "value_uncond": 2.8950244033097844e-07}, {"x": 2.753623188405797, "y": -10.0, "x2": 3.0434782608695645, "y2": -9.710144927536232, "center_x": 2.8985507246376807, "center_y": -9.855072463768117, "value_uncond": 3.027696362842212e-07}, {"x": 3.0434782608695663, "y": -10.0, "x2": 3.333333333333334, "y2": -9.710144927536232, "center_x": 3.18840579710145, "center_y": -9.855072463768117, "value_uncond": 3.137026763368097e-07}, {"x": 3.333333333333334, "y": -10.0, "x2": 3.6231884057971016, "y2": -9.710144927536232, "center_x": 3.4782608695652177, "center_y": -9.855072463768117, "value_uncond": 3.2201043320822097e-07}, {"x": 3.6231884057971016, "y": -10.0, "x2": 3.913043478260869, "y2": -9.710144927536232, "center_x": 3.7681159420289854, "center_y": -9.855072463768117, "value_uncond": 3.2746695161816275e-07}, {"x": 3.913043478260871, "y": -10.0, "x2": 4.202898550724639, "y2": -9.710144927536232, "center_x": 4.057971014492755, "center_y": -9.855072463768117, "value_uncond": 3.2992165741277494e-07}, {"x": 4.202898550724639, "y": -10.0, "x2": 4.492753623188406, "y2": -9.710144927536232, "center_x": 4.347826086956522, "center_y": -9.855072463768117, "value_uncond": 3.2930626127546e-07}, {"x": 4.492753623188406, "y": -10.0, "x2": 4.782608695652174, "y2": -9.710144927536232, "center_x": 4.63768115942029, "center_y": -9.855072463768117, "value_uncond": 3.256379152547972e-07}, {"x": 4.782608695652174, "y": -10.0, "x2": 5.0724637681159415, "y2": -9.710144927536232, "center_x": 4.927536231884058, "center_y": -9.855072463768117, "value_uncond": 3.1901841847480727e-07}, {"x": 5.072463768115943, "y": -10.0, "x2": 5.362318840579711, "y2": -9.710144927536232, "center_x": 5.217391304347827, "center_y": -9.855072463768117, "value_uncond": 3.096295233639719e-07}, {"x": 5.362318840579711, "y": -10.0, "x2": 5.6521739130434785, "y2": -9.710144927536232, "center_x": 5.507246376811595, "center_y": -9.855072463768117, "value_uncond": 2.977246444577404e-07}, {"x": 5.6521739130434785, "y": -10.0, "x2": 5.942028985507246, "y2": -9.710144927536232, "center_x": 5.797101449275362, "center_y": -9.855072463768117, "value_uncond": 2.8361749763298007e-07}, {"x": 5.942028985507246, "y": -10.0, "x2": 6.231884057971014, "y2": -9.710144927536232, "center_x": 6.08695652173913, "center_y": -9.855072463768117, "value_uncond": 2.6766838036410634e-07}, {"x": 6.2318840579710155, "y": -10.0, "x2": 6.521739130434783, "y2": -9.710144927536232, "center_x": 6.376811594202899, "center_y": -9.855072463768117, "value_uncond": 2.502689293738903e-07}, {"x": 6.521739130434785, "y": -10.0, "x2": 6.8115942028985526, "y2": -9.710144927536232, "center_x": 6.666666666666669, "center_y": -9.855072463768117, "value_uncond": 2.318262525705508e-07}, {"x": 6.811594202898551, "y": -10.0, "x2": 7.101449275362318, "y2": -9.710144927536232, "center_x": 6.956521739130435, "center_y": -9.855072463768117, "value_uncond": 2.1274732529638975e-07}, {"x": 7.10144927536232, "y": -10.0, "x2": 7.391304347826088, "y2": -9.710144927536232, "center_x": 7.246376811594204, "center_y": -9.855072463768117, "value_uncond": 1.9342447068386744e-07}, {"x": 7.391304347826086, "y": -10.0, "x2": 7.681159420289854, "y2": -9.710144927536232, "center_x": 7.53623188405797, "center_y": -9.855072463768117, "value_uncond": 1.7422261977549334e-07}, {"x": 7.681159420289855, "y": -10.0, "x2": 7.971014492753623, "y2": -9.710144927536232, "center_x": 7.826086956521739, "center_y": -9.855072463768117, "value_uncond": 1.5546888264731634e-07}, {"x": 7.971014492753625, "y": -10.0, "x2": 8.260869565217392, "y2": -9.710144927536232, "center_x": 8.115942028985508, "center_y": -9.855072463768117, "value_uncond": 1.3744477328023635e-07}, {"x": 8.26086956521739, "y": -10.0, "x2": 8.550724637681158, "y2": -9.710144927536232, "center_x": 8.405797101449274, "center_y": -9.855072463768117, "value_uncond": 1.203812353436658e-07}, {"x": 8.55072463768116, "y": -10.0, "x2": 8.840579710144928, "y2": -9.710144927536232, "center_x": 8.695652173913043, "center_y": -9.855072463768117, "value_uncond": 1.0445642947586815e-07}, {"x": 8.84057971014493, "y": -10.0, "x2": 9.130434782608697, "y2": -9.710144927536232, "center_x": 8.985507246376812, "center_y": -9.855072463768117, "value_uncond": 8.979607877804766e-08}, {"x": 9.130434782608695, "y": -10.0, "x2": 9.420289855072463, "y2": -9.710144927536232, "center_x": 9.275362318840578, "center_y": -9.855072463768117, "value_uncond": 7.647603836058899e-08}, {"x": 9.420289855072465, "y": -10.0, "x2": 9.710144927536232, "y2": -9.710144927536232, "center_x": 9.565217391304348, "center_y": -9.855072463768117, "value_uncond": 6.452666313083046e-08}, {"x": 9.710144927536234, "y": -10.0, "x2": 10.000000000000002, "y2": -9.710144927536232, "center_x": 9.855072463768117, "center_y": -9.855072463768117, "value_uncond": 5.3938497688053584e-08}, {"x": 10.0, "y": -10.0, "x2": 10.289855072463768, "y2": -9.710144927536232, "center_x": 10.144927536231883, "center_y": -9.855072463768117, "value_uncond": 4.466880147298297e-08}, {"x": -10.0, "y": -9.710144927536232, "x2": -9.710144927536232, "y2": -9.420289855072465, "center_x": -9.855072463768117, "center_y": -9.565217391304348, "value_uncond": 9.624960816767312e-12}, {"x": -9.710144927536232, "y": -9.710144927536232, "x2": -9.420289855072465, "y2": -9.420289855072465, "center_x": -9.565217391304348, "center_y": -9.565217391304348, "value_uncond": 1.503796380357231e-11}, {"x": -9.420289855072463, "y": -9.710144927536232, "x2": -9.130434782608695, "y2": -9.420289855072465, "center_x": -9.275362318840578, "center_y": -9.565217391304348, "value_uncond": 2.327688787838372e-11}, {"x": -9.130434782608695, "y": -9.710144927536232, "x2": -8.840579710144928, "y2": -9.420289855072465, "center_x": -8.985507246376812, "center_y": -9.565217391304348, "value_uncond": 3.56949360896001e-11}, {"x": -8.840579710144928, "y": -9.710144927536232, "x2": -8.55072463768116, "y2": -9.420289855072465, "center_x": -8.695652173913043, "center_y": -9.565217391304348, "value_uncond": 5.42293148302932e-11}, {"x": -8.55072463768116, "y": -9.710144927536232, "x2": -8.260869565217392, "y2": -9.420289855072465, "center_x": -8.405797101449277, "center_y": -9.565217391304348, "value_uncond": 8.162203914133939e-11}, {"x": -8.26086956521739, "y": -9.710144927536232, "x2": -7.971014492753623, "y2": -9.420289855072465, "center_x": -8.115942028985508, "center_y": -9.565217391304348, "value_uncond": 1.2171008846978545e-10}, {"x": -7.971014492753623, "y": -9.710144927536232, "x2": -7.681159420289855, "y2": -9.420289855072465, "center_x": -7.826086956521739, "center_y": -9.565217391304348, "value_uncond": 1.7980076298145616e-10}, {"x": -7.681159420289855, "y": -9.710144927536232, "x2": -7.391304347826088, "y2": -9.420289855072465, "center_x": -7.536231884057972, "center_y": -9.565217391304348, "value_uncond": 2.6314934725173203e-10}, {"x": -7.391304347826087, "y": -9.710144927536232, "x2": -7.101449275362319, "y2": -9.420289855072465, "center_x": -7.246376811594203, "center_y": -9.565217391304348, "value_uncond": 3.815565193292877e-10}, {"x": -7.101449275362318, "y": -9.710144927536232, "x2": -6.811594202898551, "y2": -9.420289855072465, "center_x": -6.956521739130435, "center_y": -9.565217391304348, "value_uncond": 5.481018579058321e-10}, {"x": -6.811594202898551, "y": -9.710144927536232, "x2": -6.521739130434783, "y2": -9.420289855072465, "center_x": -6.666666666666667, "center_y": -9.565217391304348, "value_uncond": 7.800267285789022e-10}, {"x": -6.521739130434782, "y": -9.710144927536232, "x2": -6.231884057971015, "y2": -9.420289855072465, "center_x": -6.3768115942028984, "center_y": -9.565217391304348, "value_uncond": 1.0997741551867875e-09}, {"x": -6.231884057971014, "y": -9.710144927536232, "x2": -5.942028985507246, "y2": -9.420289855072465, "center_x": -6.08695652173913, "center_y": -9.565217391304348, "value_uncond": 1.5361843944483886e-09}, {"x": -5.942028985507246, "y": -9.710144927536232, "x2": -5.6521739130434785, "y2": -9.420289855072465, "center_x": -5.797101449275362, "center_y": -9.565217391304348, "value_uncond": 2.125832307302315e-09}, {"x": -5.6521739130434785, "y": -9.710144927536232, "x2": -5.362318840579711, "y2": -9.420289855072465, "center_x": -5.507246376811595, "center_y": -9.565217391304348, "value_uncond": 2.9144759203172313e-09}, {"x": -5.36231884057971, "y": -9.710144927536232, "x2": -5.072463768115942, "y2": -9.420289855072465, "center_x": -5.217391304347826, "center_y": -9.565217391304348, "value_uncond": 3.958564763693418e-09}, {"x": -5.0724637681159415, "y": -9.710144927536232, "x2": -4.782608695652174, "y2": -9.420289855072465, "center_x": -4.927536231884058, "center_y": -9.565217391304348, "value_uncond": 5.326732063658852e-09}, {"x": -4.782608695652174, "y": -9.710144927536232, "x2": -4.492753623188406, "y2": -9.420289855072465, "center_x": -4.63768115942029, "center_y": -9.565217391304348, "value_uncond": 7.10116762385412e-09}, {"x": -4.492753623188405, "y": -9.710144927536232, "x2": -4.202898550724638, "y2": -9.420289855072465, "center_x": -4.3478260869565215, "center_y": -9.565217391304348, "value_uncond": 9.378739884287616e-09}, {"x": -4.202898550724638, "y": -9.710144927536232, "x2": -3.91304347826087, "y2": -9.420289855072465, "center_x": -4.057971014492754, "center_y": -9.565217391304348, "value_uncond": 1.2271708548123759e-08}, {"x": -3.913043478260869, "y": -9.710144927536232, "x2": -3.6231884057971016, "y2": -9.420289855072465, "center_x": -3.7681159420289854, "center_y": -9.565217391304348, "value_uncond": 1.5907846367024987e-08}, {"x": -3.6231884057971016, "y": -9.710144927536232, "x2": -3.333333333333334, "y2": -9.420289855072465, "center_x": -3.4782608695652177, "center_y": -9.565217391304348, "value_uncond": 2.0429773812047134e-08}, {"x": -3.333333333333333, "y": -9.710144927536232, "x2": -3.0434782608695654, "y2": -9.420289855072465, "center_x": -3.1884057971014492, "center_y": -9.565217391304348, "value_uncond": 2.5993307423532162e-08}, {"x": -3.0434782608695645, "y": -9.710144927536232, "x2": -2.753623188405797, "y2": -9.420289855072465, "center_x": -2.8985507246376807, "center_y": -9.565217391304348, "value_uncond": 3.276463563225292e-08}, {"x": -2.753623188405797, "y": -9.710144927536232, "x2": -2.4637681159420293, "y2": -9.420289855072465, "center_x": -2.608695652173913, "center_y": -9.565217391304348, "value_uncond": 4.0916168323973e-08}, {"x": -2.4637681159420284, "y": -9.710144927536232, "x2": -2.1739130434782608, "y2": -9.420289855072465, "center_x": -2.3188405797101446, "center_y": -9.565217391304348, "value_uncond": 5.0620960930811905e-08}, {"x": -2.1739130434782608, "y": -9.710144927536232, "x2": -1.8840579710144931, "y2": -9.420289855072465, "center_x": -2.028985507246377, "center_y": -9.565217391304348, "value_uncond": 6.204569134735891e-08}, {"x": -1.8840579710144922, "y": -9.710144927536232, "x2": -1.5942028985507246, "y2": -9.420289855072465, "center_x": -1.7391304347826084, "center_y": -9.565217391304348, "value_uncond": 7.53422673351565e-08}, {"x": -1.5942028985507246, "y": -9.710144927536232, "x2": -1.304347826086957, "y2": -9.420289855072465, "center_x": -1.4492753623188408, "center_y": -9.565217391304348, "value_uncond": 9.063825959002471e-08}, {"x": -1.304347826086957, "y": -9.710144927536232, "x2": -1.0144927536231894, "y2": -9.420289855072465, "center_x": -1.1594202898550732, "center_y": -9.565217391304348, "value_uncond": 1.080264848182127e-07}, {"x": -1.0144927536231876, "y": -9.710144927536232, "x2": -0.72463768115942, "y2": -9.420289855072465, "center_x": -0.8695652173913038, "center_y": -9.565217391304348, "value_uncond": 1.2755419479766016e-07}, {"x": -0.72463768115942, "y": -9.710144927536232, "x2": -0.43478260869565233, "y2": -9.420289855072465, "center_x": -0.5797101449275361, "center_y": -9.565217391304348, "value_uncond": 1.4921244997863546e-07}, {"x": -0.43478260869565233, "y": -9.710144927536232, "x2": -0.1449275362318847, "y2": -9.420289855072465, "center_x": -0.2898550724637685, "center_y": -9.565217391304348, "value_uncond": 1.7292635666361052e-07}, {"x": -0.14492753623188293, "y": -9.710144927536232, "x2": 0.1449275362318847, "y2": -9.420289855072465, "center_x": 8.881784197001252e-16, "center_y": -9.565217391304348, "value_uncond": 1.98546911761475e-07}, {"x": 0.1449275362318847, "y": -9.710144927536232, "x2": 0.43478260869565233, "y2": -9.420289855072465, "center_x": 0.2898550724637685, "center_y": -9.565217391304348, "value_uncond": 2.258452161066759e-07}, {"x": 0.43478260869565233, "y": -9.710144927536232, "x2": 0.72463768115942, "y2": -9.420289855072465, "center_x": 0.5797101449275361, "center_y": -9.565217391304348, "value_uncond": 2.545097765009833e-07}, {"x": 0.72463768115942, "y": -9.710144927536232, "x2": 1.0144927536231876, "y2": -9.420289855072465, "center_x": 0.8695652173913038, "center_y": -9.565217391304348, "value_uncond": 2.841475121909858e-07}, {"x": 1.0144927536231894, "y": -9.710144927536232, "x2": 1.304347826086957, "y2": -9.420289855072465, "center_x": 1.1594202898550732, "center_y": -9.565217391304348, "value_uncond": 3.1428891303493833e-07}, {"x": 1.304347826086957, "y": -9.710144927536232, "x2": 1.5942028985507246, "y2": -9.420289855072465, "center_x": 1.4492753623188408, "center_y": -9.565217391304348, "value_uncond": 3.4439756997730165e-07}, {"x": 1.5942028985507246, "y": -9.710144927536232, "x2": 1.8840579710144922, "y2": -9.420289855072465, "center_x": 1.7391304347826084, "center_y": -9.565217391304348, "value_uncond": 3.738840259732958e-07}, {"x": 1.884057971014494, "y": -9.710144927536232, "x2": 2.1739130434782616, "y2": -9.420289855072465, "center_x": 2.028985507246378, "center_y": -9.565217391304348, "value_uncond": 4.021235955468218e-07}, {"x": 2.1739130434782616, "y": -9.710144927536232, "x2": 2.4637681159420293, "y2": -9.420289855072465, "center_x": 2.3188405797101455, "center_y": -9.565217391304348, "value_uncond": 4.284774968685328e-07}, {"x": 2.4637681159420293, "y": -9.710144927536232, "x2": 2.753623188405797, "y2": -9.420289855072465, "center_x": 2.608695652173913, "center_y": -9.565217391304348, "value_uncond": 4.523163576062548e-07}, {"x": 2.753623188405797, "y": -9.710144927536232, "x2": 3.0434782608695645, "y2": -9.420289855072465, "center_x": 2.8985507246376807, "center_y": -9.565217391304348, "value_uncond": 4.7304492121476363e-07}, {"x": 3.0434782608695663, "y": -9.710144927536232, "x2": 3.333333333333334, "y2": -9.420289855072465, "center_x": 3.18840579710145, "center_y": -9.565217391304348, "value_uncond": 4.901266178267039e-07}, {"x": 3.333333333333334, "y": -9.710144927536232, "x2": 3.6231884057971016, "y2": -9.420289855072465, "center_x": 3.4782608695652177, "center_y": -9.565217391304348, "value_uncond": 5.031065924468107e-07}, {"x": 3.6231884057971016, "y": -9.710144927536232, "x2": 3.913043478260869, "y2": -9.420289855072465, "center_x": 3.7681159420289854, "center_y": -9.565217391304348, "value_uncond": 5.116318143053023e-07}, {"x": 3.913043478260871, "y": -9.710144927536232, "x2": 4.202898550724639, "y2": -9.420289855072465, "center_x": 4.057971014492755, "center_y": -9.565217391304348, "value_uncond": 5.154670275171308e-07}, {"x": 4.202898550724639, "y": -9.710144927536232, "x2": 4.492753623188406, "y2": -9.420289855072465, "center_x": 4.347826086956522, "center_y": -9.565217391304348, "value_uncond": 5.145055373860044e-07}, {"x": 4.492753623188406, "y": -9.710144927536232, "x2": 4.782608695652174, "y2": -9.420289855072465, "center_x": 4.63768115942029, "center_y": -9.565217391304348, "value_uncond": 5.087741421390123e-07}, {"x": 4.782608695652174, "y": -9.710144927536232, "x2": 5.0724637681159415, "y2": -9.420289855072465, "center_x": 4.927536231884058, "center_y": -9.565217391304348, "value_uncond": 4.984318919345294e-07}, {"x": 5.072463768115943, "y": -9.710144927536232, "x2": 5.362318840579711, "y2": -9.420289855072465, "center_x": 5.217391304347827, "center_y": -9.565217391304348, "value_uncond": 4.837627553509998e-07}, {"x": 5.362318840579711, "y": -9.710144927536232, "x2": 5.6521739130434785, "y2": -9.420289855072465, "center_x": 5.507246376811595, "center_y": -9.565217391304348, "value_uncond": 4.6516266528456056e-07}, {"x": 5.6521739130434785, "y": -9.710144927536232, "x2": 5.942028985507246, "y2": -9.420289855072465, "center_x": 5.797101449275362, "center_y": -9.565217391304348, "value_uncond": 4.4312176897744417e-07}, {"x": 5.942028985507246, "y": -9.710144927536232, "x2": 6.231884057971014, "y2": -9.420289855072465, "center_x": 6.08695652173913, "center_y": -9.565217391304348, "value_uncond": 4.182029923970312e-07}, {"x": 6.2318840579710155, "y": -9.710144927536232, "x2": 6.521739130434783, "y2": -9.420289855072465, "center_x": 6.376811594202899, "center_y": -9.565217391304348, "value_uncond": 3.9101822570820645e-07}, {"x": 6.521739130434785, "y": -9.710144927536232, "x2": 6.8115942028985526, "y2": -9.420289855072465, "center_x": 6.666666666666669, "center_y": -9.565217391304348, "value_uncond": 3.6220353113548075e-07}, {"x": 6.811594202898551, "y": -9.710144927536232, "x2": 7.101449275362318, "y2": -9.420289855072465, "center_x": 6.956521739130435, "center_y": -9.565217391304348, "value_uncond": 3.32394763783409e-07}, {"x": 7.10144927536232, "y": -9.710144927536232, "x2": 7.391304347826088, "y2": -9.420289855072465, "center_x": 7.246376811594204, "center_y": -9.565217391304348, "value_uncond": 3.022048862580275e-07}, {"x": 7.391304347826086, "y": -9.710144927536232, "x2": 7.681159420289854, "y2": -9.420289855072465, "center_x": 7.53623188405797, "center_y": -9.565217391304348, "value_uncond": 2.7220406397741216e-07}, {"x": 7.681159420289855, "y": -9.710144927536232, "x2": 7.971014492753623, "y2": -9.420289855072465, "center_x": 7.826086956521739, "center_y": -9.565217391304348, "value_uncond": 2.4290337117625886e-07}, {"x": 7.971014492753625, "y": -9.710144927536232, "x2": 8.260869565217392, "y2": -9.420289855072465, "center_x": 8.115942028985508, "center_y": -9.565217391304348, "value_uncond": 2.1474264310538734e-07}, {"x": 8.26086956521739, "y": -9.710144927536232, "x2": 8.550724637681158, "y2": -9.420289855072465, "center_x": 8.405797101449274, "center_y": -9.565217391304348, "value_uncond": 1.880827043548819e-07}, {"x": 8.55072463768116, "y": -9.710144927536232, "x2": 8.840579710144928, "y2": -9.420289855072465, "center_x": 8.695652173913043, "center_y": -9.565217391304348, "value_uncond": 1.6320191171812923e-07}, {"x": 8.84057971014493, "y": -9.710144927536232, "x2": 9.130434782608697, "y2": -9.420289855072465, "center_x": 8.985507246376812, "center_y": -9.565217391304348, "value_uncond": 1.402966939890929e-07}, {"x": 9.130434782608695, "y": -9.710144927536232, "x2": 9.420289855072463, "y2": -9.420289855072465, "center_x": 9.275362318840578, "center_y": -9.565217391304348, "value_uncond": 1.1948556660134085e-07}, {"x": 9.420289855072465, "y": -9.710144927536232, "x2": 9.710144927536232, "y2": -9.420289855072465, "center_x": 9.565217391304348, "center_y": -9.565217391304348, "value_uncond": 1.0081595582564033e-07}, {"x": 9.710144927536234, "y": -9.710144927536232, "x2": 10.000000000000002, "y2": -9.420289855072465, "center_x": 9.855072463768117, "center_y": -9.565217391304348, "value_uncond": 8.427308861756474e-08}, {"x": 10.0, "y": -9.710144927536232, "x2": 10.289855072463768, "y2": -9.420289855072465, "center_x": 10.144927536231883, "center_y": -9.565217391304348, "value_uncond": 6.979018746024219e-08}, {"x": -10.0, "y": -9.420289855072463, "x2": -9.710144927536232, "y2": -9.130434782608695, "center_x": -9.855072463768117, "center_y": -9.275362318840578, "value_uncond": 1.4898236004033224e-11}, {"x": -9.710144927536232, "y": -9.420289855072463, "x2": -9.420289855072465, "y2": -9.130434782608695, "center_x": -9.565217391304348, "center_y": -9.275362318840578, "value_uncond": 2.327688787838372e-11}, {"x": -9.420289855072463, "y": -9.420289855072463, "x2": -9.130434782608695, "y2": -9.130434782608695, "center_x": -9.275362318840578, "center_y": -9.275362318840578, "value_uncond": 3.6029712292174674e-11}, {"x": -9.130434782608695, "y": -9.420289855072463, "x2": -8.840579710144928, "y2": -9.130434782608695, "center_x": -8.985507246376812, "center_y": -9.275362318840578, "value_uncond": 5.52512983829845e-11}, {"x": -8.840579710144928, "y": -9.420289855072463, "x2": -8.55072463768116, "y2": -9.130434782608695, "center_x": -8.695652173913043, "center_y": -9.275362318840578, "value_uncond": 8.394019945216559e-11}, {"x": -8.55072463768116, "y": -9.420289855072463, "x2": -8.260869565217392, "y2": -9.130434782608695, "center_x": -8.405797101449277, "center_y": -9.275362318840578, "value_uncond": 1.2634071196837675e-10}, {"x": -8.26086956521739, "y": -9.420289855072463, "x2": -7.971014492753623, "y2": -9.130434782608695, "center_x": -8.115942028985508, "center_y": -9.275362318840578, "value_uncond": 1.883920004054249e-10}, {"x": -7.971014492753623, "y": -9.420289855072463, "x2": -7.681159420289855, "y2": -9.130434782608695, "center_x": -7.826086956521739, "center_y": -9.275362318840578, "value_uncond": 2.783091018860542e-10}, {"x": -7.681159420289855, "y": -9.420289855072463, "x2": -7.391304347826088, "y2": -9.130434782608695, "center_x": -7.536231884057972, "center_y": -9.275362318840578, "value_uncond": 4.0732228985637995e-10}, {"x": -7.391304347826087, "y": -9.420289855072463, "x2": -7.101449275362319, "y2": -9.130434782608695, "center_x": -7.246376811594203, "center_y": -9.275362318840578, "value_uncond": 5.906017886267534e-10}, {"x": -7.101449275362318, "y": -9.420289855072463, "x2": -6.811594202898551, "y2": -9.130434782608695, "center_x": -6.956521739130435, "center_y": -9.275362318840578, "value_uncond": 8.48393150765341e-10}, {"x": -6.811594202898551, "y": -9.420289855072463, "x2": -6.521739130434783, "y2": -9.130434782608695, "center_x": -6.666666666666667, "center_y": -9.275362318840578, "value_uncond": 1.207383854651945e-09}, {"x": -6.521739130434782, "y": -9.420289855072463, "x2": -6.231884057971015, "y2": -9.130434782608695, "center_x": -6.3768115942028984, "center_y": -9.275362318840578, "value_uncond": 1.7023128952967586e-09}, {"x": -6.231884057971014, "y": -9.420289855072463, "x2": -5.942028985507246, "y2": -9.130434782608695, "center_x": -6.08695652173913, "center_y": -9.275362318840578, "value_uncond": 2.3778213844086803e-09}, {"x": -5.942028985507246, "y": -9.420289855072463, "x2": -5.6521739130434785, "y2": -9.130434782608695, "center_x": -5.797101449275362, "center_y": -9.275362318840578, "value_uncond": 3.290522634026223e-09}, {"x": -5.6521739130434785, "y": -9.420289855072463, "x2": -5.362318840579711, "y2": -9.130434782608695, "center_x": -5.507246376811595, "center_y": -9.275362318840578, "value_uncond": 4.511244348477409e-09}, {"x": -5.36231884057971, "y": -9.420289855072463, "x2": -5.072463768115942, "y2": -9.130434782608695, "center_x": -5.217391304347826, "center_y": -9.275362318840578, "value_uncond": 6.127363343029421e-09}, {"x": -5.0724637681159415, "y": -9.420289855072463, "x2": -4.782608695652174, "y2": -9.130434782608695, "center_x": -4.927536231884058, "center_y": -9.275362318840578, "value_uncond": 8.245115271159551e-09}, {"x": -4.782608695652174, "y": -9.420289855072463, "x2": -4.492753623188406, "y2": -9.130434782608695, "center_x": -4.63768115942029, "center_y": -9.275362318840578, "value_uncond": 1.0991719673297463e-08}, {"x": -4.492753623188405, "y": -9.420289855072463, "x2": -4.202898550724638, "y2": -9.130434782608695, "center_x": -4.3478260869565215, "center_y": -9.275362318840578, "value_uncond": 1.451711678380478e-08}, {"x": -4.202898550724638, "y": -9.420289855072463, "x2": -3.91304347826087, "y2": -9.130434782608695, "center_x": -4.057971014492754, "center_y": -9.275362318840578, "value_uncond": 1.8995070588148614e-08}, {"x": -3.913043478260869, "y": -9.420289855072463, "x2": -3.6231884057971016, "y2": -9.130434782608695, "center_x": -3.7681159420289854, "center_y": -9.275362318840578, "value_uncond": 2.4623357331384997e-08}, {"x": -3.6231884057971016, "y": -9.420289855072463, "x2": -3.333333333333334, "y2": -9.130434782608695, "center_x": -3.4782608695652177, "center_y": -9.275362318840578, "value_uncond": 3.16227356718863e-08}, {"x": -3.333333333333333, "y": -9.420289855072463, "x2": -3.0434782608695654, "y2": -9.130434782608695, "center_x": -3.1884057971014492, "center_y": -9.275362318840578, "value_uncond": 4.0234390133469245e-08}, {"x": -3.0434782608695645, "y": -9.420289855072463, "x2": -2.753623188405797, "y2": -9.130434782608695, "center_x": -2.8985507246376807, "center_y": -9.275362318840578, "value_uncond": 5.071555962961394e-08}, {"x": -2.753623188405797, "y": -9.420289855072463, "x2": -2.4637681159420293, "y2": -9.130434782608695, "center_x": -2.608695652173913, "center_y": -9.275362318840578, "value_uncond": 6.333311310830191e-08}, {"x": -2.4637681159420284, "y": -9.420289855072463, "x2": -2.1739130434782608, "y2": -9.130434782608695, "center_x": -2.3188405797101446, "center_y": -9.275362318840578, "value_uncond": 7.835491874256564e-08}, {"x": -2.1739130434782608, "y": -9.420289855072463, "x2": -1.8840579710144931, "y2": -9.130434782608695, "center_x": -2.028985507246377, "center_y": -9.275362318840578, "value_uncond": 9.603897307467887e-08}, {"x": -1.8840579710144922, "y": -9.420289855072463, "x2": -1.5942028985507246, "y2": -9.130434782608695, "center_x": -1.7391304347826084, "center_y": -9.275362318840578, "value_uncond": 1.1662041032756351e-07}, {"x": -1.5942028985507246, "y": -9.420289855072463, "x2": -1.304347826086957, "y2": -9.130434782608695, "center_x": -1.4492753623188408, "center_y": -9.275362318840578, "value_uncond": 1.4029669398909313e-07}, {"x": -1.304347826086957, "y": -9.420289855072463, "x2": -1.0144927536231894, "y2": -9.130434782608695, "center_x": -1.1594202898550732, "center_y": -9.275362318840578, "value_uncond": 1.6721149271632956e-07}, {"x": -1.0144927536231876, "y": -9.420289855072463, "x2": -0.72463768115942, "y2": -9.130434782608695, "center_x": -0.8695652173913038, "center_y": -9.275362318840578, "value_uncond": 1.9743794635396995e-07}, {"x": -0.72463768115942, "y": -9.420289855072463, "x2": -0.43478260869565233, "y2": -9.130434782608695, "center_x": -0.5797101449275361, "center_y": -9.275362318840578, "value_uncond": 2.3096221759667814e-07}, {"x": -0.43478260869565233, "y": -9.420289855072463, "x2": -0.1449275362318847, "y2": -9.130434782608695, "center_x": -0.2898550724637685, "center_y": -9.275362318840578, "value_uncond": 2.6766838036410634e-07}, {"x": -0.14492753623188293, "y": -9.420289855072463, "x2": 0.1449275362318847, "y2": -9.130434782608695, "center_x": 8.881784197001252e-16, "center_y": -9.275362318840578, "value_uncond": 3.073257965000113e-07}, {"x": 0.1449275362318847, "y": -9.420289855072463, "x2": 0.43478260869565233, "y2": -9.130434782608695, "center_x": 0.2898550724637685, "center_y": -9.275362318840578, "value_uncond": 3.4958015871375006e-07}, {"x": 0.43478260869565233, "y": -9.420289855072463, "x2": 0.72463768115942, "y2": -9.130434782608695, "center_x": 0.5797101449275361, "center_y": -9.275362318840578, "value_uncond": 3.9394931447823936e-07}, {"x": 0.72463768115942, "y": -9.420289855072463, "x2": 1.0144927536231876, "y2": -9.130434782608695, "center_x": 0.8695652173913038, "center_y": -9.275362318840578, "value_uncond": 4.398248239312864e-07}, {"x": 1.0144927536231894, "y": -9.420289855072463, "x2": 1.304347826086957, "y2": -9.130434782608695, "center_x": 1.1594202898550732, "center_y": -9.275362318840578, "value_uncond": 4.864799440729798e-07}, {"x": 1.304347826086957, "y": -9.420289855072463, "x2": 1.5942028985507246, "y2": -9.130434782608695, "center_x": 1.4492753623188408, "center_y": -9.275362318840578, "value_uncond": 5.330843807487501e-07}, {"x": 1.5942028985507246, "y": -9.420289855072463, "x2": 1.8840579710144922, "y2": -9.130434782608695, "center_x": 1.7391304347826084, "center_y": -9.275362318840578, "value_uncond": 5.787257281488953e-07}, {"x": 1.884057971014494, "y": -9.420289855072463, "x2": 2.1739130434782616, "y2": -9.130434782608695, "center_x": 2.028985507246378, "center_y": -9.275362318840578, "value_uncond": 6.224370512563913e-07}, {"x": 2.1739130434782616, "y": -9.420289855072463, "x2": 2.4637681159420293, "y2": -9.130434782608695, "center_x": 2.3188405797101455, "center_y": -9.275362318840578, "value_uncond": 6.632295956617537e-07}, {"x": 2.4637681159420293, "y": -9.420289855072463, "x2": 2.753623188405797, "y2": -9.130434782608695, "center_x": 2.608695652173913, "center_y": -9.275362318840578, "value_uncond": 7.001291716807186e-07}, {"x": 2.753623188405797, "y": -9.420289855072463, "x2": 3.0434782608695645, "y2": -9.130434782608695, "center_x": 2.8985507246376807, "center_y": -9.275362318840578, "value_uncond": 7.322143966019667e-07}, {"x": 3.0434782608695663, "y": -9.420289855072463, "x2": 3.333333333333334, "y2": -9.130434782608695, "center_x": 3.18840579710145, "center_y": -9.275362318840578, "value_uncond": 7.586547273543421e-07}, {"x": 3.333333333333334, "y": -9.420289855072463, "x2": 3.6231884057971016, "y2": -9.130434782608695, "center_x": 3.4782608695652177, "center_y": -9.275362318840578, "value_uncond": 7.787461052724562e-07}, {"x": 3.6231884057971016, "y": -9.420289855072463, "x2": 3.913043478260869, "y2": -9.130434782608695, "center_x": 3.7681159420289854, "center_y": -9.275362318840578, "value_uncond": 7.919420828616108e-07}, {"x": 3.913043478260871, "y": -9.420289855072463, "x2": 4.202898550724639, "y2": -9.130434782608695, "center_x": 4.057971014492755, "center_y": -9.275362318840578, "value_uncond": 7.978785134241195e-07}, {"x": 4.202898550724639, "y": -9.420289855072463, "x2": 4.492753623188406, "y2": -9.130434782608695, "center_x": 4.347826086956522, "center_y": -9.275362318840578, "value_uncond": 7.963902469094011e-07}, {"x": 4.492753623188406, "y": -9.420289855072463, "x2": 4.782608695652174, "y2": -9.130434782608695, "center_x": 4.63768115942029, "center_y": -9.275362318840578, "value_uncond": 7.875187636225984e-07}, {"x": 4.782608695652174, "y": -9.420289855072463, "x2": 5.0724637681159415, "y2": -9.130434782608695, "center_x": 4.927536231884058, "center_y": -9.275362318840578, "value_uncond": 7.715102533239665e-07}, {"x": 5.072463768115943, "y": -9.420289855072463, "x2": 5.362318840579711, "y2": -9.130434782608695, "center_x": 5.217391304347827, "center_y": -9.275362318840578, "value_uncond": 7.488042638703676e-07}, {"x": 5.362318840579711, "y": -9.420289855072463, "x2": 5.6521739130434785, "y2": -9.130434782608695, "center_x": 5.507246376811595, "center_y": -9.275362318840578, "value_uncond": 7.200136498843506e-07}, {"x": 5.6521739130434785, "y": -9.420289855072463, "x2": 5.942028985507246, "y2": -9.130434782608695, "center_x": 5.797101449275362, "center_y": -9.275362318840578, "value_uncond": 6.858970980172719e-07}, {"x": 5.942028985507246, "y": -9.420289855072463, "x2": 6.231884057971014, "y2": -9.130434782608695, "center_x": 6.08695652173913, "center_y": -9.275362318840578, "value_uncond": 6.473259472880103e-07}, {"x": 6.2318840579710155, "y": -9.420289855072463, "x2": 6.521739130434783, "y2": -9.130434782608695, "center_x": 6.376811594202899, "center_y": -9.275362318840578, "value_uncond": 6.052473271715371e-07}, {"x": 6.521739130434785, "y": -9.420289855072463, "x2": 6.8115942028985526, "y2": -9.130434782608695, "center_x": 6.666666666666669, "center_y": -9.275362318840578, "value_uncond": 5.606457824690636e-07}, {"x": 6.811594202898551, "y": -9.420289855072463, "x2": 7.101449275362318, "y2": -9.130434782608695, "center_x": 6.956521739130435, "center_y": -9.275362318840578, "value_uncond": 5.145055373860044e-07}, {"x": 7.10144927536232, "y": -9.420289855072463, "x2": 7.391304347826088, "y2": -9.130434782608695, "center_x": 7.246376811594204, "center_y": -9.275362318840578, "value_uncond": 4.677753814021533e-07}, {"x": 7.391304347826086, "y": -9.420289855072463, "x2": 7.681159420289854, "y2": -9.130434782608695, "center_x": 7.53623188405797, "center_y": -9.275362318840578, "value_uncond": 4.213378593009689e-07}, {"x": 7.681159420289855, "y": -9.420289855072463, "x2": 7.971014492753623, "y2": -9.130434782608695, "center_x": 7.826086956521739, "center_y": -9.275362318840578, "value_uncond": 3.7598405010178783e-07}, {"x": 7.971014492753625, "y": -9.420289855072463, "x2": 8.260869565217392, "y2": -9.130434782608695, "center_x": 8.115942028985508, "center_y": -9.275362318840578, "value_uncond": 3.32394763783409e-07}, {"x": 8.26086956521739, "y": -9.420289855072463, "x2": 8.550724637681158, "y2": -9.130434782608695, "center_x": 8.405797101449274, "center_y": -9.275362318840578, "value_uncond": 2.911285116999536e-07}, {"x": 8.55072463768116, "y": -9.420289855072463, "x2": 8.840579710144928, "y2": -9.130434782608695, "center_x": 8.695652173913043, "center_y": -9.275362318840578, "value_uncond": 2.5261615536661616e-07}, {"x": 8.84057971014493, "y": -9.420289855072463, "x2": 9.130434782608697, "y2": -9.130434782608695, "center_x": 8.985507246376812, "center_y": -9.275362318840578, "value_uncond": 2.1716174199835867e-07}, {"x": 9.130434782608695, "y": -9.420289855072463, "x2": 9.420289855072463, "y2": -9.130434782608695, "center_x": 9.275362318840578, "center_y": -9.275362318840578, "value_uncond": 1.8494871866920357e-07}, {"x": 9.420289855072465, "y": -9.420289855072463, "x2": 9.710144927536232, "y2": -9.130434782608695, "center_x": 9.565217391304348, "center_y": -9.275362318840578, "value_uncond": 1.5605049531692952e-07}, {"x": 9.710144927536234, "y": -9.420289855072463, "x2": 10.000000000000002, "y2": -9.130434782608695, "center_x": 9.855072463768117, "center_y": -9.275362318840578, "value_uncond": 1.3044420511573268e-07}, {"x": 10.0, "y": -9.420289855072463, "x2": 10.289855072463768, "y2": -9.130434782608695, "center_x": 10.144927536231883, "center_y": -9.275362318840578, "value_uncond": 1.080264848182129e-07}, {"x": -10.0, "y": -9.130434782608695, "x2": -9.710144927536232, "y2": -8.840579710144928, "center_x": -9.855072463768117, "center_y": -8.985507246376812, "value_uncond": 2.284633516259696e-11}, {"x": -9.710144927536232, "y": -9.130434782608695, "x2": -9.420289855072465, "y2": -8.840579710144928, "center_x": -9.565217391304348, "center_y": -8.985507246376812, "value_uncond": 3.56949360896001e-11}, {"x": -9.420289855072463, "y": -9.130434782608695, "x2": -9.130434782608695, "y2": -8.840579710144928, "center_x": -9.275362318840578, "center_y": -8.985507246376812, "value_uncond": 5.52512983829845e-11}, {"x": -9.130434782608695, "y": -9.130434782608695, "x2": -8.840579710144928, "y2": -8.840579710144928, "center_x": -8.985507246376812, "center_y": -8.985507246376812, "value_uncond": 8.472745905519222e-11}, {"x": -8.840579710144928, "y": -9.130434782608695, "x2": -8.55072463768116, "y2": -8.840579710144928, "center_x": -8.695652173913043, "center_y": -8.985507246376812, "value_uncond": 1.2872167750465555e-10}, {"x": -8.55072463768116, "y": -9.130434782608695, "x2": -8.260869565217392, "y2": -8.840579710144928, "center_x": -8.405797101449277, "center_y": -8.985507246376812, "value_uncond": 1.9374255109995932e-10}, {"x": -8.26086956521739, "y": -9.130434782608695, "x2": -7.971014492753623, "y2": -8.840579710144928, "center_x": -8.115942028985508, "center_y": -8.985507246376812, "value_uncond": 2.888977448101407e-10}, {"x": -7.971014492753623, "y": -9.130434782608695, "x2": -7.681159420289855, "y2": -8.840579710144928, "center_x": -7.826086956521739, "center_y": -8.985507246376812, "value_uncond": 4.267849575459015e-10}, {"x": -7.681159420289855, "y": -9.130434782608695, "x2": -7.391304347826088, "y2": -8.840579710144928, "center_x": -7.536231884057972, "center_y": -8.985507246376812, "value_uncond": 6.246257309077444e-10}, {"x": -7.391304347826087, "y": -9.130434782608695, "x2": -7.101449275362319, "y2": -8.840579710144928, "center_x": -7.246376811594203, "center_y": -8.985507246376812, "value_uncond": 9.056834921223715e-10}, {"x": -7.101449275362318, "y": -9.130434782608695, "x2": -6.811594202898551, "y2": -8.840579710144928, "center_x": -6.956521739130435, "center_y": -8.985507246376812, "value_uncond": 1.3010046469118486e-09}, {"x": -6.811594202898551, "y": -9.130434782608695, "x2": -6.521739130434783, "y2": -8.840579710144928, "center_x": -6.666666666666667, "center_y": -8.985507246376812, "value_uncond": 1.85151424677519e-09}, {"x": -6.521739130434782, "y": -9.130434782608695, "x2": -6.231884057971015, "y2": -8.840579710144928, "center_x": -6.3768115942028984, "center_y": -8.985507246376812, "value_uncond": 2.6104842846516803e-09}, {"x": -6.231884057971014, "y": -9.130434782608695, "x2": -5.942028985507246, "y2": -8.840579710144928, "center_x": -6.08695652173913, "center_y": -8.985507246376812, "value_uncond": 3.6463715764929747e-09}, {"x": -5.942028985507246, "y": -9.130434782608695, "x2": -5.6521739130434785, "y2": -8.840579710144928, "center_x": -5.797101449275362, "center_y": -8.985507246376812, "value_uncond": 5.045992219261586e-09}, {"x": -5.6521739130434785, "y": -9.130434782608695, "x2": -5.362318840579711, "y2": -8.840579710144928, "center_x": -5.507246376811595, "center_y": -8.985507246376812, "value_uncond": 6.917959975784015e-09}, {"x": -5.36231884057971, "y": -9.130434782608695, "x2": -5.072463768115942, "y2": -8.840579710144928, "center_x": -5.217391304347826, "center_y": -8.985507246376812, "value_uncond": 9.396266548601021e-09}, {"x": -5.0724637681159415, "y": -9.130434782608695, "x2": -4.782608695652174, "y2": -8.840579710144928, "center_x": -4.927536231884058, "center_y": -8.985507246376812, "value_uncond": 1.2643823529722732e-08}, {"x": -4.782608695652174, "y": -9.130434782608695, "x2": -4.492753623188406, "y2": -8.840579710144928, "center_x": -4.63768115942029, "center_y": -8.985507246376812, "value_uncond": 1.68557211472205e-08}, {"x": -4.492753623188405, "y": -9.130434782608695, "x2": -4.202898550724638, "y2": -8.840579710144928, "center_x": -4.3478260869565215, "center_y": -8.985507246376812, "value_uncond": 2.2261891645935698e-08}, {"x": -4.202898550724638, "y": -9.130434782608695, "x2": -3.91304347826087, "y2": -8.840579710144928, "center_x": -4.057971014492754, "center_y": -8.985507246376812, "value_uncond": 2.912880081752954e-08}, {"x": -3.913043478260869, "y": -9.130434782608695, "x2": -3.6231884057971016, "y2": -8.840579710144928, "center_x": -3.7681159420289854, "center_y": -8.985507246376812, "value_uncond": 3.775973707685375e-08}, {"x": -3.6231884057971016, "y": -9.130434782608695, "x2": -3.333333333333334, "y2": -8.840579710144928, "center_x": -3.4782608695652177, "center_y": -8.985507246376812, "value_uncond": 4.8493232200278026e-08}, {"x": -3.333333333333333, "y": -9.130434782608695, "x2": -3.0434782608695654, "y2": -8.840579710144928, "center_x": -3.1884057971014492, "center_y": -8.985507246376812, "value_uncond": 6.169914087836146e-08}, {"x": -3.0434782608695645, "y": -9.130434782608695, "x2": -2.753623188405797, "y2": -8.840579710144928, "center_x": -2.8985507246376807, "center_y": -8.985507246376812, "value_uncond": 7.777193708994542e-08}, {"x": -2.753623188405797, "y": -9.130434782608695, "x2": -2.4637681159420293, "y2": -8.840579710144928, "center_x": -2.608695652173913, "center_y": -8.985507246376812, "value_uncond": 9.71208624008385e-08}, {"x": -2.4637681159420284, "y": -9.130434782608695, "x2": -2.1739130434782608, "y2": -8.840579710144928, "center_x": -2.3188405797101446, "center_y": -8.985507246376812, "value_uncond": 1.2015669068110387e-07}, {"x": -2.1739130434782608, "y": -9.130434782608695, "x2": -1.8840579710144931, "y2": -8.840579710144928, "center_x": -2.028985507246377, "center_y": -8.985507246376812, "value_uncond": 1.4727505772775686e-07}, {"x": -1.8840579710144922, "y": -9.130434782608695, "x2": -1.5942028985507246, "y2": -8.840579710144928, "center_x": -1.7391304347826084, "center_y": -8.985507246376812, "value_uncond": 1.7883654013950458e-07}, {"x": -1.5942028985507246, "y": -9.130434782608695, "x2": -1.304347826086957, "y2": -8.840579710144928, "center_x": -1.4492753623188408, "center_y": -8.985507246376812, "value_uncond": 2.1514394672036343e-07}, {"x": -1.304347826086957, "y": -9.130434782608695, "x2": -1.0144927536231894, "y2": -8.840579710144928, "center_x": -1.1594202898550732, "center_y": -8.985507246376812, "value_uncond": 2.564175922975858e-07}, {"x": -1.0144927536231876, "y": -9.130434782608695, "x2": -0.72463768115942, "y2": -8.840579710144928, "center_x": -0.8695652173913038, "center_y": -8.985507246376812, "value_uncond": 3.0276963628422175e-07}, {"x": -0.72463768115942, "y": -9.130434782608695, "x2": -0.43478260869565233, "y2": -8.840579710144928, "center_x": -0.5797101449275361, "center_y": -8.985507246376812, "value_uncond": 3.5417885927447224e-07}, {"x": -0.43478260869565233, "y": -9.130434782608695, "x2": -0.1449275362318847, "y2": -8.840579710144928, "center_x": -0.2898550724637685, "center_y": -8.985507246376812, "value_uncond": 4.1046748947810695e-07}, {"x": -0.14492753623188293, "y": -9.130434782608695, "x2": 0.1449275362318847, "y2": -8.840579710144928, "center_x": 8.881784197001252e-16, "center_y": -8.985507246376812, "value_uncond": 4.7128184498154966e-07}, {"x": 0.1449275362318847, "y": -9.130434782608695, "x2": 0.43478260869565233, "y2": -8.840579710144928, "center_x": 0.2898550724637685, "center_y": -8.985507246376812, "value_uncond": 5.360785981646451e-07}, {"x": 0.43478260869565233, "y": -9.130434782608695, "x2": 0.72463768115942, "y2": -8.840579710144928, "center_x": 0.5797101449275361, "center_y": -8.985507246376812, "value_uncond": 6.04118371678944e-07}, {"x": 0.72463768115942, "y": -9.130434782608695, "x2": 1.0144927536231876, "y2": -8.840579710144928, "center_x": 0.8695652173913038, "center_y": -8.985507246376812, "value_uncond": 6.744681274779165e-07}, {"x": 1.0144927536231894, "y": -9.130434782608695, "x2": 1.304347826086957, "y2": -8.840579710144928, "center_x": 1.1594202898550732, "center_y": -8.985507246376812, "value_uncond": 7.460134105248357e-07}, {"x": 1.304347826086957, "y": -9.130434782608695, "x2": 1.5942028985507246, "y2": -8.840579710144928, "center_x": 1.4492753623188408, "center_y": -8.985507246376812, "value_uncond": 8.17480970850127e-07}, {"x": 1.5942028985507246, "y": -9.130434782608695, "x2": 1.8840579710144922, "y2": -8.840579710144928, "center_x": 1.7391304347826084, "center_y": -8.985507246376812, "value_uncond": 8.874716408659564e-07}, {"x": 1.884057971014494, "y": -9.130434782608695, "x2": 2.1739130434782616, "y2": -8.840579710144928, "center_x": 2.028985507246378, "center_y": -8.985507246376812, "value_uncond": 9.54502632846757e-07}, {"x": 2.1739130434782616, "y": -9.130434782608695, "x2": 2.4637681159420293, "y2": -8.840579710144928, "center_x": 2.3188405797101455, "center_y": -8.985507246376812, "value_uncond": 1.0170576991893582e-06}, {"x": 2.4637681159420293, "y": -9.130434782608695, "x2": 2.753623188405797, "y2": -8.840579710144928, "center_x": 2.608695652173913, "center_y": -8.985507246376812, "value_uncond": 1.0736429271894232e-06}, {"x": 2.753623188405797, "y": -9.130434782608695, "x2": 3.0434782608695645, "y2": -8.840579710144928, "center_x": 2.8985507246376807, "center_y": -8.985507246376812, "value_uncond": 1.1228453832466169e-06}, {"x": 3.0434782608695663, "y": -9.130434782608695, "x2": 3.333333333333334, "y2": -8.840579710144928, "center_x": 3.18840579710145, "center_y": -8.985507246376812, "value_uncond": 1.1633914356796134e-06}, {"x": 3.333333333333334, "y": -9.130434782608695, "x2": 3.6231884057971016, "y2": -8.840579710144928, "center_x": 3.4782608695652177, "center_y": -8.985507246376812, "value_uncond": 1.1942014157115696e-06}, {"x": 3.6231884057971016, "y": -9.130434782608695, "x2": 3.913043478260869, "y2": -8.840579710144928, "center_x": 3.7681159420289854, "center_y": -8.985507246376812, "value_uncond": 1.2144373501348344e-06}, {"x": 3.913043478260871, "y": -9.130434782608695, "x2": 4.202898550724639, "y2": -8.840579710144928, "center_x": 4.057971014492755, "center_y": -8.985507246376812, "value_uncond": 1.2235408226710357e-06}, {"x": 4.202898550724639, "y": -9.130434782608695, "x2": 4.492753623188406, "y2": -8.840579710144928, "center_x": 4.347826086956522, "center_y": -8.985507246376812, "value_uncond": 1.2212585769342034e-06}, {"x": 4.492753623188406, "y": -9.130434782608695, "x2": 4.782608695652174, "y2": -8.840579710144928, "center_x": 4.63768115942029, "center_y": -8.985507246376812, "value_uncond": 1.2076542226667046e-06}, {"x": 4.782608695652174, "y": -9.130434782608695, "x2": 5.0724637681159415, "y2": -8.840579710144928, "center_x": 4.927536231884058, "center_y": -8.985507246376812, "value_uncond": 1.1831052900523056e-06}, {"x": 5.072463768115943, "y": -9.130434782608695, "x2": 5.362318840579711, "y2": -8.840579710144928, "center_x": 5.217391304347827, "center_y": -8.985507246376812, "value_uncond": 1.1482858224915232e-06}, {"x": 5.362318840579711, "y": -9.130434782608695, "x2": 5.6521739130434785, "y2": -8.840579710144928, "center_x": 5.507246376811595, "center_y": -8.985507246376812, "value_uncond": 1.1041356280333723e-06}, {"x": 5.6521739130434785, "y": -9.130434782608695, "x2": 5.942028985507246, "y2": -8.840579710144928, "center_x": 5.797101449275362, "center_y": -8.985507246376812, "value_uncond": 1.0518181470687534e-06}, {"x": 5.942028985507246, "y": -9.130434782608695, "x2": 6.231884057971014, "y2": -8.840579710144928, "center_x": 6.08695652173913, "center_y": -8.985507246376812, "value_uncond": 9.926695715642979e-07}, {"x": 6.2318840579710155, "y": -9.130434782608695, "x2": 6.521739130434783, "y2": -8.840579710144928, "center_x": 6.376811594202899, "center_y": -8.985507246376812, "value_uncond": 9.281423175927344e-07}, {"x": 6.521739130434785, "y": -9.130434782608695, "x2": 6.8115942028985526, "y2": -8.840579710144928, "center_x": 6.666666666666669, "center_y": -8.985507246376812, "value_uncond": 8.59746177353957e-07}, {"x": 6.811594202898551, "y": -9.130434782608695, "x2": 7.101449275362318, "y2": -8.840579710144928, "center_x": 6.956521739130435, "center_y": -8.985507246376812, "value_uncond": 7.889904514165666e-07}, {"x": 7.10144927536232, "y": -9.130434782608695, "x2": 7.391304347826088, "y2": -8.840579710144928, "center_x": 7.246376811594204, "center_y": -8.985507246376812, "value_uncond": 7.17330101458459e-07}, {"x": 7.391304347826086, "y": -9.130434782608695, "x2": 7.681159420289854, "y2": -8.840579710144928, "center_x": 7.53623188405797, "center_y": -8.985507246376812, "value_uncond": 6.461185034036994e-07}, {"x": 7.681159420289855, "y": -9.130434782608695, "x2": 7.971014492753623, "y2": -8.840579710144928, "center_x": 7.826086956521739, "center_y": -8.985507246376812, "value_uncond": 5.765687711008647e-07}, {"x": 7.971014492753625, "y": -9.130434782608695, "x2": 8.260869565217392, "y2": -8.840579710144928, "center_x": 8.115942028985508, "center_y": -8.985507246376812, "value_uncond": 5.097249216371772e-07}, {"x": 8.26086956521739, "y": -9.130434782608695, "x2": 8.550724637681158, "y2": -8.840579710144928, "center_x": 8.405797101449274, "center_y": -8.985507246376812, "value_uncond": 4.4644342805984316e-07}, {"x": 8.55072463768116, "y": -9.130434782608695, "x2": 8.840579710144928, "y2": -8.840579710144928, "center_x": 8.695652173913043, "center_y": -8.985507246376812, "value_uncond": 3.873850133284215e-07}, {"x": 8.84057971014493, "y": -9.130434782608695, "x2": 9.130434782608697, "y2": -8.840579710144928, "center_x": 8.985507246376812, "center_y": -8.985507246376812, "value_uncond": 3.330159316072577e-07}, {"x": 9.130434782608695, "y": -9.130434782608695, "x2": 9.420289855072463, "y2": -8.840579710144928, "center_x": 9.275362318840578, "center_y": -8.985507246376812, "value_uncond": 2.836174976329806e-07}, {"x": 9.420289855072465, "y": -9.130434782608695, "x2": 9.710144927536232, "y2": -8.840579710144928, "center_x": 9.565217391304348, "center_y": -8.985507246376812, "value_uncond": 2.3930228500439113e-07}, {"x": 9.710144927536234, "y": -9.130434782608695, "x2": 10.000000000000002, "y2": -8.840579710144928, "center_x": 9.855072463768117, "center_y": -8.985507246376812, "value_uncond": 2.0003522761257018e-07}, {"x": 10.0, "y": -9.130434782608695, "x2": 10.289855072463768, "y2": -8.840579710144928, "center_x": 10.144927536231883, "center_y": -8.985507246376812, "value_uncond": 1.6565781867906704e-07}, {"x": -10.0, "y": -8.840579710144928, "x2": -9.710144927536232, "y2": -8.55072463768116, "center_x": -9.855072463768117, "center_y": -8.695652173913043, "value_uncond": 3.470915591894953e-11}, {"x": -9.710144927536232, "y": -8.840579710144928, "x2": -9.420289855072465, "y2": -8.55072463768116, "center_x": -9.565217391304348, "center_y": -8.695652173913043, "value_uncond": 5.42293148302932e-11}, {"x": -9.420289855072463, "y": -8.840579710144928, "x2": -9.130434782608695, "y2": -8.55072463768116, "center_x": -9.275362318840578, "center_y": -8.695652173913043, "value_uncond": 8.394019945216559e-11}, {"x": -9.130434782608695, "y": -8.840579710144928, "x2": -8.840579710144928, "y2": -8.55072463768116, "center_x": -8.985507246376812, "center_y": -8.695652173913043, "value_uncond": 1.2872167750465555e-10}, {"x": -8.840579710144928, "y": -8.840579710144928, "x2": -8.55072463768116, "y2": -8.55072463768116, "center_x": -8.695652173913043, "center_y": -8.695652173913043, "value_uncond": 1.9555962664735687e-10}, {"x": -8.55072463768116, "y": -8.840579710144928, "x2": -8.260869565217392, "y2": -8.55072463768116, "center_x": -8.405797101449277, "center_y": -8.695652173913043, "value_uncond": 2.9434219389693743e-10}, {"x": -8.26086956521739, "y": -8.840579710144928, "x2": -7.971014492753623, "y2": -8.55072463768116, "center_x": -8.115942028985508, "center_y": -8.695652173913043, "value_uncond": 4.3890614393438853e-10}, {"x": -7.971014492753623, "y": -8.840579710144928, "x2": -7.681159420289855, "y2": -8.55072463768116, "center_x": -7.826086956521739, "center_y": -8.695652173913043, "value_uncond": 6.483904543068586e-10}, {"x": -7.681159420289855, "y": -8.840579710144928, "x2": -7.391304347826088, "y2": -8.55072463768116, "center_x": -7.536231884057972, "center_y": -8.695652173913043, "value_uncond": 9.4895884748109e-10}, {"x": -7.391304347826087, "y": -8.840579710144928, "x2": -7.101449275362319, "y2": -8.55072463768116, "center_x": -7.246376811594203, "center_y": -8.695652173913043, "value_uncond": 1.3759541439608688e-09}, {"x": -7.101449275362318, "y": -8.840579710144928, "x2": -6.811594202898551, "y2": -8.55072463768116, "center_x": -6.956521739130435, "center_y": -8.695652173913043, "value_uncond": 1.976543407052434e-09}, {"x": -6.811594202898551, "y": -8.840579710144928, "x2": -6.521739130434783, "y2": -8.55072463768116, "center_x": -6.666666666666667, "center_y": -8.695652173913043, "value_uncond": 2.8129017726522515e-09}, {"x": -6.521739130434782, "y": -8.840579710144928, "x2": -6.231884057971015, "y2": -8.55072463768116, "center_x": -6.3768115942028984, "center_y": -8.695652173913043, "value_uncond": 3.965962392440151e-09}, {"x": -6.231884057971014, "y": -8.840579710144928, "x2": -5.942028985507246, "y2": -8.55072463768116, "center_x": -6.08695652173913, "center_y": -8.695652173913043, "value_uncond": 5.539727868219475e-09}, {"x": -5.942028985507246, "y": -8.840579710144928, "x2": -5.6521739130434785, "y2": -8.55072463768116, "center_x": -5.797101449275362, "center_y": -8.695652173913043, "value_uncond": 7.666093027948395e-09}, {"x": -5.6521739130434785, "y": -8.840579710144928, "x2": -5.362318840579711, "y2": -8.55072463768116, "center_x": -5.507246376811595, "center_y": -8.695652173913043, "value_uncond": 1.05100686710422e-08}, {"x": -5.36231884057971, "y": -8.840579710144928, "x2": -5.072463768115942, "y2": -8.55072463768116, "center_x": -5.217391304347826, "center_y": -8.695652173913043, "value_uncond": 1.4275220877672309e-08}, {"x": -5.0724637681159415, "y": -8.840579710144928, "x2": -4.782608695652174, "y2": -8.55072463768116, "center_x": -4.927536231884058, "center_y": -8.695652173913043, "value_uncond": 1.9209052094416735e-08}, {"x": -4.782608695652174, "y": -8.840579710144928, "x2": -4.492753623188406, "y2": -8.55072463768116, "center_x": -4.63768115942029, "center_y": -8.695652173913043, "value_uncond": 2.560795196522492e-08}, {"x": -4.492753623188405, "y": -8.840579710144928, "x2": -4.202898550724638, "y2": -8.55072463768116, "center_x": -4.3478260869565215, "center_y": -8.695652173913043, "value_uncond": 3.382124365638135e-08}, {"x": -4.202898550724638, "y": -8.840579710144928, "x2": -3.91304347826087, "y2": -8.55072463768116, "center_x": -4.057971014492754, "center_y": -8.695652173913043, "value_uncond": 4.425375370325845e-08}, {"x": -3.913043478260869, "y": -8.840579710144928, "x2": -3.6231884057971016, "y2": -8.55072463768116, "center_x": -3.7681159420289854, "center_y": -8.695652173913043, "value_uncond": 5.736625118783737e-08}, {"x": -3.6231884057971016, "y": -8.840579710144928, "x2": -3.333333333333334, "y2": -8.55072463768116, "center_x": -3.4782608695652177, "center_y": -8.695652173913043, "value_uncond": 7.36730484550044e-08}, {"x": -3.333333333333333, "y": -8.840579710144928, "x2": -3.0434782608695654, "y2": -8.55072463768116, "center_x": -3.1884057971014492, "center_y": -8.695652173913043, "value_uncond": 9.373604499676155e-08}, {"x": -3.0434782608695645, "y": -8.840579710144928, "x2": -2.753623188405797, "y2": -8.55072463768116, "center_x": -2.8985507246376807, "center_y": -8.695652173913043, "value_uncond": 1.1815454300928705e-07}, {"x": -2.753623188405797, "y": -8.840579710144928, "x2": -2.4637681159420293, "y2": -8.55072463768116, "center_x": -2.608695652173913, "center_y": -8.695652173913043, "value_uncond": 1.475502802555563e-07}, {"x": -2.4637681159420284, "y": -8.840579710144928, "x2": -2.1739130434782608, "y2": -8.55072463768116, "center_x": -2.3188405797101446, "center_y": -8.695652173913043, "value_uncond": 1.8254732244247453e-07}, {"x": -2.1739130434782608, "y": -8.840579710144928, "x2": -1.8840579710144931, "y2": -8.55072463768116, "center_x": -2.028985507246377, "center_y": -8.695652173913043, "value_uncond": 2.2374673685142385e-07}, {"x": -1.8840579710144922, "y": -8.840579710144928, "x2": -1.5942028985507246, "y2": -8.55072463768116, "center_x": -1.7391304347826084, "center_y": -8.695652173913043, "value_uncond": 2.7169632728971814e-07}, {"x": -1.5942028985507246, "y": -8.840579710144928, "x2": -1.304347826086957, "y2": -8.55072463768116, "center_x": -1.4492753623188408, "center_y": -8.695652173913043, "value_uncond": 3.268561341934916e-07}, {"x": -1.304347826086957, "y": -8.840579710144928, "x2": -1.0144927536231894, "y2": -8.55072463768116, "center_x": -1.1594202898550732, "center_y": -8.695652173913043, "value_uncond": 3.895608695257747e-07}, {"x": -1.0144927536231876, "y": -8.840579710144928, "x2": -0.72463768115942, "y2": -8.55072463768116, "center_x": -0.8695652173913038, "center_y": -8.695652173913043, "value_uncond": 4.5998093079354775e-07}, {"x": -0.72463768115942, "y": -8.840579710144928, "x2": -0.43478260869565233, "y2": -8.55072463768116, "center_x": -0.5797101449275361, "center_y": -8.695652173913043, "value_uncond": 5.380840805434449e-07}, {"x": -0.43478260869565233, "y": -8.840579710144928, "x2": -0.1449275362318847, "y2": -8.55072463768116, "center_x": -0.2898550724637685, "center_y": -8.695652173913043, "value_uncond": 6.236002400630083e-07}, {"x": -0.14492753623188293, "y": -8.840579710144928, "x2": 0.1449275362318847, "y2": -8.55072463768116, "center_x": 8.881784197001252e-16, "center_y": -8.695652173913043, "value_uncond": 7.159920802534279e-07}, {"x": 0.1449275362318847, "y": -8.840579710144928, "x2": 0.43478260869565233, "y2": -8.55072463768116, "center_x": 0.2898550724637685, "center_y": -8.695652173913043, "value_uncond": 8.144341539281496e-07}, {"x": 0.43478260869565233, "y": -8.840579710144928, "x2": 0.72463768115942, "y2": -8.55072463768116, "center_x": 0.5797101449275361, "center_y": -8.695652173913043, "value_uncond": 9.178031665417845e-07}, {"x": 0.72463768115942, "y": -8.840579710144928, "x2": 1.0144927536231876, "y2": -8.55072463768116, "center_x": 0.8695652173913038, "center_y": -8.695652173913043, "value_uncond": 1.024681605709748e-06}, {"x": 1.0144927536231894, "y": -8.840579710144928, "x2": 1.304347826086957, "y2": -8.55072463768116, "center_x": 1.1594202898550732, "center_y": -8.695652173913043, "value_uncond": 1.1333763423870968e-06}, {"x": 1.304347826086957, "y": -8.840579710144928, "x2": 1.5942028985507246, "y2": -8.55072463768116, "center_x": 1.4492753623188408, "center_y": -8.695652173913043, "value_uncond": 1.241952999291727e-06}, {"x": 1.5942028985507246, "y": -8.840579710144928, "x2": 1.8840579710144922, "y2": -8.55072463768116, "center_x": 1.7391304347826084, "center_y": -8.695652173913043, "value_uncond": 1.3482858995648677e-06}, {"x": 1.884057971014494, "y": -8.840579710144928, "x2": 2.1739130434782616, "y2": -8.55072463768116, "center_x": 2.028985507246378, "center_y": -8.695652173913043, "value_uncond": 1.4501223269614357e-06}, {"x": 2.1739130434782616, "y": -8.840579710144928, "x2": 2.4637681159420293, "y2": -8.55072463768116, "center_x": 2.3188405797101455, "center_y": -8.695652173913043, "value_uncond": 1.5451587315205457e-06}, {"x": 2.4637681159420293, "y": -8.840579710144928, "x2": 2.753623188405797, "y2": -8.55072463768116, "center_x": 2.608695652173913, "center_y": -8.695652173913043, "value_uncond": 1.6311254954406947e-06}, {"x": 2.753623188405797, "y": -8.840579710144928, "x2": 3.0434782608695645, "y2": -8.55072463768116, "center_x": 2.8985507246376807, "center_y": -8.695652173913043, "value_uncond": 1.7058760279322381e-06}, {"x": 3.0434782608695663, "y": -8.840579710144928, "x2": 3.333333333333334, "y2": -8.55072463768116, "center_x": 3.18840579710145, "center_y": -8.695652173913043, "value_uncond": 1.7674753717998176e-06}, {"x": 3.333333333333334, "y": -8.840579710144928, "x2": 3.6231884057971016, "y2": -8.55072463768116, "center_x": 3.4782608695652177, "center_y": -8.695652173913043, "value_uncond": 1.814283246812509e-06}, {"x": 3.6231884057971016, "y": -8.840579710144928, "x2": 3.913043478260869, "y2": -8.55072463768116, "center_x": 3.7681159420289854, "center_y": -8.695652173913043, "value_uncond": 1.8450265672647379e-06}, {"x": 3.913043478260871, "y": -8.840579710144928, "x2": 4.202898550724639, "y2": -8.55072463768116, "center_x": 4.057971014492755, "center_y": -8.695652173913043, "value_uncond": 1.8588569626176071e-06}, {"x": 4.202898550724639, "y": -8.840579710144928, "x2": 4.492753623188406, "y2": -8.55072463768116, "center_x": 4.347826086956522, "center_y": -8.695652173913043, "value_uncond": 1.8553896746451031e-06}, {"x": 4.492753623188406, "y": -8.840579710144928, "x2": 4.782608695652174, "y2": -8.55072463768116, "center_x": 4.63768115942029, "center_y": -8.695652173913043, "value_uncond": 1.834721342061928e-06}, {"x": 4.782608695652174, "y": -8.840579710144928, "x2": 5.0724637681159415, "y2": -8.55072463768116, "center_x": 4.927536231884058, "center_y": -8.695652173913043, "value_uncond": 1.7974255253065148e-06}, {"x": 5.072463768115943, "y": -8.840579710144928, "x2": 5.362318840579711, "y2": -8.55072463768116, "center_x": 5.217391304347827, "center_y": -8.695652173913043, "value_uncond": 1.7445262607207185e-06}, {"x": 5.362318840579711, "y": -8.840579710144928, "x2": 5.6521739130434785, "y2": -8.55072463768116, "center_x": 5.507246376811595, "center_y": -8.695652173913043, "value_uncond": 1.6774513459742732e-06}, {"x": 5.6521739130434785, "y": -8.840579710144928, "x2": 5.942028985507246, "y2": -8.55072463768116, "center_x": 5.797101449275362, "center_y": -8.695652173913043, "value_uncond": 1.5979683308139013e-06}, {"x": 5.942028985507246, "y": -8.840579710144928, "x2": 6.231884057971014, "y2": -8.55072463768116, "center_x": 6.08695652173913, "center_y": -8.695652173913043, "value_uncond": 1.5081072167683986e-06}, {"x": 6.2318840579710155, "y": -8.840579710144928, "x2": 6.521739130434783, "y2": -8.55072463768116, "center_x": 6.376811594202899, "center_y": -8.695652173913043, "value_uncond": 1.4100745781337623e-06}, {"x": 6.521739130434785, "y": -8.840579710144928, "x2": 6.8115942028985526, "y2": -8.55072463768116, "center_x": 6.666666666666669, "center_y": -8.695652173913043, "value_uncond": 1.3061641575386623e-06}, {"x": 6.811594202898551, "y": -8.840579710144928, "x2": 7.101449275362318, "y2": -8.55072463768116, "center_x": 6.956521739130435, "center_y": -8.695652173913043, "value_uncond": 1.198668950703914e-06}, {"x": 7.10144927536232, "y": -8.840579710144928, "x2": 7.391304347826088, "y2": -8.55072463768116, "center_x": 7.246376811594204, "center_y": -8.695652173913043, "value_uncond": 1.089799399320701e-06}, {"x": 7.391304347826086, "y": -8.840579710144928, "x2": 7.681159420289854, "y2": -8.55072463768116, "center_x": 7.53623188405797, "center_y": -8.695652173913043, "value_uncond": 9.8161161154077e-07}, {"x": 7.681159420289855, "y": -8.840579710144928, "x2": 7.971014492753623, "y2": -8.55072463768116, "center_x": 7.826086956521739, "center_y": -8.695652173913043, "value_uncond": 8.759486032096825e-07}, {"x": 7.971014492753625, "y": -8.840579710144928, "x2": 8.260869565217392, "y2": -8.55072463768116, "center_x": 8.115942028985508, "center_y": -8.695652173913043, "value_uncond": 7.74396490945468e-07}, {"x": 8.26086956521739, "y": -8.840579710144928, "x2": 8.550724637681158, "y2": -8.55072463768116, "center_x": 8.405797101449274, "center_y": -8.695652173913043, "value_uncond": 6.782564662225695e-07}, {"x": 8.55072463768116, "y": -8.840579710144928, "x2": 8.840579710144928, "y2": -8.55072463768116, "center_x": 8.695652173913043, "center_y": -8.695652173913043, "value_uncond": 5.885323283838296e-07}, {"x": 8.84057971014493, "y": -8.840579710144928, "x2": 9.130434782608697, "y2": -8.55072463768116, "center_x": 8.985507246376812, "center_y": -8.695652173913043, "value_uncond": 5.059324312362338e-07}, {"x": 9.130434782608695, "y": -8.840579710144928, "x2": 9.420289855072463, "y2": -8.55072463768116, "center_x": 9.275362318840578, "center_y": -8.695652173913043, "value_uncond": 4.308841604846021e-07}, {"x": 9.420289855072465, "y": -8.840579710144928, "x2": 9.710144927536232, "y2": -8.55072463768116, "center_x": 9.565217391304348, "center_y": -8.695652173913043, "value_uncond": 3.6355854288509836e-07}, {"x": 9.710144927536234, "y": -8.840579710144928, "x2": 10.000000000000002, "y2": -8.55072463768116, "center_x": 9.855072463768117, "center_y": -8.695652173913043, "value_uncond": 3.039023044647501e-07}, {"x": 10.0, "y": -8.840579710144928, "x2": 10.289855072463768, "y2": -8.55072463768116, "center_x": 10.144927536231883, "center_y": -8.695652173913043, "value_uncond": 2.5167463476322513e-07}, {"x": -10.0, "y": -8.55072463768116, "x2": -9.710144927536232, "y2": -8.260869565217392, "center_x": -9.855072463768117, "center_y": -8.405797101449277, "value_uncond": 5.2241708969495986e-11}, {"x": -9.710144927536232, "y": -8.55072463768116, "x2": -9.420289855072465, "y2": -8.260869565217392, "center_x": -9.565217391304348, "center_y": -8.405797101449277, "value_uncond": 8.162203914133939e-11}, {"x": -9.420289855072463, "y": -8.55072463768116, "x2": -9.130434782608695, "y2": -8.260869565217392, "center_x": -9.275362318840578, "center_y": -8.405797101449277, "value_uncond": 1.2634071196837675e-10}, {"x": -9.130434782608695, "y": -8.55072463768116, "x2": -8.840579710144928, "y2": -8.260869565217392, "center_x": -8.985507246376812, "center_y": -8.405797101449277, "value_uncond": 1.9374255109995932e-10}, {"x": -8.840579710144928, "y": -8.55072463768116, "x2": -8.55072463768116, "y2": -8.260869565217392, "center_x": -8.695652173913043, "center_y": -8.405797101449277, "value_uncond": 2.9434219389693743e-10}, {"x": -8.55072463768116, "y": -8.55072463768116, "x2": -8.260869565217392, "y2": -8.260869565217392, "center_x": -8.405797101449277, "center_y": -8.405797101449277, "value_uncond": 4.430225634675171e-10}, {"x": -8.26086956521739, "y": -8.55072463768116, "x2": -7.971014492753623, "y2": -8.260869565217392, "center_x": -8.115942028985508, "center_y": -8.405797101449277, "value_uncond": 6.606097563964613e-10}, {"x": -7.971014492753623, "y": -8.55072463768116, "x2": -7.681159420289855, "y2": -8.260869565217392, "center_x": -7.826086956521739, "center_y": -8.405797101449277, "value_uncond": 9.75910376259108e-10}, {"x": -7.681159420289855, "y": -8.55072463768116, "x2": -7.391304347826088, "y2": -8.260869565217392, "center_x": -7.536231884057972, "center_y": -8.405797101449277, "value_uncond": 1.4283041641778947e-09}, {"x": -7.391304347826087, "y": -8.55072463768116, "x2": -7.101449275362319, "y2": -8.260869565217392, "center_x": -7.246376811594203, "center_y": -8.405797101449277, "value_uncond": 2.07098657518581e-09}, {"x": -7.101449275362318, "y": -8.55072463768116, "x2": -6.811594202898551, "y2": -8.260869565217392, "center_x": -6.956521739130435, "center_y": -8.405797101449277, "value_uncond": 2.974950058651102e-09}, {"x": -6.811594202898551, "y": -8.55072463768116, "x2": -6.521739130434783, "y2": -8.260869565217392, "center_x": -6.666666666666667, "center_y": -8.405797101449277, "value_uncond": 4.233776128403348e-09}, {"x": -6.521739130434782, "y": -8.55072463768116, "x2": -6.231884057971015, "y2": -8.260869565217392, "center_x": -6.3768115942028984, "center_y": -8.405797101449277, "value_uncond": 5.969279505777591e-09}, {"x": -6.231884057971014, "y": -8.55072463768116, "x2": -5.942028985507246, "y2": -8.260869565217392, "center_x": -6.08695652173913, "center_y": -8.405797101449277, "value_uncond": 8.33799737848785e-09}, {"x": -5.942028985507246, "y": -8.55072463768116, "x2": -5.6521739130434785, "y2": -8.260869565217392, "center_x": -5.797101449275362, "center_y": -8.405797101449277, "value_uncond": 1.153844829399938e-08}, {"x": -5.6521739130434785, "y": -8.55072463768116, "x2": -5.362318840579711, "y2": -8.260869565217392, "center_x": -5.507246376811595, "center_y": -8.405797101449277, "value_uncond": 1.5818994562821986e-08}, {"x": -5.36231884057971, "y": -8.55072463768116, "x2": -5.072463768115942, "y2": -8.260869565217392, "center_x": -5.217391304347826, "center_y": -8.405797101449277, "value_uncond": 2.1486029113127425e-08}, {"x": -5.0724637681159415, "y": -8.55072463768116, "x2": -4.782608695652174, "y2": -8.260869565217392, "center_x": -4.927536231884058, "center_y": -8.405797101449277, "value_uncond": 2.8912074711345388e-08}, {"x": -4.782608695652174, "y": -8.55072463768116, "x2": -4.492753623188406, "y2": -8.260869565217392, "center_x": -4.63768115942029, "center_y": -8.405797101449277, "value_uncond": 3.854323559455201e-08}, {"x": -4.492753623188405, "y": -8.55072463768116, "x2": -4.202898550724638, "y2": -8.260869565217392, "center_x": -4.3478260869565215, "center_y": -8.405797101449277, "value_uncond": 5.0905287705900384e-08}, {"x": -4.202898550724638, "y": -8.55072463768116, "x2": -3.91304347826087, "y2": -8.260869565217392, "center_x": -4.057971014492754, "center_y": -8.405797101449277, "value_uncond": 6.660754664192793e-08}, {"x": -3.913043478260869, "y": -8.55072463768116, "x2": -3.6231884057971016, "y2": -8.260869565217392, "center_x": -3.7681159420289854, "center_y": -8.405797101449277, "value_uncond": 8.634352867076865e-08}, {"x": -3.6231884057971016, "y": -8.55072463768116, "x2": -3.333333333333334, "y2": -8.260869565217392, "center_x": -3.4782608695652177, "center_y": -8.405797101449277, "value_uncond": 1.1088733950400234e-07}, {"x": -3.333333333333333, "y": -8.55072463768116, "x2": -3.0434782608695654, "y2": -8.260869565217392, "center_x": -3.1884057971014492, "center_y": -8.405797101449277, "value_uncond": 1.41084709582318e-07}, {"x": -3.0434782608695645, "y": -8.55072463768116, "x2": -2.753623188405797, "y2": -8.260869565217392, "center_x": -2.8985507246376807, "center_y": -8.405797101449277, "value_uncond": 1.7783766518923127e-07}, {"x": -2.753623188405797, "y": -8.55072463768116, "x2": -2.4637681159420293, "y2": -8.260869565217392, "center_x": -2.608695652173913, "center_y": -8.405797101449277, "value_uncond": 2.2208200099933804e-07}, {"x": -2.4637681159420284, "y": -8.55072463768116, "x2": -2.1739130434782608, "y2": -8.260869565217392, "center_x": -2.3188405797101446, "center_y": -8.405797101449277, "value_uncond": 2.747570155399246e-07}, {"x": -2.1739130434782608, "y": -8.55072463768116, "x2": -1.8840579710144931, "y2": -8.260869565217392, "center_x": -2.028985507246377, "center_y": -8.405797101449277, "value_uncond": 3.3676739177298414e-07}, {"x": -1.8840579710144922, "y": -8.55072463768116, "x2": -1.5942028985507246, "y2": -8.260869565217392, "center_x": -1.7391304347826084, "center_y": -8.405797101449277, "value_uncond": 4.089376443349696e-07}, {"x": -1.5942028985507246, "y": -8.55072463768116, "x2": -1.304347826086957, "y2": -8.260869565217392, "center_x": -1.4492753623188408, "center_y": -8.405797101449277, "value_uncond": 4.919601927890292e-07}, {"x": -1.304347826086957, "y": -8.55072463768116, "x2": -1.0144927536231894, "y2": -8.260869565217392, "center_x": -1.1594202898550732, "center_y": -8.405797101449277, "value_uncond": 5.863388213528535e-07}, {"x": -1.0144927536231876, "y": -8.55072463768116, "x2": -0.72463768115942, "y2": -8.260869565217392, "center_x": -0.8695652173913038, "center_y": -8.405797101449277, "value_uncond": 6.923300000192465e-07}, {"x": -0.72463768115942, "y": -8.55072463768116, "x2": -0.43478260869565233, "y2": -8.260869565217392, "center_x": -0.5797101449275361, "center_y": -8.405797101449277, "value_uncond": 8.098852073070005e-07}, {"x": -0.43478260869565233, "y": -8.55072463768116, "x2": -0.1449275362318847, "y2": -8.260869565217392, "center_x": -0.2898550724637685, "center_y": -8.405797101449277, "value_uncond": 9.385979402885297e-07}, {"x": -0.14492753623188293, "y": -8.55072463768116, "x2": 0.1449275362318847, "y2": -8.260869565217392, "center_x": 8.881784197001252e-16, "center_y": -8.405797101449277, "value_uncond": 1.077659450100381e-06}, {"x": 0.1449275362318847, "y": -8.55072463768116, "x2": 0.43478260869565233, "y2": -8.260869565217392, "center_x": 0.2898550724637685, "center_y": -8.405797101449277, "value_uncond": 1.2258273333896651e-06}, {"x": 0.43478260869565233, "y": -8.55072463768116, "x2": 0.72463768115942, "y2": -8.260869565217392, "center_x": 0.5797101449275361, "center_y": -8.405797101449277, "value_uncond": 1.3814108885194928e-06}, {"x": 0.72463768115942, "y": -8.55072463768116, "x2": 1.0144927536231876, "y2": -8.260869565217392, "center_x": 0.8695652173913038, "center_y": -8.405797101449277, "value_uncond": 1.5422765784592037e-06}, {"x": 1.0144927536231894, "y": -8.55072463768116, "x2": 1.304347826086957, "y2": -8.260869565217392, "center_x": 1.1594202898550732, "center_y": -8.405797101449277, "value_uncond": 1.705876027932241e-06}, {"x": 1.304347826086957, "y": -8.55072463768116, "x2": 1.5942028985507246, "y2": -8.260869565217392, "center_x": 1.4492753623188408, "center_y": -8.405797101449277, "value_uncond": 1.8692977522789205e-06}, {"x": 1.5942028985507246, "y": -8.55072463768116, "x2": 1.8840579710144922, "y2": -8.260869565217392, "center_x": 1.7391304347826084, "center_y": -8.405797101449277, "value_uncond": 2.0293423365645064e-06}, {"x": 1.884057971014494, "y": -8.55072463768116, "x2": 2.1739130434782616, "y2": -8.260869565217392, "center_x": 2.028985507246378, "center_y": -8.405797101449277, "value_uncond": 2.1826191553660887e-06}, {"x": 2.1739130434782616, "y": -8.55072463768116, "x2": 2.4637681159420293, "y2": -8.260869565217392, "center_x": 2.3188405797101455, "center_y": -8.405797101449277, "value_uncond": 2.325661072031476e-06}, {"x": 2.4637681159420293, "y": -8.55072463768116, "x2": 2.753623188405797, "y2": -8.260869565217392, "center_x": 2.608695652173913, "center_y": -8.405797101449277, "value_uncond": 2.455052022138501e-06}, {"x": 2.753623188405797, "y": -8.55072463768116, "x2": 3.0434782608695645, "y2": -8.260869565217392, "center_x": 2.8985507246376807, "center_y": -8.405797101449277, "value_uncond": 2.567561112617595e-06}, {"x": 3.0434782608695663, "y": -8.55072463768116, "x2": 3.333333333333334, "y2": -8.260869565217392, "center_x": 3.18840579710145, "center_y": -8.405797101449277, "value_uncond": 2.6602759859656123e-06}, {"x": 3.333333333333334, "y": -8.55072463768116, "x2": 3.6231884057971016, "y2": -8.260869565217392, "center_x": 3.4782608695652177, "center_y": -8.405797101449277, "value_uncond": 2.7307278111152564e-06}, {"x": 3.6231884057971016, "y": -8.55072463768116, "x2": 3.913043478260869, "y2": -8.260869565217392, "center_x": 3.7681159420289854, "center_y": -8.405797101449277, "value_uncond": 2.7770004316183796e-06}, {"x": 3.913043478260871, "y": -8.55072463768116, "x2": 4.202898550724639, "y2": -8.260869565217392, "center_x": 4.057971014492755, "center_y": -8.405797101449277, "value_uncond": 2.7978169415515185e-06}, {"x": 4.202898550724639, "y": -8.55072463768116, "x2": 4.492753623188406, "y2": -8.260869565217392, "center_x": 4.347826086956522, "center_y": -8.405797101449277, "value_uncond": 2.7925982306846808e-06}, {"x": 4.492753623188406, "y": -8.55072463768116, "x2": 4.782608695652174, "y2": -8.260869565217392, "center_x": 4.63768115942029, "center_y": -8.405797101449277, "value_uncond": 2.761489752615771e-06}, {"x": 4.782608695652174, "y": -8.55072463768116, "x2": 5.0724637681159415, "y2": -8.260869565217392, "center_x": 4.927536231884058, "center_y": -8.405797101449277, "value_uncond": 2.705354788997938e-06}, {"x": 5.072463768115943, "y": -8.55072463768116, "x2": 5.362318840579711, "y2": -8.260869565217392, "center_x": 5.217391304347827, "center_y": -8.405797101449277, "value_uncond": 2.625734645205194e-06}, {"x": 5.362318840579711, "y": -8.55072463768116, "x2": 5.6521739130434785, "y2": -8.260869565217392, "center_x": 5.507246376811595, "center_y": -8.405797101449277, "value_uncond": 2.52477833893488e-06}, {"x": 5.6521739130434785, "y": -8.55072463768116, "x2": 5.942028985507246, "y2": -8.260869565217392, "center_x": 5.797101449275362, "center_y": -8.405797101449277, "value_uncond": 2.4051462581167118e-06}, {"x": 5.942028985507246, "y": -8.55072463768116, "x2": 6.231884057971014, "y2": -8.260869565217392, "center_x": 6.08695652173913, "center_y": -8.405797101449277, "value_uncond": 2.2698938141044712e-06}, {"x": 6.2318840579710155, "y": -8.55072463768116, "x2": 6.521739130434783, "y2": -8.260869565217392, "center_x": 6.376811594202899, "center_y": -8.405797101449277, "value_uncond": 2.1223421827994186e-06}, {"x": 6.521739130434785, "y": -8.55072463768116, "x2": 6.8115942028985526, "y2": -8.260869565217392, "center_x": 6.666666666666669, "center_y": -8.405797101449277, "value_uncond": 1.965943739567227e-06}, {"x": 6.811594202898551, "y": -8.55072463768116, "x2": 7.101449275362318, "y2": -8.260869565217392, "center_x": 6.956521739130435, "center_y": -8.405797101449277, "value_uncond": 1.8041497355819331e-06}, {"x": 7.10144927536232, "y": -8.55072463768116, "x2": 7.391304347826088, "y2": -8.260869565217392, "center_x": 7.246376811594204, "center_y": -8.405797101449277, "value_uncond": 1.6402871676680804e-06}, {"x": 7.391304347826086, "y": -8.55072463768116, "x2": 7.681159420289854, "y2": -8.260869565217392, "center_x": 7.53623188405797, "center_y": -8.405797101449277, "value_uncond": 1.4774507409785143e-06}, {"x": 7.681159420289855, "y": -8.55072463768116, "x2": 7.971014492753623, "y2": -8.260869565217392, "center_x": 7.826086956521739, "center_y": -8.405797101449277, "value_uncond": 1.3184144295520983e-06}, {"x": 7.971014492753625, "y": -8.55072463768116, "x2": 8.260869565217392, "y2": -8.260869565217392, "center_x": 8.115942028985508, "center_y": -8.405797101449277, "value_uncond": 1.165565541306785e-06}, {"x": 8.26086956521739, "y": -8.55072463768116, "x2": 8.550724637681158, "y2": -8.260869565217392, "center_x": 8.405797101449274, "center_y": -8.405797101449277, "value_uncond": 1.020862535459508e-06}, {"x": 8.55072463768116, "y": -8.55072463768116, "x2": 8.840579710144928, "y2": -8.260869565217392, "center_x": 8.695652173913043, "center_y": -8.405797101449277, "value_uncond": 8.858162581182798e-07}, {"x": 8.84057971014493, "y": -8.55072463768116, "x2": 9.130434782608697, "y2": -8.260869565217392, "center_x": 8.985507246376812, "center_y": -8.405797101449277, "value_uncond": 7.614928721571976e-07}, {"x": 9.130434782608695, "y": -8.55072463768116, "x2": 9.420289855072463, "y2": -8.260869565217392, "center_x": 9.275362318840578, "center_y": -8.405797101449277, "value_uncond": 6.485356476016378e-07}, {"x": 9.420289855072465, "y": -8.55072463768116, "x2": 9.710144927536232, "y2": -8.260869565217392, "center_x": 9.565217391304348, "center_y": -8.405797101449277, "value_uncond": 5.472020015447292e-07}, {"x": 9.710144927536234, "y": -8.55072463768116, "x2": 10.000000000000002, "y2": -8.260869565217392, "center_x": 9.855072463768117, "center_y": -8.405797101449277, "value_uncond": 4.5741174985874186e-07}, {"x": 10.0, "y": -8.55072463768116, "x2": 10.289855072463768, "y2": -8.260869565217392, "center_x": 10.144927536231883, "center_y": -8.405797101449277, "value_uncond": 3.7880244207052163e-07}, {"x": -10.0, "y": -8.26086956521739, "x2": -9.710144927536232, "y2": -7.971014492753623, "center_x": -9.855072463768117, "center_y": -8.115942028985508, "value_uncond": 7.789983057737388e-11}, {"x": -9.710144927536232, "y": -8.26086956521739, "x2": -9.420289855072465, "y2": -7.971014492753623, "center_x": -9.565217391304348, "center_y": -8.115942028985508, "value_uncond": 1.2171008846978545e-10}, {"x": -9.420289855072463, "y": -8.26086956521739, "x2": -9.130434782608695, "y2": -7.971014492753623, "center_x": -9.275362318840578, "center_y": -8.115942028985508, "value_uncond": 1.883920004054249e-10}, {"x": -9.130434782608695, "y": -8.26086956521739, "x2": -8.840579710144928, "y2": -7.971014492753623, "center_x": -8.985507246376812, "center_y": -8.115942028985508, "value_uncond": 2.888977448101407e-10}, {"x": -8.840579710144928, "y": -8.26086956521739, "x2": -8.55072463768116, "y2": -7.971014492753623, "center_x": -8.695652173913043, "center_y": -8.115942028985508, "value_uncond": 4.3890614393438853e-10}, {"x": -8.55072463768116, "y": -8.26086956521739, "x2": -8.260869565217392, "y2": -7.971014492753623, "center_x": -8.405797101449277, "center_y": -8.115942028985508, "value_uncond": 6.606097563964613e-10}, {"x": -8.26086956521739, "y": -8.26086956521739, "x2": -7.971014492753623, "y2": -7.971014492753623, "center_x": -8.115942028985508, "center_y": -8.115942028985508, "value_uncond": 9.850632591497524e-10}, {"x": -7.971014492753623, "y": -8.26086956521739, "x2": -7.681159420289855, "y2": -7.971014492753623, "center_x": -7.826086956521739, "center_y": -8.115942028985508, "value_uncond": 1.4552214019965556e-09}, {"x": -7.681159420289855, "y": -8.26086956521739, "x2": -7.391304347826088, "y2": -7.971014492753623, "center_x": -7.536231884057972, "center_y": -8.115942028985508, "value_uncond": 2.129804989101398e-09}, {"x": -7.391304347826087, "y": -8.26086956521739, "x2": -7.101449275362319, "y2": -7.971014492753623, "center_x": -7.246376811594203, "center_y": -8.115942028985508, "value_uncond": 3.0881360222957336e-09}, {"x": -7.101449275362318, "y": -8.26086956521739, "x2": -6.811594202898551, "y2": -7.971014492753623, "center_x": -6.956521739130435, "center_y": -8.115942028985508, "value_uncond": 4.4360743573757856e-09}, {"x": -6.811594202898551, "y": -8.26086956521739, "x2": -6.521739130434783, "y2": -7.971014492753623, "center_x": -6.666666666666667, "center_y": -8.115942028985508, "value_uncond": 6.313163363352597e-09}, {"x": -6.521739130434782, "y": -8.26086956521739, "x2": -6.231884057971015, "y2": -7.971014492753623, "center_x": -6.3768115942028984, "center_y": -8.115942028985508, "value_uncond": 8.901046143811682e-09}, {"x": -6.231884057971014, "y": -8.26086956521739, "x2": -5.942028985507246, "y2": -7.971014492753623, "center_x": -6.08695652173913, "center_y": -8.115942028985508, "value_uncond": 1.2433141946371896e-08}, {"x": -5.942028985507246, "y": -8.26086956521739, "x2": -5.6521739130434785, "y2": -7.971014492753623, "center_x": -5.797101449275362, "center_y": -8.115942028985508, "value_uncond": 1.720547020682608e-08}, {"x": -5.6521739130434785, "y": -8.26086956521739, "x2": -5.362318840579711, "y2": -7.971014492753623, "center_x": -5.507246376811595, "center_y": -8.115942028985508, "value_uncond": 2.358837451255229e-08}, {"x": -5.36231884057971, "y": -8.26086956521739, "x2": -5.072463768115942, "y2": -7.971014492753623, "center_x": -5.217391304347826, "center_y": -8.115942028985508, "value_uncond": 3.203873036907085e-08}, {"x": -5.0724637681159415, "y": -8.26086956521739, "x2": -4.782608695652174, "y2": -7.971014492753623, "center_x": -4.927536231884058, "center_y": -8.115942028985508, "value_uncond": 4.311202229179132e-08}, {"x": -4.782608695652174, "y": -8.26086956521739, "x2": -4.492753623188406, "y2": -7.971014492753623, "center_x": -4.63768115942029, "center_y": -8.115942028985508, "value_uncond": 5.747345525148468e-08}, {"x": -4.492753623188405, "y": -8.26086956521739, "x2": -4.202898550724638, "y2": -7.971014492753623, "center_x": -4.3478260869565215, "center_y": -8.115942028985508, "value_uncond": 7.59070360829428e-08}, {"x": -4.202898550724638, "y": -8.26086956521739, "x2": -3.91304347826087, "y2": -7.971014492753623, "center_x": -4.057971014492754, "center_y": -8.115942028985508, "value_uncond": 9.932134114545186e-08}, {"x": -3.913043478260869, "y": -8.26086956521739, "x2": -3.6231884057971016, "y2": -7.971014492753623, "center_x": -3.7681159420289854, "center_y": -8.115942028985508, "value_uncond": 1.287505019951189e-07}, {"x": -3.6231884057971016, "y": -8.26086956521739, "x2": -3.333333333333334, "y2": -7.971014492753623, "center_x": -3.4782608695652177, "center_y": -8.115942028985508, "value_uncond": 1.6534882052923152e-07}, {"x": -3.333333333333333, "y": -8.26086956521739, "x2": -3.0434782608695654, "y2": -7.971014492753623, "center_x": -3.1884057971014492, "center_y": -8.115942028985508, "value_uncond": 2.1037740132004386e-07}, {"x": -3.0434782608695645, "y": -8.26086956521739, "x2": -2.753623188405797, "y2": -7.971014492753623, "center_x": -2.8985507246376807, "center_y": -8.115942028985508, "value_uncond": 2.651812940615314e-07}, {"x": -2.753623188405797, "y": -8.26086956521739, "x2": -2.4637681159420293, "y2": -7.971014492753623, "center_x": -2.608695652173913, "center_y": -8.115942028985508, "value_uncond": 3.3115590192951433e-07}, {"x": -2.4637681159420284, "y": -8.26086956521739, "x2": -2.1739130434782608, "y2": -7.971014492753623, "center_x": -2.3188405797101446, "center_y": -8.115942028985508, "value_uncond": 4.0970185284334017e-07}, {"x": -2.1739130434782608, "y": -8.26086956521739, "x2": -1.8840579710144931, "y2": -7.971014492753623, "center_x": -2.028985507246377, "center_y": -8.115942028985508, "value_uncond": 5.021681579830735e-07}, {"x": -1.8840579710144922, "y": -8.26086956521739, "x2": -1.5942028985507246, "y2": -7.971014492753623, "center_x": -1.7391304347826084, "center_y": -8.115942028985508, "value_uncond": 6.09784286134387e-07}, {"x": -1.5942028985507246, "y": -8.26086956521739, "x2": -1.304347826086957, "y2": -7.971014492753623, "center_x": -1.4492753623188408, "center_y": -8.115942028985508, "value_uncond": 7.33582733510017e-07}, {"x": -1.304347826086957, "y": -8.26086956521739, "x2": -1.0144927536231894, "y2": -7.971014492753623, "center_x": -1.1594202898550732, "center_y": -8.115942028985508, "value_uncond": 8.743147141490828e-07}, {"x": -1.0144927536231876, "y": -8.26086956521739, "x2": -0.72463768115942, "y2": -7.971014492753623, "center_x": -0.8695652173913038, "center_y": -8.115942028985508, "value_uncond": 1.032362661348308e-06}, {"x": -0.72463768115942, "y": -8.26086956521739, "x2": -0.43478260869565233, "y2": -7.971014492753623, "center_x": -0.5797101449275361, "center_y": -8.115942028985508, "value_uncond": 1.2076542226667024e-06}, {"x": -0.43478260869565233, "y": -8.26086956521739, "x2": -0.1449275362318847, "y2": -7.971014492753623, "center_x": -0.2898550724637685, "center_y": -8.115942028985508, "value_uncond": 1.3995832443276615e-06}, {"x": -0.14492753623188293, "y": -8.26086956521739, "x2": 0.1449275362318847, "y2": -7.971014492753623, "center_x": 8.881784197001252e-16, "center_y": -8.115942028985508, "value_uncond": 1.6069437665590913e-06}, {"x": 0.1449275362318847, "y": -8.26086956521739, "x2": 0.43478260869565233, "y2": -7.971014492753623, "center_x": 0.2898550724637685, "center_y": -8.115942028985508, "value_uncond": 1.8278831889654851e-06}, {"x": 0.43478260869565233, "y": -8.26086956521739, "x2": 0.72463768115942, "y2": -7.971014492753623, "center_x": 0.5797101449275361, "center_y": -8.115942028985508, "value_uncond": 2.0598804345440314e-06}, {"x": 0.72463768115942, "y": -8.26086956521739, "x2": 1.0144927536231876, "y2": -7.971014492753623, "center_x": 0.8695652173913038, "center_y": -8.115942028985508, "value_uncond": 2.2997540956322e-06}, {"x": 1.0144927536231894, "y": -8.26086956521739, "x2": 1.304347826086957, "y2": -7.971014492753623, "center_x": 1.1594202898550732, "center_y": -8.115942028985508, "value_uncond": 2.5437041816438e-06}, {"x": 1.304347826086957, "y": -8.26086956521739, "x2": 1.5942028985507246, "y2": -7.971014492753623, "center_x": 1.4492753623188408, "center_y": -8.115942028985508, "value_uncond": 2.7873892541727638e-06}, {"x": 1.5942028985507246, "y": -8.26086956521739, "x2": 1.8840579710144922, "y2": -7.971014492753623, "center_x": 1.7391304347826084, "center_y": -8.115942028985508, "value_uncond": 3.0260385297535673e-06}, {"x": 1.884057971014494, "y": -8.26086956521739, "x2": 2.1739130434782616, "y2": -7.971014492753623, "center_x": 2.028985507246378, "center_y": -8.115942028985508, "value_uncond": 3.2545961028424198e-06}, {"x": 2.1739130434782616, "y": -8.26086956521739, "x2": 2.4637681159420293, "y2": -7.971014492753623, "center_x": 2.3188405797101455, "center_y": -8.115942028985508, "value_uncond": 3.4678919787526597e-06}, {"x": 2.4637681159420293, "y": -8.26086956521739, "x2": 2.753623188405797, "y2": -7.971014492753623, "center_x": 2.608695652173913, "center_y": -8.115942028985508, "value_uncond": 3.660832318768493e-06}, {"x": 2.753623188405797, "y": -8.26086956521739, "x2": 3.0434782608695645, "y2": -7.971014492753623, "center_x": 2.8985507246376807, "center_y": -8.115942028985508, "value_uncond": 3.828599401040885e-06}, {"x": 3.0434782608695663, "y": -8.26086956521739, "x2": 3.333333333333334, "y2": -7.971014492753623, "center_x": 3.18840579710145, "center_y": -8.115942028985508, "value_uncond": 3.966850485629838e-06}, {"x": 3.333333333333334, "y": -8.26086956521739, "x2": 3.6231884057971016, "y2": -7.971014492753623, "center_x": 3.4782608695652177, "center_y": -8.115942028985508, "value_uncond": 4.071904193697249e-06}, {"x": 3.6231884057971016, "y": -8.26086956521739, "x2": 3.913043478260869, "y2": -7.971014492753623, "center_x": 3.7681159420289854, "center_y": -8.115942028985508, "value_uncond": 4.14090326299778e-06}, {"x": 3.913043478260871, "y": -8.26086956521739, "x2": 4.202898550724639, "y2": -7.971014492753623, "center_x": 4.057971014492755, "center_y": -8.115942028985508, "value_uncond": 4.171943644887863e-06}, {"x": 4.202898550724639, "y": -8.26086956521739, "x2": 4.492753623188406, "y2": -7.971014492753623, "center_x": 4.347826086956522, "center_y": -8.115942028985508, "value_uncond": 4.164161803512874e-06}, {"x": 4.492753623188406, "y": -8.26086956521739, "x2": 4.782608695652174, "y2": -7.971014492753623, "center_x": 4.63768115942029, "center_y": -8.115942028985508, "value_uncond": 4.117774630909027e-06}, {"x": 4.782608695652174, "y": -8.26086956521739, "x2": 5.0724637681159415, "y2": -7.971014492753623, "center_x": 4.927536231884058, "center_y": -8.115942028985508, "value_uncond": 4.034069403006746e-06}, {"x": 5.072463768115943, "y": -8.26086956521739, "x2": 5.362318840579711, "y2": -7.971014492753623, "center_x": 5.217391304347827, "center_y": -8.115942028985508, "value_uncond": 3.915344425697475e-06}, {"x": 5.362318840579711, "y": -8.26086956521739, "x2": 5.6521739130434785, "y2": -7.971014492753623, "center_x": 5.507246376811595, "center_y": -8.115942028985508, "value_uncond": 3.7648041905231814e-06}, {"x": 5.6521739130434785, "y": -8.26086956521739, "x2": 5.942028985507246, "y2": -7.971014492753623, "center_x": 5.797101449275362, "center_y": -8.115942028985508, "value_uncond": 3.586415714893573e-06}, {"x": 5.942028985507246, "y": -8.26086956521739, "x2": 6.231884057971014, "y2": -7.971014492753623, "center_x": 6.08695652173913, "center_y": -8.115942028985508, "value_uncond": 3.3847350524198137e-06}, {"x": 6.2318840579710155, "y": -8.26086956521739, "x2": 6.521739130434783, "y2": -7.971014492753623, "center_x": 6.376811594202899, "center_y": -8.115942028985508, "value_uncond": 3.1647145495149364e-06}, {"x": 6.521739130434785, "y": -8.26086956521739, "x2": 6.8115942028985526, "y2": -7.971014492753623, "center_x": 6.666666666666669, "center_y": -8.115942028985508, "value_uncond": 2.931502189684466e-06}, {"x": 6.811594202898551, "y": -8.26086956521739, "x2": 7.101449275362318, "y2": -7.971014492753623, "center_x": 6.956521739130435, "center_y": -8.115942028985508, "value_uncond": 2.6902442801040447e-06}, {"x": 7.10144927536232, "y": -8.26086956521739, "x2": 7.391304347826088, "y2": -7.971014492753623, "center_x": 7.246376811594204, "center_y": -8.115942028985508, "value_uncond": 2.445901847012585e-06}, {"x": 7.391304347826086, "y": -8.26086956521739, "x2": 7.681159420289854, "y2": -7.971014492753623, "center_x": 7.53623188405797, "center_y": -8.115942028985508, "value_uncond": 2.2030895366735617e-06}, {"x": 7.681159420289855, "y": -8.26086956521739, "x2": 7.971014492753623, "y2": -7.971014492753623, "center_x": 7.826086956521739, "center_y": -8.115942028985508, "value_uncond": 1.965943739567227e-06}, {"x": 7.971014492753625, "y": -8.26086956521739, "x2": 8.260869565217392, "y2": -7.971014492753623, "center_x": 8.115942028985508, "center_y": -8.115942028985508, "value_uncond": 1.7380242719019876e-06}, {"x": 8.26086956521739, "y": -8.26086956521739, "x2": 8.550724637681158, "y2": -7.971014492753623, "center_x": 8.405797101449274, "center_y": -8.115942028985508, "value_uncond": 1.5222514753780152e-06}, {"x": 8.55072463768116, "y": -8.26086956521739, "x2": 8.840579710144928, "y2": -7.971014492753623, "center_x": 8.695652173913043, "center_y": -8.115942028985508, "value_uncond": 1.3208782367818309e-06}, {"x": 8.84057971014493, "y": -8.26086956521739, "x2": 9.130434782608697, "y2": -7.971014492753623, "center_x": 8.985507246376812, "center_y": -8.115942028985508, "value_uncond": 1.1354943568473354e-06}, {"x": 9.130434782608695, "y": -8.26086956521739, "x2": 9.420289855072463, "y2": -7.971014492753623, "center_x": 9.275362318840578, "center_y": -8.115942028985508, "value_uncond": 9.670590428244664e-07}, {"x": 9.420289855072465, "y": -8.26086956521739, "x2": 9.710144927536232, "y2": -7.971014492753623, "center_x": 9.565217391304348, "center_y": -8.115942028985508, "value_uncond": 8.15956140271452e-07}, {"x": 9.710144927536234, "y": -8.26086956521739, "x2": 10.000000000000002, "y2": -7.971014492753623, "center_x": 9.855072463768117, "center_y": -8.115942028985508, "value_uncond": 6.820660832305835e-07}, {"x": 10.0, "y": -8.26086956521739, "x2": 10.289855072463768, "y2": -7.971014492753623, "center_x": 10.144927536231883, "center_y": -8.115942028985508, "value_uncond": 5.648484064106578e-07}, {"x": -10.0, "y": -7.971014492753623, "x2": -9.710144927536232, "y2": -7.681159420289855, "center_x": -9.855072463768117, "center_y": -7.826086956521739, "value_uncond": 1.150804271859119e-10}, {"x": -9.710144927536232, "y": -7.971014492753623, "x2": -9.420289855072465, "y2": -7.681159420289855, "center_x": -9.565217391304348, "center_y": -7.826086956521739, "value_uncond": 1.7980076298145616e-10}, {"x": -9.420289855072463, "y": -7.971014492753623, "x2": -9.130434782608695, "y2": -7.681159420289855, "center_x": -9.275362318840578, "center_y": -7.826086956521739, "value_uncond": 2.783091018860542e-10}, {"x": -9.130434782608695, "y": -7.971014492753623, "x2": -8.840579710144928, "y2": -7.681159420289855, "center_x": -8.985507246376812, "center_y": -7.826086956521739, "value_uncond": 4.267849575459015e-10}, {"x": -8.840579710144928, "y": -7.971014492753623, "x2": -8.55072463768116, "y2": -7.681159420289855, "center_x": -8.695652173913043, "center_y": -7.826086956521739, "value_uncond": 6.483904543068586e-10}, {"x": -8.55072463768116, "y": -7.971014492753623, "x2": -8.260869565217392, "y2": -7.681159420289855, "center_x": -8.405797101449277, "center_y": -7.826086956521739, "value_uncond": 9.75910376259108e-10}, {"x": -8.26086956521739, "y": -7.971014492753623, "x2": -7.971014492753623, "y2": -7.681159420289855, "center_x": -8.115942028985508, "center_y": -7.826086956521739, "value_uncond": 1.4552214019965556e-09}, {"x": -7.971014492753623, "y": -7.971014492753623, "x2": -7.681159420289855, "y2": -7.681159420289855, "center_x": -7.826086956521739, "center_y": -7.826086956521739, "value_uncond": 2.1497800361132766e-09}, {"x": -7.681159420289855, "y": -7.971014492753623, "x2": -7.391304347826088, "y2": -7.681159420289855, "center_x": -7.536231884057972, "center_y": -7.826086956521739, "value_uncond": 3.146333774436529e-09}, {"x": -7.391304347826087, "y": -7.971014492753623, "x2": -7.101449275362319, "y2": -7.681159420289855, "center_x": -7.246376811594203, "center_y": -7.826086956521739, "value_uncond": 4.5620639996259195e-09}, {"x": -7.101449275362318, "y": -7.971014492753623, "x2": -6.811594202898551, "y2": -7.681159420289855, "center_x": -6.956521739130435, "center_y": -7.826086956521739, "value_uncond": 6.553356127882929e-09}, {"x": -6.811594202898551, "y": -7.971014492753623, "x2": -6.521739130434783, "y2": -7.681159420289855, "center_x": -6.666666666666667, "center_y": -7.826086956521739, "value_uncond": 9.326355800317806e-09}, {"x": -6.521739130434782, "y": -7.971014492753623, "x2": -6.231884057971015, "y2": -7.681159420289855, "center_x": -6.3768115942028984, "center_y": -7.826086956521739, "value_uncond": 1.314940205953262e-08}, {"x": -6.231884057971014, "y": -7.971014492753623, "x2": -5.942028985507246, "y2": -7.681159420289855, "center_x": -6.08695652173913, "center_y": -7.826086956521739, "value_uncond": 1.836732218602715e-08}, {"x": -5.942028985507246, "y": -7.971014492753623, "x2": -5.6521739130434785, "y2": -7.681159420289855, "center_x": -5.797101449275362, "center_y": -7.826086956521739, "value_uncond": 2.5417421920698242e-08}, {"x": -5.6521739130434785, "y": -7.971014492753623, "x2": -5.362318840579711, "y2": -7.681159420289855, "center_x": -5.507246376811595, "center_y": -7.826086956521739, "value_uncond": 3.484680512661137e-08}, {"x": -5.36231884057971, "y": -7.971014492753623, "x2": -5.072463768115942, "y2": -7.681159420289855, "center_x": -5.217391304347826, "center_y": -7.826086956521739, "value_uncond": 4.7330408166995674e-08}, {"x": -5.0724637681159415, "y": -7.971014492753623, "x2": -4.782608695652174, "y2": -7.681159420289855, "center_x": -4.927536231884058, "center_y": -7.826086956521739, "value_uncond": 6.368884123900681e-08}, {"x": -4.782608695652174, "y": -7.971014492753623, "x2": -4.492753623188406, "y2": -7.681159420289855, "center_x": -4.63768115942029, "center_y": -7.826086956521739, "value_uncond": 8.490480317055164e-08}, {"x": -4.492753623188405, "y": -7.971014492753623, "x2": -4.202898550724638, "y2": -7.681159420289855, "center_x": -4.3478260869565215, "center_y": -7.826086956521739, "value_uncond": 1.1213649726959334e-07}, {"x": -4.202898550724638, "y": -7.971014492753623, "x2": -3.91304347826087, "y2": -7.681159420289855, "center_x": -4.057971014492754, "center_y": -7.826086956521739, "value_uncond": 1.467261518154846e-07}, {"x": -3.913043478260869, "y": -7.971014492753623, "x2": -3.6231884057971016, "y2": -7.681159420289855, "center_x": -3.7681159420289854, "center_y": -7.826086956521739, "value_uncond": 1.902014761801341e-07}, {"x": -3.6231884057971016, "y": -7.971014492753623, "x2": -3.333333333333334, "y2": -7.681159420289855, "center_x": -3.4782608695652177, "center_y": -7.826086956521739, "value_uncond": 2.442677058493814e-07}, {"x": -3.333333333333333, "y": -7.971014492753623, "x2": -3.0434782608695654, "y2": -7.681159420289855, "center_x": -3.1884057971014492, "center_y": -7.826086956521739, "value_uncond": 3.1078785454001425e-07}, {"x": -3.0434782608695645, "y": -7.971014492753623, "x2": -2.753623188405797, "y2": -7.681159420289855, "center_x": -2.8985507246376807, "center_y": -7.826086956521739, "value_uncond": 3.917489470275911e-07}, {"x": -2.753623188405797, "y": -7.971014492753623, "x2": -2.4637681159420293, "y2": -7.681159420289855, "center_x": -2.608695652173913, "center_y": -7.826086956521739, "value_uncond": 4.892123946448407e-07}, {"x": -2.4637681159420284, "y": -7.971014492753623, "x2": -2.1739130434782608, "y2": -7.681159420289855, "center_x": -2.3188405797101446, "center_y": -7.826086956521739, "value_uncond": 6.052473271715371e-07}, {"x": -2.1739130434782608, "y": -7.971014492753623, "x2": -1.8840579710144931, "y2": -7.681159420289855, "center_x": -2.028985507246377, "center_y": -7.826086956521739, "value_uncond": 7.418466216361657e-07}, {"x": -1.8840579710144922, "y": -7.971014492753623, "x2": -1.5942028985507246, "y2": -7.681159420289855, "center_x": -1.7391304347826084, "center_y": -7.826086956521739, "value_uncond": 9.008265566110717e-07}, {"x": -1.5942028985507246, "y": -7.971014492753623, "x2": -1.304347826086957, "y2": -7.681159420289855, "center_x": -1.4492753623188408, "center_y": -7.826086956521739, "value_uncond": 1.0837124255962345e-06}, {"x": -1.304347826086957, "y": -7.971014492753623, "x2": -1.0144927536231894, "y2": -7.681159420289855, "center_x": -1.1594202898550732, "center_y": -7.826086956521739, "value_uncond": 1.291613987520393e-06}, {"x": -1.0144927536231876, "y": -7.971014492753623, "x2": -0.72463768115942, "y2": -7.681159420289855, "center_x": -0.8695652173913038, "center_y": -7.826086956521739, "value_uncond": 1.5250962062201841e-06}, {"x": -0.72463768115942, "y": -7.971014492753623, "x2": -0.43478260869565233, "y2": -7.681159420289855, "center_x": -0.5797101449275361, "center_y": -7.826086956521739, "value_uncond": 1.7840521963563896e-06}, {"x": -0.43478260869565233, "y": -7.971014492753623, "x2": -0.1449275362318847, "y2": -7.681159420289855, "center_x": -0.2898550724637685, "center_y": -7.826086956521739, "value_uncond": 2.067586494677862e-06}, {"x": -0.14492753623188293, "y": -7.971014492753623, "x2": 0.1449275362318847, "y2": -7.681159420289855, "center_x": 8.881784197001252e-16, "center_y": -7.826086956521739, "value_uncond": 2.373917552178486e-06}, {"x": 0.1449275362318847, "y": -7.971014492753623, "x2": 0.43478260869565233, "y2": -7.681159420289855, "center_x": 0.2898550724637685, "center_y": -7.826086956521739, "value_uncond": 2.7003085458980758e-06}, {"x": 0.43478260869565233, "y": -7.971014492753623, "x2": 0.72463768115942, "y2": -7.681159420289855, "center_x": 0.5797101449275361, "center_y": -7.826086956521739, "value_uncond": 3.043035120901547e-06}, {"x": 0.72463768115942, "y": -7.971014492753623, "x2": 1.0144927536231876, "y2": -7.681159420289855, "center_x": 0.8695652173913038, "center_y": -7.826086956521739, "value_uncond": 3.3973974241835387e-06}, {"x": 1.0144927536231894, "y": -7.971014492753623, "x2": 1.304347826086957, "y2": -7.681159420289855, "center_x": 1.1594202898550732, "center_y": -7.826086956521739, "value_uncond": 3.757781778066953e-06}, {"x": 1.304347826086957, "y": -7.971014492753623, "x2": 1.5942028985507246, "y2": -7.681159420289855, "center_x": 1.4492753623188408, "center_y": -7.826086956521739, "value_uncond": 4.117774630909027e-06}, {"x": 1.5942028985507246, "y": -7.971014492753623, "x2": 1.8840579710144922, "y2": -7.681159420289855, "center_x": 1.7391304347826084, "center_y": -7.826086956521739, "value_uncond": 4.470328165080958e-06}, {"x": 1.884057971014494, "y": -7.971014492753623, "x2": 2.1739130434782616, "y2": -7.681159420289855, "center_x": 2.028985507246378, "center_y": -7.826086956521739, "value_uncond": 4.807973355740461e-06}, {"x": 2.1739130434782616, "y": -7.971014492753623, "x2": 2.4637681159420293, "y2": -7.681159420289855, "center_x": 2.3188405797101455, "center_y": -7.826086956521739, "value_uncond": 5.123072635608127e-06}, {"x": 2.4637681159420293, "y": -7.971014492753623, "x2": 2.753623188405797, "y2": -7.681159420289855, "center_x": 2.608695652173913, "center_y": -7.826086956521739, "value_uncond": 5.4081009416499825e-06}, {"x": 2.753623188405797, "y": -7.971014492753623, "x2": 3.0434782608695645, "y2": -7.681159420289855, "center_x": 2.8985507246376807, "center_y": -7.826086956521739, "value_uncond": 5.65594111476133e-06}, {"x": 3.0434782608695663, "y": -7.971014492753623, "x2": 3.333333333333334, "y2": -7.681159420289855, "center_x": 3.18840579710145, "center_y": -7.826086956521739, "value_uncond": 5.860177680559899e-06}, {"x": 3.333333333333334, "y": -7.971014492753623, "x2": 3.6231884057971016, "y2": -7.681159420289855, "center_x": 3.4782608695652177, "center_y": -7.826086956521739, "value_uncond": 6.015372184992783e-06}, {"x": 3.6231884057971016, "y": -7.971014492753623, "x2": 3.913043478260869, "y2": -7.681159420289855, "center_x": 3.7681159420289854, "center_y": -7.826086956521739, "value_uncond": 6.117303630949506e-06}, {"x": 3.913043478260871, "y": -7.971014492753623, "x2": 4.202898550724639, "y2": -7.681159420289855, "center_x": 4.057971014492755, "center_y": -7.826086956521739, "value_uncond": 6.1631591916285006e-06}, {"x": 4.202898550724639, "y": -7.971014492753623, "x2": 4.492753623188406, "y2": -7.681159420289855, "center_x": 4.347826086956522, "center_y": -7.826086956521739, "value_uncond": 6.1516631765141e-06}, {"x": 4.492753623188406, "y": -7.971014492753623, "x2": 4.782608695652174, "y2": -7.681159420289855, "center_x": 4.63768115942029, "center_y": -7.826086956521739, "value_uncond": 6.08313599744797e-06}, {"x": 4.782608695652174, "y": -7.971014492753623, "x2": 5.0724637681159415, "y2": -7.681159420289855, "center_x": 4.927536231884058, "center_y": -7.826086956521739, "value_uncond": 5.9594793307608665e-06}, {"x": 5.072463768115943, "y": -7.971014492753623, "x2": 5.362318840579711, "y2": -7.681159420289855, "center_x": 5.217391304347827, "center_y": -7.826086956521739, "value_uncond": 5.7840884344633715e-06}, {"x": 5.362318840579711, "y": -7.971014492753623, "x2": 5.6521739130434785, "y2": -7.681159420289855, "center_x": 5.507246376811595, "center_y": -7.826086956521739, "value_uncond": 5.561697263081826e-06}, {"x": 5.6521739130434785, "y": -7.971014492753623, "x2": 5.942028985507246, "y2": -7.681159420289855, "center_x": 5.797101449275362, "center_y": -7.826086956521739, "value_uncond": 5.2981662408916325e-06}, {"x": 5.942028985507246, "y": -7.971014492753623, "x2": 6.231884057971014, "y2": -7.681159420289855, "center_x": 6.08695652173913, "center_y": -7.826086956521739, "value_uncond": 5.0002259678435955e-06}, {"x": 6.2318840579710155, "y": -7.971014492753623, "x2": 6.521739130434783, "y2": -7.681159420289855, "center_x": 6.376811594202899, "center_y": -7.826086956521739, "value_uncond": 4.675192482195596e-06}, {"x": 6.521739130434785, "y": -7.971014492753623, "x2": 6.8115942028985526, "y2": -7.681159420289855, "center_x": 6.666666666666669, "center_y": -7.826086956521739, "value_uncond": 4.330670834389596e-06}, {"x": 6.811594202898551, "y": -7.971014492753623, "x2": 7.101449275362318, "y2": -7.681159420289855, "center_x": 6.956521739130435, "center_y": -7.826086956521739, "value_uncond": 3.974263598446794e-06}, {"x": 7.10144927536232, "y": -7.971014492753623, "x2": 7.391304347826088, "y2": -7.681159420289855, "center_x": 7.246376811594204, "center_y": -7.826086956521739, "value_uncond": 3.613299635221212e-06}, {"x": 7.391304347826086, "y": -7.971014492753623, "x2": 7.681159420289854, "y2": -7.681159420289855, "center_x": 7.53623188405797, "center_y": -7.826086956521739, "value_uncond": 3.2545961028424198e-06}, {"x": 7.681159420289855, "y": -7.971014492753623, "x2": 7.971014492753623, "y2": -7.681159420289855, "center_x": 7.826086956521739, "center_y": -7.826086956521739, "value_uncond": 2.9042636382649264e-06}, {"x": 7.971014492753625, "y": -7.971014492753623, "x2": 8.260869565217392, "y2": -7.681159420289855, "center_x": 8.115942028985508, "center_y": -7.826086956521739, "value_uncond": 2.567561112617595e-06}, {"x": 8.26086956521739, "y": -7.971014492753623, "x2": 8.550724637681158, "y2": -7.681159420289855, "center_x": 8.405797101449274, "center_y": -7.826086956521739, "value_uncond": 2.248802709485845e-06}, {"x": 8.55072463768116, "y": -7.971014492753623, "x2": 8.840579710144928, "y2": -7.681159420289855, "center_x": 8.695652173913043, "center_y": -7.826086956521739, "value_uncond": 1.9513165898152533e-06}, {"x": 8.84057971014493, "y": -7.971014492753623, "x2": 9.130434782608697, "y2": -7.681159420289855, "center_x": 8.985507246376812, "center_y": -7.826086956521739, "value_uncond": 1.6774513459742732e-06}, {"x": 9.130434782608695, "y": -7.971014492753623, "x2": 9.420289855072463, "y2": -7.681159420289855, "center_x": 9.275362318840578, "center_y": -7.826086956521739, "value_uncond": 1.4286240026119246e-06}, {"x": 9.420289855072465, "y": -7.971014492753623, "x2": 9.710144927536232, "y2": -7.681159420289855, "center_x": 9.565217391304348, "center_y": -7.826086956521739, "value_uncond": 1.2054016098807787e-06}, {"x": 9.710144927536234, "y": -7.971014492753623, "x2": 10.000000000000002, "y2": -7.681159420289855, "center_x": 9.855072463768117, "center_y": -7.826086956521739, "value_uncond": 1.0076075345149136e-06}, {"x": 10.0, "y": -7.971014492753623, "x2": 10.289855072463768, "y2": -7.681159420289855, "center_x": 10.144927536231883, "center_y": -7.826086956521739, "value_uncond": 8.344433540257313e-07}, {"x": -10.0, "y": -7.681159420289855, "x2": -9.710144927536232, "y2": -7.391304347826088, "center_x": -9.855072463768117, "center_y": -7.536231884057972, "value_uncond": 1.6842720127136773e-10}, {"x": -9.710144927536232, "y": -7.681159420289855, "x2": -9.420289855072465, "y2": -7.391304347826088, "center_x": -9.565217391304348, "center_y": -7.536231884057972, "value_uncond": 2.6314934725173203e-10}, {"x": -9.420289855072463, "y": -7.681159420289855, "x2": -9.130434782608695, "y2": -7.391304347826088, "center_x": -9.275362318840578, "center_y": -7.536231884057972, "value_uncond": 4.0732228985637995e-10}, {"x": -9.130434782608695, "y": -7.681159420289855, "x2": -8.840579710144928, "y2": -7.391304347826088, "center_x": -8.985507246376812, "center_y": -7.536231884057972, "value_uncond": 6.246257309077444e-10}, {"x": -8.840579710144928, "y": -7.681159420289855, "x2": -8.55072463768116, "y2": -7.391304347826088, "center_x": -8.695652173913043, "center_y": -7.536231884057972, "value_uncond": 9.4895884748109e-10}, {"x": -8.55072463768116, "y": -7.681159420289855, "x2": -8.260869565217392, "y2": -7.391304347826088, "center_x": -8.405797101449277, "center_y": -7.536231884057972, "value_uncond": 1.4283041641778947e-09}, {"x": -8.26086956521739, "y": -7.681159420289855, "x2": -7.971014492753623, "y2": -7.391304347826088, "center_x": -8.115942028985508, "center_y": -7.536231884057972, "value_uncond": 2.129804989101398e-09}, {"x": -7.971014492753623, "y": -7.681159420289855, "x2": -7.681159420289855, "y2": -7.391304347826088, "center_x": -7.826086956521739, "center_y": -7.536231884057972, "value_uncond": 3.146333774436529e-09}, {"x": -7.681159420289855, "y": -7.681159420289855, "x2": -7.391304347826088, "y2": -7.391304347826088, "center_x": -7.536231884057972, "center_y": -7.536231884057972, "value_uncond": 4.604850753967282e-09}, {"x": -7.391304347826087, "y": -7.681159420289855, "x2": -7.101449275362319, "y2": -7.391304347826088, "center_x": -7.246376811594203, "center_y": -7.536231884057972, "value_uncond": 6.6768580050241456e-09}, {"x": -7.101449275362318, "y": -7.681159420289855, "x2": -6.811594202898551, "y2": -7.391304347826088, "center_x": -6.956521739130435, "center_y": -7.536231884057972, "value_uncond": 9.591235091357127e-09}, {"x": -6.811594202898551, "y": -7.681159420289855, "x2": -6.521739130434783, "y2": -7.391304347826088, "center_x": -6.666666666666667, "center_y": -7.536231884057972, "value_uncond": 1.3649688690943727e-08}, {"x": -6.521739130434782, "y": -7.681159420289855, "x2": -6.231884057971015, "y2": -7.391304347826088, "center_x": -6.3768115942028984, "center_y": -7.536231884057972, "value_uncond": 1.924494930576833e-08}, {"x": -6.231884057971014, "y": -7.681159420289855, "x2": -5.942028985507246, "y2": -7.391304347826088, "center_x": -6.08695652173913, "center_y": -7.536231884057972, "value_uncond": 2.688169262392831e-08}, {"x": -5.942028985507246, "y": -7.681159420289855, "x2": -5.6521739130434785, "y2": -7.391304347826088, "center_x": -5.797101449275362, "center_y": -7.536231884057972, "value_uncond": 3.719994218235569e-08}, {"x": -5.6521739130434785, "y": -7.681159420289855, "x2": -5.362318840579711, "y2": -7.391304347826088, "center_x": -5.507246376811595, "center_y": -7.536231884057972, "value_uncond": 5.100041774473357e-08}, {"x": -5.36231884057971, "y": -7.681159420289855, "x2": -5.072463768115942, "y2": -7.391304347826088, "center_x": -5.217391304347826, "center_y": -7.536231884057972, "value_uncond": 6.92709297100564e-08}, {"x": -5.0724637681159415, "y": -7.681159420289855, "x2": -4.782608695652174, "y2": -7.391304347826088, "center_x": -4.927536231884058, "center_y": -7.536231884057972, "value_uncond": 9.321249098921986e-08}, {"x": -4.782608695652174, "y": -7.681159420289855, "x2": -4.492753623188406, "y2": -7.391304347826088, "center_x": -4.63768115942029, "center_y": -7.536231884057972, "value_uncond": 1.2426334105807845e-07}, {"x": -4.492753623188405, "y": -7.681159420289855, "x2": -4.202898550724638, "y2": -7.391304347826088, "center_x": -4.3478260869565215, "center_y": -7.536231884057972, "value_uncond": 1.641185808684942e-07}, {"x": -4.202898550724638, "y": -7.681159420289855, "x2": -3.91304347826087, "y2": -7.391304347826088, "center_x": -4.057971014492754, "center_y": -7.536231884057972, "value_uncond": 2.1474264310538774e-07}, {"x": -3.913043478260869, "y": -7.681159420289855, "x2": -3.6231884057971016, "y2": -7.391304347826088, "center_x": -3.7681159420289854, "center_y": -7.536231884057972, "value_uncond": 2.783714233085887e-07}, {"x": -3.6231884057971016, "y": -7.681159420289855, "x2": -3.333333333333334, "y2": -7.391304347826088, "center_x": -3.4782608695652177, "center_y": -7.536231884057972, "value_uncond": 3.575006372780089e-07}, {"x": -3.333333333333333, "y": -7.681159420289855, "x2": -3.0434782608695654, "y2": -7.391304347826088, "center_x": -3.1884057971014492, "center_y": -7.536231884057972, "value_uncond": 4.548569188463666e-07}, {"x": -3.0434782608695645, "y": -7.681159420289855, "x2": -2.753623188405797, "y2": -7.391304347826088, "center_x": -2.8985507246376807, "center_y": -7.536231884057972, "value_uncond": 5.733483995698952e-07}, {"x": -2.753623188405797, "y": -7.681159420289855, "x2": -2.4637681159420293, "y2": -7.391304347826088, "center_x": -2.608695652173913, "center_y": -7.536231884057972, "value_uncond": 7.159920802534279e-07}, {"x": -2.4637681159420284, "y": -7.681159420289855, "x2": -2.1739130434782608, "y2": -7.391304347826088, "center_x": -2.3188405797101446, "center_y": -7.536231884057972, "value_uncond": 8.858162581182814e-07}, {"x": -2.1739130434782608, "y": -7.681159420289855, "x2": -1.8840579710144931, "y2": -7.391304347826088, "center_x": -2.028985507246377, "center_y": -7.536231884057972, "value_uncond": 1.0857376298486197e-06}, {"x": -1.8840579710144922, "y": -7.681159420289855, "x2": -1.5942028985507246, "y2": -7.391304347826088, "center_x": -1.7391304347826084, "center_y": -7.536231884057972, "value_uncond": 1.3184144295521006e-06}, {"x": -1.5942028985507246, "y": -7.681159420289855, "x2": -1.304347826086957, "y2": -7.391304347826088, "center_x": -1.4492753623188408, "center_y": -7.536231884057972, "value_uncond": 1.586079016993117e-06}, {"x": -1.304347826086957, "y": -7.681159420289855, "x2": -1.0144927536231894, "y2": -7.391304347826088, "center_x": -1.1594202898550732, "center_y": -7.536231884057972, "value_uncond": 1.8903555918294522e-06}, {"x": -1.0144927536231876, "y": -7.681159420289855, "x2": -0.72463768115942, "y2": -7.391304347826088, "center_x": -0.8695652173913038, "center_y": -7.536231884057972, "value_uncond": 2.2320710129818836e-06}, {"x": -0.72463768115942, "y": -7.681159420289855, "x2": -0.43478260869565233, "y2": -7.391304347826088, "center_x": -0.5797101449275361, "center_y": -7.536231884057972, "value_uncond": 2.611068847258569e-06}, {"x": -0.43478260869565233, "y": -7.681159420289855, "x2": -0.1449275362318847, "y2": -7.391304347826088, "center_x": -0.2898550724637685, "center_y": -7.536231884057972, "value_uncond": 3.0260385297535673e-06}, {"x": -0.14492753623188293, "y": -7.681159420289855, "x2": 0.1449275362318847, "y2": -7.391304347826088, "center_x": 8.881784197001252e-16, "center_y": -7.536231884057972, "value_uncond": 3.4743726551907147e-06}, {"x": 0.1449275362318847, "y": -7.681159420289855, "x2": 0.43478260869565233, "y2": -7.391304347826088, "center_x": 0.2898550724637685, "center_y": -7.536231884057972, "value_uncond": 3.952065716788075e-06}, {"x": 0.43478260869565233, "y": -7.681159420289855, "x2": 0.72463768115942, "y2": -7.391304347826088, "center_x": 0.5797101449275361, "center_y": -7.536231884057972, "value_uncond": 4.453666894683446e-06}, {"x": 0.72463768115942, "y": -7.681159420289855, "x2": 1.0144927536231876, "y2": -7.391304347826088, "center_x": 0.8695652173913038, "center_y": -7.536231884057972, "value_uncond": 4.97229766828531e-06}, {"x": 1.0144927536231894, "y": -7.681159420289855, "x2": 1.304347826086957, "y2": -7.391304347826088, "center_x": 1.1594202898550732, "center_y": -7.536231884057972, "value_uncond": 5.499742079040889e-06}, {"x": 1.304347826086957, "y": -7.681159420289855, "x2": 1.5942028985507246, "y2": -7.391304347826088, "center_x": 1.4492753623188408, "center_y": -7.536231884057972, "value_uncond": 6.026613504221936e-06}, {"x": 1.5942028985507246, "y": -7.681159420289855, "x2": 1.8840579710144922, "y2": -7.391304347826088, "center_x": 1.7391304347826084, "center_y": -7.536231884057972, "value_uncond": 6.5425970342707065e-06}, {"x": 1.884057971014494, "y": -7.681159420289855, "x2": 2.1739130434782616, "y2": -7.391304347826088, "center_x": 2.028985507246378, "center_y": -7.536231884057972, "value_uncond": 7.036761297266066e-06}, {"x": 2.1739130434782616, "y": -7.681159420289855, "x2": 2.4637681159420293, "y2": -7.391304347826088, "center_x": 2.3188405797101455, "center_y": -7.536231884057972, "value_uncond": 7.497928249183951e-06}, {"x": 2.4637681159420293, "y": -7.681159420289855, "x2": 2.753623188405797, "y2": -7.391304347826088, "center_x": 2.608695652173913, "center_y": -7.536231884057972, "value_uncond": 7.915084502802953e-06}, {"x": 2.753623188405797, "y": -7.681159420289855, "x2": 3.0434782608695645, "y2": -7.391304347826088, "center_x": 2.8985507246376807, "center_y": -7.536231884057972, "value_uncond": 8.277813663099864e-06}, {"x": 3.0434782608695663, "y": -7.681159420289855, "x2": 3.333333333333334, "y2": -7.391304347826088, "center_x": 3.18840579710145, "center_y": -7.536231884057972, "value_uncond": 8.57672629330027e-06}, {"x": 3.333333333333334, "y": -7.681159420289855, "x2": 3.6231884057971016, "y2": -7.391304347826088, "center_x": 3.4782608695652177, "center_y": -7.536231884057972, "value_uncond": 8.803862885277813e-06}, {"x": 3.6231884057971016, "y": -7.681159420289855, "x2": 3.913043478260869, "y2": -7.391304347826088, "center_x": 3.7681159420289854, "center_y": -7.536231884057972, "value_uncond": 8.953045753154204e-06}, {"x": 3.913043478260871, "y": -7.681159420289855, "x2": 4.202898550724639, "y2": -7.391304347826088, "center_x": 4.057971014492755, "center_y": -7.536231884057972, "value_uncond": 9.020158153905162e-06}, {"x": 4.202898550724639, "y": -7.681159420289855, "x2": 4.492753623188406, "y2": -7.391304347826088, "center_x": 4.347826086956522, "center_y": -7.536231884057972, "value_uncond": 9.003333036907952e-06}, {"x": 4.492753623188406, "y": -7.681159420289855, "x2": 4.782608695652174, "y2": -7.391304347826088, "center_x": 4.63768115942029, "center_y": -7.536231884057972, "value_uncond": 8.90303934437165e-06}, {"x": 4.782608695652174, "y": -7.681159420289855, "x2": 5.0724637681159415, "y2": -7.391304347826088, "center_x": 4.927536231884058, "center_y": -7.536231884057972, "value_uncond": 8.72206029521493e-06}, {"x": 5.072463768115943, "y": -7.681159420289855, "x2": 5.362318840579711, "y2": -7.391304347826088, "center_x": 5.217391304347827, "center_y": -7.536231884057972, "value_uncond": 8.465365055944217e-06}, {"x": 5.362318840579711, "y": -7.681159420289855, "x2": 5.6521739130434785, "y2": -7.391304347826088, "center_x": 5.507246376811595, "center_y": -7.536231884057972, "value_uncond": 8.139882056800119e-06}, {"x": 5.6521739130434785, "y": -7.681159420289855, "x2": 5.942028985507246, "y2": -7.391304347826088, "center_x": 5.797101449275362, "center_y": -7.536231884057972, "value_uncond": 7.754188384982478e-06}, {"x": 5.942028985507246, "y": -7.681159420289855, "x2": 6.231884057971014, "y2": -7.391304347826088, "center_x": 6.08695652173913, "center_y": -7.536231884057972, "value_uncond": 7.318134682692684e-06}, {"x": 6.2318840579710155, "y": -7.681159420289855, "x2": 6.521739130434783, "y2": -7.391304347826088, "center_x": 6.376811594202899, "center_y": -7.536231884057972, "value_uncond": 6.842428416685089e-06}, {"x": 6.521739130434785, "y": -7.681159420289855, "x2": 6.8115942028985526, "y2": -7.391304347826088, "center_x": 6.666666666666669, "center_y": -7.536231884057972, "value_uncond": 6.338200040615343e-06}, {"x": 6.811594202898551, "y": -7.681159420289855, "x2": 7.101449275362318, "y2": -7.391304347826088, "center_x": 6.956521739130435, "center_y": -7.536231884057972, "value_uncond": 5.816576383746788e-06}, {"x": 7.10144927536232, "y": -7.681159420289855, "x2": 7.391304347826088, "y2": -7.391304347826088, "center_x": 7.246376811594204, "center_y": -7.536231884057972, "value_uncond": 5.288283679482755e-06}, {"x": 7.391304347826086, "y": -7.681159420289855, "x2": 7.681159420289854, "y2": -7.391304347826088, "center_x": 7.53623188405797, "center_y": -7.536231884057972, "value_uncond": 4.763299253181387e-06}, {"x": 7.681159420289855, "y": -7.681159420289855, "x2": 7.971014492753623, "y2": -7.391304347826088, "center_x": 7.826086956521739, "center_y": -7.536231884057972, "value_uncond": 4.250566393509563e-06}, {"x": 7.971014492753625, "y": -7.681159420289855, "x2": 8.260869565217392, "y2": -7.391304347826088, "center_x": 8.115942028985508, "center_y": -7.536231884057972, "value_uncond": 3.7577817780669465e-06}, {"x": 8.26086956521739, "y": -7.681159420289855, "x2": 8.550724637681158, "y2": -7.391304347826088, "center_x": 8.405797101449274, "center_y": -7.536231884057972, "value_uncond": 3.291259476802988e-06}, {"x": 8.55072463768116, "y": -7.681159420289855, "x2": 8.840579710144928, "y2": -7.391304347826088, "center_x": 8.695652173913043, "center_y": -7.536231884057972, "value_uncond": 2.8558704555904338e-06}, {"x": 8.84057971014493, "y": -7.681159420289855, "x2": 9.130434782608697, "y2": -7.391304347826088, "center_x": 8.985507246376812, "center_y": -7.536231884057972, "value_uncond": 2.455052022138501e-06}, {"x": 9.130434782608695, "y": -7.681159420289855, "x2": 9.420289855072463, "y2": -7.391304347826088, "center_x": 9.275362318840578, "center_y": -7.536231884057972, "value_uncond": 2.0908780781662027e-06}, {"x": 9.420289855072465, "y": -7.681159420289855, "x2": 9.710144927536232, "y2": -7.391304347826088, "center_x": 9.565217391304348, "center_y": -7.536231884057972, "value_uncond": 1.7641785360445216e-06}, {"x": 9.710144927536234, "y": -7.681159420289855, "x2": 10.000000000000002, "y2": -7.391304347826088, "center_x": 9.855072463768117, "center_y": -7.536231884057972, "value_uncond": 1.4746948822507115e-06}, {"x": 10.0, "y": -7.681159420289855, "x2": 10.289855072463768, "y2": -7.391304347826088, "center_x": 10.144927536231883, "center_y": -7.536231884057972, "value_uncond": 1.221258576934201e-06}, {"x": -10.0, "y": -7.391304347826087, "x2": -9.710144927536232, "y2": -7.101449275362319, "center_x": -9.855072463768117, "center_y": -7.246376811594203, "value_uncond": 2.442130195215731e-10}, {"x": -9.710144927536232, "y": -7.391304347826087, "x2": -9.420289855072465, "y2": -7.101449275362319, "center_x": -9.565217391304348, "center_y": -7.246376811594203, "value_uncond": 3.815565193292877e-10}, {"x": -9.420289855072463, "y": -7.391304347826087, "x2": -9.130434782608695, "y2": -7.101449275362319, "center_x": -9.275362318840578, "center_y": -7.246376811594203, "value_uncond": 5.906017886267534e-10}, {"x": -9.130434782608695, "y": -7.391304347826087, "x2": -8.840579710144928, "y2": -7.101449275362319, "center_x": -8.985507246376812, "center_y": -7.246376811594203, "value_uncond": 9.056834921223715e-10}, {"x": -8.840579710144928, "y": -7.391304347826087, "x2": -8.55072463768116, "y2": -7.101449275362319, "center_x": -8.695652173913043, "center_y": -7.246376811594203, "value_uncond": 1.3759541439608688e-09}, {"x": -8.55072463768116, "y": -7.391304347826087, "x2": -8.260869565217392, "y2": -7.101449275362319, "center_x": -8.405797101449277, "center_y": -7.246376811594203, "value_uncond": 2.07098657518581e-09}, {"x": -8.26086956521739, "y": -7.391304347826087, "x2": -7.971014492753623, "y2": -7.101449275362319, "center_x": -8.115942028985508, "center_y": -7.246376811594203, "value_uncond": 3.0881360222957336e-09}, {"x": -7.971014492753623, "y": -7.391304347826087, "x2": -7.681159420289855, "y2": -7.101449275362319, "center_x": -7.826086956521739, "center_y": -7.246376811594203, "value_uncond": 4.5620639996259195e-09}, {"x": -7.681159420289855, "y": -7.391304347826087, "x2": -7.391304347826088, "y2": -7.101449275362319, "center_x": -7.536231884057972, "center_y": -7.246376811594203, "value_uncond": 6.6768580050241456e-09}, {"x": -7.391304347826087, "y": -7.391304347826087, "x2": -7.101449275362319, "y2": -7.101449275362319, "center_x": -7.246376811594203, "center_y": -7.246376811594203, "value_uncond": 9.681189511049189e-09}, {"x": -7.101449275362318, "y": -7.391304347826087, "x2": -6.811594202898551, "y2": -7.101449275362319, "center_x": -6.956521739130435, "center_y": -7.246376811594203, "value_uncond": 1.3906925157698896e-08}, {"x": -6.811594202898551, "y": -7.391304347826087, "x2": -6.521739130434783, "y2": -7.101449275362319, "center_x": -6.666666666666667, "center_y": -7.246376811594203, "value_uncond": 1.9791528123619735e-08}, {"x": -6.521739130434782, "y": -7.391304347826087, "x2": -6.231884057971015, "y2": -7.101449275362319, "center_x": -6.3768115942028984, "center_y": -7.246376811594203, "value_uncond": 2.7904442661425693e-08}, {"x": -6.231884057971014, "y": -7.391304347826087, "x2": -5.942028985507246, "y2": -7.101449275362319, "center_x": -6.08695652173913, "center_y": -7.246376811594203, "value_uncond": 3.897742927499661e-08}, {"x": -5.942028985507246, "y": -7.391304347826087, "x2": -5.6521739130434785, "y2": -7.101449275362319, "center_x": -5.797101449275362, "center_y": -7.246376811594203, "value_uncond": 5.3938497688053776e-08}, {"x": -5.6521739130434785, "y": -7.391304347826087, "x2": -5.362318840579711, "y2": -7.101449275362319, "center_x": -5.507246376811595, "center_y": -7.246376811594203, "value_uncond": 7.394866102557714e-08}, {"x": -5.36231884057971, "y": -7.391304347826087, "x2": -5.072463768115942, "y2": -7.101449275362319, "center_x": -5.217391304347826, "center_y": -7.246376811594203, "value_uncond": 1.0044020669976769e-07}, {"x": -5.0724637681159415, "y": -7.391304347826087, "x2": -4.782608695652174, "y2": -7.101449275362319, "center_x": -4.927536231884058, "center_y": -7.246376811594203, "value_uncond": 1.3515455763542766e-07}, {"x": -4.782608695652174, "y": -7.391304347826087, "x2": -4.492753623188406, "y2": -7.101449275362319, "center_x": -4.63768115942029, "center_y": -7.246376811594203, "value_uncond": 1.8017710623082913e-07}, {"x": -4.492753623188405, "y": -7.391304347826087, "x2": -4.202898550724638, "y2": -7.101449275362319, "center_x": -4.3478260869565215, "center_y": -7.246376811594203, "value_uncond": 2.379656842300335e-07}, {"x": -4.202898550724638, "y": -7.391304347826087, "x2": -3.91304347826087, "y2": -7.101449275362319, "center_x": -4.057971014492754, "center_y": -7.246376811594203, "value_uncond": 3.113686441201083e-07}, {"x": -3.913043478260869, "y": -7.391304347826087, "x2": -3.6231884057971016, "y2": -7.101449275362319, "center_x": -3.7681159420289854, "center_y": -7.246376811594203, "value_uncond": 4.036279491765524e-07}, {"x": -3.6231884057971016, "y": -7.391304347826087, "x2": -3.333333333333334, "y2": -7.101449275362319, "center_x": -3.4782608695652177, "center_y": -7.246376811594203, "value_uncond": 5.183622921447384e-07}, {"x": -3.333333333333333, "y": -7.391304347826087, "x2": -3.0434782608695654, "y2": -7.101449275362319, "center_x": -3.1884057971014492, "center_y": -7.246376811594203, "value_uncond": 6.595251881124395e-07}, {"x": -3.0434782608695645, "y": -7.391304347826087, "x2": -2.753623188405797, "y2": -7.101449275362319, "center_x": -2.8985507246376807, "center_y": -7.246376811594203, "value_uncond": 8.31333316945809e-07}, {"x": -2.753623188405797, "y": -7.391304347826087, "x2": -2.4637681159420293, "y2": -7.101449275362319, "center_x": -2.608695652173913, "center_y": -7.246376811594203, "value_uncond": 1.0381612147701664e-06}, {"x": -2.4637681159420284, "y": -7.391304347826087, "x2": -2.1739130434782608, "y2": -7.101449275362319, "center_x": -2.3188405797101446, "center_y": -7.246376811594203, "value_uncond": 1.2843997970839784e-06}, {"x": -2.1739130434782608, "y": -7.391304347826087, "x2": -1.8840579710144931, "y2": -7.101449275362319, "center_x": -2.028985507246377, "center_y": -7.246376811594203, "value_uncond": 1.574278162862302e-06}, {"x": -1.8840579710144922, "y": -7.391304347826087, "x2": -1.5942028985507246, "y2": -7.101449275362319, "center_x": -1.7391304347826084, "center_y": -7.246376811594203, "value_uncond": 1.9116506501997293e-06}, {"x": -1.5942028985507246, "y": -7.391304347826087, "x2": -1.304347826086957, "y2": -7.101449275362319, "center_x": -1.4492753623188408, "center_y": -7.246376811594203, "value_uncond": 2.299754095632208e-06}, {"x": -1.304347826086957, "y": -7.391304347826087, "x2": -1.0144927536231894, "y2": -7.101449275362319, "center_x": -1.1594202898550732, "center_y": -7.246376811594203, "value_uncond": 2.740943526730923e-06}, {"x": -1.0144927536231876, "y": -7.391304347826087, "x2": -0.72463768115942, "y2": -7.101449275362319, "center_x": -0.8695652173913038, "center_y": -7.246376811594203, "value_uncond": 3.2364178574019272e-06}, {"x": -0.72463768115942, "y": -7.391304347826087, "x2": -0.43478260869565233, "y2": -7.101449275362319, "center_x": -0.5797101449275361, "center_y": -7.246376811594203, "value_uncond": 3.785950265482027e-06}, {"x": -0.43478260869565233, "y": -7.391304347826087, "x2": -0.1449275362318847, "y2": -7.101449275362319, "center_x": -0.2898550724637685, "center_y": -7.246376811594203, "value_uncond": 4.387640481830946e-06}, {"x": -0.14492753623188293, "y": -7.391304347826087, "x2": 0.1449275362318847, "y2": -7.101449275362319, "center_x": 8.881784197001252e-16, "center_y": -7.246376811594203, "value_uncond": 5.037707868221594e-06}, {"x": 0.1449275362318847, "y": -7.391304347826087, "x2": 0.43478260869565233, "y2": -7.101449275362319, "center_x": 0.2898550724637685, "center_y": -7.246376811594203, "value_uncond": 5.73034459255472e-06}, {"x": 0.43478260869565233, "y": -7.391304347826087, "x2": 0.72463768115942, "y2": -7.101449275362319, "center_x": 0.5797101449275361, "center_y": -7.246376811594203, "value_uncond": 6.4576471738761325e-06}, {"x": 0.72463768115942, "y": -7.391304347826087, "x2": 1.0144927536231876, "y2": -7.101449275362319, "center_x": 0.8695652173913038, "center_y": -7.246376811594203, "value_uncond": 7.209642019613979e-06}, {"x": 1.0144927536231894, "y": -7.391304347826087, "x2": 1.304347826086957, "y2": -7.101449275362319, "center_x": 1.1594202898550732, "center_y": -7.246376811594203, "value_uncond": 7.97441630315065e-06}, {"x": 1.304347826086957, "y": -7.391304347826087, "x2": 1.5942028985507246, "y2": -7.101449275362319, "center_x": 1.4492753623188408, "center_y": -7.246376811594203, "value_uncond": 8.738359779452854e-06}, {"x": 1.5942028985507246, "y": -7.391304347826087, "x2": 1.8840579710144922, "y2": -7.101449275362319, "center_x": 1.7391304347826084, "center_y": -7.246376811594203, "value_uncond": 9.486516222981147e-06}, {"x": 1.884057971014494, "y": -7.391304347826087, "x2": 2.1739130434782616, "y2": -7.101449275362319, "center_x": 2.028985507246378, "center_y": -7.246376811594203, "value_uncond": 1.0203035561275618e-05}, {"x": 2.1739130434782616, "y": -7.391304347826087, "x2": 2.4637681159420293, "y2": -7.101449275362319, "center_x": 2.3188405797101455, "center_y": -7.246376811594203, "value_uncond": 1.0871710056732976e-05}, {"x": 2.4637681159420293, "y": -7.391304347826087, "x2": 2.753623188405797, "y2": -7.101449275362319, "center_x": 2.608695652173913, "center_y": -7.246376811594203, "value_uncond": 1.1476570717835243e-05}, {"x": 2.753623188405797, "y": -7.391304347826087, "x2": 3.0434782608695645, "y2": -7.101449275362319, "center_x": 2.8985507246376807, "center_y": -7.246376811594203, "value_uncond": 1.2002514168987824e-05}, {"x": 3.0434782608695663, "y": -7.391304347826087, "x2": 3.333333333333334, "y2": -7.101449275362319, "center_x": 3.18840579710145, "center_y": -7.246376811594203, "value_uncond": 1.2435926084897789e-05}, {"x": 3.333333333333334, "y": -7.391304347826087, "x2": 3.6231884057971016, "y2": -7.101449275362319, "center_x": 3.4782608695652177, "center_y": -7.246376811594203, "value_uncond": 1.2765265482287069e-05}, {"x": 3.6231884057971016, "y": -7.391304347826087, "x2": 3.913043478260869, "y2": -7.101449275362319, "center_x": 3.7681159420289854, "center_y": -7.246376811594203, "value_uncond": 1.2981574952194378e-05}, {"x": 3.913043478260871, "y": -7.391304347826087, "x2": 4.202898550724639, "y2": -7.101449275362319, "center_x": 4.057971014492755, "center_y": -7.246376811594203, "value_uncond": 1.3078885374210632e-05}, {"x": 4.202898550724639, "y": -7.391304347826087, "x2": 4.492753623188406, "y2": -7.101449275362319, "center_x": 4.347826086956522, "center_y": -7.246376811594203, "value_uncond": 1.3054489596125642e-05}, {"x": 4.492753623188406, "y": -7.391304347826087, "x2": 4.782608695652174, "y2": -7.101449275362319, "center_x": 4.63768115942029, "center_y": -7.246376811594203, "value_uncond": 1.2909067566261262e-05}, {"x": 4.782608695652174, "y": -7.391304347826087, "x2": 5.0724637681159415, "y2": -7.101449275362319, "center_x": 4.927536231884058, "center_y": -7.246376811594203, "value_uncond": 1.2646654845922255e-05}, {"x": 5.072463768115943, "y": -7.391304347826087, "x2": 5.362318840579711, "y2": -7.101449275362319, "center_x": 5.217391304347827, "center_y": -7.246376811594203, "value_uncond": 1.227445653706292e-05}, {"x": 5.362318840579711, "y": -7.391304347826087, "x2": 5.6521739130434785, "y2": -7.101449275362319, "center_x": 5.507246376811595, "center_y": -7.246376811594203, "value_uncond": 1.1802518599343171e-05}, {"x": 5.6521739130434785, "y": -7.391304347826087, "x2": 5.942028985507246, "y2": -7.101449275362319, "center_x": 5.797101449275362, "center_y": -7.246376811594203, "value_uncond": 1.1243277482148635e-05}, {"x": 5.942028985507246, "y": -7.391304347826087, "x2": 6.231884057971014, "y2": -7.101449275362319, "center_x": 6.08695652173913, "center_y": -7.246376811594203, "value_uncond": 1.0611016241055063e-05}, {"x": 6.2318840579710155, "y": -7.391304347826087, "x2": 6.521739130434783, "y2": -7.101449275362319, "center_x": 6.376811594202899, "center_y": -7.246376811594203, "value_uncond": 9.921260294568306e-06}, {"x": 6.521739130434785, "y": -7.391304347826087, "x2": 6.8115942028985526, "y2": -7.101449275362319, "center_x": 6.666666666666669, "center_y": -7.246376811594203, "value_uncond": 9.190148376072125e-06}, {"x": 6.811594202898551, "y": -7.391304347826087, "x2": 7.101449275362318, "y2": -7.101449275362319, "center_x": 6.956521739130435, "center_y": -7.246376811594203, "value_uncond": 8.433813963719633e-06}, {"x": 7.10144927536232, "y": -7.391304347826087, "x2": 7.391304347826088, "y2": -7.101449275362319, "center_x": 7.246376811594204, "center_y": -7.246376811594203, "value_uncond": 7.66780968694211e-06}, {"x": 7.391304347826086, "y": -7.391304347826087, "x2": 7.681159420289854, "y2": -7.101449275362319, "center_x": 7.53623188405797, "center_y": -7.246376811594203, "value_uncond": 6.906602287062016e-06}, {"x": 7.681159420289855, "y": -7.391304347826087, "x2": 7.971014492753623, "y2": -7.101449275362319, "center_x": 7.826086956521739, "center_y": -7.246376811594203, "value_uncond": 6.163159191628511e-06}, {"x": 7.971014492753625, "y": -7.391304347826087, "x2": 8.260869565217392, "y2": -7.101449275362319, "center_x": 8.115942028985508, "center_y": -7.246376811594203, "value_uncond": 5.448640289677979e-06}, {"x": 8.26086956521739, "y": -7.391304347826087, "x2": 8.550724637681158, "y2": -7.101449275362319, "center_x": 8.405797101449274, "center_y": -7.246376811594203, "value_uncond": 4.772200741874412e-06}, {"x": 8.55072463768116, "y": -7.391304347826087, "x2": 8.840579710144928, "y2": -7.101449275362319, "center_x": 8.695652173913043, "center_y": -7.246376811594203, "value_uncond": 4.140903262997788e-06}, {"x": 8.84057971014493, "y": -7.391304347826087, "x2": 9.130434782608697, "y2": -7.101449275362319, "center_x": 8.985507246376812, "center_y": -7.246376811594203, "value_uncond": 3.559731818157989e-06}, {"x": 9.130434782608695, "y": -7.391304347826087, "x2": 9.420289855072463, "y2": -7.101449275362319, "center_x": 9.275362318840578, "center_y": -7.246376811594203, "value_uncond": 3.0316934857673573e-06}, {"x": 9.420289855072465, "y": -7.391304347826087, "x2": 9.710144927536232, "y2": -7.101449275362319, "center_x": 9.565217391304348, "center_y": -7.246376811594203, "value_uncond": 2.5579916071182954e-06}, {"x": 9.710144927536234, "y": -7.391304347826087, "x2": 10.000000000000002, "y2": -7.101449275362319, "center_x": 9.855072463768117, "center_y": -7.246376811594203, "value_uncond": 2.138251347460231e-06}, {"x": 10.0, "y": -7.391304347826087, "x2": 10.289855072463768, "y2": -7.101449275362319, "center_x": 10.144927536231883, "center_y": -7.246376811594203, "value_uncond": 1.770778368567611e-06}, {"x": -10.0, "y": -7.101449275362318, "x2": -9.710144927536232, "y2": -6.811594202898551, "center_x": -9.855072463768117, "center_y": -6.956521739130435, "value_uncond": 3.508093898116566e-10}, {"x": -9.710144927536232, "y": -7.101449275362318, "x2": -9.420289855072465, "y2": -6.811594202898551, "center_x": -9.565217391304348, "center_y": -6.956521739130435, "value_uncond": 5.481018579058321e-10}, {"x": -9.420289855072463, "y": -7.101449275362318, "x2": -9.130434782608695, "y2": -6.811594202898551, "center_x": -9.275362318840578, "center_y": -6.956521739130435, "value_uncond": 8.48393150765341e-10}, {"x": -9.130434782608695, "y": -7.101449275362318, "x2": -8.840579710144928, "y2": -6.811594202898551, "center_x": -8.985507246376812, "center_y": -6.956521739130435, "value_uncond": 1.3010046469118486e-09}, {"x": -8.840579710144928, "y": -7.101449275362318, "x2": -8.55072463768116, "y2": -6.811594202898551, "center_x": -8.695652173913043, "center_y": -6.956521739130435, "value_uncond": 1.976543407052434e-09}, {"x": -8.55072463768116, "y": -7.101449275362318, "x2": -8.260869565217392, "y2": -6.811594202898551, "center_x": -8.405797101449277, "center_y": -6.956521739130435, "value_uncond": 2.974950058651102e-09}, {"x": -8.26086956521739, "y": -7.101449275362318, "x2": -7.971014492753623, "y2": -6.811594202898551, "center_x": -8.115942028985508, "center_y": -6.956521739130435, "value_uncond": 4.4360743573757856e-09}, {"x": -7.971014492753623, "y": -7.101449275362318, "x2": -7.681159420289855, "y2": -6.811594202898551, "center_x": -7.826086956521739, "center_y": -6.956521739130435, "value_uncond": 6.553356127882929e-09}, {"x": -7.681159420289855, "y": -7.101449275362318, "x2": -7.391304347826088, "y2": -6.811594202898551, "center_x": -7.536231884057972, "center_y": -6.956521739130435, "value_uncond": 9.591235091357127e-09}, {"x": -7.391304347826087, "y": -7.101449275362318, "x2": -7.101449275362319, "y2": -6.811594202898551, "center_x": -7.246376811594203, "center_y": -6.956521739130435, "value_uncond": 1.3906925157698896e-08}, {"x": -7.101449275362318, "y": -7.101449275362318, "x2": -6.811594202898551, "y2": -6.811594202898551, "center_x": -6.956521739130435, "center_y": -6.956521739130435, "value_uncond": 1.99771492047653e-08}, {"x": -6.811594202898551, "y": -7.101449275362318, "x2": -6.521739130434783, "y2": -6.811594202898551, "center_x": -6.666666666666667, "center_y": -6.956521739130435, "value_uncond": 2.8430318408449762e-08}, {"x": -6.521739130434782, "y": -7.101449275362318, "x2": -6.231884057971015, "y2": -6.811594202898551, "center_x": -6.3768115942028984, "center_y": -6.956521739130435, "value_uncond": 4.008443334539075e-08}, {"x": -6.231884057971014, "y": -7.101449275362318, "x2": -5.942028985507246, "y2": -6.811594202898551, "center_x": -6.08695652173913, "center_y": -6.956521739130435, "value_uncond": 5.599066015061769e-08}, {"x": -5.942028985507246, "y": -7.101449275362318, "x2": -5.6521739130434785, "y2": -6.811594202898551, "center_x": -5.797101449275362, "center_y": -6.956521739130435, "value_uncond": 7.748207486387541e-08}, {"x": -5.6521739130434785, "y": -7.101449275362318, "x2": -5.362318840579711, "y2": -6.811594202898551, "center_x": -5.507246376811595, "center_y": -6.956521739130435, "value_uncond": 1.062264604180127e-07}, {"x": -5.36231884057971, "y": -7.101449275362318, "x2": -5.072463768115942, "y2": -6.811594202898551, "center_x": -5.217391304347826, "center_y": -6.956521739130435, "value_uncond": 1.442812823572233e-07}, {"x": -5.0724637681159415, "y": -7.101449275362318, "x2": -4.782608695652174, "y2": -6.811594202898551, "center_x": -4.927536231884058, "center_y": -6.956521739130435, "value_uncond": 1.9414807608224334e-07}, {"x": -4.782608695652174, "y": -7.101449275362318, "x2": -4.492753623188406, "y2": -6.811594202898551, "center_x": -4.63768115942029, "center_y": -6.956521739130435, "value_uncond": 2.588224854624657e-07}, {"x": -4.492753623188405, "y": -7.101449275362318, "x2": -4.202898550724638, "y2": -6.811594202898551, "center_x": -4.3478260869565215, "center_y": -6.956521739130435, "value_uncond": 3.418351595029395e-07}, {"x": -4.202898550724638, "y": -7.101449275362318, "x2": -3.91304347826087, "y2": -6.811594202898551, "center_x": -4.057971014492754, "center_y": -6.956521739130435, "value_uncond": 4.4727772607802706e-07}, {"x": -3.913043478260869, "y": -7.101449275362318, "x2": -3.6231884057971016, "y2": -6.811594202898551, "center_x": -3.7681159420289854, "center_y": -6.956521739130435, "value_uncond": 5.798072307485984e-07}, {"x": -3.6231884057971016, "y": -7.101449275362318, "x2": -3.333333333333334, "y2": -6.811594202898551, "center_x": -3.4782608695652177, "center_y": -6.956521739130435, "value_uncond": 7.446218869285287e-07}, {"x": -3.333333333333333, "y": -7.101449275362318, "x2": -3.0434782608695654, "y2": -6.811594202898551, "center_x": -3.1884057971014492, "center_y": -6.956521739130435, "value_uncond": 9.474008767444301e-07}, {"x": -3.0434782608695645, "y": -7.101449275362318, "x2": -2.753623188405797, "y2": -6.811594202898551, "center_x": -2.8985507246376807, "center_y": -6.956521739130435, "value_uncond": 1.1942014157115696e-06}, {"x": -2.753623188405797, "y": -7.101449275362318, "x2": -2.4637681159420293, "y2": -6.811594202898551, "center_x": -2.608695652173913, "center_y": -6.956521739130435, "value_uncond": 1.4913074781726702e-06}, {"x": -2.4637681159420284, "y": -7.101449275362318, "x2": -2.1739130434782608, "y2": -6.811594202898551, "center_x": -2.3188405797101446, "center_y": -6.956521739130435, "value_uncond": 1.8450265672647442e-06}, {"x": -2.1739130434782608, "y": -7.101449275362318, "x2": -1.8840579710144931, "y2": -6.811594202898551, "center_x": -2.028985507246377, "center_y": -6.956521739130435, "value_uncond": 2.261433738420133e-06}, {"x": -1.8840579710144922, "y": -7.101449275362318, "x2": -1.5942028985507246, "y2": -6.811594202898551, "center_x": -1.7391304347826084, "center_y": -6.956521739130435, "value_uncond": 2.746065707075796e-06}, {"x": -1.5942028985507246, "y": -7.101449275362318, "x2": -1.304347826086957, "y2": -6.811594202898551, "center_x": -1.4492753623188408, "center_y": -6.956521739130435, "value_uncond": 3.3035721542860862e-06}, {"x": -1.304347826086957, "y": -7.101449275362318, "x2": -1.0144927536231894, "y2": -6.811594202898551, "center_x": -1.1594202898550732, "center_y": -6.956521739130435, "value_uncond": 3.937336051961573e-06}, {"x": -1.0144927536231876, "y": -7.101449275362318, "x2": -0.72463768115942, "y2": -6.811594202898551, "center_x": -0.8695652173913038, "center_y": -6.956521739130435, "value_uncond": 4.649079627101635e-06}, {"x": -0.72463768115942, "y": -7.101449275362318, "x2": -0.43478260869565233, "y2": -6.811594202898551, "center_x": -0.5797101449275361, "center_y": -6.956521739130435, "value_uncond": 5.4384770520955155e-06}, {"x": -0.43478260869565233, "y": -7.101449275362318, "x2": -0.1449275362318847, "y2": -6.811594202898551, "center_x": -0.2898550724637685, "center_y": -6.956521739130435, "value_uncond": 6.302798610653378e-06}, {"x": -0.14492753623188293, "y": -7.101449275362318, "x2": 0.1449275362318847, "y2": -6.811594202898551, "center_x": 8.881784197001252e-16, "center_y": -6.956521739130435, "value_uncond": 7.236613456409447e-06}, {"x": 0.1449275362318847, "y": -7.101449275362318, "x2": 0.43478260869565233, "y2": -6.811594202898551, "center_x": 0.2898550724637685, "center_y": -6.956521739130435, "value_uncond": 8.23157870068867e-06}, {"x": 0.43478260869565233, "y": -7.101449275362318, "x2": 0.72463768115942, "y2": -6.811594202898551, "center_x": 0.5797101449275361, "center_y": -6.956521739130435, "value_uncond": 9.276341077656326e-06}, {"x": 0.72463768115942, "y": -7.101449275362318, "x2": 1.0144927536231876, "y2": -6.811594202898551, "center_x": 0.8695652173913038, "center_y": -6.956521739130435, "value_uncond": 1.0356573628286171e-05}, {"x": 1.0144927536231894, "y": -7.101449275362318, "x2": 1.304347826086957, "y2": -6.811594202898551, "center_x": 1.1594202898550732, "center_y": -6.956521739130435, "value_uncond": 1.1455163704592264e-05}, {"x": 1.304347826086957, "y": -7.101449275362318, "x2": 1.5942028985507246, "y2": -6.811594202898551, "center_x": 1.4492753623188408, "center_y": -6.956521739130435, "value_uncond": 1.2552560335194498e-05}, {"x": 1.5942028985507246, "y": -7.101449275362318, "x2": 1.8840579710144922, "y2": -6.811594202898551, "center_x": 1.7391304347826084, "center_y": -6.956521739130435, "value_uncond": 1.362727906211575e-05}, {"x": 1.884057971014494, "y": -7.101449275362318, "x2": 2.1739130434782616, "y2": -6.811594202898551, "center_x": 2.028985507246378, "center_y": -6.956521739130435, "value_uncond": 1.465655142584053e-05}, {"x": 2.1739130434782616, "y": -7.101449275362318, "x2": 2.4637681159420293, "y2": -6.811594202898551, "center_x": 2.3188405797101455, "center_y": -6.956521739130435, "value_uncond": 1.5617095184701392e-05}, {"x": 2.4637681159420293, "y": -7.101449275362318, "x2": 2.753623188405797, "y2": -6.811594202898551, "center_x": 2.608695652173913, "center_y": -6.956521739130435, "value_uncond": 1.6485971053228203e-05}, {"x": 2.753623188405797, "y": -7.101449275362318, "x2": 3.0434782608695645, "y2": -6.811594202898551, "center_x": 2.8985507246376807, "center_y": -6.956521739130435, "value_uncond": 1.7241483193963902e-05}, {"x": 3.0434782608695663, "y": -7.101449275362318, "x2": 3.333333333333334, "y2": -6.811594202898551, "center_x": 3.18840579710145, "center_y": -6.956521739130435, "value_uncond": 1.7864074774279074e-05}, {"x": 3.333333333333334, "y": -7.101449275362318, "x2": 3.6231884057971016, "y2": -6.811594202898551, "center_x": 3.4782608695652177, "center_y": -6.956521739130435, "value_uncond": 1.833716729516683e-05}, {"x": 3.6231884057971016, "y": -7.101449275362318, "x2": 3.913043478260869, "y2": -6.811594202898551, "center_x": 3.7681159420289854, "center_y": -6.956521739130435, "value_uncond": 1.8647893534485788e-05}, {"x": 3.913043478260871, "y": -7.101449275362318, "x2": 4.202898550724639, "y2": -6.811594202898551, "center_x": 4.057971014492755, "center_y": -6.956521739130435, "value_uncond": 1.878767891462938e-05}, {"x": 4.202898550724639, "y": -7.101449275362318, "x2": 4.492753623188406, "y2": -6.811594202898551, "center_x": 4.347826086956522, "center_y": -6.956521739130435, "value_uncond": 1.8752634640410333e-05}, {"x": 4.492753623188406, "y": -7.101449275362318, "x2": 4.782608695652174, "y2": -6.811594202898551, "center_x": 4.63768115942029, "center_y": -6.956521739130435, "value_uncond": 1.8543737450318508e-05}, {"x": 4.782608695652174, "y": -7.101449275362318, "x2": 5.0724637681159415, "y2": -6.811594202898551, "center_x": 4.927536231884058, "center_y": -6.956521739130435, "value_uncond": 1.8166784384993456e-05}, {"x": 5.072463768115943, "y": -7.101449275362318, "x2": 5.362318840579711, "y2": -6.811594202898551, "center_x": 5.217391304347827, "center_y": -6.956521739130435, "value_uncond": 1.7632125496308203e-05}, {"x": 5.362318840579711, "y": -7.101449275362318, "x2": 5.6521739130434785, "y2": -6.811594202898551, "center_x": 5.507246376811595, "center_y": -6.956521739130435, "value_uncond": 1.6954191697836777e-05}, {"x": 5.6521739130434785, "y": -7.101449275362318, "x2": 5.942028985507246, "y2": -6.811594202898551, "center_x": 5.797101449275362, "center_y": -6.956521739130435, "value_uncond": 1.6150847816069353e-05}, {"x": 5.942028985507246, "y": -7.101449275362318, "x2": 6.231884057971014, "y2": -6.811594202898551, "center_x": 6.08695652173913, "center_y": -6.956521739130435, "value_uncond": 1.524261130753217e-05}, {"x": 6.2318840579710155, "y": -7.101449275362318, "x2": 6.521739130434783, "y2": -6.811594202898551, "center_x": 6.376811594202899, "center_y": -6.956521739130435, "value_uncond": 1.4251784269809043e-05}, {"x": 6.521739130434785, "y": -7.101449275362318, "x2": 6.8115942028985526, "y2": -6.811594202898551, "center_x": 6.666666666666669, "center_y": -6.956521739130435, "value_uncond": 1.3201549820744305e-05}, {"x": 6.811594202898551, "y": -7.101449275362318, "x2": 7.101449275362318, "y2": -6.811594202898551, "center_x": 6.956521739130435, "center_y": -6.956521739130435, "value_uncond": 1.2115083529099698e-05}, {"x": 7.10144927536232, "y": -7.101449275362318, "x2": 7.391304347826088, "y2": -6.811594202898551, "center_x": 7.246376811594204, "center_y": -6.956521739130435, "value_uncond": 1.1014726580662296e-05}, {"x": 7.391304347826086, "y": -7.101449275362318, "x2": 7.681159420289854, "y2": -6.811594202898551, "center_x": 7.53623188405797, "center_y": -6.956521739130435, "value_uncond": 9.921260294568306e-06}, {"x": 7.681159420289855, "y": -7.101449275362318, "x2": 7.971014492753623, "y2": -6.811594202898551, "center_x": 7.826086956521739, "center_y": -6.956521739130435, "value_uncond": 8.853312241759115e-06}, {"x": 7.971014492753625, "y": -7.101449275362318, "x2": 8.260869565217392, "y2": -6.811594202898551, "center_x": 8.115942028985508, "center_y": -6.956521739130435, "value_uncond": 7.826913483440587e-06}, {"x": 8.26086956521739, "y": -7.101449275362318, "x2": 8.550724637681158, "y2": -6.811594202898551, "center_x": 8.405797101449274, "center_y": -6.956521739130435, "value_uncond": 6.855215309959383e-06}, {"x": 8.55072463768116, "y": -7.101449275362318, "x2": 8.840579710144928, "y2": -6.811594202898551, "center_x": 8.695652173913043, "center_y": -6.956521739130435, "value_uncond": 5.948363235535961e-06}, {"x": 8.84057971014493, "y": -7.101449275362318, "x2": 9.130434782608697, "y2": -6.811594202898551, "center_x": 8.985507246376812, "center_y": -6.956521739130435, "value_uncond": 5.113516672729353e-06}, {"x": 9.130434782608695, "y": -7.101449275362318, "x2": 9.420289855072463, "y2": -6.811594202898551, "center_x": 9.275362318840578, "center_y": -6.956521739130435, "value_uncond": 4.354995257507432e-06}, {"x": 9.420289855072465, "y": -7.101449275362318, "x2": 9.710144927536232, "y2": -6.811594202898551, "center_x": 9.565217391304348, "center_y": -6.956521739130435, "value_uncond": 3.674527576762701e-06}, {"x": 9.710144927536234, "y": -7.101449275362318, "x2": 10.000000000000002, "y2": -6.811594202898551, "center_x": 9.855072463768117, "center_y": -6.956521739130435, "value_uncond": 3.071575184386158e-06}, {"x": 10.0, "y": -7.101449275362318, "x2": 10.289855072463768, "y2": -6.811594202898551, "center_x": 10.144927536231883, "center_y": -6.956521739130435, "value_uncond": 2.5437041816438e-06}, {"x": -10.0, "y": -6.811594202898551, "x2": -9.710144927536232, "y2": -6.521739130434783, "center_x": -9.855072463768117, "center_y": -6.666666666666667, "value_uncond": 4.99251547394975e-10}, {"x": -9.710144927536232, "y": -6.811594202898551, "x2": -9.420289855072465, "y2": -6.521739130434783, "center_x": -9.565217391304348, "center_y": -6.666666666666667, "value_uncond": 7.800267285789022e-10}, {"x": -9.420289855072463, "y": -6.811594202898551, "x2": -9.130434782608695, "y2": -6.521739130434783, "center_x": -9.275362318840578, "center_y": -6.666666666666667, "value_uncond": 1.207383854651945e-09}, {"x": -9.130434782608695, "y": -6.811594202898551, "x2": -8.840579710144928, "y2": -6.521739130434783, "center_x": -8.985507246376812, "center_y": -6.666666666666667, "value_uncond": 1.85151424677519e-09}, {"x": -8.840579710144928, "y": -6.811594202898551, "x2": -8.55072463768116, "y2": -6.521739130434783, "center_x": -8.695652173913043, "center_y": -6.666666666666667, "value_uncond": 2.8129017726522515e-09}, {"x": -8.55072463768116, "y": -6.811594202898551, "x2": -8.260869565217392, "y2": -6.521739130434783, "center_x": -8.405797101449277, "center_y": -6.666666666666667, "value_uncond": 4.233776128403348e-09}, {"x": -8.26086956521739, "y": -6.811594202898551, "x2": -7.971014492753623, "y2": -6.521739130434783, "center_x": -8.115942028985508, "center_y": -6.666666666666667, "value_uncond": 6.313163363352597e-09}, {"x": -7.971014492753623, "y": -6.811594202898551, "x2": -7.681159420289855, "y2": -6.521739130434783, "center_x": -7.826086956521739, "center_y": -6.666666666666667, "value_uncond": 9.326355800317806e-09}, {"x": -7.681159420289855, "y": -6.811594202898551, "x2": -7.391304347826088, "y2": -6.521739130434783, "center_x": -7.536231884057972, "center_y": -6.666666666666667, "value_uncond": 1.3649688690943727e-08}, {"x": -7.391304347826087, "y": -6.811594202898551, "x2": -7.101449275362319, "y2": -6.521739130434783, "center_x": -7.246376811594203, "center_y": -6.666666666666667, "value_uncond": 1.9791528123619735e-08}, {"x": -7.101449275362318, "y": -6.811594202898551, "x2": -6.811594202898551, "y2": -6.521739130434783, "center_x": -6.956521739130435, "center_y": -6.666666666666667, "value_uncond": 2.8430318408449762e-08}, {"x": -6.811594202898551, "y": -6.811594202898551, "x2": -6.521739130434783, "y2": -6.521739130434783, "center_x": -6.666666666666667, "center_y": -6.666666666666667, "value_uncond": 4.046037783073838e-08}, {"x": -6.521739130434782, "y": -6.811594202898551, "x2": -6.231884057971015, "y2": -6.521739130434783, "center_x": -6.3768115942028984, "center_y": -6.666666666666667, "value_uncond": 5.7045837298942615e-08}, {"x": -6.231884057971014, "y": -6.811594202898551, "x2": -5.942028985507246, "y2": -6.521739130434783, "center_x": -6.08695652173913, "center_y": -6.666666666666667, "value_uncond": 7.968265540118451e-08}, {"x": -5.942028985507246, "y": -6.811594202898551, "x2": -5.6521739130434785, "y2": -6.521739130434783, "center_x": -5.797101449275362, "center_y": -6.666666666666667, "value_uncond": 1.1026798852770564e-07}, {"x": -5.6521739130434785, "y": -6.811594202898551, "x2": -5.362318840579711, "y2": -6.521739130434783, "center_x": -5.507246376811595, "center_y": -6.666666666666667, "value_uncond": 1.5117532847811418e-07}, {"x": -5.36231884057971, "y": -6.811594202898551, "x2": -5.072463768115942, "y2": -6.521739130434783, "center_x": -5.217391304347826, "center_y": -6.666666666666667, "value_uncond": 2.053327407104132e-07}, {"x": -5.0724637681159415, "y": -6.811594202898551, "x2": -4.782608695652174, "y2": -6.521739130434783, "center_x": -4.927536231884058, "center_y": -6.666666666666667, "value_uncond": 2.763002651093713e-07}, {"x": -4.782608695652174, "y": -6.811594202898551, "x2": -4.492753623188406, "y2": -6.521739130434783, "center_x": -4.63768115942029, "center_y": -6.666666666666667, "value_uncond": 3.6834112803287286e-07}, {"x": -4.492753623188405, "y": -6.811594202898551, "x2": -4.202898550724638, "y2": -6.521739130434783, "center_x": -4.3478260869565215, "center_y": -6.666666666666667, "value_uncond": 4.86479944072979e-07}, {"x": -4.202898550724638, "y": -6.811594202898551, "x2": -3.91304347826087, "y2": -6.521739130434783, "center_x": -4.057971014492754, "center_y": -6.666666666666667, "value_uncond": 6.365396803650244e-07}, {"x": -3.913043478260869, "y": -6.811594202898551, "x2": -3.6231884057971016, "y2": -6.521739130434783, "center_x": -3.7681159420289854, "center_y": -6.666666666666667, "value_uncond": 8.25147973654423e-07}, {"x": -3.6231884057971016, "y": -6.811594202898551, "x2": -3.333333333333334, "y2": -6.521739130434783, "center_x": -3.4782608695652177, "center_y": -6.666666666666667, "value_uncond": 1.0597026193421523e-06}, {"x": -3.333333333333333, "y": -6.811594202898551, "x2": -3.0434782608695654, "y2": -6.521739130434783, "center_x": -3.1884057971014492, "center_y": -6.666666666666667, "value_uncond": 1.3482858995648702e-06}, {"x": -3.0434782608695645, "y": -6.811594202898551, "x2": -2.753623188405797, "y2": -6.521739130434783, "center_x": -2.8985507246376807, "center_y": -6.666666666666667, "value_uncond": 1.6995180916205377e-06}, {"x": -2.753623188405797, "y": -6.811594202898551, "x2": -2.4637681159420293, "y2": -6.521739130434783, "center_x": -2.608695652173913, "center_y": -6.666666666666667, "value_uncond": 2.1223421827994224e-06}, {"x": -2.4637681159420284, "y": -6.811594202898551, "x2": -2.1739130434782608, "y2": -6.521739130434783, "center_x": -2.3188405797101446, "center_y": -6.666666666666667, "value_uncond": 2.6257346452051987e-06}, {"x": -2.1739130434782608, "y": -6.811594202898551, "x2": -1.8840579710144931, "y2": -6.521739130434783, "center_x": -2.028985507246377, "center_y": -6.666666666666667, "value_uncond": 3.2183411448696105e-06}, {"x": -1.8840579710144922, "y": -6.811594202898551, "x2": -1.5942028985507246, "y2": -6.521739130434783, "center_x": -1.7391304347826084, "center_y": -6.666666666666667, "value_uncond": 3.9080412136115375e-06}, {"x": -1.5942028985507246, "y": -6.811594202898551, "x2": -1.304347826086957, "y2": -6.521739130434783, "center_x": -1.4492753623188408, "center_y": -6.666666666666667, "value_uncond": 4.701452007438475e-06}, {"x": -1.304347826086957, "y": -6.811594202898551, "x2": -1.0144927536231894, "y2": -6.521739130434783, "center_x": -1.1594202898550732, "center_y": -6.666666666666667, "value_uncond": 5.603387975479224e-06}, {"x": -1.0144927536231876, "y": -6.811594202898551, "x2": -0.72463768115942, "y2": -6.521739130434783, "center_x": -0.8695652173913038, "center_y": -6.666666666666667, "value_uncond": 6.616300091166552e-06}, {"x": -0.72463768115942, "y": -6.811594202898551, "x2": -0.43478260869565233, "y2": -6.521739130434783, "center_x": -0.5797101449275361, "center_y": -6.666666666666667, "value_uncond": 7.739724655570018e-06}, {"x": -0.43478260869565233, "y": -6.811594202898551, "x2": -0.1449275362318847, "y2": -6.521739130434783, "center_x": -0.2898550724637685, "center_y": -6.666666666666667, "value_uncond": 8.969776895016973e-06}, {"x": -0.14492753623188293, "y": -6.811594202898551, "x2": 0.1449275362318847, "y2": -6.521739130434783, "center_x": 8.881784197001252e-16, "center_y": -6.666666666666667, "value_uncond": 1.0298727944401408e-05}, {"x": 0.1449275362318847, "y": -6.811594202898551, "x2": 0.43478260869565233, "y2": -6.521739130434783, "center_x": 0.2898550724637685, "center_y": -6.666666666666667, "value_uncond": 1.1714704689143955e-05}, {"x": 0.43478260869565233, "y": -6.811594202898551, "x2": 0.72463768115942, "y2": -6.521739130434783, "center_x": 0.5797101449275361, "center_y": -6.666666666666667, "value_uncond": 1.3201549820744305e-05}, {"x": 0.72463768115942, "y": -6.811594202898551, "x2": 1.0144927536231876, "y2": -6.521739130434783, "center_x": 0.8695652173913038, "center_y": -6.666666666666667, "value_uncond": 1.4738874043274142e-05}, {"x": 1.0144927536231894, "y": -6.811594202898551, "x2": 1.304347826086957, "y2": -6.521739130434783, "center_x": 1.1594202898550732, "center_y": -6.666666666666667, "value_uncond": 1.6302323630079804e-05}, {"x": 1.304347826086957, "y": -6.811594202898551, "x2": 1.5942028985507246, "y2": -6.521739130434783, "center_x": 1.4492753623188408, "center_y": -6.666666666666667, "value_uncond": 1.7864074774279058e-05}, {"x": 1.5942028985507246, "y": -6.811594202898551, "x2": 1.8840579710144922, "y2": -6.521739130434783, "center_x": 1.7391304347826084, "center_y": -6.666666666666667, "value_uncond": 1.9393552043168186e-05}, {"x": 1.884057971014494, "y": -6.811594202898551, "x2": 2.1739130434782616, "y2": -6.521739130434783, "center_x": 2.028985507246378, "center_y": -6.666666666666667, "value_uncond": 2.0858352687633163e-05}, {"x": 2.1739130434782616, "y": -6.811594202898551, "x2": 2.4637681159420293, "y2": -6.521739130434783, "center_x": 2.3188405797101455, "center_y": -6.666666666666667, "value_uncond": 2.2225342773643506e-05}, {"x": 2.4637681159420293, "y": -6.811594202898551, "x2": 2.753623188405797, "y2": -6.521739130434783, "center_x": 2.608695652173913, "center_y": -6.666666666666667, "value_uncond": 2.346187644250868e-05}, {"x": 2.753623188405797, "y": -6.811594202898551, "x2": 3.0434782608695645, "y2": -6.521739130434783, "center_x": 2.8985507246376807, "center_y": -6.666666666666667, "value_uncond": 2.4537077438526764e-05}, {"x": 3.0434782608695663, "y": -6.811594202898551, "x2": 3.333333333333334, "y2": -6.521739130434783, "center_x": 3.18840579710145, "center_y": -6.666666666666667, "value_uncond": 2.542311361342594e-05}, {"x": 3.333333333333334, "y": -6.811594202898551, "x2": 3.6231884057971016, "y2": -6.521739130434783, "center_x": 3.4782608695652177, "center_y": -6.666666666666667, "value_uncond": 2.6096391410354376e-05}, {"x": 3.6231884057971016, "y": -6.811594202898551, "x2": 3.913043478260869, "y2": -6.521739130434783, "center_x": 3.7681159420289854, "center_y": -6.666666666666667, "value_uncond": 2.6538598946131853e-05}, {"x": 3.913043478260871, "y": -6.811594202898551, "x2": 4.202898550724639, "y2": -6.521739130434783, "center_x": 4.057971014492755, "center_y": -6.666666666666667, "value_uncond": 2.673753337994889e-05}, {"x": 4.202898550724639, "y": -6.811594202898551, "x2": 4.492753623188406, "y2": -6.521739130434783, "center_x": 4.347826086956522, "center_y": -6.666666666666667, "value_uncond": 2.6687660404369222e-05}, {"x": 4.492753623188406, "y": -6.811594202898551, "x2": 4.782608695652174, "y2": -6.521739130434783, "center_x": 4.63768115942029, "center_y": -6.666666666666667, "value_uncond": 2.639037005687939e-05}, {"x": 4.782608695652174, "y": -6.811594202898551, "x2": 5.0724637681159415, "y2": -6.521739130434783, "center_x": 4.927536231884058, "center_y": -6.666666666666667, "value_uncond": 2.585391234900603e-05}, {"x": 5.072463768115943, "y": -6.811594202898551, "x2": 5.362318840579711, "y2": -6.521739130434783, "center_x": 5.217391304347827, "center_y": -6.666666666666667, "value_uncond": 2.5093016873409156e-05}, {"x": 5.362318840579711, "y": -6.811594202898551, "x2": 5.6521739130434785, "y2": -6.521739130434783, "center_x": 5.507246376811595, "center_y": -6.666666666666667, "value_uncond": 2.4128220868091493e-05}, {"x": 5.6521739130434785, "y": -6.811594202898551, "x2": 5.942028985507246, "y2": -6.521739130434783, "center_x": 5.797101449275362, "center_y": -6.666666666666667, "value_uncond": 2.2984948516464874e-05}, {"x": 5.942028985507246, "y": -6.811594202898551, "x2": 6.231884057971014, "y2": -6.521739130434783, "center_x": 6.08695652173913, "center_y": -6.666666666666667, "value_uncond": 2.1692399070934804e-05}, {"x": 6.2318840579710155, "y": -6.811594202898551, "x2": 6.521739130434783, "y2": -6.521739130434783, "center_x": 6.376811594202899, "center_y": -6.666666666666667, "value_uncond": 2.0282311581402006e-05}, {"x": 6.521739130434785, "y": -6.811594202898551, "x2": 6.8115942028985526, "y2": -6.521739130434783, "center_x": 6.666666666666669, "center_y": -6.666666666666667, "value_uncond": 1.8787678914629364e-05}, {"x": 6.811594202898551, "y": -6.811594202898551, "x2": 7.101449275362318, "y2": -6.521739130434783, "center_x": 6.956521739130435, "center_y": -6.666666666666667, "value_uncond": 1.7241483193963888e-05}, {"x": 7.10144927536232, "y": -6.811594202898551, "x2": 7.391304347826088, "y2": -6.521739130434783, "center_x": 7.246376811594204, "center_y": -6.666666666666667, "value_uncond": 1.56755190973668e-05}, {"x": 7.391304347826086, "y": -6.811594202898551, "x2": 7.681159420289854, "y2": -6.521739130434783, "center_x": 7.53623188405797, "center_y": -6.666666666666667, "value_uncond": 1.4119361391184097e-05}, {"x": 7.681159420289855, "y": -6.811594202898551, "x2": 7.971014492753623, "y2": -6.521739130434783, "center_x": 7.826086956521739, "center_y": -6.666666666666667, "value_uncond": 1.2599519752427816e-05}, {"x": 7.971014492753625, "y": -6.811594202898551, "x2": 8.260869565217392, "y2": -6.521739130434783, "center_x": 8.115942028985508, "center_y": -6.666666666666667, "value_uncond": 1.1138808656268394e-05}, {"x": 8.26086956521739, "y": -6.811594202898551, "x2": 8.550724637681158, "y2": -6.521739130434783, "center_x": 8.405797101449274, "center_y": -6.666666666666667, "value_uncond": 9.755944255256153e-06}, {"x": 8.55072463768116, "y": -6.811594202898551, "x2": 8.840579710144928, "y2": -6.521739130434783, "center_x": 8.695652173913043, "center_y": -6.666666666666667, "value_uncond": 8.465365055944217e-06}, {"x": 8.84057971014493, "y": -6.811594202898551, "x2": 9.130434782608697, "y2": -6.521739130434783, "center_x": 8.985507246376812, "center_y": -6.666666666666667, "value_uncond": 7.277259918443921e-06}, {"x": 9.130434782608695, "y": -6.811594202898551, "x2": 9.420289855072463, "y2": -6.521739130434783, "center_x": 9.275362318840578, "center_y": -6.666666666666667, "value_uncond": 6.197776297765796e-06}, {"x": 9.420289855072465, "y": -6.811594202898551, "x2": 9.710144927536232, "y2": -6.521739130434783, "center_x": 9.565217391304348, "center_y": -6.666666666666667, "value_uncond": 5.229374218373128e-06}, {"x": 9.710144927536234, "y": -6.811594202898551, "x2": 10.000000000000002, "y2": -6.521739130434783, "center_x": 9.855072463768117, "center_y": -6.666666666666667, "value_uncond": 4.371287395038365e-06}, {"x": 10.0, "y": -6.811594202898551, "x2": 10.289855072463768, "y2": -6.521739130434783, "center_x": 10.144927536231883, "center_y": -6.666666666666667, "value_uncond": 3.6200520444522546e-06}, {"x": -10.0, "y": -6.521739130434782, "x2": -9.710144927536232, "y2": -6.231884057971015, "center_x": -9.855072463768117, "center_y": -6.3768115942028984, "value_uncond": 7.039040184716764e-10}, {"x": -9.710144927536232, "y": -6.521739130434782, "x2": -9.420289855072465, "y2": -6.231884057971015, "center_x": -9.565217391304348, "center_y": -6.3768115942028984, "value_uncond": 1.0997741551867875e-09}, {"x": -9.420289855072463, "y": -6.521739130434782, "x2": -9.130434782608695, "y2": -6.231884057971015, "center_x": -9.275362318840578, "center_y": -6.3768115942028984, "value_uncond": 1.7023128952967586e-09}, {"x": -9.130434782608695, "y": -6.521739130434782, "x2": -8.840579710144928, "y2": -6.231884057971015, "center_x": -8.985507246376812, "center_y": -6.3768115942028984, "value_uncond": 2.6104842846516803e-09}, {"x": -8.840579710144928, "y": -6.521739130434782, "x2": -8.55072463768116, "y2": -6.231884057971015, "center_x": -8.695652173913043, "center_y": -6.3768115942028984, "value_uncond": 3.965962392440151e-09}, {"x": -8.55072463768116, "y": -6.521739130434782, "x2": -8.260869565217392, "y2": -6.231884057971015, "center_x": -8.405797101449277, "center_y": -6.3768115942028984, "value_uncond": 5.969279505777591e-09}, {"x": -8.26086956521739, "y": -6.521739130434782, "x2": -7.971014492753623, "y2": -6.231884057971015, "center_x": -8.115942028985508, "center_y": -6.3768115942028984, "value_uncond": 8.901046143811682e-09}, {"x": -7.971014492753623, "y": -6.521739130434782, "x2": -7.681159420289855, "y2": -6.231884057971015, "center_x": -7.826086956521739, "center_y": -6.3768115942028984, "value_uncond": 1.314940205953262e-08}, {"x": -7.681159420289855, "y": -6.521739130434782, "x2": -7.391304347826088, "y2": -6.231884057971015, "center_x": -7.536231884057972, "center_y": -6.3768115942028984, "value_uncond": 1.924494930576833e-08}, {"x": -7.391304347826087, "y": -6.521739130434782, "x2": -7.101449275362319, "y2": -6.231884057971015, "center_x": -7.246376811594203, "center_y": -6.3768115942028984, "value_uncond": 2.7904442661425693e-08}, {"x": -7.101449275362318, "y": -6.521739130434782, "x2": -6.811594202898551, "y2": -6.231884057971015, "center_x": -6.956521739130435, "center_y": -6.3768115942028984, "value_uncond": 4.008443334539075e-08}, {"x": -6.811594202898551, "y": -6.521739130434782, "x2": -6.521739130434783, "y2": -6.231884057971015, "center_x": -6.666666666666667, "center_y": -6.3768115942028984, "value_uncond": 5.7045837298942615e-08}, {"x": -6.521739130434782, "y": -6.521739130434782, "x2": -6.231884057971015, "y2": -6.231884057971015, "center_x": -6.3768115942028984, "center_y": -6.3768115942028984, "value_uncond": 8.042998428613649e-08}, {"x": -6.231884057971014, "y": -6.521739130434782, "x2": -5.942028985507246, "y2": -6.231884057971015, "center_x": -6.08695652173913, "center_y": -6.3768115942028984, "value_uncond": 1.1234605407244484e-07}, {"x": -5.942028985507246, "y": -6.521739130434782, "x2": -5.6521739130434785, "y2": -6.231884057971015, "center_x": -5.797101449275362, "center_y": -6.3768115942028984, "value_uncond": 1.5546888264731687e-07}, {"x": -5.6521739130434785, "y": -6.521739130434782, "x2": -5.362318840579711, "y2": -6.231884057971015, "center_x": -5.507246376811595, "center_y": -6.3768115942028984, "value_uncond": 2.131449001305415e-07}, {"x": -5.36231884057971, "y": -6.521739130434782, "x2": -5.072463768115942, "y2": -6.231884057971015, "center_x": -5.217391304347826, "center_y": -6.3768115942028984, "value_uncond": 2.895024403309789e-07}, {"x": -5.0724637681159415, "y": -6.521739130434782, "x2": -4.782608695652174, "y2": -6.231884057971015, "center_x": -4.927536231884058, "center_y": -6.3768115942028984, "value_uncond": 3.8956086952577673e-07}, {"x": -4.782608695652174, "y": -6.521739130434782, "x2": -4.492753623188406, "y2": -6.231884057971015, "center_x": -4.63768115942029, "center_y": -6.3768115942028984, "value_uncond": 5.193309896456e-07}, {"x": -4.492753623188405, "y": -6.521739130434782, "x2": -4.202898550724638, "y2": -6.231884057971015, "center_x": -4.3478260869565215, "center_y": -6.3768115942028984, "value_uncond": 6.85897098017273e-07}, {"x": -4.202898550724638, "y": -6.521739130434782, "x2": -3.91304347826087, "y2": -6.231884057971015, "center_x": -4.057971014492754, "center_y": -6.3768115942028984, "value_uncond": 8.974691040289142e-07}, {"x": -3.913043478260869, "y": -6.521739130434782, "x2": -3.6231884057971016, "y2": -6.231884057971015, "center_x": -3.7681159420289854, "center_y": -6.3768115942028984, "value_uncond": 1.1633914356796153e-06}, {"x": -3.6231884057971016, "y": -6.521739130434782, "x2": -3.333333333333334, "y2": -6.231884057971015, "center_x": -3.4782608695652177, "center_y": -6.3768115942028984, "value_uncond": 1.4940943819444437e-06}, {"x": -3.333333333333333, "y": -6.521739130434782, "x2": -3.0434782608695654, "y2": -6.231884057971015, "center_x": -3.1884057971014492, "center_y": -6.3768115942028984, "value_uncond": 1.9009733023452697e-06}, {"x": -3.0434782608695645, "y": -6.521739130434782, "x2": -2.753623188405797, "y2": -6.231884057971015, "center_x": -2.8985507246376807, "center_y": -6.3768115942028984, "value_uncond": 2.3961820857624293e-06}, {"x": -2.753623188405797, "y": -6.521739130434782, "x2": -2.4637681159420293, "y2": -6.231884057971015, "center_x": -2.608695652173913, "center_y": -6.3768115942028984, "value_uncond": 2.9923296158811253e-06}, {"x": -2.4637681159420284, "y": -6.521739130434782, "x2": -2.1739130434782608, "y2": -6.231884057971015, "center_x": -2.3188405797101446, "center_y": -6.3768115942028984, "value_uncond": 3.7020719872461713e-06}, {"x": -2.1739130434782608, "y": -6.521739130434782, "x2": -1.8840579710144931, "y2": -6.231884057971015, "center_x": -2.028985507246377, "center_y": -6.3768115942028984, "value_uncond": 4.537598884784661e-06}, {"x": -1.8840579710144922, "y": -6.521739130434782, "x2": -1.5942028985507246, "y2": -6.231884057971015, "center_x": -1.7391304347826084, "center_y": -6.3768115942028984, "value_uncond": 5.510019806584133e-06}, {"x": -1.5942028985507246, "y": -6.521739130434782, "x2": -1.304347826086957, "y2": -6.231884057971015, "center_x": -1.4492753623188408, "center_y": -6.3768115942028984, "value_uncond": 6.628664403656853e-06}, {"x": -1.304347826086957, "y": -6.521739130434782, "x2": -1.0144927536231894, "y2": -6.231884057971015, "center_x": -1.1594202898550732, "center_y": -6.3768115942028984, "value_uncond": 7.900320657144142e-06}, {"x": -1.0144927536231876, "y": -6.521739130434782, "x2": -0.72463768115942, "y2": -6.231884057971015, "center_x": -0.8695652173913038, "center_y": -6.3768115942028984, "value_uncond": 9.328444239957765e-06}, {"x": -0.72463768115942, "y": -6.521739130434782, "x2": -0.43478260869565233, "y2": -6.231884057971015, "center_x": -0.5797101449275361, "center_y": -6.3768115942028984, "value_uncond": 1.091238137437345e-05}, {"x": -0.43478260869565233, "y": -6.521739130434782, "x2": -0.1449275362318847, "y2": -6.231884057971015, "center_x": -0.2898550724637685, "center_y": -6.3768115942028984, "value_uncond": 1.2646654845922255e-05}, {"x": -0.14492753623188293, "y": -6.521739130434782, "x2": 0.1449275362318847, "y2": -6.231884057971015, "center_x": 8.881784197001252e-16, "center_y": -6.3768115942028984, "value_uncond": 1.4520367584310195e-05}, {"x": 0.1449275362318847, "y": -6.521739130434782, "x2": 0.43478260869565233, "y2": -6.231884057971015, "center_x": 0.2898550724637685, "center_y": -6.3768115942028984, "value_uncond": 1.6516779465029294e-05}, {"x": 0.43478260869565233, "y": -6.521739130434782, "x2": 0.72463768115942, "y2": -6.231884057971015, "center_x": 0.5797101449275361, "center_y": -6.3768115942028984, "value_uncond": 1.8613109999084778e-05}, {"x": 0.72463768115942, "y": -6.521739130434782, "x2": 1.0144927536231876, "y2": -6.231884057971015, "center_x": 0.8695652173913038, "center_y": -6.3768115942028984, "value_uncond": 2.078061193989797e-05}, {"x": 1.0144927536231894, "y": -6.521739130434782, "x2": 1.304347826086957, "y2": -6.231884057971015, "center_x": 1.1594202898550732, "center_y": -6.3768115942028984, "value_uncond": 2.2984948516464915e-05}, {"x": 1.304347826086957, "y": -6.521739130434782, "x2": 1.5942028985507246, "y2": -6.231884057971015, "center_x": 1.4492753623188408, "center_y": -6.3768115942028984, "value_uncond": 2.5186890427292652e-05}, {"x": 1.5942028985507246, "y": -6.521739130434782, "x2": 1.8840579710144922, "y2": -6.231884057971015, "center_x": 1.7391304347826084, "center_y": -6.3768115942028984, "value_uncond": 2.7343328802596077e-05}, {"x": 1.884057971014494, "y": -6.521739130434782, "x2": 2.1739130434782616, "y2": -6.231884057971015, "center_x": 2.028985507246378, "center_y": -6.3768115942028984, "value_uncond": 2.9408578405283986e-05}, {"x": 2.1739130434782616, "y": -6.521739130434782, "x2": 2.4637681159420293, "y2": -6.231884057971015, "center_x": 2.3188405797101455, "center_y": -6.3768115942028984, "value_uncond": 3.133592308708699e-05}, {"x": 2.4637681159420293, "y": -6.521739130434782, "x2": 2.753623188405797, "y2": -6.231884057971015, "center_x": 2.608695652173913, "center_y": -6.3768115942028984, "value_uncond": 3.3079334846211935e-05}, {"x": 2.753623188405797, "y": -6.521739130434782, "x2": 3.0434782608695645, "y2": -6.231884057971015, "center_x": 2.8985507246376807, "center_y": -6.3768115942028984, "value_uncond": 3.459528067694787e-05}, {"x": 3.0434782608695663, "y": -6.521739130434782, "x2": 3.333333333333334, "y2": -6.231884057971015, "center_x": 3.18840579710145, "center_y": -6.3768115942028984, "value_uncond": 3.5844519517121926e-05}, {"x": 3.333333333333334, "y": -6.521739130434782, "x2": 3.6231884057971016, "y2": -6.231884057971015, "center_x": 3.4782608695652177, "center_y": -6.3768115942028984, "value_uncond": 3.679378637323594e-05}, {"x": 3.6231884057971016, "y": -6.521739130434782, "x2": 3.913043478260869, "y2": -6.231884057971015, "center_x": 3.7681159420289854, "center_y": -6.3768115942028984, "value_uncond": 3.741726298148362e-05}, {"x": 3.913043478260871, "y": -6.521739130434782, "x2": 4.202898550724639, "y2": -6.231884057971015, "center_x": 4.057971014492755, "center_y": -6.3768115942028984, "value_uncond": 3.769774433022827e-05}, {"x": 4.202898550724639, "y": -6.521739130434782, "x2": 4.492753623188406, "y2": -6.231884057971015, "center_x": 4.347826086956522, "center_y": -6.3768115942028984, "value_uncond": 3.762742749674654e-05}, {"x": 4.492753623188406, "y": -6.521739130434782, "x2": 4.782608695652174, "y2": -6.231884057971015, "center_x": 4.63768115942029, "center_y": -6.3768115942028984, "value_uncond": 3.72082723206778e-05}, {"x": 4.782608695652174, "y": -6.521739130434782, "x2": 5.0724637681159415, "y2": -6.231884057971015, "center_x": 4.927536231884058, "center_y": -6.3768115942028984, "value_uncond": 3.6451910646322456e-05}, {"x": 5.072463768115943, "y": -6.521739130434782, "x2": 5.362318840579711, "y2": -6.231884057971015, "center_x": 5.217391304347827, "center_y": -6.3768115942028984, "value_uncond": 3.537910999962595e-05}, {"x": 5.362318840579711, "y": -6.521739130434782, "x2": 5.6521739130434785, "y2": -6.231884057971015, "center_x": 5.507246376811595, "center_y": -6.3768115942028984, "value_uncond": 3.4018826213442224e-05}, {"x": 5.6521739130434785, "y": -6.521739130434782, "x2": 5.942028985507246, "y2": -6.231884057971015, "center_x": 5.797101449275362, "center_y": -6.3768115942028984, "value_uncond": 3.2406905315616995e-05}, {"x": 5.942028985507246, "y": -6.521739130434782, "x2": 6.231884057971014, "y2": -6.231884057971015, "center_x": 6.08695652173913, "center_y": -6.3768115942028984, "value_uncond": 3.0584515873802894e-05}, {"x": 6.2318840579710155, "y": -6.521739130434782, "x2": 6.521739130434783, "y2": -6.231884057971015, "center_x": 6.376811594202899, "center_y": -6.3768115942028984, "value_uncond": 2.8596407363257766e-05}, {"x": 6.521739130434785, "y": -6.521739130434782, "x2": 6.8115942028985526, "y2": -6.231884057971015, "center_x": 6.666666666666669, "center_y": -6.3768115942028984, "value_uncond": 2.6489097038893434e-05}, {"x": 6.811594202898551, "y": -6.521739130434782, "x2": 7.101449275362318, "y2": -6.231884057971015, "center_x": 6.956521739130435, "center_y": -6.3768115942028984, "value_uncond": 2.4309087008280366e-05}, {"x": 7.10144927536232, "y": -6.521739130434782, "x2": 7.391304347826088, "y2": -6.231884057971015, "center_x": 7.246376811594204, "center_y": -6.3768115942028984, "value_uncond": 2.21012051777109e-05}, {"x": 7.391304347826086, "y": -6.521739130434782, "x2": 7.681159420289854, "y2": -6.231884057971015, "center_x": 7.53623188405797, "center_y": -6.3768115942028984, "value_uncond": 1.9907149558908627e-05}, {"x": 7.681159420289855, "y": -6.521739130434782, "x2": 7.971014492753623, "y2": -6.231884057971015, "center_x": 7.826086956521739, "center_y": -6.3768115942028984, "value_uncond": 1.7764296637283633e-05}, {"x": 7.971014492753625, "y": -6.521739130434782, "x2": 8.260869565217392, "y2": -6.231884057971015, "center_x": 8.115942028985508, "center_y": -6.3768115942028984, "value_uncond": 1.5704812964618436e-05}, {"x": 8.26086956521739, "y": -6.521739130434782, "x2": 8.550724637681158, "y2": -6.231884057971015, "center_x": 8.405797101449274, "center_y": -6.3768115942028984, "value_uncond": 1.375508679160399e-05}, {"x": 8.55072463768116, "y": -6.521739130434782, "x2": 8.840579710144928, "y2": -6.231884057971015, "center_x": 8.695652173913043, "center_y": -6.3768115942028984, "value_uncond": 1.1935475236483604e-05}, {"x": 8.84057971014493, "y": -6.521739130434782, "x2": 9.130434782608697, "y2": -6.231884057971015, "center_x": 8.985507246376812, "center_y": -6.3768115942028984, "value_uncond": 1.0260343762145541e-05}, {"x": 9.130434782608695, "y": -6.521739130434782, "x2": 9.420289855072463, "y2": -6.231884057971015, "center_x": 9.275362318840578, "center_y": -6.3768115942028984, "value_uncond": 8.738359779452863e-06}, {"x": 9.420289855072465, "y": -6.521739130434782, "x2": 9.710144927536232, "y2": -6.231884057971015, "center_x": 9.565217391304348, "center_y": -6.3768115942028984, "value_uncond": 7.372991722533171e-06}, {"x": 9.710144927536234, "y": -6.521739130434782, "x2": 10.000000000000002, "y2": -6.231884057971015, "center_x": 9.855072463768117, "center_y": -6.3768115942028984, "value_uncond": 6.1631591916285065e-06}, {"x": 10.0, "y": -6.521739130434782, "x2": 10.289855072463768, "y2": -6.231884057971015, "center_x": 10.144927536231883, "center_y": -6.3768115942028984, "value_uncond": 5.103978534393217e-06}, {"x": -10.0, "y": -6.231884057971014, "x2": -9.710144927536232, "y2": -5.942028985507246, "center_x": -9.855072463768117, "center_y": -6.08695652173913, "value_uncond": 9.832258407473207e-10}, {"x": -9.710144927536232, "y": -6.231884057971014, "x2": -9.420289855072465, "y2": -5.942028985507246, "center_x": -9.565217391304348, "center_y": -6.08695652173913, "value_uncond": 1.5361843944483886e-09}, {"x": -9.420289855072463, "y": -6.231884057971014, "x2": -9.130434782608695, "y2": -5.942028985507246, "center_x": -9.275362318840578, "center_y": -6.08695652173913, "value_uncond": 2.3778213844086803e-09}, {"x": -9.130434782608695, "y": -6.231884057971014, "x2": -8.840579710144928, "y2": -5.942028985507246, "center_x": -8.985507246376812, "center_y": -6.08695652173913, "value_uncond": 3.6463715764929747e-09}, {"x": -8.840579710144928, "y": -6.231884057971014, "x2": -8.55072463768116, "y2": -5.942028985507246, "center_x": -8.695652173913043, "center_y": -6.08695652173913, "value_uncond": 5.539727868219475e-09}, {"x": -8.55072463768116, "y": -6.231884057971014, "x2": -8.260869565217392, "y2": -5.942028985507246, "center_x": -8.405797101449277, "center_y": -6.08695652173913, "value_uncond": 8.33799737848785e-09}, {"x": -8.26086956521739, "y": -6.231884057971014, "x2": -7.971014492753623, "y2": -5.942028985507246, "center_x": -8.115942028985508, "center_y": -6.08695652173913, "value_uncond": 1.2433141946371896e-08}, {"x": -7.971014492753623, "y": -6.231884057971014, "x2": -7.681159420289855, "y2": -5.942028985507246, "center_x": -7.826086956521739, "center_y": -6.08695652173913, "value_uncond": 1.836732218602715e-08}, {"x": -7.681159420289855, "y": -6.231884057971014, "x2": -7.391304347826088, "y2": -5.942028985507246, "center_x": -7.536231884057972, "center_y": -6.08695652173913, "value_uncond": 2.688169262392831e-08}, {"x": -7.391304347826087, "y": -6.231884057971014, "x2": -7.101449275362319, "y2": -5.942028985507246, "center_x": -7.246376811594203, "center_y": -6.08695652173913, "value_uncond": 3.897742927499661e-08}, {"x": -7.101449275362318, "y": -6.231884057971014, "x2": -6.811594202898551, "y2": -5.942028985507246, "center_x": -6.956521739130435, "center_y": -6.08695652173913, "value_uncond": 5.599066015061769e-08}, {"x": -6.811594202898551, "y": -6.231884057971014, "x2": -6.521739130434783, "y2": -5.942028985507246, "center_x": -6.666666666666667, "center_y": -6.08695652173913, "value_uncond": 7.968265540118451e-08}, {"x": -6.521739130434782, "y": -6.231884057971014, "x2": -6.231884057971015, "y2": -5.942028985507246, "center_x": -6.3768115942028984, "center_y": -6.08695652173913, "value_uncond": 1.1234605407244484e-07}, {"x": -6.231884057971014, "y": -6.231884057971014, "x2": -5.942028985507246, "y2": -5.942028985507246, "center_x": -6.08695652173913, "center_y": -6.08695652173913, "value_uncond": 1.5692699653833282e-07}, {"x": -5.942028985507246, "y": -6.231884057971014, "x2": -5.6521739130434785, "y2": -5.942028985507246, "center_x": -5.797101449275362, "center_y": -6.08695652173913, "value_uncond": 2.1716174199835867e-07}, {"x": -5.6521739130434785, "y": -6.231884057971014, "x2": -5.362318840579711, "y2": -5.942028985507246, "center_x": -5.507246376811595, "center_y": -6.08695652173913, "value_uncond": 2.977246444577404e-07}, {"x": -5.36231884057971, "y": -6.231884057971014, "x2": -5.072463768115942, "y2": -5.942028985507246, "center_x": -5.217391304347826, "center_y": -6.08695652173913, "value_uncond": 4.0438223511048235e-07}, {"x": -5.0724637681159415, "y": -6.231884057971014, "x2": -4.782608695652174, "y2": -5.942028985507246, "center_x": -4.927536231884058, "center_y": -6.08695652173913, "value_uncond": 5.441456553883133e-07}, {"x": -4.782608695652174, "y": -6.231884057971014, "x2": -4.492753623188406, "y2": -5.942028985507246, "center_x": -4.63768115942029, "center_y": -6.08695652173913, "value_uncond": 7.254109019424205e-07}, {"x": -4.492753623188405, "y": -6.231884057971014, "x2": -4.202898550724638, "y2": -5.942028985507246, "center_x": -4.3478260869565215, "center_y": -6.08695652173913, "value_uncond": 9.580734491734053e-07}, {"x": -4.202898550724638, "y": -6.231884057971014, "x2": -3.91304347826087, "y2": -5.942028985507246, "center_x": -4.057971014492754, "center_y": -6.08695652173913, "value_uncond": 1.2536010467300358e-06}, {"x": -3.913043478260869, "y": -6.231884057971014, "x2": -3.6231884057971016, "y2": -5.942028985507246, "center_x": -3.7681159420289854, "center_y": -6.08695652173913, "value_uncond": 1.625046160338616e-06}, {"x": -3.6231884057971016, "y": -6.231884057971014, "x2": -3.333333333333334, "y2": -5.942028985507246, "center_x": -3.4782608695652177, "center_y": -6.08695652173913, "value_uncond": 2.0869780059399955e-06}, {"x": -3.333333333333333, "y": -6.231884057971014, "x2": -3.0434782608695654, "y2": -5.942028985507246, "center_x": -3.1884057971014492, "center_y": -6.08695652173913, "value_uncond": 2.6553138274374587e-06}, {"x": -3.0434782608695645, "y": -6.231884057971014, "x2": -2.753623188405797, "y2": -5.942028985507246, "center_x": -2.8985507246376807, "center_y": -6.08695652173913, "value_uncond": 3.3470303962360863e-06}, {"x": -2.753623188405797, "y": -6.231884057971014, "x2": -2.4637681159420293, "y2": -5.942028985507246, "center_x": -2.608695652173913, "center_y": -6.08695652173913, "value_uncond": 4.179740028698538e-06}, {"x": -2.4637681159420284, "y": -6.231884057971014, "x2": -2.1739130434782608, "y2": -5.942028985507246, "center_x": -2.3188405797101446, "center_y": -6.08695652173913, "value_uncond": 5.171120986168483e-06}, {"x": -2.1739130434782608, "y": -6.231884057971014, "x2": -1.8840579710144931, "y2": -5.942028985507246, "center_x": -2.028985507246377, "center_y": -6.08695652173913, "value_uncond": 6.338200040615355e-06}, {"x": -1.8840579710144922, "y": -6.231884057971014, "x2": -1.5942028985507246, "y2": -5.942028985507246, "center_x": -1.7391304347826084, "center_y": -6.08695652173913, "value_uncond": 7.696495139530241e-06}, {"x": -1.5942028985507246, "y": -6.231884057971014, "x2": -1.304347826086957, "y2": -5.942028985507246, "center_x": -1.4492753623188408, "center_y": -6.08695652173913, "value_uncond": 9.259038107877462e-06}, {"x": -1.304347826086957, "y": -6.231884057971014, "x2": -1.0144927536231894, "y2": -5.942028985507246, "center_x": -1.1594202898550732, "center_y": -6.08695652173913, "value_uncond": 1.1035310520260253e-05}, {"x": -1.0144927536231876, "y": -6.231884057971014, "x2": -0.72463768115942, "y2": -5.942028985507246, "center_x": -0.8695652173913038, "center_y": -6.08695652173913, "value_uncond": 1.3030139322987851e-05}, {"x": -0.72463768115942, "y": -6.231884057971014, "x2": -0.43478260869565233, "y2": -5.942028985507246, "center_x": -0.5797101449275361, "center_y": -6.08695652173913, "value_uncond": 1.5242611307532183e-05}, {"x": -0.43478260869565233, "y": -6.231884057971014, "x2": -0.1449275362318847, "y2": -5.942028985507246, "center_x": -0.2898550724637685, "center_y": -6.08695652173913, "value_uncond": 1.7665075801841584e-05}, {"x": -0.14492753623188293, "y": -6.231884057971014, "x2": 0.1449275362318847, "y2": -5.942028985507246, "center_x": 8.881784197001252e-16, "center_y": -6.08695652173913, "value_uncond": 2.0282311581402023e-05}, {"x": 0.1449275362318847, "y": -6.231884057971014, "x2": 0.43478260869565233, "y2": -5.942028985507246, "center_x": 0.2898550724637685, "center_y": -6.08695652173913, "value_uncond": 2.307093573808732e-05}, {"x": 0.43478260869565233, "y": -6.231884057971014, "x2": 0.72463768115942, "y2": -5.942028985507246, "center_x": 0.5797101449275361, "center_y": -6.08695652173913, "value_uncond": 2.5999128073608017e-05}, {"x": 0.72463768115942, "y": -6.231884057971014, "x2": 1.0144927536231876, "y2": -5.942028985507246, "center_x": 0.8695652173913038, "center_y": -6.08695652173913, "value_uncond": 2.9026733914962152e-05}, {"x": 1.0144927536231894, "y": -6.231884057971014, "x2": 1.304347826086957, "y2": -5.942028985507246, "center_x": 1.1594202898550732, "center_y": -6.08695652173913, "value_uncond": 3.210579104052153e-05}, {"x": 1.304347826086957, "y": -6.231884057971014, "x2": 1.5942028985507246, "y2": -5.942028985507246, "center_x": 1.4492753623188408, "center_y": -6.08695652173913, "value_uncond": 3.518150325374492e-05}, {"x": 1.5942028985507246, "y": -6.231884057971014, "x2": 1.8840579710144922, "y2": -5.942028985507246, "center_x": 1.7391304347826084, "center_y": -6.08695652173913, "value_uncond": 3.819365530706185e-05}, {"x": 1.884057971014494, "y": -6.231884057971014, "x2": 2.1739130434782616, "y2": -5.942028985507246, "center_x": 2.028985507246378, "center_y": -6.08695652173913, "value_uncond": 4.107843323653689e-05}, {"x": 2.1739130434782616, "y": -6.231884057971014, "x2": 2.4637681159420293, "y2": -5.942028985507246, "center_x": 2.3188405797101455, "center_y": -6.08695652173913, "value_uncond": 4.377058308288967e-05}, {"x": 2.4637681159420293, "y": -6.231884057971014, "x2": 2.753623188405797, "y2": -5.942028985507246, "center_x": 2.608695652173913, "center_y": -6.08695652173913, "value_uncond": 4.62058121022611e-05}, {"x": 2.753623188405797, "y": -6.231884057971014, "x2": 3.0434782608695645, "y2": -5.942028985507246, "center_x": 2.8985507246376807, "center_y": -6.08695652173913, "value_uncond": 4.832331260636244e-05}, {"x": 3.0434782608695663, "y": -6.231884057971014, "x2": 3.333333333333334, "y2": -5.942028985507246, "center_x": 3.18840579710145, "center_y": -6.08695652173913, "value_uncond": 5.006827197112243e-05}, {"x": 3.333333333333334, "y": -6.231884057971014, "x2": 3.6231884057971016, "y2": -5.942028985507246, "center_x": 3.4782608695652177, "center_y": -6.08695652173913, "value_uncond": 5.1394225053082035e-05}, {"x": 3.6231884057971016, "y": -6.231884057971014, "x2": 3.913043478260869, "y2": -5.942028985507246, "center_x": 3.7681159420289854, "center_y": -6.08695652173913, "value_uncond": 5.2265108435253366e-05}, {"x": 3.913043478260871, "y": -6.231884057971014, "x2": 4.202898550724639, "y2": -5.942028985507246, "center_x": 4.057971014492755, "center_y": -6.08695652173913, "value_uncond": 5.265688984677617e-05}, {"x": 4.202898550724639, "y": -6.231884057971014, "x2": 4.492753623188406, "y2": -5.942028985507246, "center_x": 4.347826086956522, "center_y": -6.08695652173913, "value_uncond": 5.2558670024322436e-05}, {"x": 4.492753623188406, "y": -6.231884057971014, "x2": 4.782608695652174, "y2": -5.942028985507246, "center_x": 4.63768115942029, "center_y": -6.08695652173913, "value_uncond": 5.197318650728187e-05}, {"x": 4.782608695652174, "y": -6.231884057971014, "x2": 5.0724637681159415, "y2": -5.942028985507246, "center_x": 4.927536231884058, "center_y": -6.08695652173913, "value_uncond": 5.0916686865765747e-05}, {"x": 5.072463768115943, "y": -6.231884057971014, "x2": 5.362318840579711, "y2": -5.942028985507246, "center_x": 5.217391304347827, "center_y": -6.08695652173913, "value_uncond": 4.941817955493573e-05}, {"x": 5.362318840579711, "y": -6.231884057971014, "x2": 5.6521739130434785, "y2": -5.942028985507246, "center_x": 5.507246376811595, "center_y": -6.08695652173913, "value_uncond": 4.7518110604868697e-05}, {"x": 5.6521739130434785, "y": -6.231884057971014, "x2": 5.942028985507246, "y2": -5.942028985507246, "center_x": 5.797101449275362, "center_y": -6.08695652173913, "value_uncond": 4.52665503943964e-05}, {"x": 5.942028985507246, "y": -6.231884057971014, "x2": 6.231884057971014, "y2": -5.942028985507246, "center_x": 6.08695652173913, "center_y": -6.08695652173913, "value_uncond": 4.272100392204194e-05}, {"x": 6.2318840579710155, "y": -6.231884057971014, "x2": 6.521739130434783, "y2": -5.942028985507246, "center_x": 6.376811594202899, "center_y": -6.08695652173913, "value_uncond": 3.9943978062718354e-05}, {"x": 6.521739130434785, "y": -6.231884057971014, "x2": 6.8115942028985526, "y2": -5.942028985507246, "center_x": 6.666666666666669, "center_y": -6.08695652173913, "value_uncond": 3.70004489578735e-05}, {"x": 6.811594202898551, "y": -6.231884057971014, "x2": 7.101449275362318, "y2": -5.942028985507246, "center_x": 6.956521739130435, "center_y": -6.08695652173913, "value_uncond": 3.3955371590875396e-05}, {"x": 7.10144927536232, "y": -6.231884057971014, "x2": 7.391304347826088, "y2": -5.942028985507246, "center_x": 7.246376811594204, "center_y": -6.08695652173913, "value_uncond": 3.0871362390521965e-05}, {"x": 7.391304347826086, "y": -6.231884057971014, "x2": 7.681159420289854, "y2": -5.942028985507246, "center_x": 7.53623188405797, "center_y": -6.08695652173913, "value_uncond": 2.780666589237285e-05}, {"x": 7.681159420289855, "y": -6.231884057971014, "x2": 7.971014492753623, "y2": -5.942028985507246, "center_x": 7.826086956521739, "center_y": -6.08695652173913, "value_uncond": 2.4813490246015368e-05}, {"x": 7.971014492753625, "y": -6.231884057971014, "x2": 8.260869565217392, "y2": -5.942028985507246, "center_x": 8.115942028985508, "center_y": -6.08695652173913, "value_uncond": 2.1936766271689755e-05}, {"x": 8.26086956521739, "y": -6.231884057971014, "x2": 8.550724637681158, "y2": -5.942028985507246, "center_x": 8.405797101449274, "center_y": -6.08695652173913, "value_uncond": 1.921335355435446e-05}, {"x": 8.55072463768116, "y": -6.231884057971014, "x2": 8.840579710144928, "y2": -5.942028985507246, "center_x": 8.695652173913043, "center_y": -6.08695652173913, "value_uncond": 1.6671687284283626e-05}, {"x": 8.84057971014493, "y": -6.231884057971014, "x2": 9.130434782608697, "y2": -5.942028985507246, "center_x": 8.985507246376812, "center_y": -6.08695652173913, "value_uncond": 1.4331833399382685e-05}, {"x": 9.130434782608695, "y": -6.231884057971014, "x2": 9.420289855072463, "y2": -5.942028985507246, "center_x": 9.275362318840578, "center_y": -6.08695652173913, "value_uncond": 1.2205898695619978e-05}, {"x": 9.420289855072465, "y": -6.231884057971014, "x2": 9.710144927536232, "y2": -5.942028985507246, "center_x": 9.565217391304348, "center_y": -6.08695652173913, "value_uncond": 1.0298727944401408e-05}, {"x": 9.710144927536234, "y": -6.231884057971014, "x2": 10.000000000000002, "y2": -5.942028985507246, "center_x": 9.855072463768117, "center_y": -6.08695652173913, "value_uncond": 8.608812023840343e-06}, {"x": 10.0, "y": -6.231884057971014, "x2": 10.289855072463768, "y2": -5.942028985507246, "center_x": 10.144927536231883, "center_y": -6.08695652173913, "value_uncond": 7.1293293601746525e-06}, {"x": -10.0, "y": -5.942028985507246, "x2": -9.710144927536232, "y2": -5.6521739130434785, "center_x": -9.855072463768117, "center_y": -5.797101449275362, "value_uncond": 1.360626540139841e-09}, {"x": -9.710144927536232, "y": -5.942028985507246, "x2": -9.420289855072465, "y2": -5.6521739130434785, "center_x": -9.565217391304348, "center_y": -5.797101449275362, "value_uncond": 2.125832307302315e-09}, {"x": -9.420289855072463, "y": -5.942028985507246, "x2": -9.130434782608695, "y2": -5.6521739130434785, "center_x": -9.275362318840578, "center_y": -5.797101449275362, "value_uncond": 3.290522634026223e-09}, {"x": -9.130434782608695, "y": -5.942028985507246, "x2": -8.840579710144928, "y2": -5.6521739130434785, "center_x": -8.985507246376812, "center_y": -5.797101449275362, "value_uncond": 5.045992219261586e-09}, {"x": -8.840579710144928, "y": -5.942028985507246, "x2": -8.55072463768116, "y2": -5.6521739130434785, "center_x": -8.695652173913043, "center_y": -5.797101449275362, "value_uncond": 7.666093027948395e-09}, {"x": -8.55072463768116, "y": -5.942028985507246, "x2": -8.260869565217392, "y2": -5.6521739130434785, "center_x": -8.405797101449277, "center_y": -5.797101449275362, "value_uncond": 1.153844829399938e-08}, {"x": -8.26086956521739, "y": -5.942028985507246, "x2": -7.971014492753623, "y2": -5.6521739130434785, "center_x": -8.115942028985508, "center_y": -5.797101449275362, "value_uncond": 1.720547020682608e-08}, {"x": -7.971014492753623, "y": -5.942028985507246, "x2": -7.681159420289855, "y2": -5.6521739130434785, "center_x": -7.826086956521739, "center_y": -5.797101449275362, "value_uncond": 2.5417421920698242e-08}, {"x": -7.681159420289855, "y": -5.942028985507246, "x2": -7.391304347826088, "y2": -5.6521739130434785, "center_x": -7.536231884057972, "center_y": -5.797101449275362, "value_uncond": 3.719994218235569e-08}, {"x": -7.391304347826087, "y": -5.942028985507246, "x2": -7.101449275362319, "y2": -5.6521739130434785, "center_x": -7.246376811594203, "center_y": -5.797101449275362, "value_uncond": 5.3938497688053776e-08}, {"x": -7.101449275362318, "y": -5.942028985507246, "x2": -6.811594202898551, "y2": -5.6521739130434785, "center_x": -6.956521739130435, "center_y": -5.797101449275362, "value_uncond": 7.748207486387541e-08}, {"x": -6.811594202898551, "y": -5.942028985507246, "x2": -6.521739130434783, "y2": -5.6521739130434785, "center_x": -6.666666666666667, "center_y": -5.797101449275362, "value_uncond": 1.1026798852770564e-07}, {"x": -6.521739130434782, "y": -5.942028985507246, "x2": -6.231884057971015, "y2": -5.6521739130434785, "center_x": -6.3768115942028984, "center_y": -5.797101449275362, "value_uncond": 1.5546888264731687e-07}, {"x": -6.231884057971014, "y": -5.942028985507246, "x2": -5.942028985507246, "y2": -5.6521739130434785, "center_x": -6.08695652173913, "center_y": -5.797101449275362, "value_uncond": 2.1716174199835867e-07}, {"x": -5.942028985507246, "y": -5.942028985507246, "x2": -5.6521739130434785, "y2": -5.6521739130434785, "center_x": -5.797101449275362, "center_y": -5.797101449275362, "value_uncond": 3.0051694882366615e-07}, {"x": -5.6521739130434785, "y": -5.942028985507246, "x2": -5.362318840579711, "y2": -5.6521739130434785, "center_x": -5.507246376811595, "center_y": -5.797101449275362, "value_uncond": 4.1200305780714903e-07}, {"x": -5.36231884057971, "y": -5.942028985507246, "x2": -5.072463768115942, "y2": -5.6521739130434785, "center_x": -5.217391304347826, "center_y": -5.797101449275362, "value_uncond": 5.596000213279511e-07}, {"x": -5.0724637681159415, "y": -5.942028985507246, "x2": -4.782608695652174, "y2": -5.6521739130434785, "center_x": -4.927536231884058, "center_y": -5.797101449275362, "value_uncond": 7.530101323012316e-07}, {"x": -4.782608695652174, "y": -5.942028985507246, "x2": -4.492753623188406, "y2": -5.6521739130434785, "center_x": -4.63768115942029, "center_y": -5.797101449275362, "value_uncond": 1.0038521006927966e-06}, {"x": -4.492753623188405, "y": -5.942028985507246, "x2": -4.202898550724638, "y2": -5.6521739130434785, "center_x": -4.3478260869565215, "center_y": -5.797101449275362, "value_uncond": 1.325819672678501e-06}, {"x": -4.202898550724638, "y": -5.942028985507246, "x2": -3.91304347826087, "y2": -5.6521739130434785, "center_x": -4.057971014492754, "center_y": -5.797101449275362, "value_uncond": 1.7347823706825448e-06}, {"x": -3.913043478260869, "y": -5.942028985507246, "x2": -3.6231884057971016, "y2": -5.6521739130434785, "center_x": -3.7681159420289854, "center_y": -5.797101449275362, "value_uncond": 2.248802709485845e-06}, {"x": -3.6231884057971016, "y": -5.942028985507246, "x2": -3.333333333333334, "y2": -5.6521739130434785, "center_x": -3.4782608695652177, "center_y": -5.797101449275362, "value_uncond": 2.8880421423950747e-06}, {"x": -3.333333333333333, "y": -5.942028985507246, "x2": -3.0434782608695654, "y2": -5.6521739130434785, "center_x": -3.1884057971014492, "center_y": -5.797101449275362, "value_uncond": 3.674527576762701e-06}, {"x": -3.0434782608695645, "y": -5.942028985507246, "x2": -2.753623188405797, "y2": -5.6521739130434785, "center_x": -2.8985507246376807, "center_y": -5.797101449275362, "value_uncond": 4.631752135717058e-06}, {"x": -2.753623188405797, "y": -5.942028985507246, "x2": -2.4637681159420293, "y2": -5.6521739130434785, "center_x": -2.608695652173913, "center_y": -5.797101449275362, "value_uncond": 5.7840884344633715e-06}, {"x": -2.4637681159420284, "y": -5.942028985507246, "x2": -2.1739130434782608, "y2": -5.6521739130434785, "center_x": -2.3188405797101446, "center_y": -5.797101449275362, "value_uncond": 7.15600034546198e-06}, {"x": -2.1739130434782608, "y": -5.942028985507246, "x2": -1.8840579710144931, "y2": -5.6521739130434785, "center_x": -2.028985507246377, "center_y": -5.797101449275362, "value_uncond": 8.771050184586184e-06}, {"x": -1.8840579710144922, "y": -5.942028985507246, "x2": -1.5942028985507246, "y2": -5.6521739130434785, "center_x": -1.7391304347826084, "center_y": -5.797101449275362, "value_uncond": 1.0650712297128669e-05}, {"x": -1.5942028985507246, "y": -5.942028985507246, "x2": -1.304347826086957, "y2": -5.6521739130434785, "center_x": -1.4492753623188408, "center_y": -5.797101449275362, "value_uncond": 1.2813020634373129e-05}, {"x": -1.304347826086957, "y": -5.942028985507246, "x2": -1.0144927536231894, "y2": -5.6521739130434785, "center_x": -1.1594202898550732, "center_y": -5.797101449275362, "value_uncond": 1.5271096171697562e-05}, {"x": -1.0144927536231876, "y": -5.942028985507246, "x2": -0.72463768115942, "y2": -5.6521739130434785, "center_x": -0.8695652173913038, "center_y": -5.797101449275362, "value_uncond": 1.8031618627010143e-05}, {"x": -0.72463768115942, "y": -5.942028985507246, "x2": -0.43478260869565233, "y2": -5.6521739130434785, "center_x": -0.5797101449275361, "center_y": -5.797101449275362, "value_uncond": 2.1093324266478302e-05}, {"x": -0.43478260869565233, "y": -5.942028985507246, "x2": -0.1449275362318847, "y2": -5.6521739130434785, "center_x": -0.2898550724637685, "center_y": -5.797101449275362, "value_uncond": 2.4445625789593858e-05}, {"x": -0.14492753623188293, "y": -5.942028985507246, "x2": 0.1449275362318847, "y2": -5.6521739130434785, "center_x": 8.881784197001252e-16, "center_y": -5.797101449275362, "value_uncond": 2.80674594679753e-05}, {"x": 0.1449275362318847, "y": -5.942028985507246, "x2": 0.43478260869565233, "y2": -5.6521739130434785, "center_x": 0.2898550724637685, "center_y": -5.797101449275362, "value_uncond": 3.192646711486255e-05}, {"x": 0.43478260869565233, "y": -5.942028985507246, "x2": 0.72463768115942, "y2": -5.6521739130434785, "center_x": 0.5797101449275361, "center_y": -5.797101449275362, "value_uncond": 3.5978614689945916e-05}, {"x": 0.72463768115942, "y": -5.942028985507246, "x2": 1.0144927536231876, "y2": -5.6521739130434785, "center_x": 0.8695652173913038, "center_y": -5.797101449275362, "value_uncond": 4.0168334579425016e-05}, {"x": 1.0144927536231894, "y": -5.942028985507246, "x2": 1.304347826086957, "y2": -5.6521739130434785, "center_x": 1.1594202898550732, "center_y": -5.797101449275362, "value_uncond": 4.442925477702533e-05}, {"x": 1.304347826086957, "y": -5.942028985507246, "x2": 1.5942028985507246, "y2": -5.6521739130434785, "center_x": 1.4492753623188408, "center_y": -5.797101449275362, "value_uncond": 4.8685546153544873e-05}, {"x": 1.5942028985507246, "y": -5.942028985507246, "x2": 1.8840579710144922, "y2": -5.6521739130434785, "center_x": 1.7391304347826084, "center_y": -5.797101449275362, "value_uncond": 5.285388048410381e-05}, {"x": 1.884057971014494, "y": -5.942028985507246, "x2": 2.1739130434782616, "y2": -5.6521739130434785, "center_x": 2.028985507246378, "center_y": -5.797101449275362, "value_uncond": 5.684594949875671e-05}, {"x": 2.1739130434782616, "y": -5.942028985507246, "x2": 2.4637681159420293, "y2": -5.6521739130434785, "center_x": 2.3188405797101455, "center_y": -5.797101449275362, "value_uncond": 6.057145220543583e-05}, {"x": 2.4637681159420293, "y": -5.942028985507246, "x2": 2.753623188405797, "y2": -5.6521739130434785, "center_x": 2.608695652173913, "center_y": -5.797101449275362, "value_uncond": 6.394141777973059e-05}, {"x": 2.753623188405797, "y": -5.942028985507246, "x2": 3.0434782608695645, "y2": -5.6521739130434785, "center_x": 2.8985507246376807, "center_y": -5.797101449275362, "value_uncond": 6.687169815402376e-05}, {"x": 3.0434782608695663, "y": -5.942028985507246, "x2": 3.333333333333334, "y2": -5.6521739130434785, "center_x": 3.18840579710145, "center_y": -5.797101449275362, "value_uncond": 6.928644146605207e-05}, {"x": 3.333333333333334, "y": -5.942028985507246, "x2": 3.6231884057971016, "y2": -5.6521739130434785, "center_x": 3.4782608695652177, "center_y": -5.797101449275362, "value_uncond": 7.112134742511759e-05}, {"x": 3.6231884057971016, "y": -5.942028985507246, "x2": 3.913043478260869, "y2": -5.6521739130434785, "center_x": 3.7681159420289854, "center_y": -5.797101449275362, "value_uncond": 7.232651005819936e-05}, {"x": 3.913043478260871, "y": -5.942028985507246, "x2": 4.202898550724639, "y2": -5.6521739130434785, "center_x": 4.057971014492755, "center_y": -5.797101449275362, "value_uncond": 7.28686725648786e-05}, {"x": 4.202898550724639, "y": -5.942028985507246, "x2": 4.492753623188406, "y2": -5.6521739130434785, "center_x": 4.347826086956522, "center_y": -5.797101449275362, "value_uncond": 7.273275211643228e-05}, {"x": 4.492753623188406, "y": -5.942028985507246, "x2": 4.782608695652174, "y2": -5.6521739130434785, "center_x": 4.63768115942029, "center_y": -5.797101449275362, "value_uncond": 7.192253702740012e-05}, {"x": 4.782608695652174, "y": -5.942028985507246, "x2": 5.0724637681159415, "y2": -5.6521739130434785, "center_x": 4.927536231884058, "center_y": -5.797101449275362, "value_uncond": 7.046051132351661e-05}, {"x": 5.072463768115943, "y": -5.942028985507246, "x2": 5.362318840579711, "y2": -5.6521739130434785, "center_x": 5.217391304347827, "center_y": -5.797101449275362, "value_uncond": 6.838681804450433e-05}, {"x": 5.362318840579711, "y": -5.942028985507246, "x2": 5.6521739130434785, "y2": -5.6521739130434785, "center_x": 5.507246376811595, "center_y": -5.797101449275362, "value_uncond": 6.575742799552855e-05}, {"x": 5.6521739130434785, "y": -5.942028985507246, "x2": 5.942028985507246, "y2": -5.6521739130434785, "center_x": 5.797101449275362, "center_y": -5.797101449275362, "value_uncond": 6.26416305336118e-05}, {"x": 5.942028985507246, "y": -5.942028985507246, "x2": 6.231884057971014, "y2": -5.6521739130434785, "center_x": 6.08695652173913, "center_y": -5.797101449275362, "value_uncond": 5.911900333454195e-05}, {"x": 6.2318840579710155, "y": -5.942028985507246, "x2": 6.521739130434783, "y2": -5.6521739130434785, "center_x": 6.376811594202899, "center_y": -5.797101449275362, "value_uncond": 5.5276045867132e-05}, {"x": 6.521739130434785, "y": -5.942028985507246, "x2": 6.8115942028985526, "y2": -5.6521739130434785, "center_x": 6.666666666666669, "center_y": -5.797101449275362, "value_uncond": 5.12026746682202e-05}, {"x": 6.811594202898551, "y": -5.942028985507246, "x2": 7.101449275362318, "y2": -5.6521739130434785, "center_x": 6.956521739130435, "center_y": -5.797101449275362, "value_uncond": 4.698877699526274e-05}, {"x": 7.10144927536232, "y": -5.942028985507246, "x2": 7.391304347826088, "y2": -5.6521739130434785, "center_x": 7.246376811594204, "center_y": -5.797101449275362, "value_uncond": 4.27210039220419e-05}, {"x": 7.391304347826086, "y": -5.942028985507246, "x2": 7.681159420289854, "y2": -5.6521739130434785, "center_x": 7.53623188405797, "center_y": -5.797101449275362, "value_uncond": 3.8479956524746164e-05}, {"x": 7.681159420289855, "y": -5.942028985507246, "x2": 7.971014492753623, "y2": -5.6521739130434785, "center_x": 7.826086956521739, "center_y": -5.797101449275362, "value_uncond": 3.43378824915426e-05}, {"x": 7.971014492753625, "y": -5.942028985507246, "x2": 8.260869565217392, "y2": -5.6521739130434785, "center_x": 8.115942028985508, "center_y": -5.797101449275362, "value_uncond": 3.035695885638976e-05}, {"x": 8.26086956521739, "y": -5.942028985507246, "x2": 8.550724637681158, "y2": -5.6521739130434785, "center_x": 8.405797101449274, "center_y": -5.797101449275362, "value_uncond": 2.658819336082033e-05}, {"x": 8.55072463768116, "y": -5.942028985507246, "x2": 8.840579710144928, "y2": -5.6521739130434785, "center_x": 8.695652173913043, "center_y": -5.797101449275362, "value_uncond": 2.3070935738087277e-05}, {"x": 8.84057971014493, "y": -5.942028985507246, "x2": 9.130434782608697, "y2": -5.6521739130434785, "center_x": 8.985507246376812, "center_y": -5.797101449275362, "value_uncond": 1.9832954021266523e-05}, {"x": 9.130434782608695, "y": -5.942028985507246, "x2": 9.420289855072463, "y2": -5.6521739130434785, "center_x": 9.275362318840578, "center_y": -5.797101449275362, "value_uncond": 1.6891002070181413e-05}, {"x": 9.420289855072465, "y": -5.942028985507246, "x2": 9.710144927536232, "y2": -5.6521739130434785, "center_x": 9.565217391304348, "center_y": -5.797101449275362, "value_uncond": 1.425178426980903e-05}, {"x": 9.710144927536234, "y": -5.942028985507246, "x2": 10.000000000000002, "y2": -5.6521739130434785, "center_x": 9.855072463768117, "center_y": -5.797101449275362, "value_uncond": 1.191321223800342e-05}, {"x": 10.0, "y": -5.942028985507246, "x2": 10.289855072463768, "y2": -5.6521739130434785, "center_x": 10.144927536231883, "center_y": -5.797101449275362, "value_uncond": 9.865846013036942e-06}, {"x": -10.0, "y": -5.6521739130434785, "x2": -9.710144927536232, "y2": -5.362318840579711, "center_x": -9.855072463768117, "center_y": -5.507246376811595, "value_uncond": 1.8653932740416187e-09}, {"x": -9.710144927536232, "y": -5.6521739130434785, "x2": -9.420289855072465, "y2": -5.362318840579711, "center_x": -9.565217391304348, "center_y": -5.507246376811595, "value_uncond": 2.9144759203172313e-09}, {"x": -9.420289855072463, "y": -5.6521739130434785, "x2": -9.130434782608695, "y2": -5.362318840579711, "center_x": -9.275362318840578, "center_y": -5.507246376811595, "value_uncond": 4.511244348477409e-09}, {"x": -9.130434782608695, "y": -5.6521739130434785, "x2": -8.840579710144928, "y2": -5.362318840579711, "center_x": -8.985507246376812, "center_y": -5.507246376811595, "value_uncond": 6.917959975784015e-09}, {"x": -8.840579710144928, "y": -5.6521739130434785, "x2": -8.55072463768116, "y2": -5.362318840579711, "center_x": -8.695652173913043, "center_y": -5.507246376811595, "value_uncond": 1.05100686710422e-08}, {"x": -8.55072463768116, "y": -5.6521739130434785, "x2": -8.260869565217392, "y2": -5.362318840579711, "center_x": -8.405797101449277, "center_y": -5.507246376811595, "value_uncond": 1.5818994562821986e-08}, {"x": -8.26086956521739, "y": -5.6521739130434785, "x2": -7.971014492753623, "y2": -5.362318840579711, "center_x": -8.115942028985508, "center_y": -5.507246376811595, "value_uncond": 2.358837451255229e-08}, {"x": -7.971014492753623, "y": -5.6521739130434785, "x2": -7.681159420289855, "y2": -5.362318840579711, "center_x": -7.826086956521739, "center_y": -5.507246376811595, "value_uncond": 3.484680512661137e-08}, {"x": -7.681159420289855, "y": -5.6521739130434785, "x2": -7.391304347826088, "y2": -5.362318840579711, "center_x": -7.536231884057972, "center_y": -5.507246376811595, "value_uncond": 5.100041774473357e-08}, {"x": -7.391304347826087, "y": -5.6521739130434785, "x2": -7.101449275362319, "y2": -5.362318840579711, "center_x": -7.246376811594203, "center_y": -5.507246376811595, "value_uncond": 7.394866102557714e-08}, {"x": -7.101449275362318, "y": -5.6521739130434785, "x2": -6.811594202898551, "y2": -5.362318840579711, "center_x": -6.956521739130435, "center_y": -5.507246376811595, "value_uncond": 1.062264604180127e-07}, {"x": -6.811594202898551, "y": -5.6521739130434785, "x2": -6.521739130434783, "y2": -5.362318840579711, "center_x": -6.666666666666667, "center_y": -5.507246376811595, "value_uncond": 1.5117532847811418e-07}, {"x": -6.521739130434782, "y": -5.6521739130434785, "x2": -6.231884057971015, "y2": -5.362318840579711, "center_x": -6.3768115942028984, "center_y": -5.507246376811595, "value_uncond": 2.131449001305415e-07}, {"x": -6.231884057971014, "y": -5.6521739130434785, "x2": -5.942028985507246, "y2": -5.362318840579711, "center_x": -6.08695652173913, "center_y": -5.507246376811595, "value_uncond": 2.977246444577404e-07}, {"x": -5.942028985507246, "y": -5.6521739130434785, "x2": -5.6521739130434785, "y2": -5.362318840579711, "center_x": -5.797101449275362, "center_y": -5.507246376811595, "value_uncond": 4.1200305780714903e-07}, {"x": -5.6521739130434785, "y": -5.6521739130434785, "x2": -5.362318840579711, "y2": -5.362318840579711, "center_x": -5.507246376811595, "center_y": -5.507246376811595, "value_uncond": 5.648484064106578e-07}, {"x": -5.36231884057971, "y": -5.6521739130434785, "x2": -5.072463768115942, "y2": -5.362318840579711, "center_x": -5.217391304347826, "center_y": -5.507246376811595, "value_uncond": 7.672010541786288e-07}, {"x": -5.0724637681159415, "y": -5.6521739130434785, "x2": -4.782608695652174, "y2": -5.362318840579711, "center_x": -4.927536231884058, "center_y": -5.507246376811595, "value_uncond": 1.032362661348308e-06}, {"x": -4.782608695652174, "y": -5.6521739130434785, "x2": -4.492753623188406, "y2": -5.362318840579711, "center_x": -4.63768115942029, "center_y": -5.507246376811595, "value_uncond": 1.3762622597178169e-06}, {"x": -4.492753623188405, "y": -5.6521739130434785, "x2": -4.202898550724638, "y2": -5.362318840579711, "center_x": -4.3478260869565215, "center_y": -5.507246376811595, "value_uncond": 1.81767371651618e-06}, {"x": -4.202898550724638, "y": -5.6521739130434785, "x2": -3.91304347826087, "y2": -5.362318840579711, "center_x": -4.057971014492754, "center_y": -5.507246376811595, "value_uncond": 2.3783538470920915e-06}, {"x": -3.913043478260869, "y": -5.6521739130434785, "x2": -3.6231884057971016, "y2": -5.362318840579711, "center_x": -3.7681159420289854, "center_y": -5.507246376811595, "value_uncond": 3.0830660178731517e-06}, {"x": -3.6231884057971016, "y": -5.6521739130434785, "x2": -3.333333333333334, "y2": -5.362318840579711, "center_x": -3.4782608695652177, "center_y": -5.507246376811595, "value_uncond": 3.959451200341003e-06}, {"x": -3.333333333333333, "y": -5.6521739130434785, "x2": -3.0434782608695654, "y2": -5.362318840579711, "center_x": -3.1884057971014492, "center_y": -5.507246376811595, "value_uncond": 5.037707868221586e-06}, {"x": -3.0434782608695645, "y": -5.6521739130434785, "x2": -2.753623188405797, "y2": -5.362318840579711, "center_x": -2.8985507246376807, "center_y": -5.507246376811595, "value_uncond": 6.350044649361683e-06}, {"x": -2.753623188405797, "y": -5.6521739130434785, "x2": -2.4637681159420293, "y2": -5.362318840579711, "center_x": -2.608695652173913, "center_y": -5.507246376811595, "value_uncond": 7.92987593862528e-06}, {"x": -2.4637681159420284, "y": -5.6521739130434785, "x2": -2.1739130434782608, "y2": -5.362318840579711, "center_x": -2.3188405797101446, "center_y": -5.507246376811595, "value_uncond": 9.810741242848559e-06}, {"x": -2.1739130434782608, "y": -5.6521739130434785, "x2": -1.8840579710144931, "y2": -5.362318840579711, "center_x": -2.028985507246377, "center_y": -5.507246376811595, "value_uncond": 1.2024944051824084e-05}, {"x": -1.8840579710144922, "y": -5.6521739130434785, "x2": -1.5942028985507246, "y2": -5.362318840579711, "center_x": -1.7391304347826084, "center_y": -5.507246376811595, "value_uncond": 1.4601925287135904e-05}, {"x": -1.5942028985507246, "y": -5.6521739130434785, "x2": -1.304347826086957, "y2": -5.362318840579711, "center_x": -1.4492753623188408, "center_y": -5.507246376811595, "value_uncond": 1.7566409155196697e-05}, {"x": -1.304347826086957, "y": -5.6521739130434785, "x2": -1.0144927536231894, "y2": -5.362318840579711, "center_x": -1.1594202898550732, "center_y": -5.507246376811595, "value_uncond": 2.0936384265295586e-05}, {"x": -1.0144927536231876, "y": -5.6521739130434785, "x2": -0.72463768115942, "y2": -5.362318840579711, "center_x": -0.8695652173913038, "center_y": -5.507246376811595, "value_uncond": 2.4721008384454473e-05}, {"x": -0.72463768115942, "y": -5.6521739130434785, "x2": -0.43478260869565233, "y2": -5.362318840579711, "center_x": -0.5797101449275361, "center_y": -5.507246376811595, "value_uncond": 2.8918548957470345e-05}, {"x": -0.43478260869565233, "y": -5.6521739130434785, "x2": -0.1449275362318847, "y2": -5.362318840579711, "center_x": -0.2898550724637685, "center_y": -5.507246376811595, "value_uncond": 3.3514490995420406e-05}, {"x": -0.14492753623188293, "y": -5.6521739130434785, "x2": 0.1449275362318847, "y2": -5.362318840579711, "center_x": 8.881784197001252e-16, "center_y": -5.507246376811595, "value_uncond": 3.8479956524746164e-05}, {"x": 0.1449275362318847, "y": -5.6521739130434785, "x2": 0.43478260869565233, "y2": -5.362318840579711, "center_x": 0.2898550724637685, "center_y": -5.507246376811595, "value_uncond": 4.37705830828896e-05}, {"x": 0.43478260869565233, "y": -5.6521739130434785, "x2": 0.72463768115942, "y2": -5.362318840579711, "center_x": 0.5797101449275361, "center_y": -5.507246376811595, "value_uncond": 4.932600083272101e-05}, {"x": 0.72463768115942, "y": -5.6521739130434785, "x2": 1.0144927536231876, "y2": -5.362318840579711, "center_x": 0.8695652173913038, "center_y": -5.507246376811595, "value_uncond": 5.507002762581109e-05}, {"x": 1.0144927536231894, "y": -5.6521739130434785, "x2": 1.304347826086957, "y2": -5.362318840579711, "center_x": 1.1594202898550732, "center_y": -5.507246376811595, "value_uncond": 6.09116686958249e-05}, {"x": 1.304347826086957, "y": -5.6521739130434785, "x2": 1.5942028985507246, "y2": -5.362318840579711, "center_x": 1.4492753623188408, "center_y": -5.507246376811595, "value_uncond": 6.674696373961032e-05}, {"x": 1.5942028985507246, "y": -5.6521739130434785, "x2": 1.8840579710144922, "y2": -5.362318840579711, "center_x": 1.7391304347826084, "center_y": -5.507246376811595, "value_uncond": 7.246167133555524e-05}, {"x": 1.884057971014494, "y": -5.6521739130434785, "x2": 2.1739130434782616, "y2": -5.362318840579711, "center_x": 2.028985507246378, "center_y": -5.507246376811595, "value_uncond": 7.793472251437328e-05}, {"x": 2.1739130434782616, "y": -5.6521739130434785, "x2": 2.4637681159420293, "y2": -5.362318840579711, "center_x": 2.3188405797101455, "center_y": -5.507246376811595, "value_uncond": 8.304231632240589e-05}, {"x": 2.4637681159420293, "y": -5.6521739130434785, "x2": 2.753623188405797, "y2": -5.362318840579711, "center_x": 2.608695652173913, "center_y": -5.507246376811595, "value_uncond": 8.766247544071558e-05}, {"x": 2.753623188405797, "y": -5.6521739130434785, "x2": 3.0434782608695645, "y2": -5.362318840579711, "center_x": 2.8985507246376807, "center_y": -5.507246376811595, "value_uncond": 9.167983445879034e-05}, {"x": 3.0434782608695663, "y": -5.6521739130434785, "x2": 3.333333333333334, "y2": -5.362318840579711, "center_x": 3.18840579710145, "center_y": -5.507246376811595, "value_uncond": 9.499040190688058e-05}, {"x": 3.333333333333334, "y": -5.6521739130434785, "x2": 3.6231884057971016, "y2": -5.362318840579711, "center_x": 3.4782608695652177, "center_y": -5.507246376811595, "value_uncond": 9.75060233015565e-05}, {"x": 3.6231884057971016, "y": -5.6521739130434785, "x2": 3.913043478260869, "y2": -5.362318840579711, "center_x": 3.7681159420289854, "center_y": -5.507246376811595, "value_uncond": 9.91582784969064e-05}, {"x": 3.913043478260871, "y": -5.6521739130434785, "x2": 4.202898550724639, "y2": -5.362318840579711, "center_x": 4.057971014492755, "center_y": -5.507246376811595, "value_uncond": 9.990157304802774e-05}, {"x": 4.202898550724639, "y": -5.6521739130434785, "x2": 4.492753623188406, "y2": -5.362318840579711, "center_x": 4.347826086956522, "center_y": -5.507246376811595, "value_uncond": 9.971522868176951e-05}, {"x": 4.492753623188406, "y": -5.6521739130434785, "x2": 4.782608695652174, "y2": -5.362318840579711, "center_x": 4.63768115942029, "center_y": -5.507246376811595, "value_uncond": 9.860443910577588e-05}, {"x": 4.782608695652174, "y": -5.6521739130434785, "x2": 5.0724637681159415, "y2": -5.362318840579711, "center_x": 4.927536231884058, "center_y": -5.507246376811595, "value_uncond": 9.66000294944361e-05}, {"x": 5.072463768115943, "y": -5.6521739130434785, "x2": 5.362318840579711, "y2": -5.362318840579711, "center_x": 5.217391304347827, "center_y": -5.507246376811595, "value_uncond": 9.37570351966053e-05}, {"x": 5.362318840579711, "y": -5.6521739130434785, "x2": 5.6521739130434785, "y2": -5.362318840579711, "center_x": 5.507246376811595, "center_y": -5.507246376811595, "value_uncond": 9.01521911284547e-05}, {"x": 5.6521739130434785, "y": -5.6521739130434785, "x2": 5.942028985507246, "y2": -5.362318840579711, "center_x": 5.797101449275362, "center_y": -5.507246376811595, "value_uncond": 8.588049168906403e-05}, {"x": 5.942028985507246, "y": -5.6521739130434785, "x2": 6.231884057971014, "y2": -5.362318840579711, "center_x": 6.08695652173913, "center_y": -5.507246376811595, "value_uncond": 8.105103636811636e-05}, {"x": 6.2318840579710155, "y": -5.6521739130434785, "x2": 6.521739130434783, "y2": -5.362318840579711, "center_x": 6.376811594202899, "center_y": -5.507246376811595, "value_uncond": 7.578241430272746e-05}, {"x": 6.521739130434785, "y": -5.6521739130434785, "x2": 6.8115942028985526, "y2": -5.362318840579711, "center_x": 6.666666666666669, "center_y": -5.507246376811595, "value_uncond": 7.019789936570147e-05}, {"x": 6.811594202898551, "y": -5.6521739130434785, "x2": 7.101449275362318, "y2": -5.362318840579711, "center_x": 6.956521739130435, "center_y": -5.507246376811595, "value_uncond": 6.44207252883631e-05}, {"x": 7.10144927536232, "y": -5.6521739130434785, "x2": 7.391304347826088, "y2": -5.362318840579711, "center_x": 7.246376811594204, "center_y": -5.507246376811595, "value_uncond": 5.856968905537602e-05}, {"x": 7.391304347826086, "y": -5.6521739130434785, "x2": 7.681159420289854, "y2": -5.362318840579711, "center_x": 7.53623188405797, "center_y": -5.507246376811595, "value_uncond": 5.275529321903279e-05}, {"x": 7.681159420289855, "y": -5.6521739130434785, "x2": 7.971014492753623, "y2": -5.362318840579711, "center_x": 7.826086956521739, "center_y": -5.507246376811595, "value_uncond": 4.707658799450714e-05}, {"x": 7.971014492753625, "y": -5.6521739130434785, "x2": 8.260869565217392, "y2": -5.362318840579711, "center_x": 8.115942028985508, "center_y": -5.507246376811595, "value_uncond": 4.161881692036346e-05}, {"x": 8.26086956521739, "y": -5.6521739130434785, "x2": 8.550724637681158, "y2": -5.362318840579711, "center_x": 8.405797101449274, "center_y": -5.507246376811595, "value_uncond": 3.645191064632239e-05}, {"x": 8.55072463768116, "y": -5.6521739130434785, "x2": 8.840579710144928, "y2": -5.362318840579711, "center_x": 8.695652173913043, "center_y": -5.507246376811595, "value_uncond": 3.1629816913060714e-05}, {"x": 8.84057971014493, "y": -5.6521739130434785, "x2": 9.130434782608697, "y2": -5.362318840579711, "center_x": 8.985507246376812, "center_y": -5.507246376811595, "value_uncond": 2.719060516917808e-05}, {"x": 9.130434782608695, "y": -5.6521739130434785, "x2": 9.420289855072463, "y2": -5.362318840579711, "center_x": 9.275362318840578, "center_y": -5.507246376811595, "value_uncond": 2.315724463988563e-05}, {"x": 9.420289855072465, "y": -5.6521739130434785, "x2": 9.710144927536232, "y2": -5.362318840579711, "center_x": 9.565217391304348, "center_y": -5.507246376811595, "value_uncond": 1.9538926910290582e-05}, {"x": 9.710144927536234, "y": -5.6521739130434785, "x2": 10.000000000000002, "y2": -5.362318840579711, "center_x": 9.855072463768117, "center_y": -5.507246376811595, "value_uncond": 1.6332788847936102e-05}, {"x": 10.0, "y": -5.6521739130434785, "x2": 10.289855072463768, "y2": -5.362318840579711, "center_x": 10.144927536231883, "center_y": -5.507246376811595, "value_uncond": 1.3525888443685628e-05}, {"x": -10.0, "y": -5.36231884057971, "x2": -9.710144927536232, "y2": -5.072463768115942, "center_x": -9.855072463768117, "center_y": -5.217391304347826, "value_uncond": 2.5336562342392283e-09}, {"x": -9.710144927536232, "y": -5.36231884057971, "x2": -9.420289855072465, "y2": -5.072463768115942, "center_x": -9.565217391304348, "center_y": -5.217391304347826, "value_uncond": 3.958564763693418e-09}, {"x": -9.420289855072463, "y": -5.36231884057971, "x2": -9.130434782608695, "y2": -5.072463768115942, "center_x": -9.275362318840578, "center_y": -5.217391304347826, "value_uncond": 6.127363343029421e-09}, {"x": -9.130434782608695, "y": -5.36231884057971, "x2": -8.840579710144928, "y2": -5.072463768115942, "center_x": -8.985507246376812, "center_y": -5.217391304347826, "value_uncond": 9.396266548601021e-09}, {"x": -8.840579710144928, "y": -5.36231884057971, "x2": -8.55072463768116, "y2": -5.072463768115942, "center_x": -8.695652173913043, "center_y": -5.217391304347826, "value_uncond": 1.4275220877672309e-08}, {"x": -8.55072463768116, "y": -5.36231884057971, "x2": -8.260869565217392, "y2": -5.072463768115942, "center_x": -8.405797101449277, "center_y": -5.217391304347826, "value_uncond": 2.1486029113127425e-08}, {"x": -8.26086956521739, "y": -5.36231884057971, "x2": -7.971014492753623, "y2": -5.072463768115942, "center_x": -8.115942028985508, "center_y": -5.217391304347826, "value_uncond": 3.203873036907085e-08}, {"x": -7.971014492753623, "y": -5.36231884057971, "x2": -7.681159420289855, "y2": -5.072463768115942, "center_x": -7.826086956521739, "center_y": -5.217391304347826, "value_uncond": 4.7330408166995674e-08}, {"x": -7.681159420289855, "y": -5.36231884057971, "x2": -7.391304347826088, "y2": -5.072463768115942, "center_x": -7.536231884057972, "center_y": -5.217391304347826, "value_uncond": 6.92709297100564e-08}, {"x": -7.391304347826087, "y": -5.36231884057971, "x2": -7.101449275362319, "y2": -5.072463768115942, "center_x": -7.246376811594203, "center_y": -5.217391304347826, "value_uncond": 1.0044020669976769e-07}, {"x": -7.101449275362318, "y": -5.36231884057971, "x2": -6.811594202898551, "y2": -5.072463768115942, "center_x": -6.956521739130435, "center_y": -5.217391304347826, "value_uncond": 1.442812823572233e-07}, {"x": -6.811594202898551, "y": -5.36231884057971, "x2": -6.521739130434783, "y2": -5.072463768115942, "center_x": -6.666666666666667, "center_y": -5.217391304347826, "value_uncond": 2.053327407104132e-07}, {"x": -6.521739130434782, "y": -5.36231884057971, "x2": -6.231884057971015, "y2": -5.072463768115942, "center_x": -6.3768115942028984, "center_y": -5.217391304347826, "value_uncond": 2.895024403309789e-07}, {"x": -6.231884057971014, "y": -5.36231884057971, "x2": -5.942028985507246, "y2": -5.072463768115942, "center_x": -6.08695652173913, "center_y": -5.217391304347826, "value_uncond": 4.0438223511048235e-07}, {"x": -5.942028985507246, "y": -5.36231884057971, "x2": -5.6521739130434785, "y2": -5.072463768115942, "center_x": -5.797101449275362, "center_y": -5.217391304347826, "value_uncond": 5.596000213279511e-07}, {"x": -5.6521739130434785, "y": -5.36231884057971, "x2": -5.362318840579711, "y2": -5.072463768115942, "center_x": -5.507246376811595, "center_y": -5.217391304347826, "value_uncond": 7.672010541786288e-07}, {"x": -5.36231884057971, "y": -5.36231884057971, "x2": -5.072463768115942, "y2": -5.072463768115942, "center_x": -5.217391304347826, "center_y": -5.217391304347826, "value_uncond": 1.0420449997780032e-06}, {"x": -5.0724637681159415, "y": -5.36231884057971, "x2": -4.782608695652174, "y2": -5.072463768115942, "center_x": -4.927536231884058, "center_y": -5.217391304347826, "value_uncond": 1.4021987370275998e-06}, {"x": -4.782608695652174, "y": -5.36231884057971, "x2": -4.492753623188406, "y2": -5.072463768115942, "center_x": -4.63768115942029, "center_y": -5.217391304347826, "value_uncond": 1.8692977522789173e-06}, {"x": -4.492753623188405, "y": -5.36231884057971, "x2": -4.202898550724638, "y2": -5.072463768115942, "center_x": -4.3478260869565215, "center_y": -5.217391304347826, "value_uncond": 2.4688415079817903e-06}, {"x": -4.202898550724638, "y": -5.36231884057971, "x2": -3.91304347826087, "y2": -5.072463768115942, "center_x": -4.057971014492754, "center_y": -5.217391304347826, "value_uncond": 3.230381033194009e-06}, {"x": -3.913043478260869, "y": -5.36231884057971, "x2": -3.6231884057971016, "y2": -5.072463768115942, "center_x": -3.7681159420289854, "center_y": -5.217391304347826, "value_uncond": 4.187550982121279e-06}, {"x": -3.6231884057971016, "y": -5.36231884057971, "x2": -3.333333333333334, "y2": -5.072463768115942, "center_x": -3.4782608695652177, "center_y": -5.217391304347826, "value_uncond": 5.377894494159164e-06}, {"x": -3.333333333333333, "y": -5.36231884057971, "x2": -3.0434782608695654, "y2": -5.072463768115942, "center_x": -3.1884057971014492, "center_y": -5.217391304347826, "value_uncond": 6.842428416685089e-06}, {"x": -3.0434782608695645, "y": -5.36231884057971, "x2": -2.753623188405797, "y2": -5.072463768115942, "center_x": -2.8985507246376807, "center_y": -5.217391304347826, "value_uncond": 8.624899873630453e-06}, {"x": -2.753623188405797, "y": -5.36231884057971, "x2": -2.4637681159420293, "y2": -5.072463768115942, "center_x": -2.608695652173913, "center_y": -5.217391304347826, "value_uncond": 1.077069371281184e-05}, {"x": -2.4637681159420284, "y": -5.36231884057971, "x2": -2.1739130434782608, "y2": -5.072463768115942, "center_x": -2.3188405797101446, "center_y": -5.217391304347826, "value_uncond": 1.3325364714431008e-05}, {"x": -2.1739130434782608, "y": -5.36231884057971, "x2": -1.8840579710144931, "y2": -5.072463768115942, "center_x": -2.028985507246377, "center_y": -5.217391304347826, "value_uncond": 1.6332788847936102e-05}, {"x": -1.8840579710144922, "y": -5.36231884057971, "x2": -1.5942028985507246, "y2": -5.072463768115942, "center_x": -1.7391304347826084, "center_y": -5.217391304347826, "value_uncond": 1.9832954021266523e-05}, {"x": -1.5942028985507246, "y": -5.36231884057971, "x2": -1.304347826086957, "y2": -5.072463768115942, "center_x": -1.4492753623188408, "center_y": -5.217391304347826, "value_uncond": 2.38594416998354e-05}, {"x": -1.304347826086957, "y": -5.36231884057971, "x2": -1.0144927536231894, "y2": -5.072463768115942, "center_x": -1.1594202898550732, "center_y": -5.217391304347826, "value_uncond": 2.8436684775465024e-05}, {"x": -1.0144927536231876, "y": -5.36231884057971, "x2": -0.72463768115942, "y2": -5.072463768115942, "center_x": -0.8695652173913038, "center_y": -5.217391304347826, "value_uncond": 3.3577121715597955e-05}, {"x": -0.72463768115942, "y": -5.36231884057971, "x2": -0.43478260869565233, "y2": -5.072463768115942, "center_x": -0.5797101449275361, "center_y": -5.217391304347826, "value_uncond": 3.927839929030012e-05}, {"x": -0.43478260869565233, "y": -5.36231884057971, "x2": -0.1449275362318847, "y2": -5.072463768115942, "center_x": -0.2898550724637685, "center_y": -5.217391304347826, "value_uncond": 4.5520802626206266e-05}, {"x": -0.14492753623188293, "y": -5.36231884057971, "x2": 0.1449275362318847, "y2": -5.072463768115942, "center_x": 8.881784197001252e-16, "center_y": -5.217391304347826, "value_uncond": 5.226510843525332e-05}, {"x": 0.1449275362318847, "y": -5.36231884057971, "x2": 0.43478260869565233, "y2": -5.072463768115942, "center_x": 0.2898550724637685, "center_y": -5.217391304347826, "value_uncond": 5.9451061739903565e-05}, {"x": 0.43478260869565233, "y": -5.36231884057971, "x2": 0.72463768115942, "y2": -5.072463768115942, "center_x": 0.5797101449275361, "center_y": -5.217391304347826, "value_uncond": 6.699666566779119e-05}, {"x": 0.72463768115942, "y": -5.36231884057971, "x2": 1.0144927536231876, "y2": -5.072463768115942, "center_x": 0.8695652173913038, "center_y": -5.217391304347826, "value_uncond": 7.47984463949287e-05}, {"x": 1.0144927536231894, "y": -5.36231884057971, "x2": 1.304347826086957, "y2": -5.072463768115942, "center_x": 1.1594202898550732, "center_y": -5.217391304347826, "value_uncond": 8.273281097165984e-05}, {"x": 1.304347826086957, "y": -5.36231884057971, "x2": 1.5942028985507246, "y2": -5.072463768115942, "center_x": 1.4492753623188408, "center_y": -5.217391304347826, "value_uncond": 9.065855610650711e-05}, {"x": 1.5942028985507246, "y": -5.36231884057971, "x2": 1.8840579710144922, "y2": -5.072463768115942, "center_x": 1.7391304347826084, "center_y": -5.217391304347826, "value_uncond": 9.8420514256999e-05}, {"x": 1.884057971014494, "y": -5.36231884057971, "x2": 2.1739130434782616, "y2": -5.072463768115942, "center_x": 2.028985507246378, "center_y": -5.217391304347826, "value_uncond": 0.00010585424441593667}, {"x": 2.1739130434782616, "y": -5.36231884057971, "x2": 2.4637681159420293, "y2": -5.072463768115942, "center_x": 2.3188405797101455, "center_y": -5.217391304347826, "value_uncond": 0.0001127915948791156}, {"x": 2.4637681159420293, "y": -5.36231884057971, "x2": 2.753623188405797, "y2": -5.072463768115942, "center_x": 2.608695652173913, "center_y": -5.217391304347826, "value_uncond": 0.00011906689088032833}, {"x": 2.753623188405797, "y": -5.36231884057971, "x2": 3.0434782608695645, "y2": -5.072463768115942, "center_x": 2.8985507246376807, "center_y": -5.217391304347826, "value_uncond": 0.00012452343822772443}, {"x": 3.0434782608695663, "y": -5.36231884057971, "x2": 3.333333333333334, "y2": -5.072463768115942, "center_x": 3.18840579710145, "center_y": -5.217391304347826, "value_uncond": 0.00012901999129803215}, {"x": 3.333333333333334, "y": -5.36231884057971, "x2": 3.6231884057971016, "y2": -5.072463768115942, "center_x": 3.4782608695652177, "center_y": -5.217391304347826, "value_uncond": 0.00013243681493426023}, {"x": 3.6231884057971016, "y": -5.36231884057971, "x2": 3.913043478260869, "y2": -5.072463768115942, "center_x": 3.7681159420289854, "center_y": -5.217391304347826, "value_uncond": 0.0001346809779933359}, {"x": 3.913043478260871, "y": -5.36231884057971, "x2": 4.202898550724639, "y2": -5.072463768115942, "center_x": 4.057971014492755, "center_y": -5.217391304347826, "value_uncond": 0.00013569055216706725}, {"x": 4.202898550724639, "y": -5.36231884057971, "x2": 4.492753623188406, "y2": -5.072463768115942, "center_x": 4.347826086956522, "center_y": -5.217391304347826, "value_uncond": 0.00013543745134813776}, {"x": 4.492753623188406, "y": -5.36231884057971, "x2": 4.782608695652174, "y2": -5.072463768115942, "center_x": 4.63768115942029, "center_y": -5.217391304347826, "value_uncond": 0.00013392872985047388}, {"x": 4.782608695652174, "y": -5.36231884057971, "x2": 5.0724637681159415, "y2": -5.072463768115942, "center_x": 4.927536231884058, "center_y": -5.217391304347826, "value_uncond": 0.00013120625573286498}, {"x": 5.072463768115943, "y": -5.36231884057971, "x2": 5.362318840579711, "y2": -5.072463768115942, "center_x": 5.217391304347827, "center_y": -5.217391304347826, "value_uncond": 0.00012734478033952931}, {"x": 5.362318840579711, "y": -5.36231884057971, "x2": 5.6521739130434785, "y2": -5.072463768115942, "center_x": 5.507246376811595, "center_y": -5.217391304347826, "value_uncond": 0.00012244852828703783}, {"x": 5.6521739130434785, "y": -5.36231884057971, "x2": 5.942028985507246, "y2": -5.072463768115942, "center_x": 5.797101449275362, "center_y": -5.217391304347826, "value_uncond": 0.00011664652499581822}, {"x": 5.942028985507246, "y": -5.36231884057971, "x2": 6.231884057971014, "y2": -5.072463768115942, "center_x": 6.08695652173913, "center_y": -5.217391304347826, "value_uncond": 0.00011008695401838697}, {"x": 6.2318840579710155, "y": -5.36231884057971, "x2": 6.521739130434783, "y2": -5.072463768115942, "center_x": 6.376811594202899, "center_y": -5.217391304347826, "value_uncond": 0.00010293088814874822}, {"x": 6.521739130434785, "y": -5.36231884057971, "x2": 6.8115942028985526, "y2": -5.072463768115942, "center_x": 6.666666666666669, "center_y": -5.217391304347826, "value_uncond": 9.534576318754272e-05}, {"x": 6.811594202898551, "y": -5.36231884057971, "x2": 7.101449275362318, "y2": -5.072463768115942, "center_x": 6.956521739130435, "center_y": -5.217391304347826, "value_uncond": 8.74989604135519e-05}, {"x": 7.10144927536232, "y": -5.36231884057971, "x2": 7.391304347826088, "y2": -5.072463768115942, "center_x": 7.246376811594204, "center_y": -5.217391304347826, "value_uncond": 7.955183492813184e-05}, {"x": 7.391304347826086, "y": -5.36231884057971, "x2": 7.681159420289854, "y2": -5.072463768115942, "center_x": 7.53623188405797, "center_y": -5.217391304347826, "value_uncond": 7.165447598292267e-05}, {"x": 7.681159420289855, "y": -5.36231884057971, "x2": 7.971014492753623, "y2": -5.072463768115942, "center_x": 7.826086956521739, "center_y": -5.217391304347826, "value_uncond": 6.394141777973048e-05}, {"x": 7.971014492753625, "y": -5.36231884057971, "x2": 8.260869565217392, "y2": -5.072463768115942, "center_x": 8.115942028985508, "center_y": -5.217391304347826, "value_uncond": 5.652844170681143e-05}, {"x": 8.26086956521739, "y": -5.36231884057971, "x2": 8.550724637681158, "y2": -5.072463768115942, "center_x": 8.405797101449274, "center_y": -5.217391304347826, "value_uncond": 4.9510530537554236e-05}, {"x": 8.55072463768116, "y": -5.36231884057971, "x2": 8.840579710144928, "y2": -5.072463768115942, "center_x": 8.695652173913043, "center_y": -5.217391304347826, "value_uncond": 4.296095838063664e-05}, {"x": 8.84057971014493, "y": -5.36231884057971, "x2": 9.130434782608697, "y2": -5.072463768115942, "center_x": 8.985507246376812, "center_y": -5.217391304347826, "value_uncond": 3.6931432775225205e-05}, {"x": 9.130434782608695, "y": -5.36231884057971, "x2": 9.420289855072463, "y2": -5.072463768115942, "center_x": 9.275362318840578, "center_y": -5.217391304347826, "value_uncond": 3.1453151496856975e-05}, {"x": 9.420289855072465, "y": -5.36231884057971, "x2": 9.710144927536232, "y2": -5.072463768115942, "center_x": 9.565217391304348, "center_y": -5.217391304347826, "value_uncond": 2.6538598946131802e-05}, {"x": 9.710144927536234, "y": -5.36231884057971, "x2": 10.000000000000002, "y2": -5.072463768115942, "center_x": 9.855072463768117, "center_y": -5.217391304347826, "value_uncond": 2.2183886295154995e-05}, {"x": 10.0, "y": -5.36231884057971, "x2": 10.289855072463768, "y2": -5.072463768115942, "center_x": 10.144927536231883, "center_y": -5.217391304347826, "value_uncond": 1.837143515839854e-05}, {"x": -10.0, "y": -5.0724637681159415, "x2": -9.710144927536232, "y2": -4.782608695652174, "center_x": -9.855072463768117, "center_y": -4.927536231884058, "value_uncond": 3.4093437159328184e-09}, {"x": -9.710144927536232, "y": -5.0724637681159415, "x2": -9.420289855072465, "y2": -4.782608695652174, "center_x": -9.565217391304348, "center_y": -4.927536231884058, "value_uncond": 5.326732063658852e-09}, {"x": -9.420289855072463, "y": -5.0724637681159415, "x2": -9.130434782608695, "y2": -4.782608695652174, "center_x": -9.275362318840578, "center_y": -4.927536231884058, "value_uncond": 8.245115271159551e-09}, {"x": -9.130434782608695, "y": -5.0724637681159415, "x2": -8.840579710144928, "y2": -4.782608695652174, "center_x": -8.985507246376812, "center_y": -4.927536231884058, "value_uncond": 1.2643823529722732e-08}, {"x": -8.840579710144928, "y": -5.0724637681159415, "x2": -8.55072463768116, "y2": -4.782608695652174, "center_x": -8.695652173913043, "center_y": -4.927536231884058, "value_uncond": 1.9209052094416735e-08}, {"x": -8.55072463768116, "y": -5.0724637681159415, "x2": -8.260869565217392, "y2": -4.782608695652174, "center_x": -8.405797101449277, "center_y": -4.927536231884058, "value_uncond": 2.8912074711345388e-08}, {"x": -8.26086956521739, "y": -5.0724637681159415, "x2": -7.971014492753623, "y2": -4.782608695652174, "center_x": -8.115942028985508, "center_y": -4.927536231884058, "value_uncond": 4.311202229179132e-08}, {"x": -7.971014492753623, "y": -5.0724637681159415, "x2": -7.681159420289855, "y2": -4.782608695652174, "center_x": -7.826086956521739, "center_y": -4.927536231884058, "value_uncond": 6.368884123900681e-08}, {"x": -7.681159420289855, "y": -5.0724637681159415, "x2": -7.391304347826088, "y2": -4.782608695652174, "center_x": -7.536231884057972, "center_y": -4.927536231884058, "value_uncond": 9.321249098921986e-08}, {"x": -7.391304347826087, "y": -5.0724637681159415, "x2": -7.101449275362319, "y2": -4.782608695652174, "center_x": -7.246376811594203, "center_y": -4.927536231884058, "value_uncond": 1.3515455763542766e-07}, {"x": -7.101449275362318, "y": -5.0724637681159415, "x2": -6.811594202898551, "y2": -4.782608695652174, "center_x": -6.956521739130435, "center_y": -4.927536231884058, "value_uncond": 1.9414807608224334e-07}, {"x": -6.811594202898551, "y": -5.0724637681159415, "x2": -6.521739130434783, "y2": -4.782608695652174, "center_x": -6.666666666666667, "center_y": -4.927536231884058, "value_uncond": 2.763002651093713e-07}, {"x": -6.521739130434782, "y": -5.0724637681159415, "x2": -6.231884057971015, "y2": -4.782608695652174, "center_x": -6.3768115942028984, "center_y": -4.927536231884058, "value_uncond": 3.8956086952577673e-07}, {"x": -6.231884057971014, "y": -5.0724637681159415, "x2": -5.942028985507246, "y2": -4.782608695652174, "center_x": -6.08695652173913, "center_y": -4.927536231884058, "value_uncond": 5.441456553883133e-07}, {"x": -5.942028985507246, "y": -5.0724637681159415, "x2": -5.6521739130434785, "y2": -4.782608695652174, "center_x": -5.797101449275362, "center_y": -4.927536231884058, "value_uncond": 7.530101323012316e-07}, {"x": -5.6521739130434785, "y": -5.0724637681159415, "x2": -5.362318840579711, "y2": -4.782608695652174, "center_x": -5.507246376811595, "center_y": -4.927536231884058, "value_uncond": 1.032362661348308e-06}, {"x": -5.36231884057971, "y": -5.0724637681159415, "x2": -5.072463768115942, "y2": -4.782608695652174, "center_x": -5.217391304347826, "center_y": -4.927536231884058, "value_uncond": 1.4021987370275998e-06}, {"x": -5.0724637681159415, "y": -5.0724637681159415, "x2": -4.782608695652174, "y2": -4.782608695652174, "center_x": -4.927536231884058, "center_y": -4.927536231884058, "value_uncond": 1.886829550106441e-06}, {"x": -4.782608695652174, "y": -5.0724637681159415, "x2": -4.492753623188406, "y2": -4.782608695652174, "center_x": -4.63768115942029, "center_y": -4.927536231884058, "value_uncond": 2.5153682882528417e-06}, {"x": -4.492753623188405, "y": -5.0724637681159415, "x2": -4.202898550724638, "y2": -4.782608695652174, "center_x": -4.3478260869565215, "center_y": -4.927536231884058, "value_uncond": 3.3221275906039403e-06}, {"x": -4.202898550724638, "y": -5.0724637681159415, "x2": -3.91304347826087, "y2": -4.782608695652174, "center_x": -4.057971014492754, "center_y": -4.927536231884058, "value_uncond": 4.346871973693597e-06}, {"x": -3.913043478260869, "y": -5.0724637681159415, "x2": -3.6231884057971016, "y2": -4.782608695652174, "center_x": -3.7681159420289854, "center_y": -4.927536231884058, "value_uncond": 5.634860970130909e-06}, {"x": -3.6231884057971016, "y": -5.0724637681159415, "x2": -3.333333333333334, "y2": -4.782608695652174, "center_x": -3.4782608695652177, "center_y": -4.927536231884058, "value_uncond": 7.2366134564094345e-06}, {"x": -3.333333333333333, "y": -5.0724637681159415, "x2": -3.0434782608695654, "y2": -4.782608695652174, "center_x": -3.1884057971014492, "center_y": -4.927536231884058, "value_uncond": 9.207322607105823e-06}, {"x": -3.0434782608695645, "y": -5.0724637681159415, "x2": -2.753623188405797, "y2": -4.782608695652174, "center_x": -2.8985507246376807, "center_y": -4.927536231884058, "value_uncond": 1.1605855517151936e-05}, {"x": -2.753623188405797, "y": -5.0724637681159415, "x2": -2.4637681159420293, "y2": -4.782608695652174, "center_x": -2.608695652173913, "center_y": -4.927536231884058, "value_uncond": 1.4493283038864286e-05}, {"x": -2.4637681159420284, "y": -5.0724637681159415, "x2": -2.1739130434782608, "y2": -4.782608695652174, "center_x": -2.3188405797101446, "center_y": -4.927536231884058, "value_uncond": 1.7930904689325227e-05}, {"x": -2.1739130434782608, "y": -5.0724637681159415, "x2": -1.8840579710144931, "y2": -4.782608695652174, "center_x": -2.028985507246377, "center_y": -4.927536231884058, "value_uncond": 2.197776094083601e-05}, {"x": -1.8840579710144922, "y": -5.0724637681159415, "x2": -1.5942028985507246, "y2": -4.782608695652174, "center_x": -1.7391304347826084, "center_y": -4.927536231884058, "value_uncond": 2.6687660404369246e-05}, {"x": -1.5942028985507246, "y": -5.0724637681159415, "x2": -1.304347826086957, "y2": -4.782608695652174, "center_x": -1.4492753623188408, "center_y": -4.927536231884058, "value_uncond": 3.21057910405215e-05}, {"x": -1.304347826086957, "y": -5.0724637681159415, "x2": -1.0144927536231894, "y2": -4.782608695652174, "center_x": -1.1594202898550732, "center_y": -4.927536231884058, "value_uncond": 3.826503028746719e-05}, {"x": -1.0144927536231876, "y": -5.0724637681159415, "x2": -0.72463768115942, "y2": -4.782608695652174, "center_x": -0.8695652173913038, "center_y": -4.927536231884058, "value_uncond": 4.51821156213635e-05}, {"x": -0.72463768115942, "y": -5.0724637681159415, "x2": -0.43478260869565233, "y2": -4.782608695652174, "center_x": -0.5797101449275361, "center_y": -4.927536231884058, "value_uncond": 5.285388048410386e-05}, {"x": -0.43478260869565233, "y": -5.0724637681159415, "x2": -0.1449275362318847, "y2": -4.782608695652174, "center_x": -0.2898550724637685, "center_y": -4.927536231884058, "value_uncond": 6.125379610721919e-05}, {"x": -0.14492753623188293, "y": -5.0724637681159415, "x2": 0.1449275362318847, "y2": -4.782608695652174, "center_x": 8.881784197001252e-16, "center_y": -4.927536231884058, "value_uncond": 7.032908276910843e-05}, {"x": 0.1449275362318847, "y": -5.0724637681159415, "x2": 0.43478260869565233, "y2": -4.782608695652174, "center_x": 0.2898550724637685, "center_y": -4.927536231884058, "value_uncond": 7.999866004289843e-05}, {"x": 0.43478260869565233, "y": -5.0724637681159415, "x2": 0.72463768115942, "y2": -4.782608695652174, "center_x": 0.5797101449275361, "center_y": -4.927536231884058, "value_uncond": 9.015219112845478e-05}, {"x": 0.72463768115942, "y": -5.0724637681159415, "x2": 1.0144927536231876, "y2": -4.782608695652174, "center_x": 0.8695652173913038, "center_y": -4.927536231884058, "value_uncond": 0.00010065043936580447}, {"x": 1.0144927536231894, "y": -5.0724637681159415, "x2": 1.304347826086957, "y2": -4.782608695652174, "center_x": 1.1594202898550732, "center_y": -4.927536231884058, "value_uncond": 0.00011132709535568892}, {"x": 1.304347826086957, "y": -5.0724637681159415, "x2": 1.5942028985507246, "y2": -4.782608695652174, "center_x": 1.4492753623188408, "center_y": -4.927536231884058, "value_uncond": 0.00012199215283444759}, {"x": 1.5942028985507246, "y": -5.0724637681159415, "x2": 1.8840579710144922, "y2": -4.782608695652174, "center_x": 1.7391304347826084, "center_y": -4.927536231884058, "value_uncond": 0.00013243681493426047}, {"x": 1.884057971014494, "y": -5.0724637681159415, "x2": 2.1739130434782616, "y2": -4.782608695652174, "center_x": 2.028985507246378, "center_y": -4.927536231884058, "value_uncond": 0.00014243980620861715}, {"x": 2.1739130434782616, "y": -5.0724637681159415, "x2": 2.4637681159420293, "y2": -4.782608695652174, "center_x": 2.3188405797101455, "center_y": -4.927536231884058, "value_uncond": 0.00015177485801526626}, {"x": 2.4637681159420293, "y": -5.0724637681159415, "x2": 2.753623188405797, "y2": -4.782608695652174, "center_x": 2.608695652173913, "center_y": -4.927536231884058, "value_uncond": 0.00016021903473436135}, {"x": 2.753623188405797, "y": -5.0724637681159415, "x2": 3.0434782608695645, "y2": -4.782608695652174, "center_x": 2.8985507246376807, "center_y": -4.927536231884058, "value_uncond": 0.00016756148520500328}, {"x": 3.0434782608695663, "y": -5.0724637681159415, "x2": 3.333333333333334, "y2": -4.782608695652174, "center_x": 3.18840579710145, "center_y": -4.927536231884058, "value_uncond": 0.00017361214620093563}, {"x": 3.333333333333334, "y": -5.0724637681159415, "x2": 3.6231884057971016, "y2": -4.782608695652174, "center_x": 3.4782608695652177, "center_y": -4.927536231884058, "value_uncond": 0.00017820989945380452}, {"x": 3.6231884057971016, "y": -5.0724637681159415, "x2": 3.913043478260869, "y2": -4.782608695652174, "center_x": 3.7681159420289854, "center_y": -4.927536231884058, "value_uncond": 0.0001812296947676252}, {"x": 3.913043478260871, "y": -5.0724637681159415, "x2": 4.202898550724639, "y2": -4.782608695652174, "center_x": 4.057971014492755, "center_y": -4.927536231884058, "value_uncond": 0.0001825882000448861}, {"x": 4.202898550724639, "y": -5.0724637681159415, "x2": 4.492753623188406, "y2": -4.782608695652174, "center_x": 4.347826086956522, "center_y": -4.927536231884058, "value_uncond": 0.0001822476220000616}, {"x": 4.492753623188406, "y": -5.0724637681159415, "x2": 4.782608695652174, "y2": -4.782608695652174, "center_x": 4.63768115942029, "center_y": -4.927536231884058, "value_uncond": 0.00018021745307357436}, {"x": 4.782608695652174, "y": -5.0724637681159415, "x2": 5.0724637681159415, "y2": -4.782608695652174, "center_x": 4.927536231884058, "center_y": -4.927536231884058, "value_uncond": 0.00017655403184885295}, {"x": 5.072463768115943, "y": -5.0724637681159415, "x2": 5.362318840579711, "y2": -4.782608695652174, "center_x": 5.217391304347827, "center_y": -4.927536231884058, "value_uncond": 0.00017135794538353534}, {"x": 5.362318840579711, "y": -5.0724637681159415, "x2": 5.6521739130434785, "y2": -4.782608695652174, "center_x": 5.507246376811595, "center_y": -4.927536231884058, "value_uncond": 0.00016476944062065562}, {"x": 5.6521739130434785, "y": -5.0724637681159415, "x2": 5.942028985507246, "y2": -4.782608695652174, "center_x": 5.797101449275362, "center_y": -4.927536231884058, "value_uncond": 0.00015696213701197142}, {"x": 5.942028985507246, "y": -5.0724637681159415, "x2": 6.231884057971014, "y2": -4.782608695652174, "center_x": 6.08695652173913, "center_y": -4.927536231884058, "value_uncond": 0.0001481354336143672}, {"x": 6.2318840579710155, "y": -5.0724637681159415, "x2": 6.521739130434783, "y2": -4.782608695652174, "center_x": 6.376811594202899, "center_y": -4.927536231884058, "value_uncond": 0.00013850607353238278}, {"x": 6.521739130434785, "y": -5.0724637681159415, "x2": 6.8115942028985526, "y2": -4.782608695652174, "center_x": 6.666666666666669, "center_y": -4.927536231884058, "value_uncond": 0.00012829936207264282}, {"x": 6.811594202898551, "y": -5.0724637681159415, "x2": 7.101449275362318, "y2": -4.782608695652174, "center_x": 6.956521739130435, "center_y": -4.927536231884058, "value_uncond": 0.00011774053117595541}, {"x": 7.10144927536232, "y": -5.0724637681159415, "x2": 7.391304347826088, "y2": -4.782608695652174, "center_x": 7.246376811594204, "center_y": -4.927536231884058, "value_uncond": 0.00010704670382586031}, {"x": 7.391304347826086, "y": -5.0724637681159415, "x2": 7.681159420289854, "y2": -4.782608695652174, "center_x": 7.53623188405797, "center_y": -4.927536231884058, "value_uncond": 9.641984343001844e-05}, {"x": 7.681159420289855, "y": -5.0724637681159415, "x2": 7.971014492753623, "y2": -4.782608695652174, "center_x": 7.826086956521739, "center_y": -4.927536231884058, "value_uncond": 8.604098217792227e-05}, {"x": 7.971014492753625, "y": -5.0724637681159415, "x2": 8.260869565217392, "y2": -4.782608695652174, "center_x": 8.115942028985508, "center_y": -4.927536231884058, "value_uncond": 7.606591805950384e-05}, {"x": 8.26086956521739, "y": -5.0724637681159415, "x2": 8.550724637681158, "y2": -4.782608695652174, "center_x": 8.405797101449274, "center_y": -4.927536231884058, "value_uncond": 6.662246198975567e-05}, {"x": 8.55072463768116, "y": -5.0724637681159415, "x2": 8.840579710144928, "y2": -4.782608695652174, "center_x": 8.695652173913043, "center_y": -4.927536231884058, "value_uncond": 5.780921322558761e-05}, {"x": 8.84057971014493, "y": -5.0724637681159415, "x2": 9.130434782608697, "y2": -4.782608695652174, "center_x": 8.985507246376812, "center_y": -4.927536231884058, "value_uncond": 4.9695750572262035e-05}, {"x": 9.130434782608695, "y": -5.0724637681159415, "x2": 9.420289855072463, "y2": -4.782608695652174, "center_x": 9.275362318840578, "center_y": -4.927536231884058, "value_uncond": 4.2324054444699044e-05}, {"x": 9.420289855072465, "y": -5.0724637681159415, "x2": 9.710144927536232, "y2": -4.782608695652174, "center_x": 9.565217391304348, "center_y": -4.927536231884058, "value_uncond": 3.5710924127725504e-05}, {"x": 9.710144927536234, "y": -5.0724637681159415, "x2": 10.000000000000002, "y2": -4.782608695652174, "center_x": 9.855072463768117, "center_y": -4.927536231884058, "value_uncond": 2.9851126728746904e-05}, {"x": 10.0, "y": -5.0724637681159415, "x2": 10.289855072463768, "y2": -4.782608695652174, "center_x": 10.144927536231883, "center_y": -4.927536231884058, "value_uncond": 2.4721008384454473e-05}, {"x": -10.0, "y": -4.782608695652174, "x2": -9.710144927536232, "y2": -4.492753623188406, "center_x": -9.855072463768117, "center_y": -4.63768115942029, "value_uncond": 4.5450608224403395e-09}, {"x": -9.710144927536232, "y": -4.782608695652174, "x2": -9.420289855072465, "y2": -4.492753623188406, "center_x": -9.565217391304348, "center_y": -4.63768115942029, "value_uncond": 7.10116762385412e-09}, {"x": -9.420289855072463, "y": -4.782608695652174, "x2": -9.130434782608695, "y2": -4.492753623188406, "center_x": -9.275362318840578, "center_y": -4.63768115942029, "value_uncond": 1.0991719673297463e-08}, {"x": -9.130434782608695, "y": -4.782608695652174, "x2": -8.840579710144928, "y2": -4.492753623188406, "center_x": -8.985507246376812, "center_y": -4.63768115942029, "value_uncond": 1.68557211472205e-08}, {"x": -8.840579710144928, "y": -4.782608695652174, "x2": -8.55072463768116, "y2": -4.492753623188406, "center_x": -8.695652173913043, "center_y": -4.63768115942029, "value_uncond": 2.560795196522492e-08}, {"x": -8.55072463768116, "y": -4.782608695652174, "x2": -8.260869565217392, "y2": -4.492753623188406, "center_x": -8.405797101449277, "center_y": -4.63768115942029, "value_uncond": 3.854323559455201e-08}, {"x": -8.26086956521739, "y": -4.782608695652174, "x2": -7.971014492753623, "y2": -4.492753623188406, "center_x": -8.115942028985508, "center_y": -4.63768115942029, "value_uncond": 5.747345525148468e-08}, {"x": -7.971014492753623, "y": -4.782608695652174, "x2": -7.681159420289855, "y2": -4.492753623188406, "center_x": -7.826086956521739, "center_y": -4.63768115942029, "value_uncond": 8.490480317055164e-08}, {"x": -7.681159420289855, "y": -4.782608695652174, "x2": -7.391304347826088, "y2": -4.492753623188406, "center_x": -7.536231884057972, "center_y": -4.63768115942029, "value_uncond": 1.2426334105807845e-07}, {"x": -7.391304347826087, "y": -4.782608695652174, "x2": -7.101449275362319, "y2": -4.492753623188406, "center_x": -7.246376811594203, "center_y": -4.63768115942029, "value_uncond": 1.8017710623082913e-07}, {"x": -7.101449275362318, "y": -4.782608695652174, "x2": -6.811594202898551, "y2": -4.492753623188406, "center_x": -6.956521739130435, "center_y": -4.63768115942029, "value_uncond": 2.588224854624657e-07}, {"x": -6.811594202898551, "y": -4.782608695652174, "x2": -6.521739130434783, "y2": -4.492753623188406, "center_x": -6.666666666666667, "center_y": -4.63768115942029, "value_uncond": 3.6834112803287286e-07}, {"x": -6.521739130434782, "y": -4.782608695652174, "x2": -6.231884057971015, "y2": -4.492753623188406, "center_x": -6.3768115942028984, "center_y": -4.63768115942029, "value_uncond": 5.193309896456e-07}, {"x": -6.231884057971014, "y": -4.782608695652174, "x2": -5.942028985507246, "y2": -4.492753623188406, "center_x": -6.08695652173913, "center_y": -4.63768115942029, "value_uncond": 7.254109019424205e-07}, {"x": -5.942028985507246, "y": -4.782608695652174, "x2": -5.6521739130434785, "y2": -4.492753623188406, "center_x": -5.797101449275362, "center_y": -4.63768115942029, "value_uncond": 1.0038521006927966e-06}, {"x": -5.6521739130434785, "y": -4.782608695652174, "x2": -5.362318840579711, "y2": -4.492753623188406, "center_x": -5.507246376811595, "center_y": -4.63768115942029, "value_uncond": 1.3762622597178169e-06}, {"x": -5.36231884057971, "y": -4.782608695652174, "x2": -5.072463768115942, "y2": -4.492753623188406, "center_x": -5.217391304347826, "center_y": -4.63768115942029, "value_uncond": 1.8692977522789173e-06}, {"x": -5.0724637681159415, "y": -4.782608695652174, "x2": -4.782608695652174, "y2": -4.492753623188406, "center_x": -4.927536231884058, "center_y": -4.63768115942029, "value_uncond": 2.5153682882528417e-06}, {"x": -4.782608695652174, "y": -4.782608695652174, "x2": -4.492753623188406, "y2": -4.492753623188406, "center_x": -4.63768115942029, "center_y": -4.63768115942029, "value_uncond": 3.3532852107341146e-06}, {"x": -4.492753623188405, "y": -4.782608695652174, "x2": -4.202898550724638, "y2": -4.492753623188406, "center_x": -4.3478260869565215, "center_y": -4.63768115942029, "value_uncond": 4.428791350264565e-06}, {"x": -4.202898550724638, "y": -4.782608695652174, "x2": -3.91304347826087, "y2": -4.492753623188406, "center_x": -4.057971014492754, "center_y": -4.63768115942029, "value_uncond": 5.794897538628808e-06}, {"x": -3.913043478260869, "y": -4.782608695652174, "x2": -3.6231884057971016, "y2": -4.492753623188406, "center_x": -3.7681159420289854, "center_y": -4.63768115942029, "value_uncond": 7.511940117845491e-06}, {"x": -3.6231884057971016, "y": -4.782608695652174, "x2": -3.333333333333334, "y2": -4.492753623188406, "center_x": -3.4782608695652177, "center_y": -4.63768115942029, "value_uncond": 9.647266761096261e-06}, {"x": -3.333333333333333, "y": -4.782608695652174, "x2": -3.0434782608695654, "y2": -4.492753623188406, "center_x": -3.1884057971014492, "center_y": -4.63768115942029, "value_uncond": 1.227445653706291e-05}, {"x": -3.0434782608695645, "y": -4.782608695652174, "x2": -2.753623188405797, "y2": -4.492753623188406, "center_x": -2.8985507246376807, "center_y": -4.63768115942029, "value_uncond": 1.547198628738956e-05}, {"x": -2.753623188405797, "y": -4.782608695652174, "x2": -2.4637681159420293, "y2": -4.492753623188406, "center_x": -2.608695652173913, "center_y": -4.63768115942029, "value_uncond": 1.9321270724520628e-05}, {"x": -2.4637681159420284, "y": -4.782608695652174, "x2": -2.1739130434782608, "y2": -4.492753623188406, "center_x": -2.3188405797101446, "center_y": -4.63768115942029, "value_uncond": 2.3904029398240288e-05}, {"x": -2.1739130434782608, "y": -4.782608695652174, "x2": -1.8840579710144931, "y2": -4.492753623188406, "center_x": -2.028985507246377, "center_y": -4.63768115942029, "value_uncond": 2.929897028285477e-05}, {"x": -1.8840579710144922, "y": -4.782608695652174, "x2": -1.5942028985507246, "y2": -4.492753623188406, "center_x": -1.7391304347826084, "center_y": -4.63768115942029, "value_uncond": 3.557782665902412e-05}, {"x": -1.5942028985507246, "y": -4.782608695652174, "x2": -1.304347826086957, "y2": -4.492753623188406, "center_x": -1.4492753623188408, "center_y": -4.63768115942029, "value_uncond": 4.28008394547585e-05}, {"x": -1.304347826086957, "y": -4.782608695652174, "x2": -1.0144927536231894, "y2": -4.492753623188406, "center_x": -1.1594202898550732, "center_y": -4.63768115942029, "value_uncond": 5.1011838206953956e-05}, {"x": -1.0144927536231876, "y": -4.782608695652174, "x2": -0.72463768115942, "y2": -4.492753623188406, "center_x": -0.8695652173913038, "center_y": -4.63768115942029, "value_uncond": 6.0233135962779376e-05}, {"x": -0.72463768115942, "y": -4.782608695652174, "x2": -0.43478260869565233, "y2": -4.492753623188406, "center_x": -0.5797101449275361, "center_y": -4.63768115942029, "value_uncond": 7.046051132351661e-05}, {"x": -0.43478260869565233, "y": -4.782608695652174, "x2": -0.1449275362318847, "y2": -4.492753623188406, "center_x": -0.2898550724637685, "center_y": -4.63768115942029, "value_uncond": 8.165859828436157e-05}, {"x": -0.14492753623188293, "y": -4.782608695652174, "x2": 0.1449275362318847, "y2": -4.492753623188406, "center_x": 8.881784197001252e-16, "center_y": -4.63768115942029, "value_uncond": 9.37570351966054e-05}, {"x": 0.1449275362318847, "y": -4.782608695652174, "x2": 0.43478260869565233, "y2": -4.492753623188406, "center_x": 0.2898550724637685, "center_y": -4.63768115942029, "value_uncond": 0.00010664773220414889}, {"x": 0.43478260869565233, "y": -4.782608695652174, "x2": 0.72463768115942, "y2": -4.492753623188406, "center_x": 0.5797101449275361, "center_y": -4.63768115942029, "value_uncond": 0.00012018359722436608}, {"x": 0.72463768115942, "y": -4.782608695652174, "x2": 1.0144927536231876, "y2": -4.492753623188406, "center_x": 0.8695652173913038, "center_y": -4.63768115942029, "value_uncond": 0.00013417901122291513}, {"x": 1.0144927536231894, "y": -4.782608695652174, "x2": 1.304347826086957, "y2": -4.492753623188406, "center_x": 1.1594202898550732, "center_y": -4.63768115942029, "value_uncond": 0.00014841226398282928}, {"x": 1.304347826086957, "y": -4.782608695652174, "x2": 1.5942028985507246, "y2": -4.492753623188406, "center_x": 1.4492753623188408, "center_y": -4.63768115942029, "value_uncond": 0.00016263005454740363}, {"x": 1.5942028985507246, "y": -4.782608695652174, "x2": 1.8840579710144922, "y2": -4.492753623188406, "center_x": 1.7391304347826084, "center_y": -4.63768115942029, "value_uncond": 0.00017655403184885278}, {"x": 1.884057971014494, "y": -4.782608695652174, "x2": 2.1739130434782616, "y2": -4.492753623188406, "center_x": 2.028985507246378, "center_y": -4.63768115942029, "value_uncond": 0.00018988920938927623}, {"x": 2.1739130434782616, "y": -4.782608695652174, "x2": 2.4637681159420293, "y2": -4.492753623188406, "center_x": 2.3188405797101455, "center_y": -4.63768115942029, "value_uncond": 0.0002023339441467523}, {"x": 2.4637681159420293, "y": -4.782608695652174, "x2": 2.753623188405797, "y2": -4.492753623188406, "center_x": 2.608695652173913, "center_y": -4.63768115942029, "value_uncond": 0.00021359103641479342}, {"x": 2.753623188405797, "y": -4.782608695652174, "x2": 3.0434782608695645, "y2": -4.492753623188406, "center_x": 2.8985507246376807, "center_y": -4.63768115942029, "value_uncond": 0.0002233793965085168}, {"x": 3.0434782608695663, "y": -4.782608695652174, "x2": 3.333333333333334, "y2": -4.492753623188406, "center_x": 3.18840579710145, "center_y": -4.63768115942029, "value_uncond": 0.0002314456475332996}, {"x": 3.333333333333334, "y": -4.782608695652174, "x2": 3.6231884057971016, "y2": -4.492753623188406, "center_x": 3.4782608695652177, "center_y": -4.63768115942029, "value_uncond": 0.00023757499966732003}, {"x": 3.6231884057971016, "y": -4.782608695652174, "x2": 3.913043478260869, "y2": -4.492753623188406, "center_x": 3.7681159420289854, "center_y": -4.63768115942029, "value_uncond": 0.00024160074612066055}, {"x": 3.913043478260871, "y": -4.782608695652174, "x2": 4.202898550724639, "y2": -4.492753623188406, "center_x": 4.057971014492755, "center_y": -4.63768115942029, "value_uncond": 0.00024341179529235364}, {"x": 4.202898550724639, "y": -4.782608695652174, "x2": 4.492753623188406, "y2": -4.492753623188406, "center_x": 4.347826086956522, "center_y": -4.63768115942029, "value_uncond": 0.00024295776423608866}, {"x": 4.492753623188406, "y": -4.782608695652174, "x2": 4.782608695652174, "y2": -4.492753623188406, "center_x": 4.63768115942029, "center_y": -4.63768115942029, "value_uncond": 0.00024025130750437475}, {"x": 4.782608695652174, "y": -4.782608695652174, "x2": 5.0724637681159415, "y2": -4.492753623188406, "center_x": 4.927536231884058, "center_y": -4.63768115942029, "value_uncond": 0.00023536753113217578}, {"x": 5.072463768115943, "y": -4.782608695652174, "x2": 5.362318840579711, "y2": -4.492753623188406, "center_x": 5.217391304347827, "center_y": -4.63768115942029, "value_uncond": 0.00022844052963533022}, {"x": 5.362318840579711, "y": -4.782608695652174, "x2": 5.6521739130434785, "y2": -4.492753623188406, "center_x": 5.507246376811595, "center_y": -4.63768115942029, "value_uncond": 0.00021965726887570545}, {"x": 5.6521739130434785, "y": -4.782608695652174, "x2": 5.942028985507246, "y2": -4.492753623188406, "center_x": 5.797101449275362, "center_y": -4.63768115942029, "value_uncond": 0.00020924920424001095}, {"x": 5.942028985507246, "y": -4.782608695652174, "x2": 6.231884057971014, "y2": -4.492753623188406, "center_x": 6.08695652173913, "center_y": -4.63768115942029, "value_uncond": 0.00019748215839588857}, {"x": 6.2318840579710155, "y": -4.782608695652174, "x2": 6.521739130434783, "y2": -4.492753623188406, "center_x": 6.376811594202899, "center_y": -4.63768115942029, "value_uncond": 0.00018464507569012695}, {"x": 6.521739130434785, "y": -4.782608695652174, "x2": 6.8115942028985526, "y2": -4.492753623188406, "center_x": 6.666666666666669, "center_y": -4.63768115942029, "value_uncond": 0.00017103831490363806}, {"x": 6.811594202898551, "y": -4.782608695652174, "x2": 7.101449275362318, "y2": -4.492753623188406, "center_x": 6.956521739130435, "center_y": -4.63768115942029, "value_uncond": 0.00015696213701197131}, {"x": 7.10144927536232, "y": -4.782608695652174, "x2": 7.391304347826088, "y2": -4.492753623188406, "center_x": 7.246376811594204, "center_y": -4.63768115942029, "value_uncond": 0.00014270599278582075}, {"x": 7.391304347826086, "y": -4.782608695652174, "x2": 7.681159420289854, "y2": -4.492753623188406, "center_x": 7.53623188405797, "center_y": -4.63768115942029, "value_uncond": 0.0001285391234775238}, {"x": 7.681159420289855, "y": -4.782608695652174, "x2": 7.971014492753623, "y2": -4.492753623188406, "center_x": 7.826086956521739, "center_y": -4.63768115942029, "value_uncond": 0.00011470286653516983}, {"x": 7.971014492753625, "y": -4.782608695652174, "x2": 8.260869565217392, "y2": -4.492753623188406, "center_x": 8.115942028985508, "center_y": -4.63768115942029, "value_uncond": 0.00010140491921642922}, {"x": 8.26086956521739, "y": -4.782608695652174, "x2": 8.550724637681158, "y2": -4.492753623188406, "center_x": 8.405797101449274, "center_y": -4.63768115942029, "value_uncond": 8.881566867813159e-05}, {"x": 8.55072463768116, "y": -4.782608695652174, "x2": 8.840579710144928, "y2": -4.492753623188406, "center_x": 8.695652173913043, "center_y": -4.63768115942029, "value_uncond": 7.706655946123317e-05}, {"x": 8.84057971014493, "y": -4.782608695652174, "x2": 9.130434782608697, "y2": -4.492753623188406, "center_x": 8.985507246376812, "center_y": -4.63768115942029, "value_uncond": 6.625034839174487e-05}, {"x": 9.130434782608695, "y": -4.782608695652174, "x2": 9.420289855072463, "y2": -4.492753623188406, "center_x": 9.275362318840578, "center_y": -4.63768115942029, "value_uncond": 5.642300035765128e-05}, {"x": 9.420289855072465, "y": -4.782608695652174, "x2": 9.710144927536232, "y2": -4.492753623188406, "center_x": 9.565217391304348, "center_y": -4.63768115942029, "value_uncond": 4.760691080443206e-05}, {"x": 9.710144927536234, "y": -4.782608695652174, "x2": 10.000000000000002, "y2": -4.492753623188406, "center_x": 9.855072463768117, "center_y": -4.63768115942029, "value_uncond": 3.979510366364091e-05}, {"x": 10.0, "y": -4.782608695652174, "x2": 10.289855072463768, "y2": -4.492753623188406, "center_x": 10.144927536231883, "center_y": -4.63768115942029, "value_uncond": 3.29560455211132e-05}, {"x": -10.0, "y": -4.492753623188405, "x2": -9.710144927536232, "y2": -4.202898550724638, "center_x": -9.855072463768117, "center_y": -4.3478260869565215, "value_uncond": 6.002807632471971e-09}, {"x": -9.710144927536232, "y": -4.492753623188405, "x2": -9.420289855072465, "y2": -4.202898550724638, "center_x": -9.565217391304348, "center_y": -4.3478260869565215, "value_uncond": 9.378739884287616e-09}, {"x": -9.420289855072463, "y": -4.492753623188405, "x2": -9.130434782608695, "y2": -4.202898550724638, "center_x": -9.275362318840578, "center_y": -4.3478260869565215, "value_uncond": 1.451711678380478e-08}, {"x": -9.130434782608695, "y": -4.492753623188405, "x2": -8.840579710144928, "y2": -4.202898550724638, "center_x": -8.985507246376812, "center_y": -4.3478260869565215, "value_uncond": 2.2261891645935698e-08}, {"x": -8.840579710144928, "y": -4.492753623188405, "x2": -8.55072463768116, "y2": -4.202898550724638, "center_x": -8.695652173913043, "center_y": -4.3478260869565215, "value_uncond": 3.382124365638135e-08}, {"x": -8.55072463768116, "y": -4.492753623188405, "x2": -8.260869565217392, "y2": -4.202898550724638, "center_x": -8.405797101449277, "center_y": -4.3478260869565215, "value_uncond": 5.0905287705900384e-08}, {"x": -8.26086956521739, "y": -4.492753623188405, "x2": -7.971014492753623, "y2": -4.202898550724638, "center_x": -8.115942028985508, "center_y": -4.3478260869565215, "value_uncond": 7.59070360829428e-08}, {"x": -7.971014492753623, "y": -4.492753623188405, "x2": -7.681159420289855, "y2": -4.202898550724638, "center_x": -7.826086956521739, "center_y": -4.3478260869565215, "value_uncond": 1.1213649726959334e-07}, {"x": -7.681159420289855, "y": -4.492753623188405, "x2": -7.391304347826088, "y2": -4.202898550724638, "center_x": -7.536231884057972, "center_y": -4.3478260869565215, "value_uncond": 1.641185808684942e-07}, {"x": -7.391304347826087, "y": -4.492753623188405, "x2": -7.101449275362319, "y2": -4.202898550724638, "center_x": -7.246376811594203, "center_y": -4.3478260869565215, "value_uncond": 2.379656842300335e-07}, {"x": -7.101449275362318, "y": -4.492753623188405, "x2": -6.811594202898551, "y2": -4.202898550724638, "center_x": -6.956521739130435, "center_y": -4.3478260869565215, "value_uncond": 3.418351595029395e-07}, {"x": -6.811594202898551, "y": -4.492753623188405, "x2": -6.521739130434783, "y2": -4.202898550724638, "center_x": -6.666666666666667, "center_y": -4.3478260869565215, "value_uncond": 4.86479944072979e-07}, {"x": -6.521739130434782, "y": -4.492753623188405, "x2": -6.231884057971015, "y2": -4.202898550724638, "center_x": -6.3768115942028984, "center_y": -4.3478260869565215, "value_uncond": 6.85897098017273e-07}, {"x": -6.231884057971014, "y": -4.492753623188405, "x2": -5.942028985507246, "y2": -4.202898550724638, "center_x": -6.08695652173913, "center_y": -4.3478260869565215, "value_uncond": 9.580734491734053e-07}, {"x": -5.942028985507246, "y": -4.492753623188405, "x2": -5.6521739130434785, "y2": -4.202898550724638, "center_x": -5.797101449275362, "center_y": -4.3478260869565215, "value_uncond": 1.325819672678501e-06}, {"x": -5.6521739130434785, "y": -4.492753623188405, "x2": -5.362318840579711, "y2": -4.202898550724638, "center_x": -5.507246376811595, "center_y": -4.3478260869565215, "value_uncond": 1.81767371651618e-06}, {"x": -5.36231884057971, "y": -4.492753623188405, "x2": -5.072463768115942, "y2": -4.202898550724638, "center_x": -5.217391304347826, "center_y": -4.3478260869565215, "value_uncond": 2.4688415079817903e-06}, {"x": -5.0724637681159415, "y": -4.492753623188405, "x2": -4.782608695652174, "y2": -4.202898550724638, "center_x": -4.927536231884058, "center_y": -4.3478260869565215, "value_uncond": 3.3221275906039403e-06}, {"x": -4.782608695652174, "y": -4.492753623188405, "x2": -4.492753623188406, "y2": -4.202898550724638, "center_x": -4.63768115942029, "center_y": -4.3478260869565215, "value_uncond": 4.428791350264565e-06}, {"x": -4.492753623188405, "y": -4.492753623188405, "x2": -4.202898550724638, "y2": -4.202898550724638, "center_x": -4.3478260869565215, "center_y": -4.3478260869565215, "value_uncond": 5.8492468106773934e-06}, {"x": -4.202898550724638, "y": -4.492753623188405, "x2": -3.91304347826087, "y2": -4.202898550724638, "center_x": -4.057971014492754, "center_y": -4.3478260869565215, "value_uncond": 7.653507077953004e-06}, {"x": -3.913043478260869, "y": -4.492753623188405, "x2": -3.6231884057971016, "y2": -4.202898550724638, "center_x": -3.7681159420289854, "center_y": -4.3478260869565215, "value_uncond": 9.921260294568287e-06}, {"x": -3.6231884057971016, "y": -4.492753623188405, "x2": -3.333333333333334, "y2": -4.202898550724638, "center_x": -3.4782608695652177, "center_y": -4.3478260869565215, "value_uncond": 1.2741454692988741e-05}, {"x": -3.333333333333333, "y": -4.492753623188405, "x2": -3.0434782608695654, "y2": -4.202898550724638, "center_x": -3.1884057971014492, "center_y": -4.3478260869565215, "value_uncond": 1.621126850961822e-05}, {"x": -3.0434782608695645, "y": -4.492753623188405, "x2": -2.753623188405797, "y2": -4.202898550724638, "center_x": -2.8985507246376807, "center_y": -4.3478260869565215, "value_uncond": 2.0434348626731224e-05}, {"x": -2.753623188405797, "y": -4.492753623188405, "x2": -2.4637681159420293, "y2": -4.202898550724638, "center_x": -2.608695652173913, "center_y": -4.3478260869565215, "value_uncond": 2.551822206681418e-05}, {"x": -2.4637681159420284, "y": -4.492753623188405, "x2": -2.1739130434782608, "y2": -4.202898550724638, "center_x": -2.3188405797101446, "center_y": -4.3478260869565215, "value_uncond": 3.157081846080717e-05}, {"x": -2.1739130434782608, "y": -4.492753623188405, "x2": -1.8840579710144931, "y2": -4.202898550724638, "center_x": -2.028985507246377, "center_y": -4.3478260869565215, "value_uncond": 3.869608995530632e-05}, {"x": -1.8840579710144922, "y": -4.492753623188405, "x2": -1.5942028985507246, "y2": -4.202898550724638, "center_x": -1.7391304347826084, "center_y": -4.3478260869565215, "value_uncond": 4.698877699526274e-05}, {"x": -1.5942028985507246, "y": -4.492753623188405, "x2": -1.304347826086957, "y2": -4.202898550724638, "center_x": -1.4492753623188408, "center_y": -4.3478260869565215, "value_uncond": 5.652844170681153e-05}, {"x": -1.304347826086957, "y": -4.492753623188405, "x2": -1.0144927536231894, "y2": -4.202898550724638, "center_x": -1.1594202898550732, "center_y": -4.3478260869565215, "value_uncond": 6.737297116537058e-05}, {"x": -1.0144927536231876, "y": -4.492753623188405, "x2": -0.72463768115942, "y2": -4.202898550724638, "center_x": -0.8695652173913038, "center_y": -4.3478260869565215, "value_uncond": 7.955183492813199e-05}, {"x": -0.72463768115942, "y": -4.492753623188405, "x2": -0.43478260869565233, "y2": -4.202898550724638, "center_x": -0.5797101449275361, "center_y": -4.3478260869565215, "value_uncond": 9.305945765838754e-05}, {"x": -0.43478260869565233, "y": -4.492753623188405, "x2": -0.1449275362318847, "y2": -4.202898550724638, "center_x": -0.2898550724637685, "center_y": -4.3478260869565215, "value_uncond": 0.00010784913033906096}, {"x": -0.14492753623188293, "y": -4.492753623188405, "x2": 0.1449275362318847, "y2": -4.202898550724638, "center_x": 8.881784197001252e-16, "center_y": -4.3478260869565215, "value_uncond": 0.0001238279240835204}, {"x": 0.1449275362318847, "y": -4.492753623188405, "x2": 0.43478260869565233, "y2": -4.202898550724638, "center_x": 0.2898550724637685, "center_y": -4.3478260869565215, "value_uncond": 0.0001408530811513238}, {"x": 0.43478260869565233, "y": -4.492753623188405, "x2": 0.72463768115942, "y2": -4.202898550724638, "center_x": 0.5797101449275361, "center_y": -4.3478260869565215, "value_uncond": 0.00015873033231027375}, {"x": 0.72463768115942, "y": -4.492753623188405, "x2": 1.0144927536231876, "y2": -4.202898550724638, "center_x": 0.8695652173913038, "center_y": -4.3478260869565215, "value_uncond": 0.00017721452454710887}, {"x": 1.0144927536231894, "y": -4.492753623188405, "x2": 1.304347826086957, "y2": -4.202898550724638, "center_x": 1.1594202898550732, "center_y": -4.3478260869565215, "value_uncond": 0.0001960128380658796}, {"x": 1.304347826086957, "y": -4.492753623188405, "x2": 1.5942028985507246, "y2": -4.202898550724638, "center_x": 1.4492753623188408, "center_y": -4.3478260869565215, "value_uncond": 0.0002147907301672421}, {"x": 1.5942028985507246, "y": -4.492753623188405, "x2": 1.8840579710144922, "y2": -4.202898550724638, "center_x": 1.7391304347826084, "center_y": -4.3478260869565215, "value_uncond": 0.00023318057366654825}, {"x": 1.884057971014494, "y": -4.492753623188405, "x2": 2.1739130434782616, "y2": -4.202898550724638, "center_x": 2.028985507246378, "center_y": -4.3478260869565215, "value_uncond": 0.0002507927704329367}, {"x": 2.1739130434782616, "y": -4.492753623188405, "x2": 2.4637681159420293, "y2": -4.202898550724638, "center_x": 2.3188405797101455, "center_y": -4.3478260869565215, "value_uncond": 0.0002672289308507321}, {"x": 2.4637681159420293, "y": -4.492753623188405, "x2": 2.753623188405797, "y2": -4.202898550724638, "center_x": 2.608695652173913, "center_y": -4.3478260869565215, "value_uncond": 0.0002820965337334932}, {"x": 2.753623188405797, "y": -4.492753623188405, "x2": 3.0434782608695645, "y2": -4.202898550724638, "center_x": 2.8985507246376807, "center_y": -4.3478260869565215, "value_uncond": 0.000295024334917117}, {"x": 3.0434782608695663, "y": -4.492753623188405, "x2": 3.333333333333334, "y2": -4.202898550724638, "center_x": 3.18840579710145, "center_y": -4.3478260869565215, "value_uncond": 0.00030567769140861566}, {"x": 3.333333333333334, "y": -4.492753623188405, "x2": 3.6231884057971016, "y2": -4.202898550724638, "center_x": 3.4782608695652177, "center_y": -4.3478260869565215, "value_uncond": 0.0003137729233999119}, {"x": 3.6231884057971016, "y": -4.492753623188405, "x2": 3.913043478260869, "y2": -4.202898550724638, "center_x": 3.7681159420289854, "center_y": -4.3478260869565215, "value_uncond": 0.00031908985588565455}, {"x": 3.913043478260871, "y": -4.492753623188405, "x2": 4.202898550724639, "y2": -4.202898550724638, "center_x": 4.057971014492755, "center_y": -4.3478260869565215, "value_uncond": 0.0003214817666246586}, {"x": 4.202898550724639, "y": -4.492753623188405, "x2": 4.492753623188406, "y2": -4.202898550724638, "center_x": 4.347826086956522, "center_y": -4.3478260869565215, "value_uncond": 0.0003208821132434606}, {"x": 4.492753623188406, "y": -4.492753623188405, "x2": 4.782608695652174, "y2": -4.202898550724638, "center_x": 4.63768115942029, "center_y": -4.3478260869565215, "value_uncond": 0.00031730760901551403}, {"x": 4.782608695652174, "y": -4.492753623188405, "x2": 5.0724637681159415, "y2": -4.202898550724638, "center_x": 4.927536231884058, "center_y": -4.3478260869565215, "value_uncond": 0.0003108574488905761}, {"x": 5.072463768115943, "y": -4.492753623188405, "x2": 5.362318840579711, "y2": -4.202898550724638, "center_x": 5.217391304347827, "center_y": -4.3478260869565215, "value_uncond": 0.00030170873579742915}, {"x": 5.362318840579711, "y": -4.492753623188405, "x2": 5.6521739130434785, "y2": -4.202898550724638, "center_x": 5.507246376811595, "center_y": -4.3478260869565215, "value_uncond": 0.0002901084015476537}, {"x": 5.6521739130434785, "y": -4.492753623188405, "x2": 5.942028985507246, "y2": -4.202898550724638, "center_x": 5.797101449275362, "center_y": -4.3478260869565215, "value_uncond": 0.0002763621366955009}, {"x": 5.942028985507246, "y": -4.492753623188405, "x2": 6.231884057971014, "y2": -4.202898550724638, "center_x": 6.08695652173913, "center_y": -4.3478260869565215, "value_uncond": 0.00026082102176564175}, {"x": 6.2318840579710155, "y": -4.492753623188405, "x2": 6.521739130434783, "y2": -4.202898550724638, "center_x": 6.376811594202899, "center_y": -4.3478260869565215, "value_uncond": 0.00024386667482613364}, {"x": 6.521739130434785, "y": -4.492753623188405, "x2": 6.8115942028985526, "y2": -4.202898550724638, "center_x": 6.666666666666669, "center_y": -4.3478260869565215, "value_uncond": 0.00022589578935435225}, {"x": 6.811594202898551, "y": -4.492753623188405, "x2": 7.101449275362318, "y2": -4.202898550724638, "center_x": 6.956521739130435, "center_y": -4.3478260869565215, "value_uncond": 0.00020730492965299356}, {"x": 7.10144927536232, "y": -4.492753623188405, "x2": 7.391304347826088, "y2": -4.202898550724638, "center_x": 7.246376811594204, "center_y": -4.3478260869565215, "value_uncond": 0.00018847638264041263}, {"x": 7.391304347826086, "y": -4.492753623188405, "x2": 7.681159420289854, "y2": -4.202898550724638, "center_x": 7.53623188405797, "center_y": -4.3478260869565215, "value_uncond": 0.0001697657438757553}, {"x": 7.681159420289855, "y": -4.492753623188405, "x2": 7.971014492753623, "y2": -4.202898550724638, "center_x": 7.826086956521739, "center_y": -4.3478260869565215, "value_uncond": 0.00015149175546875064}, {"x": 7.971014492753625, "y": -4.492753623188405, "x2": 8.260869565217392, "y2": -4.202898550724638, "center_x": 8.115942028985508, "center_y": -4.3478260869565215, "value_uncond": 0.00013392872985047388}, {"x": 8.26086956521739, "y": -4.492753623188405, "x2": 8.550724637681158, "y2": -4.202898550724638, "center_x": 8.405797101449274, "center_y": -4.3478260869565215, "value_uncond": 0.00011730170280492166}, {"x": 8.55072463768116, "y": -4.492753623188405, "x2": 8.840579710144928, "y2": -4.202898550724638, "center_x": 8.695652173913043, "center_y": -4.3478260869565215, "value_uncond": 0.00010178427735403919}, {"x": 8.84057971014493, "y": -4.492753623188405, "x2": 9.130434782608697, "y2": -4.202898550724638, "center_x": 8.985507246376812, "center_y": -4.3478260869565215, "value_uncond": 8.74989604135519e-05}, {"x": 9.130434782608695, "y": -4.492753623188405, "x2": 9.420289855072463, "y2": -4.202898550724638, "center_x": 9.275362318840578, "center_y": -4.3478260869565215, "value_uncond": 7.451966660635891e-05}, {"x": 9.420289855072465, "y": -4.492753623188405, "x2": 9.710144927536232, "y2": -4.202898550724638, "center_x": 9.565217391304348, "center_y": -4.3478260869565215, "value_uncond": 6.287597431574483e-05}, {"x": 9.710144927536234, "y": -4.492753623188405, "x2": 10.000000000000002, "y2": -4.202898550724638, "center_x": 9.855072463768117, "center_y": -4.3478260869565215, "value_uncond": 5.25586700243223e-05}, {"x": 10.0, "y": -4.492753623188405, "x2": 10.289855072463768, "y2": -4.202898550724638, "center_x": 10.144927536231883, "center_y": -4.3478260869565215, "value_uncond": 4.3526106540421027e-05}, {"x": -10.0, "y": -4.202898550724638, "x2": -9.710144927536232, "y2": -3.91304347826087, "center_x": -9.855072463768117, "center_y": -4.057971014492754, "value_uncond": 7.85443531273968e-09}, {"x": -9.710144927536232, "y": -4.202898550724638, "x2": -9.420289855072465, "y2": -3.91304347826087, "center_x": -9.565217391304348, "center_y": -4.057971014492754, "value_uncond": 1.2271708548123759e-08}, {"x": -9.420289855072463, "y": -4.202898550724638, "x2": -9.130434782608695, "y2": -3.91304347826087, "center_x": -9.275362318840578, "center_y": -4.057971014492754, "value_uncond": 1.8995070588148614e-08}, {"x": -9.130434782608695, "y": -4.202898550724638, "x2": -8.840579710144928, "y2": -3.91304347826087, "center_x": -8.985507246376812, "center_y": -4.057971014492754, "value_uncond": 2.912880081752954e-08}, {"x": -8.840579710144928, "y": -4.202898550724638, "x2": -8.55072463768116, "y2": -3.91304347826087, "center_x": -8.695652173913043, "center_y": -4.057971014492754, "value_uncond": 4.425375370325845e-08}, {"x": -8.55072463768116, "y": -4.202898550724638, "x2": -8.260869565217392, "y2": -3.91304347826087, "center_x": -8.405797101449277, "center_y": -4.057971014492754, "value_uncond": 6.660754664192793e-08}, {"x": -8.26086956521739, "y": -4.202898550724638, "x2": -7.971014492753623, "y2": -3.91304347826087, "center_x": -8.115942028985508, "center_y": -4.057971014492754, "value_uncond": 9.932134114545186e-08}, {"x": -7.971014492753623, "y": -4.202898550724638, "x2": -7.681159420289855, "y2": -3.91304347826087, "center_x": -7.826086956521739, "center_y": -4.057971014492754, "value_uncond": 1.467261518154846e-07}, {"x": -7.681159420289855, "y": -4.202898550724638, "x2": -7.391304347826088, "y2": -3.91304347826087, "center_x": -7.536231884057972, "center_y": -4.057971014492754, "value_uncond": 2.1474264310538774e-07}, {"x": -7.391304347826087, "y": -4.202898550724638, "x2": -7.101449275362319, "y2": -3.91304347826087, "center_x": -7.246376811594203, "center_y": -4.057971014492754, "value_uncond": 3.113686441201083e-07}, {"x": -7.101449275362318, "y": -4.202898550724638, "x2": -6.811594202898551, "y2": -3.91304347826087, "center_x": -6.956521739130435, "center_y": -4.057971014492754, "value_uncond": 4.4727772607802706e-07}, {"x": -6.811594202898551, "y": -4.202898550724638, "x2": -6.521739130434783, "y2": -3.91304347826087, "center_x": -6.666666666666667, "center_y": -4.057971014492754, "value_uncond": 6.365396803650244e-07}, {"x": -6.521739130434782, "y": -4.202898550724638, "x2": -6.231884057971015, "y2": -3.91304347826087, "center_x": -6.3768115942028984, "center_y": -4.057971014492754, "value_uncond": 8.974691040289142e-07}, {"x": -6.231884057971014, "y": -4.202898550724638, "x2": -5.942028985507246, "y2": -3.91304347826087, "center_x": -6.08695652173913, "center_y": -4.057971014492754, "value_uncond": 1.2536010467300358e-06}, {"x": -5.942028985507246, "y": -4.202898550724638, "x2": -5.6521739130434785, "y2": -3.91304347826087, "center_x": -5.797101449275362, "center_y": -4.057971014492754, "value_uncond": 1.7347823706825448e-06}, {"x": -5.6521739130434785, "y": -4.202898550724638, "x2": -5.362318840579711, "y2": -3.91304347826087, "center_x": -5.507246376811595, "center_y": -4.057971014492754, "value_uncond": 2.3783538470920915e-06}, {"x": -5.36231884057971, "y": -4.202898550724638, "x2": -5.072463768115942, "y2": -3.91304347826087, "center_x": -5.217391304347826, "center_y": -4.057971014492754, "value_uncond": 3.230381033194009e-06}, {"x": -5.0724637681159415, "y": -4.202898550724638, "x2": -4.782608695652174, "y2": -3.91304347826087, "center_x": -4.927536231884058, "center_y": -4.057971014492754, "value_uncond": 4.346871973693597e-06}, {"x": -4.782608695652174, "y": -4.202898550724638, "x2": -4.492753623188406, "y2": -3.91304347826087, "center_x": -4.63768115942029, "center_y": -4.057971014492754, "value_uncond": 5.794897538628808e-06}, {"x": -4.492753623188405, "y": -4.202898550724638, "x2": -4.202898550724638, "y2": -3.91304347826087, "center_x": -4.3478260869565215, "center_y": -4.057971014492754, "value_uncond": 7.653507077953004e-06}, {"x": -4.202898550724638, "y": -4.202898550724638, "x2": -3.91304347826087, "y2": -3.91304347826087, "center_x": -4.057971014492754, "center_y": -4.057971014492754, "value_uncond": 1.0014309959591713e-05}, {"x": -3.913043478260869, "y": -4.202898550724638, "x2": -3.6231884057971016, "y2": -3.91304347826087, "center_x": -3.7681159420289854, "center_y": -4.057971014492754, "value_uncond": 1.2981574952194378e-05}, {"x": -3.6231884057971016, "y": -4.202898550724638, "x2": -3.333333333333334, "y2": -3.91304347826087, "center_x": -3.4782608695652177, "center_y": -4.057971014492754, "value_uncond": 1.667168728428361e-05}, {"x": -3.333333333333333, "y": -4.202898550724638, "x2": -3.0434782608695654, "y2": -3.91304347826087, "center_x": -3.1884057971014492, "center_y": -4.057971014492754, "value_uncond": 2.1211800817580984e-05}, {"x": -3.0434782608695645, "y": -4.202898550724638, "x2": -2.753623188405797, "y2": -3.91304347826087, "center_x": -2.8985507246376807, "center_y": -4.057971014492754, "value_uncond": 2.6737533379948934e-05}, {"x": -2.753623188405797, "y": -4.202898550724638, "x2": -2.4637681159420293, "y2": -3.91304347826087, "center_x": -2.608695652173913, "center_y": -4.057971014492754, "value_uncond": 3.33895798085704e-05}, {"x": -2.4637681159420284, "y": -4.202898550724638, "x2": -2.1739130434782608, "y2": -3.91304347826087, "center_x": -2.3188405797101446, "center_y": -4.057971014492754, "value_uncond": 4.130916173779552e-05}, {"x": -2.1739130434782608, "y": -4.202898550724638, "x2": -1.8840579710144931, "y2": -3.91304347826087, "center_x": -2.028985507246377, "center_y": -4.057971014492754, "value_uncond": 5.063229642172422e-05}, {"x": -1.8840579710144922, "y": -4.202898550724638, "x2": -1.5942028985507246, "y2": -3.91304347826087, "center_x": -1.7391304347826084, "center_y": -4.057971014492754, "value_uncond": 6.148294796880874e-05}, {"x": -1.5942028985507246, "y": -4.202898550724638, "x2": -1.304347826086957, "y2": -3.91304347826087, "center_x": -1.4492753623188408, "center_y": -4.057971014492754, "value_uncond": 7.396522026032139e-05}, {"x": -1.304347826086957, "y": -4.202898550724638, "x2": -1.0144927536231894, "y2": -3.91304347826087, "center_x": -1.1594202898550732, "center_y": -4.057971014492754, "value_uncond": 8.815485623475879e-05}, {"x": -1.0144927536231876, "y": -4.202898550724638, "x2": -0.72463768115942, "y2": -3.91304347826087, "center_x": -0.8695652173913038, "center_y": -4.057971014492754, "value_uncond": 0.0001040904156369658}, {"x": -0.72463768115942, "y": -4.202898550724638, "x2": -0.43478260869565233, "y2": -3.91304347826087, "center_x": -0.5797101449275361, "center_y": -4.057971014492754, "value_uncond": 0.00012176460336035191}, {"x": -0.43478260869565233, "y": -4.202898550724638, "x2": -0.1449275362318847, "y2": -3.91304347826087, "center_x": -0.2898550724637685, "center_y": -4.057971014492754, "value_uncond": 0.0001411163025116883}, {"x": -0.14492753623188293, "y": -4.202898550724638, "x2": 0.1449275362318847, "y2": -3.91304347826087, "center_x": 8.881784197001252e-16, "center_y": -4.057971014492754, "value_uncond": 0.00016202391933461542}, {"x": 0.1449275362318847, "y": -4.202898550724638, "x2": 0.43478260869565233, "y2": -3.91304347826087, "center_x": 0.2898550724637685, "center_y": -4.057971014492754, "value_uncond": 0.00018430066099712087}, {"x": 0.43478260869565233, "y": -4.202898550724638, "x2": 0.72463768115942, "y2": -3.91304347826087, "center_x": 0.5797101449275361, "center_y": -4.057971014492754, "value_uncond": 0.00020769233392663476}, {"x": 0.72463768115942, "y": -4.202898550724638, "x2": 1.0144927536231876, "y2": -3.91304347826087, "center_x": 0.8695652173913038, "center_y": -4.057971014492754, "value_uncond": 0.00023187816514453103}, {"x": 1.0144927536231894, "y": -4.202898550724638, "x2": 1.304347826086957, "y2": -3.91304347826087, "center_x": 1.1594202898550732, "center_y": -4.057971014492754, "value_uncond": 0.0002564750115807015}, {"x": 1.304347826086957, "y": -4.202898550724638, "x2": 1.5942028985507246, "y2": -3.91304347826087, "center_x": 1.4492753623188408, "center_y": -4.057971014492754, "value_uncond": 0.0002810451374034776}, {"x": 1.5942028985507246, "y": -4.202898550724638, "x2": 1.8840579710144922, "y2": -3.91304347826087, "center_x": 1.7391304347826084, "center_y": -4.057971014492754, "value_uncond": 0.00030510751704652234}, {"x": 1.884057971014494, "y": -4.202898550724638, "x2": 2.1739130434782616, "y2": -3.91304347826087, "center_x": 2.028985507246378, "center_y": -4.057971014492754, "value_uncond": 0.000328152376833221}, {"x": 2.1739130434782616, "y": -4.202898550724638, "x2": 2.4637681159420293, "y2": -3.91304347826087, "center_x": 2.3188405797101455, "center_y": -4.057971014492754, "value_uncond": 0.00034965843977834024}, {"x": 2.4637681159420293, "y": -4.202898550724638, "x2": 2.753623188405797, "y2": -3.91304347826087, "center_x": 2.608695652173913, "center_y": -4.057971014492754, "value_uncond": 0.0003691121075031647}, {"x": 2.753623188405797, "y": -4.202898550724638, "x2": 3.0434782608695645, "y2": -3.91304347826087, "center_x": 2.8985507246376807, "center_y": -4.057971014492754, "value_uncond": 0.0003860276217674322}, {"x": 3.0434782608695663, "y": -4.202898550724638, "x2": 3.333333333333334, "y2": -3.91304347826087, "center_x": 3.18840579710145, "center_y": -4.057971014492754, "value_uncond": 0.0003999671155092253}, {"x": 3.333333333333334, "y": -4.202898550724638, "x2": 3.6231884057971016, "y2": -3.91304347826087, "center_x": 3.4782608695652177, "center_y": -4.057971014492754, "value_uncond": 0.0004105594049694614}, {"x": 3.6231884057971016, "y": -4.202898550724638, "x2": 3.913043478260869, "y2": -3.91304347826087, "center_x": 3.7681159420289854, "center_y": -4.057971014492754, "value_uncond": 0.00041751639990056063}, {"x": 3.913043478260871, "y": -4.202898550724638, "x2": 4.202898550724639, "y2": -3.91304347826087, "center_x": 4.057971014492755, "center_y": -4.057971014492754, "value_uncond": 0.0004206461200787862}, {"x": 4.202898550724639, "y": -4.202898550724638, "x2": 4.492753623188406, "y2": -3.91304347826087, "center_x": 4.347826086956522, "center_y": -4.057971014492754, "value_uncond": 0.0004198614974519994}, {"x": 4.492753623188406, "y": -4.202898550724638, "x2": 4.782608695652174, "y2": -3.91304347826087, "center_x": 4.63768115942029, "center_y": -4.057971014492754, "value_uncond": 0.0004151844006745436}, {"x": 4.782608695652174, "y": -4.202898550724638, "x2": 5.0724637681159415, "y2": -3.91304347826087, "center_x": 4.927536231884058, "center_y": -4.057971014492754, "value_uncond": 0.00040674462239744533}, {"x": 5.072463768115943, "y": -4.202898550724638, "x2": 5.362318840579711, "y2": -3.91304347826087, "center_x": 5.217391304347827, "center_y": -4.057971014492754, "value_uncond": 0.0003947738947672235}, {"x": 5.362318840579711, "y": -4.202898550724638, "x2": 5.6521739130434785, "y2": -3.91304347826087, "center_x": 5.507246376811595, "center_y": -4.057971014492754, "value_uncond": 0.0003795953182494388}, {"x": 5.6521739130434785, "y": -4.202898550724638, "x2": 5.942028985507246, "y2": -3.91304347826087, "center_x": 5.797101449275362, "center_y": -4.057971014492754, "value_uncond": 0.00036160887679011775}, {"x": 5.942028985507246, "y": -4.202898550724638, "x2": 6.231884057971014, "y2": -3.91304347826087, "center_x": 6.08695652173913, "center_y": -4.057971014492754, "value_uncond": 0.0003412739453083699}, {"x": 6.2318840579710155, "y": -4.202898550724638, "x2": 6.521739130434783, "y2": -3.91304347826087, "center_x": 6.376811594202899, "center_y": -4.057971014492754, "value_uncond": 0.0003190898558856549}, {"x": 6.521739130434785, "y": -4.202898550724638, "x2": 6.8115942028985526, "y2": -3.91304347826087, "center_x": 6.666666666666669, "center_y": -4.057971014492754, "value_uncond": 0.00029557566617762447}, {"x": 6.811594202898551, "y": -4.202898550724638, "x2": 7.101449275362318, "y2": -3.91304347826087, "center_x": 6.956521739130435, "center_y": -4.057971014492754, "value_uncond": 0.0002712502648199919}, {"x": 7.10144927536232, "y": -4.202898550724638, "x2": 7.391304347826088, "y2": -3.91304347826087, "center_x": 7.246376811594204, "center_y": -4.057971014492754, "value_uncond": 0.0002466138590582607}, {"x": 7.391304347826086, "y": -4.202898550724638, "x2": 7.681159420289854, "y2": -3.91304347826087, "center_x": 7.53623188405797, "center_y": -4.057971014492754, "value_uncond": 0.00022213173155478084}, {"x": 7.681159420289855, "y": -4.202898550724638, "x2": 7.971014492753623, "y2": -3.91304347826087, "center_x": 7.826086956521739, "center_y": -4.057971014492754, "value_uncond": 0.0001982209436974218}, {"x": 7.971014492753625, "y": -4.202898550724638, "x2": 8.260869565217392, "y2": -3.91304347826087, "center_x": 8.115942028985508, "center_y": -4.057971014492754, "value_uncond": 0.00017524042240459845}, {"x": 8.26086956521739, "y": -4.202898550724638, "x2": 8.550724637681158, "y2": -3.91304347826087, "center_x": 8.405797101449274, "center_y": -4.057971014492754, "value_uncond": 0.00015348461805964338}, {"x": 8.55072463768116, "y": -4.202898550724638, "x2": 8.840579710144928, "y2": -3.91304347826087, "center_x": 8.695652173913043, "center_y": -4.057971014492754, "value_uncond": 0.0001331806833200212}, {"x": 8.84057971014493, "y": -4.202898550724638, "x2": 9.130434782608697, "y2": -3.91304347826087, "center_x": 8.985507246376812, "center_y": -4.057971014492754, "value_uncond": 0.00011448891361810995}, {"x": 9.130434782608695, "y": -4.202898550724638, "x2": 9.420289855072463, "y2": -3.91304347826087, "center_x": 9.275362318840578, "center_y": -4.057971014492754, "value_uncond": 9.750602330155659e-05}, {"x": 9.420289855072465, "y": -4.202898550724638, "x2": 9.710144927536232, "y2": -3.91304347826087, "center_x": 9.565217391304348, "center_y": -4.057971014492754, "value_uncond": 8.227071450982501e-05}, {"x": 9.710144927536234, "y": -4.202898550724638, "x2": 10.000000000000002, "y2": -3.91304347826087, "center_x": 9.855072463768117, "center_y": -4.057971014492754, "value_uncond": 6.877093172144017e-05}, {"x": 10.0, "y": -4.202898550724638, "x2": 10.289855072463768, "y2": -3.91304347826087, "center_x": 10.144927536231883, "center_y": -4.057971014492754, "value_uncond": 5.695218124062533e-05}, {"x": -10.0, "y": -3.913043478260869, "x2": -9.710144927536232, "y2": -3.6231884057971016, "center_x": -9.855072463768117, "center_y": -3.7681159420289854, "value_uncond": 1.0181724065953475e-08}, {"x": -9.710144927536232, "y": -3.913043478260869, "x2": -9.420289855072465, "y2": -3.6231884057971016, "center_x": -9.565217391304348, "center_y": -3.7681159420289854, "value_uncond": 1.5907846367024987e-08}, {"x": -9.420289855072463, "y": -3.913043478260869, "x2": -9.130434782608695, "y2": -3.6231884057971016, "center_x": -9.275362318840578, "center_y": -3.7681159420289854, "value_uncond": 2.4623357331384997e-08}, {"x": -9.130434782608695, "y": -3.913043478260869, "x2": -8.840579710144928, "y2": -3.6231884057971016, "center_x": -8.985507246376812, "center_y": -3.7681159420289854, "value_uncond": 3.775973707685375e-08}, {"x": -8.840579710144928, "y": -3.913043478260869, "x2": -8.55072463768116, "y2": -3.6231884057971016, "center_x": -8.695652173913043, "center_y": -3.7681159420289854, "value_uncond": 5.736625118783737e-08}, {"x": -8.55072463768116, "y": -3.913043478260869, "x2": -8.260869565217392, "y2": -3.6231884057971016, "center_x": -8.405797101449277, "center_y": -3.7681159420289854, "value_uncond": 8.634352867076865e-08}, {"x": -8.26086956521739, "y": -3.913043478260869, "x2": -7.971014492753623, "y2": -3.6231884057971016, "center_x": -8.115942028985508, "center_y": -3.7681159420289854, "value_uncond": 1.287505019951189e-07}, {"x": -7.971014492753623, "y": -3.913043478260869, "x2": -7.681159420289855, "y2": -3.6231884057971016, "center_x": -7.826086956521739, "center_y": -3.7681159420289854, "value_uncond": 1.902014761801341e-07}, {"x": -7.681159420289855, "y": -3.913043478260869, "x2": -7.391304347826088, "y2": -3.6231884057971016, "center_x": -7.536231884057972, "center_y": -3.7681159420289854, "value_uncond": 2.783714233085887e-07}, {"x": -7.391304347826087, "y": -3.913043478260869, "x2": -7.101449275362319, "y2": -3.6231884057971016, "center_x": -7.246376811594203, "center_y": -3.7681159420289854, "value_uncond": 4.036279491765524e-07}, {"x": -7.101449275362318, "y": -3.913043478260869, "x2": -6.811594202898551, "y2": -3.6231884057971016, "center_x": -6.956521739130435, "center_y": -3.7681159420289854, "value_uncond": 5.798072307485984e-07}, {"x": -6.811594202898551, "y": -3.913043478260869, "x2": -6.521739130434783, "y2": -3.6231884057971016, "center_x": -6.666666666666667, "center_y": -3.7681159420289854, "value_uncond": 8.25147973654423e-07}, {"x": -6.521739130434782, "y": -3.913043478260869, "x2": -6.231884057971015, "y2": -3.6231884057971016, "center_x": -6.3768115942028984, "center_y": -3.7681159420289854, "value_uncond": 1.1633914356796153e-06}, {"x": -6.231884057971014, "y": -3.913043478260869, "x2": -5.942028985507246, "y2": -3.6231884057971016, "center_x": -6.08695652173913, "center_y": -3.7681159420289854, "value_uncond": 1.625046160338616e-06}, {"x": -5.942028985507246, "y": -3.913043478260869, "x2": -5.6521739130434785, "y2": -3.6231884057971016, "center_x": -5.797101449275362, "center_y": -3.7681159420289854, "value_uncond": 2.248802709485845e-06}, {"x": -5.6521739130434785, "y": -3.913043478260869, "x2": -5.362318840579711, "y2": -3.6231884057971016, "center_x": -5.507246376811595, "center_y": -3.7681159420289854, "value_uncond": 3.0830660178731517e-06}, {"x": -5.36231884057971, "y": -3.913043478260869, "x2": -5.072463768115942, "y2": -3.6231884057971016, "center_x": -5.217391304347826, "center_y": -3.7681159420289854, "value_uncond": 4.187550982121279e-06}, {"x": -5.0724637681159415, "y": -3.913043478260869, "x2": -4.782608695652174, "y2": -3.6231884057971016, "center_x": -4.927536231884058, "center_y": -3.7681159420289854, "value_uncond": 5.634860970130909e-06}, {"x": -4.782608695652174, "y": -3.913043478260869, "x2": -4.492753623188406, "y2": -3.6231884057971016, "center_x": -4.63768115942029, "center_y": -3.7681159420289854, "value_uncond": 7.511940117845491e-06}, {"x": -4.492753623188405, "y": -3.913043478260869, "x2": -4.202898550724638, "y2": -3.6231884057971016, "center_x": -4.3478260869565215, "center_y": -3.7681159420289854, "value_uncond": 9.921260294568287e-06}, {"x": -4.202898550724638, "y": -3.913043478260869, "x2": -3.91304347826087, "y2": -3.6231884057971016, "center_x": -4.057971014492754, "center_y": -3.7681159420289854, "value_uncond": 1.2981574952194378e-05}, {"x": -3.913043478260869, "y": -3.913043478260869, "x2": -3.6231884057971016, "y2": -3.6231884057971016, "center_x": -3.7681159420289854, "center_y": -3.7681159420289854, "value_uncond": 1.6828047955319243e-05}, {"x": -3.6231884057971016, "y": -3.913043478260869, "x2": -3.333333333333334, "y2": -3.6231884057971016, "center_x": -3.4782608695652177, "center_y": -3.7681159420289854, "value_uncond": 2.1611549765661293e-05}, {"x": -3.333333333333333, "y": -3.913043478260869, "x2": -3.0434782608695654, "y2": -3.6231884057971016, "center_x": -3.1884057971014492, "center_y": -3.7681159420289854, "value_uncond": 2.7496910250985696e-05}, {"x": -3.0434782608695645, "y": -3.913043478260869, "x2": -2.753623188405797, "y2": -3.6231884057971016, "center_x": -2.8985507246376807, "center_y": -3.7681159420289854, "value_uncond": 3.4659931139454876e-05}, {"x": -2.753623188405797, "y": -3.913043478260869, "x2": -2.4637681159420293, "y2": -3.6231884057971016, "center_x": -2.608695652173913, "center_y": -3.7681159420289854, "value_uncond": 4.328299549906327e-05}, {"x": -2.4637681159420284, "y": -3.913043478260869, "x2": -2.1739130434782608, "y2": -3.6231884057971016, "center_x": -2.3188405797101446, "center_y": -3.7681159420289854, "value_uncond": 5.354916928628562e-05}, {"x": -2.1739130434782608, "y": -3.913043478260869, "x2": -1.8840579710144931, "y2": -3.6231884057971016, "center_x": -2.028985507246377, "center_y": -3.7681159420289854, "value_uncond": 6.563477200651124e-05}, {"x": -1.8840579710144922, "y": -3.913043478260869, "x2": -1.5942028985507246, "y2": -3.6231884057971016, "center_x": -1.7391304347826084, "center_y": -3.7681159420289854, "value_uncond": 7.97004986423945e-05}, {"x": -1.5942028985507246, "y": -3.913043478260869, "x2": -1.304347826086957, "y2": -3.6231884057971016, "center_x": -1.4492753623188408, "center_y": -3.7681159420289854, "value_uncond": 9.588129931461353e-05}, {"x": -1.304347826086957, "y": -3.913043478260869, "x2": -1.0144927536231894, "y2": -3.6231884057971016, "center_x": -1.1594202898550732, "center_y": -3.7681159420289854, "value_uncond": 0.0001142753597830617}, {"x": -1.0144927536231876, "y": -3.913043478260869, "x2": -0.72463768115942, "y2": -3.6231884057971016, "center_x": -0.8695652173913038, "center_y": -3.7681159420289854, "value_uncond": 0.0001349326651410567}, {"x": -0.72463768115942, "y": -3.913043478260869, "x2": -0.43478260869565233, "y2": -3.6231884057971016, "center_x": -0.5797101449275361, "center_y": -3.7681159420289854, "value_uncond": 0.0001578437587237487}, {"x": -0.43478260869565233, "y": -3.913043478260869, "x2": -0.1449275362318847, "y2": -3.6231884057971016, "center_x": -0.2898550724637685, "center_y": -3.7681159420289854, "value_uncond": 0.00018292941455016692}, {"x": -0.14492753623188293, "y": -3.913043478260869, "x2": 0.1449275362318847, "y2": -3.6231884057971016, "center_x": 8.881784197001252e-16, "center_y": -3.7681159420289854, "value_uncond": 0.00021003201033098035}, {"x": 0.1449275362318847, "y": -3.913043478260869, "x2": 0.43478260869565233, "y2": -3.6231884057971016, "center_x": 0.2898550724637685, "center_y": -3.7681159420289854, "value_uncond": 0.00023890940605263985}, {"x": 0.43478260869565233, "y": -3.913043478260869, "x2": 0.72463768115942, "y2": -3.6231884057971016, "center_x": 0.5797101449275361, "center_y": -3.7681159420289854, "value_uncond": 0.0002692320899536763}, {"x": 0.72463768115942, "y": -3.913043478260869, "x2": 1.0144927536231876, "y2": -3.6231884057971016, "center_x": 0.8695652173913038, "center_y": -3.7681159420289854, "value_uncond": 0.00030058424322266115}, {"x": 1.0144927536231894, "y": -3.913043478260869, "x2": 1.304347826086957, "y2": -3.6231884057971016, "center_x": 1.1594202898550732, "center_y": -3.7681159420289854, "value_uncond": 0.0003324691965431773}, {"x": 1.304347826086957, "y": -3.913043478260869, "x2": 1.5942028985507246, "y2": -3.6231884057971016, "center_x": 1.4492753623188408, "center_y": -3.7681159420289854, "value_uncond": 0.00036431951186597375}, {"x": 1.5942028985507246, "y": -3.913043478260869, "x2": 1.8840579710144922, "y2": -3.6231884057971016, "center_x": 1.7391304347826084, "center_y": -3.7681159420289854, "value_uncond": 0.00039551163455088756}, {"x": 1.884057971014494, "y": -3.913043478260869, "x2": 2.1739130434782616, "y2": -3.6231884057971016, "center_x": 2.028985507246378, "center_y": -3.7681159420289854, "value_uncond": 0.00042538474371077597}, {"x": 2.1739130434782616, "y": -3.913043478260869, "x2": 2.4637681159420293, "y2": -3.6231884057971016, "center_x": 2.3188405797101455, "center_y": -3.7681159420289854, "value_uncond": 0.00045326310669087074}, {"x": 2.4637681159420293, "y": -3.913043478260869, "x2": 2.753623188405797, "y2": -3.6231884057971016, "center_x": 2.608695652173913, "center_y": -3.7681159420289854, "value_uncond": 0.0004784809446331656}, {"x": 2.753623188405797, "y": -3.913043478260869, "x2": 3.0434782608695645, "y2": -3.6231884057971016, "center_x": 2.8985507246376807, "center_y": -3.7681159420289854, "value_uncond": 0.0005004085679204973}, {"x": 3.0434782608695663, "y": -3.913043478260869, "x2": 3.333333333333334, "y2": -3.6231884057971016, "center_x": 3.18840579710145, "center_y": -3.7681159420289854, "value_uncond": 0.0005184783683895163}, {"x": 3.333333333333334, "y": -3.913043478260869, "x2": 3.6231884057971016, "y2": -3.6231884057971016, "center_x": 3.4782608695652177, "center_y": -3.7681159420289854, "value_uncond": 0.0005322091796084853}, {"x": 3.6231884057971016, "y": -3.913043478260869, "x2": 3.913043478260869, "y2": -3.6231884057971016, "center_x": 3.7681159420289854, "center_y": -3.7681159420289854, "value_uncond": 0.0005412275494716628}, {"x": 3.913043478260871, "y": -3.913043478260869, "x2": 4.202898550724639, "y2": -3.6231884057971016, "center_x": 4.057971014492755, "center_y": -3.7681159420289854, "value_uncond": 0.0005452846135366828}, {"x": 4.202898550724639, "y": -3.913043478260869, "x2": 4.492753623188406, "y2": -3.6231884057971016, "center_x": 4.347826086956522, "center_y": -3.7681159420289854, "value_uncond": 0.0005442675052706195}, {"x": 4.492753623188406, "y": -3.913043478260869, "x2": 4.782608695652174, "y2": -3.6231884057971016, "center_x": 4.63768115942029, "center_y": -3.7681159420289854, "value_uncond": 0.000538204573064586}, {"x": 4.782608695652174, "y": -3.913043478260869, "x2": 5.0724637681159415, "y2": -3.6231884057971016, "center_x": 4.927536231884058, "center_y": -3.7681159420289854, "value_uncond": 0.0005272640674554986}, {"x": 5.072463768115943, "y": -3.913043478260869, "x2": 5.362318840579711, "y2": -3.6231884057971016, "center_x": 5.217391304347827, "center_y": -3.7681159420289854, "value_uncond": 0.0005117463834022716}, {"x": 5.362318840579711, "y": -3.913043478260869, "x2": 5.6521739130434785, "y2": -3.6231884057971016, "center_x": 5.507246376811595, "center_y": -3.7681159420289854, "value_uncond": 0.0004920703568434459}, {"x": 5.6521739130434785, "y": -3.913043478260869, "x2": 5.942028985507246, "y2": -3.6231884057971016, "center_x": 5.797101449275362, "center_y": -3.7681159420289854, "value_uncond": 0.0004687544879648525}, {"x": 5.942028985507246, "y": -3.913043478260869, "x2": 6.231884057971014, "y2": -3.6231884057971016, "center_x": 6.08695652173913, "center_y": -3.7681159420289854, "value_uncond": 0.00044239426561870794}, {"x": 6.2318840579710155, "y": -3.913043478260869, "x2": 6.521739130434783, "y2": -3.6231884057971016, "center_x": 6.376811594202899, "center_y": -3.7681159420289854, "value_uncond": 0.0004136369752263406}, {"x": 6.521739130434785, "y": -3.913043478260869, "x2": 6.8115942028985526, "y2": -3.6231884057971016, "center_x": 6.666666666666669, "center_y": -3.7681159420289854, "value_uncond": 0.00038315547252005096}, {"x": 6.811594202898551, "y": -3.913043478260869, "x2": 7.101449275362318, "y2": -3.6231884057971016, "center_x": 6.956521739130435, "center_y": -3.7681159420289854, "value_uncond": 0.000351622394131174}, {"x": 7.10144927536232, "y": -3.913043478260869, "x2": 7.391304347826088, "y2": -3.6231884057971016, "center_x": 7.246376811594204, "center_y": -3.7681159420289854, "value_uncond": 0.00031968615995836775}, {"x": 7.391304347826086, "y": -3.913043478260869, "x2": 7.681159420289854, "y2": -3.6231884057971016, "center_x": 7.53623188405797, "center_y": -3.7681159420289854, "value_uncond": 0.0002879499170761312}, {"x": 7.681159420289855, "y": -3.913043478260869, "x2": 7.971014492753623, "y2": -3.6231884057971016, "center_x": 7.826086956521739, "center_y": -3.7681159420289854, "value_uncond": 0.00025695430320070645}, {"x": 7.971014492753625, "y": -3.913043478260869, "x2": 8.260869565217392, "y2": -3.6231884057971016, "center_x": 8.115942028985508, "center_y": -3.7681159420289854, "value_uncond": 0.00022716459619073407}, {"x": 8.26086956521739, "y": -3.913043478260869, "x2": 8.550724637681158, "y2": -3.6231884057971016, "center_x": 8.405797101449274, "center_y": -3.7681159420289854, "value_uncond": 0.00019896249281177862}, {"x": 8.55072463768116, "y": -3.913043478260869, "x2": 8.840579710144928, "y2": -3.6231884057971016, "center_x": 8.695652173913043, "center_y": -3.7681159420289854, "value_uncond": 0.00017264245161968284}, {"x": 8.84057971014493, "y": -3.913043478260869, "x2": 9.130434782608697, "y2": -3.6231884057971016, "center_x": 8.985507246376812, "center_y": -3.7681159420289854, "value_uncond": 0.00014841226398282917}, {"x": 9.130434782608695, "y": -3.913043478260869, "x2": 9.420289855072463, "y2": -3.6231884057971016, "center_x": 9.275362318840578, "center_y": -3.7681159420289854, "value_uncond": 0.00012639730095104576}, {"x": 9.420289855072465, "y": -3.913043478260869, "x2": 9.710144927536232, "y2": -3.6231884057971016, "center_x": 9.565217391304348, "center_y": -3.7681159420289854, "value_uncond": 0.00010664773220414889}, {"x": 9.710144927536234, "y": -3.913043478260869, "x2": 10.000000000000002, "y2": -3.6231884057971016, "center_x": 9.855072463768117, "center_y": -3.7681159420289854, "value_uncond": 8.914793013961349e-05}, {"x": 10.0, "y": -3.913043478260869, "x2": 10.289855072463768, "y2": -3.6231884057971016, "center_x": 10.144927536231883, "center_y": -3.7681159420289854, "value_uncond": 7.382725444382787e-05}, {"x": -10.0, "y": -3.6231884057971016, "x2": -9.710144927536232, "y2": -3.333333333333334, "center_x": -9.855072463768117, "center_y": -3.4782608695652177, "value_uncond": 1.3075957290817584e-08}, {"x": -9.710144927536232, "y": -3.6231884057971016, "x2": -9.420289855072465, "y2": -3.333333333333334, "center_x": -9.565217391304348, "center_y": -3.4782608695652177, "value_uncond": 2.0429773812047134e-08}, {"x": -9.420289855072463, "y": -3.6231884057971016, "x2": -9.130434782608695, "y2": -3.333333333333334, "center_x": -9.275362318840578, "center_y": -3.4782608695652177, "value_uncond": 3.16227356718863e-08}, {"x": -9.130434782608695, "y": -3.6231884057971016, "x2": -8.840579710144928, "y2": -3.333333333333334, "center_x": -8.985507246376812, "center_y": -3.4782608695652177, "value_uncond": 4.8493232200278026e-08}, {"x": -8.840579710144928, "y": -3.6231884057971016, "x2": -8.55072463768116, "y2": -3.333333333333334, "center_x": -8.695652173913043, "center_y": -3.4782608695652177, "value_uncond": 7.36730484550044e-08}, {"x": -8.55072463768116, "y": -3.6231884057971016, "x2": -8.260869565217392, "y2": -3.333333333333334, "center_x": -8.405797101449277, "center_y": -3.4782608695652177, "value_uncond": 1.1088733950400234e-07}, {"x": -8.26086956521739, "y": -3.6231884057971016, "x2": -7.971014492753623, "y2": -3.333333333333334, "center_x": -8.115942028985508, "center_y": -3.4782608695652177, "value_uncond": 1.6534882052923152e-07}, {"x": -7.971014492753623, "y": -3.6231884057971016, "x2": -7.681159420289855, "y2": -3.333333333333334, "center_x": -7.826086956521739, "center_y": -3.4782608695652177, "value_uncond": 2.442677058493814e-07}, {"x": -7.681159420289855, "y": -3.6231884057971016, "x2": -7.391304347826088, "y2": -3.333333333333334, "center_x": -7.536231884057972, "center_y": -3.4782608695652177, "value_uncond": 3.575006372780089e-07}, {"x": -7.391304347826087, "y": -3.6231884057971016, "x2": -7.101449275362319, "y2": -3.333333333333334, "center_x": -7.246376811594203, "center_y": -3.4782608695652177, "value_uncond": 5.183622921447384e-07}, {"x": -7.101449275362318, "y": -3.6231884057971016, "x2": -6.811594202898551, "y2": -3.333333333333334, "center_x": -6.956521739130435, "center_y": -3.4782608695652177, "value_uncond": 7.446218869285287e-07}, {"x": -6.811594202898551, "y": -3.6231884057971016, "x2": -6.521739130434783, "y2": -3.333333333333334, "center_x": -6.666666666666667, "center_y": -3.4782608695652177, "value_uncond": 1.0597026193421523e-06}, {"x": -6.521739130434782, "y": -3.6231884057971016, "x2": -6.231884057971015, "y2": -3.333333333333334, "center_x": -6.3768115942028984, "center_y": -3.4782608695652177, "value_uncond": 1.4940943819444437e-06}, {"x": -6.231884057971014, "y": -3.6231884057971016, "x2": -5.942028985507246, "y2": -3.333333333333334, "center_x": -6.08695652173913, "center_y": -3.4782608695652177, "value_uncond": 2.0869780059399955e-06}, {"x": -5.942028985507246, "y": -3.6231884057971016, "x2": -5.6521739130434785, "y2": -3.333333333333334, "center_x": -5.797101449275362, "center_y": -3.4782608695652177, "value_uncond": 2.8880421423950747e-06}, {"x": -5.6521739130434785, "y": -3.6231884057971016, "x2": -5.362318840579711, "y2": -3.333333333333334, "center_x": -5.507246376811595, "center_y": -3.4782608695652177, "value_uncond": 3.959451200341003e-06}, {"x": -5.36231884057971, "y": -3.6231884057971016, "x2": -5.072463768115942, "y2": -3.333333333333334, "center_x": -5.217391304347826, "center_y": -3.4782608695652177, "value_uncond": 5.377894494159164e-06}, {"x": -5.0724637681159415, "y": -3.6231884057971016, "x2": -4.782608695652174, "y2": -3.333333333333334, "center_x": -4.927536231884058, "center_y": -3.4782608695652177, "value_uncond": 7.2366134564094345e-06}, {"x": -4.782608695652174, "y": -3.6231884057971016, "x2": -4.492753623188406, "y2": -3.333333333333334, "center_x": -4.63768115942029, "center_y": -3.4782608695652177, "value_uncond": 9.647266761096261e-06}, {"x": -4.492753623188405, "y": -3.6231884057971016, "x2": -4.202898550724638, "y2": -3.333333333333334, "center_x": -4.3478260869565215, "center_y": -3.4782608695652177, "value_uncond": 1.2741454692988741e-05}, {"x": -4.202898550724638, "y": -3.6231884057971016, "x2": -3.91304347826087, "y2": -3.333333333333334, "center_x": -4.057971014492754, "center_y": -3.4782608695652177, "value_uncond": 1.667168728428361e-05}, {"x": -3.913043478260869, "y": -3.6231884057971016, "x2": -3.6231884057971016, "y2": -3.333333333333334, "center_x": -3.7681159420289854, "center_y": -3.4782608695652177, "value_uncond": 2.1611549765661293e-05}, {"x": -3.6231884057971016, "y": -3.6231884057971016, "x2": -3.333333333333334, "y2": -3.333333333333334, "center_x": -3.4782608695652177, "center_y": -3.4782608695652177, "value_uncond": 2.775479868572752e-05}, {"x": -3.333333333333333, "y": -3.6231884057971016, "x2": -3.0434782608695654, "y2": -3.333333333333334, "center_x": -3.1884057971014492, "center_y": -3.4782608695652177, "value_uncond": 3.5313118067461914e-05}, {"x": -3.0434782608695645, "y": -3.6231884057971016, "x2": -2.753623188405797, "y2": -3.333333333333334, "center_x": -2.8985507246376807, "center_y": -3.4782608695652177, "value_uncond": 4.451228262978362e-05}, {"x": -2.753623188405797, "y": -3.6231884057971016, "x2": -2.4637681159420293, "y2": -3.333333333333334, "center_x": -2.608695652173913, "center_y": -3.4782608695652177, "value_uncond": 5.5586519227812194e-05}, {"x": -2.4637681159420284, "y": -3.6231884057971016, "x2": -2.1739130434782608, "y2": -3.333333333333334, "center_x": -2.3188405797101446, "center_y": -3.4782608695652177, "value_uncond": 6.87709317214403e-05}, {"x": -2.1739130434782608, "y": -3.6231884057971016, "x2": -1.8840579710144931, "y2": -3.333333333333334, "center_x": -2.028985507246377, "center_y": -3.4782608695652177, "value_uncond": 8.429195978896527e-05}, {"x": -1.8840579710144922, "y": -3.6231884057971016, "x2": -1.5942028985507246, "y2": -3.333333333333334, "center_x": -1.7391304347826084, "center_y": -3.4782608695652177, "value_uncond": 0.00010235597719542227}, {"x": -1.5942028985507246, "y": -3.6231884057971016, "x2": -1.304347826086957, "y2": -3.333333333333334, "center_x": -1.4492753623188408, "center_y": -3.4782608695652177, "value_uncond": 0.00012313629466922468}, {"x": -1.304347826086957, "y": -3.6231884057971016, "x2": -1.0144927536231894, "y2": -3.333333333333334, "center_x": -1.1594202898550732, "center_y": -3.4782608695652177, "value_uncond": 0.00014675900802623028}, {"x": -1.0144927536231876, "y": -3.6231884057971016, "x2": -0.72463768115942, "y2": -3.333333333333334, "center_x": -0.8695652173913038, "center_y": -3.4782608695652177, "value_uncond": 0.0001732883110062385}, {"x": -0.72463768115942, "y": -3.6231884057971016, "x2": -0.43478260869565233, "y2": -3.333333333333334, "center_x": -0.5797101449275361, "center_y": -3.4782608695652177, "value_uncond": 0.0002027120588148225}, {"x": -0.43478260869565233, "y": -3.6231884057971016, "x2": -0.1449275362318847, "y2": -3.333333333333334, "center_x": -0.2898550724637685, "center_y": -3.4782608695652177, "value_uncond": 0.00023492850487774914}, {"x": -0.14492753623188293, "y": -3.6231884057971016, "x2": 0.1449275362318847, "y2": -3.333333333333334, "center_x": 8.881784197001252e-16, "center_y": -3.4782608695652177, "value_uncond": 0.00026973522155997187}, {"x": 0.1449275362318847, "y": -3.6231884057971016, "x2": 0.43478260869565233, "y2": -3.333333333333334, "center_x": 0.2898550724637685, "center_y": -3.4782608695652177, "value_uncond": 0.0003068212386903227}, {"x": 0.43478260869565233, "y": -3.6231884057971016, "x2": 0.72463768115942, "y2": -3.333333333333334, "center_x": 0.5797101449275361, "center_y": -3.4782608695652177, "value_uncond": 0.00034576337825966737}, {"x": 0.72463768115942, "y": -3.6231884057971016, "x2": 1.0144927536231876, "y2": -3.333333333333334, "center_x": 0.8695652173913038, "center_y": -3.4782608695652177, "value_uncond": 0.0003860276217674317}, {"x": 1.0144927536231894, "y": -3.6231884057971016, "x2": 1.304347826086957, "y2": -3.333333333333334, "center_x": 1.1594202898550732, "center_y": -3.4782608695652177, "value_uncond": 0.0004269761178313679}, {"x": 1.304347826086957, "y": -3.6231884057971016, "x2": 1.5942028985507246, "y2": -3.333333333333334, "center_x": 1.4492753623188408, "center_y": -3.4782608695652177, "value_uncond": 0.0004678801297808369}, {"x": 1.5942028985507246, "y": -3.6231884057971016, "x2": 1.8840579710144922, "y2": -3.333333333333334, "center_x": 1.7391304347826084, "center_y": -3.4782608695652177, "value_uncond": 0.0005079388527825471}, {"x": 1.884057971014494, "y": -3.6231884057971016, "x2": 2.1739130434782616, "y2": -3.333333333333334, "center_x": 2.028985507246378, "center_y": -3.4782608695652177, "value_uncond": 0.000546303622539451}, {"x": 2.1739130434782616, "y": -3.6231884057971016, "x2": 2.4637681159420293, "y2": -3.333333333333334, "center_x": 2.3188405797101455, "center_y": -3.4782608695652177, "value_uncond": 0.0005821066242024599}, {"x": 2.4637681159420293, "y": -3.6231884057971016, "x2": 2.753623188405797, "y2": -3.333333333333334, "center_x": 2.608695652173913, "center_y": -3.4782608695652177, "value_uncond": 0.0006144928261623858}, {"x": 2.753623188405797, "y": -3.6231884057971016, "x2": 3.0434782608695645, "y2": -3.333333333333334, "center_x": 2.8985507246376807, "center_y": -3.4782608695652177, "value_uncond": 0.0006426535446946294}, {"x": 3.0434782608695663, "y": -3.6231884057971016, "x2": 3.333333333333334, "y2": -3.333333333333334, "center_x": 3.18840579710145, "center_y": -3.4782608695652177, "value_uncond": 0.0006658598246582143}, {"x": 3.333333333333334, "y": -3.6231884057971016, "x2": 3.6231884057971016, "y2": -3.333333333333334, "center_x": 3.4782608695652177, "center_y": -3.4782608695652177, "value_uncond": 0.0006834937243695501}, {"x": 3.6231884057971016, "y": -3.6231884057971016, "x2": 3.913043478260869, "y2": -3.333333333333334, "center_x": 3.7681159420289854, "center_y": -3.4782608695652177, "value_uncond": 0.0006950756350950657}, {"x": 3.913043478260871, "y": -3.6231884057971016, "x2": 4.202898550724639, "y2": -3.333333333333334, "center_x": 4.057971014492755, "center_y": -3.4782608695652177, "value_uncond": 0.0007002859507642661}, {"x": 4.202898550724639, "y": -3.6231884057971016, "x2": 4.492753623188406, "y2": -3.333333333333334, "center_x": 4.347826086956522, "center_y": -3.4782608695652177, "value_uncond": 0.0006989797216658312}, {"x": 4.492753623188406, "y": -3.6231884057971016, "x2": 4.782608695652174, "y2": -3.333333333333334, "center_x": 4.63768115942029, "center_y": -3.4782608695652177, "value_uncond": 0.0006911933544386626}, {"x": 4.782608695652174, "y": -3.6231884057971016, "x2": 5.0724637681159415, "y2": -3.333333333333334, "center_x": 4.927536231884058, "center_y": -3.4782608695652177, "value_uncond": 0.0006771429261263549}, {"x": 5.072463768115943, "y": -3.6231884057971016, "x2": 5.362318840579711, "y2": -3.333333333333334, "center_x": 5.217391304347827, "center_y": -3.4782608695652177, "value_uncond": 0.0006572142212608497}, {"x": 5.362318840579711, "y": -3.6231884057971016, "x2": 5.6521739130434785, "y2": -3.333333333333334, "center_x": 5.507246376811595, "center_y": -3.4782608695652177, "value_uncond": 0.000631945133111376}, {"x": 5.6521739130434785, "y": -3.6231884057971016, "x2": 5.942028985507246, "y2": -3.333333333333334, "center_x": 5.797101449275362, "center_y": -3.4782608695652177, "value_uncond": 0.0006020015495218082}, {"x": 5.942028985507246, "y": -3.6231884057971016, "x2": 6.231884057971014, "y2": -3.333333333333334, "center_x": 6.08695652173913, "center_y": -3.4782608695652177, "value_uncond": 0.0005681482316218242}, {"x": 6.2318840579710155, "y": -3.6231884057971016, "x2": 6.521739130434783, "y2": -3.333333333333334, "center_x": 6.376811594202899, "center_y": -3.4782608695652177, "value_uncond": 0.0005312164606825947}, {"x": 6.521739130434785, "y": -3.6231884057971016, "x2": 6.8115942028985526, "y2": -3.333333333333334, "center_x": 6.666666666666669, "center_y": -3.4782608695652177, "value_uncond": 0.000492070356843445}, {"x": 6.811594202898551, "y": -3.6231884057971016, "x2": 7.101449275362318, "y2": -3.333333333333334, "center_x": 6.956521739130435, "center_y": -3.4782608695652177, "value_uncond": 0.0004515737588616033}, {"x": 7.10144927536232, "y": -3.6231884057971016, "x2": 7.391304347826088, "y2": -3.333333333333334, "center_x": 7.246376811594204, "center_y": -3.4782608695652177, "value_uncond": 0.00041055940496946086}, {"x": 7.391304347826086, "y": -3.6231884057971016, "x2": 7.681159420289854, "y2": -3.333333333333334, "center_x": 7.53623188405797, "center_y": -3.4782608695652177, "value_uncond": 0.0003698018914274478}, {"x": 7.681159420289855, "y": -3.6231884057971016, "x2": 7.971014492753623, "y2": -3.333333333333334, "center_x": 7.826086956521739, "center_y": -3.4782608695652177, "value_uncond": 0.00032999553637280677}, {"x": 7.971014492753625, "y": -3.6231884057971016, "x2": 8.260869565217392, "y2": -3.333333333333334, "center_x": 8.115942028985508, "center_y": -3.4782608695652177, "value_uncond": 0.00029173787646716157}, {"x": 8.26086956521739, "y": -3.6231884057971016, "x2": 8.550724637681158, "y2": -3.333333333333334, "center_x": 8.405797101449274, "center_y": -3.4782608695652177, "value_uncond": 0.000255519108711751}, {"x": 8.55072463768116, "y": -3.6231884057971016, "x2": 8.840579710144928, "y2": -3.333333333333334, "center_x": 8.695652173913043, "center_y": -3.4782608695652177, "value_uncond": 0.0002217173937673012}, {"x": 8.84057971014493, "y": -3.6231884057971016, "x2": 9.130434782608697, "y2": -3.333333333333334, "center_x": 8.985507246376812, "center_y": -3.4782608695652177, "value_uncond": 0.00019059958929374977}, {"x": 9.130434782608695, "y": -3.6231884057971016, "x2": 9.420289855072463, "y2": -3.333333333333334, "center_x": 9.275362318840578, "center_y": -3.4782608695652177, "value_uncond": 0.00016232670402423812}, {"x": 9.420289855072465, "y": -3.6231884057971016, "x2": 9.710144927536232, "y2": -3.333333333333334, "center_x": 9.565217391304348, "center_y": -3.4782608695652177, "value_uncond": 0.00013696316875519372}, {"x": 9.710144927536234, "y": -3.6231884057971016, "x2": 10.000000000000002, "y2": -3.333333333333334, "center_x": 9.855072463768117, "center_y": -3.4782608695652177, "value_uncond": 0.00011448891361810975}, {"x": 10.0, "y": -3.6231884057971016, "x2": 10.289855072463768, "y2": -3.333333333333334, "center_x": 10.144927536231883, "center_y": -3.4782608695652177, "value_uncond": 9.48132182479661e-05}, {"x": -10.0, "y": -3.333333333333333, "x2": -9.710144927536232, "y2": -3.0434782608695654, "center_x": -9.855072463768117, "center_y": -3.1884057971014492, "value_uncond": 1.663686445303529e-08}, {"x": -9.710144927536232, "y": -3.333333333333333, "x2": -9.420289855072465, "y2": -3.0434782608695654, "center_x": -9.565217391304348, "center_y": -3.1884057971014492, "value_uncond": 2.5993307423532162e-08}, {"x": -9.420289855072463, "y": -3.333333333333333, "x2": -9.130434782608695, "y2": -3.0434782608695654, "center_x": -9.275362318840578, "center_y": -3.1884057971014492, "value_uncond": 4.0234390133469245e-08}, {"x": -9.130434782608695, "y": -3.333333333333333, "x2": -8.840579710144928, "y2": -3.0434782608695654, "center_x": -8.985507246376812, "center_y": -3.1884057971014492, "value_uncond": 6.169914087836146e-08}, {"x": -8.840579710144928, "y": -3.333333333333333, "x2": -8.55072463768116, "y2": -3.0434782608695654, "center_x": -8.695652173913043, "center_y": -3.1884057971014492, "value_uncond": 9.373604499676155e-08}, {"x": -8.55072463768116, "y": -3.333333333333333, "x2": -8.260869565217392, "y2": -3.0434782608695654, "center_x": -8.405797101449277, "center_y": -3.1884057971014492, "value_uncond": 1.41084709582318e-07}, {"x": -8.26086956521739, "y": -3.333333333333333, "x2": -7.971014492753623, "y2": -3.0434782608695654, "center_x": -8.115942028985508, "center_y": -3.1884057971014492, "value_uncond": 2.1037740132004386e-07}, {"x": -7.971014492753623, "y": -3.333333333333333, "x2": -7.681159420289855, "y2": -3.0434782608695654, "center_x": -7.826086956521739, "center_y": -3.1884057971014492, "value_uncond": 3.1078785454001425e-07}, {"x": -7.681159420289855, "y": -3.333333333333333, "x2": -7.391304347826088, "y2": -3.0434782608695654, "center_x": -7.536231884057972, "center_y": -3.1884057971014492, "value_uncond": 4.548569188463666e-07}, {"x": -7.391304347826087, "y": -3.333333333333333, "x2": -7.101449275362319, "y2": -3.0434782608695654, "center_x": -7.246376811594203, "center_y": -3.1884057971014492, "value_uncond": 6.595251881124395e-07}, {"x": -7.101449275362318, "y": -3.333333333333333, "x2": -6.811594202898551, "y2": -3.0434782608695654, "center_x": -6.956521739130435, "center_y": -3.1884057971014492, "value_uncond": 9.474008767444301e-07}, {"x": -6.811594202898551, "y": -3.333333333333333, "x2": -6.521739130434783, "y2": -3.0434782608695654, "center_x": -6.666666666666667, "center_y": -3.1884057971014492, "value_uncond": 1.3482858995648702e-06}, {"x": -6.521739130434782, "y": -3.333333333333333, "x2": -6.231884057971015, "y2": -3.0434782608695654, "center_x": -6.3768115942028984, "center_y": -3.1884057971014492, "value_uncond": 1.9009733023452697e-06}, {"x": -6.231884057971014, "y": -3.333333333333333, "x2": -5.942028985507246, "y2": -3.0434782608695654, "center_x": -6.08695652173913, "center_y": -3.1884057971014492, "value_uncond": 2.6553138274374587e-06}, {"x": -5.942028985507246, "y": -3.333333333333333, "x2": -5.6521739130434785, "y2": -3.0434782608695654, "center_x": -5.797101449275362, "center_y": -3.1884057971014492, "value_uncond": 3.674527576762701e-06}, {"x": -5.6521739130434785, "y": -3.333333333333333, "x2": -5.362318840579711, "y2": -3.0434782608695654, "center_x": -5.507246376811595, "center_y": -3.1884057971014492, "value_uncond": 5.037707868221586e-06}, {"x": -5.36231884057971, "y": -3.333333333333333, "x2": -5.072463768115942, "y2": -3.0434782608695654, "center_x": -5.217391304347826, "center_y": -3.1884057971014492, "value_uncond": 6.842428416685089e-06}, {"x": -5.0724637681159415, "y": -3.333333333333333, "x2": -4.782608695652174, "y2": -3.0434782608695654, "center_x": -4.927536231884058, "center_y": -3.1884057971014492, "value_uncond": 9.207322607105823e-06}, {"x": -4.782608695652174, "y": -3.333333333333333, "x2": -4.492753623188406, "y2": -3.0434782608695654, "center_x": -4.63768115942029, "center_y": -3.1884057971014492, "value_uncond": 1.227445653706291e-05}, {"x": -4.492753623188405, "y": -3.333333333333333, "x2": -4.202898550724638, "y2": -3.0434782608695654, "center_x": -4.3478260869565215, "center_y": -3.1884057971014492, "value_uncond": 1.621126850961822e-05}, {"x": -4.202898550724638, "y": -3.333333333333333, "x2": -3.91304347826087, "y2": -3.0434782608695654, "center_x": -4.057971014492754, "center_y": -3.1884057971014492, "value_uncond": 2.1211800817580984e-05}, {"x": -3.913043478260869, "y": -3.333333333333333, "x2": -3.6231884057971016, "y2": -3.0434782608695654, "center_x": -3.7681159420289854, "center_y": -3.1884057971014492, "value_uncond": 2.7496910250985696e-05}, {"x": -3.6231884057971016, "y": -3.333333333333333, "x2": -3.333333333333334, "y2": -3.0434782608695654, "center_x": -3.4782608695652177, "center_y": -3.1884057971014492, "value_uncond": 3.5313118067461914e-05}, {"x": -3.333333333333333, "y": -3.333333333333333, "x2": -3.0434782608695654, "y2": -3.0434782608695654, "center_x": -3.1884057971014492, "center_y": -3.1884057971014492, "value_uncond": 4.492975509448617e-05}, {"x": -3.0434782608695645, "y": -3.333333333333333, "x2": -2.753623188405797, "y2": -3.0434782608695654, "center_x": -2.8985507246376807, "center_y": -3.1884057971014492, "value_uncond": 5.6634080101113846e-05}, {"x": -2.753623188405797, "y": -3.333333333333333, "x2": -2.4637681159420293, "y2": -3.0434782608695654, "center_x": -2.608695652173913, "center_y": -3.1884057971014492, "value_uncond": 7.072410571871243e-05}, {"x": -2.4637681159420284, "y": -3.333333333333333, "x2": -2.1739130434782608, "y2": -3.0434782608695654, "center_x": -2.3188405797101446, "center_y": -3.1884057971014492, "value_uncond": 8.749896041355213e-05}, {"x": -2.1739130434782608, "y": -3.333333333333333, "x2": -1.8840579710144931, "y2": -3.0434782608695654, "center_x": -2.028985507246377, "center_y": -3.1884057971014492, "value_uncond": 0.00010724674899898157}, {"x": -1.8840579710144922, "y": -3.333333333333333, "x2": -1.5942028985507246, "y2": -3.0434782608695654, "center_x": -1.7391304347826084, "center_y": -3.1884057971014492, "value_uncond": 0.0001302300459297184}, {"x": -1.5942028985507246, "y": -3.333333333333333, "x2": -1.304347826086957, "y2": -3.0434782608695654, "center_x": -1.4492753623188408, "center_y": -3.1884057971014492, "value_uncond": 0.00015666935873976176}, {"x": -1.304347826086957, "y": -3.333333333333333, "x2": -1.0144927536231894, "y2": -3.0434782608695654, "center_x": -1.1594202898550732, "center_y": -3.1884057971014492, "value_uncond": 0.00018672512225998927}, {"x": -1.0144927536231876, "y": -3.333333333333333, "x2": -0.72463768115942, "y2": -3.0434782608695654, "center_x": -0.8695652173913038, "center_y": -3.1884057971014492, "value_uncond": 0.00022047901177611992}, {"x": -0.72463768115942, "y": -3.333333333333333, "x2": -0.43478260869565233, "y2": -3.0434782608695654, "center_x": -0.5797101449275361, "center_y": -3.1884057971014492, "value_uncond": 0.0002579155751652848}, {"x": -0.43478260869565233, "y": -3.333333333333333, "x2": -0.1449275362318847, "y2": -3.0434782608695654, "center_x": -0.2898550724637685, "center_y": -3.1884057971014492, "value_uncond": 0.00029890535774004296}, {"x": -0.14492753623188293, "y": -3.333333333333333, "x2": 0.1449275362318847, "y2": -3.0434782608695654, "center_x": 8.881784197001252e-16, "center_y": -3.1884057971014492, "value_uncond": 0.0003431908058046359}, {"x": 0.1449275362318847, "y": -3.333333333333333, "x2": 0.43478260869565233, "y2": -3.0434782608695654, "center_x": 0.2898550724637685, "center_y": -3.1884057971014492, "value_uncond": 0.0003903762643051674}, {"x": 0.43478260869565233, "y": -3.333333333333333, "x2": 0.72463768115942, "y2": -3.0434782608695654, "center_x": 0.5797101449275361, "center_y": -3.1884057971014492, "value_uncond": 0.0004399233133752442}, {"x": 0.72463768115942, "y": -3.333333333333333, "x2": 1.0144927536231876, "y2": -3.0434782608695654, "center_x": 0.8695652173913038, "center_y": -3.1884057971014492, "value_uncond": 0.000491152508044845}, {"x": 1.0144927536231894, "y": -3.333333333333333, "x2": 1.304347826086957, "y2": -3.0434782608695654, "center_x": 1.1594202898550732, "center_y": -3.1884057971014492, "value_uncond": 0.0005432522941958565}, {"x": 1.304347826086957, "y": -3.333333333333333, "x2": 1.5942028985507246, "y2": -3.0434782608695654, "center_x": 1.4492753623188408, "center_y": -3.1884057971014492, "value_uncond": 0.0005952954821058184}, {"x": 1.5942028985507246, "y": -3.333333333333333, "x2": 1.8840579710144922, "y2": -3.0434782608695654, "center_x": 1.7391304347826084, "center_y": -3.1884057971014492, "value_uncond": 0.0006462631879432444}, {"x": 1.884057971014494, "y": -3.333333333333333, "x2": 2.1739130434782616, "y2": -3.0434782608695654, "center_x": 2.028985507246378, "center_y": -3.1884057971014492, "value_uncond": 0.0006950756350950666}, {"x": 2.1739130434782616, "y": -3.333333333333333, "x2": 2.4637681159420293, "y2": -3.0434782608695654, "center_x": 2.3188405797101455, "center_y": -3.1884057971014492, "value_uncond": 0.0007406286812263477}, {"x": 2.4637681159420293, "y": -3.333333333333333, "x2": 2.753623188405797, "y2": -3.0434782608695654, "center_x": 2.608695652173913, "center_y": -3.1884057971014492, "value_uncond": 0.0007818344484350156}, {"x": 2.753623188405797, "y": -3.333333333333333, "x2": 3.0434782608695645, "y2": -3.0434782608695654, "center_x": 2.8985507246376807, "center_y": -3.1884057971014492, "value_uncond": 0.0008176640283809533}, {"x": 3.0434782608695663, "y": -3.333333333333333, "x2": 3.333333333333334, "y2": -3.0434782608695654, "center_x": 3.18840579710145, "center_y": -3.1884057971014492, "value_uncond": 0.000847189953376477}, {"x": 3.333333333333334, "y": -3.333333333333333, "x2": 3.6231884057971016, "y2": -3.0434782608695654, "center_x": 3.4782608695652177, "center_y": -3.1884057971014492, "value_uncond": 0.000869626000906391}, {"x": 3.6231884057971016, "y": -3.333333333333333, "x2": 3.913043478260869, "y2": -3.0434782608695654, "center_x": 3.7681159420289854, "center_y": -3.1884057971014492, "value_uncond": 0.0008843619528953801}, {"x": 3.913043478260871, "y": -3.333333333333333, "x2": 4.202898550724639, "y2": -3.0434782608695654, "center_x": 4.057971014492755, "center_y": -3.1884057971014492, "value_uncond": 0.000890991166620855}, {"x": 4.202898550724639, "y": -3.333333333333333, "x2": 4.492753623188406, "y2": -3.0434782608695654, "center_x": 4.347826086956522, "center_y": -3.1884057971014492, "value_uncond": 0.0008893292189735857}, {"x": 4.492753623188406, "y": -3.333333333333333, "x2": 4.782608695652174, "y2": -3.0434782608695654, "center_x": 4.63768115942029, "center_y": -3.1884057971014492, "value_uncond": 0.0008794224310223179}, {"x": 4.782608695652174, "y": -3.333333333333333, "x2": 5.0724637681159415, "y2": -3.0434782608695654, "center_x": 4.927536231884058, "center_y": -3.1884057971014492, "value_uncond": 0.0008615457229435064}, {"x": 5.072463768115943, "y": -3.333333333333333, "x2": 5.362318840579711, "y2": -3.0434782608695654, "center_x": 5.217391304347827, "center_y": -3.1884057971014492, "value_uncond": 0.0008361899379559874}, {"x": 5.362318840579711, "y": -3.333333333333333, "x2": 5.6521739130434785, "y2": -3.0434782608695654, "center_x": 5.507246376811595, "center_y": -3.1884057971014492, "value_uncond": 0.0008040394509939493}, {"x": 5.6521739130434785, "y": -3.333333333333333, "x2": 5.942028985507246, "y2": -3.0434782608695654, "center_x": 5.797101449275362, "center_y": -3.1884057971014492, "value_uncond": 0.0007659414876603125}, {"x": 5.942028985507246, "y": -3.333333333333333, "x2": 6.231884057971014, "y2": -3.0434782608695654, "center_x": 6.08695652173913, "center_y": -3.1884057971014492, "value_uncond": 0.0007228690724893748}, {"x": 6.2318840579710155, "y": -3.333333333333333, "x2": 6.521739130434783, "y2": -3.0434782608695654, "center_x": 6.376811594202899, "center_y": -3.1884057971014492, "value_uncond": 0.0006758798652396703}, {"x": 6.521739130434785, "y": -3.333333333333333, "x2": 6.8115942028985526, "y2": -3.0434782608695654, "center_x": 6.666666666666669, "center_y": -3.1884057971014492, "value_uncond": 0.0006260733073753584}, {"x": 6.811594202898551, "y": -3.333333333333333, "x2": 7.101449275362318, "y2": -3.0434782608695654, "center_x": 6.956521739130435, "center_y": -3.1884057971014492, "value_uncond": 0.0005745484823511837}, {"x": 7.10144927536232, "y": -3.333333333333333, "x2": 7.391304347826088, "y2": -3.0434782608695654, "center_x": 7.246376811594204, "center_y": -3.1884057971014492, "value_uncond": 0.0005223649036535408}, {"x": 7.391304347826086, "y": -3.333333333333333, "x2": 7.681159420289854, "y2": -3.0434782608695654, "center_x": 7.53623188405797, "center_y": -3.1884057971014492, "value_uncond": 0.00047050810929727627}, {"x": 7.681159420289855, "y": -3.333333333333333, "x2": 7.971014492753623, "y2": -3.0434782608695654, "center_x": 7.826086956521739, "center_y": -3.1884057971014492, "value_uncond": 0.0004198614974519994}, {"x": 7.971014492753625, "y": -3.333333333333333, "x2": 8.260869565217392, "y2": -3.0434782608695654, "center_x": 8.115942028985508, "center_y": -3.1884057971014492, "value_uncond": 0.00037118532881786785}, {"x": 8.26086956521739, "y": -3.333333333333333, "x2": 8.550724637681158, "y2": -3.0434782608695654, "center_x": 8.405797101449274, "center_y": -3.1884057971014492, "value_uncond": 0.0003251032931855033}, {"x": 8.55072463768116, "y": -3.333333333333333, "x2": 8.840579710144928, "y2": -3.0434782608695654, "center_x": 8.695652173913043, "center_y": -3.1884057971014492, "value_uncond": 0.0002820965337334934}, {"x": 8.84057971014493, "y": -3.333333333333333, "x2": 9.130434782608697, "y2": -3.0434782608695654, "center_x": 8.985507246376812, "center_y": -3.1884057971014492, "value_uncond": 0.0002425045800746907}, {"x": 9.130434782608695, "y": -3.333333333333333, "x2": 9.420289855072463, "y2": -3.0434782608695654, "center_x": 9.275362318840578, "center_y": -3.1884057971014492, "value_uncond": 0.000206532287609695}, {"x": 9.420289855072465, "y": -3.333333333333333, "x2": 9.710144927536232, "y2": -3.0434782608695654, "center_x": 9.565217391304348, "center_y": -3.1884057971014492, "value_uncond": 0.00017426163323724657}, {"x": 9.710144927536234, "y": -3.333333333333333, "x2": 10.000000000000002, "y2": -3.0434782608695654, "center_x": 9.855072463768117, "center_y": -3.1884057971014492, "value_uncond": 0.00014566708156635937}, {"x": 10.0, "y": -3.333333333333333, "x2": 10.289855072463768, "y2": -3.0434782608695654, "center_x": 10.144927536231883, "center_y": -3.1884057971014492, "value_uncond": 0.00012063320682877794}, {"x": -10.0, "y": -3.0434782608695645, "x2": -9.710144927536232, "y2": -2.753623188405797, "center_x": -9.855072463768117, "center_y": -2.8985507246376807, "value_uncond": 2.097081348614346e-08}, {"x": -9.710144927536232, "y": -3.0434782608695645, "x2": -9.420289855072465, "y2": -2.753623188405797, "center_x": -9.565217391304348, "center_y": -2.8985507246376807, "value_uncond": 3.276463563225292e-08}, {"x": -9.420289855072463, "y": -3.0434782608695645, "x2": -9.130434782608695, "y2": -2.753623188405797, "center_x": -9.275362318840578, "center_y": -2.8985507246376807, "value_uncond": 5.071555962961394e-08}, {"x": -9.130434782608695, "y": -3.0434782608695645, "x2": -8.840579710144928, "y2": -2.753623188405797, "center_x": -8.985507246376812, "center_y": -2.8985507246376807, "value_uncond": 7.777193708994542e-08}, {"x": -8.840579710144928, "y": -3.0434782608695645, "x2": -8.55072463768116, "y2": -2.753623188405797, "center_x": -8.695652173913043, "center_y": -2.8985507246376807, "value_uncond": 1.1815454300928705e-07}, {"x": -8.55072463768116, "y": -3.0434782608695645, "x2": -8.260869565217392, "y2": -2.753623188405797, "center_x": -8.405797101449277, "center_y": -2.8985507246376807, "value_uncond": 1.7783766518923127e-07}, {"x": -8.26086956521739, "y": -3.0434782608695645, "x2": -7.971014492753623, "y2": -2.753623188405797, "center_x": -8.115942028985508, "center_y": -2.8985507246376807, "value_uncond": 2.651812940615314e-07}, {"x": -7.971014492753623, "y": -3.0434782608695645, "x2": -7.681159420289855, "y2": -2.753623188405797, "center_x": -7.826086956521739, "center_y": -2.8985507246376807, "value_uncond": 3.917489470275911e-07}, {"x": -7.681159420289855, "y": -3.0434782608695645, "x2": -7.391304347826088, "y2": -2.753623188405797, "center_x": -7.536231884057972, "center_y": -2.8985507246376807, "value_uncond": 5.733483995698952e-07}, {"x": -7.391304347826087, "y": -3.0434782608695645, "x2": -7.101449275362319, "y2": -2.753623188405797, "center_x": -7.246376811594203, "center_y": -2.8985507246376807, "value_uncond": 8.31333316945809e-07}, {"x": -7.101449275362318, "y": -3.0434782608695645, "x2": -6.811594202898551, "y2": -2.753623188405797, "center_x": -6.956521739130435, "center_y": -2.8985507246376807, "value_uncond": 1.1942014157115696e-06}, {"x": -6.811594202898551, "y": -3.0434782608695645, "x2": -6.521739130434783, "y2": -2.753623188405797, "center_x": -6.666666666666667, "center_y": -2.8985507246376807, "value_uncond": 1.6995180916205377e-06}, {"x": -6.521739130434782, "y": -3.0434782608695645, "x2": -6.231884057971015, "y2": -2.753623188405797, "center_x": -6.3768115942028984, "center_y": -2.8985507246376807, "value_uncond": 2.3961820857624293e-06}, {"x": -6.231884057971014, "y": -3.0434782608695645, "x2": -5.942028985507246, "y2": -2.753623188405797, "center_x": -6.08695652173913, "center_y": -2.8985507246376807, "value_uncond": 3.3470303962360863e-06}, {"x": -5.942028985507246, "y": -3.0434782608695645, "x2": -5.6521739130434785, "y2": -2.753623188405797, "center_x": -5.797101449275362, "center_y": -2.8985507246376807, "value_uncond": 4.631752135717058e-06}, {"x": -5.6521739130434785, "y": -3.0434782608695645, "x2": -5.362318840579711, "y2": -2.753623188405797, "center_x": -5.507246376811595, "center_y": -2.8985507246376807, "value_uncond": 6.350044649361683e-06}, {"x": -5.36231884057971, "y": -3.0434782608695645, "x2": -5.072463768115942, "y2": -2.753623188405797, "center_x": -5.217391304347826, "center_y": -2.8985507246376807, "value_uncond": 8.624899873630453e-06}, {"x": -5.0724637681159415, "y": -3.0434782608695645, "x2": -4.782608695652174, "y2": -2.753623188405797, "center_x": -4.927536231884058, "center_y": -2.8985507246376807, "value_uncond": 1.1605855517151936e-05}, {"x": -4.782608695652174, "y": -3.0434782608695645, "x2": -4.492753623188406, "y2": -2.753623188405797, "center_x": -4.63768115942029, "center_y": -2.8985507246376807, "value_uncond": 1.547198628738956e-05}, {"x": -4.492753623188405, "y": -3.0434782608695645, "x2": -4.202898550724638, "y2": -2.753623188405797, "center_x": -4.3478260869565215, "center_y": -2.8985507246376807, "value_uncond": 2.0434348626731224e-05}, {"x": -4.202898550724638, "y": -3.0434782608695645, "x2": -3.91304347826087, "y2": -2.753623188405797, "center_x": -4.057971014492754, "center_y": -2.8985507246376807, "value_uncond": 2.6737533379948934e-05}, {"x": -3.913043478260869, "y": -3.0434782608695645, "x2": -3.6231884057971016, "y2": -2.753623188405797, "center_x": -3.7681159420289854, "center_y": -2.8985507246376807, "value_uncond": 3.4659931139454876e-05}, {"x": -3.6231884057971016, "y": -3.0434782608695645, "x2": -3.333333333333334, "y2": -2.753623188405797, "center_x": -3.4782608695652177, "center_y": -2.8985507246376807, "value_uncond": 4.451228262978362e-05}, {"x": -3.333333333333333, "y": -3.0434782608695645, "x2": -3.0434782608695654, "y2": -2.753623188405797, "center_x": -3.1884057971014492, "center_y": -2.8985507246376807, "value_uncond": 5.6634080101113846e-05}, {"x": -3.0434782608695645, "y": -3.0434782608695645, "x2": -2.753623188405797, "y2": -2.753623188405797, "center_x": -2.8985507246376807, "center_y": -2.8985507246376807, "value_uncond": 7.138741402338514e-05}, {"x": -2.753623188405797, "y": -3.0434782608695645, "x2": -2.4637681159420293, "y2": -2.753623188405797, "center_x": -2.608695652173913, "center_y": -2.8985507246376807, "value_uncond": 8.914793013961373e-05}, {"x": -2.4637681159420284, "y": -3.0434782608695645, "x2": -2.1739130434782608, "y2": -2.753623188405797, "center_x": -2.3188405797101446, "center_y": -2.8985507246376807, "value_uncond": 0.00011029268070578547}, {"x": -2.1739130434782608, "y": -3.0434782608695645, "x2": -1.8840579710144931, "y2": -2.753623188405797, "center_x": -2.028985507246377, "center_y": -2.8985507246376807, "value_uncond": 0.00013518482263300295}, {"x": -1.8840579710144922, "y": -3.0434782608695645, "x2": -1.5942028985507246, "y2": -2.753623188405797, "center_x": -1.7391304347826084, "center_y": -2.8985507246376807, "value_uncond": 0.0001641553317449651}, {"x": -1.5942028985507246, "y": -3.0434782608695645, "x2": -1.304347826086957, "y2": -2.753623188405797, "center_x": -1.4492753623188408, "center_y": -2.8985507246376807, "value_uncond": 0.00019748215839588876}, {"x": -1.304347826086957, "y": -3.0434782608695645, "x2": -1.0144927536231894, "y2": -2.753623188405797, "center_x": -1.1594202898550732, "center_y": -2.8985507246376807, "value_uncond": 0.000235367531132176}, {"x": -1.0144927536231876, "y": -3.0434782608695645, "x2": -0.72463768115942, "y2": -2.753623188405797, "center_x": -0.8695652173913038, "center_y": -2.8985507246376807, "value_uncond": 0.0002779144018765324}, {"x": -0.72463768115942, "y": -3.0434782608695645, "x2": -0.43478260869565233, "y2": -2.753623188405797, "center_x": -0.5797101449275361, "center_y": -2.8985507246376807, "value_uncond": 0.0003251032931855034}, {"x": -0.43478260869565233, "y": -3.0434782608695645, "x2": -0.1449275362318847, "y2": -2.753623188405797, "center_x": -0.2898550724637685, "center_y": -2.8985507246376807, "value_uncond": 0.00037677102706885516}, {"x": -0.14492753623188293, "y": -3.0434782608695645, "x2": 0.1449275362318847, "y2": -2.753623188405797, "center_x": 8.881784197001252e-16, "center_y": -2.8985507246376807, "value_uncond": 0.0004325929563833926}, {"x": 0.1449275362318847, "y": -3.0434782608695645, "x2": 0.43478260869565233, "y2": -2.753623188405797, "center_x": 0.2898550724637685, "center_y": -2.8985507246376807, "value_uncond": 0.000492070356843446}, {"x": 0.43478260869565233, "y": -3.0434782608695645, "x2": 0.72463768115942, "y2": -2.753623188405797, "center_x": 0.5797101449275361, "center_y": -2.8985507246376807, "value_uncond": 0.0005545245487238045}, {"x": 0.72463768115942, "y": -3.0434782608695645, "x2": 1.0144927536231876, "y2": -2.753623188405797, "center_x": 0.8695652173913038, "center_y": -2.8985507246376807, "value_uncond": 0.0006190990897675365}, {"x": 1.0144927536231894, "y": -3.0434782608695645, "x2": 1.304347826086957, "y2": -2.753623188405797, "center_x": 1.1594202898550732, "center_y": -2.8985507246376807, "value_uncond": 0.0006847710137725129}, {"x": 1.304347826086957, "y": -3.0434782608695645, "x2": 1.5942028985507246, "y2": -2.753623188405797, "center_x": 1.4492753623188408, "center_y": -2.8985507246376807, "value_uncond": 0.0007503715955386884}, {"x": 1.5942028985507246, "y": -3.0434782608695645, "x2": 1.8840579710144922, "y2": -2.753623188405797, "center_x": 1.7391304347826084, "center_y": -2.8985507246376807, "value_uncond": 0.0008146165291889287}, {"x": 1.884057971014494, "y": -3.0434782608695645, "x2": 2.1739130434782616, "y2": -2.753623188405797, "center_x": 2.028985507246378, "center_y": -2.8985507246376807, "value_uncond": 0.0008761447533271222}, {"x": 2.1739130434782616, "y": -3.0434782608695645, "x2": 2.4637681159420293, "y2": -2.753623188405797, "center_x": 2.3188405797101455, "center_y": -2.8985507246376807, "value_uncond": 0.0009335644934976026}, {"x": 2.4637681159420293, "y": -3.0434782608695645, "x2": 2.753623188405797, "y2": -2.753623188405797, "center_x": 2.608695652173913, "center_y": -2.8985507246376807, "value_uncond": 0.0009855044766071462}, {"x": 2.753623188405797, "y": -3.0434782608695645, "x2": 3.0434782608695645, "y2": -2.753623188405797, "center_x": 2.8985507246376807, "center_y": -2.8985507246376807, "value_uncond": 0.001030667760857866}, {"x": 3.0434782608695663, "y": -3.0434782608695645, "x2": 3.333333333333334, "y2": -2.753623188405797, "center_x": 3.18840579710145, "center_y": -2.8985507246376807, "value_uncond": 0.001067885270673787}, {"x": 3.333333333333334, "y": -3.0434782608695645, "x2": 3.6231884057971016, "y2": -2.753623188405797, "center_x": 3.4782608695652177, "center_y": -2.8985507246376807, "value_uncond": 0.001096165970408059}, {"x": 3.6231884057971016, "y": -3.0434782608695645, "x2": 3.913043478260869, "y2": -2.753623188405797, "center_x": 3.7681159420289854, "center_y": -2.8985507246376807, "value_uncond": 0.0011147406784952837}, {"x": 3.913043478260871, "y": -3.0434782608695645, "x2": 4.202898550724639, "y2": -2.753623188405797, "center_x": 4.057971014492755, "center_y": -2.8985507246376807, "value_uncond": 0.001123096820663128}, {"x": 4.202898550724639, "y": -3.0434782608695645, "x2": 4.492753623188406, "y2": -2.753623188405797, "center_x": 4.347826086956522, "center_y": -2.8985507246376807, "value_uncond": 0.0011210019310742272}, {"x": 4.492753623188406, "y": -3.0434782608695645, "x2": 4.782608695652174, "y2": -2.753623188405797, "center_x": 4.63768115942029, "center_y": -2.8985507246376807, "value_uncond": 0.0011085143975633734}, {"x": 4.782608695652174, "y": -3.0434782608695645, "x2": 5.0724637681159415, "y2": -2.753623188405797, "center_x": 4.927536231884058, "center_y": -2.8985507246376807, "value_uncond": 0.001085980757770534}, {"x": 5.072463768115943, "y": -3.0434782608695645, "x2": 5.362318840579711, "y2": -2.753623188405797, "center_x": 5.217391304347827, "center_y": -2.8985507246376807, "value_uncond": 0.0010540197209255768}, {"x": 5.362318840579711, "y": -3.0434782608695645, "x2": 5.6521739130434785, "y2": -2.753623188405797, "center_x": 5.507246376811595, "center_y": -2.8985507246376807, "value_uncond": 0.0010134939435188506}, {"x": 5.6521739130434785, "y": -3.0434782608695645, "x2": 5.942028985507246, "y2": -2.753623188405797, "center_x": 5.797101449275362, "center_y": -2.8985507246376807, "value_uncond": 0.0009654713557573767}, {"x": 5.942028985507246, "y": -3.0434782608695645, "x2": 6.231884057971014, "y2": -2.753623188405797, "center_x": 6.08695652173913, "center_y": -2.8985507246376807, "value_uncond": 0.0009111784577478195}, {"x": 6.2318840579710155, "y": -3.0434782608695645, "x2": 6.521739130434783, "y2": -2.753623188405797, "center_x": 6.376811594202899, "center_y": -2.8985507246376807, "value_uncond": 0.0008519484325302061}, {"x": 6.521739130434785, "y": -3.0434782608695645, "x2": 6.8115942028985526, "y2": -2.753623188405797, "center_x": 6.666666666666669, "center_y": -2.8985507246376807, "value_uncond": 0.0007891671290996348}, {"x": 6.811594202898551, "y": -3.0434782608695645, "x2": 7.101449275362318, "y2": -2.753623188405797, "center_x": 6.956521739130435, "center_y": -2.8985507246376807, "value_uncond": 0.0007242199451793485}, {"x": 7.10144927536232, "y": -3.0434782608695645, "x2": 7.391304347826088, "y2": -2.753623188405797, "center_x": 7.246376811594204, "center_y": -2.8985507246376807, "value_uncond": 0.0006584424004384523}, {"x": 7.391304347826086, "y": -3.0434782608695645, "x2": 7.681159420289854, "y2": -2.753623188405797, "center_x": 7.53623188405797, "center_y": -2.8985507246376807, "value_uncond": 0.000593076768260322}, {"x": 7.681159420289855, "y": -3.0434782608695645, "x2": 7.971014492753623, "y2": -2.753623188405797, "center_x": 7.826086956521739, "center_y": -2.8985507246376807, "value_uncond": 0.0005292365744719645}, {"x": 7.971014492753625, "y": -3.0434782608695645, "x2": 8.260869565217392, "y2": -2.753623188405797, "center_x": 8.115942028985508, "center_y": -2.8985507246376807, "value_uncond": 0.0004678801297808371}, {"x": 8.26086956521739, "y": -3.0434782608695645, "x2": 8.550724637681158, "y2": -2.753623188405797, "center_x": 8.405797101449274, "center_y": -2.8985507246376807, "value_uncond": 0.0004097935968866038}, {"x": 8.55072463768116, "y": -3.0434782608695645, "x2": 8.840579710144928, "y2": -2.753623188405797, "center_x": 8.695652173913043, "center_y": -2.8985507246376807, "value_uncond": 0.0003555834580916702}, {"x": 8.84057971014493, "y": -3.0434782608695645, "x2": 9.130434782608697, "y2": -2.753623188405797, "center_x": 8.985507246376812, "center_y": -2.8985507246376807, "value_uncond": 0.00030567769140861566}, {"x": 9.130434782608695, "y": -3.0434782608695645, "x2": 9.420289855072463, "y2": -2.753623188405797, "center_x": 9.275362318840578, "center_y": -2.8985507246376807, "value_uncond": 0.00026033451763437723}, {"x": 9.420289855072465, "y": -3.0434782608695645, "x2": 9.710144927536232, "y2": -2.753623188405797, "center_x": 9.565217391304348, "center_y": -2.8985507246376807, "value_uncond": 0.00021965726887570564}, {"x": 9.710144927536234, "y": -3.0434782608695645, "x2": 10.000000000000002, "y2": -2.753623188405797, "center_x": 9.855072463768117, "center_y": -2.8985507246376807, "value_uncond": 0.00018361375770189993}, {"x": 10.0, "y": -3.0434782608695645, "x2": 10.289855072463768, "y2": -2.753623188405797, "center_x": 10.144927536231883, "center_y": -2.8985507246376807, "value_uncond": 0.00015205848961401678}, {"x": -10.0, "y": -2.753623188405797, "x2": -9.710144927536232, "y2": -2.4637681159420293, "center_x": -9.855072463768117, "center_y": -2.608695652173913, "value_uncond": 2.6188154329573736e-08}, {"x": -9.710144927536232, "y": -2.753623188405797, "x2": -9.420289855072465, "y2": -2.4637681159420293, "center_x": -9.565217391304348, "center_y": -2.608695652173913, "value_uncond": 4.0916168323973e-08}, {"x": -9.420289855072463, "y": -2.753623188405797, "x2": -9.130434782608695, "y2": -2.4637681159420293, "center_x": -9.275362318840578, "center_y": -2.608695652173913, "value_uncond": 6.333311310830191e-08}, {"x": -9.130434782608695, "y": -2.753623188405797, "x2": -8.840579710144928, "y2": -2.4637681159420293, "center_x": -8.985507246376812, "center_y": -2.608695652173913, "value_uncond": 9.71208624008385e-08}, {"x": -8.840579710144928, "y": -2.753623188405797, "x2": -8.55072463768116, "y2": -2.4637681159420293, "center_x": -8.695652173913043, "center_y": -2.608695652173913, "value_uncond": 1.475502802555563e-07}, {"x": -8.55072463768116, "y": -2.753623188405797, "x2": -8.260869565217392, "y2": -2.4637681159420293, "center_x": -8.405797101449277, "center_y": -2.608695652173913, "value_uncond": 2.2208200099933804e-07}, {"x": -8.26086956521739, "y": -2.753623188405797, "x2": -7.971014492753623, "y2": -2.4637681159420293, "center_x": -8.115942028985508, "center_y": -2.608695652173913, "value_uncond": 3.3115590192951433e-07}, {"x": -7.971014492753623, "y": -2.753623188405797, "x2": -7.681159420289855, "y2": -2.4637681159420293, "center_x": -7.826086956521739, "center_y": -2.608695652173913, "value_uncond": 4.892123946448407e-07}, {"x": -7.681159420289855, "y": -2.753623188405797, "x2": -7.391304347826088, "y2": -2.4637681159420293, "center_x": -7.536231884057972, "center_y": -2.608695652173913, "value_uncond": 7.159920802534279e-07}, {"x": -7.391304347826087, "y": -2.753623188405797, "x2": -7.101449275362319, "y2": -2.4637681159420293, "center_x": -7.246376811594203, "center_y": -2.608695652173913, "value_uncond": 1.0381612147701664e-06}, {"x": -7.101449275362318, "y": -2.753623188405797, "x2": -6.811594202898551, "y2": -2.4637681159420293, "center_x": -6.956521739130435, "center_y": -2.608695652173913, "value_uncond": 1.4913074781726702e-06}, {"x": -6.811594202898551, "y": -2.753623188405797, "x2": -6.521739130434783, "y2": -2.4637681159420293, "center_x": -6.666666666666667, "center_y": -2.608695652173913, "value_uncond": 2.1223421827994224e-06}, {"x": -6.521739130434782, "y": -2.753623188405797, "x2": -6.231884057971015, "y2": -2.4637681159420293, "center_x": -6.3768115942028984, "center_y": -2.608695652173913, "value_uncond": 2.9923296158811253e-06}, {"x": -6.231884057971014, "y": -2.753623188405797, "x2": -5.942028985507246, "y2": -2.4637681159420293, "center_x": -6.08695652173913, "center_y": -2.608695652173913, "value_uncond": 4.179740028698538e-06}, {"x": -5.942028985507246, "y": -2.753623188405797, "x2": -5.6521739130434785, "y2": -2.4637681159420293, "center_x": -5.797101449275362, "center_y": -2.608695652173913, "value_uncond": 5.7840884344633715e-06}, {"x": -5.6521739130434785, "y": -2.753623188405797, "x2": -5.362318840579711, "y2": -2.4637681159420293, "center_x": -5.507246376811595, "center_y": -2.608695652173913, "value_uncond": 7.92987593862528e-06}, {"x": -5.36231884057971, "y": -2.753623188405797, "x2": -5.072463768115942, "y2": -2.4637681159420293, "center_x": -5.217391304347826, "center_y": -2.608695652173913, "value_uncond": 1.077069371281184e-05}, {"x": -5.0724637681159415, "y": -2.753623188405797, "x2": -4.782608695652174, "y2": -2.4637681159420293, "center_x": -4.927536231884058, "center_y": -2.608695652173913, "value_uncond": 1.4493283038864286e-05}, {"x": -4.782608695652174, "y": -2.753623188405797, "x2": -4.492753623188406, "y2": -2.4637681159420293, "center_x": -4.63768115942029, "center_y": -2.608695652173913, "value_uncond": 1.9321270724520628e-05}, {"x": -4.492753623188405, "y": -2.753623188405797, "x2": -4.202898550724638, "y2": -2.4637681159420293, "center_x": -4.3478260869565215, "center_y": -2.608695652173913, "value_uncond": 2.551822206681418e-05}, {"x": -4.202898550724638, "y": -2.753623188405797, "x2": -3.91304347826087, "y2": -2.4637681159420293, "center_x": -4.057971014492754, "center_y": -2.608695652173913, "value_uncond": 3.33895798085704e-05}, {"x": -3.913043478260869, "y": -2.753623188405797, "x2": -3.6231884057971016, "y2": -2.4637681159420293, "center_x": -3.7681159420289854, "center_y": -2.608695652173913, "value_uncond": 4.328299549906327e-05}, {"x": -3.6231884057971016, "y": -2.753623188405797, "x2": -3.333333333333334, "y2": -2.4637681159420293, "center_x": -3.4782608695652177, "center_y": -2.608695652173913, "value_uncond": 5.5586519227812194e-05}, {"x": -3.333333333333333, "y": -2.753623188405797, "x2": -3.0434782608695654, "y2": -2.4637681159420293, "center_x": -3.1884057971014492, "center_y": -2.608695652173913, "value_uncond": 7.072410571871243e-05}, {"x": -3.0434782608695645, "y": -2.753623188405797, "x2": -2.753623188405797, "y2": -2.4637681159420293, "center_x": -2.8985507246376807, "center_y": -2.608695652173913, "value_uncond": 8.914793013961373e-05}, {"x": -2.753623188405797, "y": -2.753623188405797, "x2": -2.4637681159420293, "y2": -2.4637681159420293, "center_x": -2.608695652173913, "center_y": -2.608695652173913, "value_uncond": 0.00011132709535568892}, {"x": -2.4637681159420284, "y": -2.753623188405797, "x2": -2.1739130434782608, "y2": -2.4637681159420293, "center_x": -2.3188405797101446, "center_y": -2.608695652173913, "value_uncond": 0.00013773246067225788}, {"x": -2.1739130434782608, "y": -2.753623188405797, "x2": -1.8840579710144931, "y2": -2.4637681159420293, "center_x": -2.028985507246377, "center_y": -2.608695652173913, "value_uncond": 0.0001688175330188482}, {"x": -1.8840579710144922, "y": -2.753623188405797, "x2": -1.5942028985507246, "y2": -2.4637681159420293, "center_x": -1.7391304347826084, "center_y": -2.608695652173913, "value_uncond": 0.00020499563188619514}, {"x": -1.5942028985507246, "y": -2.753623188405797, "x2": -1.304347826086957, "y2": -2.4637681159420293, "center_x": -1.4492753623188408, "center_y": -2.608695652173913, "value_uncond": 0.0002466138590582609}, {"x": -1.304347826086957, "y": -2.753623188405797, "x2": -1.0144927536231894, "y2": -2.4637681159420293, "center_x": -1.1594202898550732, "center_y": -2.608695652173913, "value_uncond": 0.0002939247556387334}, {"x": -1.0144927536231876, "y": -2.753623188405797, "x2": -0.72463768115942, "y2": -2.4637681159420293, "center_x": -0.8695652173913038, "center_y": -2.608695652173913, "value_uncond": 0.0003470568870188469}, {"x": -0.72463768115942, "y": -2.753623188405797, "x2": -0.43478260869565233, "y2": -2.4637681159420293, "center_x": -0.5797101449275361, "center_y": -2.608695652173913, "value_uncond": 0.00040598592995069906}, {"x": -0.43478260869565233, "y": -2.753623188405797, "x2": -0.1449275362318847, "y2": -2.4637681159420293, "center_x": -0.2898550724637685, "center_y": -2.608695652173913, "value_uncond": 0.00047050810929727627}, {"x": -0.14492753623188293, "y": -2.753623188405797, "x2": 0.1449275362318847, "y2": -2.4637681159420293, "center_x": 8.881784197001252e-16, "center_y": -2.608695652173913, "value_uncond": 0.0005402180087644379}, {"x": 0.1449275362318847, "y": -2.753623188405797, "x2": 0.43478260869565233, "y2": -2.4637681159420293, "center_x": 0.2898550724637685, "center_y": -2.608695652173913, "value_uncond": 0.0006144928261623863}, {"x": 0.43478260869565233, "y": -2.753623188405797, "x2": 0.72463768115942, "y2": -2.4637681159420293, "center_x": 0.5797101449275361, "center_y": -2.608695652173913, "value_uncond": 0.0006924850326436628}, {"x": 0.72463768115942, "y": -2.753623188405797, "x2": 1.0144927536231876, "y2": -2.4637681159420293, "center_x": 0.8695652173913038, "center_y": -2.608695652173913, "value_uncond": 0.0007731251111857775}, {"x": 1.0144927536231894, "y": -2.753623188405797, "x2": 1.304347826086957, "y2": -2.4637681159420293, "center_x": 1.1594202898550732, "center_y": -2.608695652173913, "value_uncond": 0.0008551355912321876}, {"x": 1.304347826086957, "y": -2.753623188405797, "x2": 1.5942028985507246, "y2": -2.4637681159420293, "center_x": 1.4492753623188408, "center_y": -2.608695652173913, "value_uncond": 0.0009370569797628511}, {"x": 1.5942028985507246, "y": -2.753623188405797, "x2": 1.8840579710144922, "y2": -2.4637681159420293, "center_x": 1.7391304347826084, "center_y": -2.608695652173913, "value_uncond": 0.0010172854476969823}, {"x": 1.884057971014494, "y": -2.753623188405797, "x2": 2.1739130434782616, "y2": -2.4637681159420293, "center_x": 2.028985507246378, "center_y": -2.608695652173913, "value_uncond": 0.0010941213143847621}, {"x": 2.1739130434782616, "y": -2.753623188405797, "x2": 2.4637681159420293, "y2": -2.4637681159420293, "center_x": 2.3188405797101455, "center_y": -2.608695652173913, "value_uncond": 0.0011658265449969248}, {"x": 2.4637681159420293, "y": -2.753623188405797, "x2": 2.753623188405797, "y2": -2.4637681159420293, "center_x": 2.608695652173913, "center_y": -2.608695652173913, "value_uncond": 0.001230688706612493}, {"x": 2.753623188405797, "y": -2.753623188405797, "x2": 3.0434782608695645, "y2": -2.4637681159420293, "center_x": 2.8985507246376807, "center_y": -2.608695652173913, "value_uncond": 0.001287088190531882}, {"x": 3.0434782608695663, "y": -2.753623188405797, "x2": 3.333333333333334, "y2": -2.4637681159420293, "center_x": 3.18840579710145, "center_y": -2.608695652173913, "value_uncond": 0.0013335650661888887}, {"x": 3.333333333333334, "y": -2.753623188405797, "x2": 3.6231884057971016, "y2": -2.4637681159420293, "center_x": 3.4782608695652177, "center_y": -2.608695652173913, "value_uncond": 0.0013688817376036064}, {"x": 3.6231884057971016, "y": -2.753623188405797, "x2": 3.913043478260869, "y2": -2.4637681159420293, "center_x": 3.7681159420289854, "center_y": -2.608695652173913, "value_uncond": 0.0013920776580831067}, {"x": 3.913043478260871, "y": -2.753623188405797, "x2": 4.202898550724639, "y2": -2.4637681159420293, "center_x": 4.057971014492755, "center_y": -2.608695652173913, "value_uncond": 0.0014025127297047182}, {"x": 4.202898550724639, "y": -2.753623188405797, "x2": 4.492753623188406, "y2": -2.4637681159420293, "center_x": 4.347826086956522, "center_y": -2.608695652173913, "value_uncond": 0.0013998966513206438}, {"x": 4.492753623188406, "y": -2.753623188405797, "x2": 4.782608695652174, "y2": -2.4637681159420293, "center_x": 4.63768115942029, "center_y": -2.608695652173913, "value_uncond": 0.0013843023371089397}, {"x": 4.782608695652174, "y": -2.753623188405797, "x2": 5.0724637681159415, "y2": -2.4637681159420293, "center_x": 4.927536231884058, "center_y": -2.608695652173913, "value_uncond": 0.0013561625400098994}, {"x": 5.072463768115943, "y": -2.753623188405797, "x2": 5.362318840579711, "y2": -2.4637681159420293, "center_x": 5.217391304347827, "center_y": -2.608695652173913, "value_uncond": 0.0013162498982813378}, {"x": 5.362318840579711, "y": -2.753623188405797, "x2": 5.6521739130434785, "y2": -2.4637681159420293, "center_x": 5.507246376811595, "center_y": -2.608695652173913, "value_uncond": 0.0012656416892218962}, {"x": 5.6521739130434785, "y": -2.753623188405797, "x2": 5.942028985507246, "y2": -2.4637681159420293, "center_x": 5.797101449275362, "center_y": -2.608695652173913, "value_uncond": 0.001205671534013852}, {"x": 5.942028985507246, "y": -2.753623188405797, "x2": 6.231884057971014, "y2": -2.4637681159420293, "center_x": 6.08695652173913, "center_y": -2.608695652173913, "value_uncond": 0.0011378710744363743}, {"x": 6.2318840579710155, "y": -2.753623188405797, "x2": 6.521739130434783, "y2": -2.4637681159420293, "center_x": 6.376811594202899, "center_y": -2.608695652173913, "value_uncond": 0.0010639051769108295}, {"x": 6.521739130434785, "y": -2.753623188405797, "x2": 6.8115942028985526, "y2": -2.4637681159420293, "center_x": 6.666666666666669, "center_y": -2.608695652173913, "value_uncond": 0.000985504476607145}, {"x": 6.811594202898551, "y": -2.753623188405797, "x2": 7.101449275362318, "y2": -2.4637681159420293, "center_x": 6.956521739130435, "center_y": -2.608695652173913, "value_uncond": 0.0009043990451512076}, {"x": 7.10144927536232, "y": -2.753623188405797, "x2": 7.391304347826088, "y2": -2.4637681159420293, "center_x": 7.246376811594204, "center_y": -2.608695652173913, "value_uncond": 0.000822256666924762}, {"x": 7.391304347826086, "y": -2.753623188405797, "x2": 7.681159420289854, "y2": -2.4637681159420293, "center_x": 7.53623188405797, "center_y": -2.608695652173913, "value_uncond": 0.0007406286812263477}, {"x": 7.681159420289855, "y": -2.753623188405797, "x2": 7.971014492753623, "y2": -2.4637681159420293, "center_x": 7.826086956521739, "center_y": -2.608695652173913, "value_uncond": 0.0006609056486189536}, {"x": 7.971014492753625, "y": -2.753623188405797, "x2": 8.260869565217392, "y2": -2.4637681159420293, "center_x": 8.115942028985508, "center_y": -2.608695652173913, "value_uncond": 0.0005842842984864515}, {"x": 8.26086956521739, "y": -2.753623188405797, "x2": 8.550724637681158, "y2": -2.4637681159420293, "center_x": 8.405797101449274, "center_y": -2.608695652173913, "value_uncond": 0.0005117463834022718}, {"x": 8.55072463768116, "y": -2.753623188405797, "x2": 8.840579710144928, "y2": -2.4637681159420293, "center_x": 8.695652173913043, "center_y": -2.608695652173913, "value_uncond": 0.0004440492727523974}, {"x": 8.84057971014493, "y": -2.753623188405797, "x2": 9.130434782608697, "y2": -2.4637681159420293, "center_x": 8.985507246376812, "center_y": -2.608695652173913, "value_uncond": 0.00038172742144724434}, {"x": 9.130434782608695, "y": -2.753623188405797, "x2": 9.420289855072463, "y2": -2.4637681159420293, "center_x": 9.275362318840578, "center_y": -2.608695652173913, "value_uncond": 0.00032510329318550315}, {"x": 9.420289855072465, "y": -2.753623188405797, "x2": 9.710144927536232, "y2": -2.4637681159420293, "center_x": 9.565217391304348, "center_y": -2.608695652173913, "value_uncond": 0.00027430592812866244}, {"x": 9.710144927536234, "y": -2.753623188405797, "x2": 10.000000000000002, "y2": -2.4637681159420293, "center_x": 9.855072463768117, "center_y": -2.608695652173913, "value_uncond": 0.00022929513091647812}, {"x": 10.0, "y": -2.753623188405797, "x2": 10.289855072463768, "y2": -2.4637681159420293, "center_x": 10.144927536231883, "center_y": -2.608695652173913, "value_uncond": 0.00018988920938927623}, {"x": -10.0, "y": -2.4637681159420284, "x2": -9.710144927536232, "y2": -2.1739130434782608, "center_x": -9.855072463768117, "center_y": -2.3188405797101446, "value_uncond": 3.239965010092863e-08}, {"x": -9.710144927536232, "y": -2.4637681159420284, "x2": -9.420289855072465, "y2": -2.1739130434782608, "center_x": -9.565217391304348, "center_y": -2.3188405797101446, "value_uncond": 5.0620960930811905e-08}, {"x": -9.420289855072463, "y": -2.4637681159420284, "x2": -9.130434782608695, "y2": -2.1739130434782608, "center_x": -9.275362318840578, "center_y": -2.3188405797101446, "value_uncond": 7.835491874256564e-08}, {"x": -9.130434782608695, "y": -2.4637681159420284, "x2": -8.840579710144928, "y2": -2.1739130434782608, "center_x": -8.985507246376812, "center_y": -2.3188405797101446, "value_uncond": 1.2015669068110387e-07}, {"x": -8.840579710144928, "y": -2.4637681159420284, "x2": -8.55072463768116, "y2": -2.1739130434782608, "center_x": -8.695652173913043, "center_y": -2.3188405797101446, "value_uncond": 1.8254732244247453e-07}, {"x": -8.55072463768116, "y": -2.4637681159420284, "x2": -8.260869565217392, "y2": -2.1739130434782608, "center_x": -8.405797101449277, "center_y": -2.3188405797101446, "value_uncond": 2.747570155399246e-07}, {"x": -8.26086956521739, "y": -2.4637681159420284, "x2": -7.971014492753623, "y2": -2.1739130434782608, "center_x": -8.115942028985508, "center_y": -2.3188405797101446, "value_uncond": 4.0970185284334017e-07}, {"x": -7.971014492753623, "y": -2.4637681159420284, "x2": -7.681159420289855, "y2": -2.1739130434782608, "center_x": -7.826086956521739, "center_y": -2.3188405797101446, "value_uncond": 6.052473271715371e-07}, {"x": -7.681159420289855, "y": -2.4637681159420284, "x2": -7.391304347826088, "y2": -2.1739130434782608, "center_x": -7.536231884057972, "center_y": -2.3188405797101446, "value_uncond": 8.858162581182814e-07}, {"x": -7.391304347826087, "y": -2.4637681159420284, "x2": -7.101449275362319, "y2": -2.1739130434782608, "center_x": -7.246376811594203, "center_y": -2.3188405797101446, "value_uncond": 1.2843997970839784e-06}, {"x": -7.101449275362318, "y": -2.4637681159420284, "x2": -6.811594202898551, "y2": -2.1739130434782608, "center_x": -6.956521739130435, "center_y": -2.3188405797101446, "value_uncond": 1.8450265672647442e-06}, {"x": -6.811594202898551, "y": -2.4637681159420284, "x2": -6.521739130434783, "y2": -2.1739130434782608, "center_x": -6.666666666666667, "center_y": -2.3188405797101446, "value_uncond": 2.6257346452051987e-06}, {"x": -6.521739130434782, "y": -2.4637681159420284, "x2": -6.231884057971015, "y2": -2.1739130434782608, "center_x": -6.3768115942028984, "center_y": -2.3188405797101446, "value_uncond": 3.7020719872461713e-06}, {"x": -6.231884057971014, "y": -2.4637681159420284, "x2": -5.942028985507246, "y2": -2.1739130434782608, "center_x": -6.08695652173913, "center_y": -2.3188405797101446, "value_uncond": 5.171120986168483e-06}, {"x": -5.942028985507246, "y": -2.4637681159420284, "x2": -5.6521739130434785, "y2": -2.1739130434782608, "center_x": -5.797101449275362, "center_y": -2.3188405797101446, "value_uncond": 7.15600034546198e-06}, {"x": -5.6521739130434785, "y": -2.4637681159420284, "x2": -5.362318840579711, "y2": -2.1739130434782608, "center_x": -5.507246376811595, "center_y": -2.3188405797101446, "value_uncond": 9.810741242848559e-06}, {"x": -5.36231884057971, "y": -2.4637681159420284, "x2": -5.072463768115942, "y2": -2.1739130434782608, "center_x": -5.217391304347826, "center_y": -2.3188405797101446, "value_uncond": 1.3325364714431008e-05}, {"x": -5.0724637681159415, "y": -2.4637681159420284, "x2": -4.782608695652174, "y2": -2.1739130434782608, "center_x": -4.927536231884058, "center_y": -2.3188405797101446, "value_uncond": 1.7930904689325227e-05}, {"x": -4.782608695652174, "y": -2.4637681159420284, "x2": -4.492753623188406, "y2": -2.1739130434782608, "center_x": -4.63768115942029, "center_y": -2.3188405797101446, "value_uncond": 2.3904029398240288e-05}, {"x": -4.492753623188405, "y": -2.4637681159420284, "x2": -4.202898550724638, "y2": -2.1739130434782608, "center_x": -4.3478260869565215, "center_y": -2.3188405797101446, "value_uncond": 3.157081846080717e-05}, {"x": -4.202898550724638, "y": -2.4637681159420284, "x2": -3.91304347826087, "y2": -2.1739130434782608, "center_x": -4.057971014492754, "center_y": -2.3188405797101446, "value_uncond": 4.130916173779552e-05}, {"x": -3.913043478260869, "y": -2.4637681159420284, "x2": -3.6231884057971016, "y2": -2.1739130434782608, "center_x": -3.7681159420289854, "center_y": -2.3188405797101446, "value_uncond": 5.354916928628562e-05}, {"x": -3.6231884057971016, "y": -2.4637681159420284, "x2": -3.333333333333334, "y2": -2.1739130434782608, "center_x": -3.4782608695652177, "center_y": -2.3188405797101446, "value_uncond": 6.87709317214403e-05}, {"x": -3.333333333333333, "y": -2.4637681159420284, "x2": -3.0434782608695654, "y2": -2.1739130434782608, "center_x": -3.1884057971014492, "center_y": -2.3188405797101446, "value_uncond": 8.749896041355213e-05}, {"x": -3.0434782608695645, "y": -2.4637681159420284, "x2": -2.753623188405797, "y2": -2.1739130434782608, "center_x": -2.8985507246376807, "center_y": -2.3188405797101446, "value_uncond": 0.00011029268070578547}, {"x": -2.753623188405797, "y": -2.4637681159420284, "x2": -2.4637681159420293, "y2": -2.1739130434782608, "center_x": -2.608695652173913, "center_y": -2.3188405797101446, "value_uncond": 0.00013773246067225788}, {"x": -2.4637681159420284, "y": -2.4637681159420284, "x2": -2.1739130434782608, "y2": -2.1739130434782608, "center_x": -2.3188405797101446, "center_y": -2.3188405797101446, "value_uncond": 0.00017040084143240576}, {"x": -2.1739130434782608, "y": -2.4637681159420284, "x2": -1.8840579710144931, "y2": -2.1739130434782608, "center_x": -2.028985507246377, "center_y": -2.3188405797101446, "value_uncond": 0.00020885889596793423}, {"x": -1.8840579710144922, "y": -2.4637681159420284, "x2": -1.5942028985507246, "y2": -2.1739130434782608, "center_x": -1.7391304347826084, "center_y": -2.3188405797101446, "value_uncond": 0.0002536179778744869}, {"x": -1.5942028985507246, "y": -2.4637681159420284, "x2": -1.304347826086957, "y2": -2.1739130434782608, "center_x": -1.4492753623188408, "center_y": -2.3188405797101446, "value_uncond": 0.00030510751704652234}, {"x": -1.304347826086957, "y": -2.4637681159420284, "x2": -1.0144927536231894, "y2": -2.1739130434782608, "center_x": -1.1594202898550732, "center_y": -2.3188405797101446, "value_uncond": 0.0003636399541124481}, {"x": -1.0144927536231876, "y": -2.4637681159420284, "x2": -0.72463768115942, "y2": -2.1739130434782608, "center_x": -0.8695652173913038, "center_y": -2.3188405797101446, "value_uncond": 0.0004293743485324563}, {"x": -0.72463768115942, "y": -2.4637681159420284, "x2": -0.43478260869565233, "y2": -2.1739130434782608, "center_x": -0.5797101449275361, "center_y": -2.3188405797101446, "value_uncond": 0.0005022806078948621}, {"x": -0.43478260869565233, "y": -2.4637681159420284, "x2": -0.1449275362318847, "y2": -2.1739130434782608, "center_x": -0.2898550724637685, "center_y": -2.3188405797101446, "value_uncond": 0.0005821066242024608}, {"x": -0.14492753623188293, "y": -2.4637681159420284, "x2": 0.1449275362318847, "y2": -2.1739130434782608, "center_x": 8.881784197001252e-16, "center_y": -2.3188405797101446, "value_uncond": 0.0006683508215935073}, {"x": 0.1449275362318847, "y": -2.4637681159420284, "x2": 0.43478260869565233, "y2": -2.1739130434782608, "center_x": 0.2898550724637685, "center_y": -2.3188405797101446, "value_uncond": 0.0007602426771522744}, {"x": 0.43478260869565233, "y": -2.4637681159420284, "x2": 0.72463768115942, "y2": -2.1739130434782608, "center_x": 0.5797101449275361, "center_y": -2.3188405797101446, "value_uncond": 0.0008567336390120467}, {"x": 0.72463768115942, "y": -2.4637681159420284, "x2": 1.0144927536231876, "y2": -2.1739130434782608, "center_x": 0.8695652173913038, "center_y": -2.3188405797101446, "value_uncond": 0.0009565005143708588}, {"x": 1.0144927536231894, "y": -2.4637681159420284, "x2": 1.304347826086957, "y2": -2.1739130434782608, "center_x": 1.1594202898550732, "center_y": -2.3188405797101446, "value_uncond": 0.0010579628329700835}, {"x": 1.304347826086957, "y": -2.4637681159420284, "x2": 1.5942028985507246, "y2": -2.1739130434782608, "center_x": 1.4492753623188408, "center_y": -2.3188405797101446, "value_uncond": 0.0011593149286837688}, {"x": 1.5942028985507246, "y": -2.4637681159420284, "x2": 1.8840579710144922, "y2": -2.1739130434782608, "center_x": 1.7391304347826084, "center_y": -2.3188405797101446, "value_uncond": 0.0012585725646548536}, {"x": 1.884057971014494, "y": -2.4637681159420284, "x2": 2.1739130434782616, "y2": -2.1739130434782608, "center_x": 2.028985507246378, "center_y": -2.3188405797101446, "value_uncond": 0.0013536329176891404}, {"x": 2.1739130434782616, "y": -2.4637681159420284, "x2": 2.4637681159420293, "y2": -2.1739130434782608, "center_x": 2.3188405797101455, "center_y": -2.3188405797101446, "value_uncond": 0.0014423457132914212}, {"x": 2.4637681159420293, "y": -2.4637681159420284, "x2": 2.753623188405797, "y2": -2.1739130434782608, "center_x": 2.608695652173913, "center_y": -2.3188405797101446, "value_uncond": 0.0015225923513204752}, {"x": 2.753623188405797, "y": -2.4637681159420284, "x2": 3.0434782608695645, "y2": -2.1739130434782608, "center_x": 2.8985507246376807, "center_y": -2.3188405797101446, "value_uncond": 0.001592369072576375}, {"x": 3.0434782608695663, "y": -2.4637681159420284, "x2": 3.333333333333334, "y2": -2.1739130434782608, "center_x": 3.18840579710145, "center_y": -2.3188405797101446, "value_uncond": 0.0016498696696066464}, {"x": 3.333333333333334, "y": -2.4637681159420284, "x2": 3.6231884057971016, "y2": -2.1739130434782608, "center_x": 3.4782608695652177, "center_y": -2.3188405797101446, "value_uncond": 0.001693563004469659}, {"x": 3.6231884057971016, "y": -2.4637681159420284, "x2": 3.913043478260869, "y2": -2.1739130434782608, "center_x": 3.7681159420289854, "center_y": -2.3188405797101446, "value_uncond": 0.0017222607010635757}, {"x": 3.913043478260871, "y": -2.4637681159420284, "x2": 4.202898550724639, "y2": -2.1739130434782608, "center_x": 4.057971014492755, "center_y": -2.3188405797101446, "value_uncond": 0.001735170838412833}, {"x": 4.202898550724639, "y": -2.4637681159420284, "x2": 4.492753623188406, "y2": -2.1739130434782608, "center_x": 4.347826086956522, "center_y": -2.3188405797101446, "value_uncond": 0.0017319342596446646}, {"x": 4.492753623188406, "y": -2.4637681159420284, "x2": 4.782608695652174, "y2": -2.1739130434782608, "center_x": 4.63768115942029, "center_y": -2.3188405797101446, "value_uncond": 0.0017126411732490121}, {"x": 4.782608695652174, "y": -2.4637681159420284, "x2": 5.0724637681159415, "y2": -2.1739130434782608, "center_x": 4.927536231884058, "center_y": -2.3188405797101446, "value_uncond": 0.001677826975637138}, {"x": 5.072463768115943, "y": -2.4637681159420284, "x2": 5.362318840579711, "y2": -2.1739130434782608, "center_x": 5.217391304347827, "center_y": -2.3188405797101446, "value_uncond": 0.0016284475649946408}, {"x": 5.362318840579711, "y": -2.4637681159420284, "x2": 5.6521739130434785, "y2": -2.1739130434782608, "center_x": 5.507246376811595, "center_y": -2.3188405797101446, "value_uncond": 0.0015658357350380376}, {"x": 5.6521739130434785, "y": -2.4637681159420284, "x2": 5.942028985507246, "y2": -2.1739130434782608, "center_x": 5.797101449275362, "center_y": -2.3188405797101446, "value_uncond": 0.0014916414248630431}, {"x": 5.942028985507246, "y": -2.4637681159420284, "x2": 6.231884057971014, "y2": -2.1739130434782608, "center_x": 6.08695652173913, "center_y": -2.3188405797101446, "value_uncond": 0.0014077595621190266}, {"x": 6.2318840579710155, "y": -2.4637681159420284, "x2": 6.521739130434783, "y2": -2.1739130434782608, "center_x": 6.376811594202899, "center_y": -2.3188405797101446, "value_uncond": 0.0013162498982813384}, {"x": 6.521739130434785, "y": -2.4637681159420284, "x2": 6.8115942028985526, "y2": -2.1739130434782608, "center_x": 6.666666666666669, "center_y": -2.3188405797101446, "value_uncond": 0.0012192535530811497}, {"x": 6.811594202898551, "y": -2.4637681159420284, "x2": 7.101449275362318, "y2": -2.1739130434782608, "center_x": 6.956521739130435, "center_y": -2.3188405797101446, "value_uncond": 0.001118910949040142}, {"x": 7.10144927536232, "y": -2.4637681159420284, "x2": 7.391304347826088, "y2": -2.1739130434782608, "center_x": 7.246376811594204, "center_y": -2.3188405797101446, "value_uncond": 0.0010172854476969823}, {"x": 7.391304347826086, "y": -2.4637681159420284, "x2": 7.681159420289854, "y2": -2.1739130434782608, "center_x": 7.53623188405797, "center_y": -2.3188405797101446, "value_uncond": 0.0009162963462204569}, {"x": 7.681159420289855, "y": -2.4637681159420284, "x2": 7.971014492753623, "y2": -2.1739130434782608, "center_x": 7.826086956521739, "center_y": -2.3188405797101446, "value_uncond": 0.0008176640283809533}, {"x": 7.971014492753625, "y": -2.4637681159420284, "x2": 8.260869565217392, "y2": -2.1739130434782608, "center_x": 8.115942028985508, "center_y": -2.3188405797101446, "value_uncond": 0.0007228690724893741}, {"x": 8.26086956521739, "y": -2.4637681159420284, "x2": 8.550724637681158, "y2": -2.1739130434782608, "center_x": 8.405797101449274, "center_y": -2.3188405797101446, "value_uncond": 0.0006331260902921042}, {"x": 8.55072463768116, "y": -2.4637681159420284, "x2": 8.840579710144928, "y2": -2.1739130434782608, "center_x": 8.695652173913043, "center_y": -2.3188405797101446, "value_uncond": 0.0005493720895215017}, {"x": 8.84057971014493, "y": -2.4637681159420284, "x2": 9.130434782608697, "y2": -2.1739130434782608, "center_x": 8.985507246376812, "center_y": -2.3188405797101446, "value_uncond": 0.000472268290967481}, {"x": 9.130434782608695, "y": -2.4637681159420284, "x2": 9.420289855072463, "y2": -2.1739130434782608, "center_x": 9.275362318840578, "center_y": -2.3188405797101446, "value_uncond": 0.0004022136426000418}, {"x": 9.420289855072465, "y": -2.4637681159420284, "x2": 9.710144927536232, "y2": -2.1739130434782608, "center_x": 9.565217391304348, "center_y": -2.3188405797101446, "value_uncond": 0.0003393677912590714}, {"x": 9.710144927536234, "y": -2.4637681159420284, "x2": 10.000000000000002, "y2": -2.1739130434782608, "center_x": 9.855072463768117, "center_y": -2.3188405797101446, "value_uncond": 0.0002836810077581909}, {"x": 10.0, "y": -2.4637681159420284, "x2": 10.289855072463768, "y2": -2.1739130434782608, "center_x": 10.144927536231883, "center_y": -2.3188405797101446, "value_uncond": 0.00023492850487774955}, {"x": -10.0, "y": -2.1739130434782608, "x2": -9.710144927536232, "y2": -1.8840579710144931, "center_x": -9.855072463768117, "center_y": -2.028985507246377, "value_uncond": 3.9711982012199266e-08}, {"x": -9.710144927536232, "y": -2.1739130434782608, "x2": -9.420289855072465, "y2": -1.8840579710144931, "center_x": -9.565217391304348, "center_y": -2.028985507246377, "value_uncond": 6.204569134735891e-08}, {"x": -9.420289855072463, "y": -2.1739130434782608, "x2": -9.130434782608695, "y2": -1.8840579710144931, "center_x": -9.275362318840578, "center_y": -2.028985507246377, "value_uncond": 9.603897307467887e-08}, {"x": -9.130434782608695, "y": -2.1739130434782608, "x2": -8.840579710144928, "y2": -1.8840579710144931, "center_x": -8.985507246376812, "center_y": -2.028985507246377, "value_uncond": 1.4727505772775686e-07}, {"x": -8.840579710144928, "y": -2.1739130434782608, "x2": -8.55072463768116, "y2": -1.8840579710144931, "center_x": -8.695652173913043, "center_y": -2.028985507246377, "value_uncond": 2.2374673685142385e-07}, {"x": -8.55072463768116, "y": -2.1739130434782608, "x2": -8.260869565217392, "y2": -1.8840579710144931, "center_x": -8.405797101449277, "center_y": -2.028985507246377, "value_uncond": 3.3676739177298414e-07}, {"x": -8.26086956521739, "y": -2.1739130434782608, "x2": -7.971014492753623, "y2": -1.8840579710144931, "center_x": -8.115942028985508, "center_y": -2.028985507246377, "value_uncond": 5.021681579830735e-07}, {"x": -7.971014492753623, "y": -2.1739130434782608, "x2": -7.681159420289855, "y2": -1.8840579710144931, "center_x": -7.826086956521739, "center_y": -2.028985507246377, "value_uncond": 7.418466216361657e-07}, {"x": -7.681159420289855, "y": -2.1739130434782608, "x2": -7.391304347826088, "y2": -1.8840579710144931, "center_x": -7.536231884057972, "center_y": -2.028985507246377, "value_uncond": 1.0857376298486197e-06}, {"x": -7.391304347826087, "y": -2.1739130434782608, "x2": -7.101449275362319, "y2": -1.8840579710144931, "center_x": -7.246376811594203, "center_y": -2.028985507246377, "value_uncond": 1.574278162862302e-06}, {"x": -7.101449275362318, "y": -2.1739130434782608, "x2": -6.811594202898551, "y2": -1.8840579710144931, "center_x": -6.956521739130435, "center_y": -2.028985507246377, "value_uncond": 2.261433738420133e-06}, {"x": -6.811594202898551, "y": -2.1739130434782608, "x2": -6.521739130434783, "y2": -1.8840579710144931, "center_x": -6.666666666666667, "center_y": -2.028985507246377, "value_uncond": 3.2183411448696105e-06}, {"x": -6.521739130434782, "y": -2.1739130434782608, "x2": -6.231884057971015, "y2": -1.8840579710144931, "center_x": -6.3768115942028984, "center_y": -2.028985507246377, "value_uncond": 4.537598884784661e-06}, {"x": -6.231884057971014, "y": -2.1739130434782608, "x2": -5.942028985507246, "y2": -1.8840579710144931, "center_x": -6.08695652173913, "center_y": -2.028985507246377, "value_uncond": 6.338200040615355e-06}, {"x": -5.942028985507246, "y": -2.1739130434782608, "x2": -5.6521739130434785, "y2": -1.8840579710144931, "center_x": -5.797101449275362, "center_y": -2.028985507246377, "value_uncond": 8.771050184586184e-06}, {"x": -5.6521739130434785, "y": -2.1739130434782608, "x2": -5.362318840579711, "y2": -1.8840579710144931, "center_x": -5.507246376811595, "center_y": -2.028985507246377, "value_uncond": 1.2024944051824084e-05}, {"x": -5.36231884057971, "y": -2.1739130434782608, "x2": -5.072463768115942, "y2": -1.8840579710144931, "center_x": -5.217391304347826, "center_y": -2.028985507246377, "value_uncond": 1.6332788847936102e-05}, {"x": -5.0724637681159415, "y": -2.1739130434782608, "x2": -4.782608695652174, "y2": -1.8840579710144931, "center_x": -4.927536231884058, "center_y": -2.028985507246377, "value_uncond": 2.197776094083601e-05}, {"x": -4.782608695652174, "y": -2.1739130434782608, "x2": -4.492753623188406, "y2": -1.8840579710144931, "center_x": -4.63768115942029, "center_y": -2.028985507246377, "value_uncond": 2.929897028285477e-05}, {"x": -4.492753623188405, "y": -2.1739130434782608, "x2": -4.202898550724638, "y2": -1.8840579710144931, "center_x": -4.3478260869565215, "center_y": -2.028985507246377, "value_uncond": 3.869608995530632e-05}, {"x": -4.202898550724638, "y": -2.1739130434782608, "x2": -3.91304347826087, "y2": -1.8840579710144931, "center_x": -4.057971014492754, "center_y": -2.028985507246377, "value_uncond": 5.063229642172422e-05}, {"x": -3.913043478260869, "y": -2.1739130434782608, "x2": -3.6231884057971016, "y2": -1.8840579710144931, "center_x": -3.7681159420289854, "center_y": -2.028985507246377, "value_uncond": 6.563477200651124e-05}, {"x": -3.6231884057971016, "y": -2.1739130434782608, "x2": -3.333333333333334, "y2": -1.8840579710144931, "center_x": -3.4782608695652177, "center_y": -2.028985507246377, "value_uncond": 8.429195978896527e-05}, {"x": -3.333333333333333, "y": -2.1739130434782608, "x2": -3.0434782608695654, "y2": -1.8840579710144931, "center_x": -3.1884057971014492, "center_y": -2.028985507246377, "value_uncond": 0.00010724674899898157}, {"x": -3.0434782608695645, "y": -2.1739130434782608, "x2": -2.753623188405797, "y2": -1.8840579710144931, "center_x": -2.8985507246376807, "center_y": -2.028985507246377, "value_uncond": 0.00013518482263300295}, {"x": -2.753623188405797, "y": -2.1739130434782608, "x2": -2.4637681159420293, "y2": -1.8840579710144931, "center_x": -2.608695652173913, "center_y": -2.028985507246377, "value_uncond": 0.0001688175330188482}, {"x": -2.4637681159420284, "y": -2.1739130434782608, "x2": -2.1739130434782608, "y2": -1.8840579710144931, "center_x": -2.3188405797101446, "center_y": -2.028985507246377, "value_uncond": 0.00020885889596793423}, {"x": -2.1739130434782608, "y": -2.1739130434782608, "x2": -1.8840579710144931, "y2": -1.8840579710144931, "center_x": -2.028985507246377, "center_y": -2.028985507246377, "value_uncond": 0.00025599661397357725}, {"x": -1.8840579710144922, "y": -2.1739130434782608, "x2": -1.5942028985507246, "y2": -1.8840579710144931, "center_x": -1.7391304347826084, "center_y": -2.028985507246377, "value_uncond": 0.0003108574488905764}, {"x": -1.5942028985507246, "y": -2.1739130434782608, "x2": -1.304347826086957, "y2": -1.8840579710144931, "center_x": -1.4492753623188408, "center_y": -2.028985507246377, "value_uncond": 0.0003739677493736574}, {"x": -1.304347826086957, "y": -2.1739130434782608, "x2": -1.0144927536231894, "y2": -1.8840579710144931, "center_x": -1.1594202898550732, "center_y": -2.028985507246377, "value_uncond": 0.00044571047130588027}, {"x": -1.0144927536231876, "y": -2.1739130434782608, "x2": -0.72463768115942, "y2": -1.8840579710144931, "center_x": -0.8695652173913038, "center_y": -2.028985507246377, "value_uncond": 0.0005262805725464293}, {"x": -0.72463768115942, "y": -2.1739130434782608, "x2": -0.43478260869565233, "y2": -1.8840579710144931, "center_x": -0.5797101449275361, "center_y": -2.028985507246377, "value_uncond": 0.0006156411690762544}, {"x": -0.43478260869565233, "y": -2.1739130434782608, "x2": -0.1449275362318847, "y2": -1.8840579710144931, "center_x": -0.2898550724637685, "center_y": -2.028985507246377, "value_uncond": 0.0007134832542172296}, {"x": -0.14492753623188293, "y": -2.1739130434782608, "x2": 0.1449275362318847, "y2": -1.8840579710144931, "center_x": 8.881784197001252e-16, "center_y": -2.028985507246377, "value_uncond": 0.0008191920506017823}, {"x": 0.1449275362318847, "y": -2.1739130434782608, "x2": 0.43478260869565233, "y2": -1.8840579710144931, "center_x": 0.2898550724637685, "center_y": -2.028985507246377, "value_uncond": 0.0009318231346921867}, {"x": 0.43478260869565233, "y": -2.1739130434782608, "x2": 0.72463768115942, "y2": -1.8840579710144931, "center_x": 0.5797101449275361, "center_y": -2.028985507246377, "value_uncond": 0.0010500913051748446}, {"x": 0.72463768115942, "y": -2.1739130434782608, "x2": 1.0144927536231876, "y2": -1.8840579710144931, "center_x": 0.8695652173913038, "center_y": -2.028985507246377, "value_uncond": 0.001172374735623031}, {"x": 1.0144927536231894, "y": -2.1739130434782608, "x2": 1.304347826086957, "y2": -1.8840579710144931, "center_x": 1.1594202898550732, "center_y": -2.028985507246377, "value_uncond": 0.0012967362567683765}, {"x": 1.304347826086957, "y": -2.1739130434782608, "x2": 1.5942028985507246, "y2": -1.8840579710144931, "center_x": 1.4492753623188408, "center_y": -2.028985507246377, "value_uncond": 0.0014209626786384445}, {"x": 1.5942028985507246, "y": -2.1739130434782608, "x2": 1.8840579710144922, "y2": -1.8840579710144931, "center_x": 1.7391304347826084, "center_y": -2.028985507246377, "value_uncond": 0.0015426219385989153}, {"x": 1.884057971014494, "y": -2.1739130434782608, "x2": 2.1739130434782616, "y2": -1.8840579710144931, "center_x": 2.028985507246378, "center_y": -2.028985507246377, "value_uncond": 0.0016591366237270336}, {"x": 2.1739130434782616, "y": -2.1739130434782608, "x2": 2.4637681159420293, "y2": -1.8840579710144931, "center_x": 2.3188405797101455, "center_y": -2.028985507246377, "value_uncond": 0.0017678711604345368}, {"x": 2.4637681159420293, "y": -2.1739130434782608, "x2": 2.753623188405797, "y2": -1.8840579710144931, "center_x": 2.608695652173913, "center_y": -2.028985507246377, "value_uncond": 0.001866228798125751}, {"x": 2.753623188405797, "y": -2.1739130434782608, "x2": 3.0434782608695645, "y2": -1.8840579710144931, "center_x": 2.8985507246376807, "center_y": -2.028985507246377, "value_uncond": 0.00195175354579286}, {"x": 3.0434782608695663, "y": -2.1739130434782608, "x2": 3.333333333333334, "y2": -1.8840579710144931, "center_x": 3.18840579710145, "center_y": -2.028985507246377, "value_uncond": 0.0020222315499640042}, {"x": 3.333333333333334, "y": -2.1739130434782608, "x2": 3.6231884057971016, "y2": -1.8840579710144931, "center_x": 3.4782608695652177, "center_y": -2.028985507246377, "value_uncond": 0.002075786107581996}, {"x": 3.6231884057971016, "y": -2.1739130434782608, "x2": 3.913043478260869, "y2": -1.8840579710144931, "center_x": 3.7681159420289854, "center_y": -2.028985507246377, "value_uncond": 0.0021109606359296495}, {"x": 3.913043478260871, "y": -2.1739130434782608, "x2": 4.202898550724639, "y2": -1.8840579710144931, "center_x": 4.057971014492755, "center_y": -2.028985507246377, "value_uncond": 0.002126784484045035}, {"x": 4.202898550724639, "y": -2.1739130434782608, "x2": 4.492753623188406, "y2": -1.8840579710144931, "center_x": 4.347826086956522, "center_y": -2.028985507246377, "value_uncond": 0.0021228174363324154}, {"x": 4.492753623188406, "y": -2.1739130434782608, "x2": 4.782608695652174, "y2": -1.8840579710144931, "center_x": 4.63768115942029, "center_y": -2.028985507246377, "value_uncond": 0.002099170060588626}, {"x": 4.782608695652174, "y": -2.1739130434782608, "x2": 5.0724637681159415, "y2": -1.8840579710144931, "center_x": 4.927536231884058, "center_y": -2.028985507246377, "value_uncond": 0.0020564985877478664}, {"x": 5.072463768115943, "y": -2.1739130434782608, "x2": 5.362318840579711, "y2": -1.8840579710144931, "center_x": 5.217391304347827, "center_y": -2.028985507246377, "value_uncond": 0.001995974654276386}, {"x": 5.362318840579711, "y": -2.1739130434782608, "x2": 5.6521739130434785, "y2": -1.8840579710144931, "center_x": 5.507246376811595, "center_y": -2.028985507246377, "value_uncond": 0.0019192318543621285}, {"x": 5.6521739130434785, "y": -2.1739130434782608, "x2": 5.942028985507246, "y2": -1.8840579710144931, "center_x": 5.797101449275362, "center_y": -2.028985507246377, "value_uncond": 0.0018282925046500629}, {"x": 5.942028985507246, "y": -2.1739130434782608, "x2": 6.231884057971014, "y2": -1.8840579710144931, "center_x": 6.08695652173913, "center_y": -2.028985507246377, "value_uncond": 0.0017254792022204579}, {"x": 6.2318840579710155, "y": -2.1739130434782608, "x2": 6.521739130434783, "y2": -1.8840579710144931, "center_x": 6.376811594202899, "center_y": -2.028985507246377, "value_uncond": 0.0016133165673480364}, {"x": 6.521739130434785, "y": -2.1739130434782608, "x2": 6.8115942028985526, "y2": -1.8840579710144931, "center_x": 6.666666666666669, "center_y": -2.028985507246377, "value_uncond": 0.0014944289527028226}, {"x": 6.811594202898551, "y": -2.1739130434782608, "x2": 7.101449275362318, "y2": -1.8840579710144931, "center_x": 6.956521739130435, "center_y": -2.028985507246377, "value_uncond": 0.0013714398563909602}, {"x": 7.10144927536232, "y": -2.1739130434782608, "x2": 7.391304347826088, "y2": -1.8840579710144931, "center_x": 7.246376811594204, "center_y": -2.028985507246377, "value_uncond": 0.001246878323511795}, {"x": 7.391304347826086, "y": -2.1739130434782608, "x2": 7.681159420289854, "y2": -1.8840579710144931, "center_x": 7.53623188405797, "center_y": -2.028985507246377, "value_uncond": 0.0011230968206631274}, {"x": 7.681159420289855, "y": -2.1739130434782608, "x2": 7.971014492753623, "y2": -1.8840579710144931, "center_x": 7.826086956521739, "center_y": -2.028985507246377, "value_uncond": 0.0010022040079425468}, {"x": 7.971014492753625, "y": -2.1739130434782608, "x2": 8.260869565217392, "y2": -1.8840579710144931, "center_x": 8.115942028985508, "center_y": -2.028985507246377, "value_uncond": 0.0008860146178878153}, {"x": 8.26086956521739, "y": -2.1739130434782608, "x2": 8.550724637681158, "y2": -1.8840579710144931, "center_x": 8.405797101449274, "center_y": -2.028985507246377, "value_uncond": 0.0007760173900277234}, {"x": 8.55072463768116, "y": -2.1739130434782608, "x2": 8.840579710144928, "y2": -1.8840579710144931, "center_x": 8.695652173913043, "center_y": -2.028985507246377, "value_uncond": 0.0006733608069568906}, {"x": 8.84057971014493, "y": -2.1739130434782608, "x2": 9.130434782608697, "y2": -1.8840579710144931, "center_x": 8.985507246376812, "center_y": -2.028985507246377, "value_uncond": 0.0005788553215053133}, {"x": 9.130434782608695, "y": -2.1739130434782608, "x2": 9.420289855072463, "y2": -1.8840579710144931, "center_x": 9.275362318840578, "center_y": -2.028985507246377, "value_uncond": 0.0004929899208860965}, {"x": 9.420289855072465, "y": -2.1739130434782608, "x2": 9.710144927536232, "y2": -1.8840579710144931, "center_x": 9.565217391304348, "center_y": -2.028985507246377, "value_uncond": 0.0004159602829048383}, {"x": 9.710144927536234, "y": -2.1739130434782608, "x2": 10.000000000000002, "y2": -1.8840579710144931, "center_x": 9.855072463768117, "center_y": -2.028985507246377, "value_uncond": 0.00034770545491085266}, {"x": 10.0, "y": -2.1739130434782608, "x2": 10.289855072463768, "y2": -1.8840579710144931, "center_x": 10.144927536231883, "center_y": -2.028985507246377, "value_uncond": 0.00028794991707613093}, {"x": -10.0, "y": -1.8840579710144922, "x2": -9.710144927536232, "y2": -1.5942028985507246, "center_x": -9.855072463768117, "center_y": -1.7391304347826084, "value_uncond": 4.822237773806992e-08}, {"x": -9.710144927536232, "y": -1.8840579710144922, "x2": -9.420289855072465, "y2": -1.5942028985507246, "center_x": -9.565217391304348, "center_y": -1.7391304347826084, "value_uncond": 7.53422673351565e-08}, {"x": -9.420289855072463, "y": -1.8840579710144922, "x2": -9.130434782608695, "y2": -1.5942028985507246, "center_x": -9.275362318840578, "center_y": -1.7391304347826084, "value_uncond": 1.1662041032756351e-07}, {"x": -9.130434782608695, "y": -1.8840579710144922, "x2": -8.840579710144928, "y2": -1.5942028985507246, "center_x": -8.985507246376812, "center_y": -1.7391304347826084, "value_uncond": 1.7883654013950458e-07}, {"x": -8.840579710144928, "y": -1.8840579710144922, "x2": -8.55072463768116, "y2": -1.5942028985507246, "center_x": -8.695652173913043, "center_y": -1.7391304347826084, "value_uncond": 2.7169632728971814e-07}, {"x": -8.55072463768116, "y": -1.8840579710144922, "x2": -8.260869565217392, "y2": -1.5942028985507246, "center_x": -8.405797101449277, "center_y": -1.7391304347826084, "value_uncond": 4.089376443349696e-07}, {"x": -8.26086956521739, "y": -1.8840579710144922, "x2": -7.971014492753623, "y2": -1.5942028985507246, "center_x": -8.115942028985508, "center_y": -1.7391304347826084, "value_uncond": 6.09784286134387e-07}, {"x": -7.971014492753623, "y": -1.8840579710144922, "x2": -7.681159420289855, "y2": -1.5942028985507246, "center_x": -7.826086956521739, "center_y": -1.7391304347826084, "value_uncond": 9.008265566110717e-07}, {"x": -7.681159420289855, "y": -1.8840579710144922, "x2": -7.391304347826088, "y2": -1.5942028985507246, "center_x": -7.536231884057972, "center_y": -1.7391304347826084, "value_uncond": 1.3184144295521006e-06}, {"x": -7.391304347826087, "y": -1.8840579710144922, "x2": -7.101449275362319, "y2": -1.5942028985507246, "center_x": -7.246376811594203, "center_y": -1.7391304347826084, "value_uncond": 1.9116506501997293e-06}, {"x": -7.101449275362318, "y": -1.8840579710144922, "x2": -6.811594202898551, "y2": -1.5942028985507246, "center_x": -6.956521739130435, "center_y": -1.7391304347826084, "value_uncond": 2.746065707075796e-06}, {"x": -6.811594202898551, "y": -1.8840579710144922, "x2": -6.521739130434783, "y2": -1.5942028985507246, "center_x": -6.666666666666667, "center_y": -1.7391304347826084, "value_uncond": 3.9080412136115375e-06}, {"x": -6.521739130434782, "y": -1.8840579710144922, "x2": -6.231884057971015, "y2": -1.5942028985507246, "center_x": -6.3768115942028984, "center_y": -1.7391304347826084, "value_uncond": 5.510019806584133e-06}, {"x": -6.231884057971014, "y": -1.8840579710144922, "x2": -5.942028985507246, "y2": -1.5942028985507246, "center_x": -6.08695652173913, "center_y": -1.7391304347826084, "value_uncond": 7.696495139530241e-06}, {"x": -5.942028985507246, "y": -1.8840579710144922, "x2": -5.6521739130434785, "y2": -1.5942028985507246, "center_x": -5.797101449275362, "center_y": -1.7391304347826084, "value_uncond": 1.0650712297128669e-05}, {"x": -5.6521739130434785, "y": -1.8840579710144922, "x2": -5.362318840579711, "y2": -1.5942028985507246, "center_x": -5.507246376811595, "center_y": -1.7391304347826084, "value_uncond": 1.4601925287135904e-05}, {"x": -5.36231884057971, "y": -1.8840579710144922, "x2": -5.072463768115942, "y2": -1.5942028985507246, "center_x": -5.217391304347826, "center_y": -1.7391304347826084, "value_uncond": 1.9832954021266523e-05}, {"x": -5.0724637681159415, "y": -1.8840579710144922, "x2": -4.782608695652174, "y2": -1.5942028985507246, "center_x": -4.927536231884058, "center_y": -1.7391304347826084, "value_uncond": 2.6687660404369246e-05}, {"x": -4.782608695652174, "y": -1.8840579710144922, "x2": -4.492753623188406, "y2": -1.5942028985507246, "center_x": -4.63768115942029, "center_y": -1.7391304347826084, "value_uncond": 3.557782665902412e-05}, {"x": -4.492753623188405, "y": -1.8840579710144922, "x2": -4.202898550724638, "y2": -1.5942028985507246, "center_x": -4.3478260869565215, "center_y": -1.7391304347826084, "value_uncond": 4.698877699526274e-05}, {"x": -4.202898550724638, "y": -1.8840579710144922, "x2": -3.91304347826087, "y2": -1.5942028985507246, "center_x": -4.057971014492754, "center_y": -1.7391304347826084, "value_uncond": 6.148294796880874e-05}, {"x": -3.913043478260869, "y": -1.8840579710144922, "x2": -3.6231884057971016, "y2": -1.5942028985507246, "center_x": -3.7681159420289854, "center_y": -1.7391304347826084, "value_uncond": 7.97004986423945e-05}, {"x": -3.6231884057971016, "y": -1.8840579710144922, "x2": -3.333333333333334, "y2": -1.5942028985507246, "center_x": -3.4782608695652177, "center_y": -1.7391304347826084, "value_uncond": 0.00010235597719542227}, {"x": -3.333333333333333, "y": -1.8840579710144922, "x2": -3.0434782608695654, "y2": -1.5942028985507246, "center_x": -3.1884057971014492, "center_y": -1.7391304347826084, "value_uncond": 0.0001302300459297184}, {"x": -3.0434782608695645, "y": -1.8840579710144922, "x2": -2.753623188405797, "y2": -1.5942028985507246, "center_x": -2.8985507246376807, "center_y": -1.7391304347826084, "value_uncond": 0.0001641553317449651}, {"x": -2.753623188405797, "y": -1.8840579710144922, "x2": -2.4637681159420293, "y2": -1.5942028985507246, "center_x": -2.608695652173913, "center_y": -1.7391304347826084, "value_uncond": 0.00020499563188619514}, {"x": -2.4637681159420284, "y": -1.8840579710144922, "x2": -2.1739130434782608, "y2": -1.5942028985507246, "center_x": -2.3188405797101446, "center_y": -1.7391304347826084, "value_uncond": 0.0002536179778744869}, {"x": -2.1739130434782608, "y": -1.8840579710144922, "x2": -1.8840579710144931, "y2": -1.5942028985507246, "center_x": -2.028985507246377, "center_y": -1.7391304347826084, "value_uncond": 0.0003108574488905764}, {"x": -1.8840579710144922, "y": -1.8840579710144922, "x2": -1.5942028985507246, "y2": -1.5942028985507246, "center_x": -1.7391304347826084, "center_y": -1.7391304347826084, "value_uncond": 0.0003774751237167975}, {"x": -1.5942028985507246, "y": -1.8840579710144922, "x2": -1.304347826086957, "y2": -1.5942028985507246, "center_x": -1.4492753623188408, "center_y": -1.7391304347826084, "value_uncond": 0.00045411014908831735}, {"x": -1.304347826086957, "y": -1.8840579710144922, "x2": -1.0144927536231894, "y2": -1.5942028985507246, "center_x": -1.1594202898550732, "center_y": -1.7391304347826084, "value_uncond": 0.0005412275494716625}, {"x": -1.0144927536231876, "y": -1.8840579710144922, "x2": -0.72463768115942, "y2": -1.5942028985507246, "center_x": -0.8695652173913038, "center_y": -1.7391304347826084, "value_uncond": 0.0006390640627744426}, {"x": -0.72463768115942, "y": -1.8840579710144922, "x2": -0.43478260869565233, "y2": -1.5942028985507246, "center_x": -0.5797101449275361, "center_y": -1.7391304347826084, "value_uncond": 0.000747574900622746}, {"x": -0.43478260869565233, "y": -1.8840579710144922, "x2": -0.1449275362318847, "y2": -1.5942028985507246, "center_x": -0.2898550724637685, "center_y": -1.7391304347826084, "value_uncond": 0.0008663848352892936}, {"x": -0.14492753623188293, "y": -1.8840579710144922, "x2": 0.1449275362318847, "y2": -1.5942028985507246, "center_x": 8.881784197001252e-16, "center_y": -1.7391304347826084, "value_uncond": 0.0009947473407901947}, {"x": 0.1449275362318847, "y": -1.8840579710144922, "x2": 0.43478260869565233, "y2": -1.5942028985507246, "center_x": 0.2898550724637685, "center_y": -1.7391304347826084, "value_uncond": 0.001131515600817794}, {"x": 0.43478260869565233, "y": -1.8840579710144922, "x2": 0.72463768115942, "y2": -1.5942028985507246, "center_x": 0.5797101449275361, "center_y": -1.7391304347826084, "value_uncond": 0.0012751289915987729}, {"x": 0.72463768115942, "y": -1.8840579710144922, "x2": 1.0144927536231876, "y2": -1.5942028985507246, "center_x": 0.8695652173913038, "center_y": -1.7391304347826084, "value_uncond": 0.0014236181244848623}, {"x": 1.0144927536231894, "y": -1.8840579710144922, "x2": 1.304347826086957, "y2": -1.5942028985507246, "center_x": 1.1594202898550732, "center_y": -1.7391304347826084, "value_uncond": 0.001574630689078329}, {"x": 1.304347826086957, "y": -1.8840579710144922, "x2": 1.5942028985507246, "y2": -1.5942028985507246, "center_x": 1.4492753623188408, "center_y": -1.7391304347826084, "value_uncond": 0.0017254792022204585}, {"x": 1.5942028985507246, "y": -1.8840579710144922, "x2": 1.8840579710144922, "y2": -1.5942028985507246, "center_x": 1.7391304347826084, "center_y": -1.7391304347826084, "value_uncond": 0.0018732104030289617}, {"x": 1.884057971014494, "y": -1.8840579710144922, "x2": 2.1739130434782616, "y2": -1.5942028985507246, "center_x": 2.028985507246378, "center_y": -1.7391304347826084, "value_uncond": 0.002014694531334479}, {"x": 2.1739130434782616, "y": -1.8840579710144922, "x2": 2.4637681159420293, "y2": -1.5942028985507246, "center_x": 2.3188405797101455, "center_y": -1.7391304347826084, "value_uncond": 0.002146731202298736}, {"x": 2.4637681159420293, "y": -1.8840579710144922, "x2": 2.753623188405797, "y2": -1.5942028985507246, "center_x": 2.608695652173913, "center_y": -1.7391304347826084, "value_uncond": 0.0022661671739586985}, {"x": 2.753623188405797, "y": -1.8840579710144922, "x2": 3.0434782608695645, "y2": -1.5942028985507246, "center_x": 2.8985507246376807, "center_y": -1.7391304347826084, "value_uncond": 0.0023700201291370505}, {"x": 3.0434782608695663, "y": -1.8840579710144922, "x2": 3.333333333333334, "y2": -1.5942028985507246, "center_x": 3.18840579710145, "center_y": -1.7391304347826084, "value_uncond": 0.002455601778985758}, {"x": 3.333333333333334, "y": -1.8840579710144922, "x2": 3.6231884057971016, "y2": -1.5942028985507246, "center_x": 3.4782608695652177, "center_y": -1.7391304347826084, "value_uncond": 0.0025206332374069643}, {"x": 3.6231884057971016, "y": -1.8840579710144922, "x2": 3.913043478260869, "y2": -1.5942028985507246, "center_x": 3.7681159420289854, "center_y": -1.7391304347826084, "value_uncond": 0.002563345771679817}, {"x": 3.913043478260871, "y": -1.8840579710144922, "x2": 4.202898550724639, "y2": -1.5942028985507246, "center_x": 4.057971014492755, "center_y": -1.7391304347826084, "value_uncond": 0.002582560717457531}, {"x": 4.202898550724639, "y": -1.8840579710144922, "x2": 4.492753623188406, "y2": -1.5942028985507246, "center_x": 4.347826086956522, "center_y": -1.7391304347826084, "value_uncond": 0.0025777435196343624}, {"x": 4.492753623188406, "y": -1.8840579710144922, "x2": 4.782608695652174, "y2": -1.5942028985507246, "center_x": 4.63768115942029, "center_y": -1.7391304347826084, "value_uncond": 0.0025490284410144945}, {"x": 4.782608695652174, "y": -1.8840579710144922, "x2": 5.0724637681159415, "y2": -1.5942028985507246, "center_x": 4.927536231884058, "center_y": -1.7391304347826084, "value_uncond": 0.0024972123447709275}, {"x": 5.072463768115943, "y": -1.8840579710144922, "x2": 5.362318840579711, "y2": -1.5942028985507246, "center_x": 5.217391304347827, "center_y": -1.7391304347826084, "value_uncond": 0.0024237179525454537}, {"x": 5.362318840579711, "y": -1.8840579710144922, "x2": 5.6521739130434785, "y2": -1.5942028985507246, "center_x": 5.507246376811595, "center_y": -1.7391304347826084, "value_uncond": 0.0023305289426137506}, {"x": 5.6521739130434785, "y": -1.8840579710144922, "x2": 5.942028985507246, "y2": -1.5942028985507246, "center_x": 5.797101449275362, "center_y": -1.7391304347826084, "value_uncond": 0.002220101020085922}, {"x": 5.942028985507246, "y": -1.8840579710144922, "x2": 6.231884057971014, "y2": -1.5942028985507246, "center_x": 6.08695652173913, "center_y": -1.7391304347826084, "value_uncond": 0.0020952545214967607}, {"x": 6.2318840579710155, "y": -1.8840579710144922, "x2": 6.521739130434783, "y2": -1.5942028985507246, "center_x": 6.376811594202899, "center_y": -1.7391304347826084, "value_uncond": 0.001959055100746278}, {"x": 6.521739130434785, "y": -1.8840579710144922, "x2": 6.8115942028985526, "y2": -1.5942028985507246, "center_x": 6.666666666666669, "center_y": -1.7391304347826084, "value_uncond": 0.0018146895170783953}, {"x": 6.811594202898551, "y": -1.8840579710144922, "x2": 7.101449275362318, "y2": -1.5942028985507246, "center_x": 6.956521739130435, "center_y": -1.7391304347826084, "value_uncond": 0.0016653434920375757}, {"x": 7.10144927536232, "y": -1.8840579710144922, "x2": 7.391304347826088, "y2": -1.5942028985507246, "center_x": 7.246376811594204, "center_y": -1.7391304347826084, "value_uncond": 0.001514088052601515}, {"x": 7.391304347826086, "y": -1.8840579710144922, "x2": 7.681159420289854, "y2": -1.5942028985507246, "center_x": 7.53623188405797, "center_y": -1.7391304347826084, "value_uncond": 0.0013637798059488858}, {"x": 7.681159420289855, "y": -1.8840579710144922, "x2": 7.971014492753623, "y2": -1.5942028985507246, "center_x": 7.826086956521739, "center_y": -1.7391304347826084, "value_uncond": 0.0012169793043008256}, {"x": 7.971014492753625, "y": -1.8840579710144922, "x2": 8.260869565217392, "y2": -1.5942028985507246, "center_x": 8.115942028985508, "center_y": -1.7391304347826084, "value_uncond": 0.0010758901827693436}, {"x": 8.26086956521739, "y": -1.8840579710144922, "x2": 8.550724637681158, "y2": -1.5942028985507246, "center_x": 8.405797101449274, "center_y": -1.7391304347826084, "value_uncond": 0.0009423202221871583}, {"x": 8.55072463768116, "y": -1.8840579710144922, "x2": 8.840579710144928, "y2": -1.5942028985507246, "center_x": 8.695652173913043, "center_y": -1.7391304347826084, "value_uncond": 0.0008176640283809529}, {"x": 8.84057971014493, "y": -1.8840579710144922, "x2": 9.130434782608697, "y2": -1.5942028985507246, "center_x": 8.985507246376812, "center_y": -1.7391304347826084, "value_uncond": 0.0007029057366299728}, {"x": 9.130434782608695, "y": -1.8840579710144922, "x2": 9.420289855072463, "y2": -1.5942028985507246, "center_x": 9.275362318840578, "center_y": -1.7391304347826084, "value_uncond": 0.0005986391255598276}, {"x": 9.420289855072465, "y": -1.8840579710144922, "x2": 9.710144927536232, "y2": -1.5942028985507246, "center_x": 9.565217391304348, "center_y": -1.7391304347826084, "value_uncond": 0.0005051018073111961}, {"x": 9.710144927536234, "y": -1.8840579710144922, "x2": 10.000000000000002, "y2": -1.5942028985507246, "center_x": 9.855072463768117, "center_y": -1.7391304347826084, "value_uncond": 0.00042221976689926533}, {"x": 10.0, "y": -1.8840579710144922, "x2": 10.289855072463768, "y2": -1.5942028985507246, "center_x": 10.144927536231883, "center_y": -1.7391304347826084, "value_uncond": 0.00034965843977834024}, {"x": -10.0, "y": -1.5942028985507246, "x2": -9.710144927536232, "y2": -1.304347826086957, "center_x": -9.855072463768117, "center_y": -1.4492753623188408, "value_uncond": 5.801248815659017e-08}, {"x": -9.710144927536232, "y": -1.5942028985507246, "x2": -9.420289855072465, "y2": -1.304347826086957, "center_x": -9.565217391304348, "center_y": -1.4492753623188408, "value_uncond": 9.063825959002471e-08}, {"x": -9.420289855072463, "y": -1.5942028985507246, "x2": -9.130434782608695, "y2": -1.304347826086957, "center_x": -9.275362318840578, "center_y": -1.4492753623188408, "value_uncond": 1.4029669398909313e-07}, {"x": -9.130434782608695, "y": -1.5942028985507246, "x2": -8.840579710144928, "y2": -1.304347826086957, "center_x": -8.985507246376812, "center_y": -1.4492753623188408, "value_uncond": 2.1514394672036343e-07}, {"x": -8.840579710144928, "y": -1.5942028985507246, "x2": -8.55072463768116, "y2": -1.304347826086957, "center_x": -8.695652173913043, "center_y": -1.4492753623188408, "value_uncond": 3.268561341934916e-07}, {"x": -8.55072463768116, "y": -1.5942028985507246, "x2": -8.260869565217392, "y2": -1.304347826086957, "center_x": -8.405797101449277, "center_y": -1.4492753623188408, "value_uncond": 4.919601927890292e-07}, {"x": -8.26086956521739, "y": -1.5942028985507246, "x2": -7.971014492753623, "y2": -1.304347826086957, "center_x": -8.115942028985508, "center_y": -1.4492753623188408, "value_uncond": 7.33582733510017e-07}, {"x": -7.971014492753623, "y": -1.5942028985507246, "x2": -7.681159420289855, "y2": -1.304347826086957, "center_x": -7.826086956521739, "center_y": -1.4492753623188408, "value_uncond": 1.0837124255962345e-06}, {"x": -7.681159420289855, "y": -1.5942028985507246, "x2": -7.391304347826088, "y2": -1.304347826086957, "center_x": -7.536231884057972, "center_y": -1.4492753623188408, "value_uncond": 1.586079016993117e-06}, {"x": -7.391304347826087, "y": -1.5942028985507246, "x2": -7.101449275362319, "y2": -1.304347826086957, "center_x": -7.246376811594203, "center_y": -1.4492753623188408, "value_uncond": 2.299754095632208e-06}, {"x": -7.101449275362318, "y": -1.5942028985507246, "x2": -6.811594202898551, "y2": -1.304347826086957, "center_x": -6.956521739130435, "center_y": -1.4492753623188408, "value_uncond": 3.3035721542860862e-06}, {"x": -6.811594202898551, "y": -1.5942028985507246, "x2": -6.521739130434783, "y2": -1.304347826086957, "center_x": -6.666666666666667, "center_y": -1.4492753623188408, "value_uncond": 4.701452007438475e-06}, {"x": -6.521739130434782, "y": -1.5942028985507246, "x2": -6.231884057971015, "y2": -1.304347826086957, "center_x": -6.3768115942028984, "center_y": -1.4492753623188408, "value_uncond": 6.628664403656853e-06}, {"x": -6.231884057971014, "y": -1.5942028985507246, "x2": -5.942028985507246, "y2": -1.304347826086957, "center_x": -6.08695652173913, "center_y": -1.4492753623188408, "value_uncond": 9.259038107877462e-06}, {"x": -5.942028985507246, "y": -1.5942028985507246, "x2": -5.6521739130434785, "y2": -1.304347826086957, "center_x": -5.797101449275362, "center_y": -1.4492753623188408, "value_uncond": 1.2813020634373129e-05}, {"x": -5.6521739130434785, "y": -1.5942028985507246, "x2": -5.362318840579711, "y2": -1.304347826086957, "center_x": -5.507246376811595, "center_y": -1.4492753623188408, "value_uncond": 1.7566409155196697e-05}, {"x": -5.36231884057971, "y": -1.5942028985507246, "x2": -5.072463768115942, "y2": -1.304347826086957, "center_x": -5.217391304347826, "center_y": -1.4492753623188408, "value_uncond": 2.38594416998354e-05}, {"x": -5.0724637681159415, "y": -1.5942028985507246, "x2": -4.782608695652174, "y2": -1.304347826086957, "center_x": -4.927536231884058, "center_y": -1.4492753623188408, "value_uncond": 3.21057910405215e-05}, {"x": -4.782608695652174, "y": -1.5942028985507246, "x2": -4.492753623188406, "y2": -1.304347826086957, "center_x": -4.63768115942029, "center_y": -1.4492753623188408, "value_uncond": 4.28008394547585e-05}, {"x": -4.492753623188405, "y": -1.5942028985507246, "x2": -4.202898550724638, "y2": -1.304347826086957, "center_x": -4.3478260869565215, "center_y": -1.4492753623188408, "value_uncond": 5.652844170681153e-05}, {"x": -4.202898550724638, "y": -1.5942028985507246, "x2": -3.91304347826087, "y2": -1.304347826086957, "center_x": -4.057971014492754, "center_y": -1.4492753623188408, "value_uncond": 7.396522026032139e-05}, {"x": -3.913043478260869, "y": -1.5942028985507246, "x2": -3.6231884057971016, "y2": -1.304347826086957, "center_x": -3.7681159420289854, "center_y": -1.4492753623188408, "value_uncond": 9.588129931461353e-05}, {"x": -3.6231884057971016, "y": -1.5942028985507246, "x2": -3.333333333333334, "y2": -1.304347826086957, "center_x": -3.4782608695652177, "center_y": -1.4492753623188408, "value_uncond": 0.00012313629466922468}, {"x": -3.333333333333333, "y": -1.5942028985507246, "x2": -3.0434782608695654, "y2": -1.304347826086957, "center_x": -3.1884057971014492, "center_y": -1.4492753623188408, "value_uncond": 0.00015666935873976176}, {"x": -3.0434782608695645, "y": -1.5942028985507246, "x2": -2.753623188405797, "y2": -1.304347826086957, "center_x": -2.8985507246376807, "center_y": -1.4492753623188408, "value_uncond": 0.00019748215839588876}, {"x": -2.753623188405797, "y": -1.5942028985507246, "x2": -2.4637681159420293, "y2": -1.304347826086957, "center_x": -2.608695652173913, "center_y": -1.4492753623188408, "value_uncond": 0.0002466138590582609}, {"x": -2.4637681159420284, "y": -1.5942028985507246, "x2": -2.1739130434782608, "y2": -1.304347826086957, "center_x": -2.3188405797101446, "center_y": -1.4492753623188408, "value_uncond": 0.00030510751704652234}, {"x": -2.1739130434782608, "y": -1.5942028985507246, "x2": -1.8840579710144931, "y2": -1.304347826086957, "center_x": -2.028985507246377, "center_y": -1.4492753623188408, "value_uncond": 0.0003739677493736574}, {"x": -1.8840579710144922, "y": -1.5942028985507246, "x2": -1.5942028985507246, "y2": -1.304347826086957, "center_x": -1.7391304347826084, "center_y": -1.4492753623188408, "value_uncond": 0.00045411014908831735}, {"x": -1.5942028985507246, "y": -1.5942028985507246, "x2": -1.304347826086957, "y2": -1.304347826086957, "center_x": -1.4492753623188408, "center_y": -1.4492753623188408, "value_uncond": 0.000546303622539451}, {"x": -1.304347826086957, "y": -1.5942028985507246, "x2": -1.0144927536231894, "y2": -1.304347826086957, "center_x": -1.1594202898550732, "center_y": -1.4492753623188408, "value_uncond": 0.0006511076034925066}, {"x": -1.0144927536231876, "y": -1.5942028985507246, "x2": -0.72463768115942, "y2": -1.304347826086957, "center_x": -0.8695652173913038, "center_y": -1.4492753623188408, "value_uncond": 0.0007688068924012487}, {"x": -0.72463768115942, "y": -1.5942028985507246, "x2": -0.43478260869565233, "y2": -1.304347826086957, "center_x": -0.5797101449275361, "center_y": -1.4492753623188408, "value_uncond": 0.0008993476079530388}, {"x": -0.43478260869565233, "y": -1.5942028985507246, "x2": -0.1449275362318847, "y2": -1.304347826086957, "center_x": -0.2898550724637685, "center_y": -1.4492753623188408, "value_uncond": 0.001042278343661805}, {"x": -0.14492753623188293, "y": -1.5942028985507246, "x2": 0.1449275362318847, "y2": -1.304347826086957, "center_x": 8.881784197001252e-16, "center_y": -1.4492753623188408, "value_uncond": 0.0011967010137874715}, {"x": 0.1449275362318847, "y": -1.5942028985507246, "x2": 0.43478260869565233, "y2": -1.304347826086957, "center_x": 0.2898550724637685, "center_y": -1.4492753623188408, "value_uncond": 0.0013612359752973578}, {"x": 0.43478260869565233, "y": -1.5942028985507246, "x2": 0.72463768115942, "y2": -1.304347826086957, "center_x": 0.5797101449275361, "center_y": -1.4492753623188408, "value_uncond": 0.0015340057664732067}, {"x": 0.72463768115942, "y": -1.5942028985507246, "x2": 1.0144927536231876, "y2": -1.304347826086957, "center_x": 0.8695652173913038, "center_y": -1.4492753623188408, "value_uncond": 0.0017126411732490106}, {"x": 1.0144927536231894, "y": -1.5942028985507246, "x2": 1.304347826086957, "y2": -1.304347826086957, "center_x": 1.1594202898550732, "center_y": -1.4492753623188408, "value_uncond": 0.0018943123190095946}, {"x": 1.304347826086957, "y": -1.5942028985507246, "x2": 1.5942028985507246, "y2": -1.304347826086957, "center_x": 1.4492753623188408, "center_y": -1.4492753623188408, "value_uncond": 0.0020757861075819967}, {"x": 1.5942028985507246, "y": -1.5942028985507246, "x2": 1.8840579710144922, "y2": -1.304347826086957, "center_x": 1.7391304347826084, "center_y": -1.4492753623188408, "value_uncond": 0.0022535097068581106}, {"x": 1.884057971014494, "y": -1.5942028985507246, "x2": 2.1739130434782616, "y2": -1.304347826086957, "center_x": 2.028985507246378, "center_y": -1.4492753623188408, "value_uncond": 0.0024237179525454533}, {"x": 2.1739130434782616, "y": -1.5942028985507246, "x2": 2.4637681159420293, "y2": -1.304347826086957, "center_x": 2.3188405797101455, "center_y": -1.4492753623188408, "value_uncond": 0.0025825607174575303}, {"x": 2.4637681159420293, "y": -1.5942028985507246, "x2": 2.753623188405797, "y2": -1.304347826086957, "center_x": 2.608695652173913, "center_y": -1.4492753623188408, "value_uncond": 0.002726244588232826}, {"x": 2.753623188405797, "y": -1.5942028985507246, "x2": 3.0434782608695645, "y2": -1.304347826086957, "center_x": 2.8985507246376807, "center_y": -1.4492753623188408, "value_uncond": 0.0028511817774572105}, {"x": 3.0434782608695663, "y": -1.5942028985507246, "x2": 3.333333333333334, "y2": -1.304347826086957, "center_x": 3.18840579710145, "center_y": -1.4492753623188408, "value_uncond": 0.0029541382196973053}, {"x": 3.333333333333334, "y": -1.5942028985507246, "x2": 3.6231884057971016, "y2": -1.304347826086957, "center_x": 3.4782608695652177, "center_y": -1.4492753623188408, "value_uncond": 0.0030323723692441797}, {"x": 3.6231884057971016, "y": -1.5942028985507246, "x2": 3.913043478260869, "y2": -1.304347826086957, "center_x": 3.7681159420289854, "center_y": -1.4492753623188408, "value_uncond": 0.0030837564051393158}, {"x": 3.913043478260871, "y": -1.5942028985507246, "x2": 4.202898550724639, "y2": -1.304347826086957, "center_x": 4.057971014492755, "center_y": -1.4492753623188408, "value_uncond": 0.003106872370519827}, {"x": 4.202898550724639, "y": -1.5942028985507246, "x2": 4.492753623188406, "y2": -1.304347826086957, "center_x": 4.347826086956522, "center_y": -1.4492753623188408, "value_uncond": 0.003101077184865929}, {"x": 4.492753623188406, "y": -1.5942028985507246, "x2": 4.782608695652174, "y2": -1.304347826086957, "center_x": 4.63768115942029, "center_y": -1.4492753623188408, "value_uncond": 0.00306653236902547}, {"x": 4.782608695652174, "y": -1.5942028985507246, "x2": 5.0724637681159415, "y2": -1.304347826086957, "center_x": 4.927536231884058, "center_y": -1.4492753623188408, "value_uncond": 0.003004196565387203}, {"x": 5.072463768115943, "y": -1.5942028985507246, "x2": 5.362318840579711, "y2": -1.304347826086957, "center_x": 5.217391304347827, "center_y": -1.4492753623188408, "value_uncond": 0.002915781336637707}, {"x": 5.362318840579711, "y": -1.5942028985507246, "x2": 5.6521739130434785, "y2": -1.304347826086957, "center_x": 5.507246376811595, "center_y": -1.4492753623188408, "value_uncond": 0.0028036730875515294}, {"x": 5.6521739130434785, "y": -1.5942028985507246, "x2": 5.942028985507246, "y2": -1.304347826086957, "center_x": 5.797101449275362, "center_y": -1.4492753623188408, "value_uncond": 0.0026708260806577767}, {"x": 5.942028985507246, "y": -1.5942028985507246, "x2": 6.231884057971014, "y2": -1.304347826086957, "center_x": 6.08695652173913, "center_y": -1.4492753623188408, "value_uncond": 0.002520633237406963}, {"x": 6.2318840579710155, "y": -1.5942028985507246, "x2": 6.521739130434783, "y2": -1.304347826086957, "center_x": 6.376811594202899, "center_y": -1.4492753623188408, "value_uncond": 0.0023567826009630436}, {"x": 6.521739130434785, "y": -1.5942028985507246, "x2": 6.8115942028985526, "y2": -1.304347826086957, "center_x": 6.666666666666669, "center_y": -1.4492753623188408, "value_uncond": 0.0021831079066490715}, {"x": 6.811594202898551, "y": -1.5942028985507246, "x2": 7.101449275362318, "y2": -1.304347826086957, "center_x": 6.956521739130435, "center_y": -1.4492753623188408, "value_uncond": 0.0020034416414148196}, {"x": 7.10144927536232, "y": -1.5942028985507246, "x2": 7.391304347826088, "y2": -1.304347826086957, "center_x": 7.246376811594204, "center_y": -1.4492753623188408, "value_uncond": 0.001821478312344528}, {"x": 7.391304347826086, "y": -1.5942028985507246, "x2": 7.681159420289854, "y2": -1.304347826086957, "center_x": 7.53623188405797, "center_y": -1.4492753623188408, "value_uncond": 0.0016406544752011858}, {"x": 7.681159420289855, "y": -1.5942028985507246, "x2": 7.971014492753623, "y2": -1.304347826086957, "center_x": 7.826086956521739, "center_y": -1.4492753623188408, "value_uncond": 0.0014640505256925686}, {"x": 7.971014492753625, "y": -1.5942028985507246, "x2": 8.260869565217392, "y2": -1.304347826086957, "center_x": 8.115942028985508, "center_y": -1.4492753623188408, "value_uncond": 0.0012943174810814762}, {"x": 8.26086956521739, "y": -1.5942028985507246, "x2": 8.550724637681158, "y2": -1.304347826086957, "center_x": 8.405797101449274, "center_y": -1.4492753623188408, "value_uncond": 0.001133630137988626}, {"x": 8.55072463768116, "y": -1.5942028985507246, "x2": 8.840579710144928, "y2": -1.304347826086957, "center_x": 8.695652173913043, "center_y": -1.4492753623188408, "value_uncond": 0.0009836662352107881}, {"x": 8.84057971014493, "y": -1.5942028985507246, "x2": 9.130434782608697, "y2": -1.304347826086957, "center_x": 8.985507246376812, "center_y": -1.4492753623188408, "value_uncond": 0.0008456097072387457}, {"x": 9.130434782608695, "y": -1.5942028985507246, "x2": 9.420289855072463, "y2": -1.304347826086957, "center_x": 9.275362318840578, "center_y": -1.4492753623188408, "value_uncond": 0.0007201748816751926}, {"x": 9.420289855072465, "y": -1.5942028985507246, "x2": 9.710144927536232, "y2": -1.304347826086957, "center_x": 9.565217391304348, "center_y": -1.4492753623188408, "value_uncond": 0.0006076476106938192}, {"x": 9.710144927536234, "y": -1.5942028985507246, "x2": 10.000000000000002, "y2": -1.304347826086957, "center_x": 9.855072463768117, "center_y": -1.4492753623188408, "value_uncond": 0.0005079388527825467}, {"x": 10.0, "y": -1.5942028985507246, "x2": 10.289855072463768, "y2": -1.304347826086957, "center_x": 10.144927536231883, "center_y": -1.4492753623188408, "value_uncond": 0.00042064612007878583}, {"x": -10.0, "y": -1.304347826086957, "x2": -9.710144927536232, "y2": -1.0144927536231894, "center_x": -9.855072463768117, "center_y": -1.1594202898550732, "value_uncond": 6.914172005796482e-08}, {"x": -9.710144927536232, "y": -1.304347826086957, "x2": -9.420289855072465, "y2": -1.0144927536231894, "center_x": -9.565217391304348, "center_y": -1.1594202898550732, "value_uncond": 1.080264848182127e-07}, {"x": -9.420289855072463, "y": -1.304347826086957, "x2": -9.130434782608695, "y2": -1.0144927536231894, "center_x": -9.275362318840578, "center_y": -1.1594202898550732, "value_uncond": 1.6721149271632956e-07}, {"x": -9.130434782608695, "y": -1.304347826086957, "x2": -8.840579710144928, "y2": -1.0144927536231894, "center_x": -8.985507246376812, "center_y": -1.1594202898550732, "value_uncond": 2.564175922975858e-07}, {"x": -8.840579710144928, "y": -1.304347826086957, "x2": -8.55072463768116, "y2": -1.0144927536231894, "center_x": -8.695652173913043, "center_y": -1.1594202898550732, "value_uncond": 3.895608695257747e-07}, {"x": -8.55072463768116, "y": -1.304347826086957, "x2": -8.260869565217392, "y2": -1.0144927536231894, "center_x": -8.405797101449277, "center_y": -1.1594202898550732, "value_uncond": 5.863388213528535e-07}, {"x": -8.26086956521739, "y": -1.304347826086957, "x2": -7.971014492753623, "y2": -1.0144927536231894, "center_x": -8.115942028985508, "center_y": -1.1594202898550732, "value_uncond": 8.743147141490828e-07}, {"x": -7.971014492753623, "y": -1.304347826086957, "x2": -7.681159420289855, "y2": -1.0144927536231894, "center_x": -7.826086956521739, "center_y": -1.1594202898550732, "value_uncond": 1.291613987520393e-06}, {"x": -7.681159420289855, "y": -1.304347826086957, "x2": -7.391304347826088, "y2": -1.0144927536231894, "center_x": -7.536231884057972, "center_y": -1.1594202898550732, "value_uncond": 1.8903555918294522e-06}, {"x": -7.391304347826087, "y": -1.304347826086957, "x2": -7.101449275362319, "y2": -1.0144927536231894, "center_x": -7.246376811594203, "center_y": -1.1594202898550732, "value_uncond": 2.740943526730923e-06}, {"x": -7.101449275362318, "y": -1.304347826086957, "x2": -6.811594202898551, "y2": -1.0144927536231894, "center_x": -6.956521739130435, "center_y": -1.1594202898550732, "value_uncond": 3.937336051961573e-06}, {"x": -6.811594202898551, "y": -1.304347826086957, "x2": -6.521739130434783, "y2": -1.0144927536231894, "center_x": -6.666666666666667, "center_y": -1.1594202898550732, "value_uncond": 5.603387975479224e-06}, {"x": -6.521739130434782, "y": -1.304347826086957, "x2": -6.231884057971015, "y2": -1.0144927536231894, "center_x": -6.3768115942028984, "center_y": -1.1594202898550732, "value_uncond": 7.900320657144142e-06}, {"x": -6.231884057971014, "y": -1.304347826086957, "x2": -5.942028985507246, "y2": -1.0144927536231894, "center_x": -6.08695652173913, "center_y": -1.1594202898550732, "value_uncond": 1.1035310520260253e-05}, {"x": -5.942028985507246, "y": -1.304347826086957, "x2": -5.6521739130434785, "y2": -1.0144927536231894, "center_x": -5.797101449275362, "center_y": -1.1594202898550732, "value_uncond": 1.5271096171697562e-05}, {"x": -5.6521739130434785, "y": -1.304347826086957, "x2": -5.362318840579711, "y2": -1.0144927536231894, "center_x": -5.507246376811595, "center_y": -1.1594202898550732, "value_uncond": 2.0936384265295586e-05}, {"x": -5.36231884057971, "y": -1.304347826086957, "x2": -5.072463768115942, "y2": -1.0144927536231894, "center_x": -5.217391304347826, "center_y": -1.1594202898550732, "value_uncond": 2.8436684775465024e-05}, {"x": -5.0724637681159415, "y": -1.304347826086957, "x2": -4.782608695652174, "y2": -1.0144927536231894, "center_x": -4.927536231884058, "center_y": -1.1594202898550732, "value_uncond": 3.826503028746719e-05}, {"x": -4.782608695652174, "y": -1.304347826086957, "x2": -4.492753623188406, "y2": -1.0144927536231894, "center_x": -4.63768115942029, "center_y": -1.1594202898550732, "value_uncond": 5.1011838206953956e-05}, {"x": -4.492753623188405, "y": -1.304347826086957, "x2": -4.202898550724638, "y2": -1.0144927536231894, "center_x": -4.3478260869565215, "center_y": -1.1594202898550732, "value_uncond": 6.737297116537058e-05}, {"x": -4.202898550724638, "y": -1.304347826086957, "x2": -3.91304347826087, "y2": -1.0144927536231894, "center_x": -4.057971014492754, "center_y": -1.1594202898550732, "value_uncond": 8.815485623475879e-05}, {"x": -3.913043478260869, "y": -1.304347826086957, "x2": -3.6231884057971016, "y2": -1.0144927536231894, "center_x": -3.7681159420289854, "center_y": -1.1594202898550732, "value_uncond": 0.0001142753597830617}, {"x": -3.6231884057971016, "y": -1.304347826086957, "x2": -3.333333333333334, "y2": -1.0144927536231894, "center_x": -3.4782608695652177, "center_y": -1.1594202898550732, "value_uncond": 0.00014675900802623028}, {"x": -3.333333333333333, "y": -1.304347826086957, "x2": -3.0434782608695654, "y2": -1.0144927536231894, "center_x": -3.1884057971014492, "center_y": -1.1594202898550732, "value_uncond": 0.00018672512225998927}, {"x": -3.0434782608695645, "y": -1.304347826086957, "x2": -2.753623188405797, "y2": -1.0144927536231894, "center_x": -2.8985507246376807, "center_y": -1.1594202898550732, "value_uncond": 0.000235367531132176}, {"x": -2.753623188405797, "y": -1.304347826086957, "x2": -2.4637681159420293, "y2": -1.0144927536231894, "center_x": -2.608695652173913, "center_y": -1.1594202898550732, "value_uncond": 0.0002939247556387334}, {"x": -2.4637681159420284, "y": -1.304347826086957, "x2": -2.1739130434782608, "y2": -1.0144927536231894, "center_x": -2.3188405797101446, "center_y": -1.1594202898550732, "value_uncond": 0.0003636399541124481}, {"x": -2.1739130434782608, "y": -1.304347826086957, "x2": -1.8840579710144931, "y2": -1.0144927536231894, "center_x": -2.028985507246377, "center_y": -1.1594202898550732, "value_uncond": 0.00044571047130588027}, {"x": -1.8840579710144922, "y": -1.304347826086957, "x2": -1.5942028985507246, "y2": -1.0144927536231894, "center_x": -1.7391304347826084, "center_y": -1.1594202898550732, "value_uncond": 0.0005412275494716625}, {"x": -1.5942028985507246, "y": -1.304347826086957, "x2": -1.304347826086957, "y2": -1.0144927536231894, "center_x": -1.4492753623188408, "center_y": -1.1594202898550732, "value_uncond": 0.0006511076034925066}, {"x": -1.304347826086957, "y": -1.304347826086957, "x2": -1.0144927536231894, "y2": -1.0144927536231894, "center_x": -1.1594202898550732, "center_y": -1.1594202898550732, "value_uncond": 0.0007760173900277227}, {"x": -1.0144927536231876, "y": -1.304347826086957, "x2": -0.72463768115942, "y2": -1.0144927536231894, "center_x": -0.8695652173913038, "center_y": -1.1594202898550732, "value_uncond": 0.0009162963462204561}, {"x": -0.72463768115942, "y": -1.304347826086957, "x2": -0.43478260869565233, "y2": -1.0144927536231894, "center_x": -0.5797101449275361, "center_y": -1.1594202898550732, "value_uncond": 0.0010718802540591508}, {"x": -0.43478260869565233, "y": -1.304347826086957, "x2": -0.1449275362318847, "y2": -1.0144927536231894, "center_x": -0.2898550724637685, "center_y": -1.1594202898550732, "value_uncond": 0.0012422311083334794}, {"x": -0.14492753623188293, "y": -1.304347826086957, "x2": 0.1449275362318847, "y2": -1.0144927536231894, "center_x": 8.881784197001252e-16, "center_y": -1.1594202898550732, "value_uncond": 0.001426278532736519}, {"x": 0.1449275362318847, "y": -1.304347826086957, "x2": 0.43478260869565233, "y2": -1.0144927536231894, "center_x": 0.2898550724637685, "center_y": -1.1594202898550732, "value_uncond": 0.001622378210753385}, {"x": 0.43478260869565233, "y": -1.304347826086957, "x2": 0.72463768115942, "y2": -1.0144927536231894, "center_x": 0.5797101449275361, "center_y": -1.1594202898550732, "value_uncond": 0.0018282925046500629}, {"x": 0.72463768115942, "y": -1.304347826086957, "x2": 1.0144927536231876, "y2": -1.0144927536231894, "center_x": 0.8695652173913038, "center_y": -1.1594202898550732, "value_uncond": 0.0020411976855896296}, {"x": 1.0144927536231894, "y": -1.304347826086957, "x2": 1.304347826086957, "y2": -1.0144927536231894, "center_x": 1.1594202898550732, "center_y": -1.1594202898550732, "value_uncond": 0.002257720987760061}, {"x": 1.304347826086957, "y": -1.304347826086957, "x2": 1.5942028985507246, "y2": -1.0144927536231894, "center_x": 1.4492753623188408, "center_y": -1.1594202898550732, "value_uncond": 0.002474009071344113}, {"x": 1.5942028985507246, "y": -1.304347826086957, "x2": 1.8840579710144922, "y2": -1.0144927536231894, "center_x": 1.7391304347826084, "center_y": -1.1594202898550732, "value_uncond": 0.0026858275218073005}, {"x": 1.884057971014494, "y": -1.304347826086957, "x2": 2.1739130434782616, "y2": -1.0144927536231894, "center_x": 2.028985507246378, "center_y": -1.1594202898550732, "value_uncond": 0.0028886888581993115}, {"x": 2.1739130434782616, "y": -1.304347826086957, "x2": 2.4637681159420293, "y2": -1.0144927536231894, "center_x": 2.3188405797101455, "center_y": -1.1594202898550732, "value_uncond": 0.0030780043372240864}, {"x": 2.4637681159420293, "y": -1.304347826086957, "x2": 2.753623188405797, "y2": -1.0144927536231894, "center_x": 2.608695652173913, "center_y": -1.1594202898550732, "value_uncond": 0.003249252809504304}, {"x": 2.753623188405797, "y": -1.304347826086957, "x2": 3.0434782608695645, "y2": -1.0144927536231894, "center_x": 2.8985507246376807, "center_y": -1.1594202898550732, "value_uncond": 0.0033981581993035538}, {"x": 3.0434782608695663, "y": -1.304347826086957, "x2": 3.333333333333334, "y2": -1.0144927536231894, "center_x": 3.18840579710145, "center_y": -1.1594202898550732, "value_uncond": 0.0035208660115993097}, {"x": 3.333333333333334, "y": -1.304347826086957, "x2": 3.6231884057971016, "y2": -1.0144927536231894, "center_x": 3.4782608695652177, "center_y": -1.1594202898550732, "value_uncond": 0.0036141087570637355}, {"x": 3.6231884057971016, "y": -1.304347826086957, "x2": 3.913043478260869, "y2": -1.0144927536231894, "center_x": 3.7681159420289854, "center_y": -1.1594202898550732, "value_uncond": 0.0036753504093045447}, {"x": 3.913043478260871, "y": -1.304347826086957, "x2": 4.202898550724639, "y2": -1.0144927536231894, "center_x": 4.057971014492755, "center_y": -1.1594202898550732, "value_uncond": 0.0037029009877747312}, {"x": 4.202898550724639, "y": -1.304347826086957, "x2": 4.492753623188406, "y2": -1.0144927536231894, "center_x": 4.347826086956522, "center_y": -1.1594202898550732, "value_uncond": 0.0036959940420997896}, {"x": 4.492753623188406, "y": -1.304347826086957, "x2": 4.782608695652174, "y2": -1.0144927536231894, "center_x": 4.63768115942029, "center_y": -1.1594202898550732, "value_uncond": 0.003654822079610475}, {"x": 4.782608695652174, "y": -1.304347826086957, "x2": 5.0724637681159415, "y2": -1.0144927536231894, "center_x": 4.927536231884058, "center_y": -1.1594202898550732, "value_uncond": 0.0035805276505711356}, {"x": 5.072463768115943, "y": -1.304347826086957, "x2": 5.362318840579711, "y2": -1.0144927536231894, "center_x": 5.217391304347827, "center_y": -1.1594202898550732, "value_uncond": 0.0034751506672816477}, {"x": 5.362318840579711, "y": -1.304347826086957, "x2": 5.6521739130434785, "y2": -1.0144927536231894, "center_x": 5.507246376811595, "center_y": -1.1594202898550732, "value_uncond": 0.0033415353471874256}, {"x": 5.6521739130434785, "y": -1.304347826086957, "x2": 5.942028985507246, "y2": -1.0144927536231894, "center_x": 5.797101449275362, "center_y": -1.1594202898550732, "value_uncond": 0.003183202704457242}, {"x": 5.942028985507246, "y": -1.304347826086957, "x2": 6.231884057971014, "y2": -1.0144927536231894, "center_x": 6.08695652173913, "center_y": -1.1594202898550732, "value_uncond": 0.003004196565387202}, {"x": 6.2318840579710155, "y": -1.304347826086957, "x2": 6.521739130434783, "y2": -1.0144927536231894, "center_x": 6.376811594202899, "center_y": -1.1594202898550732, "value_uncond": 0.0028089124947273613}, {"x": 6.521739130434785, "y": -1.304347826086957, "x2": 6.8115942028985526, "y2": -1.0144927536231894, "center_x": 6.666666666666669, "center_y": -1.1594202898550732, "value_uncond": 0.0026019196992624204}, {"x": 6.811594202898551, "y": -1.304347826086957, "x2": 7.101449275362318, "y2": -1.0144927536231894, "center_x": 6.956521739130435, "center_y": -1.1594202898550732, "value_uncond": 0.002387785897913383}, {"x": 7.10144927536232, "y": -1.304347826086957, "x2": 7.391304347826088, "y2": -1.0144927536231894, "center_x": 7.246376811594204, "center_y": -1.1594202898550732, "value_uncond": 0.0021709143594019938}, {"x": 7.391304347826086, "y": -1.304347826086957, "x2": 7.681159420289854, "y2": -1.0144927536231894, "center_x": 7.53623188405797, "center_y": -1.1594202898550732, "value_uncond": 0.001955400915230719}, {"x": 7.681159420289855, "y": -1.304347826086957, "x2": 7.971014492753623, "y2": -1.0144927536231894, "center_x": 7.826086956521739, "center_y": -1.1594202898550732, "value_uncond": 0.0017449169103885887}, {"x": 7.971014492753625, "y": -1.304347826086957, "x2": 8.260869565217392, "y2": -1.0144927536231894, "center_x": 8.115942028985508, "center_y": -1.1594202898550732, "value_uncond": 0.001542621938598914}, {"x": 8.26086956521739, "y": -1.304347826086957, "x2": 8.550724637681158, "y2": -1.0144927536231894, "center_x": 8.405797101449274, "center_y": -1.1594202898550732, "value_uncond": 0.0013511080138212909}, {"x": 8.55072463768116, "y": -1.304347826086957, "x2": 8.840579710144928, "y2": -1.0144927536231894, "center_x": 8.695652173913043, "center_y": -1.1594202898550732, "value_uncond": 0.00117237473562303}, {"x": 8.84057971014493, "y": -1.304347826086957, "x2": 9.130434782608697, "y2": -1.0144927536231894, "center_x": 8.985507246376812, "center_y": -1.1594202898550732, "value_uncond": 0.0010078331668585262}, {"x": 9.130434782608695, "y": -1.304347826086957, "x2": 9.420289855072463, "y2": -1.0144927536231894, "center_x": 9.275362318840578, "center_y": -1.1594202898550732, "value_uncond": 0.0008583346731682558}, {"x": 9.420289855072465, "y": -1.304347826086957, "x2": 9.710144927536232, "y2": -1.0144927536231894, "center_x": 9.565217391304348, "center_y": -1.1594202898550732, "value_uncond": 0.0007242199451793476}, {"x": 9.710144927536234, "y": -1.304347826086957, "x2": 10.000000000000002, "y2": -1.0144927536231894, "center_x": 9.855072463768117, "center_y": -1.1594202898550732, "value_uncond": 0.000605382859477733}, {"x": 10.0, "y": -1.304347826086957, "x2": 10.289855072463768, "y2": -1.0144927536231894, "center_x": 10.144927536231883, "center_y": -1.1594202898550732, "value_uncond": 0.0005013437141232592}, {"x": -10.0, "y": -1.0144927536231876, "x2": -9.710144927536232, "y2": -0.72463768115942, "center_x": -9.855072463768117, "center_y": -0.8695652173913038, "value_uncond": 8.164031666641845e-08}, {"x": -9.710144927536232, "y": -1.0144927536231876, "x2": -9.420289855072465, "y2": -0.72463768115942, "center_x": -9.565217391304348, "center_y": -0.8695652173913038, "value_uncond": 1.2755419479766016e-07}, {"x": -9.420289855072463, "y": -1.0144927536231876, "x2": -9.130434782608695, "y2": -0.72463768115942, "center_x": -9.275362318840578, "center_y": -0.8695652173913038, "value_uncond": 1.9743794635396995e-07}, {"x": -9.130434782608695, "y": -1.0144927536231876, "x2": -8.840579710144928, "y2": -0.72463768115942, "center_x": -8.985507246376812, "center_y": -0.8695652173913038, "value_uncond": 3.0276963628422175e-07}, {"x": -8.840579710144928, "y": -1.0144927536231876, "x2": -8.55072463768116, "y2": -0.72463768115942, "center_x": -8.695652173913043, "center_y": -0.8695652173913038, "value_uncond": 4.5998093079354775e-07}, {"x": -8.55072463768116, "y": -1.0144927536231876, "x2": -8.260869565217392, "y2": -0.72463768115942, "center_x": -8.405797101449277, "center_y": -0.8695652173913038, "value_uncond": 6.923300000192465e-07}, {"x": -8.26086956521739, "y": -1.0144927536231876, "x2": -7.971014492753623, "y2": -0.72463768115942, "center_x": -8.115942028985508, "center_y": -0.8695652173913038, "value_uncond": 1.032362661348308e-06}, {"x": -7.971014492753623, "y": -1.0144927536231876, "x2": -7.681159420289855, "y2": -0.72463768115942, "center_x": -7.826086956521739, "center_y": -0.8695652173913038, "value_uncond": 1.5250962062201841e-06}, {"x": -7.681159420289855, "y": -1.0144927536231876, "x2": -7.391304347826088, "y2": -0.72463768115942, "center_x": -7.536231884057972, "center_y": -0.8695652173913038, "value_uncond": 2.2320710129818836e-06}, {"x": -7.391304347826087, "y": -1.0144927536231876, "x2": -7.101449275362319, "y2": -0.72463768115942, "center_x": -7.246376811594203, "center_y": -0.8695652173913038, "value_uncond": 3.2364178574019272e-06}, {"x": -7.101449275362318, "y": -1.0144927536231876, "x2": -6.811594202898551, "y2": -0.72463768115942, "center_x": -6.956521739130435, "center_y": -0.8695652173913038, "value_uncond": 4.649079627101635e-06}, {"x": -6.811594202898551, "y": -1.0144927536231876, "x2": -6.521739130434783, "y2": -0.72463768115942, "center_x": -6.666666666666667, "center_y": -0.8695652173913038, "value_uncond": 6.616300091166552e-06}, {"x": -6.521739130434782, "y": -1.0144927536231876, "x2": -6.231884057971015, "y2": -0.72463768115942, "center_x": -6.3768115942028984, "center_y": -0.8695652173913038, "value_uncond": 9.328444239957765e-06}, {"x": -6.231884057971014, "y": -1.0144927536231876, "x2": -5.942028985507246, "y2": -0.72463768115942, "center_x": -6.08695652173913, "center_y": -0.8695652173913038, "value_uncond": 1.3030139322987851e-05}, {"x": -5.942028985507246, "y": -1.0144927536231876, "x2": -5.6521739130434785, "y2": -0.72463768115942, "center_x": -5.797101449275362, "center_y": -0.8695652173913038, "value_uncond": 1.8031618627010143e-05}, {"x": -5.6521739130434785, "y": -1.0144927536231876, "x2": -5.362318840579711, "y2": -0.72463768115942, "center_x": -5.507246376811595, "center_y": -0.8695652173913038, "value_uncond": 2.4721008384454473e-05}, {"x": -5.36231884057971, "y": -1.0144927536231876, "x2": -5.072463768115942, "y2": -0.72463768115942, "center_x": -5.217391304347826, "center_y": -0.8695652173913038, "value_uncond": 3.3577121715597955e-05}, {"x": -5.0724637681159415, "y": -1.0144927536231876, "x2": -4.782608695652174, "y2": -0.72463768115942, "center_x": -4.927536231884058, "center_y": -0.8695652173913038, "value_uncond": 4.51821156213635e-05}, {"x": -4.782608695652174, "y": -1.0144927536231876, "x2": -4.492753623188406, "y2": -0.72463768115942, "center_x": -4.63768115942029, "center_y": -0.8695652173913038, "value_uncond": 6.0233135962779376e-05}, {"x": -4.492753623188405, "y": -1.0144927536231876, "x2": -4.202898550724638, "y2": -0.72463768115942, "center_x": -4.3478260869565215, "center_y": -0.8695652173913038, "value_uncond": 7.955183492813199e-05}, {"x": -4.202898550724638, "y": -1.0144927536231876, "x2": -3.91304347826087, "y2": -0.72463768115942, "center_x": -4.057971014492754, "center_y": -0.8695652173913038, "value_uncond": 0.0001040904156369658}, {"x": -3.913043478260869, "y": -1.0144927536231876, "x2": -3.6231884057971016, "y2": -0.72463768115942, "center_x": -3.7681159420289854, "center_y": -0.8695652173913038, "value_uncond": 0.0001349326651410567}, {"x": -3.6231884057971016, "y": -1.0144927536231876, "x2": -3.333333333333334, "y2": -0.72463768115942, "center_x": -3.4782608695652177, "center_y": -0.8695652173913038, "value_uncond": 0.0001732883110062385}, {"x": -3.333333333333333, "y": -1.0144927536231876, "x2": -3.0434782608695654, "y2": -0.72463768115942, "center_x": -3.1884057971014492, "center_y": -0.8695652173913038, "value_uncond": 0.00022047901177611992}, {"x": -3.0434782608695645, "y": -1.0144927536231876, "x2": -2.753623188405797, "y2": -0.72463768115942, "center_x": -2.8985507246376807, "center_y": -0.8695652173913038, "value_uncond": 0.0002779144018765324}, {"x": -2.753623188405797, "y": -1.0144927536231876, "x2": -2.4637681159420293, "y2": -0.72463768115942, "center_x": -2.608695652173913, "center_y": -0.8695652173913038, "value_uncond": 0.0003470568870188469}, {"x": -2.4637681159420284, "y": -1.0144927536231876, "x2": -2.1739130434782608, "y2": -0.72463768115942, "center_x": -2.3188405797101446, "center_y": -0.8695652173913038, "value_uncond": 0.0004293743485324563}, {"x": -2.1739130434782608, "y": -1.0144927536231876, "x2": -1.8840579710144931, "y2": -0.72463768115942, "center_x": -2.028985507246377, "center_y": -0.8695652173913038, "value_uncond": 0.0005262805725464293}, {"x": -1.8840579710144922, "y": -1.0144927536231876, "x2": -1.5942028985507246, "y2": -0.72463768115942, "center_x": -1.7391304347826084, "center_y": -0.8695652173913038, "value_uncond": 0.0006390640627744426}, {"x": -1.5942028985507246, "y": -1.0144927536231876, "x2": -1.304347826086957, "y2": -0.72463768115942, "center_x": -1.4492753623188408, "center_y": -0.8695652173913038, "value_uncond": 0.0007688068924012487}, {"x": -1.304347826086957, "y": -1.0144927536231876, "x2": -1.0144927536231894, "y2": -0.72463768115942, "center_x": -1.1594202898550732, "center_y": -0.8695652173913038, "value_uncond": 0.0009162963462204561}, {"x": -1.0144927536231876, "y": -1.0144927536231876, "x2": -0.72463768115942, "y2": -0.72463768115942, "center_x": -0.8695652173913038, "center_y": -0.8695652173913038, "value_uncond": 0.001081933220680743}, {"x": -0.72463768115942, "y": -1.0144927536231876, "x2": -0.43478260869565233, "y2": -0.72463768115942, "center_x": -0.5797101449275361, "center_y": -0.8695652173913038, "value_uncond": 0.0012656416892218969}, {"x": -0.43478260869565233, "y": -1.0144927536231876, "x2": -0.1449275362318847, "y2": -0.72463768115942, "center_x": -0.2898550724637685, "center_y": -0.8695652173913038, "value_uncond": 0.0014667864926154442}, {"x": -0.14492753623188293, "y": -1.0144927536231876, "x2": 0.1449275362318847, "y2": -0.72463768115942, "center_x": 8.881784197001252e-16, "center_y": -0.8695652173913038, "value_uncond": 0.0016841037649845162}, {"x": 0.1449275362318847, "y": -1.0144927536231876, "x2": 0.43478260869565233, "y2": -0.72463768115942, "center_x": 0.2898550724637685, "center_y": -0.8695652173913038, "value_uncond": 0.0019156519503356758}, {"x": 0.43478260869565233, "y": -1.0144927536231876, "x2": 0.72463768115942, "y2": -0.72463768115942, "center_x": 0.5797101449275361, "center_y": -0.8695652173913038, "value_uncond": 0.0021587889180850073}, {"x": 0.72463768115942, "y": -1.0144927536231876, "x2": 1.0144927536231876, "y2": -0.72463768115942, "center_x": 0.8695652173913038, "center_y": -0.8695652173913038, "value_uncond": 0.0024101805001465397}, {"x": 1.0144927536231894, "y": -1.0144927536231876, "x2": 1.304347826086957, "y2": -0.72463768115942, "center_x": 1.1594202898550732, "center_y": -0.8695652173913038, "value_uncond": 0.002665844243253208}, {"x": 1.304347826086957, "y": -1.0144927536231876, "x2": 1.5942028985507246, "y2": -0.72463768115942, "center_x": 1.4492753623188408, "center_y": -0.8695652173913038, "value_uncond": 0.002921230247827166}, {"x": 1.5942028985507246, "y": -1.0144927536231876, "x2": 1.8840579710144922, "y2": -0.72463768115942, "center_x": 1.7391304347826084, "center_y": -0.8695652173913038, "value_uncond": 0.0031713386535351415}, {"x": 1.884057971014494, "y": -1.0144927536231876, "x2": 2.1739130434782616, "y2": -0.72463768115942, "center_x": 2.028985507246378, "center_y": -0.8695652173913038, "value_uncond": 0.00341087078736884}, {"x": 2.1739130434782616, "y": -1.0144927536231876, "x2": 2.4637681159420293, "y2": -0.72463768115942, "center_x": 2.3188405797101455, "center_y": -0.8695652173913038, "value_uncond": 0.0036344084090027826}, {"x": 2.4637681159420293, "y": -1.0144927536231876, "x2": 2.753623188405797, "y2": -0.72463768115942, "center_x": 2.608695652173913, "center_y": -0.8695652173913038, "value_uncond": 0.0038366130908341948}, {"x": 2.753623188405797, "y": -1.0144927536231876, "x2": 3.0434782608695645, "y2": -0.72463768115942, "center_x": 2.8985507246376807, "center_y": -0.8695652173913038, "value_uncond": 0.004012435780324067}, {"x": 3.0434782608695663, "y": -1.0144927536231876, "x2": 3.333333333333334, "y2": -0.72463768115942, "center_x": 3.18840579710145, "center_y": -0.8695652173913038, "value_uncond": 0.004157325213865357}, {"x": 3.333333333333334, "y": -1.0144927536231876, "x2": 3.6231884057971016, "y2": -0.72463768115942, "center_x": 3.4782608695652177, "center_y": -0.8695652173913038, "value_uncond": 0.004267423245273602}, {"x": 3.6231884057971016, "y": -1.0144927536231876, "x2": 3.913043478260869, "y2": -0.72463768115942, "center_x": 3.7681159420289854, "center_y": -0.8695652173913038, "value_uncond": 0.00433973541624538}, {"x": 3.913043478260871, "y": -1.0144927536231876, "x2": 4.202898550724639, "y2": -0.72463768115942, "center_x": 4.057971014492755, "center_y": -0.8695652173913038, "value_uncond": 0.004372266252168516}, {"x": 4.202898550724639, "y": -1.0144927536231876, "x2": 4.492753623188406, "y2": -0.72463768115942, "center_x": 4.347826086956522, "center_y": -0.8695652173913038, "value_uncond": 0.004364110753120658}, {"x": 4.492753623188406, "y": -1.0144927536231876, "x2": 4.782608695652174, "y2": -0.72463768115942, "center_x": 4.63768115942029, "center_y": -0.8695652173913038, "value_uncond": 0.004315496225559185}, {"x": 4.782608695652174, "y": -1.0144927536231876, "x2": 5.0724637681159415, "y2": -0.72463768115942, "center_x": 4.927536231884058, "center_y": -0.8695652173913038, "value_uncond": 0.0042277717560458795}, {"x": 5.072463768115943, "y": -1.0144927536231876, "x2": 5.362318840579711, "y2": -0.72463768115942, "center_x": 5.217391304347827, "center_y": -0.8695652173913038, "value_uncond": 0.004103346007338828}, {"x": 5.362318840579711, "y": -1.0144927536231876, "x2": 5.6521739130434785, "y2": -0.72463768115942, "center_x": 5.507246376811595, "center_y": -0.8695652173913038, "value_uncond": 0.00394557733981317}, {"x": 5.6521739130434785, "y": -1.0144927536231876, "x2": 5.942028985507246, "y2": -0.72463768115942, "center_x": 5.797101449275362, "center_y": -0.8695652173913038, "value_uncond": 0.0037586232536219923}, {"x": 5.942028985507246, "y": -1.0144927536231876, "x2": 6.231884057971014, "y2": -0.72463768115942, "center_x": 6.08695652173913, "center_y": -0.8695652173913038, "value_uncond": 0.003547258568643672}, {"x": 6.2318840579710155, "y": -1.0144927536231876, "x2": 6.521739130434783, "y2": -0.72463768115942, "center_x": 6.376811594202899, "center_y": -0.8695652173913038, "value_uncond": 0.0033166734261969566}, {"x": 6.521739130434785, "y": -1.0144927536231876, "x2": 6.8115942028985526, "y2": -0.72463768115942, "center_x": 6.666666666666669, "center_y": -0.8695652173913038, "value_uncond": 0.0030722629985238}, {"x": 6.811594202898551, "y": -1.0144927536231876, "x2": 7.101449275362318, "y2": -0.72463768115942, "center_x": 6.956521739130435, "center_y": -0.8695652173913038, "value_uncond": 0.0028194207010446017}, {"x": 7.10144927536232, "y": -1.0144927536231876, "x2": 7.391304347826088, "y2": -0.72463768115942, "center_x": 7.246376811594204, "center_y": -0.8695652173913038, "value_uncond": 0.002563345771679815}, {"x": 7.391304347826086, "y": -1.0144927536231876, "x2": 7.681159420289854, "y2": -0.72463768115942, "center_x": 7.53623188405797, "center_y": -0.8695652173913038, "value_uncond": 0.0023088744363809113}, {"x": 7.681159420289855, "y": -1.0144927536231876, "x2": 7.971014492753623, "y2": -0.72463768115942, "center_x": 7.826086956521739, "center_y": -0.8695652173913038, "value_uncond": 0.0020603417010928485}, {"x": 7.971014492753625, "y": -1.0144927536231876, "x2": 8.260869565217392, "y2": -0.72463768115942, "center_x": 8.115942028985508, "center_y": -0.8695652173913038, "value_uncond": 0.001821478312344528}, {"x": 8.26086956521739, "y": -1.0144927536231876, "x2": 8.550724637681158, "y2": -0.72463768115942, "center_x": 8.405797101449274, "center_y": -0.8695652173913038, "value_uncond": 0.0015953448367560417}, {"x": 8.55072463768116, "y": -1.0144927536231876, "x2": 8.840579710144928, "y2": -0.72463768115942, "center_x": 8.695652173913043, "center_y": -0.8695652173913038, "value_uncond": 0.0013843023371089397}, {"x": 8.84057971014493, "y": -1.0144927536231876, "x2": 9.130434782608697, "y2": -0.72463768115942, "center_x": 8.985507246376812, "center_y": -0.8695652173913038, "value_uncond": 0.001190016950985169}, {"x": 9.130434782608695, "y": -1.0144927536231876, "x2": 9.420289855072463, "y2": -0.72463768115942, "center_x": 9.275362318840578, "center_y": -0.8695652173913038, "value_uncond": 0.0010134939435188506}, {"x": 9.420289855072465, "y": -1.0144927536231876, "x2": 9.710144927536232, "y2": -0.72463768115942, "center_x": 9.565217391304348, "center_y": -0.8695652173913038, "value_uncond": 0.0008551355912321872}, {"x": 9.710144927536234, "y": -1.0144927536231876, "x2": 10.000000000000002, "y2": -0.72463768115942, "center_x": 9.855072463768117, "center_y": -0.8695652173913038, "value_uncond": 0.0007148165870150437}, {"x": 10.0, "y": -1.0144927536231876, "x2": 10.289855072463768, "y2": -0.72463768115942, "center_x": 10.144927536231883, "center_y": -0.8695652173913038, "value_uncond": 0.0005919705142629914}, {"x": -10.0, "y": -0.72463768115942, "x2": -9.710144927536232, "y2": -0.43478260869565233, "center_x": -9.855072463768117, "center_y": -0.5797101449275361, "value_uncond": 9.550255627540823e-08}, {"x": -9.710144927536232, "y": -0.72463768115942, "x2": -9.420289855072465, "y2": -0.43478260869565233, "center_x": -9.565217391304348, "center_y": -0.5797101449275361, "value_uncond": 1.4921244997863546e-07}, {"x": -9.420289855072463, "y": -0.72463768115942, "x2": -9.130434782608695, "y2": -0.43478260869565233, "center_x": -9.275362318840578, "center_y": -0.5797101449275361, "value_uncond": 2.3096221759667814e-07}, {"x": -9.130434782608695, "y": -0.72463768115942, "x2": -8.840579710144928, "y2": -0.43478260869565233, "center_x": -8.985507246376812, "center_y": -0.5797101449275361, "value_uncond": 3.5417885927447224e-07}, {"x": -8.840579710144928, "y": -0.72463768115942, "x2": -8.55072463768116, "y2": -0.43478260869565233, "center_x": -8.695652173913043, "center_y": -0.5797101449275361, "value_uncond": 5.380840805434449e-07}, {"x": -8.55072463768116, "y": -0.72463768115942, "x2": -8.260869565217392, "y2": -0.43478260869565233, "center_x": -8.405797101449277, "center_y": -0.5797101449275361, "value_uncond": 8.098852073070005e-07}, {"x": -8.26086956521739, "y": -0.72463768115942, "x2": -7.971014492753623, "y2": -0.43478260869565233, "center_x": -8.115942028985508, "center_y": -0.5797101449275361, "value_uncond": 1.2076542226667024e-06}, {"x": -7.971014492753623, "y": -0.72463768115942, "x2": -7.681159420289855, "y2": -0.43478260869565233, "center_x": -7.826086956521739, "center_y": -0.5797101449275361, "value_uncond": 1.7840521963563896e-06}, {"x": -7.681159420289855, "y": -0.72463768115942, "x2": -7.391304347826088, "y2": -0.43478260869565233, "center_x": -7.536231884057972, "center_y": -0.5797101449275361, "value_uncond": 2.611068847258569e-06}, {"x": -7.391304347826087, "y": -0.72463768115942, "x2": -7.101449275362319, "y2": -0.43478260869565233, "center_x": -7.246376811594203, "center_y": -0.5797101449275361, "value_uncond": 3.785950265482027e-06}, {"x": -7.101449275362318, "y": -0.72463768115942, "x2": -6.811594202898551, "y2": -0.43478260869565233, "center_x": -6.956521739130435, "center_y": -0.5797101449275361, "value_uncond": 5.4384770520955155e-06}, {"x": -6.811594202898551, "y": -0.72463768115942, "x2": -6.521739130434783, "y2": -0.43478260869565233, "center_x": -6.666666666666667, "center_y": -0.5797101449275361, "value_uncond": 7.739724655570018e-06}, {"x": -6.521739130434782, "y": -0.72463768115942, "x2": -6.231884057971015, "y2": -0.43478260869565233, "center_x": -6.3768115942028984, "center_y": -0.5797101449275361, "value_uncond": 1.091238137437345e-05}, {"x": -6.231884057971014, "y": -0.72463768115942, "x2": -5.942028985507246, "y2": -0.43478260869565233, "center_x": -6.08695652173913, "center_y": -0.5797101449275361, "value_uncond": 1.5242611307532183e-05}, {"x": -5.942028985507246, "y": -0.72463768115942, "x2": -5.6521739130434785, "y2": -0.43478260869565233, "center_x": -5.797101449275362, "center_y": -0.5797101449275361, "value_uncond": 2.1093324266478302e-05}, {"x": -5.6521739130434785, "y": -0.72463768115942, "x2": -5.362318840579711, "y2": -0.43478260869565233, "center_x": -5.507246376811595, "center_y": -0.5797101449275361, "value_uncond": 2.8918548957470345e-05}, {"x": -5.36231884057971, "y": -0.72463768115942, "x2": -5.072463768115942, "y2": -0.43478260869565233, "center_x": -5.217391304347826, "center_y": -0.5797101449275361, "value_uncond": 3.927839929030012e-05}, {"x": -5.0724637681159415, "y": -0.72463768115942, "x2": -4.782608695652174, "y2": -0.43478260869565233, "center_x": -4.927536231884058, "center_y": -0.5797101449275361, "value_uncond": 5.285388048410386e-05}, {"x": -4.782608695652174, "y": -0.72463768115942, "x2": -4.492753623188406, "y2": -0.43478260869565233, "center_x": -4.63768115942029, "center_y": -0.5797101449275361, "value_uncond": 7.046051132351661e-05}, {"x": -4.492753623188405, "y": -0.72463768115942, "x2": -4.202898550724638, "y2": -0.43478260869565233, "center_x": -4.3478260869565215, "center_y": -0.5797101449275361, "value_uncond": 9.305945765838754e-05}, {"x": -4.202898550724638, "y": -0.72463768115942, "x2": -3.91304347826087, "y2": -0.43478260869565233, "center_x": -4.057971014492754, "center_y": -0.5797101449275361, "value_uncond": 0.00012176460336035191}, {"x": -3.913043478260869, "y": -0.72463768115942, "x2": -3.6231884057971016, "y2": -0.43478260869565233, "center_x": -3.7681159420289854, "center_y": -0.5797101449275361, "value_uncond": 0.0001578437587237487}, {"x": -3.6231884057971016, "y": -0.72463768115942, "x2": -3.333333333333334, "y2": -0.43478260869565233, "center_x": -3.4782608695652177, "center_y": -0.5797101449275361, "value_uncond": 0.0002027120588148225}, {"x": -3.333333333333333, "y": -0.72463768115942, "x2": -3.0434782608695654, "y2": -0.43478260869565233, "center_x": -3.1884057971014492, "center_y": -0.5797101449275361, "value_uncond": 0.0002579155751652848}, {"x": -3.0434782608695645, "y": -0.72463768115942, "x2": -2.753623188405797, "y2": -0.43478260869565233, "center_x": -2.8985507246376807, "center_y": -0.5797101449275361, "value_uncond": 0.0003251032931855034}, {"x": -2.753623188405797, "y": -0.72463768115942, "x2": -2.4637681159420293, "y2": -0.43478260869565233, "center_x": -2.608695652173913, "center_y": -0.5797101449275361, "value_uncond": 0.00040598592995069906}, {"x": -2.4637681159420284, "y": -0.72463768115942, "x2": -2.1739130434782608, "y2": -0.43478260869565233, "center_x": -2.3188405797101446, "center_y": -0.5797101449275361, "value_uncond": 0.0005022806078948621}, {"x": -2.1739130434782608, "y": -0.72463768115942, "x2": -1.8840579710144931, "y2": -0.43478260869565233, "center_x": -2.028985507246377, "center_y": -0.5797101449275361, "value_uncond": 0.0006156411690762544}, {"x": -1.8840579710144922, "y": -0.72463768115942, "x2": -1.5942028985507246, "y2": -0.43478260869565233, "center_x": -1.7391304347826084, "center_y": -0.5797101449275361, "value_uncond": 0.000747574900622746}, {"x": -1.5942028985507246, "y": -0.72463768115942, "x2": -1.304347826086957, "y2": -0.43478260869565233, "center_x": -1.4492753623188408, "center_y": -0.5797101449275361, "value_uncond": 0.0008993476079530388}, {"x": -1.304347826086957, "y": -0.72463768115942, "x2": -1.0144927536231894, "y2": -0.43478260869565233, "center_x": -1.1594202898550732, "center_y": -0.5797101449275361, "value_uncond": 0.0010718802540591508}, {"x": -1.0144927536231876, "y": -0.72463768115942, "x2": -0.72463768115942, "y2": -0.43478260869565233, "center_x": -0.8695652173913038, "center_y": -0.5797101449275361, "value_uncond": 0.0012656416892218969}, {"x": -0.72463768115942, "y": -0.72463768115942, "x2": -0.43478260869565233, "y2": -0.43478260869565233, "center_x": -0.5797101449275361, "center_y": -0.5797101449275361, "value_uncond": 0.001480543211796923}, {"x": -0.43478260869565233, "y": -0.72463768115942, "x2": -0.1449275362318847, "y2": -0.43478260869565233, "center_x": -0.2898550724637685, "center_y": -0.5797101449275361, "value_uncond": 0.001715841697765436}, {"x": -0.14492753623188293, "y": -0.72463768115942, "x2": 0.1449275362318847, "y2": -0.43478260869565233, "center_x": 8.881784197001252e-16, "center_y": -0.5797101449275361, "value_uncond": 0.0019700586812547044}, {"x": 0.1449275362318847, "y": -0.72463768115942, "x2": 0.43478260869565233, "y2": -0.43478260869565233, "center_x": 0.2898550724637685, "center_y": -0.5797101449275361, "value_uncond": 0.002240922936869036}, {"x": 0.43478260869565233, "y": -0.72463768115942, "x2": 0.72463768115942, "y2": -0.43478260869565233, "center_x": 0.5797101449275361, "center_y": -0.5797101449275361, "value_uncond": 0.002525343709512413}, {"x": 0.72463768115942, "y": -0.72463768115942, "x2": 1.0144927536231876, "y2": -0.43478260869565233, "center_x": 0.8695652173913038, "center_y": -0.5797101449275361, "value_uncond": 0.0028194207010446004}, {"x": 1.0144927536231894, "y": -0.72463768115942, "x2": 1.304347826086957, "y2": -0.43478260869565233, "center_x": 1.1594202898550732, "center_y": -0.5797101449275361, "value_uncond": 0.0031184952515928535}, {"x": 1.304347826086957, "y": -0.72463768115942, "x2": 1.5942028985507246, "y2": -0.43478260869565233, "center_x": 1.4492753623188408, "center_y": -0.5797101449275361, "value_uncond": 0.0034172449045790543}, {"x": 1.5942028985507246, "y": -0.72463768115942, "x2": 1.8840579710144922, "y2": -0.43478260869565233, "center_x": 1.7391304347826084, "center_y": -0.5797101449275361, "value_uncond": 0.003709820840910567}, {"x": 1.884057971014494, "y": -0.72463768115942, "x2": 2.1739130434782616, "y2": -0.43478260869565233, "center_x": 2.028985507246378, "center_y": -0.5797101449275361, "value_uncond": 0.003990024691474894}, {"x": 2.1739130434782616, "y": -0.72463768115942, "x2": 2.4637681159420293, "y2": -0.43478260869565233, "center_x": 2.3188405797101455, "center_y": -0.5797101449275361, "value_uncond": 0.004251518217730996}, {"x": 2.4637681159420293, "y": -0.72463768115942, "x2": 2.753623188405797, "y2": -0.43478260869565233, "center_x": 2.608695652173913, "center_y": -0.5797101449275361, "value_uncond": 0.004488056545781097}, {"x": 2.753623188405797, "y": -0.72463768115942, "x2": 3.0434782608695645, "y2": -0.43478260869565233, "center_x": 2.8985507246376807, "center_y": -0.5797101449275361, "value_uncond": 0.004693733311662716}, {"x": 3.0434782608695663, "y": -0.72463768115942, "x2": 3.333333333333334, "y2": -0.43478260869565233, "center_x": 3.18840579710145, "center_y": -0.5797101449275361, "value_uncond": 0.004863224463161162}, {"x": 3.333333333333334, "y": -0.72463768115942, "x2": 3.6231884057971016, "y2": -0.43478260869565233, "center_x": 3.4782608695652177, "center_y": -0.5797101449275361, "value_uncond": 0.004992016754393206}, {"x": 3.6231884057971016, "y": -0.72463768115942, "x2": 3.913043478260869, "y2": -0.43478260869565233, "center_x": 3.7681159420289854, "center_y": -0.5797101449275361, "value_uncond": 0.005076607278531506}, {"x": 3.913043478260871, "y": -0.72463768115942, "x2": 4.202898550724639, "y2": -0.43478260869565233, "center_x": 4.057971014492755, "center_y": -0.5797101449275361, "value_uncond": 0.005114661736369165}, {"x": 4.202898550724639, "y": -0.72463768115942, "x2": 4.492753623188406, "y2": -0.43478260869565233, "center_x": 4.347826086956522, "center_y": -0.5797101449275361, "value_uncond": 0.005105121462169169}, {"x": 4.492753623188406, "y": -0.72463768115942, "x2": 4.782608695652174, "y2": -0.43478260869565233, "center_x": 4.63768115942029, "center_y": -0.5797101449275361, "value_uncond": 0.005048252358228621}, {"x": 4.782608695652174, "y": -0.72463768115942, "x2": 5.0724637681159415, "y2": -0.43478260869565233, "center_x": 4.927536231884058, "center_y": -0.5797101449275361, "value_uncond": 0.004945632581278748}, {"x": 5.072463768115943, "y": -0.72463768115942, "x2": 5.362318840579711, "y2": -0.43478260869565233, "center_x": 5.217391304347827, "center_y": -0.5797101449275361, "value_uncond": 0.004800079776571257}, {"x": 5.362318840579711, "y": -0.72463768115942, "x2": 5.6521739130434785, "y2": -0.43478260869565233, "center_x": 5.507246376811595, "center_y": -0.5797101449275361, "value_uncond": 0.004615522542301451}, {"x": 5.6521739130434785, "y": -0.72463768115942, "x2": 5.942028985507246, "y2": -0.43478260869565233, "center_x": 5.797101449275362, "center_y": -0.5797101449275361, "value_uncond": 0.004396824307575779}, {"x": 5.942028985507246, "y": -0.72463768115942, "x2": 6.231884057971014, "y2": -0.43478260869565233, "center_x": 6.08695652173913, "center_y": -0.5797101449275361, "value_uncond": 0.004149570639951542}, {"x": 6.2318840579710155, "y": -0.72463768115942, "x2": 6.521739130434783, "y2": -0.43478260869565233, "center_x": 6.376811594202899, "center_y": -0.5797101449275361, "value_uncond": 0.003879832948551227}, {"x": 6.521739130434785, "y": -0.72463768115942, "x2": 6.8115942028985526, "y2": -0.43478260869565233, "center_x": 6.666666666666669, "center_y": -0.5797101449275361, "value_uncond": 0.0035939224869526182}, {"x": 6.811594202898551, "y": -0.72463768115942, "x2": 7.101449275362318, "y2": -0.43478260869565233, "center_x": 6.956521739130435, "center_y": -0.5797101449275361, "value_uncond": 0.00329814845360981}, {"x": 7.10144927536232, "y": -0.72463768115942, "x2": 7.391304347826088, "y2": -0.43478260869565233, "center_x": 7.246376811594204, "center_y": -0.5797101449275361, "value_uncond": 0.0029985928988180773}, {"x": 7.391304347826086, "y": -0.72463768115942, "x2": 7.681159420289854, "y2": -0.43478260869565233, "center_x": 7.53623188405797, "center_y": -0.5797101449275361, "value_uncond": 0.002700913222743788}, {"x": 7.681159420289855, "y": -0.72463768115942, "x2": 7.971014492753623, "y2": -0.43478260869565233, "center_x": 7.826086956521739, "center_y": -0.5797101449275361, "value_uncond": 0.0024101805001465392}, {"x": 7.971014492753625, "y": -0.72463768115942, "x2": 8.260869565217392, "y2": -0.43478260869565233, "center_x": 8.115942028985508, "center_y": -0.5797101449275361, "value_uncond": 0.00213075894523904}, {"x": 8.26086956521739, "y": -0.72463768115942, "x2": 8.550724637681158, "y2": -0.43478260869565233, "center_x": 8.405797101449274, "center_y": -0.5797101449275361, "value_uncond": 0.0018662287981257527}, {"x": 8.55072463768116, "y": -0.72463768115942, "x2": 8.840579710144928, "y2": -0.43478260869565233, "center_x": 8.695652173913043, "center_y": -0.5797101449275361, "value_uncond": 0.0016193520217726706}, {"x": 8.84057971014493, "y": -0.72463768115942, "x2": 9.130434782608697, "y2": -0.43478260869565233, "center_x": 8.985507246376812, "center_y": -0.5797101449275361, "value_uncond": 0.0013920776580831054}, {"x": 9.130434782608695, "y": -0.72463768115942, "x2": 9.420289855072463, "y2": -0.43478260869565233, "center_x": 9.275362318840578, "center_y": -0.5797101449275361, "value_uncond": 0.0011855816626873544}, {"x": 9.420289855072465, "y": -0.72463768115942, "x2": 9.710144927536232, "y2": -0.43478260869565233, "center_x": 9.565217391304348, "center_y": -0.5797101449275361, "value_uncond": 0.0010003346172510537}, {"x": 9.710144927536234, "y": -0.72463768115942, "x2": 10.000000000000002, "y2": -0.43478260869565233, "center_x": 9.855072463768117, "center_y": -0.5797101449275361, "value_uncond": 0.0008361899379559863}, {"x": 10.0, "y": -0.72463768115942, "x2": 10.289855072463768, "y2": -0.43478260869565233, "center_x": 10.144927536231883, "center_y": -0.5797101449275361, "value_uncond": 0.0006924850326436628}, {"x": -10.0, "y": -0.43478260869565233, "x2": -9.710144927536232, "y2": -0.1449275362318847, "center_x": -9.855072463768117, "center_y": -0.2898550724637685, "value_uncond": 1.1068050361167863e-07}, {"x": -9.710144927536232, "y": -0.43478260869565233, "x2": -9.420289855072465, "y2": -0.1449275362318847, "center_x": -9.565217391304348, "center_y": -0.2898550724637685, "value_uncond": 1.7292635666361052e-07}, {"x": -9.420289855072463, "y": -0.43478260869565233, "x2": -9.130434782608695, "y2": -0.1449275362318847, "center_x": -9.275362318840578, "center_y": -0.2898550724637685, "value_uncond": 2.6766838036410634e-07}, {"x": -9.130434782608695, "y": -0.43478260869565233, "x2": -8.840579710144928, "y2": -0.1449275362318847, "center_x": -8.985507246376812, "center_y": -0.2898550724637685, "value_uncond": 4.1046748947810695e-07}, {"x": -8.840579710144928, "y": -0.43478260869565233, "x2": -8.55072463768116, "y2": -0.1449275362318847, "center_x": -8.695652173913043, "center_y": -0.2898550724637685, "value_uncond": 6.236002400630083e-07}, {"x": -8.55072463768116, "y": -0.43478260869565233, "x2": -8.260869565217392, "y2": -0.1449275362318847, "center_x": -8.405797101449277, "center_y": -0.2898550724637685, "value_uncond": 9.385979402885297e-07}, {"x": -8.26086956521739, "y": -0.43478260869565233, "x2": -7.971014492753623, "y2": -0.1449275362318847, "center_x": -8.115942028985508, "center_y": -0.2898550724637685, "value_uncond": 1.3995832443276615e-06}, {"x": -7.971014492753623, "y": -0.43478260869565233, "x2": -7.681159420289855, "y2": -0.1449275362318847, "center_x": -7.826086956521739, "center_y": -0.2898550724637685, "value_uncond": 2.067586494677862e-06}, {"x": -7.681159420289855, "y": -0.43478260869565233, "x2": -7.391304347826088, "y2": -0.1449275362318847, "center_x": -7.536231884057972, "center_y": -0.2898550724637685, "value_uncond": 3.0260385297535673e-06}, {"x": -7.391304347826087, "y": -0.43478260869565233, "x2": -7.101449275362319, "y2": -0.1449275362318847, "center_x": -7.246376811594203, "center_y": -0.2898550724637685, "value_uncond": 4.387640481830946e-06}, {"x": -7.101449275362318, "y": -0.43478260869565233, "x2": -6.811594202898551, "y2": -0.1449275362318847, "center_x": -6.956521739130435, "center_y": -0.2898550724637685, "value_uncond": 6.302798610653378e-06}, {"x": -6.811594202898551, "y": -0.43478260869565233, "x2": -6.521739130434783, "y2": -0.1449275362318847, "center_x": -6.666666666666667, "center_y": -0.2898550724637685, "value_uncond": 8.969776895016973e-06}, {"x": -6.521739130434782, "y": -0.43478260869565233, "x2": -6.231884057971015, "y2": -0.1449275362318847, "center_x": -6.3768115942028984, "center_y": -0.2898550724637685, "value_uncond": 1.2646654845922255e-05}, {"x": -6.231884057971014, "y": -0.43478260869565233, "x2": -5.942028985507246, "y2": -0.1449275362318847, "center_x": -6.08695652173913, "center_y": -0.2898550724637685, "value_uncond": 1.7665075801841584e-05}, {"x": -5.942028985507246, "y": -0.43478260869565233, "x2": -5.6521739130434785, "y2": -0.1449275362318847, "center_x": -5.797101449275362, "center_y": -0.2898550724637685, "value_uncond": 2.4445625789593858e-05}, {"x": -5.6521739130434785, "y": -0.43478260869565233, "x2": -5.362318840579711, "y2": -0.1449275362318847, "center_x": -5.507246376811595, "center_y": -0.2898550724637685, "value_uncond": 3.3514490995420406e-05}, {"x": -5.36231884057971, "y": -0.43478260869565233, "x2": -5.072463768115942, "y2": -0.1449275362318847, "center_x": -5.217391304347826, "center_y": -0.2898550724637685, "value_uncond": 4.5520802626206266e-05}, {"x": -5.0724637681159415, "y": -0.43478260869565233, "x2": -4.782608695652174, "y2": -0.1449275362318847, "center_x": -4.927536231884058, "center_y": -0.2898550724637685, "value_uncond": 6.125379610721919e-05}, {"x": -4.782608695652174, "y": -0.43478260869565233, "x2": -4.492753623188406, "y2": -0.1449275362318847, "center_x": -4.63768115942029, "center_y": -0.2898550724637685, "value_uncond": 8.165859828436157e-05}, {"x": -4.492753623188405, "y": -0.43478260869565233, "x2": -4.202898550724638, "y2": -0.1449275362318847, "center_x": -4.3478260869565215, "center_y": -0.2898550724637685, "value_uncond": 0.00010784913033906096}, {"x": -4.202898550724638, "y": -0.43478260869565233, "x2": -3.91304347826087, "y2": -0.1449275362318847, "center_x": -4.057971014492754, "center_y": -0.2898550724637685, "value_uncond": 0.0001411163025116883}, {"x": -3.913043478260869, "y": -0.43478260869565233, "x2": -3.6231884057971016, "y2": -0.1449275362318847, "center_x": -3.7681159420289854, "center_y": -0.2898550724637685, "value_uncond": 0.00018292941455016692}, {"x": -3.6231884057971016, "y": -0.43478260869565233, "x2": -3.333333333333334, "y2": -0.1449275362318847, "center_x": -3.4782608695652177, "center_y": -0.2898550724637685, "value_uncond": 0.00023492850487774914}, {"x": -3.333333333333333, "y": -0.43478260869565233, "x2": -3.0434782608695654, "y2": -0.1449275362318847, "center_x": -3.1884057971014492, "center_y": -0.2898550724637685, "value_uncond": 0.00029890535774004296}, {"x": -3.0434782608695645, "y": -0.43478260869565233, "x2": -2.753623188405797, "y2": -0.1449275362318847, "center_x": -2.8985507246376807, "center_y": -0.2898550724637685, "value_uncond": 0.00037677102706885516}, {"x": -2.753623188405797, "y": -0.43478260869565233, "x2": -2.4637681159420293, "y2": -0.1449275362318847, "center_x": -2.608695652173913, "center_y": -0.2898550724637685, "value_uncond": 0.00047050810929727627}, {"x": -2.4637681159420284, "y": -0.43478260869565233, "x2": -2.1739130434782608, "y2": -0.1449275362318847, "center_x": -2.3188405797101446, "center_y": -0.2898550724637685, "value_uncond": 0.0005821066242024608}, {"x": -2.1739130434782608, "y": -0.43478260869565233, "x2": -1.8840579710144931, "y2": -0.1449275362318847, "center_x": -2.028985507246377, "center_y": -0.2898550724637685, "value_uncond": 0.0007134832542172296}, {"x": -1.8840579710144922, "y": -0.43478260869565233, "x2": -1.5942028985507246, "y2": -0.1449275362318847, "center_x": -1.7391304347826084, "center_y": -0.2898550724637685, "value_uncond": 0.0008663848352892936}, {"x": -1.5942028985507246, "y": -0.43478260869565233, "x2": -1.304347826086957, "y2": -0.1449275362318847, "center_x": -1.4492753623188408, "center_y": -0.2898550724637685, "value_uncond": 0.001042278343661805}, {"x": -1.304347826086957, "y": -0.43478260869565233, "x2": -1.0144927536231894, "y2": -0.1449275362318847, "center_x": -1.1594202898550732, "center_y": -0.2898550724637685, "value_uncond": 0.0012422311083334794}, {"x": -1.0144927536231876, "y": -0.43478260869565233, "x2": -0.72463768115942, "y2": -0.1449275362318847, "center_x": -0.8695652173913038, "center_y": -0.2898550724637685, "value_uncond": 0.0014667864926154442}, {"x": -0.72463768115942, "y": -0.43478260869565233, "x2": -0.43478260869565233, "y2": -0.1449275362318847, "center_x": -0.5797101449275361, "center_y": -0.2898550724637685, "value_uncond": 0.001715841697765436}, {"x": -0.43478260869565233, "y": -0.43478260869565233, "x2": -0.1449275362318847, "y2": -0.1449275362318847, "center_x": -0.2898550724637685, "center_y": -0.2898550724637685, "value_uncond": 0.001988535497195876}, {"x": -0.14492753623188293, "y": -0.43478260869565233, "x2": 0.1449275362318847, "y2": -0.1449275362318847, "center_x": 8.881784197001252e-16, "center_y": -0.2898550724637685, "value_uncond": 0.002283154456693605}, {"x": 0.1449275362318847, "y": -0.43478260869565233, "x2": 0.43478260869565233, "y2": -0.1449275362318847, "center_x": 0.2898550724637685, "center_y": -0.2898550724637685, "value_uncond": 0.002597066391525409}, {"x": 0.43478260869565233, "y": -0.43478260869565233, "x2": 0.72463768115942, "y2": -0.1449275362318847, "center_x": 0.5797101449275361, "center_y": -0.2898550724637685, "value_uncond": 0.0029266893417531576}, {"x": 0.72463768115942, "y": -0.43478260869565233, "x2": 1.0144927536231876, "y2": -0.1449275362318847, "center_x": 0.8695652173913038, "center_y": -0.2898550724637685, "value_uncond": 0.003267503146040521}, {"x": 1.0144927536231894, "y": -0.43478260869565233, "x2": 1.304347826086957, "y2": -0.1449275362318847, "center_x": 1.1594202898550732, "center_y": -0.2898550724637685, "value_uncond": 0.003614108757063738}, {"x": 1.304347826086957, "y": -0.43478260869565233, "x2": 1.5942028985507246, "y2": -0.1449275362318847, "center_x": 1.4492753623188408, "center_y": -0.2898550724637685, "value_uncond": 0.003960337835487279}, {"x": 1.5942028985507246, "y": -0.43478260869565233, "x2": 1.8840579710144922, "y2": -0.1449275362318847, "center_x": 1.7391304347826084, "center_y": -0.2898550724637685, "value_uncond": 0.004299412026176441}, {"x": 1.884057971014494, "y": -0.43478260869565233, "x2": 2.1739130434782616, "y2": -0.1449275362318847, "center_x": 2.028985507246378, "center_y": -0.2898550724637685, "value_uncond": 0.004624147870994629}, {"x": 2.1739130434782616, "y": -0.43478260869565233, "x2": 2.4637681159420293, "y2": -0.1449275362318847, "center_x": 2.3188405797101455, "center_y": -0.2898550724637685, "value_uncond": 0.004927199813329617}, {"x": 2.4637681159420293, "y": -0.43478260869565233, "x2": 2.753623188405797, "y2": -0.1449275362318847, "center_x": 2.608695652173913, "center_y": -0.2898550724637685, "value_uncond": 0.005201330499387401}, {"x": 2.753623188405797, "y": -0.43478260869565233, "x2": 3.0434782608695645, "y2": -0.1449275362318847, "center_x": 2.8985507246376807, "center_y": -0.2898550724637685, "value_uncond": 0.005439694883722322}, {"x": 3.0434782608695663, "y": -0.43478260869565233, "x2": 3.333333333333334, "y2": -0.1449275362318847, "center_x": 3.18840579710145, "center_y": -0.2898550724637685, "value_uncond": 0.005636122777772336}, {"x": 3.333333333333334, "y": -0.43478260869565233, "x2": 3.6231884057971016, "y2": -0.1449275362318847, "center_x": 3.4782608695652177, "center_y": -0.2898550724637685, "value_uncond": 0.005785383658431456}, {"x": 3.6231884057971016, "y": -0.43478260869565233, "x2": 3.913043478260869, "y2": -0.1449275362318847, "center_x": 3.7681159420289854, "center_y": -0.2898550724637685, "value_uncond": 0.005883417911937755}, {"x": 3.913043478260871, "y": -0.43478260869565233, "x2": 4.202898550724639, "y2": -0.1449275362318847, "center_x": 4.057971014492755, "center_y": -0.2898550724637685, "value_uncond": 0.005927520255606916}, {"x": 4.202898550724639, "y": -0.43478260869565233, "x2": 4.492753623188406, "y2": -0.1449275362318847, "center_x": 4.347826086956522, "center_y": -0.2898550724637685, "value_uncond": 0.005916463772992943}, {"x": 4.492753623188406, "y": -0.43478260869565233, "x2": 4.782608695652174, "y2": -0.1449275362318847, "center_x": 4.63768115942029, "center_y": -0.2898550724637685, "value_uncond": 0.005850556625482321}, {"x": 4.782608695652174, "y": -0.43478260869565233, "x2": 5.0724637681159415, "y2": -0.1449275362318847, "center_x": 4.927536231884058, "center_y": -0.2898550724637685, "value_uncond": 0.005731627781728902}, {"x": 5.072463768115943, "y": -0.43478260869565233, "x2": 5.362318840579711, "y2": -0.1449275362318847, "center_x": 5.217391304347827, "center_y": -0.2898550724637685, "value_uncond": 0.005562942687262318}, {"x": 5.362318840579711, "y": -0.43478260869565233, "x2": 5.6521739130434785, "y2": -0.1449275362318847, "center_x": 5.507246376811595, "center_y": -0.2898550724637685, "value_uncond": 0.0053490543011205476}, {"x": 5.6521739130434785, "y": -0.43478260869565233, "x2": 5.942028985507246, "y2": -0.1449275362318847, "center_x": 5.797101449275362, "center_y": -0.2898550724637685, "value_uncond": 0.005095598983248022}, {"x": 5.942028985507246, "y": -0.43478260869565233, "x2": 6.231884057971014, "y2": -0.1449275362318847, "center_x": 6.08695652173913, "center_y": -0.2898550724637685, "value_uncond": 0.004809049999432688}, {"x": 6.2318840579710155, "y": -0.43478260869565233, "x2": 6.521739130434783, "y2": -0.1449275362318847, "center_x": 6.376811594202899, "center_y": -0.2898550724637685, "value_uncond": 0.004496443670434078}, {"x": 6.521739130434785, "y": -0.43478260869565233, "x2": 6.8115942028985526, "y2": -0.1449275362318847, "center_x": 6.666666666666669, "center_y": -0.2898550724637685, "value_uncond": 0.004165094279258357}, {"x": 6.811594202898551, "y": -0.43478260869565233, "x2": 7.101449275362318, "y2": -0.1449275362318847, "center_x": 6.956521739130435, "center_y": -0.2898550724637685, "value_uncond": 0.0038223137271730825}, {"x": 7.10144927536232, "y": -0.43478260869565233, "x2": 7.391304347826088, "y2": -0.1449275362318847, "center_x": 7.246376811594204, "center_y": -0.2898550724637685, "value_uncond": 0.003475150667281647}, {"x": 7.391304347826086, "y": -0.43478260869565233, "x2": 7.681159420289854, "y2": -0.1449275362318847, "center_x": 7.53623188405797, "center_y": -0.2898550724637685, "value_uncond": 0.003130161614131584}, {"x": 7.681159420289855, "y": -0.43478260869565233, "x2": 7.971014492753623, "y2": -0.1449275362318847, "center_x": 7.826086956521739, "center_y": -0.2898550724637685, "value_uncond": 0.002793223573848532}, {"x": 7.971014492753625, "y": -0.43478260869565233, "x2": 8.260869565217392, "y2": -0.1449275362318847, "center_x": 8.115942028985508, "center_y": -0.2898550724637685, "value_uncond": 0.002469394352692033}, {"x": 8.26086956521739, "y": -0.43478260869565233, "x2": 8.550724637681158, "y2": -0.1449275362318847, "center_x": 8.405797101449274, "center_y": -0.2898550724637685, "value_uncond": 0.002162823188057046}, {"x": 8.55072463768116, "y": -0.43478260869565233, "x2": 8.840579710144928, "y2": -0.1449275362318847, "center_x": 8.695652173913043, "center_y": -0.2898550724637685, "value_uncond": 0.0018767109937615424}, {"x": 8.84057971014493, "y": -0.43478260869565233, "x2": 9.130434782608697, "y2": -0.1449275362318847, "center_x": 8.985507246376812, "center_y": -0.2898550724637685, "value_uncond": 0.001613316567348035}, {"x": 9.130434782608695, "y": -0.43478260869565233, "x2": 9.420289855072463, "y2": -0.1449275362318847, "center_x": 9.275362318840578, "center_y": -0.2898550724637685, "value_uncond": 0.0013740027557021192}, {"x": 9.420289855072465, "y": -0.43478260869565233, "x2": 9.710144927536232, "y2": -0.1449275362318847, "center_x": 9.565217391304348, "center_y": -0.2898550724637685, "value_uncond": 0.0011593149286837669}, {"x": 9.710144927536234, "y": -0.43478260869565233, "x2": 10.000000000000002, "y2": -0.1449275362318847, "center_x": 9.855072463768117, "center_y": -0.2898550724637685, "value_uncond": 0.0009690832063289839}, {"x": 10.0, "y": -0.43478260869565233, "x2": 10.289855072463768, "y2": -0.1449275362318847, "center_x": 10.144927536231883, "center_y": -0.2898550724637685, "value_uncond": 0.0008025396926080617}, {"x": -10.0, "y": -0.14492753623188293, "x2": -9.710144927536232, "y2": 0.1449275362318847, "center_x": -9.855072463768117, "center_y": 8.881784197001252e-16, "value_uncond": 1.2707879011787393e-07}, {"x": -9.710144927536232, "y": -0.14492753623188293, "x2": -9.420289855072465, "y2": 0.1449275362318847, "center_x": -9.565217391304348, "center_y": 8.881784197001252e-16, "value_uncond": 1.98546911761475e-07}, {"x": -9.420289855072463, "y": -0.14492753623188293, "x2": -9.130434782608695, "y2": 0.1449275362318847, "center_x": -9.275362318840578, "center_y": 8.881784197001252e-16, "value_uncond": 3.073257965000113e-07}, {"x": -9.130434782608695, "y": -0.14492753623188293, "x2": -8.840579710144928, "y2": 0.1449275362318847, "center_x": -8.985507246376812, "center_y": 8.881784197001252e-16, "value_uncond": 4.7128184498154966e-07}, {"x": -8.840579710144928, "y": -0.14492753623188293, "x2": -8.55072463768116, "y2": 0.1449275362318847, "center_x": -8.695652173913043, "center_y": 8.881784197001252e-16, "value_uncond": 7.159920802534279e-07}, {"x": -8.55072463768116, "y": -0.14492753623188293, "x2": -8.260869565217392, "y2": 0.1449275362318847, "center_x": -8.405797101449277, "center_y": 8.881784197001252e-16, "value_uncond": 1.077659450100381e-06}, {"x": -8.26086956521739, "y": -0.14492753623188293, "x2": -7.971014492753623, "y2": 0.1449275362318847, "center_x": -8.115942028985508, "center_y": 8.881784197001252e-16, "value_uncond": 1.6069437665590913e-06}, {"x": -7.971014492753623, "y": -0.14492753623188293, "x2": -7.681159420289855, "y2": 0.1449275362318847, "center_x": -7.826086956521739, "center_y": 8.881784197001252e-16, "value_uncond": 2.373917552178486e-06}, {"x": -7.681159420289855, "y": -0.14492753623188293, "x2": -7.391304347826088, "y2": 0.1449275362318847, "center_x": -7.536231884057972, "center_y": 8.881784197001252e-16, "value_uncond": 3.4743726551907147e-06}, {"x": -7.391304347826087, "y": -0.14492753623188293, "x2": -7.101449275362319, "y2": 0.1449275362318847, "center_x": -7.246376811594203, "center_y": 8.881784197001252e-16, "value_uncond": 5.037707868221594e-06}, {"x": -7.101449275362318, "y": -0.14492753623188293, "x2": -6.811594202898551, "y2": 0.1449275362318847, "center_x": -6.956521739130435, "center_y": 8.881784197001252e-16, "value_uncond": 7.236613456409447e-06}, {"x": -6.811594202898551, "y": -0.14492753623188293, "x2": -6.521739130434783, "y2": 0.1449275362318847, "center_x": -6.666666666666667, "center_y": 8.881784197001252e-16, "value_uncond": 1.0298727944401408e-05}, {"x": -6.521739130434782, "y": -0.14492753623188293, "x2": -6.231884057971015, "y2": 0.1449275362318847, "center_x": -6.3768115942028984, "center_y": 8.881784197001252e-16, "value_uncond": 1.4520367584310195e-05}, {"x": -6.231884057971014, "y": -0.14492753623188293, "x2": -5.942028985507246, "y2": 0.1449275362318847, "center_x": -6.08695652173913, "center_y": 8.881784197001252e-16, "value_uncond": 2.0282311581402023e-05}, {"x": -5.942028985507246, "y": -0.14492753623188293, "x2": -5.6521739130434785, "y2": 0.1449275362318847, "center_x": -5.797101449275362, "center_y": 8.881784197001252e-16, "value_uncond": 2.80674594679753e-05}, {"x": -5.6521739130434785, "y": -0.14492753623188293, "x2": -5.362318840579711, "y2": 0.1449275362318847, "center_x": -5.507246376811595, "center_y": 8.881784197001252e-16, "value_uncond": 3.8479956524746164e-05}, {"x": -5.36231884057971, "y": -0.14492753623188293, "x2": -5.072463768115942, "y2": 0.1449275362318847, "center_x": -5.217391304347826, "center_y": 8.881784197001252e-16, "value_uncond": 5.226510843525332e-05}, {"x": -5.0724637681159415, "y": -0.14492753623188293, "x2": -4.782608695652174, "y2": 0.1449275362318847, "center_x": -4.927536231884058, "center_y": 8.881784197001252e-16, "value_uncond": 7.032908276910843e-05}, {"x": -4.782608695652174, "y": -0.14492753623188293, "x2": -4.492753623188406, "y2": 0.1449275362318847, "center_x": -4.63768115942029, "center_y": 8.881784197001252e-16, "value_uncond": 9.37570351966054e-05}, {"x": -4.492753623188405, "y": -0.14492753623188293, "x2": -4.202898550724638, "y2": 0.1449275362318847, "center_x": -4.3478260869565215, "center_y": 8.881784197001252e-16, "value_uncond": 0.0001238279240835204}, {"x": -4.202898550724638, "y": -0.14492753623188293, "x2": -3.91304347826087, "y2": 0.1449275362318847, "center_x": -4.057971014492754, "center_y": 8.881784197001252e-16, "value_uncond": 0.00016202391933461542}, {"x": -3.913043478260869, "y": -0.14492753623188293, "x2": -3.6231884057971016, "y2": 0.1449275362318847, "center_x": -3.7681159420289854, "center_y": 8.881784197001252e-16, "value_uncond": 0.00021003201033098035}, {"x": -3.6231884057971016, "y": -0.14492753623188293, "x2": -3.333333333333334, "y2": 0.1449275362318847, "center_x": -3.4782608695652177, "center_y": 8.881784197001252e-16, "value_uncond": 0.00026973522155997187}, {"x": -3.333333333333333, "y": -0.14492753623188293, "x2": -3.0434782608695654, "y2": 0.1449275362318847, "center_x": -3.1884057971014492, "center_y": 8.881784197001252e-16, "value_uncond": 0.0003431908058046359}, {"x": -3.0434782608695645, "y": -0.14492753623188293, "x2": -2.753623188405797, "y2": 0.1449275362318847, "center_x": -2.8985507246376807, "center_y": 8.881784197001252e-16, "value_uncond": 0.0004325929563833926}, {"x": -2.753623188405797, "y": -0.14492753623188293, "x2": -2.4637681159420293, "y2": 0.1449275362318847, "center_x": -2.608695652173913, "center_y": 8.881784197001252e-16, "value_uncond": 0.0005402180087644379}, {"x": -2.4637681159420284, "y": -0.14492753623188293, "x2": -2.1739130434782608, "y2": 0.1449275362318847, "center_x": -2.3188405797101446, "center_y": 8.881784197001252e-16, "value_uncond": 0.0006683508215935073}, {"x": -2.1739130434782608, "y": -0.14492753623188293, "x2": -1.8840579710144931, "y2": 0.1449275362318847, "center_x": -2.028985507246377, "center_y": 8.881784197001252e-16, "value_uncond": 0.0008191920506017823}, {"x": -1.8840579710144922, "y": -0.14492753623188293, "x2": -1.5942028985507246, "y2": 0.1449275362318847, "center_x": -1.7391304347826084, "center_y": 8.881784197001252e-16, "value_uncond": 0.0009947473407901947}, {"x": -1.5942028985507246, "y": -0.14492753623188293, "x2": -1.304347826086957, "y2": 0.1449275362318847, "center_x": -1.4492753623188408, "center_y": 8.881784197001252e-16, "value_uncond": 0.0011967010137874715}, {"x": -1.304347826086957, "y": -0.14492753623188293, "x2": -1.0144927536231894, "y2": 0.1449275362318847, "center_x": -1.1594202898550732, "center_y": 8.881784197001252e-16, "value_uncond": 0.001426278532736519}, {"x": -1.0144927536231876, "y": -0.14492753623188293, "x2": -0.72463768115942, "y2": 0.1449275362318847, "center_x": -0.8695652173913038, "center_y": 8.881784197001252e-16, "value_uncond": 0.0016841037649845162}, {"x": -0.72463768115942, "y": -0.14492753623188293, "x2": -0.43478260869565233, "y2": 0.1449275362318847, "center_x": -0.5797101449275361, "center_y": 8.881784197001252e-16, "value_uncond": 0.0019700586812547044}, {"x": -0.43478260869565233, "y": -0.14492753623188293, "x2": -0.1449275362318847, "y2": 0.1449275362318847, "center_x": -0.2898550724637685, "center_y": 8.881784197001252e-16, "value_uncond": 0.002283154456693605}, {"x": -0.14492753623188293, "y": -0.14492753623188293, "x2": 0.1449275362318847, "y2": 0.1449275362318847, "center_x": 8.881784197001252e-16, "center_y": 8.881784197001252e-16, "value_uncond": 0.0026214237967945083}, {"x": 0.1449275362318847, "y": -0.14492753623188293, "x2": 0.43478260869565233, "y2": 0.1449275362318847, "center_x": 0.2898550724637685, "center_y": 8.881784197001252e-16, "value_uncond": 0.002981844535590075}, {"x": 0.43478260869565233, "y": -0.14492753623188293, "x2": 0.72463768115942, "y2": 0.1449275362318847, "center_x": 0.5797101449275361, "center_y": 8.881784197001252e-16, "value_uncond": 0.003360304014388531}, {"x": 0.72463768115942, "y": -0.14492753623188293, "x2": 1.0144927536231876, "y2": 0.1449275362318847, "center_x": 0.8695652173913038, "center_y": 8.881784197001252e-16, "value_uncond": 0.003751612370341276}, {"x": 1.0144927536231894, "y": -0.14492753623188293, "x2": 1.304347826086957, "y2": 0.1449275362318847, "center_x": 1.1594202898550732, "center_y": 8.881784197001252e-16, "value_uncond": 0.004149570639951545}, {"x": 1.304347826086957, "y": -0.14492753623188293, "x2": 1.5942028985507246, "y2": 0.1449275362318847, "center_x": 1.4492753623188408, "center_y": 8.881784197001252e-16, "value_uncond": 0.004547096590357931}, {"x": 1.5942028985507246, "y": -0.14492753623188293, "x2": 1.8840579710144922, "y2": 0.1449275362318847, "center_x": 1.7391304347826084, "center_y": 8.881784197001252e-16, "value_uncond": 0.004936407593713624}, {"x": 1.884057971014494, "y": -0.14492753623188293, "x2": 2.1739130434782616, "y2": 0.1449275362318847, "center_x": 2.028985507246378, "center_y": 8.881784197001252e-16, "value_uncond": 0.005309255899610263}, {"x": 2.1739130434782616, "y": -0.14492753623188293, "x2": 2.4637681159420293, "y2": 0.1449275362318847, "center_x": 2.3188405797101455, "center_y": 8.881784197001252e-16, "value_uncond": 0.005657207642854213}, {"x": 2.4637681159420293, "y": -0.14492753623188293, "x2": 2.753623188405797, "y2": 0.1449275362318847, "center_x": 2.608695652173913, "center_y": 8.881784197001252e-16, "value_uncond": 0.005971953192265772}, {"x": 2.753623188405797, "y": -0.14492753623188293, "x2": 3.0434782608695645, "y2": 0.1449275362318847, "center_x": 2.8985507246376807, "center_y": 8.881784197001252e-16, "value_uncond": 0.006245633348933196}, {"x": 3.0434782608695663, "y": -0.14492753623188293, "x2": 3.333333333333334, "y2": 0.1449275362318847, "center_x": 3.18840579710145, "center_y": 8.881784197001252e-16, "value_uncond": 0.0064711637567894525}, {"x": 3.333333333333334, "y": -0.14492753623188293, "x2": 3.6231884057971016, "y2": 0.1449275362318847, "center_x": 3.4782608695652177, "center_y": 8.881784197001252e-16, "value_uncond": 0.00664253894489519}, {"x": 3.6231884057971016, "y": -0.14492753623188293, "x2": 3.913043478260869, "y2": 0.1449275362318847, "center_x": 3.7681159420289854, "center_y": 8.881784197001252e-16, "value_uncond": 0.006755097832135153}, {"x": 3.913043478260871, "y": -0.14492753623188293, "x2": 4.202898550724639, "y2": 0.1449275362318847, "center_x": 4.057971014492755, "center_y": 8.881784197001252e-16, "value_uncond": 0.006805734324488884}, {"x": 4.202898550724639, "y": -0.14492753623188293, "x2": 4.492753623188406, "y2": 0.1449275362318847, "center_x": 4.347826086956522, "center_y": 8.881784197001252e-16, "value_uncond": 0.006793039727087408}, {"x": 4.492753623188406, "y": -0.14492753623188293, "x2": 4.782608695652174, "y2": 0.1449275362318847, "center_x": 4.63768115942029, "center_y": 8.881784197001252e-16, "value_uncond": 0.0067173678581270435}, {"x": 4.782608695652174, "y": -0.14492753623188293, "x2": 5.0724637681159415, "y2": 0.1449275362318847, "center_x": 4.927536231884058, "center_y": 8.881784197001252e-16, "value_uncond": 0.006580818663995012}, {"x": 5.072463768115943, "y": -0.14492753623188293, "x2": 5.362318840579711, "y2": 0.1449275362318847, "center_x": 5.217391304347827, "center_y": 8.881784197001252e-16, "value_uncond": 0.006387141394591343}, {"x": 5.362318840579711, "y": -0.14492753623188293, "x2": 5.6521739130434785, "y2": 0.1449275362318847, "center_x": 5.507246376811595, "center_y": 8.881784197001252e-16, "value_uncond": 0.006141563569733192}, {"x": 5.6521739130434785, "y": -0.14492753623188293, "x2": 5.942028985507246, "y2": 0.1449275362318847, "center_x": 5.797101449275362, "center_y": 8.881784197001252e-16, "value_uncond": 0.005850556625482325}, {"x": 5.942028985507246, "y": -0.14492753623188293, "x2": 6.231884057971014, "y2": 0.1449275362318847, "center_x": 6.08695652173913, "center_y": 8.881784197001252e-16, "value_uncond": 0.005521552898678568}, {"x": 6.2318840579710155, "y": -0.14492753623188293, "x2": 6.521739130434783, "y2": 0.1449275362318847, "center_x": 6.376811594202899, "center_y": 8.881784197001252e-16, "value_uncond": 0.005162631202661442}, {"x": 6.521739130434785, "y": -0.14492753623188293, "x2": 6.8115942028985526, "y2": 0.1449275362318847, "center_x": 6.666666666666669, "center_y": 8.881784197001252e-16, "value_uncond": 0.004782189495559725}, {"x": 6.811594202898551, "y": -0.14492753623188293, "x2": 7.101449275362318, "y2": 0.1449275362318847, "center_x": 6.956521739130435, "center_y": 8.881784197001252e-16, "value_uncond": 0.004388623000888145}, {"x": 7.10144927536232, "y": -0.14492753623188293, "x2": 7.391304347826088, "y2": 0.1449275362318847, "center_x": 7.246376811594204, "center_y": 8.881784197001252e-16, "value_uncond": 0.003990024691474892}, {"x": 7.391304347826086, "y": -0.14492753623188293, "x2": 7.681159420289854, "y2": 0.1449275362318847, "center_x": 7.53623188405797, "center_y": 8.881784197001252e-16, "value_uncond": 0.003593922486952622}, {"x": 7.681159420289855, "y": -0.14492753623188293, "x2": 7.971014492753623, "y2": 0.1449275362318847, "center_x": 7.826086956521739, "center_y": 8.881784197001252e-16, "value_uncond": 0.0032070641234048475}, {"x": 7.971014492753625, "y": -0.14492753623188293, "x2": 8.260869565217392, "y2": 0.1449275362318847, "center_x": 8.115942028985508, "center_y": 8.881784197001252e-16, "value_uncond": 0.002835256765410144}, {"x": 8.26086956521739, "y": -0.14492753623188293, "x2": 8.550724637681158, "y2": 0.1449275362318847, "center_x": 8.405797101449274, "center_y": 8.881784197001252e-16, "value_uncond": 0.002483264396243414}, {"x": 8.55072463768116, "y": -0.14492753623188293, "x2": 8.840579710144928, "y2": 0.1449275362318847, "center_x": 8.695652173913043, "center_y": 8.881784197001252e-16, "value_uncond": 0.0021547621731544497}, {"x": 8.84057971014493, "y": -0.14492753623188293, "x2": 9.130434782608697, "y2": 0.1449275362318847, "center_x": 8.985507246376812, "center_y": 8.881784197001252e-16, "value_uncond": 0.0018523435543355879}, {"x": 9.130434782608695, "y": -0.14492753623188293, "x2": 9.420289855072463, "y2": 0.1449275362318847, "center_x": 9.275362318840578, "center_y": 8.881784197001252e-16, "value_uncond": 0.0015775733043811879}, {"x": 9.420289855072465, "y": -0.14492753623188293, "x2": 9.710144927536232, "y2": 0.1449275362318847, "center_x": 9.565217391304348, "center_y": 8.881784197001252e-16, "value_uncond": 0.0013310775944750685}, {"x": 9.710144927536234, "y": -0.14492753623188293, "x2": 10.000000000000002, "y2": 0.1449275362318847, "center_x": 9.855072463768117, "center_y": 8.881784197001252e-16, "value_uncond": 0.001112661375447905}, {"x": 10.0, "y": -0.14492753623188293, "x2": 10.289855072463768, "y2": 0.1449275362318847, "center_x": 10.144927536231883, "center_y": 8.881784197001252e-16, "value_uncond": 0.0009214429807440965}, {"x": -10.0, "y": 0.1449275362318847, "x2": -9.710144927536232, "y2": 0.43478260869565233, "center_x": -9.855072463768117, "center_y": 0.2898550724637685, "value_uncond": 1.445509102212839e-07}, {"x": -9.710144927536232, "y": 0.1449275362318847, "x2": -9.420289855072465, "y2": 0.43478260869565233, "center_x": -9.565217391304348, "center_y": 0.2898550724637685, "value_uncond": 2.258452161066759e-07}, {"x": -9.420289855072463, "y": 0.1449275362318847, "x2": -9.130434782608695, "y2": 0.43478260869565233, "center_x": -9.275362318840578, "center_y": 0.2898550724637685, "value_uncond": 3.4958015871375006e-07}, {"x": -9.130434782608695, "y": 0.1449275362318847, "x2": -8.840579710144928, "y2": 0.43478260869565233, "center_x": -8.985507246376812, "center_y": 0.2898550724637685, "value_uncond": 5.360785981646451e-07}, {"x": -8.840579710144928, "y": 0.1449275362318847, "x2": -8.55072463768116, "y2": 0.43478260869565233, "center_x": -8.695652173913043, "center_y": 0.2898550724637685, "value_uncond": 8.144341539281496e-07}, {"x": -8.55072463768116, "y": 0.1449275362318847, "x2": -8.260869565217392, "y2": 0.43478260869565233, "center_x": -8.405797101449277, "center_y": 0.2898550724637685, "value_uncond": 1.2258273333896651e-06}, {"x": -8.26086956521739, "y": 0.1449275362318847, "x2": -7.971014492753623, "y2": 0.43478260869565233, "center_x": -8.115942028985508, "center_y": 0.2898550724637685, "value_uncond": 1.8278831889654851e-06}, {"x": -7.971014492753623, "y": 0.1449275362318847, "x2": -7.681159420289855, "y2": 0.43478260869565233, "center_x": -7.826086956521739, "center_y": 0.2898550724637685, "value_uncond": 2.7003085458980758e-06}, {"x": -7.681159420289855, "y": 0.1449275362318847, "x2": -7.391304347826088, "y2": 0.43478260869565233, "center_x": -7.536231884057972, "center_y": 0.2898550724637685, "value_uncond": 3.952065716788075e-06}, {"x": -7.391304347826087, "y": 0.1449275362318847, "x2": -7.101449275362319, "y2": 0.43478260869565233, "center_x": -7.246376811594203, "center_y": 0.2898550724637685, "value_uncond": 5.73034459255472e-06}, {"x": -7.101449275362318, "y": 0.1449275362318847, "x2": -6.811594202898551, "y2": 0.43478260869565233, "center_x": -6.956521739130435, "center_y": 0.2898550724637685, "value_uncond": 8.23157870068867e-06}, {"x": -6.811594202898551, "y": 0.1449275362318847, "x2": -6.521739130434783, "y2": 0.43478260869565233, "center_x": -6.666666666666667, "center_y": 0.2898550724637685, "value_uncond": 1.1714704689143955e-05}, {"x": -6.521739130434782, "y": 0.1449275362318847, "x2": -6.231884057971015, "y2": 0.43478260869565233, "center_x": -6.3768115942028984, "center_y": 0.2898550724637685, "value_uncond": 1.6516779465029294e-05}, {"x": -6.231884057971014, "y": 0.1449275362318847, "x2": -5.942028985507246, "y2": 0.43478260869565233, "center_x": -6.08695652173913, "center_y": 0.2898550724637685, "value_uncond": 2.307093573808732e-05}, {"x": -5.942028985507246, "y": 0.1449275362318847, "x2": -5.6521739130434785, "y2": 0.43478260869565233, "center_x": -5.797101449275362, "center_y": 0.2898550724637685, "value_uncond": 3.192646711486255e-05}, {"x": -5.6521739130434785, "y": 0.1449275362318847, "x2": -5.362318840579711, "y2": 0.43478260869565233, "center_x": -5.507246376811595, "center_y": 0.2898550724637685, "value_uncond": 4.37705830828896e-05}, {"x": -5.36231884057971, "y": 0.1449275362318847, "x2": -5.072463768115942, "y2": 0.43478260869565233, "center_x": -5.217391304347826, "center_y": 0.2898550724637685, "value_uncond": 5.9451061739903565e-05}, {"x": -5.0724637681159415, "y": 0.1449275362318847, "x2": -4.782608695652174, "y2": 0.43478260869565233, "center_x": -4.927536231884058, "center_y": 0.2898550724637685, "value_uncond": 7.999866004289843e-05}, {"x": -4.782608695652174, "y": 0.1449275362318847, "x2": -4.492753623188406, "y2": 0.43478260869565233, "center_x": -4.63768115942029, "center_y": 0.2898550724637685, "value_uncond": 0.00010664773220414889}, {"x": -4.492753623188405, "y": 0.1449275362318847, "x2": -4.202898550724638, "y2": 0.43478260869565233, "center_x": -4.3478260869565215, "center_y": 0.2898550724637685, "value_uncond": 0.0001408530811513238}, {"x": -4.202898550724638, "y": 0.1449275362318847, "x2": -3.91304347826087, "y2": 0.43478260869565233, "center_x": -4.057971014492754, "center_y": 0.2898550724637685, "value_uncond": 0.00018430066099712087}, {"x": -3.913043478260869, "y": 0.1449275362318847, "x2": -3.6231884057971016, "y2": 0.43478260869565233, "center_x": -3.7681159420289854, "center_y": 0.2898550724637685, "value_uncond": 0.00023890940605263985}, {"x": -3.6231884057971016, "y": 0.1449275362318847, "x2": -3.333333333333334, "y2": 0.43478260869565233, "center_x": -3.4782608695652177, "center_y": 0.2898550724637685, "value_uncond": 0.0003068212386903227}, {"x": -3.333333333333333, "y": 0.1449275362318847, "x2": -3.0434782608695654, "y2": 0.43478260869565233, "center_x": -3.1884057971014492, "center_y": 0.2898550724637685, "value_uncond": 0.0003903762643051674}, {"x": -3.0434782608695645, "y": 0.1449275362318847, "x2": -2.753623188405797, "y2": 0.43478260869565233, "center_x": -2.8985507246376807, "center_y": 0.2898550724637685, "value_uncond": 0.000492070356843446}, {"x": -2.753623188405797, "y": 0.1449275362318847, "x2": -2.4637681159420293, "y2": 0.43478260869565233, "center_x": -2.608695652173913, "center_y": 0.2898550724637685, "value_uncond": 0.0006144928261623863}, {"x": -2.4637681159420284, "y": 0.1449275362318847, "x2": -2.1739130434782608, "y2": 0.43478260869565233, "center_x": -2.3188405797101446, "center_y": 0.2898550724637685, "value_uncond": 0.0007602426771522744}, {"x": -2.1739130434782608, "y": 0.1449275362318847, "x2": -1.8840579710144931, "y2": 0.43478260869565233, "center_x": -2.028985507246377, "center_y": 0.2898550724637685, "value_uncond": 0.0009318231346921867}, {"x": -1.8840579710144922, "y": 0.1449275362318847, "x2": -1.5942028985507246, "y2": 0.43478260869565233, "center_x": -1.7391304347826084, "center_y": 0.2898550724637685, "value_uncond": 0.001131515600817794}, {"x": -1.5942028985507246, "y": 0.1449275362318847, "x2": -1.304347826086957, "y2": 0.43478260869565233, "center_x": -1.4492753623188408, "center_y": 0.2898550724637685, "value_uncond": 0.0013612359752973578}, {"x": -1.304347826086957, "y": 0.1449275362318847, "x2": -1.0144927536231894, "y2": 0.43478260869565233, "center_x": -1.1594202898550732, "center_y": 0.2898550724637685, "value_uncond": 0.001622378210753385}, {"x": -1.0144927536231876, "y": 0.1449275362318847, "x2": -0.72463768115942, "y2": 0.43478260869565233, "center_x": -0.8695652173913038, "center_y": 0.2898550724637685, "value_uncond": 0.0019156519503356758}, {"x": -0.72463768115942, "y": 0.1449275362318847, "x2": -0.43478260869565233, "y2": 0.43478260869565233, "center_x": -0.5797101449275361, "center_y": 0.2898550724637685, "value_uncond": 0.002240922936869036}, {"x": -0.43478260869565233, "y": 0.1449275362318847, "x2": -0.1449275362318847, "y2": 0.43478260869565233, "center_x": -0.2898550724637685, "center_y": 0.2898550724637685, "value_uncond": 0.002597066391525409}, {"x": -0.14492753623188293, "y": 0.1449275362318847, "x2": 0.1449275362318847, "y2": 0.43478260869565233, "center_x": 8.881784197001252e-16, "center_y": 0.2898550724637685, "value_uncond": 0.002981844535590075}, {"x": 0.1449275362318847, "y": 0.1449275362318847, "x2": 0.43478260869565233, "y2": 0.43478260869565233, "center_x": 0.2898550724637685, "center_y": 0.2898550724637685, "value_uncond": 0.0033918196841353316}, {"x": 0.43478260869565233, "y": 0.1449275362318847, "x2": 0.72463768115942, "y2": 0.43478260869565233, "center_x": 0.5797101449275361, "center_y": 0.2898550724637685, "value_uncond": 0.0038223137271730843}, {"x": 0.72463768115942, "y": 0.1449275362318847, "x2": 1.0144927536231876, "y2": 0.43478260869565233, "center_x": 0.8695652173913038, "center_y": 0.2898550724637685, "value_uncond": 0.0042674232452736}, {"x": 1.0144927536231894, "y": 0.1449275362318847, "x2": 1.304347826086957, "y2": 0.43478260869565233, "center_x": 1.1594202898550732, "center_y": 0.2898550724637685, "value_uncond": 0.004720096976656257}, {"x": 1.304347826086957, "y": 0.1449275362318847, "x2": 1.5942028985507246, "y2": 0.43478260869565233, "center_x": 1.4492753623188408, "center_y": 0.2898550724637685, "value_uncond": 0.005172278949072928}, {"x": 1.5942028985507246, "y": 0.1449275362318847, "x2": 1.8840579710144922, "y2": 0.43478260869565233, "center_x": 1.7391304347826084, "center_y": 0.2898550724637685, "value_uncond": 0.005615116497667997}, {"x": 1.884057971014494, "y": 0.1449275362318847, "x2": 2.1739130434782616, "y2": 0.43478260869565233, "center_x": 2.028985507246378, "center_y": 0.2898550724637685, "value_uncond": 0.006039227885113778}, {"x": 2.1739130434782616, "y": 0.1449275362318847, "x2": 2.4637681159420293, "y2": 0.43478260869565233, "center_x": 2.3188405797101455, "center_y": 0.2898550724637685, "value_uncond": 0.006435019670291636}, {"x": 2.4637681159420293, "y": 0.1449275362318847, "x2": 2.753623188405797, "y2": 0.43478260869565233, "center_x": 2.608695652173913, "center_y": 0.2898550724637685, "value_uncond": 0.006793039727087407}, {"x": 2.753623188405797, "y": 0.1449275362318847, "x2": 3.0434782608695645, "y2": 0.43478260869565233, "center_x": 2.8985507246376807, "center_y": 0.2898550724637685, "value_uncond": 0.007104348291790332}, {"x": 3.0434782608695663, "y": 0.1449275362318847, "x2": 3.333333333333334, "y2": 0.43478260869565233, "center_x": 3.18840579710145, "center_y": 0.2898550724637685, "value_uncond": 0.007360886977026161}, {"x": 3.333333333333334, "y": 0.1449275362318847, "x2": 3.6231884057971016, "y2": 0.43478260869565233, "center_x": 3.4782608695652177, "center_y": 0.2898550724637685, "value_uncond": 0.007555824616950575}, {"x": 3.6231884057971016, "y": 0.1449275362318847, "x2": 3.913043478260869, "y2": 0.43478260869565233, "center_x": 3.7681159420289854, "center_y": 0.2898550724637685, "value_uncond": 0.007683859276305922}, {"x": 3.913043478260871, "y": 0.1449275362318847, "x2": 4.202898550724639, "y2": 0.43478260869565233, "center_x": 4.057971014492755, "center_y": 0.2898550724637685, "value_uncond": 0.007741457802805548}, {"x": 4.202898550724639, "y": 0.1449275362318847, "x2": 4.492753623188406, "y2": 0.43478260869565233, "center_x": 4.347826086956522, "center_y": 0.2898550724637685, "value_uncond": 0.007727017819488317}, {"x": 4.492753623188406, "y": 0.1449275362318847, "x2": 4.782608695652174, "y2": 0.43478260869565233, "center_x": 4.63768115942029, "center_y": 0.2898550724637685, "value_uncond": 0.007640941791173754}, {"x": 4.782608695652174, "y": 0.1449275362318847, "x2": 5.0724637681159415, "y2": 0.43478260869565233, "center_x": 4.927536231884058, "center_y": 0.2898550724637685, "value_uncond": 0.0074856183868239065}, {"x": 5.072463768115943, "y": 0.1449275362318847, "x2": 5.362318840579711, "y2": 0.43478260869565233, "center_x": 5.217391304347827, "center_y": 0.2898550724637685, "value_uncond": 0.007265312342396628}, {"x": 5.362318840579711, "y": 0.1449275362318847, "x2": 5.6521739130434785, "y2": 0.43478260869565233, "center_x": 5.507246376811595, "center_y": 0.2898550724637685, "value_uncond": 0.006985969911763776}, {"x": 5.6521739130434785, "y": 0.1449275362318847, "x2": 5.942028985507246, "y2": 0.43478260869565233, "center_x": 5.797101449275362, "center_y": 0.2898550724637685, "value_uncond": 0.006654952291646691}, {"x": 5.942028985507246, "y": 0.1449275362318847, "x2": 6.231884057971014, "y2": 0.43478260869565233, "center_x": 6.08695652173913, "center_y": 0.2898550724637685, "value_uncond": 0.006280713694225636}, {"x": 6.2318840579710155, "y": 0.1449275362318847, "x2": 6.521739130434783, "y2": 0.43478260869565233, "center_x": 6.376811594202899, "center_y": 0.2898550724637685, "value_uncond": 0.0058724436925257605}, {"x": 6.521739130434785, "y": 0.1449275362318847, "x2": 6.8115942028985526, "y2": 0.43478260869565233, "center_x": 6.666666666666669, "center_y": 0.2898550724637685, "value_uncond": 0.005439694883722319}, {"x": 6.811594202898551, "y": 0.1449275362318847, "x2": 7.101449275362318, "y2": 0.43478260869565233, "center_x": 6.956521739130435, "center_y": 0.2898550724637685, "value_uncond": 0.004992016754393205}, {"x": 7.10144927536232, "y": 0.1449275362318847, "x2": 7.391304347826088, "y2": 0.43478260869565233, "center_x": 7.246376811594204, "center_y": 0.2898550724637685, "value_uncond": 0.004538614983846708}, {"x": 7.391304347826086, "y": 0.1449275362318847, "x2": 7.681159420289854, "y2": 0.43478260869565233, "center_x": 7.53623188405797, "center_y": 0.2898550724637685, "value_uncond": 0.004088052508777173}, {"x": 7.681159420289855, "y": 0.1449275362318847, "x2": 7.971014492753623, "y2": 0.43478260869565233, "center_x": 7.826086956521739, "center_y": 0.2898550724637685, "value_uncond": 0.0036480048145421467}, {"x": 7.971014492753625, "y": 0.1449275362318847, "x2": 8.260869565217392, "y2": 0.43478260869565233, "center_x": 8.115942028985508, "center_y": 0.2898550724637685, "value_uncond": 0.0032250774953942927}, {"x": 8.26086956521739, "y": 0.1449275362318847, "x2": 8.550724637681158, "y2": 0.43478260869565233, "center_x": 8.405797101449274, "center_y": 0.2898550724637685, "value_uncond": 0.0028246895368151965}, {"x": 8.55072463768116, "y": 0.1449275362318847, "x2": 8.840579710144928, "y2": 0.43478260869565233, "center_x": 8.695652173913043, "center_y": 0.2898550724637685, "value_uncond": 0.002451021395080612}, {"x": 8.84057971014493, "y": 0.1449275362318847, "x2": 9.130434782608697, "y2": 0.43478260869565233, "center_x": 8.985507246376812, "center_y": 0.2898550724637685, "value_uncond": 0.002107023104118119}, {"x": 9.130434782608695, "y": 0.1449275362318847, "x2": 9.420289855072463, "y2": 0.43478260869565233, "center_x": 9.275362318840578, "center_y": 0.2898550724637685, "value_uncond": 0.001794474568711094}, {"x": 9.420289855072465, "y": 0.1449275362318847, "x2": 9.710144927536232, "y2": 0.43478260869565233, "center_x": 9.565217391304348, "center_y": 0.2898550724637685, "value_uncond": 0.0015140880526015143}, {"x": 9.710144927536234, "y": 0.1449275362318847, "x2": 10.000000000000002, "y2": 0.43478260869565233, "center_x": 9.855072463768117, "center_y": 0.2898550724637685, "value_uncond": 0.001265641689221894}, {"x": 10.0, "y": 0.1449275362318847, "x2": 10.289855072463768, "y2": 0.43478260869565233, "center_x": 10.144927536231883, "center_y": 0.2898550724637685, "value_uncond": 0.001048132591284704}, {"x": -10.0, "y": 0.43478260869565233, "x2": -9.710144927536232, "y2": 0.72463768115942, "center_x": -9.855072463768117, "center_y": 0.5797101449275361, "value_uncond": 1.628974945214488e-07}, {"x": -9.710144927536232, "y": 0.43478260869565233, "x2": -9.420289855072465, "y2": 0.72463768115942, "center_x": -9.565217391304348, "center_y": 0.5797101449275361, "value_uncond": 2.545097765009833e-07}, {"x": -9.420289855072463, "y": 0.43478260869565233, "x2": -9.130434782608695, "y2": 0.72463768115942, "center_x": -9.275362318840578, "center_y": 0.5797101449275361, "value_uncond": 3.9394931447823936e-07}, {"x": -9.130434782608695, "y": 0.43478260869565233, "x2": -8.840579710144928, "y2": 0.72463768115942, "center_x": -8.985507246376812, "center_y": 0.5797101449275361, "value_uncond": 6.04118371678944e-07}, {"x": -8.840579710144928, "y": 0.43478260869565233, "x2": -8.55072463768116, "y2": 0.72463768115942, "center_x": -8.695652173913043, "center_y": 0.5797101449275361, "value_uncond": 9.178031665417845e-07}, {"x": -8.55072463768116, "y": 0.43478260869565233, "x2": -8.260869565217392, "y2": 0.72463768115942, "center_x": -8.405797101449277, "center_y": 0.5797101449275361, "value_uncond": 1.3814108885194928e-06}, {"x": -8.26086956521739, "y": 0.43478260869565233, "x2": -7.971014492753623, "y2": 0.72463768115942, "center_x": -8.115942028985508, "center_y": 0.5797101449275361, "value_uncond": 2.0598804345440314e-06}, {"x": -7.971014492753623, "y": 0.43478260869565233, "x2": -7.681159420289855, "y2": 0.72463768115942, "center_x": -7.826086956521739, "center_y": 0.5797101449275361, "value_uncond": 3.043035120901547e-06}, {"x": -7.681159420289855, "y": 0.43478260869565233, "x2": -7.391304347826088, "y2": 0.72463768115942, "center_x": -7.536231884057972, "center_y": 0.5797101449275361, "value_uncond": 4.453666894683446e-06}, {"x": -7.391304347826087, "y": 0.43478260869565233, "x2": -7.101449275362319, "y2": 0.72463768115942, "center_x": -7.246376811594203, "center_y": 0.5797101449275361, "value_uncond": 6.4576471738761325e-06}, {"x": -7.101449275362318, "y": 0.43478260869565233, "x2": -6.811594202898551, "y2": 0.72463768115942, "center_x": -6.956521739130435, "center_y": 0.5797101449275361, "value_uncond": 9.276341077656326e-06}, {"x": -6.811594202898551, "y": 0.43478260869565233, "x2": -6.521739130434783, "y2": 0.72463768115942, "center_x": -6.666666666666667, "center_y": 0.5797101449275361, "value_uncond": 1.3201549820744305e-05}, {"x": -6.521739130434782, "y": 0.43478260869565233, "x2": -6.231884057971015, "y2": 0.72463768115942, "center_x": -6.3768115942028984, "center_y": 0.5797101449275361, "value_uncond": 1.8613109999084778e-05}, {"x": -6.231884057971014, "y": 0.43478260869565233, "x2": -5.942028985507246, "y2": 0.72463768115942, "center_x": -6.08695652173913, "center_y": 0.5797101449275361, "value_uncond": 2.5999128073608017e-05}, {"x": -5.942028985507246, "y": 0.43478260869565233, "x2": -5.6521739130434785, "y2": 0.72463768115942, "center_x": -5.797101449275362, "center_y": 0.5797101449275361, "value_uncond": 3.5978614689945916e-05}, {"x": -5.6521739130434785, "y": 0.43478260869565233, "x2": -5.362318840579711, "y2": 0.72463768115942, "center_x": -5.507246376811595, "center_y": 0.5797101449275361, "value_uncond": 4.932600083272101e-05}, {"x": -5.36231884057971, "y": 0.43478260869565233, "x2": -5.072463768115942, "y2": 0.72463768115942, "center_x": -5.217391304347826, "center_y": 0.5797101449275361, "value_uncond": 6.699666566779119e-05}, {"x": -5.0724637681159415, "y": 0.43478260869565233, "x2": -4.782608695652174, "y2": 0.72463768115942, "center_x": -4.927536231884058, "center_y": 0.5797101449275361, "value_uncond": 9.015219112845478e-05}, {"x": -4.782608695652174, "y": 0.43478260869565233, "x2": -4.492753623188406, "y2": 0.72463768115942, "center_x": -4.63768115942029, "center_y": 0.5797101449275361, "value_uncond": 0.00012018359722436608}, {"x": -4.492753623188405, "y": 0.43478260869565233, "x2": -4.202898550724638, "y2": 0.72463768115942, "center_x": -4.3478260869565215, "center_y": 0.5797101449275361, "value_uncond": 0.00015873033231027375}, {"x": -4.202898550724638, "y": 0.43478260869565233, "x2": -3.91304347826087, "y2": 0.72463768115942, "center_x": -4.057971014492754, "center_y": 0.5797101449275361, "value_uncond": 0.00020769233392663476}, {"x": -3.913043478260869, "y": 0.43478260869565233, "x2": -3.6231884057971016, "y2": 0.72463768115942, "center_x": -3.7681159420289854, "center_y": 0.5797101449275361, "value_uncond": 0.0002692320899536763}, {"x": -3.6231884057971016, "y": 0.43478260869565233, "x2": -3.333333333333334, "y2": 0.72463768115942, "center_x": -3.4782608695652177, "center_y": 0.5797101449275361, "value_uncond": 0.00034576337825966737}, {"x": -3.333333333333333, "y": 0.43478260869565233, "x2": -3.0434782608695654, "y2": 0.72463768115942, "center_x": -3.1884057971014492, "center_y": 0.5797101449275361, "value_uncond": 0.0004399233133752442}, {"x": -3.0434782608695645, "y": 0.43478260869565233, "x2": -2.753623188405797, "y2": 0.72463768115942, "center_x": -2.8985507246376807, "center_y": 0.5797101449275361, "value_uncond": 0.0005545245487238045}, {"x": -2.753623188405797, "y": 0.43478260869565233, "x2": -2.4637681159420293, "y2": 0.72463768115942, "center_x": -2.608695652173913, "center_y": 0.5797101449275361, "value_uncond": 0.0006924850326436628}, {"x": -2.4637681159420284, "y": 0.43478260869565233, "x2": -2.1739130434782608, "y2": 0.72463768115942, "center_x": -2.3188405797101446, "center_y": 0.5797101449275361, "value_uncond": 0.0008567336390120467}, {"x": -2.1739130434782608, "y": 0.43478260869565233, "x2": -1.8840579710144931, "y2": 0.72463768115942, "center_x": -2.028985507246377, "center_y": 0.5797101449275361, "value_uncond": 0.0010500913051748446}, {"x": -1.8840579710144922, "y": 0.43478260869565233, "x2": -1.5942028985507246, "y2": 0.72463768115942, "center_x": -1.7391304347826084, "center_y": 0.5797101449275361, "value_uncond": 0.0012751289915987729}, {"x": -1.5942028985507246, "y": 0.43478260869565233, "x2": -1.304347826086957, "y2": 0.72463768115942, "center_x": -1.4492753623188408, "center_y": 0.5797101449275361, "value_uncond": 0.0015340057664732067}, {"x": -1.304347826086957, "y": 0.43478260869565233, "x2": -1.0144927536231894, "y2": 0.72463768115942, "center_x": -1.1594202898550732, "center_y": 0.5797101449275361, "value_uncond": 0.0018282925046500629}, {"x": -1.0144927536231876, "y": 0.43478260869565233, "x2": -0.72463768115942, "y2": 0.72463768115942, "center_x": -0.8695652173913038, "center_y": 0.5797101449275361, "value_uncond": 0.0021587889180850073}, {"x": -0.72463768115942, "y": 0.43478260869565233, "x2": -0.43478260869565233, "y2": 0.72463768115942, "center_x": -0.5797101449275361, "center_y": 0.5797101449275361, "value_uncond": 0.002525343709512413}, {"x": -0.43478260869565233, "y": 0.43478260869565233, "x2": -0.1449275362318847, "y2": 0.72463768115942, "center_x": -0.2898550724637685, "center_y": 0.5797101449275361, "value_uncond": 0.0029266893417531576}, {"x": -0.14492753623188293, "y": 0.43478260869565233, "x2": 0.1449275362318847, "y2": 0.72463768115942, "center_x": 8.881784197001252e-16, "center_y": 0.5797101449275361, "value_uncond": 0.003360304014388531}, {"x": 0.1449275362318847, "y": 0.43478260869565233, "x2": 0.43478260869565233, "y2": 0.72463768115942, "center_x": 0.2898550724637685, "center_y": 0.5797101449275361, "value_uncond": 0.0038223137271730843}, {"x": 0.43478260869565233, "y": 0.43478260869565233, "x2": 0.72463768115942, "y2": 0.72463768115942, "center_x": 0.5797101449275361, "center_y": 0.5797101449275361, "value_uncond": 0.004307446618483878}, {"x": 0.72463768115942, "y": 0.43478260869565233, "x2": 1.0144927536231876, "y2": 0.72463768115942, "center_x": 0.8695652173913038, "center_y": 0.5797101449275361, "value_uncond": 0.004809049999432688}, {"x": 1.0144927536231894, "y": 0.43478260869565233, "x2": 1.304347826086957, "y2": 0.72463768115942, "center_x": 1.1594202898550732, "center_y": 0.5797101449275361, "value_uncond": 0.005319177653177842}, {"x": 1.304347826086957, "y": 0.43478260869565233, "x2": 1.5942028985507246, "y2": 0.72463768115942, "center_x": 1.4492753623188408, "center_y": 0.5797101449275361, "value_uncond": 0.005828751133287251}, {"x": 1.5942028985507246, "y": 0.43478260869565233, "x2": 1.8840579710144922, "y2": 0.72463768115942, "center_x": 1.7391304347826084, "center_y": 0.5797101449275361, "value_uncond": 0.00632779418348823}, {"x": 1.884057971014494, "y": 0.43478260869565233, "x2": 2.1739130434782616, "y2": 0.72463768115942, "center_x": 2.028985507246378, "center_y": 0.5797101449275361, "value_uncond": 0.006805734324488883}, {"x": 2.1739130434782616, "y": 0.43478260869565233, "x2": 2.4637681159420293, "y2": 0.72463768115942, "center_x": 2.3188405797101455, "center_y": 0.5797101449275361, "value_uncond": 0.007251760503493538}, {"x": 2.4637681159420293, "y": 0.43478260869565233, "x2": 2.753623188405797, "y2": 0.72463768115942, "center_x": 2.608695652173913, "center_y": 0.5797101449275361, "value_uncond": 0.007655220918590051}, {"x": 2.753623188405797, "y": 0.43478260869565233, "x2": 3.0434782608695645, "y2": 0.72463768115942, "center_x": 2.8985507246376807, "center_y": 0.5797101449275361, "value_uncond": 0.008006041159953762}, {"x": 3.0434782608695663, "y": 0.43478260869565233, "x2": 3.333333333333334, "y2": 0.72463768115942, "center_x": 3.18840579710145, "center_y": 0.5797101449275361, "value_uncond": 0.008295140059495594}, {"x": 3.333333333333334, "y": 0.43478260869565233, "x2": 3.6231884057971016, "y2": 0.72463768115942, "center_x": 3.4782608695652177, "center_y": 0.5797101449275361, "value_uncond": 0.008514819431164715}, {"x": 3.6231884057971016, "y": 0.43478260869565233, "x2": 3.913043478260869, "y2": 0.72463768115942, "center_x": 3.7681159420289854, "center_y": 0.5797101449275361, "value_uncond": 0.008659104411376637}, {"x": 3.913043478260871, "y": 0.43478260869565233, "x2": 4.202898550724639, "y2": 0.72463768115942, "center_x": 4.057971014492755, "center_y": 0.5797101449275361, "value_uncond": 0.008724013415689048}, {"x": 4.202898550724639, "y": 0.43478260869565233, "x2": 4.492753623188406, "y2": 0.72463768115942, "center_x": 4.347826086956522, "center_y": 0.5797101449275361, "value_uncond": 0.008707740691430809}, {"x": 4.492753623188406, "y": 0.43478260869565233, "x2": 4.782608695652174, "y2": 0.72463768115942, "center_x": 4.63768115942029, "center_y": 0.5797101449275361, "value_uncond": 0.008610739784765228}, {"x": 4.782608695652174, "y": 0.43478260869565233, "x2": 5.0724637681159415, "y2": 0.72463768115942, "center_x": 4.927536231884058, "center_y": 0.5797101449275361, "value_uncond": 0.008435702537539325}, {"x": 5.072463768115943, "y": 0.43478260869565233, "x2": 5.362318840579711, "y2": 0.72463768115942, "center_x": 5.217391304347827, "center_y": 0.5797101449275361, "value_uncond": 0.008187434971391197}, {"x": 5.362318840579711, "y": 0.43478260869565233, "x2": 5.6521739130434785, "y2": 0.72463768115942, "center_x": 5.507246376811595, "center_y": 0.5797101449275361, "value_uncond": 0.007872638046252756}, {"x": 5.6521739130434785, "y": 0.43478260869565233, "x2": 5.942028985507246, "y2": 0.72463768115942, "center_x": 5.797101449275362, "center_y": 0.5797101449275361, "value_uncond": 0.0074996072512409475}, {"x": 5.942028985507246, "y": 0.43478260869565233, "x2": 6.231884057971014, "y2": 0.72463768115942, "center_x": 6.08695652173913, "center_y": 0.5797101449275361, "value_uncond": 0.00707786981783574}, {"x": 6.2318840579710155, "y": 0.43478260869565233, "x2": 6.521739130434783, "y2": 0.72463768115942, "center_x": 6.376811594202899, "center_y": 0.5797101449275361, "value_uncond": 0.006617781671290226}, {"x": 6.521739130434785, "y": 0.43478260869565233, "x2": 6.8115942028985526, "y2": 0.72463768115942, "center_x": 6.666666666666669, "center_y": 0.5797101449275361, "value_uncond": 0.006130107836491764}, {"x": 6.811594202898551, "y": 0.43478260869565233, "x2": 7.101449275362318, "y2": 0.72463768115942, "center_x": 6.956521739130435, "center_y": 0.5797101449275361, "value_uncond": 0.005625609832929387}, {"x": 7.10144927536232, "y": 0.43478260869565233, "x2": 7.391304347826088, "y2": 0.72463768115942, "center_x": 7.246376811594204, "center_y": 0.5797101449275361, "value_uncond": 0.005114661736369161}, {"x": 7.391304347826086, "y": 0.43478260869565233, "x2": 7.681159420289854, "y2": 0.72463768115942, "center_x": 7.53623188405797, "center_y": 0.5797101449275361, "value_uncond": 0.004606913302257929}, {"x": 7.681159420289855, "y": 0.43478260869565233, "x2": 7.971014492753623, "y2": 0.72463768115942, "center_x": 7.826086956521739, "center_y": 0.5797101449275361, "value_uncond": 0.004111014198259955}, {"x": 7.971014492753625, "y": 0.43478260869565233, "x2": 8.260869565217392, "y2": 0.72463768115942, "center_x": 8.115942028985508, "center_y": 0.5797101449275361, "value_uncond": 0.0036344084090027774}, {"x": 8.26086956521739, "y": 0.43478260869565233, "x2": 8.550724637681158, "y2": 0.72463768115942, "center_x": 8.405797101449274, "center_y": 0.5797101449275361, "value_uncond": 0.0031832027044572447}, {"x": 8.55072463768116, "y": 0.43478260869565233, "x2": 8.840579710144928, "y2": 0.72463768115942, "center_x": 8.695652173913043, "center_y": 0.5797101449275361, "value_uncond": 0.0027621081296955365}, {"x": 8.84057971014493, "y": 0.43478260869565233, "x2": 9.130434782608697, "y2": 0.72463768115942, "center_x": 8.985507246376812, "center_y": 0.5797101449275361, "value_uncond": 0.0023744491406814394}, {"x": 9.130434782608695, "y": 0.43478260869565233, "x2": 9.420289855072463, "y2": 0.72463768115942, "center_x": 9.275362318840578, "center_y": 0.5797101449275361, "value_uncond": 0.002022231549964005}, {"x": 9.420289855072465, "y": 0.43478260869565233, "x2": 9.710144927536232, "y2": 0.72463768115942, "center_x": 9.565217391304348, "center_y": 0.5797101449275361, "value_uncond": 0.0017062580226999535}, {"x": 9.710144927536234, "y": 0.43478260869565233, "x2": 10.000000000000002, "y2": 0.72463768115942, "center_x": 9.855072463768117, "center_y": 0.5797101449275361, "value_uncond": 0.0014262785327365166}, {"x": 10.0, "y": 0.43478260869565233, "x2": 10.289855072463768, "y2": 0.72463768115942, "center_x": 10.144927536231883, "center_y": 0.5797101449275361, "value_uncond": 0.0011811629050635496}, {"x": -10.0, "y": 0.72463768115942, "x2": -9.710144927536232, "y2": 1.0144927536231876, "center_x": -9.855072463768117, "center_y": 0.8695652173913038, "value_uncond": 1.8186695398019615e-07}, {"x": -9.710144927536232, "y": 0.72463768115942, "x2": -9.420289855072465, "y2": 1.0144927536231876, "center_x": -9.565217391304348, "center_y": 0.8695652173913038, "value_uncond": 2.841475121909858e-07}, {"x": -9.420289855072463, "y": 0.72463768115942, "x2": -9.130434782608695, "y2": 1.0144927536231876, "center_x": -9.275362318840578, "center_y": 0.8695652173913038, "value_uncond": 4.398248239312864e-07}, {"x": -9.130434782608695, "y": 0.72463768115942, "x2": -8.840579710144928, "y2": 1.0144927536231876, "center_x": -8.985507246376812, "center_y": 0.8695652173913038, "value_uncond": 6.744681274779165e-07}, {"x": -8.840579710144928, "y": 0.72463768115942, "x2": -8.55072463768116, "y2": 1.0144927536231876, "center_x": -8.695652173913043, "center_y": 0.8695652173913038, "value_uncond": 1.024681605709748e-06}, {"x": -8.55072463768116, "y": 0.72463768115942, "x2": -8.260869565217392, "y2": 1.0144927536231876, "center_x": -8.405797101449277, "center_y": 0.8695652173913038, "value_uncond": 1.5422765784592037e-06}, {"x": -8.26086956521739, "y": 0.72463768115942, "x2": -7.971014492753623, "y2": 1.0144927536231876, "center_x": -8.115942028985508, "center_y": 0.8695652173913038, "value_uncond": 2.2997540956322e-06}, {"x": -7.971014492753623, "y": 0.72463768115942, "x2": -7.681159420289855, "y2": 1.0144927536231876, "center_x": -7.826086956521739, "center_y": 0.8695652173913038, "value_uncond": 3.3973974241835387e-06}, {"x": -7.681159420289855, "y": 0.72463768115942, "x2": -7.391304347826088, "y2": 1.0144927536231876, "center_x": -7.536231884057972, "center_y": 0.8695652173913038, "value_uncond": 4.97229766828531e-06}, {"x": -7.391304347826087, "y": 0.72463768115942, "x2": -7.101449275362319, "y2": 1.0144927536231876, "center_x": -7.246376811594203, "center_y": 0.8695652173913038, "value_uncond": 7.209642019613979e-06}, {"x": -7.101449275362318, "y": 0.72463768115942, "x2": -6.811594202898551, "y2": 1.0144927536231876, "center_x": -6.956521739130435, "center_y": 0.8695652173913038, "value_uncond": 1.0356573628286171e-05}, {"x": -6.811594202898551, "y": 0.72463768115942, "x2": -6.521739130434783, "y2": 1.0144927536231876, "center_x": -6.666666666666667, "center_y": 0.8695652173913038, "value_uncond": 1.4738874043274142e-05}, {"x": -6.521739130434782, "y": 0.72463768115942, "x2": -6.231884057971015, "y2": 1.0144927536231876, "center_x": -6.3768115942028984, "center_y": 0.8695652173913038, "value_uncond": 2.078061193989797e-05}, {"x": -6.231884057971014, "y": 0.72463768115942, "x2": -5.942028985507246, "y2": 1.0144927536231876, "center_x": -6.08695652173913, "center_y": 0.8695652173913038, "value_uncond": 2.9026733914962152e-05}, {"x": -5.942028985507246, "y": 0.72463768115942, "x2": -5.6521739130434785, "y2": 1.0144927536231876, "center_x": -5.797101449275362, "center_y": 0.8695652173913038, "value_uncond": 4.0168334579425016e-05}, {"x": -5.6521739130434785, "y": 0.72463768115942, "x2": -5.362318840579711, "y2": 1.0144927536231876, "center_x": -5.507246376811595, "center_y": 0.8695652173913038, "value_uncond": 5.507002762581109e-05}, {"x": -5.36231884057971, "y": 0.72463768115942, "x2": -5.072463768115942, "y2": 1.0144927536231876, "center_x": -5.217391304347826, "center_y": 0.8695652173913038, "value_uncond": 7.47984463949287e-05}, {"x": -5.0724637681159415, "y": 0.72463768115942, "x2": -4.782608695652174, "y2": 1.0144927536231876, "center_x": -4.927536231884058, "center_y": 0.8695652173913038, "value_uncond": 0.00010065043936580447}, {"x": -4.782608695652174, "y": 0.72463768115942, "x2": -4.492753623188406, "y2": 1.0144927536231876, "center_x": -4.63768115942029, "center_y": 0.8695652173913038, "value_uncond": 0.00013417901122291513}, {"x": -4.492753623188405, "y": 0.72463768115942, "x2": -4.202898550724638, "y2": 1.0144927536231876, "center_x": -4.3478260869565215, "center_y": 0.8695652173913038, "value_uncond": 0.00017721452454710887}, {"x": -4.202898550724638, "y": 0.72463768115942, "x2": -3.91304347826087, "y2": 1.0144927536231876, "center_x": -4.057971014492754, "center_y": 0.8695652173913038, "value_uncond": 0.00023187816514453103}, {"x": -3.913043478260869, "y": 0.72463768115942, "x2": -3.6231884057971016, "y2": 1.0144927536231876, "center_x": -3.7681159420289854, "center_y": 0.8695652173913038, "value_uncond": 0.00030058424322266115}, {"x": -3.6231884057971016, "y": 0.72463768115942, "x2": -3.333333333333334, "y2": 1.0144927536231876, "center_x": -3.4782608695652177, "center_y": 0.8695652173913038, "value_uncond": 0.0003860276217674317}, {"x": -3.333333333333333, "y": 0.72463768115942, "x2": -3.0434782608695654, "y2": 1.0144927536231876, "center_x": -3.1884057971014492, "center_y": 0.8695652173913038, "value_uncond": 0.000491152508044845}, {"x": -3.0434782608695645, "y": 0.72463768115942, "x2": -2.753623188405797, "y2": 1.0144927536231876, "center_x": -2.8985507246376807, "center_y": 0.8695652173913038, "value_uncond": 0.0006190990897675365}, {"x": -2.753623188405797, "y": 0.72463768115942, "x2": -2.4637681159420293, "y2": 1.0144927536231876, "center_x": -2.608695652173913, "center_y": 0.8695652173913038, "value_uncond": 0.0007731251111857775}, {"x": -2.4637681159420284, "y": 0.72463768115942, "x2": -2.1739130434782608, "y2": 1.0144927536231876, "center_x": -2.3188405797101446, "center_y": 0.8695652173913038, "value_uncond": 0.0009565005143708588}, {"x": -2.1739130434782608, "y": 0.72463768115942, "x2": -1.8840579710144931, "y2": 1.0144927536231876, "center_x": -2.028985507246377, "center_y": 0.8695652173913038, "value_uncond": 0.001172374735623031}, {"x": -1.8840579710144922, "y": 0.72463768115942, "x2": -1.5942028985507246, "y2": 1.0144927536231876, "center_x": -1.7391304347826084, "center_y": 0.8695652173913038, "value_uncond": 0.0014236181244848623}, {"x": -1.5942028985507246, "y": 0.72463768115942, "x2": -1.304347826086957, "y2": 1.0144927536231876, "center_x": -1.4492753623188408, "center_y": 0.8695652173913038, "value_uncond": 0.0017126411732490106}, {"x": -1.304347826086957, "y": 0.72463768115942, "x2": -1.0144927536231894, "y2": 1.0144927536231876, "center_x": -1.1594202898550732, "center_y": 0.8695652173913038, "value_uncond": 0.0020411976855896296}, {"x": -1.0144927536231876, "y": 0.72463768115942, "x2": -0.72463768115942, "y2": 1.0144927536231876, "center_x": -0.8695652173913038, "center_y": 0.8695652173913038, "value_uncond": 0.0024101805001465397}, {"x": -0.72463768115942, "y": 0.72463768115942, "x2": -0.43478260869565233, "y2": 1.0144927536231876, "center_x": -0.5797101449275361, "center_y": 0.8695652173913038, "value_uncond": 0.0028194207010446004}, {"x": -0.43478260869565233, "y": 0.72463768115942, "x2": -0.1449275362318847, "y2": 1.0144927536231876, "center_x": -0.2898550724637685, "center_y": 0.8695652173913038, "value_uncond": 0.003267503146040521}, {"x": -0.14492753623188293, "y": 0.72463768115942, "x2": 0.1449275362318847, "y2": 1.0144927536231876, "center_x": 8.881784197001252e-16, "center_y": 0.8695652173913038, "value_uncond": 0.003751612370341276}, {"x": 0.1449275362318847, "y": 0.72463768115942, "x2": 0.43478260869565233, "y2": 1.0144927536231876, "center_x": 0.2898550724637685, "center_y": 0.8695652173913038, "value_uncond": 0.0042674232452736}, {"x": 0.43478260869565233, "y": 0.72463768115942, "x2": 0.72463768115942, "y2": 1.0144927536231876, "center_x": 0.5797101449275361, "center_y": 0.8695652173913038, "value_uncond": 0.004809049999432688}, {"x": 0.72463768115942, "y": 0.72463768115942, "x2": 1.0144927536231876, "y2": 1.0144927536231876, "center_x": 0.8695652173913038, "center_y": 0.8695652173913038, "value_uncond": 0.00536906523642159}, {"x": 1.0144927536231894, "y": 0.72463768115942, "x2": 1.304347826086957, "y2": 1.0144927536231876, "center_x": 1.1594202898550732, "center_y": 0.8695652173913038, "value_uncond": 0.005938597400192714}, {"x": 1.304347826086957, "y": 0.72463768115942, "x2": 1.5942028985507246, "y2": 1.0144927536231876, "center_x": 1.4492753623188408, "center_y": 0.8695652173913038, "value_uncond": 0.006507510856650965}, {"x": 1.5942028985507246, "y": 0.72463768115942, "x2": 1.8840579710144922, "y2": 1.0144927536231876, "center_x": 1.7391304347826084, "center_y": 0.8695652173913038, "value_uncond": 0.007064667611649967}, {"x": 1.884057971014494, "y": 0.72463768115942, "x2": 2.1739130434782616, "y2": 1.0144927536231876, "center_x": 2.028985507246378, "center_y": 0.8695652173913038, "value_uncond": 0.007598264017684372}, {"x": 2.1739130434782616, "y": 0.72463768115942, "x2": 2.4637681159420293, "y2": 1.0144927536231876, "center_x": 2.3188405797101455, "center_y": 0.8695652173913038, "value_uncond": 0.008096230071792845}, {"x": 2.4637681159420293, "y": 0.72463768115942, "x2": 2.753623188405797, "y2": 1.0144927536231876, "center_x": 2.608695652173913, "center_y": 0.8695652173913038, "value_uncond": 0.008546673566708152}, {"x": 2.753623188405797, "y": 0.72463768115942, "x2": 3.0434782608695645, "y2": 1.0144927536231876, "center_x": 2.8985507246376807, "center_y": 0.8695652173913038, "value_uncond": 0.008938346924722965}, {"x": 3.0434782608695663, "y": 0.72463768115942, "x2": 3.333333333333334, "y2": 1.0144927536231876, "center_x": 3.18840579710145, "center_y": 0.8695652173913038, "value_uncond": 0.009261111473147475}, {"x": 3.333333333333334, "y": 0.72463768115942, "x2": 3.6231884057971016, "y2": 1.0144927536231876, "center_x": 3.4782608695652177, "center_y": 0.8695652173913038, "value_uncond": 0.009506372569980895}, {"x": 3.6231884057971016, "y": 0.72463768115942, "x2": 3.913043478260869, "y2": 1.0144927536231876, "center_x": 3.7681159420289854, "center_y": 0.8695652173913038, "value_uncond": 0.00966745957707897}, {"x": 3.913043478260871, "y": 0.72463768115942, "x2": 4.202898550724639, "y2": 1.0144927536231876, "center_x": 4.057971014492755, "center_y": 0.8695652173913038, "value_uncond": 0.009739927253361315}, {"x": 4.202898550724639, "y": 0.72463768115942, "x2": 4.492753623188406, "y2": 1.0144927536231876, "center_x": 4.347826086956522, "center_y": 0.8695652173913038, "value_uncond": 0.009721759565745862}, {"x": 4.492753623188406, "y": 0.72463768115942, "x2": 4.782608695652174, "y2": 1.0144927536231876, "center_x": 4.63768115942029, "center_y": 0.8695652173913038, "value_uncond": 0.00961346287597533}, {"x": 4.782608695652174, "y": 0.72463768115942, "x2": 5.0724637681159415, "y2": 1.0144927536231876, "center_x": 4.927536231884058, "center_y": 0.8695652173913038, "value_uncond": 0.009418042491643623}, {"x": 5.072463768115943, "y": 0.72463768115942, "x2": 5.362318840579711, "y2": 1.0144927536231876, "center_x": 5.217391304347827, "center_y": 0.8695652173913038, "value_uncond": 0.009140864096972293}, {"x": 5.362318840579711, "y": 0.72463768115942, "x2": 5.6521739130434785, "y2": 1.0144927536231876, "center_x": 5.507246376811595, "center_y": 0.8695652173913038, "value_uncond": 0.008789408980578704}, {"x": 5.6521739130434785, "y": 0.72463768115942, "x2": 5.942028985507246, "y2": 1.0144927536231876, "center_x": 5.797101449275362, "center_y": 0.8695652173913038, "value_uncond": 0.008372938643641286}, {"x": 5.942028985507246, "y": 0.72463768115942, "x2": 6.231884057971014, "y2": 1.0144927536231876, "center_x": 6.08695652173913, "center_y": 0.8695652173913038, "value_uncond": 0.007902089766449183}, {"x": 6.2318840579710155, "y": 0.72463768115942, "x2": 6.521739130434783, "y2": 1.0144927536231876, "center_x": 6.376811594202899, "center_y": 0.8695652173913038, "value_uncond": 0.007388424224689674}, {"x": 6.521739130434785, "y": 0.72463768115942, "x2": 6.8115942028985526, "y2": 1.0144927536231876, "center_x": 6.666666666666669, "center_y": 0.8695652173913038, "value_uncond": 0.006843960633452795}, {"x": 6.811594202898551, "y": 0.72463768115942, "x2": 7.101449275362318, "y2": 1.0144927536231876, "center_x": 6.956521739130435, "center_y": 0.8695652173913038, "value_uncond": 0.006280713694225632}, {"x": 7.10144927536232, "y": 0.72463768115942, "x2": 7.391304347826088, "y2": 1.0144927536231876, "center_x": 7.246376811594204, "center_y": 0.8695652173913038, "value_uncond": 0.0057102655468408235}, {"x": 7.391304347826086, "y": 0.72463768115942, "x2": 7.681159420289854, "y2": 1.0144927536231876, "center_x": 7.53623188405797, "center_y": 0.8695652173913038, "value_uncond": 0.00514338966350509}, {"x": 7.681159420289855, "y": 0.72463768115942, "x2": 7.971014492753623, "y2": 1.0144927536231876, "center_x": 7.826086956521739, "center_y": 0.8695652173913038, "value_uncond": 0.004589742968136519}, {"x": 7.971014492753625, "y": 0.72463768115942, "x2": 8.260869565217392, "y2": 1.0144927536231876, "center_x": 8.115942028985508, "center_y": 0.8695652173913038, "value_uncond": 0.004057636299484735}, {"x": 8.26086956521739, "y": 0.72463768115942, "x2": 8.550724637681158, "y2": 1.0144927536231876, "center_x": 8.405797101449274, "center_y": 0.8695652173913038, "value_uncond": 0.0035538875626164724}, {"x": 8.55072463768116, "y": 0.72463768115942, "x2": 8.840579710144928, "y2": 1.0144927536231876, "center_x": 8.695652173913043, "center_y": 0.8695652173913038, "value_uncond": 0.003083756405139314}, {"x": 8.84057971014493, "y": 0.72463768115942, "x2": 9.130434782608697, "y2": 1.0144927536231876, "center_x": 8.985507246376812, "center_y": 0.8695652173913038, "value_uncond": 0.002650954416857332}, {"x": 9.130434782608695, "y": 0.72463768115942, "x2": 9.420289855072463, "y2": 1.0144927536231876, "center_x": 9.275362318840578, "center_y": 0.8695652173913038, "value_uncond": 0.002257720987760062}, {"x": 9.420289855072465, "y": 0.72463768115942, "x2": 9.710144927536232, "y2": 1.0144927536231876, "center_x": 9.565217391304348, "center_y": 0.8695652173913038, "value_uncond": 0.0019049522535894748}, {"x": 9.710144927536234, "y": 0.72463768115942, "x2": 10.000000000000002, "y2": 1.0144927536231876, "center_x": 9.855072463768117, "center_y": 0.8695652173913038, "value_uncond": 0.0015923690725763713}, {"x": 10.0, "y": 0.72463768115942, "x2": 10.289855072463768, "y2": 1.0144927536231876, "center_x": 10.144927536231883, "center_y": 0.8695652173913038, "value_uncond": 0.0013187096605099884}, {"x": -10.0, "y": 1.0144927536231894, "x2": -9.710144927536232, "y2": 1.304347826086957, "center_x": -9.855072463768117, "center_y": 1.1594202898550732, "value_uncond": 2.0115878137617703e-07}, {"x": -9.710144927536232, "y": 1.0144927536231894, "x2": -9.420289855072465, "y2": 1.304347826086957, "center_x": -9.565217391304348, "center_y": 1.1594202898550732, "value_uncond": 3.1428891303493833e-07}, {"x": -9.420289855072463, "y": 1.0144927536231894, "x2": -9.130434782608695, "y2": 1.304347826086957, "center_x": -9.275362318840578, "center_y": 1.1594202898550732, "value_uncond": 4.864799440729798e-07}, {"x": -9.130434782608695, "y": 1.0144927536231894, "x2": -8.840579710144928, "y2": 1.304347826086957, "center_x": -8.985507246376812, "center_y": 1.1594202898550732, "value_uncond": 7.460134105248357e-07}, {"x": -8.840579710144928, "y": 1.0144927536231894, "x2": -8.55072463768116, "y2": 1.304347826086957, "center_x": -8.695652173913043, "center_y": 1.1594202898550732, "value_uncond": 1.1333763423870968e-06}, {"x": -8.55072463768116, "y": 1.0144927536231894, "x2": -8.260869565217392, "y2": 1.304347826086957, "center_x": -8.405797101449277, "center_y": 1.1594202898550732, "value_uncond": 1.705876027932241e-06}, {"x": -8.26086956521739, "y": 1.0144927536231894, "x2": -7.971014492753623, "y2": 1.304347826086957, "center_x": -8.115942028985508, "center_y": 1.1594202898550732, "value_uncond": 2.5437041816438e-06}, {"x": -7.971014492753623, "y": 1.0144927536231894, "x2": -7.681159420289855, "y2": 1.304347826086957, "center_x": -7.826086956521739, "center_y": 1.1594202898550732, "value_uncond": 3.757781778066953e-06}, {"x": -7.681159420289855, "y": 1.0144927536231894, "x2": -7.391304347826088, "y2": 1.304347826086957, "center_x": -7.536231884057972, "center_y": 1.1594202898550732, "value_uncond": 5.499742079040889e-06}, {"x": -7.391304347826087, "y": 1.0144927536231894, "x2": -7.101449275362319, "y2": 1.304347826086957, "center_x": -7.246376811594203, "center_y": 1.1594202898550732, "value_uncond": 7.97441630315065e-06}, {"x": -7.101449275362318, "y": 1.0144927536231894, "x2": -6.811594202898551, "y2": 1.304347826086957, "center_x": -6.956521739130435, "center_y": 1.1594202898550732, "value_uncond": 1.1455163704592264e-05}, {"x": -6.811594202898551, "y": 1.0144927536231894, "x2": -6.521739130434783, "y2": 1.304347826086957, "center_x": -6.666666666666667, "center_y": 1.1594202898550732, "value_uncond": 1.6302323630079804e-05}, {"x": -6.521739130434782, "y": 1.0144927536231894, "x2": -6.231884057971015, "y2": 1.304347826086957, "center_x": -6.3768115942028984, "center_y": 1.1594202898550732, "value_uncond": 2.2984948516464915e-05}, {"x": -6.231884057971014, "y": 1.0144927536231894, "x2": -5.942028985507246, "y2": 1.304347826086957, "center_x": -6.08695652173913, "center_y": 1.1594202898550732, "value_uncond": 3.210579104052153e-05}, {"x": -5.942028985507246, "y": 1.0144927536231894, "x2": -5.6521739130434785, "y2": 1.304347826086957, "center_x": -5.797101449275362, "center_y": 1.1594202898550732, "value_uncond": 4.442925477702533e-05}, {"x": -5.6521739130434785, "y": 1.0144927536231894, "x2": -5.362318840579711, "y2": 1.304347826086957, "center_x": -5.507246376811595, "center_y": 1.1594202898550732, "value_uncond": 6.09116686958249e-05}, {"x": -5.36231884057971, "y": 1.0144927536231894, "x2": -5.072463768115942, "y2": 1.304347826086957, "center_x": -5.217391304347826, "center_y": 1.1594202898550732, "value_uncond": 8.273281097165984e-05}, {"x": -5.0724637681159415, "y": 1.0144927536231894, "x2": -4.782608695652174, "y2": 1.304347826086957, "center_x": -4.927536231884058, "center_y": 1.1594202898550732, "value_uncond": 0.00011132709535568892}, {"x": -4.782608695652174, "y": 1.0144927536231894, "x2": -4.492753623188406, "y2": 1.304347826086957, "center_x": -4.63768115942029, "center_y": 1.1594202898550732, "value_uncond": 0.00014841226398282928}, {"x": -4.492753623188405, "y": 1.0144927536231894, "x2": -4.202898550724638, "y2": 1.304347826086957, "center_x": -4.3478260869565215, "center_y": 1.1594202898550732, "value_uncond": 0.0001960128380658796}, {"x": -4.202898550724638, "y": 1.0144927536231894, "x2": -3.91304347826087, "y2": 1.304347826086957, "center_x": -4.057971014492754, "center_y": 1.1594202898550732, "value_uncond": 0.0002564750115807015}, {"x": -3.913043478260869, "y": 1.0144927536231894, "x2": -3.6231884057971016, "y2": 1.304347826086957, "center_x": -3.7681159420289854, "center_y": 1.1594202898550732, "value_uncond": 0.0003324691965431773}, {"x": -3.6231884057971016, "y": 1.0144927536231894, "x2": -3.333333333333334, "y2": 1.304347826086957, "center_x": -3.4782608695652177, "center_y": 1.1594202898550732, "value_uncond": 0.0004269761178313679}, {"x": -3.333333333333333, "y": 1.0144927536231894, "x2": -3.0434782608695654, "y2": 1.304347826086957, "center_x": -3.1884057971014492, "center_y": 1.1594202898550732, "value_uncond": 0.0005432522941958565}, {"x": -3.0434782608695645, "y": 1.0144927536231894, "x2": -2.753623188405797, "y2": 1.304347826086957, "center_x": -2.8985507246376807, "center_y": 1.1594202898550732, "value_uncond": 0.0006847710137725129}, {"x": -2.753623188405797, "y": 1.0144927536231894, "x2": -2.4637681159420293, "y2": 1.304347826086957, "center_x": -2.608695652173913, "center_y": 1.1594202898550732, "value_uncond": 0.0008551355912321876}, {"x": -2.4637681159420284, "y": 1.0144927536231894, "x2": -2.1739130434782608, "y2": 1.304347826086957, "center_x": -2.3188405797101446, "center_y": 1.1594202898550732, "value_uncond": 0.0010579628329700835}, {"x": -2.1739130434782608, "y": 1.0144927536231894, "x2": -1.8840579710144931, "y2": 1.304347826086957, "center_x": -2.028985507246377, "center_y": 1.1594202898550732, "value_uncond": 0.0012967362567683765}, {"x": -1.8840579710144922, "y": 1.0144927536231894, "x2": -1.5942028985507246, "y2": 1.304347826086957, "center_x": -1.7391304347826084, "center_y": 1.1594202898550732, "value_uncond": 0.001574630689078329}, {"x": -1.5942028985507246, "y": 1.0144927536231894, "x2": -1.304347826086957, "y2": 1.304347826086957, "center_x": -1.4492753623188408, "center_y": 1.1594202898550732, "value_uncond": 0.0018943123190095946}, {"x": -1.304347826086957, "y": 1.0144927536231894, "x2": -1.0144927536231894, "y2": 1.304347826086957, "center_x": -1.1594202898550732, "center_y": 1.1594202898550732, "value_uncond": 0.002257720987760061}, {"x": -1.0144927536231876, "y": 1.0144927536231894, "x2": -0.72463768115942, "y2": 1.304347826086957, "center_x": -0.8695652173913038, "center_y": 1.1594202898550732, "value_uncond": 0.002665844243253208}, {"x": -0.72463768115942, "y": 1.0144927536231894, "x2": -0.43478260869565233, "y2": 1.304347826086957, "center_x": -0.5797101449275361, "center_y": 1.1594202898550732, "value_uncond": 0.0031184952515928535}, {"x": -0.43478260869565233, "y": 1.0144927536231894, "x2": -0.1449275362318847, "y2": 1.304347826086957, "center_x": -0.2898550724637685, "center_y": 1.1594202898550732, "value_uncond": 0.003614108757063738}, {"x": -0.14492753623188293, "y": 1.0144927536231894, "x2": 0.1449275362318847, "y2": 1.304347826086957, "center_x": 8.881784197001252e-16, "center_y": 1.1594202898550732, "value_uncond": 0.004149570639951545}, {"x": 0.1449275362318847, "y": 1.0144927536231894, "x2": 0.43478260869565233, "y2": 1.304347826086957, "center_x": 0.2898550724637685, "center_y": 1.1594202898550732, "value_uncond": 0.004720096976656257}, {"x": 0.43478260869565233, "y": 1.0144927536231894, "x2": 0.72463768115942, "y2": 1.304347826086957, "center_x": 0.5797101449275361, "center_y": 1.1594202898550732, "value_uncond": 0.005319177653177842}, {"x": 0.72463768115942, "y": 1.0144927536231894, "x2": 1.0144927536231876, "y2": 1.304347826086957, "center_x": 0.8695652173913038, "center_y": 1.1594202898550732, "value_uncond": 0.005938597400192714}, {"x": 1.0144927536231894, "y": 1.0144927536231894, "x2": 1.304347826086957, "y2": 1.304347826086957, "center_x": 1.1594202898550732, "center_y": 1.1594202898550732, "value_uncond": 0.006568543597186876}, {"x": 1.304347826086957, "y": 1.0144927536231894, "x2": 1.5942028985507246, "y2": 1.304347826086957, "center_x": 1.4492753623188408, "center_y": 1.1594202898550732, "value_uncond": 0.007197805456502516}, {"x": 1.5942028985507246, "y": 1.0144927536231894, "x2": 1.8840579710144922, "y2": 1.304347826086957, "center_x": 1.7391304347826084, "center_y": 1.1594202898550732, "value_uncond": 0.007814063503488382}, {"x": 1.884057971014494, "y": 1.0144927536231894, "x2": 2.1739130434782616, "y2": 1.304347826086957, "center_x": 2.028985507246378, "center_y": 1.1594202898550732, "value_uncond": 0.00840426199989184}, {"x": 2.1739130434782616, "y": 1.0144927536231894, "x2": 2.4637681159420293, "y2": 1.304347826086957, "center_x": 2.3188405797101455, "center_y": 1.1594202898550732, "value_uncond": 0.008955050597924176}, {"x": 2.4637681159420293, "y": 1.0144927536231894, "x2": 2.753623188405797, "y2": 1.304347826086957, "center_x": 2.608695652173913, "center_y": 1.1594202898550732, "value_uncond": 0.00945327560545279}, {"x": 2.753623188405797, "y": 1.0144927536231894, "x2": 3.0434782608695645, "y2": 1.304347826086957, "center_x": 2.8985507246376807, "center_y": 1.1594202898550732, "value_uncond": 0.009886496340014353}, {"x": 3.0434782608695663, "y": 1.0144927536231894, "x2": 3.333333333333334, "y2": 1.304347826086957, "center_x": 3.18840579710145, "center_y": 1.1594202898550732, "value_uncond": 0.010243498653032564}, {"x": 3.333333333333334, "y": 1.0144927536231894, "x2": 3.6231884057971016, "y2": 1.304347826086957, "center_x": 3.4782608695652177, "center_y": 1.1594202898550732, "value_uncond": 0.010514776212139686}, {"x": 3.6231884057971016, "y": 1.0144927536231894, "x2": 3.913043478260869, "y2": 1.304347826086957, "center_x": 3.7681159420289854, "center_y": 1.1594202898550732, "value_uncond": 0.01069295078060424}, {"x": 3.913043478260871, "y": 1.0144927536231894, "x2": 4.202898550724639, "y2": 1.304347826086957, "center_x": 4.057971014492755, "center_y": 1.1594202898550732, "value_uncond": 0.010773105581303807}, {"x": 4.202898550724639, "y": 1.0144927536231894, "x2": 4.492753623188406, "y2": 1.304347826086957, "center_x": 4.347826086956522, "center_y": 1.1594202898550732, "value_uncond": 0.010753010727229628}, {"x": 4.492753623188406, "y": 1.0144927536231894, "x2": 4.782608695652174, "y2": 1.304347826086957, "center_x": 4.63768115942029, "center_y": 1.1594202898550732, "value_uncond": 0.010633226293254413}, {"x": 4.782608695652174, "y": 1.0144927536231894, "x2": 5.0724637681159415, "y2": 1.304347826086957, "center_x": 4.927536231884058, "center_y": 1.1594202898550732, "value_uncond": 0.010417076379771448}, {"x": 5.072463768115943, "y": 1.0144927536231894, "x2": 5.362318840579711, "y2": 1.304347826086957, "center_x": 5.217391304347827, "center_y": 1.1594202898550732, "value_uncond": 0.0101104958445195}, {"x": 5.362318840579711, "y": 1.0144927536231894, "x2": 5.6521739130434785, "y2": 1.304347826086957, "center_x": 5.507246376811595, "center_y": 1.1594202898550732, "value_uncond": 0.009721759565745867}, {"x": 5.6521739130434785, "y": 1.0144927536231894, "x2": 5.942028985507246, "y2": 1.304347826086957, "center_x": 5.797101449275362, "center_y": 1.1594202898550732, "value_uncond": 0.009261111473147477}, {"x": 5.942028985507246, "y": 1.0144927536231894, "x2": 6.231884057971014, "y2": 1.304347826086957, "center_x": 6.08695652173913, "center_y": 1.1594202898550732, "value_uncond": 0.008740316549850866}, {"x": 6.2318840579710155, "y": 1.0144927536231894, "x2": 6.521739130434783, "y2": 1.304347826086957, "center_x": 6.376811594202899, "center_y": 1.1594202898550732, "value_uncond": 0.008172163115959143}, {"x": 6.521739130434785, "y": 1.0144927536231894, "x2": 6.8115942028985526, "y2": 1.304347826086957, "center_x": 6.666666666666669, "center_y": 1.1594202898550732, "value_uncond": 0.0075699446803392575}, {"x": 6.811594202898551, "y": 1.0144927536231894, "x2": 7.101449275362318, "y2": 1.304347826086957, "center_x": 6.956521739130435, "center_y": 1.1594202898550732, "value_uncond": 0.006946950423113533}, {"x": 7.10144927536232, "y": 1.0144927536231894, "x2": 7.391304347826088, "y2": 1.304347826086957, "center_x": 7.246376811594204, "center_y": 1.1594202898550732, "value_uncond": 0.006315991078081992}, {"x": 7.391304347826086, "y": 1.0144927536231894, "x2": 7.681159420289854, "y2": 1.304347826086957, "center_x": 7.53623188405797, "center_y": 1.1594202898550732, "value_uncond": 0.0056889829307097284}, {"x": 7.681159420289855, "y": 1.0144927536231894, "x2": 7.971014492753623, "y2": 1.304347826086957, "center_x": 7.826086956521739, "center_y": 1.1594202898550732, "value_uncond": 0.0050766072785315055}, {"x": 7.971014492753625, "y": 1.0144927536231894, "x2": 8.260869565217392, "y2": 1.304347826086957, "center_x": 8.115942028985508, "center_y": 1.1594202898550732, "value_uncond": 0.004488056545781094}, {"x": 8.26086956521739, "y": 1.0144927536231894, "x2": 8.550724637681158, "y2": 1.304347826086957, "center_x": 8.405797101449274, "center_y": 1.1594202898550732, "value_uncond": 0.003930871857686288}, {"x": 8.55072463768116, "y": 1.0144927536231894, "x2": 8.840579710144928, "y2": 1.304347826086957, "center_x": 8.695652173913043, "center_y": 1.1594202898550732, "value_uncond": 0.0034108707873688375}, {"x": 8.84057971014493, "y": 1.0144927536231894, "x2": 9.130434782608697, "y2": 1.304347826086957, "center_x": 8.985507246376812, "center_y": 1.1594202898550732, "value_uncond": 0.0029321586374448324}, {"x": 9.130434782608695, "y": 1.0144927536231894, "x2": 9.420289855072463, "y2": 1.304347826086957, "center_x": 9.275362318840578, "center_y": 1.1594202898550732, "value_uncond": 0.0024972123447709275}, {"x": 9.420289855072465, "y": 1.0144927536231894, "x2": 9.710144927536232, "y2": 1.304347826086957, "center_x": 9.565217391304348, "center_y": 1.1594202898550732, "value_uncond": 0.00210702310411812}, {"x": 9.710144927536234, "y": 1.0144927536231894, "x2": 10.000000000000002, "y2": 1.304347826086957, "center_x": 9.855072463768117, "center_y": 1.1594202898550732, "value_uncond": 0.0017612821633085447}, {"x": 10.0, "y": 1.0144927536231894, "x2": 10.289855072463768, "y2": 1.304347826086957, "center_x": 10.144927536231883, "center_y": 1.1594202898550732, "value_uncond": 0.0014585938923575234}, {"x": -10.0, "y": 1.304347826086957, "x2": -9.710144927536232, "y2": 1.5942028985507246, "center_x": -9.855072463768117, "center_y": 1.4492753623188408, "value_uncond": 2.2042965122937443e-07}, {"x": -9.710144927536232, "y": 1.304347826086957, "x2": -9.420289855072465, "y2": 1.5942028985507246, "center_x": -9.565217391304348, "center_y": 1.4492753623188408, "value_uncond": 3.4439756997730165e-07}, {"x": -9.420289855072463, "y": 1.304347826086957, "x2": -9.130434782608695, "y2": 1.5942028985507246, "center_x": -9.275362318840578, "center_y": 1.4492753623188408, "value_uncond": 5.330843807487501e-07}, {"x": -9.130434782608695, "y": 1.304347826086957, "x2": -8.840579710144928, "y2": 1.5942028985507246, "center_x": -8.985507246376812, "center_y": 1.4492753623188408, "value_uncond": 8.17480970850127e-07}, {"x": -8.840579710144928, "y": 1.304347826086957, "x2": -8.55072463768116, "y2": 1.5942028985507246, "center_x": -8.695652173913043, "center_y": 1.4492753623188408, "value_uncond": 1.241952999291727e-06}, {"x": -8.55072463768116, "y": 1.304347826086957, "x2": -8.260869565217392, "y2": 1.5942028985507246, "center_x": -8.405797101449277, "center_y": 1.4492753623188408, "value_uncond": 1.8692977522789205e-06}, {"x": -8.26086956521739, "y": 1.304347826086957, "x2": -7.971014492753623, "y2": 1.5942028985507246, "center_x": -8.115942028985508, "center_y": 1.4492753623188408, "value_uncond": 2.7873892541727638e-06}, {"x": -7.971014492753623, "y": 1.304347826086957, "x2": -7.681159420289855, "y2": 1.5942028985507246, "center_x": -7.826086956521739, "center_y": 1.4492753623188408, "value_uncond": 4.117774630909027e-06}, {"x": -7.681159420289855, "y": 1.304347826086957, "x2": -7.391304347826088, "y2": 1.5942028985507246, "center_x": -7.536231884057972, "center_y": 1.4492753623188408, "value_uncond": 6.026613504221936e-06}, {"x": -7.391304347826087, "y": 1.304347826086957, "x2": -7.101449275362319, "y2": 1.5942028985507246, "center_x": -7.246376811594203, "center_y": 1.4492753623188408, "value_uncond": 8.738359779452854e-06}, {"x": -7.101449275362318, "y": 1.304347826086957, "x2": -6.811594202898551, "y2": 1.5942028985507246, "center_x": -6.956521739130435, "center_y": 1.4492753623188408, "value_uncond": 1.2552560335194498e-05}, {"x": -6.811594202898551, "y": 1.304347826086957, "x2": -6.521739130434783, "y2": 1.5942028985507246, "center_x": -6.666666666666667, "center_y": 1.4492753623188408, "value_uncond": 1.7864074774279058e-05}, {"x": -6.521739130434782, "y": 1.304347826086957, "x2": -6.231884057971015, "y2": 1.5942028985507246, "center_x": -6.3768115942028984, "center_y": 1.4492753623188408, "value_uncond": 2.5186890427292652e-05}, {"x": -6.231884057971014, "y": 1.304347826086957, "x2": -5.942028985507246, "y2": 1.5942028985507246, "center_x": -6.08695652173913, "center_y": 1.4492753623188408, "value_uncond": 3.518150325374492e-05}, {"x": -5.942028985507246, "y": 1.304347826086957, "x2": -5.6521739130434785, "y2": 1.5942028985507246, "center_x": -5.797101449275362, "center_y": 1.4492753623188408, "value_uncond": 4.8685546153544873e-05}, {"x": -5.6521739130434785, "y": 1.304347826086957, "x2": -5.362318840579711, "y2": 1.5942028985507246, "center_x": -5.507246376811595, "center_y": 1.4492753623188408, "value_uncond": 6.674696373961032e-05}, {"x": -5.36231884057971, "y": 1.304347826086957, "x2": -5.072463768115942, "y2": 1.5942028985507246, "center_x": -5.217391304347826, "center_y": 1.4492753623188408, "value_uncond": 9.065855610650711e-05}, {"x": -5.0724637681159415, "y": 1.304347826086957, "x2": -4.782608695652174, "y2": 1.5942028985507246, "center_x": -4.927536231884058, "center_y": 1.4492753623188408, "value_uncond": 0.00012199215283444759}, {"x": -4.782608695652174, "y": 1.304347826086957, "x2": -4.492753623188406, "y2": 1.5942028985507246, "center_x": -4.63768115942029, "center_y": 1.4492753623188408, "value_uncond": 0.00016263005454740363}, {"x": -4.492753623188405, "y": 1.304347826086957, "x2": -4.202898550724638, "y2": 1.5942028985507246, "center_x": -4.3478260869565215, "center_y": 1.4492753623188408, "value_uncond": 0.0002147907301672421}, {"x": -4.202898550724638, "y": 1.304347826086957, "x2": -3.91304347826087, "y2": 1.5942028985507246, "center_x": -4.057971014492754, "center_y": 1.4492753623188408, "value_uncond": 0.0002810451374034776}, {"x": -3.913043478260869, "y": 1.304347826086957, "x2": -3.6231884057971016, "y2": 1.5942028985507246, "center_x": -3.7681159420289854, "center_y": 1.4492753623188408, "value_uncond": 0.00036431951186597375}, {"x": -3.6231884057971016, "y": 1.304347826086957, "x2": -3.333333333333334, "y2": 1.5942028985507246, "center_x": -3.4782608695652177, "center_y": 1.4492753623188408, "value_uncond": 0.0004678801297808369}, {"x": -3.333333333333333, "y": 1.304347826086957, "x2": -3.0434782608695654, "y2": 1.5942028985507246, "center_x": -3.1884057971014492, "center_y": 1.4492753623188408, "value_uncond": 0.0005952954821058184}, {"x": -3.0434782608695645, "y": 1.304347826086957, "x2": -2.753623188405797, "y2": 1.5942028985507246, "center_x": -2.8985507246376807, "center_y": 1.4492753623188408, "value_uncond": 0.0007503715955386884}, {"x": -2.753623188405797, "y": 1.304347826086957, "x2": -2.4637681159420293, "y2": 1.5942028985507246, "center_x": -2.608695652173913, "center_y": 1.4492753623188408, "value_uncond": 0.0009370569797628511}, {"x": -2.4637681159420284, "y": 1.304347826086957, "x2": -2.1739130434782608, "y2": 1.5942028985507246, "center_x": -2.3188405797101446, "center_y": 1.4492753623188408, "value_uncond": 0.0011593149286837688}, {"x": -2.1739130434782608, "y": 1.304347826086957, "x2": -1.8840579710144931, "y2": 1.5942028985507246, "center_x": -2.028985507246377, "center_y": 1.4492753623188408, "value_uncond": 0.0014209626786384445}, {"x": -1.8840579710144922, "y": 1.304347826086957, "x2": -1.5942028985507246, "y2": 1.5942028985507246, "center_x": -1.7391304347826084, "center_y": 1.4492753623188408, "value_uncond": 0.0017254792022204585}, {"x": -1.5942028985507246, "y": 1.304347826086957, "x2": -1.304347826086957, "y2": 1.5942028985507246, "center_x": -1.4492753623188408, "center_y": 1.4492753623188408, "value_uncond": 0.0020757861075819967}, {"x": -1.304347826086957, "y": 1.304347826086957, "x2": -1.0144927536231894, "y2": 1.5942028985507246, "center_x": -1.1594202898550732, "center_y": 1.4492753623188408, "value_uncond": 0.002474009071344113}, {"x": -1.0144927536231876, "y": 1.304347826086957, "x2": -0.72463768115942, "y2": 1.5942028985507246, "center_x": -0.8695652173913038, "center_y": 1.4492753623188408, "value_uncond": 0.002921230247827166}, {"x": -0.72463768115942, "y": 1.304347826086957, "x2": -0.43478260869565233, "y2": 1.5942028985507246, "center_x": -0.5797101449275361, "center_y": 1.4492753623188408, "value_uncond": 0.0034172449045790543}, {"x": -0.43478260869565233, "y": 1.304347826086957, "x2": -0.1449275362318847, "y2": 1.5942028985507246, "center_x": -0.2898550724637685, "center_y": 1.4492753623188408, "value_uncond": 0.003960337835487279}, {"x": -0.14492753623188293, "y": 1.304347826086957, "x2": 0.1449275362318847, "y2": 1.5942028985507246, "center_x": 8.881784197001252e-16, "center_y": 1.4492753623188408, "value_uncond": 0.004547096590357931}, {"x": 0.1449275362318847, "y": 1.304347826086957, "x2": 0.43478260869565233, "y2": 1.5942028985507246, "center_x": 0.2898550724637685, "center_y": 1.4492753623188408, "value_uncond": 0.005172278949072928}, {"x": 0.43478260869565233, "y": 1.304347826086957, "x2": 0.72463768115942, "y2": 1.5942028985507246, "center_x": 0.5797101449275361, "center_y": 1.4492753623188408, "value_uncond": 0.005828751133287251}, {"x": 0.72463768115942, "y": 1.304347826086957, "x2": 1.0144927536231876, "y2": 1.5942028985507246, "center_x": 0.8695652173913038, "center_y": 1.4492753623188408, "value_uncond": 0.006507510856650965}, {"x": 1.0144927536231894, "y": 1.304347826086957, "x2": 1.304347826086957, "y2": 1.5942028985507246, "center_x": 1.1594202898550732, "center_y": 1.4492753623188408, "value_uncond": 0.007197805456502516}, {"x": 1.304347826086957, "y": 1.304347826086957, "x2": 1.5942028985507246, "y2": 1.5942028985507246, "center_x": 1.4492753623188408, "center_y": 1.4492753623188408, "value_uncond": 0.007887350159606992}, {"x": 1.5942028985507246, "y": 1.304347826086957, "x2": 1.8840579710144922, "y2": 1.5942028985507246, "center_x": 1.7391304347826084, "center_y": 1.4492753623188408, "value_uncond": 0.008562645294301409}, {"x": 1.884057971014494, "y": 1.304347826086957, "x2": 2.1739130434782616, "y2": 1.5942028985507246, "center_x": 2.028985507246378, "center_y": 1.4492753623188408, "value_uncond": 0.009209384391785931}, {"x": 2.1739130434782616, "y": 1.304347826086957, "x2": 2.4637681159420293, "y2": 1.5942028985507246, "center_x": 2.3188405797101455, "center_y": 1.4492753623188408, "value_uncond": 0.009812938150338193}, {"x": 2.4637681159420293, "y": 1.304347826086957, "x2": 2.753623188405797, "y2": 1.5942028985507246, "center_x": 2.608695652173913, "center_y": 1.4492753623188408, "value_uncond": 0.010358892763365544}, {"x": 2.753623188405797, "y": 1.304347826086957, "x2": 3.0434782608695645, "y2": 1.5942028985507246, "center_x": 2.8985507246376807, "center_y": 1.4492753623188408, "value_uncond": 0.010833615739769736}, {"x": 3.0434782608695663, "y": 1.304347826086957, "x2": 3.333333333333334, "y2": 1.5942028985507246, "center_x": 3.18840579710145, "center_y": 1.4492753623188408, "value_uncond": 0.01122481862342373}, {"x": 3.333333333333334, "y": 1.304347826086957, "x2": 3.6231884057971016, "y2": 1.5942028985507246, "center_x": 3.4782608695652177, "center_y": 1.4492753623188408, "value_uncond": 0.011522084382001354}, {"x": 3.6231884057971016, "y": 1.304347826086957, "x2": 3.913043478260869, "y2": 1.5942028985507246, "center_x": 3.7681159420289854, "center_y": 1.4492753623188408, "value_uncond": 0.011717327948878703}, {"x": 3.913043478260871, "y": 1.304347826086957, "x2": 4.202898550724639, "y2": 1.5942028985507246, "center_x": 4.057971014492755, "center_y": 1.4492753623188408, "value_uncond": 0.01180516152314124}, {"x": 4.202898550724639, "y": 1.304347826086957, "x2": 4.492753623188406, "y2": 1.5942028985507246, "center_x": 4.347826086956522, "center_y": 1.4492753623188408, "value_uncond": 0.011783141596172239}, {"x": 4.492753623188406, "y": 1.304347826086957, "x2": 4.782608695652174, "y2": 1.5942028985507246, "center_x": 4.63768115942029, "center_y": 1.4492753623188408, "value_uncond": 0.011651881897623518}, {"x": 4.782608695652174, "y": 1.304347826086957, "x2": 5.0724637681159415, "y2": 1.5942028985507246, "center_x": 4.927536231884058, "center_y": 1.4492753623188408, "value_uncond": 0.011415024974369399}, {"x": 5.072463768115943, "y": 1.304347826086957, "x2": 5.362318840579711, "y2": 1.5942028985507246, "center_x": 5.217391304347827, "center_y": 1.4492753623188408, "value_uncond": 0.01107907423934817}, {"x": 5.362318840579711, "y": 1.304347826086957, "x2": 5.6521739130434785, "y2": 1.5942028985507246, "center_x": 5.507246376811595, "center_y": 1.4492753623188408, "value_uncond": 0.010653097298326468}, {"x": 5.6521739130434785, "y": 1.304347826086957, "x2": 5.942028985507246, "y2": 1.5942028985507246, "center_x": 5.797101449275362, "center_y": 1.4492753623188408, "value_uncond": 0.010148319442265323}, {"x": 5.942028985507246, "y": 1.304347826086957, "x2": 6.231884057971014, "y2": 1.5942028985507246, "center_x": 6.08695652173913, "center_y": 1.4492753623188408, "value_uncond": 0.009577632731404702}, {"x": 6.2318840579710155, "y": 1.304347826086957, "x2": 6.521739130434783, "y2": 1.5942028985507246, "center_x": 6.376811594202899, "center_y": 1.4492753623188408, "value_uncond": 0.008955050597924173}, {"x": 6.521739130434785, "y": 1.304347826086957, "x2": 6.8115942028985526, "y2": 1.5942028985507246, "center_x": 6.666666666666669, "center_y": 1.4492753623188408, "value_uncond": 0.008295140059495587}, {"x": 6.811594202898551, "y": 1.304347826086957, "x2": 7.101449275362318, "y2": 1.5942028985507246, "center_x": 6.956521739130435, "center_y": 1.4492753623188408, "value_uncond": 0.007612463390355489}, {"x": 7.10144927536232, "y": 1.304347826086957, "x2": 7.391304347826088, "y2": 1.5942028985507246, "center_x": 7.246376811594204, "center_y": 1.4492753623188408, "value_uncond": 0.00692105858359676}, {"x": 7.391304347826086, "y": 1.304347826086957, "x2": 7.681159420289854, "y2": 1.5942028985507246, "center_x": 7.53623188405797, "center_y": 1.4492753623188408, "value_uncond": 0.00623398349645561}, {"x": 7.681159420289855, "y": 1.304347826086957, "x2": 7.971014492753623, "y2": 1.5942028985507246, "center_x": 7.826086956521739, "center_y": 1.4492753623188408, "value_uncond": 0.005562942687262318}, {"x": 7.971014492753625, "y": 1.304347826086957, "x2": 8.260869565217392, "y2": 1.5942028985507246, "center_x": 8.115942028985508, "center_y": 1.4492753623188408, "value_uncond": 0.0049180092080305235}, {"x": 8.26086956521739, "y": 1.304347826086957, "x2": 8.550724637681158, "y2": 1.5942028985507246, "center_x": 8.405797101449274, "center_y": 1.4492753623188408, "value_uncond": 0.004307446618483881}, {"x": 8.55072463768116, "y": 1.304347826086957, "x2": 8.840579710144928, "y2": 1.5942028985507246, "center_x": 8.695652173913043, "center_y": 1.4492753623188408, "value_uncond": 0.003737629811159793}, {"x": 8.84057971014493, "y": 1.304347826086957, "x2": 9.130434782608697, "y2": 1.5942028985507246, "center_x": 8.985507246376812, "center_y": 1.4492753623188408, "value_uncond": 0.0032130573737791934}, {"x": 9.130434782608695, "y": 1.304347826086957, "x2": 9.420289855072463, "y2": 1.5942028985507246, "center_x": 9.275362318840578, "center_y": 1.4492753623188408, "value_uncond": 0.002736443532008462}, {"x": 9.420289855072465, "y": 1.304347826086957, "x2": 9.710144927536232, "y2": 1.5942028985507246, "center_x": 9.565217391304348, "center_y": 1.4492753623188408, "value_uncond": 0.0023088744363809082}, {"x": 9.710144927536234, "y": 1.304347826086957, "x2": 10.000000000000002, "y2": 1.5942028985507246, "center_x": 9.855072463768117, "center_y": 1.4492753623188408, "value_uncond": 0.0019300117564770617}, {"x": 10.0, "y": 1.304347826086957, "x2": 10.289855072463768, "y2": 1.5942028985507246, "center_x": 10.144927536231883, "center_y": 1.4492753623188408, "value_uncond": 0.001598326161940756}, {"x": -10.0, "y": 1.5942028985507246, "x2": -9.710144927536232, "y2": 1.8840579710144922, "center_x": -9.855072463768117, "center_y": 1.7391304347826084, "value_uncond": 2.3930228500439113e-07}, {"x": -9.710144927536232, "y": 1.5942028985507246, "x2": -9.420289855072465, "y2": 1.8840579710144922, "center_x": -9.565217391304348, "center_y": 1.7391304347826084, "value_uncond": 3.738840259732958e-07}, {"x": -9.420289855072463, "y": 1.5942028985507246, "x2": -9.130434782608695, "y2": 1.8840579710144922, "center_x": -9.275362318840578, "center_y": 1.7391304347826084, "value_uncond": 5.787257281488953e-07}, {"x": -9.130434782608695, "y": 1.5942028985507246, "x2": -8.840579710144928, "y2": 1.8840579710144922, "center_x": -8.985507246376812, "center_y": 1.7391304347826084, "value_uncond": 8.874716408659564e-07}, {"x": -8.840579710144928, "y": 1.5942028985507246, "x2": -8.55072463768116, "y2": 1.8840579710144922, "center_x": -8.695652173913043, "center_y": 1.7391304347826084, "value_uncond": 1.3482858995648677e-06}, {"x": -8.55072463768116, "y": 1.5942028985507246, "x2": -8.260869565217392, "y2": 1.8840579710144922, "center_x": -8.405797101449277, "center_y": 1.7391304347826084, "value_uncond": 2.0293423365645064e-06}, {"x": -8.26086956521739, "y": 1.5942028985507246, "x2": -7.971014492753623, "y2": 1.8840579710144922, "center_x": -8.115942028985508, "center_y": 1.7391304347826084, "value_uncond": 3.0260385297535673e-06}, {"x": -7.971014492753623, "y": 1.5942028985507246, "x2": -7.681159420289855, "y2": 1.8840579710144922, "center_x": -7.826086956521739, "center_y": 1.7391304347826084, "value_uncond": 4.470328165080958e-06}, {"x": -7.681159420289855, "y": 1.5942028985507246, "x2": -7.391304347826088, "y2": 1.8840579710144922, "center_x": -7.536231884057972, "center_y": 1.7391304347826084, "value_uncond": 6.5425970342707065e-06}, {"x": -7.391304347826087, "y": 1.5942028985507246, "x2": -7.101449275362319, "y2": 1.8840579710144922, "center_x": -7.246376811594203, "center_y": 1.7391304347826084, "value_uncond": 9.486516222981147e-06}, {"x": -7.101449275362318, "y": 1.5942028985507246, "x2": -6.811594202898551, "y2": 1.8840579710144922, "center_x": -6.956521739130435, "center_y": 1.7391304347826084, "value_uncond": 1.362727906211575e-05}, {"x": -6.811594202898551, "y": 1.5942028985507246, "x2": -6.521739130434783, "y2": 1.8840579710144922, "center_x": -6.666666666666667, "center_y": 1.7391304347826084, "value_uncond": 1.9393552043168186e-05}, {"x": -6.521739130434782, "y": 1.5942028985507246, "x2": -6.231884057971015, "y2": 1.8840579710144922, "center_x": -6.3768115942028984, "center_y": 1.7391304347826084, "value_uncond": 2.7343328802596077e-05}, {"x": -6.231884057971014, "y": 1.5942028985507246, "x2": -5.942028985507246, "y2": 1.8840579710144922, "center_x": -6.08695652173913, "center_y": 1.7391304347826084, "value_uncond": 3.819365530706185e-05}, {"x": -5.942028985507246, "y": 1.5942028985507246, "x2": -5.6521739130434785, "y2": 1.8840579710144922, "center_x": -5.797101449275362, "center_y": 1.7391304347826084, "value_uncond": 5.285388048410381e-05}, {"x": -5.6521739130434785, "y": 1.5942028985507246, "x2": -5.362318840579711, "y2": 1.8840579710144922, "center_x": -5.507246376811595, "center_y": 1.7391304347826084, "value_uncond": 7.246167133555524e-05}, {"x": -5.36231884057971, "y": 1.5942028985507246, "x2": -5.072463768115942, "y2": 1.8840579710144922, "center_x": -5.217391304347826, "center_y": 1.7391304347826084, "value_uncond": 9.8420514256999e-05}, {"x": -5.0724637681159415, "y": 1.5942028985507246, "x2": -4.782608695652174, "y2": 1.8840579710144922, "center_x": -4.927536231884058, "center_y": 1.7391304347826084, "value_uncond": 0.00013243681493426047}, {"x": -4.782608695652174, "y": 1.5942028985507246, "x2": -4.492753623188406, "y2": 1.8840579710144922, "center_x": -4.63768115942029, "center_y": 1.7391304347826084, "value_uncond": 0.00017655403184885278}, {"x": -4.492753623188405, "y": 1.5942028985507246, "x2": -4.202898550724638, "y2": 1.8840579710144922, "center_x": -4.3478260869565215, "center_y": 1.7391304347826084, "value_uncond": 0.00023318057366654825}, {"x": -4.202898550724638, "y": 1.5942028985507246, "x2": -3.91304347826087, "y2": 1.8840579710144922, "center_x": -4.057971014492754, "center_y": 1.7391304347826084, "value_uncond": 0.00030510751704652234}, {"x": -3.913043478260869, "y": 1.5942028985507246, "x2": -3.6231884057971016, "y2": 1.8840579710144922, "center_x": -3.7681159420289854, "center_y": 1.7391304347826084, "value_uncond": 0.00039551163455088756}, {"x": -3.6231884057971016, "y": 1.5942028985507246, "x2": -3.333333333333334, "y2": 1.8840579710144922, "center_x": -3.4782608695652177, "center_y": 1.7391304347826084, "value_uncond": 0.0005079388527825471}, {"x": -3.333333333333333, "y": 1.5942028985507246, "x2": -3.0434782608695654, "y2": 1.8840579710144922, "center_x": -3.1884057971014492, "center_y": 1.7391304347826084, "value_uncond": 0.0006462631879432444}, {"x": -3.0434782608695645, "y": 1.5942028985507246, "x2": -2.753623188405797, "y2": 1.8840579710144922, "center_x": -2.8985507246376807, "center_y": 1.7391304347826084, "value_uncond": 0.0008146165291889287}, {"x": -2.753623188405797, "y": 1.5942028985507246, "x2": -2.4637681159420293, "y2": 1.8840579710144922, "center_x": -2.608695652173913, "center_y": 1.7391304347826084, "value_uncond": 0.0010172854476969823}, {"x": -2.4637681159420284, "y": 1.5942028985507246, "x2": -2.1739130434782608, "y2": 1.8840579710144922, "center_x": -2.3188405797101446, "center_y": 1.7391304347826084, "value_uncond": 0.0012585725646548536}, {"x": -2.1739130434782608, "y": 1.5942028985507246, "x2": -1.8840579710144931, "y2": 1.8840579710144922, "center_x": -2.028985507246377, "center_y": 1.7391304347826084, "value_uncond": 0.0015426219385989153}, {"x": -1.8840579710144922, "y": 1.5942028985507246, "x2": -1.5942028985507246, "y2": 1.8840579710144922, "center_x": -1.7391304347826084, "center_y": 1.7391304347826084, "value_uncond": 0.0018732104030289617}, {"x": -1.5942028985507246, "y": 1.5942028985507246, "x2": -1.304347826086957, "y2": 1.8840579710144922, "center_x": -1.4492753623188408, "center_y": 1.7391304347826084, "value_uncond": 0.0022535097068581106}, {"x": -1.304347826086957, "y": 1.5942028985507246, "x2": -1.0144927536231894, "y2": 1.8840579710144922, "center_x": -1.1594202898550732, "center_y": 1.7391304347826084, "value_uncond": 0.0026858275218073005}, {"x": -1.0144927536231876, "y": 1.5942028985507246, "x2": -0.72463768115942, "y2": 1.8840579710144922, "center_x": -0.8695652173913038, "center_y": 1.7391304347826084, "value_uncond": 0.0031713386535351415}, {"x": -0.72463768115942, "y": 1.5942028985507246, "x2": -0.43478260869565233, "y2": 1.8840579710144922, "center_x": -0.5797101449275361, "center_y": 1.7391304347826084, "value_uncond": 0.003709820840910567}, {"x": -0.43478260869565233, "y": 1.5942028985507246, "x2": -0.1449275362318847, "y2": 1.8840579710144922, "center_x": -0.2898550724637685, "center_y": 1.7391304347826084, "value_uncond": 0.004299412026176441}, {"x": -0.14492753623188293, "y": 1.5942028985507246, "x2": 0.1449275362318847, "y2": 1.8840579710144922, "center_x": 8.881784197001252e-16, "center_y": 1.7391304347826084, "value_uncond": 0.004936407593713624}, {"x": 0.1449275362318847, "y": 1.5942028985507246, "x2": 0.43478260869565233, "y2": 1.8840579710144922, "center_x": 0.2898550724637685, "center_y": 1.7391304347826084, "value_uncond": 0.005615116497667997}, {"x": 0.43478260869565233, "y": 1.5942028985507246, "x2": 0.72463768115942, "y2": 1.8840579710144922, "center_x": 0.5797101449275361, "center_y": 1.7391304347826084, "value_uncond": 0.00632779418348823}, {"x": 0.72463768115942, "y": 1.5942028985507246, "x2": 1.0144927536231876, "y2": 1.8840579710144922, "center_x": 0.8695652173913038, "center_y": 1.7391304347826084, "value_uncond": 0.007064667611649967}, {"x": 1.0144927536231894, "y": 1.5942028985507246, "x2": 1.304347826086957, "y2": 1.8840579710144922, "center_x": 1.1594202898550732, "center_y": 1.7391304347826084, "value_uncond": 0.007814063503488382}, {"x": 1.304347826086957, "y": 1.5942028985507246, "x2": 1.5942028985507246, "y2": 1.8840579710144922, "center_x": 1.4492753623188408, "center_y": 1.7391304347826084, "value_uncond": 0.008562645294301409}, {"x": 1.5942028985507246, "y": 1.5942028985507246, "x2": 1.8840579710144922, "y2": 1.8840579710144922, "center_x": 1.7391304347826084, "center_y": 1.7391304347826084, "value_uncond": 0.009295757504403146}, {"x": 1.884057971014494, "y": 1.5942028985507246, "x2": 2.1739130434782616, "y2": 1.8840579710144922, "center_x": 2.028985507246378, "center_y": 1.7391304347826084, "value_uncond": 0.009997868781023904}, {"x": 2.1739130434782616, "y": 1.5942028985507246, "x2": 2.4637681159420293, "y2": 1.8840579710144922, "center_x": 2.3188405797101455, "center_y": 1.7391304347826084, "value_uncond": 0.010653097298326468}, {"x": 2.4637681159420293, "y": 1.5942028985507246, "x2": 2.753623188405797, "y2": 1.8840579710144922, "center_x": 2.608695652173913, "center_y": 1.7391304347826084, "value_uncond": 0.011245795175755779}, {"x": 2.753623188405797, "y": 1.5942028985507246, "x2": 3.0434782608695645, "y2": 1.8840579710144922, "center_x": 2.8985507246376807, "center_y": 1.7391304347826084, "value_uncond": 0.011761162742523815}, {"x": 3.0434782608695663, "y": 1.5942028985507246, "x2": 3.333333333333334, "y2": 1.8840579710144922, "center_x": 3.18840579710145, "center_y": 1.7391304347826084, "value_uncond": 0.012185859435716389}, {"x": 3.333333333333334, "y": 1.5942028985507246, "x2": 3.6231884057971016, "y2": 1.8840579710144922, "center_x": 3.4782608695652177, "center_y": 1.7391304347826084, "value_uncond": 0.01250857634283142}, {"x": 3.6231884057971016, "y": 1.5942028985507246, "x2": 3.913043478260869, "y2": 1.8840579710144922, "center_x": 3.7681159420289854, "center_y": 1.7391304347826084, "value_uncond": 0.012720536174122625}, {"x": 3.913043478260871, "y": 1.5942028985507246, "x2": 4.202898550724639, "y2": 1.8840579710144922, "center_x": 4.057971014492755, "center_y": 1.7391304347826084, "value_uncond": 0.012815889838676837}, {"x": 4.202898550724639, "y": 1.5942028985507246, "x2": 4.492753623188406, "y2": 1.8840579710144922, "center_x": 4.347826086956522, "center_y": 1.7391304347826084, "value_uncond": 0.012791984620799281}, {"x": 4.492753623188406, "y": 1.5942028985507246, "x2": 4.782608695652174, "y2": 1.8840579710144922, "center_x": 4.63768115942029, "center_y": 1.7391304347826084, "value_uncond": 0.012649486796134982}, {"x": 4.782608695652174, "y": 1.5942028985507246, "x2": 5.0724637681159415, "y2": 1.8840579710144922, "center_x": 4.927536231884058, "center_y": 1.7391304347826084, "value_uncond": 0.012392350777284051}, {"x": 5.072463768115943, "y": 1.5942028985507246, "x2": 5.362318840579711, "y2": 1.8840579710144922, "center_x": 5.217391304347827, "center_y": 1.7391304347826084, "value_uncond": 0.012027636783086286}, {"x": 5.362318840579711, "y": 1.5942028985507246, "x2": 5.6521739130434785, "y2": 1.8840579710144922, "center_x": 5.507246376811595, "center_y": 1.7391304347826084, "value_uncond": 0.011565188764967345}, {"x": 5.6521739130434785, "y": 1.5942028985507246, "x2": 5.942028985507246, "y2": 1.8840579710144922, "center_x": 5.797101449275362, "center_y": 1.7391304347826084, "value_uncond": 0.011017193095140902}, {"x": 5.942028985507246, "y": 1.5942028985507246, "x2": 6.231884057971014, "y2": 1.8840579710144922, "center_x": 6.08695652173913, "center_y": 1.7391304347826084, "value_uncond": 0.010397645619704042}, {"x": 6.2318840579710155, "y": 1.5942028985507246, "x2": 6.521739130434783, "y2": 1.8840579710144922, "center_x": 6.376811594202899, "center_y": 1.7391304347826084, "value_uncond": 0.00972175956574586}, {"x": 6.521739130434785, "y": 1.5942028985507246, "x2": 6.8115942028985526, "y2": 1.8840579710144922, "center_x": 6.666666666666669, "center_y": 1.7391304347826084, "value_uncond": 0.009005349142448897}, {"x": 6.811594202898551, "y": 1.5942028985507246, "x2": 7.101449275362318, "y2": 1.8840579710144922, "center_x": 6.956521739130435, "center_y": 1.7391304347826084, "value_uncond": 0.008264223409439334}, {"x": 7.10144927536232, "y": 1.5942028985507246, "x2": 7.391304347826088, "y2": 1.8840579710144922, "center_x": 7.246376811594204, "center_y": 1.7391304347826084, "value_uncond": 0.0075136222575633805}, {"x": 7.391304347826086, "y": 1.5942028985507246, "x2": 7.681159420289854, "y2": 1.8840579710144922, "center_x": 7.53623188405797, "center_y": 1.7391304347826084, "value_uncond": 0.006767721525037255}, {"x": 7.681159420289855, "y": 1.5942028985507246, "x2": 7.971014492753623, "y2": 1.8840579710144922, "center_x": 7.826086956521739, "center_y": 1.7391304347826084, "value_uncond": 0.006039227885113773}, {"x": 7.971014492753625, "y": 1.5942028985507246, "x2": 8.260869565217392, "y2": 1.8840579710144922, "center_x": 8.115942028985508, "center_y": 1.7391304347826084, "value_uncond": 0.005339076819251023}, {"x": 8.26086956521739, "y": 1.5942028985507246, "x2": 8.550724637681158, "y2": 1.8840579710144922, "center_x": 8.405797101449274, "center_y": 1.7391304347826084, "value_uncond": 0.004676239392426481}, {"x": 8.55072463768116, "y": 1.5942028985507246, "x2": 8.840579710144928, "y2": 1.8840579710144922, "center_x": 8.695652173913043, "center_y": 1.7391304347826084, "value_uncond": 0.004057636299484736}, {"x": 8.84057971014493, "y": 1.5942028985507246, "x2": 9.130434782608697, "y2": 1.8840579710144922, "center_x": 8.985507246376812, "center_y": 1.7391304347826084, "value_uncond": 0.0034881512859423654}, {"x": 9.130434782608695, "y": 1.5942028985507246, "x2": 9.420289855072463, "y2": 1.8840579710144922, "center_x": 9.275362318840578, "center_y": 1.7391304347826084, "value_uncond": 0.002970730962658479}, {"x": 9.420289855072465, "y": 1.5942028985507246, "x2": 9.710144927536232, "y2": 1.8840579710144922, "center_x": 9.565217391304348, "center_y": 1.7391304347826084, "value_uncond": 0.002506554473650362}, {"x": 9.710144927536234, "y": 1.5942028985507246, "x2": 10.000000000000002, "y2": 1.8840579710144922, "center_x": 9.855072463768117, "center_y": 1.7391304347826084, "value_uncond": 0.002095254521496756}, {"x": 10.0, "y": 1.5942028985507246, "x2": 10.289855072463768, "y2": 1.8840579710144922, "center_x": 10.144927536231883, "center_y": 1.7391304347826084, "value_uncond": 0.0017351708384128314}, {"x": -10.0, "y": 1.884057971014494, "x2": -9.710144927536232, "y2": 2.1739130434782616, "center_x": -9.855072463768117, "center_y": 2.028985507246378, "value_uncond": 2.573768564143178e-07}, {"x": -9.710144927536232, "y": 1.884057971014494, "x2": -9.420289855072465, "y2": 2.1739130434782616, "center_x": -9.565217391304348, "center_y": 2.028985507246378, "value_uncond": 4.021235955468218e-07}, {"x": -9.420289855072463, "y": 1.884057971014494, "x2": -9.130434782608695, "y2": 2.1739130434782616, "center_x": -9.275362318840578, "center_y": 2.028985507246378, "value_uncond": 6.224370512563913e-07}, {"x": -9.130434782608695, "y": 1.884057971014494, "x2": -8.840579710144928, "y2": 2.1739130434782616, "center_x": -8.985507246376812, "center_y": 2.028985507246378, "value_uncond": 9.54502632846757e-07}, {"x": -8.840579710144928, "y": 1.884057971014494, "x2": -8.55072463768116, "y2": 2.1739130434782616, "center_x": -8.695652173913043, "center_y": 2.028985507246378, "value_uncond": 1.4501223269614357e-06}, {"x": -8.55072463768116, "y": 1.884057971014494, "x2": -8.260869565217392, "y2": 2.1739130434782616, "center_x": -8.405797101449277, "center_y": 2.028985507246378, "value_uncond": 2.1826191553660887e-06}, {"x": -8.26086956521739, "y": 1.884057971014494, "x2": -7.971014492753623, "y2": 2.1739130434782616, "center_x": -8.115942028985508, "center_y": 2.028985507246378, "value_uncond": 3.2545961028424198e-06}, {"x": -7.971014492753623, "y": 1.884057971014494, "x2": -7.681159420289855, "y2": 2.1739130434782616, "center_x": -7.826086956521739, "center_y": 2.028985507246378, "value_uncond": 4.807973355740461e-06}, {"x": -7.681159420289855, "y": 1.884057971014494, "x2": -7.391304347826088, "y2": 2.1739130434782616, "center_x": -7.536231884057972, "center_y": 2.028985507246378, "value_uncond": 7.036761297266066e-06}, {"x": -7.391304347826087, "y": 1.884057971014494, "x2": -7.101449275362319, "y2": 2.1739130434782616, "center_x": -7.246376811594203, "center_y": 2.028985507246378, "value_uncond": 1.0203035561275618e-05}, {"x": -7.101449275362318, "y": 1.884057971014494, "x2": -6.811594202898551, "y2": 2.1739130434782616, "center_x": -6.956521739130435, "center_y": 2.028985507246378, "value_uncond": 1.465655142584053e-05}, {"x": -6.811594202898551, "y": 1.884057971014494, "x2": -6.521739130434783, "y2": 2.1739130434782616, "center_x": -6.666666666666667, "center_y": 2.028985507246378, "value_uncond": 2.0858352687633163e-05}, {"x": -6.521739130434782, "y": 1.884057971014494, "x2": -6.231884057971015, "y2": 2.1739130434782616, "center_x": -6.3768115942028984, "center_y": 2.028985507246378, "value_uncond": 2.9408578405283986e-05}, {"x": -6.231884057971014, "y": 1.884057971014494, "x2": -5.942028985507246, "y2": 2.1739130434782616, "center_x": -6.08695652173913, "center_y": 2.028985507246378, "value_uncond": 4.107843323653689e-05}, {"x": -5.942028985507246, "y": 1.884057971014494, "x2": -5.6521739130434785, "y2": 2.1739130434782616, "center_x": -5.797101449275362, "center_y": 2.028985507246378, "value_uncond": 5.684594949875671e-05}, {"x": -5.6521739130434785, "y": 1.884057971014494, "x2": -5.362318840579711, "y2": 2.1739130434782616, "center_x": -5.507246376811595, "center_y": 2.028985507246378, "value_uncond": 7.793472251437328e-05}, {"x": -5.36231884057971, "y": 1.884057971014494, "x2": -5.072463768115942, "y2": 2.1739130434782616, "center_x": -5.217391304347826, "center_y": 2.028985507246378, "value_uncond": 0.00010585424441593667}, {"x": -5.0724637681159415, "y": 1.884057971014494, "x2": -4.782608695652174, "y2": 2.1739130434782616, "center_x": -4.927536231884058, "center_y": 2.028985507246378, "value_uncond": 0.00014243980620861715}, {"x": -4.782608695652174, "y": 1.884057971014494, "x2": -4.492753623188406, "y2": 2.1739130434782616, "center_x": -4.63768115942029, "center_y": 2.028985507246378, "value_uncond": 0.00018988920938927623}, {"x": -4.492753623188405, "y": 1.884057971014494, "x2": -4.202898550724638, "y2": 2.1739130434782616, "center_x": -4.3478260869565215, "center_y": 2.028985507246378, "value_uncond": 0.0002507927704329367}, {"x": -4.202898550724638, "y": 1.884057971014494, "x2": -3.91304347826087, "y2": 2.1739130434782616, "center_x": -4.057971014492754, "center_y": 2.028985507246378, "value_uncond": 0.000328152376833221}, {"x": -3.913043478260869, "y": 1.884057971014494, "x2": -3.6231884057971016, "y2": 2.1739130434782616, "center_x": -3.7681159420289854, "center_y": 2.028985507246378, "value_uncond": 0.00042538474371077597}, {"x": -3.6231884057971016, "y": 1.884057971014494, "x2": -3.333333333333334, "y2": 2.1739130434782616, "center_x": -3.4782608695652177, "center_y": 2.028985507246378, "value_uncond": 0.000546303622539451}, {"x": -3.333333333333333, "y": 1.884057971014494, "x2": -3.0434782608695654, "y2": 2.1739130434782616, "center_x": -3.1884057971014492, "center_y": 2.028985507246378, "value_uncond": 0.0006950756350950666}, {"x": -3.0434782608695645, "y": 1.884057971014494, "x2": -2.753623188405797, "y2": 2.1739130434782616, "center_x": -2.8985507246376807, "center_y": 2.028985507246378, "value_uncond": 0.0008761447533271222}, {"x": -2.753623188405797, "y": 1.884057971014494, "x2": -2.4637681159420293, "y2": 2.1739130434782616, "center_x": -2.608695652173913, "center_y": 2.028985507246378, "value_uncond": 0.0010941213143847621}, {"x": -2.4637681159420284, "y": 1.884057971014494, "x2": -2.1739130434782608, "y2": 2.1739130434782616, "center_x": -2.3188405797101446, "center_y": 2.028985507246378, "value_uncond": 0.0013536329176891404}, {"x": -2.1739130434782608, "y": 1.884057971014494, "x2": -1.8840579710144931, "y2": 2.1739130434782616, "center_x": -2.028985507246377, "center_y": 2.028985507246378, "value_uncond": 0.0016591366237270336}, {"x": -1.8840579710144922, "y": 1.884057971014494, "x2": -1.5942028985507246, "y2": 2.1739130434782616, "center_x": -1.7391304347826084, "center_y": 2.028985507246378, "value_uncond": 0.002014694531334479}, {"x": -1.5942028985507246, "y": 1.884057971014494, "x2": -1.304347826086957, "y2": 2.1739130434782616, "center_x": -1.4492753623188408, "center_y": 2.028985507246378, "value_uncond": 0.0024237179525454533}, {"x": -1.304347826086957, "y": 1.884057971014494, "x2": -1.0144927536231894, "y2": 2.1739130434782616, "center_x": -1.1594202898550732, "center_y": 2.028985507246378, "value_uncond": 0.0028886888581993115}, {"x": -1.0144927536231876, "y": 1.884057971014494, "x2": -0.72463768115942, "y2": 2.1739130434782616, "center_x": -0.8695652173913038, "center_y": 2.028985507246378, "value_uncond": 0.00341087078736884}, {"x": -0.72463768115942, "y": 1.884057971014494, "x2": -0.43478260869565233, "y2": 2.1739130434782616, "center_x": -0.5797101449275361, "center_y": 2.028985507246378, "value_uncond": 0.003990024691474894}, {"x": -0.43478260869565233, "y": 1.884057971014494, "x2": -0.1449275362318847, "y2": 2.1739130434782616, "center_x": -0.2898550724637685, "center_y": 2.028985507246378, "value_uncond": 0.004624147870994629}, {"x": -0.14492753623188293, "y": 1.884057971014494, "x2": 0.1449275362318847, "y2": 2.1739130434782616, "center_x": 8.881784197001252e-16, "center_y": 2.028985507246378, "value_uncond": 0.005309255899610263}, {"x": 0.1449275362318847, "y": 1.884057971014494, "x2": 0.43478260869565233, "y2": 2.1739130434782616, "center_x": 0.2898550724637685, "center_y": 2.028985507246378, "value_uncond": 0.006039227885113778}, {"x": 0.43478260869565233, "y": 1.884057971014494, "x2": 0.72463768115942, "y2": 2.1739130434782616, "center_x": 0.5797101449275361, "center_y": 2.028985507246378, "value_uncond": 0.006805734324488883}, {"x": 0.72463768115942, "y": 1.884057971014494, "x2": 1.0144927536231876, "y2": 2.1739130434782616, "center_x": 0.8695652173913038, "center_y": 2.028985507246378, "value_uncond": 0.007598264017684372}, {"x": 1.0144927536231894, "y": 1.884057971014494, "x2": 1.304347826086957, "y2": 2.1739130434782616, "center_x": 1.1594202898550732, "center_y": 2.028985507246378, "value_uncond": 0.00840426199989184}, {"x": 1.304347826086957, "y": 1.884057971014494, "x2": 1.5942028985507246, "y2": 2.1739130434782616, "center_x": 1.4492753623188408, "center_y": 2.028985507246378, "value_uncond": 0.009209384391785931}, {"x": 1.5942028985507246, "y": 1.884057971014494, "x2": 1.8840579710144922, "y2": 2.1739130434782616, "center_x": 1.7391304347826084, "center_y": 2.028985507246378, "value_uncond": 0.009997868781023904}, {"x": 1.884057971014494, "y": 1.884057971014494, "x2": 2.1739130434782616, "y2": 2.1739130434782616, "center_x": 2.028985507246378, "center_y": 2.028985507246378, "value_uncond": 0.010753010727229631}, {"x": 2.1739130434782616, "y": 1.884057971014494, "x2": 2.4637681159420293, "y2": 2.1739130434782616, "center_x": 2.3188405797101455, "center_y": 2.028985507246378, "value_uncond": 0.01145772884562643}, {"x": 2.4637681159420293, "y": 1.884057971014494, "x2": 2.753623188405797, "y2": 2.1739130434782616, "center_x": 2.608695652173913, "center_y": 2.028985507246378, "value_uncond": 0.012095193366675175}, {"x": 2.753623188405797, "y": 1.884057971014494, "x2": 3.0434782608695645, "y2": 2.1739130434782616, "center_x": 2.8985507246376807, "center_y": 2.028985507246378, "value_uncond": 0.012649486796134986}, {"x": 3.0434782608695663, "y": 1.884057971014494, "x2": 3.333333333333334, "y2": 2.1739130434782616, "center_x": 3.18840579710145, "center_y": 2.028985507246378, "value_uncond": 0.013106260954482262}, {"x": 3.333333333333334, "y": 1.884057971014494, "x2": 3.6231884057971016, "y2": 2.1739130434782616, "center_x": 3.4782608695652177, "center_y": 2.028985507246378, "value_uncond": 0.013453352763753928}, {"x": 3.6231884057971016, "y": 1.884057971014494, "x2": 3.913043478260869, "y2": 2.1739130434782616, "center_x": 3.7681159420289854, "center_y": 2.028985507246378, "value_uncond": 0.013681321982948132}, {"x": 3.913043478260871, "y": 1.884057971014494, "x2": 4.202898550724639, "y2": 2.1739130434782616, "center_x": 4.057971014492755, "center_y": 2.028985507246378, "value_uncond": 0.013783877737608386}, {"x": 4.202898550724639, "y": 1.884057971014494, "x2": 4.492753623188406, "y2": 2.1739130434782616, "center_x": 4.347826086956522, "center_y": 2.028985507246378, "value_uncond": 0.013758166951649482}, {"x": 4.492753623188406, "y": 1.884057971014494, "x2": 4.782608695652174, "y2": 2.1739130434782616, "center_x": 4.63768115942029, "center_y": 2.028985507246378, "value_uncond": 0.013604906224710316}, {"x": 4.782608695652174, "y": 1.884057971014494, "x2": 5.0724637681159415, "y2": 2.1739130434782616, "center_x": 4.927536231884058, "center_y": 2.028985507246378, "value_uncond": 0.013328348647328505}, {"x": 5.072463768115943, "y": 1.884057971014494, "x2": 5.362318840579711, "y2": 2.1739130434782616, "center_x": 5.217391304347827, "center_y": 2.028985507246378, "value_uncond": 0.012936087698732852}, {"x": 5.362318840579711, "y": 1.884057971014494, "x2": 5.6521739130434785, "y2": 2.1739130434782616, "center_x": 5.507246376811595, "center_y": 2.028985507246378, "value_uncond": 0.01243871084687245}, {"x": 5.6521739130434785, "y": 1.884057971014494, "x2": 5.942028985507246, "y2": 2.1739130434782616, "center_x": 5.797101449275362, "center_y": 2.028985507246378, "value_uncond": 0.011849324904210014}, {"x": 5.942028985507246, "y": 1.884057971014494, "x2": 6.231884057971014, "y2": 2.1739130434782616, "center_x": 6.08695652173913, "center_y": 2.028985507246378, "value_uncond": 0.011182982827182043}, {"x": 6.2318840579710155, "y": 1.884057971014494, "x2": 6.521739130434783, "y2": 2.1739130434782616, "center_x": 6.376811594202899, "center_y": 2.028985507246378, "value_uncond": 0.010456046902358579}, {"x": 6.521739130434785, "y": 1.884057971014494, "x2": 6.8115942028985526, "y2": 2.1739130434782616, "center_x": 6.666666666666669, "center_y": 2.028985507246378, "value_uncond": 0.009685525790755987}, {"x": 6.811594202898551, "y": 1.884057971014494, "x2": 7.101449275362318, "y2": 2.1739130434782616, "center_x": 6.956521739130435, "center_y": 2.028985507246378, "value_uncond": 0.00888842261488678}, {"x": 7.10144927536232, "y": 1.884057971014494, "x2": 7.391304347826088, "y2": 2.1739130434782616, "center_x": 7.246376811594204, "center_y": 2.028985507246378, "value_uncond": 0.008081128338999469}, {"x": 7.391304347826086, "y": 1.884057971014494, "x2": 7.681159420289854, "y2": 2.1739130434782616, "center_x": 7.53623188405797, "center_y": 2.028985507246378, "value_uncond": 0.007278889506506966}, {"x": 7.681159420289855, "y": 1.884057971014494, "x2": 7.971014492753623, "y2": 2.1739130434782616, "center_x": 7.826086956521739, "center_y": 2.028985507246378, "value_uncond": 0.006495372529400421}, {"x": 7.971014492753625, "y": 1.884057971014494, "x2": 8.260869565217392, "y2": 2.1739130434782616, "center_x": 8.115942028985508, "center_y": 2.028985507246378, "value_uncond": 0.0057423388492432005}, {"x": 8.26086956521739, "y": 1.884057971014494, "x2": 8.550724637681158, "y2": 2.1739130434782616, "center_x": 8.405797101449274, "center_y": 2.028985507246378, "value_uncond": 0.005029437118168106}, {"x": 8.55072463768116, "y": 1.884057971014494, "x2": 8.840579710144928, "y2": 2.1739130434782616, "center_x": 8.695652173913043, "center_y": 2.028985507246378, "value_uncond": 0.004364110753120656}, {"x": 8.84057971014493, "y": 1.884057971014494, "x2": 9.130434782608697, "y2": 2.1739130434782616, "center_x": 8.985507246376812, "center_y": 2.028985507246378, "value_uncond": 0.003751612370341272}, {"x": 9.130434782608695, "y": 1.884057971014494, "x2": 9.420289855072463, "y2": 2.1739130434782616, "center_x": 9.275362318840578, "center_y": 2.028985507246378, "value_uncond": 0.0031951111390670145}, {"x": 9.420289855072465, "y": 1.884057971014494, "x2": 9.710144927536232, "y2": 2.1739130434782616, "center_x": 9.565217391304348, "center_y": 2.028985507246378, "value_uncond": 0.002695875264406846}, {"x": 9.710144927536234, "y": 1.884057971014494, "x2": 10.000000000000002, "y2": 2.1739130434782616, "center_x": 9.855072463768117, "center_y": 2.028985507246378, "value_uncond": 0.0022535097068581075}, {"x": 10.0, "y": 1.884057971014494, "x2": 10.289855072463768, "y2": 2.1739130434782616, "center_x": 10.144927536231883, "center_y": 2.028985507246378, "value_uncond": 0.001866228798125752}, {"x": -10.0, "y": 2.1739130434782616, "x2": -9.710144927536232, "y2": 2.4637681159420293, "center_x": -9.855072463768117, "center_y": 2.3188405797101455, "value_uncond": 2.742445168837601e-07}, {"x": -9.710144927536232, "y": 2.1739130434782616, "x2": -9.420289855072465, "y2": 2.4637681159420293, "center_x": -9.565217391304348, "center_y": 2.3188405797101455, "value_uncond": 4.284774968685328e-07}, {"x": -9.420289855072463, "y": 2.1739130434782616, "x2": -9.130434782608695, "y2": 2.4637681159420293, "center_x": -9.275362318840578, "center_y": 2.3188405797101455, "value_uncond": 6.632295956617537e-07}, {"x": -9.130434782608695, "y": 2.1739130434782616, "x2": -8.840579710144928, "y2": 2.4637681159420293, "center_x": -8.985507246376812, "center_y": 2.3188405797101455, "value_uncond": 1.0170576991893582e-06}, {"x": -8.840579710144928, "y": 2.1739130434782616, "x2": -8.55072463768116, "y2": 2.4637681159420293, "center_x": -8.695652173913043, "center_y": 2.3188405797101455, "value_uncond": 1.5451587315205457e-06}, {"x": -8.55072463768116, "y": 2.1739130434782616, "x2": -8.260869565217392, "y2": 2.4637681159420293, "center_x": -8.405797101449277, "center_y": 2.3188405797101455, "value_uncond": 2.325661072031476e-06}, {"x": -8.26086956521739, "y": 2.1739130434782616, "x2": -7.971014492753623, "y2": 2.4637681159420293, "center_x": -8.115942028985508, "center_y": 2.3188405797101455, "value_uncond": 3.4678919787526597e-06}, {"x": -7.971014492753623, "y": 2.1739130434782616, "x2": -7.681159420289855, "y2": 2.4637681159420293, "center_x": -7.826086956521739, "center_y": 2.3188405797101455, "value_uncond": 5.123072635608127e-06}, {"x": -7.681159420289855, "y": 2.1739130434782616, "x2": -7.391304347826088, "y2": 2.4637681159420293, "center_x": -7.536231884057972, "center_y": 2.3188405797101455, "value_uncond": 7.497928249183951e-06}, {"x": -7.391304347826087, "y": 2.1739130434782616, "x2": -7.101449275362319, "y2": 2.4637681159420293, "center_x": -7.246376811594203, "center_y": 2.3188405797101455, "value_uncond": 1.0871710056732976e-05}, {"x": -7.101449275362318, "y": 2.1739130434782616, "x2": -6.811594202898551, "y2": 2.4637681159420293, "center_x": -6.956521739130435, "center_y": 2.3188405797101455, "value_uncond": 1.5617095184701392e-05}, {"x": -6.811594202898551, "y": 2.1739130434782616, "x2": -6.521739130434783, "y2": 2.4637681159420293, "center_x": -6.666666666666667, "center_y": 2.3188405797101455, "value_uncond": 2.2225342773643506e-05}, {"x": -6.521739130434782, "y": 2.1739130434782616, "x2": -6.231884057971015, "y2": 2.4637681159420293, "center_x": -6.3768115942028984, "center_y": 2.3188405797101455, "value_uncond": 3.133592308708699e-05}, {"x": -6.231884057971014, "y": 2.1739130434782616, "x2": -5.942028985507246, "y2": 2.4637681159420293, "center_x": -6.08695652173913, "center_y": 2.3188405797101455, "value_uncond": 4.377058308288967e-05}, {"x": -5.942028985507246, "y": 2.1739130434782616, "x2": -5.6521739130434785, "y2": 2.4637681159420293, "center_x": -5.797101449275362, "center_y": 2.3188405797101455, "value_uncond": 6.057145220543583e-05}, {"x": -5.6521739130434785, "y": 2.1739130434782616, "x2": -5.362318840579711, "y2": 2.4637681159420293, "center_x": -5.507246376811595, "center_y": 2.3188405797101455, "value_uncond": 8.304231632240589e-05}, {"x": -5.36231884057971, "y": 2.1739130434782616, "x2": -5.072463768115942, "y2": 2.4637681159420293, "center_x": -5.217391304347826, "center_y": 2.3188405797101455, "value_uncond": 0.0001127915948791156}, {"x": -5.0724637681159415, "y": 2.1739130434782616, "x2": -4.782608695652174, "y2": 2.4637681159420293, "center_x": -4.927536231884058, "center_y": 2.3188405797101455, "value_uncond": 0.00015177485801526626}, {"x": -4.782608695652174, "y": 2.1739130434782616, "x2": -4.492753623188406, "y2": 2.4637681159420293, "center_x": -4.63768115942029, "center_y": 2.3188405797101455, "value_uncond": 0.0002023339441467523}, {"x": -4.492753623188405, "y": 2.1739130434782616, "x2": -4.202898550724638, "y2": 2.4637681159420293, "center_x": -4.3478260869565215, "center_y": 2.3188405797101455, "value_uncond": 0.0002672289308507321}, {"x": -4.202898550724638, "y": 2.1739130434782616, "x2": -3.91304347826087, "y2": 2.4637681159420293, "center_x": -4.057971014492754, "center_y": 2.3188405797101455, "value_uncond": 0.00034965843977834024}, {"x": -3.913043478260869, "y": 2.1739130434782616, "x2": -3.6231884057971016, "y2": 2.4637681159420293, "center_x": -3.7681159420289854, "center_y": 2.3188405797101455, "value_uncond": 0.00045326310669087074}, {"x": -3.6231884057971016, "y": 2.1739130434782616, "x2": -3.333333333333334, "y2": 2.4637681159420293, "center_x": -3.4782608695652177, "center_y": 2.3188405797101455, "value_uncond": 0.0005821066242024599}, {"x": -3.333333333333333, "y": 2.1739130434782616, "x2": -3.0434782608695654, "y2": 2.4637681159420293, "center_x": -3.1884057971014492, "center_y": 2.3188405797101455, "value_uncond": 0.0007406286812263477}, {"x": -3.0434782608695645, "y": 2.1739130434782616, "x2": -2.753623188405797, "y2": 2.4637681159420293, "center_x": -2.8985507246376807, "center_y": 2.3188405797101455, "value_uncond": 0.0009335644934976026}, {"x": -2.753623188405797, "y": 2.1739130434782616, "x2": -2.4637681159420293, "y2": 2.4637681159420293, "center_x": -2.608695652173913, "center_y": 2.3188405797101455, "value_uncond": 0.0011658265449969248}, {"x": -2.4637681159420284, "y": 2.1739130434782616, "x2": -2.1739130434782608, "y2": 2.4637681159420293, "center_x": -2.3188405797101446, "center_y": 2.3188405797101455, "value_uncond": 0.0014423457132914212}, {"x": -2.1739130434782608, "y": 2.1739130434782616, "x2": -1.8840579710144931, "y2": 2.4637681159420293, "center_x": -2.028985507246377, "center_y": 2.3188405797101455, "value_uncond": 0.0017678711604345368}, {"x": -1.8840579710144922, "y": 2.1739130434782616, "x2": -1.5942028985507246, "y2": 2.4637681159420293, "center_x": -1.7391304347826084, "center_y": 2.3188405797101455, "value_uncond": 0.002146731202298736}, {"x": -1.5942028985507246, "y": 2.1739130434782616, "x2": -1.304347826086957, "y2": 2.4637681159420293, "center_x": -1.4492753623188408, "center_y": 2.3188405797101455, "value_uncond": 0.0025825607174575303}, {"x": -1.304347826086957, "y": 2.1739130434782616, "x2": -1.0144927536231894, "y2": 2.4637681159420293, "center_x": -1.1594202898550732, "center_y": 2.3188405797101455, "value_uncond": 0.0030780043372240864}, {"x": -1.0144927536231876, "y": 2.1739130434782616, "x2": -0.72463768115942, "y2": 2.4637681159420293, "center_x": -0.8695652173913038, "center_y": 2.3188405797101455, "value_uncond": 0.0036344084090027826}, {"x": -0.72463768115942, "y": 2.1739130434782616, "x2": -0.43478260869565233, "y2": 2.4637681159420293, "center_x": -0.5797101449275361, "center_y": 2.3188405797101455, "value_uncond": 0.004251518217730996}, {"x": -0.43478260869565233, "y": 2.1739130434782616, "x2": -0.1449275362318847, "y2": 2.4637681159420293, "center_x": -0.2898550724637685, "center_y": 2.3188405797101455, "value_uncond": 0.004927199813329617}, {"x": -0.14492753623188293, "y": 2.1739130434782616, "x2": 0.1449275362318847, "y2": 2.4637681159420293, "center_x": 8.881784197001252e-16, "center_y": 2.3188405797101455, "value_uncond": 0.005657207642854213}, {"x": 0.1449275362318847, "y": 2.1739130434782616, "x2": 0.43478260869565233, "y2": 2.4637681159420293, "center_x": 0.2898550724637685, "center_y": 2.3188405797101455, "value_uncond": 0.006435019670291636}, {"x": 0.43478260869565233, "y": 2.1739130434782616, "x2": 0.72463768115942, "y2": 2.4637681159420293, "center_x": 0.5797101449275361, "center_y": 2.3188405797101455, "value_uncond": 0.007251760503493538}, {"x": 0.72463768115942, "y": 2.1739130434782616, "x2": 1.0144927536231876, "y2": 2.4637681159420293, "center_x": 0.8695652173913038, "center_y": 2.3188405797101455, "value_uncond": 0.008096230071792845}, {"x": 1.0144927536231894, "y": 2.1739130434782616, "x2": 1.304347826086957, "y2": 2.4637681159420293, "center_x": 1.1594202898550732, "center_y": 2.3188405797101455, "value_uncond": 0.008955050597924176}, {"x": 1.304347826086957, "y": 2.1739130434782616, "x2": 1.5942028985507246, "y2": 2.4637681159420293, "center_x": 1.4492753623188408, "center_y": 2.3188405797101455, "value_uncond": 0.009812938150338193}, {"x": 1.5942028985507246, "y": 2.1739130434782616, "x2": 1.8840579710144922, "y2": 2.4637681159420293, "center_x": 1.7391304347826084, "center_y": 2.3188405797101455, "value_uncond": 0.010653097298326468}, {"x": 1.884057971014494, "y": 2.1739130434782616, "x2": 2.1739130434782616, "y2": 2.4637681159420293, "center_x": 2.028985507246378, "center_y": 2.3188405797101455, "value_uncond": 0.01145772884562643}, {"x": 2.1739130434782616, "y": 2.1739130434782616, "x2": 2.4637681159420293, "y2": 2.4637681159420293, "center_x": 2.3188405797101455, "center_y": 2.3188405797101455, "value_uncond": 0.012208631947837958}, {"x": 2.4637681159420293, "y": 2.1739130434782616, "x2": 2.753623188405797, "y2": 2.4637681159420293, "center_x": 2.608695652173913, "center_y": 2.3188405797101455, "value_uncond": 0.012887873865860803}, {"x": 2.753623188405797, "y": 2.1739130434782616, "x2": 3.0434782608695645, "y2": 2.4637681159420293, "center_x": 2.8985507246376807, "center_y": 2.3188405797101455, "value_uncond": 0.013478493923514094}, {"x": 3.0434782608695663, "y": 2.1739130434782616, "x2": 3.333333333333334, "y2": 2.4637681159420293, "center_x": 3.18840579710145, "center_y": 2.3188405797101455, "value_uncond": 0.013965203607228947}, {"x": 3.333333333333334, "y": 2.1739130434782616, "x2": 3.6231884057971016, "y2": 2.4637681159420293, "center_x": 3.4782608695652177, "center_y": 2.3188405797101455, "value_uncond": 0.014335042709602577}, {"x": 3.6231884057971016, "y": 2.1739130434782616, "x2": 3.913043478260869, "y2": 2.4637681159420293, "center_x": 3.7681159420289854, "center_y": 2.3188405797101455, "value_uncond": 0.014577952306266703}, {"x": 3.913043478260871, "y": 2.1739130434782616, "x2": 4.202898550724639, "y2": 2.4637681159420293, "center_x": 4.057971014492755, "center_y": 2.3188405797101455, "value_uncond": 0.01468722923886384}, {"x": 4.202898550724639, "y": 2.1739130434782616, "x2": 4.492753623188406, "y2": 2.4637681159420293, "center_x": 4.347826086956522, "center_y": 2.3188405797101455, "value_uncond": 0.014659833449777619}, {"x": 4.492753623188406, "y": 2.1739130434782616, "x2": 4.782608695652174, "y2": 2.4637681159420293, "center_x": 4.63768115942029, "center_y": 2.3188405797101455, "value_uncond": 0.014496528502307806}, {"x": 4.782608695652174, "y": 2.1739130434782616, "x2": 5.0724637681159415, "y2": 2.4637681159420293, "center_x": 4.927536231884058, "center_y": 2.3188405797101455, "value_uncond": 0.014201846221017042}, {"x": 5.072463768115943, "y": 2.1739130434782616, "x2": 5.362318840579711, "y2": 2.4637681159420293, "center_x": 5.217391304347827, "center_y": 2.3188405797101455, "value_uncond": 0.013783877737608382}, {"x": 5.362318840579711, "y": 2.1739130434782616, "x2": 5.6521739130434785, "y2": 2.4637681159420293, "center_x": 5.507246376811595, "center_y": 2.3188405797101455, "value_uncond": 0.013253904389002227}, {"x": 5.6521739130434785, "y": 2.1739130434782616, "x2": 5.942028985507246, "y2": 2.4637681159420293, "center_x": 5.797101449275362, "center_y": 2.3188405797101455, "value_uncond": 0.012625891966458132}, {"x": 5.942028985507246, "y": 2.1739130434782616, "x2": 6.231884057971014, "y2": 2.4637681159420293, "center_x": 6.08695652173913, "center_y": 2.3188405797101455, "value_uncond": 0.011915879949294914}, {"x": 6.2318840579710155, "y": 2.1739130434782616, "x2": 6.521739130434783, "y2": 2.4637681159420293, "center_x": 6.376811594202899, "center_y": 2.3188405797101455, "value_uncond": 0.011141302956296993}, {"x": 6.521739130434785, "y": 2.1739130434782616, "x2": 6.8115942028985526, "y2": 2.4637681159420293, "center_x": 6.666666666666669, "center_y": 2.3188405797101455, "value_uncond": 0.01032028434202024}, {"x": 6.811594202898551, "y": 2.1739130434782616, "x2": 7.101449275362318, "y2": 2.4637681159420293, "center_x": 6.956521739130435, "center_y": 2.3188405797101455, "value_uncond": 0.009470941559540745}, {"x": 7.10144927536232, "y": 2.1739130434782616, "x2": 7.391304347826088, "y2": 2.4637681159420293, "center_x": 7.246376811594204, "center_y": 2.3188405797101455, "value_uncond": 0.008610739784765224}, {"x": 7.391304347826086, "y": 2.1739130434782616, "x2": 7.681159420289854, "y2": 2.4637681159420293, "center_x": 7.53623188405797, "center_y": 2.3188405797101455, "value_uncond": 0.007755924771063552}, {"x": 7.681159420289855, "y": 2.1739130434782616, "x2": 7.971014492753623, "y2": 2.4637681159420293, "center_x": 7.826086956521739, "center_y": 2.3188405797101455, "value_uncond": 0.006921058583596764}, {"x": 7.971014492753625, "y": 2.1739130434782616, "x2": 8.260869565217392, "y2": 2.4637681159420293, "center_x": 8.115942028985508, "center_y": 2.3188405797101455, "value_uncond": 0.006118673471395866}, {"x": 8.26086956521739, "y": 2.1739130434782616, "x2": 8.550724637681158, "y2": 2.4637681159420293, "center_x": 8.405797101449274, "center_y": 2.3188405797101455, "value_uncond": 0.005359050428562672}, {"x": 8.55072463768116, "y": 2.1739130434782616, "x2": 8.840579710144928, "y2": 2.4637681159420293, "center_x": 8.695652173913043, "center_y": 2.3188405797101455, "value_uncond": 0.004650120689912263}, {"x": 8.84057971014493, "y": 2.1739130434782616, "x2": 9.130434782608697, "y2": 2.4637681159420293, "center_x": 8.985507246376812, "center_y": 2.3188405797101455, "value_uncond": 0.003997481111445207}, {"x": 9.130434782608695, "y": 2.1739130434782616, "x2": 9.420289855072463, "y2": 2.4637681159420293, "center_x": 9.275362318840578, "center_y": 2.3188405797101455, "value_uncond": 0.0034045085596694277}, {"x": 9.420289855072465, "y": 2.1739130434782616, "x2": 9.710144927536232, "y2": 2.4637681159420293, "center_x": 9.565217391304348, "center_y": 2.3188405797101455, "value_uncond": 0.0028725543538226468}, {"x": 9.710144927536234, "y": 2.1739130434782616, "x2": 10.000000000000002, "y2": 2.4637681159420293, "center_x": 9.855072463768117, "center_y": 2.3188405797101455, "value_uncond": 0.0024011975647697976}, {"x": 10.0, "y": 2.1739130434782616, "x2": 10.289855072463768, "y2": 2.4637681159420293, "center_x": 10.144927536231883, "center_y": 2.3188405797101455, "value_uncond": 0.001988535497195876}, {"x": -10.0, "y": 2.4637681159420293, "x2": -9.710144927536232, "y2": 2.753623188405797, "center_x": -9.855072463768117, "center_y": 2.608695652173913, "value_uncond": 2.8950244033097844e-07}, {"x": -9.710144927536232, "y": 2.4637681159420293, "x2": -9.420289855072465, "y2": 2.753623188405797, "center_x": -9.565217391304348, "center_y": 2.608695652173913, "value_uncond": 4.523163576062548e-07}, {"x": -9.420289855072463, "y": 2.4637681159420293, "x2": -9.130434782608695, "y2": 2.753623188405797, "center_x": -9.275362318840578, "center_y": 2.608695652173913, "value_uncond": 7.001291716807186e-07}, {"x": -9.130434782608695, "y": 2.4637681159420293, "x2": -8.840579710144928, "y2": 2.753623188405797, "center_x": -8.985507246376812, "center_y": 2.608695652173913, "value_uncond": 1.0736429271894232e-06}, {"x": -8.840579710144928, "y": 2.4637681159420293, "x2": -8.55072463768116, "y2": 2.753623188405797, "center_x": -8.695652173913043, "center_y": 2.608695652173913, "value_uncond": 1.6311254954406947e-06}, {"x": -8.55072463768116, "y": 2.4637681159420293, "x2": -8.260869565217392, "y2": 2.753623188405797, "center_x": -8.405797101449277, "center_y": 2.608695652173913, "value_uncond": 2.455052022138501e-06}, {"x": -8.26086956521739, "y": 2.4637681159420293, "x2": -7.971014492753623, "y2": 2.753623188405797, "center_x": -8.115942028985508, "center_y": 2.608695652173913, "value_uncond": 3.660832318768493e-06}, {"x": -7.971014492753623, "y": 2.4637681159420293, "x2": -7.681159420289855, "y2": 2.753623188405797, "center_x": -7.826086956521739, "center_y": 2.608695652173913, "value_uncond": 5.4081009416499825e-06}, {"x": -7.681159420289855, "y": 2.4637681159420293, "x2": -7.391304347826088, "y2": 2.753623188405797, "center_x": -7.536231884057972, "center_y": 2.608695652173913, "value_uncond": 7.915084502802953e-06}, {"x": -7.391304347826087, "y": 2.4637681159420293, "x2": -7.101449275362319, "y2": 2.753623188405797, "center_x": -7.246376811594203, "center_y": 2.608695652173913, "value_uncond": 1.1476570717835243e-05}, {"x": -7.101449275362318, "y": 2.4637681159420293, "x2": -6.811594202898551, "y2": 2.753623188405797, "center_x": -6.956521739130435, "center_y": 2.608695652173913, "value_uncond": 1.6485971053228203e-05}, {"x": -6.811594202898551, "y": 2.4637681159420293, "x2": -6.521739130434783, "y2": 2.753623188405797, "center_x": -6.666666666666667, "center_y": 2.608695652173913, "value_uncond": 2.346187644250868e-05}, {"x": -6.521739130434782, "y": 2.4637681159420293, "x2": -6.231884057971015, "y2": 2.753623188405797, "center_x": -6.3768115942028984, "center_y": 2.608695652173913, "value_uncond": 3.3079334846211935e-05}, {"x": -6.231884057971014, "y": 2.4637681159420293, "x2": -5.942028985507246, "y2": 2.753623188405797, "center_x": -6.08695652173913, "center_y": 2.608695652173913, "value_uncond": 4.62058121022611e-05}, {"x": -5.942028985507246, "y": 2.4637681159420293, "x2": -5.6521739130434785, "y2": 2.753623188405797, "center_x": -5.797101449275362, "center_y": 2.608695652173913, "value_uncond": 6.394141777973059e-05}, {"x": -5.6521739130434785, "y": 2.4637681159420293, "x2": -5.362318840579711, "y2": 2.753623188405797, "center_x": -5.507246376811595, "center_y": 2.608695652173913, "value_uncond": 8.766247544071558e-05}, {"x": -5.36231884057971, "y": 2.4637681159420293, "x2": -5.072463768115942, "y2": 2.753623188405797, "center_x": -5.217391304347826, "center_y": 2.608695652173913, "value_uncond": 0.00011906689088032833}, {"x": -5.0724637681159415, "y": 2.4637681159420293, "x2": -4.782608695652174, "y2": 2.753623188405797, "center_x": -4.927536231884058, "center_y": 2.608695652173913, "value_uncond": 0.00016021903473436135}, {"x": -4.782608695652174, "y": 2.4637681159420293, "x2": -4.492753623188406, "y2": 2.753623188405797, "center_x": -4.63768115942029, "center_y": 2.608695652173913, "value_uncond": 0.00021359103641479342}, {"x": -4.492753623188405, "y": 2.4637681159420293, "x2": -4.202898550724638, "y2": 2.753623188405797, "center_x": -4.3478260869565215, "center_y": 2.608695652173913, "value_uncond": 0.0002820965337334932}, {"x": -4.202898550724638, "y": 2.4637681159420293, "x2": -3.91304347826087, "y2": 2.753623188405797, "center_x": -4.057971014492754, "center_y": 2.608695652173913, "value_uncond": 0.0003691121075031647}, {"x": -3.913043478260869, "y": 2.4637681159420293, "x2": -3.6231884057971016, "y2": 2.753623188405797, "center_x": -3.7681159420289854, "center_y": 2.608695652173913, "value_uncond": 0.0004784809446331656}, {"x": -3.6231884057971016, "y": 2.4637681159420293, "x2": -3.333333333333334, "y2": 2.753623188405797, "center_x": -3.4782608695652177, "center_y": 2.608695652173913, "value_uncond": 0.0006144928261623858}, {"x": -3.333333333333333, "y": 2.4637681159420293, "x2": -3.0434782608695654, "y2": 2.753623188405797, "center_x": -3.1884057971014492, "center_y": 2.608695652173913, "value_uncond": 0.0007818344484350156}, {"x": -3.0434782608695645, "y": 2.4637681159420293, "x2": -2.753623188405797, "y2": 2.753623188405797, "center_x": -2.8985507246376807, "center_y": 2.608695652173913, "value_uncond": 0.0009855044766071462}, {"x": -2.753623188405797, "y": 2.4637681159420293, "x2": -2.4637681159420293, "y2": 2.753623188405797, "center_x": -2.608695652173913, "center_y": 2.608695652173913, "value_uncond": 0.001230688706612493}, {"x": -2.4637681159420284, "y": 2.4637681159420293, "x2": -2.1739130434782608, "y2": 2.753623188405797, "center_x": -2.3188405797101446, "center_y": 2.608695652173913, "value_uncond": 0.0015225923513204752}, {"x": -2.1739130434782608, "y": 2.4637681159420293, "x2": -1.8840579710144931, "y2": 2.753623188405797, "center_x": -2.028985507246377, "center_y": 2.608695652173913, "value_uncond": 0.001866228798125751}, {"x": -1.8840579710144922, "y": 2.4637681159420293, "x2": -1.5942028985507246, "y2": 2.753623188405797, "center_x": -1.7391304347826084, "center_y": 2.608695652173913, "value_uncond": 0.0022661671739586985}, {"x": -1.5942028985507246, "y": 2.4637681159420293, "x2": -1.304347826086957, "y2": 2.753623188405797, "center_x": -1.4492753623188408, "center_y": 2.608695652173913, "value_uncond": 0.002726244588232826}, {"x": -1.304347826086957, "y": 2.4637681159420293, "x2": -1.0144927536231894, "y2": 2.753623188405797, "center_x": -1.1594202898550732, "center_y": 2.608695652173913, "value_uncond": 0.003249252809504304}, {"x": -1.0144927536231876, "y": 2.4637681159420293, "x2": -0.72463768115942, "y2": 2.753623188405797, "center_x": -0.8695652173913038, "center_y": 2.608695652173913, "value_uncond": 0.0038366130908341948}, {"x": -0.72463768115942, "y": 2.4637681159420293, "x2": -0.43478260869565233, "y2": 2.753623188405797, "center_x": -0.5797101449275361, "center_y": 2.608695652173913, "value_uncond": 0.004488056545781097}, {"x": -0.43478260869565233, "y": 2.4637681159420293, "x2": -0.1449275362318847, "y2": 2.753623188405797, "center_x": -0.2898550724637685, "center_y": 2.608695652173913, "value_uncond": 0.005201330499387401}, {"x": -0.14492753623188293, "y": 2.4637681159420293, "x2": 0.1449275362318847, "y2": 2.753623188405797, "center_x": 8.881784197001252e-16, "center_y": 2.608695652173913, "value_uncond": 0.005971953192265772}, {"x": 0.1449275362318847, "y": 2.4637681159420293, "x2": 0.43478260869565233, "y2": 2.753623188405797, "center_x": 0.2898550724637685, "center_y": 2.608695652173913, "value_uncond": 0.006793039727087407}, {"x": 0.43478260869565233, "y": 2.4637681159420293, "x2": 0.72463768115942, "y2": 2.753623188405797, "center_x": 0.5797101449275361, "center_y": 2.608695652173913, "value_uncond": 0.007655220918590051}, {"x": 0.72463768115942, "y": 2.4637681159420293, "x2": 1.0144927536231876, "y2": 2.753623188405797, "center_x": 0.8695652173913038, "center_y": 2.608695652173913, "value_uncond": 0.008546673566708152}, {"x": 1.0144927536231894, "y": 2.4637681159420293, "x2": 1.304347826086957, "y2": 2.753623188405797, "center_x": 1.1594202898550732, "center_y": 2.608695652173913, "value_uncond": 0.00945327560545279}, {"x": 1.304347826086957, "y": 2.4637681159420293, "x2": 1.5942028985507246, "y2": 2.753623188405797, "center_x": 1.4492753623188408, "center_y": 2.608695652173913, "value_uncond": 0.010358892763365544}, {"x": 1.5942028985507246, "y": 2.4637681159420293, "x2": 1.8840579710144922, "y2": 2.753623188405797, "center_x": 1.7391304347826084, "center_y": 2.608695652173913, "value_uncond": 0.011245795175755779}, {"x": 1.884057971014494, "y": 2.4637681159420293, "x2": 2.1739130434782616, "y2": 2.753623188405797, "center_x": 2.028985507246378, "center_y": 2.608695652173913, "value_uncond": 0.012095193366675175}, {"x": 2.1739130434782616, "y": 2.4637681159420293, "x2": 2.4637681159420293, "y2": 2.753623188405797, "center_x": 2.3188405797101455, "center_y": 2.608695652173913, "value_uncond": 0.012887873865860803}, {"x": 2.4637681159420293, "y": 2.4637681159420293, "x2": 2.753623188405797, "y2": 2.753623188405797, "center_x": 2.608695652173913, "center_y": 2.608695652173913, "value_uncond": 0.013604906224710313}, {"x": 2.753623188405797, "y": 2.4637681159420293, "x2": 3.0434782608695645, "y2": 2.753623188405797, "center_x": 2.8985507246376807, "center_y": 2.608695652173913, "value_uncond": 0.014228386139430085}, {"x": 3.0434782608695663, "y": 2.4637681159420293, "x2": 3.333333333333334, "y2": 2.753623188405797, "center_x": 3.18840579710145, "center_y": 2.608695652173913, "value_uncond": 0.014742174501615976}, {"x": 3.333333333333334, "y": 2.4637681159420293, "x2": 3.6231884057971016, "y2": 2.753623188405797, "center_x": 3.4782608695652177, "center_y": 2.608695652173913, "value_uncond": 0.01513259004714306}, {"x": 3.6231884057971016, "y": 2.4637681159420293, "x2": 3.913043478260869, "y2": 2.753623188405797, "center_x": 3.7681159420289854, "center_y": 2.608695652173913, "value_uncond": 0.015389014211291014}, {"x": 3.913043478260871, "y": 2.4637681159420293, "x2": 4.202898550724639, "y2": 2.753623188405797, "center_x": 4.057971014492755, "center_y": 2.608695652173913, "value_uncond": 0.015504370897427292}, {"x": 4.202898550724639, "y": 2.4637681159420293, "x2": 4.492753623188406, "y2": 2.753623188405797, "center_x": 4.347826086956522, "center_y": 2.608695652173913, "value_uncond": 0.015475450910674683}, {"x": 4.492753623188406, "y": 2.4637681159420293, "x2": 4.782608695652174, "y2": 2.753623188405797, "center_x": 4.63768115942029, "center_y": 2.608695652173913, "value_uncond": 0.015303060296095244}, {"x": 4.782608695652174, "y": 2.4637681159420293, "x2": 5.0724637681159415, "y2": 2.753623188405797, "center_x": 4.927536231884058, "center_y": 2.608695652173913, "value_uncond": 0.014991983011760199}, {"x": 5.072463768115943, "y": 2.4637681159420293, "x2": 5.362318840579711, "y2": 2.753623188405797, "center_x": 5.217391304347827, "center_y": 2.608695652173913, "value_uncond": 0.014550760349213649}, {"x": 5.362318840579711, "y": 2.4637681159420293, "x2": 5.6521739130434785, "y2": 2.753623188405797, "center_x": 5.507246376811595, "center_y": 2.608695652173913, "value_uncond": 0.013991301296120189}, {"x": 5.6521739130434785, "y": 2.4637681159420293, "x2": 5.942028985507246, "y2": 2.753623188405797, "center_x": 5.797101449275362, "center_y": 2.608695652173913, "value_uncond": 0.013328348647328502}, {"x": 5.942028985507246, "y": 2.4637681159420293, "x2": 6.231884057971014, "y2": 2.753623188405797, "center_x": 6.08695652173913, "center_y": 2.608695652173913, "value_uncond": 0.012578834257875109}, {"x": 6.2318840579710155, "y": 2.4637681159420293, "x2": 6.521739130434783, "y2": 2.753623188405797, "center_x": 6.376811594202899, "center_y": 2.608695652173913, "value_uncond": 0.011761162742523812}, {"x": 6.521739130434785, "y": 2.4637681159420293, "x2": 6.8115942028985526, "y2": 2.753623188405797, "center_x": 6.666666666666669, "center_y": 2.608695652173913, "value_uncond": 0.010894465770452633}, {"x": 6.811594202898551, "y": 2.4637681159420293, "x2": 7.101449275362318, "y2": 2.753623188405797, "center_x": 6.956521739130435, "center_y": 2.608695652173913, "value_uncond": 0.0099978687810239}, {"x": 7.10144927536232, "y": 2.4637681159420293, "x2": 7.391304347826088, "y2": 2.753623188405797, "center_x": 7.246376811594204, "center_y": 2.608695652173913, "value_uncond": 0.009089808646205944}, {"x": 7.391304347826086, "y": 2.4637681159420293, "x2": 7.681159420289854, "y2": 2.753623188405797, "center_x": 7.53623188405797, "center_y": 2.608695652173913, "value_uncond": 0.0081874349713912}, {"x": 7.681159420289855, "y": 2.4637681159420293, "x2": 7.971014492753623, "y2": 2.753623188405797, "center_x": 7.826086956521739, "center_y": 2.608695652173913, "value_uncond": 0.007306119999745298}, {"x": 7.971014492753625, "y": 2.4637681159420293, "x2": 8.260869565217392, "y2": 2.753623188405797, "center_x": 8.115942028985508, "center_y": 2.608695652173913, "value_uncond": 0.006459093227042803}, {"x": 8.26086956521739, "y": 2.4637681159420293, "x2": 8.550724637681158, "y2": 2.753623188405797, "center_x": 8.405797101449274, "center_y": 2.608695652173913, "value_uncond": 0.005657207642854211}, {"x": 8.55072463768116, "y": 2.4637681159420293, "x2": 8.840579710144928, "y2": 2.753623188405797, "center_x": 8.695652173913043, "center_y": 2.608695652173913, "value_uncond": 0.004908835745780014}, {"x": 8.84057971014493, "y": 2.4637681159420293, "x2": 9.130434782608697, "y2": 2.753623188405797, "center_x": 8.985507246376812, "center_y": 2.608695652173913, "value_uncond": 0.004219885779634011}, {"x": 9.130434782608695, "y": 2.4637681159420293, "x2": 9.420289855072463, "y2": 2.753623188405797, "center_x": 9.275362318840578, "center_y": 2.608695652173913, "value_uncond": 0.0035939224869526204}, {"x": 9.420289855072465, "y": 2.4637681159420293, "x2": 9.710144927536232, "y2": 2.753623188405797, "center_x": 9.565217391304348, "center_y": 2.608695652173913, "value_uncond": 0.003032372369244177}, {"x": 9.710144927536234, "y": 2.4637681159420293, "x2": 10.000000000000002, "y2": 2.753623188405797, "center_x": 9.855072463768117, "center_y": 2.608695652173913, "value_uncond": 0.0025347910784750617}, {"x": 10.0, "y": 2.4637681159420293, "x2": 10.289855072463768, "y2": 2.753623188405797, "center_x": 10.144927536231883, "center_y": 2.608695652173913, "value_uncond": 0.002099170060588627}, {"x": -10.0, "y": 2.753623188405797, "x2": -9.710144927536232, "y2": 3.0434782608695645, "center_x": -9.855072463768117, "center_y": 2.8985507246376807, "value_uncond": 3.027696362842212e-07}, {"x": -9.710144927536232, "y": 2.753623188405797, "x2": -9.420289855072465, "y2": 3.0434782608695645, "center_x": -9.565217391304348, "center_y": 2.8985507246376807, "value_uncond": 4.7304492121476363e-07}, {"x": -9.420289855072463, "y": 2.753623188405797, "x2": -9.130434782608695, "y2": 3.0434782608695645, "center_x": -9.275362318840578, "center_y": 2.8985507246376807, "value_uncond": 7.322143966019667e-07}, {"x": -9.130434782608695, "y": 2.753623188405797, "x2": -8.840579710144928, "y2": 3.0434782608695645, "center_x": -8.985507246376812, "center_y": 2.8985507246376807, "value_uncond": 1.1228453832466169e-06}, {"x": -8.840579710144928, "y": 2.753623188405797, "x2": -8.55072463768116, "y2": 3.0434782608695645, "center_x": -8.695652173913043, "center_y": 2.8985507246376807, "value_uncond": 1.7058760279322381e-06}, {"x": -8.55072463768116, "y": 2.753623188405797, "x2": -8.260869565217392, "y2": 3.0434782608695645, "center_x": -8.405797101449277, "center_y": 2.8985507246376807, "value_uncond": 2.567561112617595e-06}, {"x": -8.26086956521739, "y": 2.753623188405797, "x2": -7.971014492753623, "y2": 3.0434782608695645, "center_x": -8.115942028985508, "center_y": 2.8985507246376807, "value_uncond": 3.828599401040885e-06}, {"x": -7.971014492753623, "y": 2.753623188405797, "x2": -7.681159420289855, "y2": 3.0434782608695645, "center_x": -7.826086956521739, "center_y": 2.8985507246376807, "value_uncond": 5.65594111476133e-06}, {"x": -7.681159420289855, "y": 2.753623188405797, "x2": -7.391304347826088, "y2": 3.0434782608695645, "center_x": -7.536231884057972, "center_y": 2.8985507246376807, "value_uncond": 8.277813663099864e-06}, {"x": -7.391304347826087, "y": 2.753623188405797, "x2": -7.101449275362319, "y2": 3.0434782608695645, "center_x": -7.246376811594203, "center_y": 2.8985507246376807, "value_uncond": 1.2002514168987824e-05}, {"x": -7.101449275362318, "y": 2.753623188405797, "x2": -6.811594202898551, "y2": 3.0434782608695645, "center_x": -6.956521739130435, "center_y": 2.8985507246376807, "value_uncond": 1.7241483193963902e-05}, {"x": -6.811594202898551, "y": 2.753623188405797, "x2": -6.521739130434783, "y2": 3.0434782608695645, "center_x": -6.666666666666667, "center_y": 2.8985507246376807, "value_uncond": 2.4537077438526764e-05}, {"x": -6.521739130434782, "y": 2.753623188405797, "x2": -6.231884057971015, "y2": 3.0434782608695645, "center_x": -6.3768115942028984, "center_y": 2.8985507246376807, "value_uncond": 3.459528067694787e-05}, {"x": -6.231884057971014, "y": 2.753623188405797, "x2": -5.942028985507246, "y2": 3.0434782608695645, "center_x": -6.08695652173913, "center_y": 2.8985507246376807, "value_uncond": 4.832331260636244e-05}, {"x": -5.942028985507246, "y": 2.753623188405797, "x2": -5.6521739130434785, "y2": 3.0434782608695645, "center_x": -5.797101449275362, "center_y": 2.8985507246376807, "value_uncond": 6.687169815402376e-05}, {"x": -5.6521739130434785, "y": 2.753623188405797, "x2": -5.362318840579711, "y2": 3.0434782608695645, "center_x": -5.507246376811595, "center_y": 2.8985507246376807, "value_uncond": 9.167983445879034e-05}, {"x": -5.36231884057971, "y": 2.753623188405797, "x2": -5.072463768115942, "y2": 3.0434782608695645, "center_x": -5.217391304347826, "center_y": 2.8985507246376807, "value_uncond": 0.00012452343822772443}, {"x": -5.0724637681159415, "y": 2.753623188405797, "x2": -4.782608695652174, "y2": 3.0434782608695645, "center_x": -4.927536231884058, "center_y": 2.8985507246376807, "value_uncond": 0.00016756148520500328}, {"x": -4.782608695652174, "y": 2.753623188405797, "x2": -4.492753623188406, "y2": 3.0434782608695645, "center_x": -4.63768115942029, "center_y": 2.8985507246376807, "value_uncond": 0.0002233793965085168}, {"x": -4.492753623188405, "y": 2.753623188405797, "x2": -4.202898550724638, "y2": 3.0434782608695645, "center_x": -4.3478260869565215, "center_y": 2.8985507246376807, "value_uncond": 0.000295024334917117}, {"x": -4.202898550724638, "y": 2.753623188405797, "x2": -3.91304347826087, "y2": 3.0434782608695645, "center_x": -4.057971014492754, "center_y": 2.8985507246376807, "value_uncond": 0.0003860276217674322}, {"x": -3.913043478260869, "y": 2.753623188405797, "x2": -3.6231884057971016, "y2": 3.0434782608695645, "center_x": -3.7681159420289854, "center_y": 2.8985507246376807, "value_uncond": 0.0005004085679204973}, {"x": -3.6231884057971016, "y": 2.753623188405797, "x2": -3.333333333333334, "y2": 3.0434782608695645, "center_x": -3.4782608695652177, "center_y": 2.8985507246376807, "value_uncond": 0.0006426535446946294}, {"x": -3.333333333333333, "y": 2.753623188405797, "x2": -3.0434782608695654, "y2": 3.0434782608695645, "center_x": -3.1884057971014492, "center_y": 2.8985507246376807, "value_uncond": 0.0008176640283809533}, {"x": -3.0434782608695645, "y": 2.753623188405797, "x2": -2.753623188405797, "y2": 3.0434782608695645, "center_x": -2.8985507246376807, "center_y": 2.8985507246376807, "value_uncond": 0.001030667760857866}, {"x": -2.753623188405797, "y": 2.753623188405797, "x2": -2.4637681159420293, "y2": 3.0434782608695645, "center_x": -2.608695652173913, "center_y": 2.8985507246376807, "value_uncond": 0.001287088190531882}, {"x": -2.4637681159420284, "y": 2.753623188405797, "x2": -2.1739130434782608, "y2": 3.0434782608695645, "center_x": -2.3188405797101446, "center_y": 2.8985507246376807, "value_uncond": 0.001592369072576375}, {"x": -2.1739130434782608, "y": 2.753623188405797, "x2": -1.8840579710144931, "y2": 3.0434782608695645, "center_x": -2.028985507246377, "center_y": 2.8985507246376807, "value_uncond": 0.00195175354579286}, {"x": -1.8840579710144922, "y": 2.753623188405797, "x2": -1.5942028985507246, "y2": 3.0434782608695645, "center_x": -1.7391304347826084, "center_y": 2.8985507246376807, "value_uncond": 0.0023700201291370505}, {"x": -1.5942028985507246, "y": 2.753623188405797, "x2": -1.304347826086957, "y2": 3.0434782608695645, "center_x": -1.4492753623188408, "center_y": 2.8985507246376807, "value_uncond": 0.0028511817774572105}, {"x": -1.304347826086957, "y": 2.753623188405797, "x2": -1.0144927536231894, "y2": 3.0434782608695645, "center_x": -1.1594202898550732, "center_y": 2.8985507246376807, "value_uncond": 0.0033981581993035538}, {"x": -1.0144927536231876, "y": 2.753623188405797, "x2": -0.72463768115942, "y2": 3.0434782608695645, "center_x": -0.8695652173913038, "center_y": 2.8985507246376807, "value_uncond": 0.004012435780324067}, {"x": -0.72463768115942, "y": 2.753623188405797, "x2": -0.43478260869565233, "y2": 3.0434782608695645, "center_x": -0.5797101449275361, "center_y": 2.8985507246376807, "value_uncond": 0.004693733311662716}, {"x": -0.43478260869565233, "y": 2.753623188405797, "x2": -0.1449275362318847, "y2": 3.0434782608695645, "center_x": -0.2898550724637685, "center_y": 2.8985507246376807, "value_uncond": 0.005439694883722322}, {"x": -0.14492753623188293, "y": 2.753623188405797, "x2": 0.1449275362318847, "y2": 3.0434782608695645, "center_x": 8.881784197001252e-16, "center_y": 2.8985507246376807, "value_uncond": 0.006245633348933196}, {"x": 0.1449275362318847, "y": 2.753623188405797, "x2": 0.43478260869565233, "y2": 3.0434782608695645, "center_x": 0.2898550724637685, "center_y": 2.8985507246376807, "value_uncond": 0.007104348291790332}, {"x": 0.43478260869565233, "y": 2.753623188405797, "x2": 0.72463768115942, "y2": 3.0434782608695645, "center_x": 0.5797101449275361, "center_y": 2.8985507246376807, "value_uncond": 0.008006041159953762}, {"x": 0.72463768115942, "y": 2.753623188405797, "x2": 1.0144927536231876, "y2": 3.0434782608695645, "center_x": 0.8695652173913038, "center_y": 2.8985507246376807, "value_uncond": 0.008938346924722965}, {"x": 1.0144927536231894, "y": 2.753623188405797, "x2": 1.304347826086957, "y2": 3.0434782608695645, "center_x": 1.1594202898550732, "center_y": 2.8985507246376807, "value_uncond": 0.009886496340014353}, {"x": 1.304347826086957, "y": 2.753623188405797, "x2": 1.5942028985507246, "y2": 3.0434782608695645, "center_x": 1.4492753623188408, "center_y": 2.8985507246376807, "value_uncond": 0.010833615739769736}, {"x": 1.5942028985507246, "y": 2.753623188405797, "x2": 1.8840579710144922, "y2": 3.0434782608695645, "center_x": 1.7391304347826084, "center_y": 2.8985507246376807, "value_uncond": 0.011761162742523815}, {"x": 1.884057971014494, "y": 2.753623188405797, "x2": 2.1739130434782616, "y2": 3.0434782608695645, "center_x": 2.028985507246378, "center_y": 2.8985507246376807, "value_uncond": 0.012649486796134986}, {"x": 2.1739130434782616, "y": 2.753623188405797, "x2": 2.4637681159420293, "y2": 3.0434782608695645, "center_x": 2.3188405797101455, "center_y": 2.8985507246376807, "value_uncond": 0.013478493923514094}, {"x": 2.4637681159420293, "y": 2.753623188405797, "x2": 2.753623188405797, "y2": 3.0434782608695645, "center_x": 2.608695652173913, "center_y": 2.8985507246376807, "value_uncond": 0.014228386139430085}, {"x": 2.753623188405797, "y": 2.753623188405797, "x2": 3.0434782608695645, "y2": 3.0434782608695645, "center_x": 2.8985507246376807, "center_y": 2.8985507246376807, "value_uncond": 0.01488043862919289}, {"x": 3.0434782608695663, "y": 2.753623188405797, "x2": 3.333333333333334, "y2": 3.0434782608695645, "center_x": 3.18840579710145, "center_y": 2.8985507246376807, "value_uncond": 0.015417772668133087}, {"x": 3.333333333333334, "y": 2.753623188405797, "x2": 3.6231884057971016, "y2": 3.0434782608695645, "center_x": 3.4782608695652177, "center_y": 2.8985507246376807, "value_uncond": 0.015826080012913326}, {"x": 3.6231884057971016, "y": 2.753623188405797, "x2": 3.913043478260869, "y2": 3.0434782608695645, "center_x": 3.7681159420289854, "center_y": 2.8985507246376807, "value_uncond": 0.016094255475699756}, {"x": 3.913043478260871, "y": 2.753623188405797, "x2": 4.202898550724639, "y2": 3.0434782608695645, "center_x": 4.057971014492755, "center_y": 2.8985507246376807, "value_uncond": 0.01621489867948244}, {"x": 4.202898550724639, "y": 2.753623188405797, "x2": 4.492753623188406, "y2": 3.0434782608695645, "center_x": 4.347826086956522, "center_y": 2.8985507246376807, "value_uncond": 0.01618465335975242}, {"x": 4.492753623188406, "y": 2.753623188405797, "x2": 4.782608695652174, "y2": 3.0434782608695645, "center_x": 4.63768115942029, "center_y": 2.8985507246376807, "value_uncond": 0.016004362500665503}, {"x": 4.782608695652174, "y": 2.753623188405797, "x2": 5.0724637681159415, "y2": 3.0434782608695645, "center_x": 4.927536231884058, "center_y": 2.8985507246376807, "value_uncond": 0.015679029297509334}, {"x": 5.072463768115943, "y": 2.753623188405797, "x2": 5.362318840579711, "y2": 3.0434782608695645, "center_x": 5.217391304347827, "center_y": 2.8985507246376807, "value_uncond": 0.01521758646854096}, {"x": 5.362318840579711, "y": 2.753623188405797, "x2": 5.6521739130434785, "y2": 3.0434782608695645, "center_x": 5.507246376811595, "center_y": 2.8985507246376807, "value_uncond": 0.014632488761497914}, {"x": 5.6521739130434785, "y": 2.753623188405797, "x2": 5.942028985507246, "y2": 3.0434782608695645, "center_x": 5.797101449275362, "center_y": 2.8985507246376807, "value_uncond": 0.013939154597824402}, {"x": 5.942028985507246, "y": 2.753623188405797, "x2": 6.231884057971014, "y2": 3.0434782608695645, "center_x": 6.08695652173913, "center_y": 2.8985507246376807, "value_uncond": 0.013155291778481145}, {"x": 6.2318840579710155, "y": 2.753623188405797, "x2": 6.521739130434783, "y2": 3.0434782608695645, "center_x": 6.376811594202899, "center_y": 2.8985507246376807, "value_uncond": 0.012300148357168889}, {"x": 6.521739130434785, "y": 2.753623188405797, "x2": 6.8115942028985526, "y2": 3.0434782608695645, "center_x": 6.666666666666669, "center_y": 2.8985507246376807, "value_uncond": 0.011393732761146198}, {"x": 6.811594202898551, "y": 2.753623188405797, "x2": 7.101449275362318, "y2": 3.0434782608695645, "center_x": 6.956521739130435, "center_y": 2.8985507246376807, "value_uncond": 0.010456046902358577}, {"x": 7.10144927536232, "y": 2.753623188405797, "x2": 7.391304347826088, "y2": 3.0434782608695645, "center_x": 7.246376811594204, "center_y": 2.8985507246376807, "value_uncond": 0.00950637256998089}, {"x": 7.391304347826086, "y": 2.753623188405797, "x2": 7.681159420289854, "y2": 3.0434782608695645, "center_x": 7.53623188405797, "center_y": 2.8985507246376807, "value_uncond": 0.008562645294301409}, {"x": 7.681159420289855, "y": 2.753623188405797, "x2": 7.971014492753623, "y2": 3.0434782608695645, "center_x": 7.826086956521739, "center_y": 2.8985507246376807, "value_uncond": 0.00764094179117375}, {"x": 7.971014492753625, "y": 2.753623188405797, "x2": 8.260869565217392, "y2": 3.0434782608695645, "center_x": 8.115942028985508, "center_y": 2.8985507246376807, "value_uncond": 0.0067550978321351445}, {"x": 8.26086956521739, "y": 2.753623188405797, "x2": 8.550724637681158, "y2": 3.0434782608695645, "center_x": 8.405797101449274, "center_y": 2.8985507246376807, "value_uncond": 0.005916463772992945}, {"x": 8.55072463768116, "y": 2.753623188405797, "x2": 8.840579710144928, "y2": 3.0434782608695645, "center_x": 8.695652173913043, "center_y": 2.8985507246376807, "value_uncond": 0.0051337958036886434}, {"x": 8.84057971014493, "y": 2.753623188405797, "x2": 9.130434782608697, "y2": 3.0434782608695645, "center_x": 8.985507246376812, "center_y": 2.8985507246376807, "value_uncond": 0.004413272928546124}, {"x": 9.130434782608695, "y": 2.753623188405797, "x2": 9.420289855072463, "y2": 3.0434782608695645, "center_x": 9.275362318840578, "center_y": 2.8985507246376807, "value_uncond": 0.0037586232536219915}, {"x": 9.420289855072465, "y": 2.753623188405797, "x2": 9.710144927536232, "y2": 3.0434782608695645, "center_x": 9.565217391304348, "center_y": 2.8985507246376807, "value_uncond": 0.003171338653535138}, {"x": 9.710144927536234, "y": 2.753623188405797, "x2": 10.000000000000002, "y2": 3.0434782608695645, "center_x": 9.855072463768117, "center_y": 2.8985507246376807, "value_uncond": 0.002650954416857331}, {"x": 10.0, "y": 2.753623188405797, "x2": 10.289855072463768, "y2": 3.0434782608695645, "center_x": 10.144927536231883, "center_y": 2.8985507246376807, "value_uncond": 0.0021953699423622308}, {"x": -10.0, "y": 3.0434782608695663, "x2": -9.710144927536232, "y2": 3.333333333333334, "center_x": -9.855072463768117, "center_y": 3.18840579710145, "value_uncond": 3.137026763368097e-07}, {"x": -9.710144927536232, "y": 3.0434782608695663, "x2": -9.420289855072465, "y2": 3.333333333333334, "center_x": -9.565217391304348, "center_y": 3.18840579710145, "value_uncond": 4.901266178267039e-07}, {"x": -9.420289855072463, "y": 3.0434782608695663, "x2": -9.130434782608695, "y2": 3.333333333333334, "center_x": -9.275362318840578, "center_y": 3.18840579710145, "value_uncond": 7.586547273543421e-07}, {"x": -9.130434782608695, "y": 3.0434782608695663, "x2": -8.840579710144928, "y2": 3.333333333333334, "center_x": -8.985507246376812, "center_y": 3.18840579710145, "value_uncond": 1.1633914356796134e-06}, {"x": -8.840579710144928, "y": 3.0434782608695663, "x2": -8.55072463768116, "y2": 3.333333333333334, "center_x": -8.695652173913043, "center_y": 3.18840579710145, "value_uncond": 1.7674753717998176e-06}, {"x": -8.55072463768116, "y": 3.0434782608695663, "x2": -8.260869565217392, "y2": 3.333333333333334, "center_x": -8.405797101449277, "center_y": 3.18840579710145, "value_uncond": 2.6602759859656123e-06}, {"x": -8.26086956521739, "y": 3.0434782608695663, "x2": -7.971014492753623, "y2": 3.333333333333334, "center_x": -8.115942028985508, "center_y": 3.18840579710145, "value_uncond": 3.966850485629838e-06}, {"x": -7.971014492753623, "y": 3.0434782608695663, "x2": -7.681159420289855, "y2": 3.333333333333334, "center_x": -7.826086956521739, "center_y": 3.18840579710145, "value_uncond": 5.860177680559899e-06}, {"x": -7.681159420289855, "y": 3.0434782608695663, "x2": -7.391304347826088, "y2": 3.333333333333334, "center_x": -7.536231884057972, "center_y": 3.18840579710145, "value_uncond": 8.57672629330027e-06}, {"x": -7.391304347826087, "y": 3.0434782608695663, "x2": -7.101449275362319, "y2": 3.333333333333334, "center_x": -7.246376811594203, "center_y": 3.18840579710145, "value_uncond": 1.2435926084897789e-05}, {"x": -7.101449275362318, "y": 3.0434782608695663, "x2": -6.811594202898551, "y2": 3.333333333333334, "center_x": -6.956521739130435, "center_y": 3.18840579710145, "value_uncond": 1.7864074774279074e-05}, {"x": -6.811594202898551, "y": 3.0434782608695663, "x2": -6.521739130434783, "y2": 3.333333333333334, "center_x": -6.666666666666667, "center_y": 3.18840579710145, "value_uncond": 2.542311361342594e-05}, {"x": -6.521739130434782, "y": 3.0434782608695663, "x2": -6.231884057971015, "y2": 3.333333333333334, "center_x": -6.3768115942028984, "center_y": 3.18840579710145, "value_uncond": 3.5844519517121926e-05}, {"x": -6.231884057971014, "y": 3.0434782608695663, "x2": -5.942028985507246, "y2": 3.333333333333334, "center_x": -6.08695652173913, "center_y": 3.18840579710145, "value_uncond": 5.006827197112243e-05}, {"x": -5.942028985507246, "y": 3.0434782608695663, "x2": -5.6521739130434785, "y2": 3.333333333333334, "center_x": -5.797101449275362, "center_y": 3.18840579710145, "value_uncond": 6.928644146605207e-05}, {"x": -5.6521739130434785, "y": 3.0434782608695663, "x2": -5.362318840579711, "y2": 3.333333333333334, "center_x": -5.507246376811595, "center_y": 3.18840579710145, "value_uncond": 9.499040190688058e-05}, {"x": -5.36231884057971, "y": 3.0434782608695663, "x2": -5.072463768115942, "y2": 3.333333333333334, "center_x": -5.217391304347826, "center_y": 3.18840579710145, "value_uncond": 0.00012901999129803215}, {"x": -5.0724637681159415, "y": 3.0434782608695663, "x2": -4.782608695652174, "y2": 3.333333333333334, "center_x": -4.927536231884058, "center_y": 3.18840579710145, "value_uncond": 0.00017361214620093563}, {"x": -4.782608695652174, "y": 3.0434782608695663, "x2": -4.492753623188406, "y2": 3.333333333333334, "center_x": -4.63768115942029, "center_y": 3.18840579710145, "value_uncond": 0.0002314456475332996}, {"x": -4.492753623188405, "y": 3.0434782608695663, "x2": -4.202898550724638, "y2": 3.333333333333334, "center_x": -4.3478260869565215, "center_y": 3.18840579710145, "value_uncond": 0.00030567769140861566}, {"x": -4.202898550724638, "y": 3.0434782608695663, "x2": -3.91304347826087, "y2": 3.333333333333334, "center_x": -4.057971014492754, "center_y": 3.18840579710145, "value_uncond": 0.0003999671155092253}, {"x": -3.913043478260869, "y": 3.0434782608695663, "x2": -3.6231884057971016, "y2": 3.333333333333334, "center_x": -3.7681159420289854, "center_y": 3.18840579710145, "value_uncond": 0.0005184783683895163}, {"x": -3.6231884057971016, "y": 3.0434782608695663, "x2": -3.333333333333334, "y2": 3.333333333333334, "center_x": -3.4782608695652177, "center_y": 3.18840579710145, "value_uncond": 0.0006658598246582143}, {"x": -3.333333333333333, "y": 3.0434782608695663, "x2": -3.0434782608695654, "y2": 3.333333333333334, "center_x": -3.1884057971014492, "center_y": 3.18840579710145, "value_uncond": 0.000847189953376477}, {"x": -3.0434782608695645, "y": 3.0434782608695663, "x2": -2.753623188405797, "y2": 3.333333333333334, "center_x": -2.8985507246376807, "center_y": 3.18840579710145, "value_uncond": 0.001067885270673787}, {"x": -2.753623188405797, "y": 3.0434782608695663, "x2": -2.4637681159420293, "y2": 3.333333333333334, "center_x": -2.608695652173913, "center_y": 3.18840579710145, "value_uncond": 0.0013335650661888887}, {"x": -2.4637681159420284, "y": 3.0434782608695663, "x2": -2.1739130434782608, "y2": 3.333333333333334, "center_x": -2.3188405797101446, "center_y": 3.18840579710145, "value_uncond": 0.0016498696696066464}, {"x": -2.1739130434782608, "y": 3.0434782608695663, "x2": -1.8840579710144931, "y2": 3.333333333333334, "center_x": -2.028985507246377, "center_y": 3.18840579710145, "value_uncond": 0.0020222315499640042}, {"x": -1.8840579710144922, "y": 3.0434782608695663, "x2": -1.5942028985507246, "y2": 3.333333333333334, "center_x": -1.7391304347826084, "center_y": 3.18840579710145, "value_uncond": 0.002455601778985758}, {"x": -1.5942028985507246, "y": 3.0434782608695663, "x2": -1.304347826086957, "y2": 3.333333333333334, "center_x": -1.4492753623188408, "center_y": 3.18840579710145, "value_uncond": 0.0029541382196973053}, {"x": -1.304347826086957, "y": 3.0434782608695663, "x2": -1.0144927536231894, "y2": 3.333333333333334, "center_x": -1.1594202898550732, "center_y": 3.18840579710145, "value_uncond": 0.0035208660115993097}, {"x": -1.0144927536231876, "y": 3.0434782608695663, "x2": -0.72463768115942, "y2": 3.333333333333334, "center_x": -0.8695652173913038, "center_y": 3.18840579710145, "value_uncond": 0.004157325213865357}, {"x": -0.72463768115942, "y": 3.0434782608695663, "x2": -0.43478260869565233, "y2": 3.333333333333334, "center_x": -0.5797101449275361, "center_y": 3.18840579710145, "value_uncond": 0.004863224463161162}, {"x": -0.43478260869565233, "y": 3.0434782608695663, "x2": -0.1449275362318847, "y2": 3.333333333333334, "center_x": -0.2898550724637685, "center_y": 3.18840579710145, "value_uncond": 0.005636122777772336}, {"x": -0.14492753623188293, "y": 3.0434782608695663, "x2": 0.1449275362318847, "y2": 3.333333333333334, "center_x": 8.881784197001252e-16, "center_y": 3.18840579710145, "value_uncond": 0.0064711637567894525}, {"x": 0.1449275362318847, "y": 3.0434782608695663, "x2": 0.43478260869565233, "y2": 3.333333333333334, "center_x": 0.2898550724637685, "center_y": 3.18840579710145, "value_uncond": 0.007360886977026161}, {"x": 0.43478260869565233, "y": 3.0434782608695663, "x2": 0.72463768115942, "y2": 3.333333333333334, "center_x": 0.5797101449275361, "center_y": 3.18840579710145, "value_uncond": 0.008295140059495594}, {"x": 0.72463768115942, "y": 3.0434782608695663, "x2": 1.0144927536231876, "y2": 3.333333333333334, "center_x": 0.8695652173913038, "center_y": 3.18840579710145, "value_uncond": 0.009261111473147475}, {"x": 1.0144927536231894, "y": 3.0434782608695663, "x2": 1.304347826086957, "y2": 3.333333333333334, "center_x": 1.1594202898550732, "center_y": 3.18840579710145, "value_uncond": 0.010243498653032564}, {"x": 1.304347826086957, "y": 3.0434782608695663, "x2": 1.5942028985507246, "y2": 3.333333333333334, "center_x": 1.4492753623188408, "center_y": 3.18840579710145, "value_uncond": 0.01122481862342373}, {"x": 1.5942028985507246, "y": 3.0434782608695663, "x2": 1.8840579710144922, "y2": 3.333333333333334, "center_x": 1.7391304347826084, "center_y": 3.18840579710145, "value_uncond": 0.012185859435716389}, {"x": 1.884057971014494, "y": 3.0434782608695663, "x2": 2.1739130434782616, "y2": 3.333333333333334, "center_x": 2.028985507246378, "center_y": 3.18840579710145, "value_uncond": 0.013106260954482262}, {"x": 2.1739130434782616, "y": 3.0434782608695663, "x2": 2.4637681159420293, "y2": 3.333333333333334, "center_x": 2.3188405797101455, "center_y": 3.18840579710145, "value_uncond": 0.013965203607228947}, {"x": 2.4637681159420293, "y": 3.0434782608695663, "x2": 2.753623188405797, "y2": 3.333333333333334, "center_x": 2.608695652173913, "center_y": 3.18840579710145, "value_uncond": 0.014742174501615976}, {"x": 2.753623188405797, "y": 3.0434782608695663, "x2": 3.0434782608695645, "y2": 3.333333333333334, "center_x": 2.8985507246376807, "center_y": 3.18840579710145, "value_uncond": 0.015417772668133087}, {"x": 3.0434782608695663, "y": 3.0434782608695663, "x2": 3.333333333333334, "y2": 3.333333333333334, "center_x": 3.18840579710145, "center_y": 3.18840579710145, "value_uncond": 0.015974509889774988}, {"x": 3.333333333333334, "y": 3.0434782608695663, "x2": 3.6231884057971016, "y2": 3.333333333333334, "center_x": 3.4782608695652177, "center_y": 3.18840579710145, "value_uncond": 0.016397561251191222}, {"x": 3.6231884057971016, "y": 3.0434782608695663, "x2": 3.913043478260869, "y2": 3.333333333333334, "center_x": 3.7681159420289854, "center_y": 3.18840579710145, "value_uncond": 0.016675420555170413}, {"x": 3.913043478260871, "y": 3.0434782608695663, "x2": 4.202898550724639, "y2": 3.333333333333334, "center_x": 4.057971014492755, "center_y": 3.18840579710145, "value_uncond": 0.016800420196392517}, {"x": 4.202898550724639, "y": 3.0434782608695663, "x2": 4.492753623188406, "y2": 3.333333333333334, "center_x": 4.347826086956522, "center_y": 3.18840579710145, "value_uncond": 0.016769082715321383}, {"x": 4.492753623188406, "y": 3.0434782608695663, "x2": 4.782608695652174, "y2": 3.333333333333334, "center_x": 4.63768115942029, "center_y": 3.18840579710145, "value_uncond": 0.01658228153635001}, {"x": 4.782608695652174, "y": 3.0434782608695663, "x2": 5.0724637681159415, "y2": 3.333333333333334, "center_x": 4.927536231884058, "center_y": 3.18840579710145, "value_uncond": 0.016245200520618588}, {"x": 5.072463768115943, "y": 3.0434782608695663, "x2": 5.362318840579711, "y2": 3.333333333333334, "center_x": 5.217391304347827, "center_y": 3.18840579710145, "value_uncond": 0.015767094947680884}, {"x": 5.362318840579711, "y": 3.0434782608695663, "x2": 5.6521739130434785, "y2": 3.333333333333334, "center_x": 5.507246376811595, "center_y": 3.18840579710145, "value_uncond": 0.015160869307387047}, {"x": 5.6521739130434785, "y": 3.0434782608695663, "x2": 5.942028985507246, "y2": 3.333333333333334, "center_x": 5.797101449275362, "center_y": 3.18840579710145, "value_uncond": 0.01444249878183029}, {"x": 5.942028985507246, "y": 3.0434782608695663, "x2": 6.231884057971014, "y2": 3.333333333333334, "center_x": 6.08695652173913, "center_y": 3.18840579710145, "value_uncond": 0.013630330602330078}, {"x": 6.2318840579710155, "y": 3.0434782608695663, "x2": 6.521739130434783, "y2": 3.333333333333334, "center_x": 6.376811594202899, "center_y": 3.18840579710145, "value_uncond": 0.012744307871617264}, {"x": 6.521739130434785, "y": 3.0434782608695663, "x2": 6.8115942028985526, "y2": 3.333333333333334, "center_x": 6.666666666666669, "center_y": 3.18840579710145, "value_uncond": 0.011805161523141232}, {"x": 6.811594202898551, "y": 3.0434782608695663, "x2": 7.101449275362318, "y2": 3.333333333333334, "center_x": 6.956521739130435, "center_y": 3.18840579710145, "value_uncond": 0.010833615739769736}, {"x": 7.10144927536232, "y": 3.0434782608695663, "x2": 7.391304347826088, "y2": 3.333333333333334, "center_x": 7.246376811594204, "center_y": 3.18840579710145, "value_uncond": 0.00984964857789889}, {"x": 7.391304347826086, "y": 3.0434782608695663, "x2": 7.681159420289854, "y2": 3.333333333333334, "center_x": 7.53623188405797, "center_y": 3.18840579710145, "value_uncond": 0.008871843221503157}, {"x": 7.681159420289855, "y": 3.0434782608695663, "x2": 7.971014492753623, "y2": 3.333333333333334, "center_x": 7.826086956521739, "center_y": 3.18840579710145, "value_uncond": 0.007916856918158218}, {"x": 7.971014492753625, "y": 3.0434782608695663, "x2": 8.260869565217392, "y2": 3.333333333333334, "center_x": 8.115942028985508, "center_y": 3.18840579710145, "value_uncond": 0.006999025050413267}, {"x": 8.26086956521739, "y": 3.0434782608695663, "x2": 8.550724637681158, "y2": 3.333333333333334, "center_x": 8.405797101449274, "center_y": 3.18840579710145, "value_uncond": 0.00613010783649177}, {"x": 8.55072463768116, "y": 3.0434782608695663, "x2": 8.840579710144928, "y2": 3.333333333333334, "center_x": 8.695652173913043, "center_y": 3.18840579710145, "value_uncond": 0.005319177653177839}, {"x": 8.84057971014493, "y": 3.0434782608695663, "x2": 9.130434782608697, "y2": 3.333333333333334, "center_x": 8.985507246376812, "center_y": 3.18840579710145, "value_uncond": 0.0045726366292228515}, {"x": 9.130434782608695, "y": 3.0434782608695663, "x2": 9.420289855072463, "y2": 3.333333333333334, "center_x": 9.275362318840578, "center_y": 3.18840579710145, "value_uncond": 0.0038943474929438796}, {"x": 9.420289855072465, "y": 3.0434782608695663, "x2": 9.710144927536232, "y2": 3.333333333333334, "center_x": 9.565217391304348, "center_y": 3.18840579710145, "value_uncond": 0.0032858559906926666}, {"x": 9.710144927536234, "y": 3.0434782608695663, "x2": 10.000000000000002, "y2": 3.333333333333334, "center_x": 9.855072463768117, "center_y": 3.18840579710145, "value_uncond": 0.0027466806302675847}, {"x": 10.0, "y": 3.0434782608695663, "x2": 10.289855072463768, "y2": 3.333333333333334, "center_x": 10.144927536231883, "center_y": 3.18840579710145, "value_uncond": 0.0022746449575343722}, {"x": -10.0, "y": 3.333333333333334, "x2": -9.710144927536232, "y2": 3.6231884057971016, "center_x": -9.855072463768117, "center_y": 3.4782608695652177, "value_uncond": 3.2201043320822097e-07}, {"x": -9.710144927536232, "y": 3.333333333333334, "x2": -9.420289855072465, "y2": 3.6231884057971016, "center_x": -9.565217391304348, "center_y": 3.4782608695652177, "value_uncond": 5.031065924468107e-07}, {"x": -9.420289855072463, "y": 3.333333333333334, "x2": -9.130434782608695, "y2": 3.6231884057971016, "center_x": -9.275362318840578, "center_y": 3.4782608695652177, "value_uncond": 7.787461052724562e-07}, {"x": -9.130434782608695, "y": 3.333333333333334, "x2": -8.840579710144928, "y2": 3.6231884057971016, "center_x": -8.985507246376812, "center_y": 3.4782608695652177, "value_uncond": 1.1942014157115696e-06}, {"x": -8.840579710144928, "y": 3.333333333333334, "x2": -8.55072463768116, "y2": 3.6231884057971016, "center_x": -8.695652173913043, "center_y": 3.4782608695652177, "value_uncond": 1.814283246812509e-06}, {"x": -8.55072463768116, "y": 3.333333333333334, "x2": -8.260869565217392, "y2": 3.6231884057971016, "center_x": -8.405797101449277, "center_y": 3.4782608695652177, "value_uncond": 2.7307278111152564e-06}, {"x": -8.26086956521739, "y": 3.333333333333334, "x2": -7.971014492753623, "y2": 3.6231884057971016, "center_x": -8.115942028985508, "center_y": 3.4782608695652177, "value_uncond": 4.071904193697249e-06}, {"x": -7.971014492753623, "y": 3.333333333333334, "x2": -7.681159420289855, "y2": 3.6231884057971016, "center_x": -7.826086956521739, "center_y": 3.4782608695652177, "value_uncond": 6.015372184992783e-06}, {"x": -7.681159420289855, "y": 3.333333333333334, "x2": -7.391304347826088, "y2": 3.6231884057971016, "center_x": -7.536231884057972, "center_y": 3.4782608695652177, "value_uncond": 8.803862885277813e-06}, {"x": -7.391304347826087, "y": 3.333333333333334, "x2": -7.101449275362319, "y2": 3.6231884057971016, "center_x": -7.246376811594203, "center_y": 3.4782608695652177, "value_uncond": 1.2765265482287069e-05}, {"x": -7.101449275362318, "y": 3.333333333333334, "x2": -6.811594202898551, "y2": 3.6231884057971016, "center_x": -6.956521739130435, "center_y": 3.4782608695652177, "value_uncond": 1.833716729516683e-05}, {"x": -6.811594202898551, "y": 3.333333333333334, "x2": -6.521739130434783, "y2": 3.6231884057971016, "center_x": -6.666666666666667, "center_y": 3.4782608695652177, "value_uncond": 2.6096391410354376e-05}, {"x": -6.521739130434782, "y": 3.333333333333334, "x2": -6.231884057971015, "y2": 3.6231884057971016, "center_x": -6.3768115942028984, "center_y": 3.4782608695652177, "value_uncond": 3.679378637323594e-05}, {"x": -6.231884057971014, "y": 3.333333333333334, "x2": -5.942028985507246, "y2": 3.6231884057971016, "center_x": -6.08695652173913, "center_y": 3.4782608695652177, "value_uncond": 5.1394225053082035e-05}, {"x": -5.942028985507246, "y": 3.333333333333334, "x2": -5.6521739130434785, "y2": 3.6231884057971016, "center_x": -5.797101449275362, "center_y": 3.4782608695652177, "value_uncond": 7.112134742511759e-05}, {"x": -5.6521739130434785, "y": 3.333333333333334, "x2": -5.362318840579711, "y2": 3.6231884057971016, "center_x": -5.507246376811595, "center_y": 3.4782608695652177, "value_uncond": 9.75060233015565e-05}, {"x": -5.36231884057971, "y": 3.333333333333334, "x2": -5.072463768115942, "y2": 3.6231884057971016, "center_x": -5.217391304347826, "center_y": 3.4782608695652177, "value_uncond": 0.00013243681493426023}, {"x": -5.0724637681159415, "y": 3.333333333333334, "x2": -4.782608695652174, "y2": 3.6231884057971016, "center_x": -4.927536231884058, "center_y": 3.4782608695652177, "value_uncond": 0.00017820989945380452}, {"x": -4.782608695652174, "y": 3.333333333333334, "x2": -4.492753623188406, "y2": 3.6231884057971016, "center_x": -4.63768115942029, "center_y": 3.4782608695652177, "value_uncond": 0.00023757499966732003}, {"x": -4.492753623188405, "y": 3.333333333333334, "x2": -4.202898550724638, "y2": 3.6231884057971016, "center_x": -4.3478260869565215, "center_y": 3.4782608695652177, "value_uncond": 0.0003137729233999119}, {"x": -4.202898550724638, "y": 3.333333333333334, "x2": -3.91304347826087, "y2": 3.6231884057971016, "center_x": -4.057971014492754, "center_y": 3.4782608695652177, "value_uncond": 0.0004105594049694614}, {"x": -3.913043478260869, "y": 3.333333333333334, "x2": -3.6231884057971016, "y2": 3.6231884057971016, "center_x": -3.7681159420289854, "center_y": 3.4782608695652177, "value_uncond": 0.0005322091796084853}, {"x": -3.6231884057971016, "y": 3.333333333333334, "x2": -3.333333333333334, "y2": 3.6231884057971016, "center_x": -3.4782608695652177, "center_y": 3.4782608695652177, "value_uncond": 0.0006834937243695501}, {"x": -3.333333333333333, "y": 3.333333333333334, "x2": -3.0434782608695654, "y2": 3.6231884057971016, "center_x": -3.1884057971014492, "center_y": 3.4782608695652177, "value_uncond": 0.000869626000906391}, {"x": -3.0434782608695645, "y": 3.333333333333334, "x2": -2.753623188405797, "y2": 3.6231884057971016, "center_x": -2.8985507246376807, "center_y": 3.4782608695652177, "value_uncond": 0.001096165970408059}, {"x": -2.753623188405797, "y": 3.333333333333334, "x2": -2.4637681159420293, "y2": 3.6231884057971016, "center_x": -2.608695652173913, "center_y": 3.4782608695652177, "value_uncond": 0.0013688817376036064}, {"x": -2.4637681159420284, "y": 3.333333333333334, "x2": -2.1739130434782608, "y2": 3.6231884057971016, "center_x": -2.3188405797101446, "center_y": 3.4782608695652177, "value_uncond": 0.001693563004469659}, {"x": -2.1739130434782608, "y": 3.333333333333334, "x2": -1.8840579710144931, "y2": 3.6231884057971016, "center_x": -2.028985507246377, "center_y": 3.4782608695652177, "value_uncond": 0.002075786107581996}, {"x": -1.8840579710144922, "y": 3.333333333333334, "x2": -1.5942028985507246, "y2": 3.6231884057971016, "center_x": -1.7391304347826084, "center_y": 3.4782608695652177, "value_uncond": 0.0025206332374069643}, {"x": -1.5942028985507246, "y": 3.333333333333334, "x2": -1.304347826086957, "y2": 3.6231884057971016, "center_x": -1.4492753623188408, "center_y": 3.4782608695652177, "value_uncond": 0.0030323723692441797}, {"x": -1.304347826086957, "y": 3.333333333333334, "x2": -1.0144927536231894, "y2": 3.6231884057971016, "center_x": -1.1594202898550732, "center_y": 3.4782608695652177, "value_uncond": 0.0036141087570637355}, {"x": -1.0144927536231876, "y": 3.333333333333334, "x2": -0.72463768115942, "y2": 3.6231884057971016, "center_x": -0.8695652173913038, "center_y": 3.4782608695652177, "value_uncond": 0.004267423245273602}, {"x": -0.72463768115942, "y": 3.333333333333334, "x2": -0.43478260869565233, "y2": 3.6231884057971016, "center_x": -0.5797101449275361, "center_y": 3.4782608695652177, "value_uncond": 0.004992016754393206}, {"x": -0.43478260869565233, "y": 3.333333333333334, "x2": -0.1449275362318847, "y2": 3.6231884057971016, "center_x": -0.2898550724637685, "center_y": 3.4782608695652177, "value_uncond": 0.005785383658431456}, {"x": -0.14492753623188293, "y": 3.333333333333334, "x2": 0.1449275362318847, "y2": 3.6231884057971016, "center_x": 8.881784197001252e-16, "center_y": 3.4782608695652177, "value_uncond": 0.00664253894489519}, {"x": 0.1449275362318847, "y": 3.333333333333334, "x2": 0.43478260869565233, "y2": 3.6231884057971016, "center_x": 0.2898550724637685, "center_y": 3.4782608695652177, "value_uncond": 0.007555824616950575}, {"x": 0.43478260869565233, "y": 3.333333333333334, "x2": 0.72463768115942, "y2": 3.6231884057971016, "center_x": 0.5797101449275361, "center_y": 3.4782608695652177, "value_uncond": 0.008514819431164715}, {"x": 0.72463768115942, "y": 3.333333333333334, "x2": 1.0144927536231876, "y2": 3.6231884057971016, "center_x": 0.8695652173913038, "center_y": 3.4782608695652177, "value_uncond": 0.009506372569980895}, {"x": 1.0144927536231894, "y": 3.333333333333334, "x2": 1.304347826086957, "y2": 3.6231884057971016, "center_x": 1.1594202898550732, "center_y": 3.4782608695652177, "value_uncond": 0.010514776212139686}, {"x": 1.304347826086957, "y": 3.333333333333334, "x2": 1.5942028985507246, "y2": 3.6231884057971016, "center_x": 1.4492753623188408, "center_y": 3.4782608695652177, "value_uncond": 0.011522084382001354}, {"x": 1.5942028985507246, "y": 3.333333333333334, "x2": 1.8840579710144922, "y2": 3.6231884057971016, "center_x": 1.7391304347826084, "center_y": 3.4782608695652177, "value_uncond": 0.01250857634283142}, {"x": 1.884057971014494, "y": 3.333333333333334, "x2": 2.1739130434782616, "y2": 3.6231884057971016, "center_x": 2.028985507246378, "center_y": 3.4782608695652177, "value_uncond": 0.013453352763753928}, {"x": 2.1739130434782616, "y": 3.333333333333334, "x2": 2.4637681159420293, "y2": 3.6231884057971016, "center_x": 2.3188405797101455, "center_y": 3.4782608695652177, "value_uncond": 0.014335042709602577}, {"x": 2.4637681159420293, "y": 3.333333333333334, "x2": 2.753623188405797, "y2": 3.6231884057971016, "center_x": 2.608695652173913, "center_y": 3.4782608695652177, "value_uncond": 0.01513259004714306}, {"x": 2.753623188405797, "y": 3.333333333333334, "x2": 3.0434782608695645, "y2": 3.6231884057971016, "center_x": 2.8985507246376807, "center_y": 3.4782608695652177, "value_uncond": 0.015826080012913326}, {"x": 3.0434782608695663, "y": 3.333333333333334, "x2": 3.333333333333334, "y2": 3.6231884057971016, "center_x": 3.18840579710145, "center_y": 3.4782608695652177, "value_uncond": 0.016397561251191222}, {"x": 3.333333333333334, "y": 3.333333333333334, "x2": 3.6231884057971016, "y2": 3.6231884057971016, "center_x": 3.4782608695652177, "center_y": 3.4782608695652177, "value_uncond": 0.01683181623986307}, {"x": 3.6231884057971016, "y": 3.333333333333334, "x2": 3.913043478260869, "y2": 3.6231884057971016, "center_x": 3.7681159420289854, "center_y": 3.4782608695652177, "value_uncond": 0.017117034064237667}, {"x": 3.913043478260871, "y": 3.333333333333334, "x2": 4.202898550724639, "y2": 3.6231884057971016, "center_x": 4.057971014492755, "center_y": 3.4782608695652177, "value_uncond": 0.017245344058563587}, {"x": 4.202898550724639, "y": 3.333333333333334, "x2": 4.492753623188406, "y2": 3.6231884057971016, "center_x": 4.347826086956522, "center_y": 3.4782608695652177, "value_uncond": 0.0172131766700886}, {"x": 4.492753623188406, "y": 3.333333333333334, "x2": 4.782608695652174, "y2": 3.6231884057971016, "center_x": 4.63768115942029, "center_y": 3.4782608695652177, "value_uncond": 0.017021428454017287}, {"x": 4.782608695652174, "y": 3.333333333333334, "x2": 5.0724637681159415, "y2": 3.6231884057971016, "center_x": 4.927536231884058, "center_y": 3.4782608695652177, "value_uncond": 0.01667542055517041}, {"x": 5.072463768115943, "y": 3.333333333333334, "x2": 5.362318840579711, "y2": 3.6231884057971016, "center_x": 5.217391304347827, "center_y": 3.4782608695652177, "value_uncond": 0.016184653359752416}, {"x": 5.362318840579711, "y": 3.333333333333334, "x2": 5.6521739130434785, "y2": 3.6231884057971016, "center_x": 5.507246376811595, "center_y": 3.4782608695652177, "value_uncond": 0.01556237310593858}, {"x": 5.6521739130434785, "y": 3.333333333333334, "x2": 5.942028985507246, "y2": 3.6231884057971016, "center_x": 5.797101449275362, "center_y": 3.4782608695652177, "value_uncond": 0.014824978044985428}, {"x": 5.942028985507246, "y": 3.333333333333334, "x2": 6.231884057971014, "y2": 3.6231884057971016, "center_x": 6.08695652173913, "center_y": 3.4782608695652177, "value_uncond": 0.01399130129612019}, {"x": 6.2318840579710155, "y": 3.333333333333334, "x2": 6.521739130434783, "y2": 3.6231884057971016, "center_x": 6.376811594202899, "center_y": 3.4782608695652177, "value_uncond": 0.01308181411328583}, {"x": 6.521739130434785, "y": 3.333333333333334, "x2": 6.8115942028985526, "y2": 3.6231884057971016, "center_x": 6.666666666666669, "center_y": 3.4782608695652177, "value_uncond": 0.012117796445186641}, {"x": 6.811594202898551, "y": 3.333333333333334, "x2": 7.101449275362318, "y2": 3.6231884057971016, "center_x": 6.956521739130435, "center_y": 3.4782608695652177, "value_uncond": 0.011120521311170306}, {"x": 7.10144927536232, "y": 3.333333333333334, "x2": 7.391304347826088, "y2": 3.6231884057971016, "center_x": 7.246376811594204, "center_y": 3.4782608695652177, "value_uncond": 0.010110495844519491}, {"x": 7.391304347826086, "y": 3.333333333333334, "x2": 7.681159420289854, "y2": 3.6231884057971016, "center_x": 7.53623188405797, "center_y": 3.4782608695652177, "value_uncond": 0.0091067953658272}, {"x": 7.681159420289855, "y": 3.333333333333334, "x2": 7.971014492753623, "y2": 3.6231884057971016, "center_x": 7.826086956521739, "center_y": 3.4782608695652177, "value_uncond": 0.008126518254904964}, {"x": 7.971014492753625, "y": 3.333333333333334, "x2": 8.260869565217392, "y2": 3.6231884057971016, "center_x": 8.115942028985508, "center_y": 3.4782608695652177, "value_uncond": 0.007184379536816565}, {"x": 8.26086956521739, "y": 3.333333333333334, "x2": 8.550724637681158, "y2": 3.6231884057971016, "center_x": 8.405797101449274, "center_y": 3.4782608695652177, "value_uncond": 0.006292450874478565}, {"x": 8.55072463768116, "y": 3.333333333333334, "x2": 8.840579710144928, "y2": 3.6231884057971016, "center_x": 8.695652173913043, "center_y": 3.4782608695652177, "value_uncond": 0.005460044907529852}, {"x": 8.84057971014493, "y": 3.333333333333334, "x2": 9.130434782608697, "y2": 3.6231884057971016, "center_x": 8.985507246376812, "center_y": 3.4782608695652177, "value_uncond": 0.00469373331166271}, {"x": 9.130434782608695, "y": 3.333333333333334, "x2": 9.420289855072463, "y2": 3.6231884057971016, "center_x": 9.275362318840578, "center_y": 3.4782608695652177, "value_uncond": 0.003997481111445211}, {"x": 9.420289855072465, "y": 3.333333333333334, "x2": 9.710144927536232, "y2": 3.6231884057971016, "center_x": 9.565217391304348, "center_y": 3.4782608695652177, "value_uncond": 0.00337287498907646}, {"x": 9.710144927536234, "y": 3.333333333333334, "x2": 10.000000000000002, "y2": 3.6231884057971016, "center_x": 9.855072463768117, "center_y": 3.4782608695652177, "value_uncond": 0.002819420701044596}, {"x": 10.0, "y": 3.333333333333334, "x2": 10.289855072463768, "y2": 3.6231884057971016, "center_x": 10.144927536231883, "center_y": 3.4782608695652177, "value_uncond": 0.0023348841543963327}, {"x": -10.0, "y": 3.6231884057971016, "x2": -9.710144927536232, "y2": 3.913043478260869, "center_x": -9.855072463768117, "center_y": 3.7681159420289854, "value_uncond": 3.2746695161816275e-07}, {"x": -9.710144927536232, "y": 3.6231884057971016, "x2": -9.420289855072465, "y2": 3.913043478260869, "center_x": -9.565217391304348, "center_y": 3.7681159420289854, "value_uncond": 5.116318143053023e-07}, {"x": -9.420289855072463, "y": 3.6231884057971016, "x2": -9.130434782608695, "y2": 3.913043478260869, "center_x": -9.275362318840578, "center_y": 3.7681159420289854, "value_uncond": 7.919420828616108e-07}, {"x": -9.130434782608695, "y": 3.6231884057971016, "x2": -8.840579710144928, "y2": 3.913043478260869, "center_x": -8.985507246376812, "center_y": 3.7681159420289854, "value_uncond": 1.2144373501348344e-06}, {"x": -8.840579710144928, "y": 3.6231884057971016, "x2": -8.55072463768116, "y2": 3.913043478260869, "center_x": -8.695652173913043, "center_y": 3.7681159420289854, "value_uncond": 1.8450265672647379e-06}, {"x": -8.55072463768116, "y": 3.6231884057971016, "x2": -8.260869565217392, "y2": 3.913043478260869, "center_x": -8.405797101449277, "center_y": 3.7681159420289854, "value_uncond": 2.7770004316183796e-06}, {"x": -8.26086956521739, "y": 3.6231884057971016, "x2": -7.971014492753623, "y2": 3.913043478260869, "center_x": -8.115942028985508, "center_y": 3.7681159420289854, "value_uncond": 4.14090326299778e-06}, {"x": -7.971014492753623, "y": 3.6231884057971016, "x2": -7.681159420289855, "y2": 3.913043478260869, "center_x": -7.826086956521739, "center_y": 3.7681159420289854, "value_uncond": 6.117303630949506e-06}, {"x": -7.681159420289855, "y": 3.6231884057971016, "x2": -7.391304347826088, "y2": 3.913043478260869, "center_x": -7.536231884057972, "center_y": 3.7681159420289854, "value_uncond": 8.953045753154204e-06}, {"x": -7.391304347826087, "y": 3.6231884057971016, "x2": -7.101449275362319, "y2": 3.913043478260869, "center_x": -7.246376811594203, "center_y": 3.7681159420289854, "value_uncond": 1.2981574952194378e-05}, {"x": -7.101449275362318, "y": 3.6231884057971016, "x2": -6.811594202898551, "y2": 3.913043478260869, "center_x": -6.956521739130435, "center_y": 3.7681159420289854, "value_uncond": 1.8647893534485788e-05}, {"x": -6.811594202898551, "y": 3.6231884057971016, "x2": -6.521739130434783, "y2": 3.913043478260869, "center_x": -6.666666666666667, "center_y": 3.7681159420289854, "value_uncond": 2.6538598946131853e-05}, {"x": -6.521739130434782, "y": 3.6231884057971016, "x2": -6.231884057971015, "y2": 3.913043478260869, "center_x": -6.3768115942028984, "center_y": 3.7681159420289854, "value_uncond": 3.741726298148362e-05}, {"x": -6.231884057971014, "y": 3.6231884057971016, "x2": -5.942028985507246, "y2": 3.913043478260869, "center_x": -6.08695652173913, "center_y": 3.7681159420289854, "value_uncond": 5.2265108435253366e-05}, {"x": -5.942028985507246, "y": 3.6231884057971016, "x2": -5.6521739130434785, "y2": 3.913043478260869, "center_x": -5.797101449275362, "center_y": 3.7681159420289854, "value_uncond": 7.232651005819936e-05}, {"x": -5.6521739130434785, "y": 3.6231884057971016, "x2": -5.362318840579711, "y2": 3.913043478260869, "center_x": -5.507246376811595, "center_y": 3.7681159420289854, "value_uncond": 9.91582784969064e-05}, {"x": -5.36231884057971, "y": 3.6231884057971016, "x2": -5.072463768115942, "y2": 3.913043478260869, "center_x": -5.217391304347826, "center_y": 3.7681159420289854, "value_uncond": 0.0001346809779933359}, {"x": -5.0724637681159415, "y": 3.6231884057971016, "x2": -4.782608695652174, "y2": 3.913043478260869, "center_x": -4.927536231884058, "center_y": 3.7681159420289854, "value_uncond": 0.0001812296947676252}, {"x": -4.782608695652174, "y": 3.6231884057971016, "x2": -4.492753623188406, "y2": 3.913043478260869, "center_x": -4.63768115942029, "center_y": 3.7681159420289854, "value_uncond": 0.00024160074612066055}, {"x": -4.492753623188405, "y": 3.6231884057971016, "x2": -4.202898550724638, "y2": 3.913043478260869, "center_x": -4.3478260869565215, "center_y": 3.7681159420289854, "value_uncond": 0.00031908985588565455}, {"x": -4.202898550724638, "y": 3.6231884057971016, "x2": -3.91304347826087, "y2": 3.913043478260869, "center_x": -4.057971014492754, "center_y": 3.7681159420289854, "value_uncond": 0.00041751639990056063}, {"x": -3.913043478260869, "y": 3.6231884057971016, "x2": -3.6231884057971016, "y2": 3.913043478260869, "center_x": -3.7681159420289854, "center_y": 3.7681159420289854, "value_uncond": 0.0005412275494716628}, {"x": -3.6231884057971016, "y": 3.6231884057971016, "x2": -3.333333333333334, "y2": 3.913043478260869, "center_x": -3.4782608695652177, "center_y": 3.7681159420289854, "value_uncond": 0.0006950756350950657}, {"x": -3.333333333333333, "y": 3.6231884057971016, "x2": -3.0434782608695654, "y2": 3.913043478260869, "center_x": -3.1884057971014492, "center_y": 3.7681159420289854, "value_uncond": 0.0008843619528953801}, {"x": -3.0434782608695645, "y": 3.6231884057971016, "x2": -2.753623188405797, "y2": 3.913043478260869, "center_x": -2.8985507246376807, "center_y": 3.7681159420289854, "value_uncond": 0.0011147406784952837}, {"x": -2.753623188405797, "y": 3.6231884057971016, "x2": -2.4637681159420293, "y2": 3.913043478260869, "center_x": -2.608695652173913, "center_y": 3.7681159420289854, "value_uncond": 0.0013920776580831067}, {"x": -2.4637681159420284, "y": 3.6231884057971016, "x2": -2.1739130434782608, "y2": 3.913043478260869, "center_x": -2.3188405797101446, "center_y": 3.7681159420289854, "value_uncond": 0.0017222607010635757}, {"x": -2.1739130434782608, "y": 3.6231884057971016, "x2": -1.8840579710144931, "y2": 3.913043478260869, "center_x": -2.028985507246377, "center_y": 3.7681159420289854, "value_uncond": 0.0021109606359296495}, {"x": -1.8840579710144922, "y": 3.6231884057971016, "x2": -1.5942028985507246, "y2": 3.913043478260869, "center_x": -1.7391304347826084, "center_y": 3.7681159420289854, "value_uncond": 0.002563345771679817}, {"x": -1.5942028985507246, "y": 3.6231884057971016, "x2": -1.304347826086957, "y2": 3.913043478260869, "center_x": -1.4492753623188408, "center_y": 3.7681159420289854, "value_uncond": 0.0030837564051393158}, {"x": -1.304347826086957, "y": 3.6231884057971016, "x2": -1.0144927536231894, "y2": 3.913043478260869, "center_x": -1.1594202898550732, "center_y": 3.7681159420289854, "value_uncond": 0.0036753504093045447}, {"x": -1.0144927536231876, "y": 3.6231884057971016, "x2": -0.72463768115942, "y2": 3.913043478260869, "center_x": -0.8695652173913038, "center_y": 3.7681159420289854, "value_uncond": 0.00433973541624538}, {"x": -0.72463768115942, "y": 3.6231884057971016, "x2": -0.43478260869565233, "y2": 3.913043478260869, "center_x": -0.5797101449275361, "center_y": 3.7681159420289854, "value_uncond": 0.005076607278531506}, {"x": -0.43478260869565233, "y": 3.6231884057971016, "x2": -0.1449275362318847, "y2": 3.913043478260869, "center_x": -0.2898550724637685, "center_y": 3.7681159420289854, "value_uncond": 0.005883417911937755}, {"x": -0.14492753623188293, "y": 3.6231884057971016, "x2": 0.1449275362318847, "y2": 3.913043478260869, "center_x": 8.881784197001252e-16, "center_y": 3.7681159420289854, "value_uncond": 0.006755097832135153}, {"x": 0.1449275362318847, "y": 3.6231884057971016, "x2": 0.43478260869565233, "y2": 3.913043478260869, "center_x": 0.2898550724637685, "center_y": 3.7681159420289854, "value_uncond": 0.007683859276305922}, {"x": 0.43478260869565233, "y": 3.6231884057971016, "x2": 0.72463768115942, "y2": 3.913043478260869, "center_x": 0.5797101449275361, "center_y": 3.7681159420289854, "value_uncond": 0.008659104411376637}, {"x": 0.72463768115942, "y": 3.6231884057971016, "x2": 1.0144927536231876, "y2": 3.913043478260869, "center_x": 0.8695652173913038, "center_y": 3.7681159420289854, "value_uncond": 0.00966745957707897}, {"x": 1.0144927536231894, "y": 3.6231884057971016, "x2": 1.304347826086957, "y2": 3.913043478260869, "center_x": 1.1594202898550732, "center_y": 3.7681159420289854, "value_uncond": 0.01069295078060424}, {"x": 1.304347826086957, "y": 3.6231884057971016, "x2": 1.5942028985507246, "y2": 3.913043478260869, "center_x": 1.4492753623188408, "center_y": 3.7681159420289854, "value_uncond": 0.011717327948878703}, {"x": 1.5942028985507246, "y": 3.6231884057971016, "x2": 1.8840579710144922, "y2": 3.913043478260869, "center_x": 1.7391304347826084, "center_y": 3.7681159420289854, "value_uncond": 0.012720536174122625}, {"x": 1.884057971014494, "y": 3.6231884057971016, "x2": 2.1739130434782616, "y2": 3.913043478260869, "center_x": 2.028985507246378, "center_y": 3.7681159420289854, "value_uncond": 0.013681321982948132}, {"x": 2.1739130434782616, "y": 3.6231884057971016, "x2": 2.4637681159420293, "y2": 3.913043478260869, "center_x": 2.3188405797101455, "center_y": 3.7681159420289854, "value_uncond": 0.014577952306266703}, {"x": 2.4637681159420293, "y": 3.6231884057971016, "x2": 2.753623188405797, "y2": 3.913043478260869, "center_x": 2.608695652173913, "center_y": 3.7681159420289854, "value_uncond": 0.015389014211291014}, {"x": 2.753623188405797, "y": 3.6231884057971016, "x2": 3.0434782608695645, "y2": 3.913043478260869, "center_x": 2.8985507246376807, "center_y": 3.7681159420289854, "value_uncond": 0.016094255475699756}, {"x": 3.0434782608695663, "y": 3.6231884057971016, "x2": 3.333333333333334, "y2": 3.913043478260869, "center_x": 3.18840579710145, "center_y": 3.7681159420289854, "value_uncond": 0.016675420555170413}, {"x": 3.333333333333334, "y": 3.6231884057971016, "x2": 3.6231884057971016, "y2": 3.913043478260869, "center_x": 3.4782608695652177, "center_y": 3.7681159420289854, "value_uncond": 0.017117034064237667}, {"x": 3.6231884057971016, "y": 3.6231884057971016, "x2": 3.913043478260869, "y2": 3.913043478260869, "center_x": 3.7681159420289854, "center_y": 3.7681159420289854, "value_uncond": 0.017407084950367555}, {"x": 3.913043478260871, "y": 3.6231884057971016, "x2": 4.202898550724639, "y2": 3.913043478260869, "center_x": 4.057971014492755, "center_y": 3.7681159420289854, "value_uncond": 0.017537569178115803}, {"x": 4.202898550724639, "y": 3.6231884057971016, "x2": 4.492753623188406, "y2": 3.913043478260869, "center_x": 4.347826086956522, "center_y": 3.7681159420289854, "value_uncond": 0.017504856708086578}, {"x": 4.492753623188406, "y": 3.6231884057971016, "x2": 4.782608695652174, "y2": 3.913043478260869, "center_x": 4.63768115942029, "center_y": 3.7681159420289854, "value_uncond": 0.01730985928775613}, {"x": 4.782608695652174, "y": 3.6231884057971016, "x2": 5.0724637681159415, "y2": 3.913043478260869, "center_x": 4.927536231884058, "center_y": 3.7681159420289854, "value_uncond": 0.0169579882295972}, {"x": 5.072463768115943, "y": 3.6231884057971016, "x2": 5.362318840579711, "y2": 3.913043478260869, "center_x": 5.217391304347827, "center_y": 3.7681159420289854, "value_uncond": 0.01645890490538141}, {"x": 5.362318840579711, "y": 3.6231884057971016, "x2": 5.6521739130434785, "y2": 3.913043478260869, "center_x": 5.507246376811595, "center_y": 3.7681159420289854, "value_uncond": 0.015826080012913323}, {"x": 5.6521739130434785, "y": 3.6231884057971016, "x2": 5.942028985507246, "y2": 3.913043478260869, "center_x": 5.797101449275362, "center_y": 3.7681159420289854, "value_uncond": 0.015076189674445703}, {"x": 5.942028985507246, "y": 3.6231884057971016, "x2": 6.231884057971014, "y2": 3.913043478260869, "center_x": 6.08695652173913, "center_y": 3.7681159420289854, "value_uncond": 0.014228386139430086}, {"x": 6.2318840579710155, "y": 3.6231884057971016, "x2": 6.521739130434783, "y2": 3.913043478260869, "center_x": 6.376811594202899, "center_y": 3.7681159420289854, "value_uncond": 0.013303487550489101}, {"x": 6.521739130434785, "y": 3.6231884057971016, "x2": 6.8115942028985526, "y2": 3.913043478260869, "center_x": 6.666666666666669, "center_y": 3.7681159420289854, "value_uncond": 0.012323134448469077}, {"x": 6.811594202898551, "y": 3.6231884057971016, "x2": 7.101449275362318, "y2": 3.913043478260869, "center_x": 6.956521739130435, "center_y": 3.7681159420289854, "value_uncond": 0.011308960327440668}, {"x": 7.10144927536232, "y": 3.6231884057971016, "x2": 7.391304347826088, "y2": 3.913043478260869, "center_x": 7.246376811594204, "center_y": 3.7681159420289854, "value_uncond": 0.010281819817347378}, {"x": 7.391304347826086, "y": 3.6231884057971016, "x2": 7.681159420289854, "y2": 3.913043478260869, "center_x": 7.53623188405797, "center_y": 3.7681159420289854, "value_uncond": 0.009261111473147477}, {"x": 7.681159420289855, "y": 3.6231884057971016, "x2": 7.971014492753623, "y2": 3.913043478260869, "center_x": 7.826086956521739, "center_y": 3.7681159420289854, "value_uncond": 0.008264223409439334}, {"x": 7.971014492753625, "y": 3.6231884057971016, "x2": 8.260869565217392, "y2": 3.913043478260869, "center_x": 8.115942028985508, "center_y": 3.7681159420289854, "value_uncond": 0.0073061199997452924}, {"x": 8.26086956521739, "y": 3.6231884057971016, "x2": 8.550724637681158, "y2": 3.913043478260869, "center_x": 8.405797101449274, "center_y": 3.7681159420289854, "value_uncond": 0.006399077463245162}, {"x": 8.55072463768116, "y": 3.6231884057971016, "x2": 8.840579710144928, "y2": 3.913043478260869, "center_x": 8.695652173913043, "center_y": 3.7681159420289854, "value_uncond": 0.005552566243749356}, {"x": 8.84057971014493, "y": 3.6231884057971016, "x2": 9.130434782608697, "y2": 3.913043478260869, "center_x": 8.985507246376812, "center_y": 3.7681159420289854, "value_uncond": 0.004773269375048221}, {"x": 9.130434782608695, "y": 3.6231884057971016, "x2": 9.420289855072463, "y2": 3.913043478260869, "center_x": 9.275362318840578, "center_y": 3.7681159420289854, "value_uncond": 0.004065219069686742}, {"x": 9.420289855072465, "y": 3.6231884057971016, "x2": 9.710144927536232, "y2": 3.913043478260869, "center_x": 9.565217391304348, "center_y": 3.7681159420289854, "value_uncond": 0.003430028896448236}, {"x": 9.710144927536234, "y": 3.6231884057971016, "x2": 10.000000000000002, "y2": 3.913043478260869, "center_x": 9.855072463768117, "center_y": 3.7681159420289854, "value_uncond": 0.0028671962367853064}, {"x": 10.0, "y": 3.6231884057971016, "x2": 10.289855072463768, "y2": 3.913043478260869, "center_x": 10.144927536231883, "center_y": 3.7681159420289854, "value_uncond": 0.002374449140681441}, {"x": -10.0, "y": 3.913043478260871, "x2": -9.710144927536232, "y2": 4.202898550724639, "center_x": -9.855072463768117, "center_y": 4.057971014492755, "value_uncond": 3.2992165741277494e-07}, {"x": -9.710144927536232, "y": 3.913043478260871, "x2": -9.420289855072465, "y2": 4.202898550724639, "center_x": -9.565217391304348, "center_y": 4.057971014492755, "value_uncond": 5.154670275171308e-07}, {"x": -9.420289855072463, "y": 3.913043478260871, "x2": -9.130434782608695, "y2": 4.202898550724639, "center_x": -9.275362318840578, "center_y": 4.057971014492755, "value_uncond": 7.978785134241195e-07}, {"x": -9.130434782608695, "y": 3.913043478260871, "x2": -8.840579710144928, "y2": 4.202898550724639, "center_x": -8.985507246376812, "center_y": 4.057971014492755, "value_uncond": 1.2235408226710357e-06}, {"x": -8.840579710144928, "y": 3.913043478260871, "x2": -8.55072463768116, "y2": 4.202898550724639, "center_x": -8.695652173913043, "center_y": 4.057971014492755, "value_uncond": 1.8588569626176071e-06}, {"x": -8.55072463768116, "y": 3.913043478260871, "x2": -8.260869565217392, "y2": 4.202898550724639, "center_x": -8.405797101449277, "center_y": 4.057971014492755, "value_uncond": 2.7978169415515185e-06}, {"x": -8.26086956521739, "y": 3.913043478260871, "x2": -7.971014492753623, "y2": 4.202898550724639, "center_x": -8.115942028985508, "center_y": 4.057971014492755, "value_uncond": 4.171943644887863e-06}, {"x": -7.971014492753623, "y": 3.913043478260871, "x2": -7.681159420289855, "y2": 4.202898550724639, "center_x": -7.826086956521739, "center_y": 4.057971014492755, "value_uncond": 6.1631591916285006e-06}, {"x": -7.681159420289855, "y": 3.913043478260871, "x2": -7.391304347826088, "y2": 4.202898550724639, "center_x": -7.536231884057972, "center_y": 4.057971014492755, "value_uncond": 9.020158153905162e-06}, {"x": -7.391304347826087, "y": 3.913043478260871, "x2": -7.101449275362319, "y2": 4.202898550724639, "center_x": -7.246376811594203, "center_y": 4.057971014492755, "value_uncond": 1.3078885374210632e-05}, {"x": -7.101449275362318, "y": 3.913043478260871, "x2": -6.811594202898551, "y2": 4.202898550724639, "center_x": -6.956521739130435, "center_y": 4.057971014492755, "value_uncond": 1.878767891462938e-05}, {"x": -6.811594202898551, "y": 3.913043478260871, "x2": -6.521739130434783, "y2": 4.202898550724639, "center_x": -6.666666666666667, "center_y": 4.057971014492755, "value_uncond": 2.673753337994889e-05}, {"x": -6.521739130434782, "y": 3.913043478260871, "x2": -6.231884057971015, "y2": 4.202898550724639, "center_x": -6.3768115942028984, "center_y": 4.057971014492755, "value_uncond": 3.769774433022827e-05}, {"x": -6.231884057971014, "y": 3.913043478260871, "x2": -5.942028985507246, "y2": 4.202898550724639, "center_x": -6.08695652173913, "center_y": 4.057971014492755, "value_uncond": 5.265688984677617e-05}, {"x": -5.942028985507246, "y": 3.913043478260871, "x2": -5.6521739130434785, "y2": 4.202898550724639, "center_x": -5.797101449275362, "center_y": 4.057971014492755, "value_uncond": 7.28686725648786e-05}, {"x": -5.6521739130434785, "y": 3.913043478260871, "x2": -5.362318840579711, "y2": 4.202898550724639, "center_x": -5.507246376811595, "center_y": 4.057971014492755, "value_uncond": 9.990157304802774e-05}, {"x": -5.36231884057971, "y": 3.913043478260871, "x2": -5.072463768115942, "y2": 4.202898550724639, "center_x": -5.217391304347826, "center_y": 4.057971014492755, "value_uncond": 0.00013569055216706725}, {"x": -5.0724637681159415, "y": 3.913043478260871, "x2": -4.782608695652174, "y2": 4.202898550724639, "center_x": -4.927536231884058, "center_y": 4.057971014492755, "value_uncond": 0.0001825882000448861}, {"x": -4.782608695652174, "y": 3.913043478260871, "x2": -4.492753623188406, "y2": 4.202898550724639, "center_x": -4.63768115942029, "center_y": 4.057971014492755, "value_uncond": 0.00024341179529235364}, {"x": -4.492753623188405, "y": 3.913043478260871, "x2": -4.202898550724638, "y2": 4.202898550724639, "center_x": -4.3478260869565215, "center_y": 4.057971014492755, "value_uncond": 0.0003214817666246586}, {"x": -4.202898550724638, "y": 3.913043478260871, "x2": -3.91304347826087, "y2": 4.202898550724639, "center_x": -4.057971014492754, "center_y": 4.057971014492755, "value_uncond": 0.0004206461200787862}, {"x": -3.913043478260869, "y": 3.913043478260871, "x2": -3.6231884057971016, "y2": 4.202898550724639, "center_x": -3.7681159420289854, "center_y": 4.057971014492755, "value_uncond": 0.0005452846135366828}, {"x": -3.6231884057971016, "y": 3.913043478260871, "x2": -3.333333333333334, "y2": 4.202898550724639, "center_x": -3.4782608695652177, "center_y": 4.057971014492755, "value_uncond": 0.0007002859507642661}, {"x": -3.333333333333333, "y": 3.913043478260871, "x2": -3.0434782608695654, "y2": 4.202898550724639, "center_x": -3.1884057971014492, "center_y": 4.057971014492755, "value_uncond": 0.000890991166620855}, {"x": -3.0434782608695645, "y": 3.913043478260871, "x2": -2.753623188405797, "y2": 4.202898550724639, "center_x": -2.8985507246376807, "center_y": 4.057971014492755, "value_uncond": 0.001123096820663128}, {"x": -2.753623188405797, "y": 3.913043478260871, "x2": -2.4637681159420293, "y2": 4.202898550724639, "center_x": -2.608695652173913, "center_y": 4.057971014492755, "value_uncond": 0.0014025127297047182}, {"x": -2.4637681159420284, "y": 3.913043478260871, "x2": -2.1739130434782608, "y2": 4.202898550724639, "center_x": -2.3188405797101446, "center_y": 4.057971014492755, "value_uncond": 0.001735170838412833}, {"x": -2.1739130434782608, "y": 3.913043478260871, "x2": -1.8840579710144931, "y2": 4.202898550724639, "center_x": -2.028985507246377, "center_y": 4.057971014492755, "value_uncond": 0.002126784484045035}, {"x": -1.8840579710144922, "y": 3.913043478260871, "x2": -1.5942028985507246, "y2": 4.202898550724639, "center_x": -1.7391304347826084, "center_y": 4.057971014492755, "value_uncond": 0.002582560717457531}, {"x": -1.5942028985507246, "y": 3.913043478260871, "x2": -1.304347826086957, "y2": 4.202898550724639, "center_x": -1.4492753623188408, "center_y": 4.057971014492755, "value_uncond": 0.003106872370519827}, {"x": -1.304347826086957, "y": 3.913043478260871, "x2": -1.0144927536231894, "y2": 4.202898550724639, "center_x": -1.1594202898550732, "center_y": 4.057971014492755, "value_uncond": 0.0037029009877747312}, {"x": -1.0144927536231876, "y": 3.913043478260871, "x2": -0.72463768115942, "y2": 4.202898550724639, "center_x": -0.8695652173913038, "center_y": 4.057971014492755, "value_uncond": 0.004372266252168516}, {"x": -0.72463768115942, "y": 3.913043478260871, "x2": -0.43478260869565233, "y2": 4.202898550724639, "center_x": -0.5797101449275361, "center_y": 4.057971014492755, "value_uncond": 0.005114661736369165}, {"x": -0.43478260869565233, "y": 3.913043478260871, "x2": -0.1449275362318847, "y2": 4.202898550724639, "center_x": -0.2898550724637685, "center_y": 4.057971014492755, "value_uncond": 0.005927520255606916}, {"x": -0.14492753623188293, "y": 3.913043478260871, "x2": 0.1449275362318847, "y2": 4.202898550724639, "center_x": 8.881784197001252e-16, "center_y": 4.057971014492755, "value_uncond": 0.006805734324488884}, {"x": 0.1449275362318847, "y": 3.913043478260871, "x2": 0.43478260869565233, "y2": 4.202898550724639, "center_x": 0.2898550724637685, "center_y": 4.057971014492755, "value_uncond": 0.007741457802805548}, {"x": 0.43478260869565233, "y": 3.913043478260871, "x2": 0.72463768115942, "y2": 4.202898550724639, "center_x": 0.5797101449275361, "center_y": 4.057971014492755, "value_uncond": 0.008724013415689048}, {"x": 0.72463768115942, "y": 3.913043478260871, "x2": 1.0144927536231876, "y2": 4.202898550724639, "center_x": 0.8695652173913038, "center_y": 4.057971014492755, "value_uncond": 0.009739927253361315}, {"x": 1.0144927536231894, "y": 3.913043478260871, "x2": 1.304347826086957, "y2": 4.202898550724639, "center_x": 1.1594202898550732, "center_y": 4.057971014492755, "value_uncond": 0.010773105581303807}, {"x": 1.304347826086957, "y": 3.913043478260871, "x2": 1.5942028985507246, "y2": 4.202898550724639, "center_x": 1.4492753623188408, "center_y": 4.057971014492755, "value_uncond": 0.01180516152314124}, {"x": 1.5942028985507246, "y": 3.913043478260871, "x2": 1.8840579710144922, "y2": 4.202898550724639, "center_x": 1.7391304347826084, "center_y": 4.057971014492755, "value_uncond": 0.012815889838676837}, {"x": 1.884057971014494, "y": 3.913043478260871, "x2": 2.1739130434782616, "y2": 4.202898550724639, "center_x": 2.028985507246378, "center_y": 4.057971014492755, "value_uncond": 0.013783877737608386}, {"x": 2.1739130434782616, "y": 3.913043478260871, "x2": 2.4637681159420293, "y2": 4.202898550724639, "center_x": 2.3188405797101455, "center_y": 4.057971014492755, "value_uncond": 0.01468722923886384}, {"x": 2.4637681159420293, "y": 3.913043478260871, "x2": 2.753623188405797, "y2": 4.202898550724639, "center_x": 2.608695652173913, "center_y": 4.057971014492755, "value_uncond": 0.015504370897427292}, {"x": 2.753623188405797, "y": 3.913043478260871, "x2": 3.0434782608695645, "y2": 4.202898550724639, "center_x": 2.8985507246376807, "center_y": 4.057971014492755, "value_uncond": 0.01621489867948244}, {"x": 3.0434782608695663, "y": 3.913043478260871, "x2": 3.333333333333334, "y2": 4.202898550724639, "center_x": 3.18840579710145, "center_y": 4.057971014492755, "value_uncond": 0.016800420196392517}, {"x": 3.333333333333334, "y": 3.913043478260871, "x2": 3.6231884057971016, "y2": 4.202898550724639, "center_x": 3.4782608695652177, "center_y": 4.057971014492755, "value_uncond": 0.017245344058563587}, {"x": 3.6231884057971016, "y": 3.913043478260871, "x2": 3.913043478260869, "y2": 4.202898550724639, "center_x": 3.7681159420289854, "center_y": 4.057971014492755, "value_uncond": 0.017537569178115803}, {"x": 3.913043478260871, "y": 3.913043478260871, "x2": 4.202898550724639, "y2": 4.202898550724639, "center_x": 4.057971014492755, "center_y": 4.057971014492755, "value_uncond": 0.017669031521024604}, {"x": 4.202898550724639, "y": 3.913043478260871, "x2": 4.492753623188406, "y2": 4.202898550724639, "center_x": 4.347826086956522, "center_y": 4.057971014492755, "value_uncond": 0.017636073836968927}, {"x": 4.492753623188406, "y": 3.913043478260871, "x2": 4.782608695652174, "y2": 4.202898550724639, "center_x": 4.63768115942029, "center_y": 4.057971014492755, "value_uncond": 0.017439614707921755}, {"x": 4.782608695652174, "y": 3.913043478260871, "x2": 5.0724637681159415, "y2": 4.202898550724639, "center_x": 4.927536231884058, "center_y": 4.057971014492755, "value_uncond": 0.017085106009777626}, {"x": 5.072463768115943, "y": 3.913043478260871, "x2": 5.362318840579711, "y2": 4.202898550724639, "center_x": 5.217391304347827, "center_y": 4.057971014492755, "value_uncond": 0.016582281536350007}, {"x": 5.362318840579711, "y": 3.913043478260871, "x2": 5.6521739130434785, "y2": 4.202898550724639, "center_x": 5.507246376811595, "center_y": 4.057971014492755, "value_uncond": 0.015944712962350577}, {"x": 5.6521739130434785, "y": 3.913043478260871, "x2": 5.942028985507246, "y2": 4.202898550724639, "center_x": 5.797101449275362, "center_y": 4.057971014492755, "value_uncond": 0.01518920141493328}, {"x": 5.942028985507246, "y": 3.913043478260871, "x2": 6.231884057971014, "y2": 4.202898550724639, "center_x": 6.08695652173913, "center_y": 4.057971014492755, "value_uncond": 0.014335042709602576}, {"x": 6.2318840579710155, "y": 3.913043478260871, "x2": 6.521739130434783, "y2": 4.202898550724639, "center_x": 6.376811594202899, "center_y": 4.057971014492755, "value_uncond": 0.013403211042638046}, {"x": 6.521739130434785, "y": 3.913043478260871, "x2": 6.8115942028985526, "y2": 4.202898550724639, "center_x": 6.666666666666669, "center_y": 4.057971014492755, "value_uncond": 0.012415509173274013}, {"x": 6.811594202898551, "y": 3.913043478260871, "x2": 7.101449275362318, "y2": 4.202898550724639, "center_x": 6.956521739130435, "center_y": 4.057971014492755, "value_uncond": 0.011393732761146204}, {"x": 7.10144927536232, "y": 3.913043478260871, "x2": 7.391304347826088, "y2": 4.202898550724639, "center_x": 7.246376811594204, "center_y": 4.057971014492755, "value_uncond": 0.010358892763365537}, {"x": 7.391304347826086, "y": 3.913043478260871, "x2": 7.681159420289854, "y2": 4.202898550724639, "center_x": 7.53623188405797, "center_y": 4.057971014492755, "value_uncond": 0.009330533147259464}, {"x": 7.681159420289855, "y": 3.913043478260871, "x2": 7.971014492753623, "y2": 4.202898550724639, "center_x": 7.826086956521739, "center_y": 4.057971014492755, "value_uncond": 0.008326172369451556}, {"x": 7.971014492753625, "y": 3.913043478260871, "x2": 8.260869565217392, "y2": 4.202898550724639, "center_x": 8.115942028985508, "center_y": 4.057971014492755, "value_uncond": 0.007360886977026152}, {"x": 8.26086956521739, "y": 3.913043478260871, "x2": 8.550724637681158, "y2": 4.202898550724639, "center_x": 8.405797101449274, "center_y": 4.057971014492755, "value_uncond": 0.006447045212209076}, {"x": 8.55072463768116, "y": 3.913043478260871, "x2": 8.840579710144928, "y2": 4.202898550724639, "center_x": 8.695652173913043, "center_y": 4.057971014492755, "value_uncond": 0.005594188509648697}, {"x": 8.84057971014493, "y": 3.913043478260871, "x2": 9.130434782608697, "y2": 4.202898550724639, "center_x": 8.985507246376812, "center_y": 4.057971014492755, "value_uncond": 0.004809049999432683}, {"x": 9.130434782608695, "y": 3.913043478260871, "x2": 9.420289855072463, "y2": 4.202898550724639, "center_x": 9.275362318840578, "center_y": 4.057971014492755, "value_uncond": 0.004095692119737797}, {"x": 9.420289855072465, "y": 3.913043478260871, "x2": 9.710144927536232, "y2": 4.202898550724639, "center_x": 9.565217391304348, "center_y": 4.057971014492755, "value_uncond": 0.003455740534725601}, {"x": 9.710144927536234, "y": 3.913043478260871, "x2": 10.000000000000002, "y2": 4.202898550724639, "center_x": 9.855072463768117, "center_y": 4.057971014492755, "value_uncond": 0.0028886888581993076}, {"x": 10.0, "y": 3.913043478260871, "x2": 10.289855072463768, "y2": 4.202898550724639, "center_x": 10.144927536231883, "center_y": 4.057971014492755, "value_uncond": 0.002392248109511243}, {"x": -10.0, "y": 4.202898550724639, "x2": -9.710144927536232, "y2": 4.492753623188406, "center_x": -9.855072463768117, "center_y": 4.347826086956522, "value_uncond": 3.2930626127546e-07}, {"x": -9.710144927536232, "y": 4.202898550724639, "x2": -9.420289855072465, "y2": 4.492753623188406, "center_x": -9.565217391304348, "center_y": 4.347826086956522, "value_uncond": 5.145055373860044e-07}, {"x": -9.420289855072463, "y": 4.202898550724639, "x2": -9.130434782608695, "y2": 4.492753623188406, "center_x": -9.275362318840578, "center_y": 4.347826086956522, "value_uncond": 7.963902469094011e-07}, {"x": -9.130434782608695, "y": 4.202898550724639, "x2": -8.840579710144928, "y2": 4.492753623188406, "center_x": -8.985507246376812, "center_y": 4.347826086956522, "value_uncond": 1.2212585769342034e-06}, {"x": -8.840579710144928, "y": 4.202898550724639, "x2": -8.55072463768116, "y2": 4.492753623188406, "center_x": -8.695652173913043, "center_y": 4.347826086956522, "value_uncond": 1.8553896746451031e-06}, {"x": -8.55072463768116, "y": 4.202898550724639, "x2": -8.260869565217392, "y2": 4.492753623188406, "center_x": -8.405797101449277, "center_y": 4.347826086956522, "value_uncond": 2.7925982306846808e-06}, {"x": -8.26086956521739, "y": 4.202898550724639, "x2": -7.971014492753623, "y2": 4.492753623188406, "center_x": -8.115942028985508, "center_y": 4.347826086956522, "value_uncond": 4.164161803512874e-06}, {"x": -7.971014492753623, "y": 4.202898550724639, "x2": -7.681159420289855, "y2": 4.492753623188406, "center_x": -7.826086956521739, "center_y": 4.347826086956522, "value_uncond": 6.1516631765141e-06}, {"x": -7.681159420289855, "y": 4.202898550724639, "x2": -7.391304347826088, "y2": 4.492753623188406, "center_x": -7.536231884057972, "center_y": 4.347826086956522, "value_uncond": 9.003333036907952e-06}, {"x": -7.391304347826087, "y": 4.202898550724639, "x2": -7.101449275362319, "y2": 4.492753623188406, "center_x": -7.246376811594203, "center_y": 4.347826086956522, "value_uncond": 1.3054489596125642e-05}, {"x": -7.101449275362318, "y": 4.202898550724639, "x2": -6.811594202898551, "y2": 4.492753623188406, "center_x": -6.956521739130435, "center_y": 4.347826086956522, "value_uncond": 1.8752634640410333e-05}, {"x": -6.811594202898551, "y": 4.202898550724639, "x2": -6.521739130434783, "y2": 4.492753623188406, "center_x": -6.666666666666667, "center_y": 4.347826086956522, "value_uncond": 2.6687660404369222e-05}, {"x": -6.521739130434782, "y": 4.202898550724639, "x2": -6.231884057971015, "y2": 4.492753623188406, "center_x": -6.3768115942028984, "center_y": 4.347826086956522, "value_uncond": 3.762742749674654e-05}, {"x": -6.231884057971014, "y": 4.202898550724639, "x2": -5.942028985507246, "y2": 4.492753623188406, "center_x": -6.08695652173913, "center_y": 4.347826086956522, "value_uncond": 5.2558670024322436e-05}, {"x": -5.942028985507246, "y": 4.202898550724639, "x2": -5.6521739130434785, "y2": 4.492753623188406, "center_x": -5.797101449275362, "center_y": 4.347826086956522, "value_uncond": 7.273275211643228e-05}, {"x": -5.6521739130434785, "y": 4.202898550724639, "x2": -5.362318840579711, "y2": 4.492753623188406, "center_x": -5.507246376811595, "center_y": 4.347826086956522, "value_uncond": 9.971522868176951e-05}, {"x": -5.36231884057971, "y": 4.202898550724639, "x2": -5.072463768115942, "y2": 4.492753623188406, "center_x": -5.217391304347826, "center_y": 4.347826086956522, "value_uncond": 0.00013543745134813776}, {"x": -5.0724637681159415, "y": 4.202898550724639, "x2": -4.782608695652174, "y2": 4.492753623188406, "center_x": -4.927536231884058, "center_y": 4.347826086956522, "value_uncond": 0.0001822476220000616}, {"x": -4.782608695652174, "y": 4.202898550724639, "x2": -4.492753623188406, "y2": 4.492753623188406, "center_x": -4.63768115942029, "center_y": 4.347826086956522, "value_uncond": 0.00024295776423608866}, {"x": -4.492753623188405, "y": 4.202898550724639, "x2": -4.202898550724638, "y2": 4.492753623188406, "center_x": -4.3478260869565215, "center_y": 4.347826086956522, "value_uncond": 0.0003208821132434606}, {"x": -4.202898550724638, "y": 4.202898550724639, "x2": -3.91304347826087, "y2": 4.492753623188406, "center_x": -4.057971014492754, "center_y": 4.347826086956522, "value_uncond": 0.0004198614974519994}, {"x": -3.913043478260869, "y": 4.202898550724639, "x2": -3.6231884057971016, "y2": 4.492753623188406, "center_x": -3.7681159420289854, "center_y": 4.347826086956522, "value_uncond": 0.0005442675052706195}, {"x": -3.6231884057971016, "y": 4.202898550724639, "x2": -3.333333333333334, "y2": 4.492753623188406, "center_x": -3.4782608695652177, "center_y": 4.347826086956522, "value_uncond": 0.0006989797216658312}, {"x": -3.333333333333333, "y": 4.202898550724639, "x2": -3.0434782608695654, "y2": 4.492753623188406, "center_x": -3.1884057971014492, "center_y": 4.347826086956522, "value_uncond": 0.0008893292189735857}, {"x": -3.0434782608695645, "y": 4.202898550724639, "x2": -2.753623188405797, "y2": 4.492753623188406, "center_x": -2.8985507246376807, "center_y": 4.347826086956522, "value_uncond": 0.0011210019310742272}, {"x": -2.753623188405797, "y": 4.202898550724639, "x2": -2.4637681159420293, "y2": 4.492753623188406, "center_x": -2.608695652173913, "center_y": 4.347826086956522, "value_uncond": 0.0013998966513206438}, {"x": -2.4637681159420284, "y": 4.202898550724639, "x2": -2.1739130434782608, "y2": 4.492753623188406, "center_x": -2.3188405797101446, "center_y": 4.347826086956522, "value_uncond": 0.0017319342596446646}, {"x": -2.1739130434782608, "y": 4.202898550724639, "x2": -1.8840579710144931, "y2": 4.492753623188406, "center_x": -2.028985507246377, "center_y": 4.347826086956522, "value_uncond": 0.0021228174363324154}, {"x": -1.8840579710144922, "y": 4.202898550724639, "x2": -1.5942028985507246, "y2": 4.492753623188406, "center_x": -1.7391304347826084, "center_y": 4.347826086956522, "value_uncond": 0.0025777435196343624}, {"x": -1.5942028985507246, "y": 4.202898550724639, "x2": -1.304347826086957, "y2": 4.492753623188406, "center_x": -1.4492753623188408, "center_y": 4.347826086956522, "value_uncond": 0.003101077184865929}, {"x": -1.304347826086957, "y": 4.202898550724639, "x2": -1.0144927536231894, "y2": 4.492753623188406, "center_x": -1.1594202898550732, "center_y": 4.347826086956522, "value_uncond": 0.0036959940420997896}, {"x": -1.0144927536231876, "y": 4.202898550724639, "x2": -0.72463768115942, "y2": 4.492753623188406, "center_x": -0.8695652173913038, "center_y": 4.347826086956522, "value_uncond": 0.004364110753120658}, {"x": -0.72463768115942, "y": 4.202898550724639, "x2": -0.43478260869565233, "y2": 4.492753623188406, "center_x": -0.5797101449275361, "center_y": 4.347826086956522, "value_uncond": 0.005105121462169169}, {"x": -0.43478260869565233, "y": 4.202898550724639, "x2": -0.1449275362318847, "y2": 4.492753623188406, "center_x": -0.2898550724637685, "center_y": 4.347826086956522, "value_uncond": 0.005916463772992943}, {"x": -0.14492753623188293, "y": 4.202898550724639, "x2": 0.1449275362318847, "y2": 4.492753623188406, "center_x": 8.881784197001252e-16, "center_y": 4.347826086956522, "value_uncond": 0.006793039727087408}, {"x": 0.1449275362318847, "y": 4.202898550724639, "x2": 0.43478260869565233, "y2": 4.492753623188406, "center_x": 0.2898550724637685, "center_y": 4.347826086956522, "value_uncond": 0.007727017819488317}, {"x": 0.43478260869565233, "y": 4.202898550724639, "x2": 0.72463768115942, "y2": 4.492753623188406, "center_x": 0.5797101449275361, "center_y": 4.347826086956522, "value_uncond": 0.008707740691430809}, {"x": 0.72463768115942, "y": 4.202898550724639, "x2": 1.0144927536231876, "y2": 4.492753623188406, "center_x": 0.8695652173913038, "center_y": 4.347826086956522, "value_uncond": 0.009721759565745862}, {"x": 1.0144927536231894, "y": 4.202898550724639, "x2": 1.304347826086957, "y2": 4.492753623188406, "center_x": 1.1594202898550732, "center_y": 4.347826086956522, "value_uncond": 0.010753010727229628}, {"x": 1.304347826086957, "y": 4.202898550724639, "x2": 1.5942028985507246, "y2": 4.492753623188406, "center_x": 1.4492753623188408, "center_y": 4.347826086956522, "value_uncond": 0.011783141596172239}, {"x": 1.5942028985507246, "y": 4.202898550724639, "x2": 1.8840579710144922, "y2": 4.492753623188406, "center_x": 1.7391304347826084, "center_y": 4.347826086956522, "value_uncond": 0.012791984620799281}, {"x": 1.884057971014494, "y": 4.202898550724639, "x2": 2.1739130434782616, "y2": 4.492753623188406, "center_x": 2.028985507246378, "center_y": 4.347826086956522, "value_uncond": 0.013758166951649482}, {"x": 2.1739130434782616, "y": 4.202898550724639, "x2": 2.4637681159420293, "y2": 4.492753623188406, "center_x": 2.3188405797101455, "center_y": 4.347826086956522, "value_uncond": 0.014659833449777619}, {"x": 2.4637681159420293, "y": 4.202898550724639, "x2": 2.753623188405797, "y2": 4.492753623188406, "center_x": 2.608695652173913, "center_y": 4.347826086956522, "value_uncond": 0.015475450910674683}, {"x": 2.753623188405797, "y": 4.202898550724639, "x2": 3.0434782608695645, "y2": 4.492753623188406, "center_x": 2.8985507246376807, "center_y": 4.347826086956522, "value_uncond": 0.01618465335975242}, {"x": 3.0434782608695663, "y": 4.202898550724639, "x2": 3.333333333333334, "y2": 4.492753623188406, "center_x": 3.18840579710145, "center_y": 4.347826086956522, "value_uncond": 0.016769082715321383}, {"x": 3.333333333333334, "y": 4.202898550724639, "x2": 3.6231884057971016, "y2": 4.492753623188406, "center_x": 3.4782608695652177, "center_y": 4.347826086956522, "value_uncond": 0.0172131766700886}, {"x": 3.6231884057971016, "y": 4.202898550724639, "x2": 3.913043478260869, "y2": 4.492753623188406, "center_x": 3.7681159420289854, "center_y": 4.347826086956522, "value_uncond": 0.017504856708086578}, {"x": 3.913043478260871, "y": 4.202898550724639, "x2": 4.202898550724639, "y2": 4.492753623188406, "center_x": 4.057971014492755, "center_y": 4.347826086956522, "value_uncond": 0.017636073836968927}, {"x": 4.202898550724639, "y": 4.202898550724639, "x2": 4.492753623188406, "y2": 4.492753623188406, "center_x": 4.347826086956522, "center_y": 4.347826086956522, "value_uncond": 0.017603177628208996}, {"x": 4.492753623188406, "y": 4.202898550724639, "x2": 4.782608695652174, "y2": 4.492753623188406, "center_x": 4.63768115942029, "center_y": 4.347826086956522, "value_uncond": 0.017407084950367555}, {"x": 4.782608695652174, "y": 4.202898550724639, "x2": 5.0724637681159415, "y2": 4.492753623188406, "center_x": 4.927536231884058, "center_y": 4.347826086956522, "value_uncond": 0.017053237510066252}, {"x": 5.072463768115943, "y": 4.202898550724639, "x2": 5.362318840579711, "y2": 4.492753623188406, "center_x": 5.217391304347827, "center_y": 4.347826086956522, "value_uncond": 0.016551350944871517}, {"x": 5.362318840579711, "y": 4.202898550724639, "x2": 5.6521739130434785, "y2": 4.492753623188406, "center_x": 5.507246376811595, "center_y": 4.347826086956522, "value_uncond": 0.01591497161452705}, {"x": 5.6521739130434785, "y": 4.202898550724639, "x2": 5.942028985507246, "y2": 4.492753623188406, "center_x": 5.797101449275362, "center_y": 4.347826086956522, "value_uncond": 0.015160869307387045}, {"x": 5.942028985507246, "y": 4.202898550724639, "x2": 6.231884057971014, "y2": 4.492753623188406, "center_x": 6.08695652173913, "center_y": 4.347826086956522, "value_uncond": 0.014308303846864935}, {"x": 6.2318840579710155, "y": 4.202898550724639, "x2": 6.521739130434783, "y2": 4.492753623188406, "center_x": 6.376811594202899, "center_y": 4.347826086956522, "value_uncond": 0.013378210306499836}, {"x": 6.521739130434785, "y": 4.202898550724639, "x2": 6.8115942028985526, "y2": 4.492753623188406, "center_x": 6.666666666666669, "center_y": 4.347826086956522, "value_uncond": 0.01239235077728404}, {"x": 6.811594202898551, "y": 4.202898550724639, "x2": 7.101449275362318, "y2": 4.492753623188406, "center_x": 6.956521739130435, "center_y": 4.347826086956522, "value_uncond": 0.011372480263853986}, {"x": 7.10144927536232, "y": 4.202898550724639, "x2": 7.391304347826088, "y2": 4.492753623188406, "center_x": 7.246376811594204, "center_y": 4.347826086956522, "value_uncond": 0.010339570532010896}, {"x": 7.391304347826086, "y": 4.202898550724639, "x2": 7.681159420289854, "y2": 4.492753623188406, "center_x": 7.53623188405797, "center_y": 4.347826086956522, "value_uncond": 0.009313129094118662}, {"x": 7.681159420289855, "y": 4.202898550724639, "x2": 7.971014492753623, "y2": 4.492753623188406, "center_x": 7.826086956521739, "center_y": 4.347826086956522, "value_uncond": 0.00831064172998108}, {"x": 7.971014492753625, "y": 4.202898550724639, "x2": 8.260869565217392, "y2": 4.492753623188406, "center_x": 8.115942028985508, "center_y": 4.347826086956522, "value_uncond": 0.007347156864706769}, {"x": 8.26086956521739, "y": 4.202898550724639, "x2": 8.550724637681158, "y2": 4.492753623188406, "center_x": 8.405797101449274, "center_y": 4.347826086956522, "value_uncond": 0.006435019670291634}, {"x": 8.55072463768116, "y": 4.202898550724639, "x2": 8.840579710144928, "y2": 4.492753623188406, "center_x": 8.695652173913043, "center_y": 4.347826086956522, "value_uncond": 0.005583753783940638}, {"x": 8.84057971014493, "y": 4.202898550724639, "x2": 9.130434782608697, "y2": 4.492753623188406, "center_x": 8.985507246376812, "center_y": 4.347826086956522, "value_uncond": 0.00480007977657125}, {"x": 9.130434782608695, "y": 4.202898550724639, "x2": 9.420289855072463, "y2": 4.492753623188406, "center_x": 9.275362318840578, "center_y": 4.347826086956522, "value_uncond": 0.004088052508777171}, {"x": 9.420289855072465, "y": 4.202898550724639, "x2": 9.710144927536232, "y2": 4.492753623188406, "center_x": 9.565217391304348, "center_y": 4.347826086956522, "value_uncond": 0.003449294612401767}, {"x": 9.710144927536234, "y": 4.202898550724639, "x2": 10.000000000000002, "y2": 4.492753623188406, "center_x": 9.855072463768117, "center_y": 4.347826086956522, "value_uncond": 0.0028833006458000928}, {"x": 10.0, "y": 4.202898550724639, "x2": 10.289855072463768, "y2": 4.492753623188406, "center_x": 10.144927536231883, "center_y": 4.347826086956522, "value_uncond": 0.002387785897913383}, {"x": -10.0, "y": 4.492753623188406, "x2": -9.710144927536232, "y2": 4.782608695652174, "center_x": -9.855072463768117, "center_y": 4.63768115942029, "value_uncond": 3.256379152547972e-07}, {"x": -9.710144927536232, "y": 4.492753623188406, "x2": -9.420289855072465, "y2": 4.782608695652174, "center_x": -9.565217391304348, "center_y": 4.63768115942029, "value_uncond": 5.087741421390123e-07}, {"x": -9.420289855072463, "y": 4.492753623188406, "x2": -9.130434782608695, "y2": 4.782608695652174, "center_x": -9.275362318840578, "center_y": 4.63768115942029, "value_uncond": 7.875187636225984e-07}, {"x": -9.130434782608695, "y": 4.492753623188406, "x2": -8.840579710144928, "y2": 4.782608695652174, "center_x": -8.985507246376812, "center_y": 4.63768115942029, "value_uncond": 1.2076542226667046e-06}, {"x": -8.840579710144928, "y": 4.492753623188406, "x2": -8.55072463768116, "y2": 4.782608695652174, "center_x": -8.695652173913043, "center_y": 4.63768115942029, "value_uncond": 1.834721342061928e-06}, {"x": -8.55072463768116, "y": 4.492753623188406, "x2": -8.260869565217392, "y2": 4.782608695652174, "center_x": -8.405797101449277, "center_y": 4.63768115942029, "value_uncond": 2.761489752615771e-06}, {"x": -8.26086956521739, "y": 4.492753623188406, "x2": -7.971014492753623, "y2": 4.782608695652174, "center_x": -8.115942028985508, "center_y": 4.63768115942029, "value_uncond": 4.117774630909027e-06}, {"x": -7.971014492753623, "y": 4.492753623188406, "x2": -7.681159420289855, "y2": 4.782608695652174, "center_x": -7.826086956521739, "center_y": 4.63768115942029, "value_uncond": 6.08313599744797e-06}, {"x": -7.681159420289855, "y": 4.492753623188406, "x2": -7.391304347826088, "y2": 4.782608695652174, "center_x": -7.536231884057972, "center_y": 4.63768115942029, "value_uncond": 8.90303934437165e-06}, {"x": -7.391304347826087, "y": 4.492753623188406, "x2": -7.101449275362319, "y2": 4.782608695652174, "center_x": -7.246376811594203, "center_y": 4.63768115942029, "value_uncond": 1.2909067566261262e-05}, {"x": -7.101449275362318, "y": 4.492753623188406, "x2": -6.811594202898551, "y2": 4.782608695652174, "center_x": -6.956521739130435, "center_y": 4.63768115942029, "value_uncond": 1.8543737450318508e-05}, {"x": -6.811594202898551, "y": 4.492753623188406, "x2": -6.521739130434783, "y2": 4.782608695652174, "center_x": -6.666666666666667, "center_y": 4.63768115942029, "value_uncond": 2.639037005687939e-05}, {"x": -6.521739130434782, "y": 4.492753623188406, "x2": -6.231884057971015, "y2": 4.782608695652174, "center_x": -6.3768115942028984, "center_y": 4.63768115942029, "value_uncond": 3.72082723206778e-05}, {"x": -6.231884057971014, "y": 4.492753623188406, "x2": -5.942028985507246, "y2": 4.782608695652174, "center_x": -6.08695652173913, "center_y": 4.63768115942029, "value_uncond": 5.197318650728187e-05}, {"x": -5.942028985507246, "y": 4.492753623188406, "x2": -5.6521739130434785, "y2": 4.782608695652174, "center_x": -5.797101449275362, "center_y": 4.63768115942029, "value_uncond": 7.192253702740012e-05}, {"x": -5.6521739130434785, "y": 4.492753623188406, "x2": -5.362318840579711, "y2": 4.782608695652174, "center_x": -5.507246376811595, "center_y": 4.63768115942029, "value_uncond": 9.860443910577588e-05}, {"x": -5.36231884057971, "y": 4.492753623188406, "x2": -5.072463768115942, "y2": 4.782608695652174, "center_x": -5.217391304347826, "center_y": 4.63768115942029, "value_uncond": 0.00013392872985047388}, {"x": -5.0724637681159415, "y": 4.492753623188406, "x2": -4.782608695652174, "y2": 4.782608695652174, "center_x": -4.927536231884058, "center_y": 4.63768115942029, "value_uncond": 0.00018021745307357436}, {"x": -4.782608695652174, "y": 4.492753623188406, "x2": -4.492753623188406, "y2": 4.782608695652174, "center_x": -4.63768115942029, "center_y": 4.63768115942029, "value_uncond": 0.00024025130750437475}, {"x": -4.492753623188405, "y": 4.492753623188406, "x2": -4.202898550724638, "y2": 4.782608695652174, "center_x": -4.3478260869565215, "center_y": 4.63768115942029, "value_uncond": 0.00031730760901551403}, {"x": -4.202898550724638, "y": 4.492753623188406, "x2": -3.91304347826087, "y2": 4.782608695652174, "center_x": -4.057971014492754, "center_y": 4.63768115942029, "value_uncond": 0.0004151844006745436}, {"x": -3.913043478260869, "y": 4.492753623188406, "x2": -3.6231884057971016, "y2": 4.782608695652174, "center_x": -3.7681159420289854, "center_y": 4.63768115942029, "value_uncond": 0.000538204573064586}, {"x": -3.6231884057971016, "y": 4.492753623188406, "x2": -3.333333333333334, "y2": 4.782608695652174, "center_x": -3.4782608695652177, "center_y": 4.63768115942029, "value_uncond": 0.0006911933544386626}, {"x": -3.333333333333333, "y": 4.492753623188406, "x2": -3.0434782608695654, "y2": 4.782608695652174, "center_x": -3.1884057971014492, "center_y": 4.63768115942029, "value_uncond": 0.0008794224310223179}, {"x": -3.0434782608695645, "y": 4.492753623188406, "x2": -2.753623188405797, "y2": 4.782608695652174, "center_x": -2.8985507246376807, "center_y": 4.63768115942029, "value_uncond": 0.0011085143975633734}, {"x": -2.753623188405797, "y": 4.492753623188406, "x2": -2.4637681159420293, "y2": 4.782608695652174, "center_x": -2.608695652173913, "center_y": 4.63768115942029, "value_uncond": 0.0013843023371089397}, {"x": -2.4637681159420284, "y": 4.492753623188406, "x2": -2.1739130434782608, "y2": 4.782608695652174, "center_x": -2.3188405797101446, "center_y": 4.63768115942029, "value_uncond": 0.0017126411732490121}, {"x": -2.1739130434782608, "y": 4.492753623188406, "x2": -1.8840579710144931, "y2": 4.782608695652174, "center_x": -2.028985507246377, "center_y": 4.63768115942029, "value_uncond": 0.002099170060588626}, {"x": -1.8840579710144922, "y": 4.492753623188406, "x2": -1.5942028985507246, "y2": 4.782608695652174, "center_x": -1.7391304347826084, "center_y": 4.63768115942029, "value_uncond": 0.0025490284410144945}, {"x": -1.5942028985507246, "y": 4.492753623188406, "x2": -1.304347826086957, "y2": 4.782608695652174, "center_x": -1.4492753623188408, "center_y": 4.63768115942029, "value_uncond": 0.00306653236902547}, {"x": -1.304347826086957, "y": 4.492753623188406, "x2": -1.0144927536231894, "y2": 4.782608695652174, "center_x": -1.1594202898550732, "center_y": 4.63768115942029, "value_uncond": 0.003654822079610475}, {"x": -1.0144927536231876, "y": 4.492753623188406, "x2": -0.72463768115942, "y2": 4.782608695652174, "center_x": -0.8695652173913038, "center_y": 4.63768115942029, "value_uncond": 0.004315496225559185}, {"x": -0.72463768115942, "y": 4.492753623188406, "x2": -0.43478260869565233, "y2": 4.782608695652174, "center_x": -0.5797101449275361, "center_y": 4.63768115942029, "value_uncond": 0.005048252358228621}, {"x": -0.43478260869565233, "y": 4.492753623188406, "x2": -0.1449275362318847, "y2": 4.782608695652174, "center_x": -0.2898550724637685, "center_y": 4.63768115942029, "value_uncond": 0.005850556625482321}, {"x": -0.14492753623188293, "y": 4.492753623188406, "x2": 0.1449275362318847, "y2": 4.782608695652174, "center_x": 8.881784197001252e-16, "center_y": 4.63768115942029, "value_uncond": 0.0067173678581270435}, {"x": 0.1449275362318847, "y": 4.492753623188406, "x2": 0.43478260869565233, "y2": 4.782608695652174, "center_x": 0.2898550724637685, "center_y": 4.63768115942029, "value_uncond": 0.007640941791173754}, {"x": 0.43478260869565233, "y": 4.492753623188406, "x2": 0.72463768115942, "y2": 4.782608695652174, "center_x": 0.5797101449275361, "center_y": 4.63768115942029, "value_uncond": 0.008610739784765228}, {"x": 0.72463768115942, "y": 4.492753623188406, "x2": 1.0144927536231876, "y2": 4.782608695652174, "center_x": 0.8695652173913038, "center_y": 4.63768115942029, "value_uncond": 0.00961346287597533}, {"x": 1.0144927536231894, "y": 4.492753623188406, "x2": 1.304347826086957, "y2": 4.782608695652174, "center_x": 1.1594202898550732, "center_y": 4.63768115942029, "value_uncond": 0.010633226293254413}, {"x": 1.304347826086957, "y": 4.492753623188406, "x2": 1.5942028985507246, "y2": 4.782608695652174, "center_x": 1.4492753623188408, "center_y": 4.63768115942029, "value_uncond": 0.011651881897623518}, {"x": 1.5942028985507246, "y": 4.492753623188406, "x2": 1.8840579710144922, "y2": 4.782608695652174, "center_x": 1.7391304347826084, "center_y": 4.63768115942029, "value_uncond": 0.012649486796134982}, {"x": 1.884057971014494, "y": 4.492753623188406, "x2": 2.1739130434782616, "y2": 4.782608695652174, "center_x": 2.028985507246378, "center_y": 4.63768115942029, "value_uncond": 0.013604906224710316}, {"x": 2.1739130434782616, "y": 4.492753623188406, "x2": 2.4637681159420293, "y2": 4.782608695652174, "center_x": 2.3188405797101455, "center_y": 4.63768115942029, "value_uncond": 0.014496528502307806}, {"x": 2.4637681159420293, "y": 4.492753623188406, "x2": 2.753623188405797, "y2": 4.782608695652174, "center_x": 2.608695652173913, "center_y": 4.63768115942029, "value_uncond": 0.015303060296095244}, {"x": 2.753623188405797, "y": 4.492753623188406, "x2": 3.0434782608695645, "y2": 4.782608695652174, "center_x": 2.8985507246376807, "center_y": 4.63768115942029, "value_uncond": 0.016004362500665503}, {"x": 3.0434782608695663, "y": 4.492753623188406, "x2": 3.333333333333334, "y2": 4.782608695652174, "center_x": 3.18840579710145, "center_y": 4.63768115942029, "value_uncond": 0.01658228153635001}, {"x": 3.333333333333334, "y": 4.492753623188406, "x2": 3.6231884057971016, "y2": 4.782608695652174, "center_x": 3.4782608695652177, "center_y": 4.63768115942029, "value_uncond": 0.017021428454017287}, {"x": 3.6231884057971016, "y": 4.492753623188406, "x2": 3.913043478260869, "y2": 4.782608695652174, "center_x": 3.7681159420289854, "center_y": 4.63768115942029, "value_uncond": 0.01730985928775613}, {"x": 3.913043478260871, "y": 4.492753623188406, "x2": 4.202898550724639, "y2": 4.782608695652174, "center_x": 4.057971014492755, "center_y": 4.63768115942029, "value_uncond": 0.017439614707921755}, {"x": 4.202898550724639, "y": 4.492753623188406, "x2": 4.492753623188406, "y2": 4.782608695652174, "center_x": 4.347826086956522, "center_y": 4.63768115942029, "value_uncond": 0.017407084950367555}, {"x": 4.492753623188406, "y": 4.492753623188406, "x2": 4.782608695652174, "y2": 4.782608695652174, "center_x": 4.63768115942029, "center_y": 4.63768115942029, "value_uncond": 0.017213176670088596}, {"x": 4.782608695652174, "y": 4.492753623188406, "x2": 5.0724637681159415, "y2": 4.782608695652174, "center_x": 4.927536231884058, "center_y": 4.63768115942029, "value_uncond": 0.016863270955172423}, {"x": 5.072463768115943, "y": 4.492753623188406, "x2": 5.362318840579711, "y2": 4.782608695652174, "center_x": 5.217391304347827, "center_y": 4.63768115942029, "value_uncond": 0.016366975214692422}, {"x": 5.362318840579711, "y": 4.492753623188406, "x2": 5.6521739130434785, "y2": 4.782608695652174, "center_x": 5.507246376811595, "center_y": 4.63768115942029, "value_uncond": 0.015737684907116793}, {"x": 5.6521739130434785, "y": 4.492753623188406, "x2": 5.942028985507246, "y2": 4.782608695652174, "center_x": 5.797101449275362, "center_y": 4.63768115942029, "value_uncond": 0.014991983011760197}, {"x": 5.942028985507246, "y": 4.492753623188406, "x2": 6.231884057971014, "y2": 4.782608695652174, "center_x": 6.08695652173913, "center_y": 4.63768115942029, "value_uncond": 0.014148914804956699}, {"x": 6.2318840579710155, "y": 4.492753623188406, "x2": 6.521739130434783, "y2": 4.782608695652174, "center_x": 6.376811594202899, "center_y": 4.63768115942029, "value_uncond": 0.01322918215151925}, {"x": 6.521739130434785, "y": 4.492753623188406, "x2": 6.8115942028985526, "y2": 4.782608695652174, "center_x": 6.666666666666669, "center_y": 4.63768115942029, "value_uncond": 0.01225430472105531}, {"x": 6.811594202898551, "y": 4.492753623188406, "x2": 7.101449275362318, "y2": 4.782608695652174, "center_x": 6.956521739130435, "center_y": 4.63768115942029, "value_uncond": 0.011245795175755779}, {"x": 7.10144927536232, "y": 4.492753623188406, "x2": 7.391304347826088, "y2": 4.782608695652174, "center_x": 7.246376811594204, "center_y": 4.63768115942029, "value_uncond": 0.01022439166395793}, {"x": 7.391304347826086, "y": 4.492753623188406, "x2": 7.681159420289854, "y2": 4.782608695652174, "center_x": 7.53623188405797, "center_y": 4.63768115942029, "value_uncond": 0.009209384391785931}, {"x": 7.681159420289855, "y": 4.492753623188406, "x2": 7.971014492753623, "y2": 4.782608695652174, "center_x": 7.826086956521739, "center_y": 4.63768115942029, "value_uncond": 0.008218064354132682}, {"x": 7.971014492753625, "y": 4.492753623188406, "x2": 8.260869565217392, "y2": 4.782608695652174, "center_x": 8.115942028985508, "center_y": 4.63768115942029, "value_uncond": 0.00726531234239662}, {"x": 8.26086956521739, "y": 4.492753623188406, "x2": 8.550724637681158, "y2": 4.782608695652174, "center_x": 8.405797101449274, "center_y": 4.63768115942029, "value_uncond": 0.00636333600807103}, {"x": 8.55072463768116, "y": 4.492753623188406, "x2": 8.840579710144928, "y2": 4.782608695652174, "center_x": 8.695652173913043, "center_y": 4.63768115942029, "value_uncond": 0.005521552898678561}, {"x": 8.84057971014493, "y": 4.492753623188406, "x2": 9.130434782608697, "y2": 4.782608695652174, "center_x": 8.985507246376812, "center_y": 4.63768115942029, "value_uncond": 0.004746608720542591}, {"x": 9.130434782608695, "y": 4.492753623188406, "x2": 9.420289855072463, "y2": 4.782608695652174, "center_x": 9.275362318840578, "center_y": 4.63768115942029, "value_uncond": 0.004042513164657964}, {"x": 9.420289855072465, "y": 4.492753623188406, "x2": 9.710144927536232, "y2": 4.782608695652174, "center_x": 9.565217391304348, "center_y": 4.63768115942029, "value_uncond": 0.0034108707873688354}, {"x": 9.710144927536234, "y": 4.492753623188406, "x2": 10.000000000000002, "y2": 4.782608695652174, "center_x": 9.855072463768117, "center_y": 4.63768115942029, "value_uncond": 0.002851181777457206}, {"x": 10.0, "y": 4.492753623188406, "x2": 10.289855072463768, "y2": 4.782608695652174, "center_x": 10.144927536231883, "center_y": 4.63768115942029, "value_uncond": 0.0023611868746731966}, {"x": -10.0, "y": 4.782608695652174, "x2": -9.710144927536232, "y2": 5.0724637681159415, "center_x": -9.855072463768117, "center_y": 4.927536231884058, "value_uncond": 3.1901841847480727e-07}, {"x": -9.710144927536232, "y": 4.782608695652174, "x2": -9.420289855072465, "y2": 5.0724637681159415, "center_x": -9.565217391304348, "center_y": 4.927536231884058, "value_uncond": 4.984318919345294e-07}, {"x": -9.420289855072463, "y": 4.782608695652174, "x2": -9.130434782608695, "y2": 5.0724637681159415, "center_x": -9.275362318840578, "center_y": 4.927536231884058, "value_uncond": 7.715102533239665e-07}, {"x": -9.130434782608695, "y": 4.782608695652174, "x2": -8.840579710144928, "y2": 5.0724637681159415, "center_x": -8.985507246376812, "center_y": 4.927536231884058, "value_uncond": 1.1831052900523056e-06}, {"x": -8.840579710144928, "y": 4.782608695652174, "x2": -8.55072463768116, "y2": 5.0724637681159415, "center_x": -8.695652173913043, "center_y": 4.927536231884058, "value_uncond": 1.7974255253065148e-06}, {"x": -8.55072463768116, "y": 4.782608695652174, "x2": -8.260869565217392, "y2": 5.0724637681159415, "center_x": -8.405797101449277, "center_y": 4.927536231884058, "value_uncond": 2.705354788997938e-06}, {"x": -8.26086956521739, "y": 4.782608695652174, "x2": -7.971014492753623, "y2": 5.0724637681159415, "center_x": -8.115942028985508, "center_y": 4.927536231884058, "value_uncond": 4.034069403006746e-06}, {"x": -7.971014492753623, "y": 4.782608695652174, "x2": -7.681159420289855, "y2": 5.0724637681159415, "center_x": -7.826086956521739, "center_y": 4.927536231884058, "value_uncond": 5.9594793307608665e-06}, {"x": -7.681159420289855, "y": 4.782608695652174, "x2": -7.391304347826088, "y2": 5.0724637681159415, "center_x": -7.536231884057972, "center_y": 4.927536231884058, "value_uncond": 8.72206029521493e-06}, {"x": -7.391304347826087, "y": 4.782608695652174, "x2": -7.101449275362319, "y2": 5.0724637681159415, "center_x": -7.246376811594203, "center_y": 4.927536231884058, "value_uncond": 1.2646654845922255e-05}, {"x": -7.101449275362318, "y": 4.782608695652174, "x2": -6.811594202898551, "y2": 5.0724637681159415, "center_x": -6.956521739130435, "center_y": 4.927536231884058, "value_uncond": 1.8166784384993456e-05}, {"x": -6.811594202898551, "y": 4.782608695652174, "x2": -6.521739130434783, "y2": 5.0724637681159415, "center_x": -6.666666666666667, "center_y": 4.927536231884058, "value_uncond": 2.585391234900603e-05}, {"x": -6.521739130434782, "y": 4.782608695652174, "x2": -6.231884057971015, "y2": 5.0724637681159415, "center_x": -6.3768115942028984, "center_y": 4.927536231884058, "value_uncond": 3.6451910646322456e-05}, {"x": -6.231884057971014, "y": 4.782608695652174, "x2": -5.942028985507246, "y2": 5.0724637681159415, "center_x": -6.08695652173913, "center_y": 4.927536231884058, "value_uncond": 5.0916686865765747e-05}, {"x": -5.942028985507246, "y": 4.782608695652174, "x2": -5.6521739130434785, "y2": 5.0724637681159415, "center_x": -5.797101449275362, "center_y": 4.927536231884058, "value_uncond": 7.046051132351661e-05}, {"x": -5.6521739130434785, "y": 4.782608695652174, "x2": -5.362318840579711, "y2": 5.0724637681159415, "center_x": -5.507246376811595, "center_y": 4.927536231884058, "value_uncond": 9.66000294944361e-05}, {"x": -5.36231884057971, "y": 4.782608695652174, "x2": -5.072463768115942, "y2": 5.0724637681159415, "center_x": -5.217391304347826, "center_y": 4.927536231884058, "value_uncond": 0.00013120625573286498}, {"x": -5.0724637681159415, "y": 4.782608695652174, "x2": -4.782608695652174, "y2": 5.0724637681159415, "center_x": -4.927536231884058, "center_y": 4.927536231884058, "value_uncond": 0.00017655403184885295}, {"x": -4.782608695652174, "y": 4.782608695652174, "x2": -4.492753623188406, "y2": 5.0724637681159415, "center_x": -4.63768115942029, "center_y": 4.927536231884058, "value_uncond": 0.00023536753113217578}, {"x": -4.492753623188405, "y": 4.782608695652174, "x2": -4.202898550724638, "y2": 5.0724637681159415, "center_x": -4.3478260869565215, "center_y": 4.927536231884058, "value_uncond": 0.0003108574488905761}, {"x": -4.202898550724638, "y": 4.782608695652174, "x2": -3.91304347826087, "y2": 5.0724637681159415, "center_x": -4.057971014492754, "center_y": 4.927536231884058, "value_uncond": 0.00040674462239744533}, {"x": -3.913043478260869, "y": 4.782608695652174, "x2": -3.6231884057971016, "y2": 5.0724637681159415, "center_x": -3.7681159420289854, "center_y": 4.927536231884058, "value_uncond": 0.0005272640674554986}, {"x": -3.6231884057971016, "y": 4.782608695652174, "x2": -3.333333333333334, "y2": 5.0724637681159415, "center_x": -3.4782608695652177, "center_y": 4.927536231884058, "value_uncond": 0.0006771429261263549}, {"x": -3.333333333333333, "y": 4.782608695652174, "x2": -3.0434782608695654, "y2": 5.0724637681159415, "center_x": -3.1884057971014492, "center_y": 4.927536231884058, "value_uncond": 0.0008615457229435064}, {"x": -3.0434782608695645, "y": 4.782608695652174, "x2": -2.753623188405797, "y2": 5.0724637681159415, "center_x": -2.8985507246376807, "center_y": 4.927536231884058, "value_uncond": 0.001085980757770534}, {"x": -2.753623188405797, "y": 4.782608695652174, "x2": -2.4637681159420293, "y2": 5.0724637681159415, "center_x": -2.608695652173913, "center_y": 4.927536231884058, "value_uncond": 0.0013561625400098994}, {"x": -2.4637681159420284, "y": 4.782608695652174, "x2": -2.1739130434782608, "y2": 5.0724637681159415, "center_x": -2.3188405797101446, "center_y": 4.927536231884058, "value_uncond": 0.001677826975637138}, {"x": -2.1739130434782608, "y": 4.782608695652174, "x2": -1.8840579710144931, "y2": 5.0724637681159415, "center_x": -2.028985507246377, "center_y": 4.927536231884058, "value_uncond": 0.0020564985877478664}, {"x": -1.8840579710144922, "y": 4.782608695652174, "x2": -1.5942028985507246, "y2": 5.0724637681159415, "center_x": -1.7391304347826084, "center_y": 4.927536231884058, "value_uncond": 0.0024972123447709275}, {"x": -1.5942028985507246, "y": 4.782608695652174, "x2": -1.304347826086957, "y2": 5.0724637681159415, "center_x": -1.4492753623188408, "center_y": 4.927536231884058, "value_uncond": 0.003004196565387203}, {"x": -1.304347826086957, "y": 4.782608695652174, "x2": -1.0144927536231894, "y2": 5.0724637681159415, "center_x": -1.1594202898550732, "center_y": 4.927536231884058, "value_uncond": 0.0035805276505711356}, {"x": -1.0144927536231876, "y": 4.782608695652174, "x2": -0.72463768115942, "y2": 5.0724637681159415, "center_x": -0.8695652173913038, "center_y": 4.927536231884058, "value_uncond": 0.0042277717560458795}, {"x": -0.72463768115942, "y": 4.782608695652174, "x2": -0.43478260869565233, "y2": 5.0724637681159415, "center_x": -0.5797101449275361, "center_y": 4.927536231884058, "value_uncond": 0.004945632581278748}, {"x": -0.43478260869565233, "y": 4.782608695652174, "x2": -0.1449275362318847, "y2": 5.0724637681159415, "center_x": -0.2898550724637685, "center_y": 4.927536231884058, "value_uncond": 0.005731627781728902}, {"x": -0.14492753623188293, "y": 4.782608695652174, "x2": 0.1449275362318847, "y2": 5.0724637681159415, "center_x": 8.881784197001252e-16, "center_y": 4.927536231884058, "value_uncond": 0.006580818663995012}, {"x": 0.1449275362318847, "y": 4.782608695652174, "x2": 0.43478260869565233, "y2": 5.0724637681159415, "center_x": 0.2898550724637685, "center_y": 4.927536231884058, "value_uncond": 0.0074856183868239065}, {"x": 0.43478260869565233, "y": 4.782608695652174, "x2": 0.72463768115942, "y2": 5.0724637681159415, "center_x": 0.5797101449275361, "center_y": 4.927536231884058, "value_uncond": 0.008435702537539325}, {"x": 0.72463768115942, "y": 4.782608695652174, "x2": 1.0144927536231876, "y2": 5.0724637681159415, "center_x": 0.8695652173913038, "center_y": 4.927536231884058, "value_uncond": 0.009418042491643623}, {"x": 1.0144927536231894, "y": 4.782608695652174, "x2": 1.304347826086957, "y2": 5.0724637681159415, "center_x": 1.1594202898550732, "center_y": 4.927536231884058, "value_uncond": 0.010417076379771448}, {"x": 1.304347826086957, "y": 4.782608695652174, "x2": 1.5942028985507246, "y2": 5.0724637681159415, "center_x": 1.4492753623188408, "center_y": 4.927536231884058, "value_uncond": 0.011415024974369399}, {"x": 1.5942028985507246, "y": 4.782608695652174, "x2": 1.8840579710144922, "y2": 5.0724637681159415, "center_x": 1.7391304347826084, "center_y": 4.927536231884058, "value_uncond": 0.012392350777284051}, {"x": 1.884057971014494, "y": 4.782608695652174, "x2": 2.1739130434782616, "y2": 5.0724637681159415, "center_x": 2.028985507246378, "center_y": 4.927536231884058, "value_uncond": 0.013328348647328505}, {"x": 2.1739130434782616, "y": 4.782608695652174, "x2": 2.4637681159420293, "y2": 5.0724637681159415, "center_x": 2.3188405797101455, "center_y": 4.927536231884058, "value_uncond": 0.014201846221017042}, {"x": 2.4637681159420293, "y": 4.782608695652174, "x2": 2.753623188405797, "y2": 5.0724637681159415, "center_x": 2.608695652173913, "center_y": 4.927536231884058, "value_uncond": 0.014991983011760199}, {"x": 2.753623188405797, "y": 4.782608695652174, "x2": 3.0434782608695645, "y2": 5.0724637681159415, "center_x": 2.8985507246376807, "center_y": 4.927536231884058, "value_uncond": 0.015679029297509334}, {"x": 3.0434782608695663, "y": 4.782608695652174, "x2": 3.333333333333334, "y2": 5.0724637681159415, "center_x": 3.18840579710145, "center_y": 4.927536231884058, "value_uncond": 0.016245200520618588}, {"x": 3.333333333333334, "y": 4.782608695652174, "x2": 3.6231884057971016, "y2": 5.0724637681159415, "center_x": 3.4782608695652177, "center_y": 4.927536231884058, "value_uncond": 0.01667542055517041}, {"x": 3.6231884057971016, "y": 4.782608695652174, "x2": 3.913043478260869, "y2": 5.0724637681159415, "center_x": 3.7681159420289854, "center_y": 4.927536231884058, "value_uncond": 0.0169579882295972}, {"x": 3.913043478260871, "y": 4.782608695652174, "x2": 4.202898550724639, "y2": 5.0724637681159415, "center_x": 4.057971014492755, "center_y": 4.927536231884058, "value_uncond": 0.017085106009777626}, {"x": 4.202898550724639, "y": 4.782608695652174, "x2": 4.492753623188406, "y2": 5.0724637681159415, "center_x": 4.347826086956522, "center_y": 4.927536231884058, "value_uncond": 0.017053237510066252}, {"x": 4.492753623188406, "y": 4.782608695652174, "x2": 4.782608695652174, "y2": 5.0724637681159415, "center_x": 4.63768115942029, "center_y": 4.927536231884058, "value_uncond": 0.016863270955172423}, {"x": 4.782608695652174, "y": 4.782608695652174, "x2": 5.0724637681159415, "y2": 5.0724637681159415, "center_x": 4.927536231884058, "center_y": 4.927536231884058, "value_uncond": 0.016520478047594347}, {"x": 5.072463768115943, "y": 4.782608695652174, "x2": 5.362318840579711, "y2": 5.0724637681159415, "center_x": 5.217391304347827, "center_y": 4.927536231884058, "value_uncond": 0.01603427089908147}, {"x": 5.362318840579711, "y": 4.782608695652174, "x2": 5.6521739130434785, "y2": 5.0724637681159415, "center_x": 5.507246376811595, "center_y": 4.927536231884058, "value_uncond": 0.015417772668133083}, {"x": 5.6521739130434785, "y": 4.782608695652174, "x2": 5.942028985507246, "y2": 5.0724637681159415, "center_x": 5.797101449275362, "center_y": 4.927536231884058, "value_uncond": 0.014687229238863838}, {"x": 5.942028985507246, "y": 4.782608695652174, "x2": 6.231884057971014, "y2": 5.0724637681159415, "center_x": 6.08695652173913, "center_y": 4.927536231884058, "value_uncond": 0.013861298739369025}, {"x": 6.2318840579710155, "y": 4.782608695652174, "x2": 6.521739130434783, "y2": 5.0724637681159415, "center_x": 6.376811594202899, "center_y": 4.927536231884058, "value_uncond": 0.012960262211452207}, {"x": 6.521739130434785, "y": 4.782608695652174, "x2": 6.8115942028985526, "y2": 5.0724637681159415, "center_x": 6.666666666666669, "center_y": 4.927536231884058, "value_uncond": 0.012005201877553301}, {"x": 6.811594202898551, "y": 4.782608695652174, "x2": 7.101449275362318, "y2": 5.0724637681159415, "center_x": 6.956521739130435, "center_y": 4.927536231884058, "value_uncond": 0.011017193095140902}, {"x": 7.10144927536232, "y": 4.782608695652174, "x2": 7.391304347826088, "y2": 5.0724637681159415, "center_x": 7.246376811594204, "center_y": 4.927536231884058, "value_uncond": 0.010016552451979297}, {"x": 7.391304347826086, "y": 4.782608695652174, "x2": 7.681159420289854, "y2": 5.0724637681159415, "center_x": 7.53623188405797, "center_y": 4.927536231884058, "value_uncond": 0.009022178027074335}, {"x": 7.681159420289855, "y": 4.782608695652174, "x2": 7.971014492753623, "y2": 5.0724637681159415, "center_x": 7.826086956521739, "center_y": 4.927536231884058, "value_uncond": 0.008051009327732077}, {"x": 7.971014492753625, "y": 4.782608695652174, "x2": 8.260869565217392, "y2": 5.0724637681159415, "center_x": 8.115942028985508, "center_y": 4.927536231884058, "value_uncond": 0.007117624651857015}, {"x": 8.26086956521739, "y": 4.782608695652174, "x2": 8.550724637681158, "y2": 5.0724637681159415, "center_x": 8.405797101449274, "center_y": 4.927536231884058, "value_uncond": 0.00623398349645561}, {"x": 8.55072463768116, "y": 4.782608695652174, "x2": 8.840579710144928, "y2": 5.0724637681159415, "center_x": 8.695652173913043, "center_y": 4.927536231884058, "value_uncond": 0.005409311971190908}, {"x": 8.84057971014493, "y": 4.782608695652174, "x2": 9.130434782608697, "y2": 5.0724637681159415, "center_x": 8.985507246376812, "center_y": 4.927536231884058, "value_uncond": 0.004650120689912261}, {"x": 9.130434782608695, "y": 4.782608695652174, "x2": 9.420289855072463, "y2": 5.0724637681159415, "center_x": 9.275362318840578, "center_y": 4.927536231884058, "value_uncond": 0.003960337835487279}, {"x": 9.420289855072465, "y": 4.782608695652174, "x2": 9.710144927536232, "y2": 5.0724637681159415, "center_x": 9.565217391304348, "center_y": 4.927536231884058, "value_uncond": 0.0033415353471874256}, {"x": 9.710144927536234, "y": 4.782608695652174, "x2": 10.000000000000002, "y2": 5.0724637681159415, "center_x": 9.855072463768117, "center_y": 4.927536231884058, "value_uncond": 0.0027932235738485287}, {"x": 10.0, "y": 4.782608695652174, "x2": 10.289855072463768, "y2": 5.0724637681159415, "center_x": 10.144927536231883, "center_y": 4.927536231884058, "value_uncond": 0.002313189180972133}, {"x": -10.0, "y": 5.072463768115943, "x2": -9.710144927536232, "y2": 5.362318840579711, "center_x": -9.855072463768117, "center_y": 5.217391304347827, "value_uncond": 3.096295233639719e-07}, {"x": -9.710144927536232, "y": 5.072463768115943, "x2": -9.420289855072465, "y2": 5.362318840579711, "center_x": -9.565217391304348, "center_y": 5.217391304347827, "value_uncond": 4.837627553509998e-07}, {"x": -9.420289855072463, "y": 5.072463768115943, "x2": -9.130434782608695, "y2": 5.362318840579711, "center_x": -9.275362318840578, "center_y": 5.217391304347827, "value_uncond": 7.488042638703676e-07}, {"x": -9.130434782608695, "y": 5.072463768115943, "x2": -8.840579710144928, "y2": 5.362318840579711, "center_x": -8.985507246376812, "center_y": 5.217391304347827, "value_uncond": 1.1482858224915232e-06}, {"x": -8.840579710144928, "y": 5.072463768115943, "x2": -8.55072463768116, "y2": 5.362318840579711, "center_x": -8.695652173913043, "center_y": 5.217391304347827, "value_uncond": 1.7445262607207185e-06}, {"x": -8.55072463768116, "y": 5.072463768115943, "x2": -8.260869565217392, "y2": 5.362318840579711, "center_x": -8.405797101449277, "center_y": 5.217391304347827, "value_uncond": 2.625734645205194e-06}, {"x": -8.26086956521739, "y": 5.072463768115943, "x2": -7.971014492753623, "y2": 5.362318840579711, "center_x": -8.115942028985508, "center_y": 5.217391304347827, "value_uncond": 3.915344425697475e-06}, {"x": -7.971014492753623, "y": 5.072463768115943, "x2": -7.681159420289855, "y2": 5.362318840579711, "center_x": -7.826086956521739, "center_y": 5.217391304347827, "value_uncond": 5.7840884344633715e-06}, {"x": -7.681159420289855, "y": 5.072463768115943, "x2": -7.391304347826088, "y2": 5.362318840579711, "center_x": -7.536231884057972, "center_y": 5.217391304347827, "value_uncond": 8.465365055944217e-06}, {"x": -7.391304347826087, "y": 5.072463768115943, "x2": -7.101449275362319, "y2": 5.362318840579711, "center_x": -7.246376811594203, "center_y": 5.217391304347827, "value_uncond": 1.227445653706292e-05}, {"x": -7.101449275362318, "y": 5.072463768115943, "x2": -6.811594202898551, "y2": 5.362318840579711, "center_x": -6.956521739130435, "center_y": 5.217391304347827, "value_uncond": 1.7632125496308203e-05}, {"x": -6.811594202898551, "y": 5.072463768115943, "x2": -6.521739130434783, "y2": 5.362318840579711, "center_x": -6.666666666666667, "center_y": 5.217391304347827, "value_uncond": 2.5093016873409156e-05}, {"x": -6.521739130434782, "y": 5.072463768115943, "x2": -6.231884057971015, "y2": 5.362318840579711, "center_x": -6.3768115942028984, "center_y": 5.217391304347827, "value_uncond": 3.537910999962595e-05}, {"x": -6.231884057971014, "y": 5.072463768115943, "x2": -5.942028985507246, "y2": 5.362318840579711, "center_x": -6.08695652173913, "center_y": 5.217391304347827, "value_uncond": 4.941817955493573e-05}, {"x": -5.942028985507246, "y": 5.072463768115943, "x2": -5.6521739130434785, "y2": 5.362318840579711, "center_x": -5.797101449275362, "center_y": 5.217391304347827, "value_uncond": 6.838681804450433e-05}, {"x": -5.6521739130434785, "y": 5.072463768115943, "x2": -5.362318840579711, "y2": 5.362318840579711, "center_x": -5.507246376811595, "center_y": 5.217391304347827, "value_uncond": 9.37570351966053e-05}, {"x": -5.36231884057971, "y": 5.072463768115943, "x2": -5.072463768115942, "y2": 5.362318840579711, "center_x": -5.217391304347826, "center_y": 5.217391304347827, "value_uncond": 0.00012734478033952931}, {"x": -5.0724637681159415, "y": 5.072463768115943, "x2": -4.782608695652174, "y2": 5.362318840579711, "center_x": -4.927536231884058, "center_y": 5.217391304347827, "value_uncond": 0.00017135794538353534}, {"x": -4.782608695652174, "y": 5.072463768115943, "x2": -4.492753623188406, "y2": 5.362318840579711, "center_x": -4.63768115942029, "center_y": 5.217391304347827, "value_uncond": 0.00022844052963533022}, {"x": -4.492753623188405, "y": 5.072463768115943, "x2": -4.202898550724638, "y2": 5.362318840579711, "center_x": -4.3478260869565215, "center_y": 5.217391304347827, "value_uncond": 0.00030170873579742915}, {"x": -4.202898550724638, "y": 5.072463768115943, "x2": -3.91304347826087, "y2": 5.362318840579711, "center_x": -4.057971014492754, "center_y": 5.217391304347827, "value_uncond": 0.0003947738947672235}, {"x": -3.913043478260869, "y": 5.072463768115943, "x2": -3.6231884057971016, "y2": 5.362318840579711, "center_x": -3.7681159420289854, "center_y": 5.217391304347827, "value_uncond": 0.0005117463834022716}, {"x": -3.6231884057971016, "y": 5.072463768115943, "x2": -3.333333333333334, "y2": 5.362318840579711, "center_x": -3.4782608695652177, "center_y": 5.217391304347827, "value_uncond": 0.0006572142212608497}, {"x": -3.333333333333333, "y": 5.072463768115943, "x2": -3.0434782608695654, "y2": 5.362318840579711, "center_x": -3.1884057971014492, "center_y": 5.217391304347827, "value_uncond": 0.0008361899379559874}, {"x": -3.0434782608695645, "y": 5.072463768115943, "x2": -2.753623188405797, "y2": 5.362318840579711, "center_x": -2.8985507246376807, "center_y": 5.217391304347827, "value_uncond": 0.0010540197209255768}, {"x": -2.753623188405797, "y": 5.072463768115943, "x2": -2.4637681159420293, "y2": 5.362318840579711, "center_x": -2.608695652173913, "center_y": 5.217391304347827, "value_uncond": 0.0013162498982813378}, {"x": -2.4637681159420284, "y": 5.072463768115943, "x2": -2.1739130434782608, "y2": 5.362318840579711, "center_x": -2.3188405797101446, "center_y": 5.217391304347827, "value_uncond": 0.0016284475649946408}, {"x": -2.1739130434782608, "y": 5.072463768115943, "x2": -1.8840579710144931, "y2": 5.362318840579711, "center_x": -2.028985507246377, "center_y": 5.217391304347827, "value_uncond": 0.001995974654276386}, {"x": -1.8840579710144922, "y": 5.072463768115943, "x2": -1.5942028985507246, "y2": 5.362318840579711, "center_x": -1.7391304347826084, "center_y": 5.217391304347827, "value_uncond": 0.0024237179525454537}, {"x": -1.5942028985507246, "y": 5.072463768115943, "x2": -1.304347826086957, "y2": 5.362318840579711, "center_x": -1.4492753623188408, "center_y": 5.217391304347827, "value_uncond": 0.002915781336637707}, {"x": -1.304347826086957, "y": 5.072463768115943, "x2": -1.0144927536231894, "y2": 5.362318840579711, "center_x": -1.1594202898550732, "center_y": 5.217391304347827, "value_uncond": 0.0034751506672816477}, {"x": -1.0144927536231876, "y": 5.072463768115943, "x2": -0.72463768115942, "y2": 5.362318840579711, "center_x": -0.8695652173913038, "center_y": 5.217391304347827, "value_uncond": 0.004103346007338828}, {"x": -0.72463768115942, "y": 5.072463768115943, "x2": -0.43478260869565233, "y2": 5.362318840579711, "center_x": -0.5797101449275361, "center_y": 5.217391304347827, "value_uncond": 0.004800079776571257}, {"x": -0.43478260869565233, "y": 5.072463768115943, "x2": -0.1449275362318847, "y2": 5.362318840579711, "center_x": -0.2898550724637685, "center_y": 5.217391304347827, "value_uncond": 0.005562942687262318}, {"x": -0.14492753623188293, "y": 5.072463768115943, "x2": 0.1449275362318847, "y2": 5.362318840579711, "center_x": 8.881784197001252e-16, "center_y": 5.217391304347827, "value_uncond": 0.006387141394591343}, {"x": 0.1449275362318847, "y": 5.072463768115943, "x2": 0.43478260869565233, "y2": 5.362318840579711, "center_x": 0.2898550724637685, "center_y": 5.217391304347827, "value_uncond": 0.007265312342396628}, {"x": 0.43478260869565233, "y": 5.072463768115943, "x2": 0.72463768115942, "y2": 5.362318840579711, "center_x": 0.5797101449275361, "center_y": 5.217391304347827, "value_uncond": 0.008187434971391197}, {"x": 0.72463768115942, "y": 5.072463768115943, "x2": 1.0144927536231876, "y2": 5.362318840579711, "center_x": 0.8695652173913038, "center_y": 5.217391304347827, "value_uncond": 0.009140864096972293}, {"x": 1.0144927536231894, "y": 5.072463768115943, "x2": 1.304347826086957, "y2": 5.362318840579711, "center_x": 1.1594202898550732, "center_y": 5.217391304347827, "value_uncond": 0.0101104958445195}, {"x": 1.304347826086957, "y": 5.072463768115943, "x2": 1.5942028985507246, "y2": 5.362318840579711, "center_x": 1.4492753623188408, "center_y": 5.217391304347827, "value_uncond": 0.01107907423934817}, {"x": 1.5942028985507246, "y": 5.072463768115943, "x2": 1.8840579710144922, "y2": 5.362318840579711, "center_x": 1.7391304347826084, "center_y": 5.217391304347827, "value_uncond": 0.012027636783086286}, {"x": 1.884057971014494, "y": 5.072463768115943, "x2": 2.1739130434782616, "y2": 5.362318840579711, "center_x": 2.028985507246378, "center_y": 5.217391304347827, "value_uncond": 0.012936087698732852}, {"x": 2.1739130434782616, "y": 5.072463768115943, "x2": 2.4637681159420293, "y2": 5.362318840579711, "center_x": 2.3188405797101455, "center_y": 5.217391304347827, "value_uncond": 0.013783877737608382}, {"x": 2.4637681159420293, "y": 5.072463768115943, "x2": 2.753623188405797, "y2": 5.362318840579711, "center_x": 2.608695652173913, "center_y": 5.217391304347827, "value_uncond": 0.014550760349213649}, {"x": 2.753623188405797, "y": 5.072463768115943, "x2": 3.0434782608695645, "y2": 5.362318840579711, "center_x": 2.8985507246376807, "center_y": 5.217391304347827, "value_uncond": 0.01521758646854096}, {"x": 3.0434782608695663, "y": 5.072463768115943, "x2": 3.333333333333334, "y2": 5.362318840579711, "center_x": 3.18840579710145, "center_y": 5.217391304347827, "value_uncond": 0.015767094947680884}, {"x": 3.333333333333334, "y": 5.072463768115943, "x2": 3.6231884057971016, "y2": 5.362318840579711, "center_x": 3.4782608695652177, "center_y": 5.217391304347827, "value_uncond": 0.016184653359752416}, {"x": 3.6231884057971016, "y": 5.072463768115943, "x2": 3.913043478260869, "y2": 5.362318840579711, "center_x": 3.7681159420289854, "center_y": 5.217391304347827, "value_uncond": 0.01645890490538141}, {"x": 3.913043478260871, "y": 5.072463768115943, "x2": 4.202898550724639, "y2": 5.362318840579711, "center_x": 4.057971014492755, "center_y": 5.217391304347827, "value_uncond": 0.016582281536350007}, {"x": 4.202898550724639, "y": 5.072463768115943, "x2": 4.492753623188406, "y2": 5.362318840579711, "center_x": 4.347826086956522, "center_y": 5.217391304347827, "value_uncond": 0.016551350944871517}, {"x": 4.492753623188406, "y": 5.072463768115943, "x2": 4.782608695652174, "y2": 5.362318840579711, "center_x": 4.63768115942029, "center_y": 5.217391304347827, "value_uncond": 0.016366975214692422}, {"x": 4.782608695652174, "y": 5.072463768115943, "x2": 5.0724637681159415, "y2": 5.362318840579711, "center_x": 4.927536231884058, "center_y": 5.217391304347827, "value_uncond": 0.01603427089908147}, {"x": 5.072463768115943, "y": 5.072463768115943, "x2": 5.362318840579711, "y2": 5.362318840579711, "center_x": 5.217391304347827, "center_y": 5.217391304347827, "value_uncond": 0.015562373105938575}, {"x": 5.362318840579711, "y": 5.072463768115943, "x2": 5.6521739130434785, "y2": 5.362318840579711, "center_x": 5.507246376811595, "center_y": 5.217391304347827, "value_uncond": 0.014964018771678233}, {"x": 5.6521739130434785, "y": 5.072463768115943, "x2": 5.942028985507246, "y2": 5.362318840579711, "center_x": 5.797101449275362, "center_y": 5.217391304347827, "value_uncond": 0.014254975654723591}, {"x": 5.942028985507246, "y": 5.072463768115943, "x2": 6.231884057971014, "y2": 5.362318840579711, "center_x": 6.08695652173913, "center_y": 5.217391304347827, "value_uncond": 0.013453352763753925}, {"x": 6.2318840579710155, "y": 5.072463768115943, "x2": 6.521739130434783, "y2": 5.362318840579711, "center_x": 6.376811594202899, "center_y": 5.217391304347827, "value_uncond": 0.012578834257875104}, {"x": 6.521739130434785, "y": 5.072463768115943, "x2": 6.8115942028985526, "y2": 5.362318840579711, "center_x": 6.666666666666669, "center_y": 5.217391304347827, "value_uncond": 0.011651881897623508}, {"x": 6.811594202898551, "y": 5.072463768115943, "x2": 7.101449275362318, "y2": 5.362318840579711, "center_x": 6.956521739130435, "center_y": 5.217391304347827, "value_uncond": 0.010692950780604234}, {"x": 7.10144927536232, "y": 5.072463768115943, "x2": 7.391304347826088, "y2": 5.362318840579711, "center_x": 7.246376811594204, "center_y": 5.217391304347827, "value_uncond": 0.009721759565745856}, {"x": 7.391304347826086, "y": 5.072463768115943, "x2": 7.681159420289854, "y2": 5.362318840579711, "center_x": 7.53623188405797, "center_y": 5.217391304347827, "value_uncond": 0.00875665015074523}, {"x": 7.681159420289855, "y": 5.072463768115943, "x2": 7.971014492753623, "y2": 5.362318840579711, "center_x": 7.826086956521739, "center_y": 5.217391304347827, "value_uncond": 0.007814063503488377}, {"x": 7.971014492753625, "y": 5.072463768115943, "x2": 8.260869565217392, "y2": 5.362318840579711, "center_x": 8.115942028985508, "center_y": 5.217391304347827, "value_uncond": 0.006908148874207331}, {"x": 8.26086956521739, "y": 5.072463768115943, "x2": 8.550724637681158, "y2": 5.362318840579711, "center_x": 8.405797101449274, "center_y": 5.217391304347827, "value_uncond": 0.006050513785049202}, {"x": 8.55072463768116, "y": 5.072463768115943, "x2": 8.840579710144928, "y2": 5.362318840579711, "center_x": 8.695652173913043, "center_y": 5.217391304347827, "value_uncond": 0.005250112815975646}, {"x": 8.84057971014493, "y": 5.072463768115943, "x2": 9.130434782608697, "y2": 5.362318840579711, "center_x": 8.985507246376812, "center_y": 5.217391304347827, "value_uncond": 0.004513264969734587}, {"x": 9.130434782608695, "y": 5.072463768115943, "x2": 9.420289855072463, "y2": 5.362318840579711, "center_x": 9.275362318840578, "center_y": 5.217391304347827, "value_uncond": 0.0038437828205178234}, {"x": 9.420289855072465, "y": 5.072463768115943, "x2": 9.710144927536232, "y2": 5.362318840579711, "center_x": 9.565217391304348, "center_y": 5.217391304347827, "value_uncond": 0.0032431920445220664}, {"x": 9.710144927536234, "y": 5.072463768115943, "x2": 10.000000000000002, "y2": 5.362318840579711, "center_x": 9.855072463768117, "center_y": 5.217391304347827, "value_uncond": 0.0027110174012978747}, {"x": 10.0, "y": 5.072463768115943, "x2": 10.289855072463768, "y2": 5.362318840579711, "center_x": 10.144927536231883, "center_y": 5.217391304347827, "value_uncond": 0.002245110696051106}, {"x": -10.0, "y": 5.362318840579711, "x2": -9.710144927536232, "y2": 5.6521739130434785, "center_x": -9.855072463768117, "center_y": 5.507246376811595, "value_uncond": 2.977246444577404e-07}, {"x": -9.710144927536232, "y": 5.362318840579711, "x2": -9.420289855072465, "y2": 5.6521739130434785, "center_x": -9.565217391304348, "center_y": 5.507246376811595, "value_uncond": 4.6516266528456056e-07}, {"x": -9.420289855072463, "y": 5.362318840579711, "x2": -9.130434782608695, "y2": 5.6521739130434785, "center_x": -9.275362318840578, "center_y": 5.507246376811595, "value_uncond": 7.200136498843506e-07}, {"x": -9.130434782608695, "y": 5.362318840579711, "x2": -8.840579710144928, "y2": 5.6521739130434785, "center_x": -8.985507246376812, "center_y": 5.507246376811595, "value_uncond": 1.1041356280333723e-06}, {"x": -8.840579710144928, "y": 5.362318840579711, "x2": -8.55072463768116, "y2": 5.6521739130434785, "center_x": -8.695652173913043, "center_y": 5.507246376811595, "value_uncond": 1.6774513459742732e-06}, {"x": -8.55072463768116, "y": 5.362318840579711, "x2": -8.260869565217392, "y2": 5.6521739130434785, "center_x": -8.405797101449277, "center_y": 5.507246376811595, "value_uncond": 2.52477833893488e-06}, {"x": -8.26086956521739, "y": 5.362318840579711, "x2": -7.971014492753623, "y2": 5.6521739130434785, "center_x": -8.115942028985508, "center_y": 5.507246376811595, "value_uncond": 3.7648041905231814e-06}, {"x": -7.971014492753623, "y": 5.362318840579711, "x2": -7.681159420289855, "y2": 5.6521739130434785, "center_x": -7.826086956521739, "center_y": 5.507246376811595, "value_uncond": 5.561697263081826e-06}, {"x": -7.681159420289855, "y": 5.362318840579711, "x2": -7.391304347826088, "y2": 5.6521739130434785, "center_x": -7.536231884057972, "center_y": 5.507246376811595, "value_uncond": 8.139882056800119e-06}, {"x": -7.391304347826087, "y": 5.362318840579711, "x2": -7.101449275362319, "y2": 5.6521739130434785, "center_x": -7.246376811594203, "center_y": 5.507246376811595, "value_uncond": 1.1802518599343171e-05}, {"x": -7.101449275362318, "y": 5.362318840579711, "x2": -6.811594202898551, "y2": 5.6521739130434785, "center_x": -6.956521739130435, "center_y": 5.507246376811595, "value_uncond": 1.6954191697836777e-05}, {"x": -6.811594202898551, "y": 5.362318840579711, "x2": -6.521739130434783, "y2": 5.6521739130434785, "center_x": -6.666666666666667, "center_y": 5.507246376811595, "value_uncond": 2.4128220868091493e-05}, {"x": -6.521739130434782, "y": 5.362318840579711, "x2": -6.231884057971015, "y2": 5.6521739130434785, "center_x": -6.3768115942028984, "center_y": 5.507246376811595, "value_uncond": 3.4018826213442224e-05}, {"x": -6.231884057971014, "y": 5.362318840579711, "x2": -5.942028985507246, "y2": 5.6521739130434785, "center_x": -6.08695652173913, "center_y": 5.507246376811595, "value_uncond": 4.7518110604868697e-05}, {"x": -5.942028985507246, "y": 5.362318840579711, "x2": -5.6521739130434785, "y2": 5.6521739130434785, "center_x": -5.797101449275362, "center_y": 5.507246376811595, "value_uncond": 6.575742799552855e-05}, {"x": -5.6521739130434785, "y": 5.362318840579711, "x2": -5.362318840579711, "y2": 5.6521739130434785, "center_x": -5.507246376811595, "center_y": 5.507246376811595, "value_uncond": 9.01521911284547e-05}, {"x": -5.36231884057971, "y": 5.362318840579711, "x2": -5.072463768115942, "y2": 5.6521739130434785, "center_x": -5.217391304347826, "center_y": 5.507246376811595, "value_uncond": 0.00012244852828703783}, {"x": -5.0724637681159415, "y": 5.362318840579711, "x2": -4.782608695652174, "y2": 5.6521739130434785, "center_x": -4.927536231884058, "center_y": 5.507246376811595, "value_uncond": 0.00016476944062065562}, {"x": -4.782608695652174, "y": 5.362318840579711, "x2": -4.492753623188406, "y2": 5.6521739130434785, "center_x": -4.63768115942029, "center_y": 5.507246376811595, "value_uncond": 0.00021965726887570545}, {"x": -4.492753623188405, "y": 5.362318840579711, "x2": -4.202898550724638, "y2": 5.6521739130434785, "center_x": -4.3478260869565215, "center_y": 5.507246376811595, "value_uncond": 0.0002901084015476537}, {"x": -4.202898550724638, "y": 5.362318840579711, "x2": -3.91304347826087, "y2": 5.6521739130434785, "center_x": -4.057971014492754, "center_y": 5.507246376811595, "value_uncond": 0.0003795953182494388}, {"x": -3.913043478260869, "y": 5.362318840579711, "x2": -3.6231884057971016, "y2": 5.6521739130434785, "center_x": -3.7681159420289854, "center_y": 5.507246376811595, "value_uncond": 0.0004920703568434459}, {"x": -3.6231884057971016, "y": 5.362318840579711, "x2": -3.333333333333334, "y2": 5.6521739130434785, "center_x": -3.4782608695652177, "center_y": 5.507246376811595, "value_uncond": 0.000631945133111376}, {"x": -3.333333333333333, "y": 5.362318840579711, "x2": -3.0434782608695654, "y2": 5.6521739130434785, "center_x": -3.1884057971014492, "center_y": 5.507246376811595, "value_uncond": 0.0008040394509939493}, {"x": -3.0434782608695645, "y": 5.362318840579711, "x2": -2.753623188405797, "y2": 5.6521739130434785, "center_x": -2.8985507246376807, "center_y": 5.507246376811595, "value_uncond": 0.0010134939435188506}, {"x": -2.753623188405797, "y": 5.362318840579711, "x2": -2.4637681159420293, "y2": 5.6521739130434785, "center_x": -2.608695652173913, "center_y": 5.507246376811595, "value_uncond": 0.0012656416892218962}, {"x": -2.4637681159420284, "y": 5.362318840579711, "x2": -2.1739130434782608, "y2": 5.6521739130434785, "center_x": -2.3188405797101446, "center_y": 5.507246376811595, "value_uncond": 0.0015658357350380376}, {"x": -2.1739130434782608, "y": 5.362318840579711, "x2": -1.8840579710144931, "y2": 5.6521739130434785, "center_x": -2.028985507246377, "center_y": 5.507246376811595, "value_uncond": 0.0019192318543621285}, {"x": -1.8840579710144922, "y": 5.362318840579711, "x2": -1.5942028985507246, "y2": 5.6521739130434785, "center_x": -1.7391304347826084, "center_y": 5.507246376811595, "value_uncond": 0.0023305289426137506}, {"x": -1.5942028985507246, "y": 5.362318840579711, "x2": -1.304347826086957, "y2": 5.6521739130434785, "center_x": -1.4492753623188408, "center_y": 5.507246376811595, "value_uncond": 0.0028036730875515294}, {"x": -1.304347826086957, "y": 5.362318840579711, "x2": -1.0144927536231894, "y2": 5.6521739130434785, "center_x": -1.1594202898550732, "center_y": 5.507246376811595, "value_uncond": 0.0033415353471874256}, {"x": -1.0144927536231876, "y": 5.362318840579711, "x2": -0.72463768115942, "y2": 5.6521739130434785, "center_x": -0.8695652173913038, "center_y": 5.507246376811595, "value_uncond": 0.00394557733981317}, {"x": -0.72463768115942, "y": 5.362318840579711, "x2": -0.43478260869565233, "y2": 5.6521739130434785, "center_x": -0.5797101449275361, "center_y": 5.507246376811595, "value_uncond": 0.004615522542301451}, {"x": -0.43478260869565233, "y": 5.362318840579711, "x2": -0.1449275362318847, "y2": 5.6521739130434785, "center_x": -0.2898550724637685, "center_y": 5.507246376811595, "value_uncond": 0.0053490543011205476}, {"x": -0.14492753623188293, "y": 5.362318840579711, "x2": 0.1449275362318847, "y2": 5.6521739130434785, "center_x": 8.881784197001252e-16, "center_y": 5.507246376811595, "value_uncond": 0.006141563569733192}, {"x": 0.1449275362318847, "y": 5.362318840579711, "x2": 0.43478260869565233, "y2": 5.6521739130434785, "center_x": 0.2898550724637685, "center_y": 5.507246376811595, "value_uncond": 0.006985969911763776}, {"x": 0.43478260869565233, "y": 5.362318840579711, "x2": 0.72463768115942, "y2": 5.6521739130434785, "center_x": 0.5797101449275361, "center_y": 5.507246376811595, "value_uncond": 0.007872638046252756}, {"x": 0.72463768115942, "y": 5.362318840579711, "x2": 1.0144927536231876, "y2": 5.6521739130434785, "center_x": 0.8695652173913038, "center_y": 5.507246376811595, "value_uncond": 0.008789408980578704}, {"x": 1.0144927536231894, "y": 5.362318840579711, "x2": 1.304347826086957, "y2": 5.6521739130434785, "center_x": 1.1594202898550732, "center_y": 5.507246376811595, "value_uncond": 0.009721759565745867}, {"x": 1.304347826086957, "y": 5.362318840579711, "x2": 1.5942028985507246, "y2": 5.6521739130434785, "center_x": 1.4492753623188408, "center_y": 5.507246376811595, "value_uncond": 0.010653097298326468}, {"x": 1.5942028985507246, "y": 5.362318840579711, "x2": 1.8840579710144922, "y2": 5.6521739130434785, "center_x": 1.7391304347826084, "center_y": 5.507246376811595, "value_uncond": 0.011565188764967345}, {"x": 1.884057971014494, "y": 5.362318840579711, "x2": 2.1739130434782616, "y2": 5.6521739130434785, "center_x": 2.028985507246378, "center_y": 5.507246376811595, "value_uncond": 0.01243871084687245}, {"x": 2.1739130434782616, "y": 5.362318840579711, "x2": 2.4637681159420293, "y2": 5.6521739130434785, "center_x": 2.3188405797101455, "center_y": 5.507246376811595, "value_uncond": 0.013253904389002227}, {"x": 2.4637681159420293, "y": 5.362318840579711, "x2": 2.753623188405797, "y2": 5.6521739130434785, "center_x": 2.608695652173913, "center_y": 5.507246376811595, "value_uncond": 0.013991301296120189}, {"x": 2.753623188405797, "y": 5.362318840579711, "x2": 3.0434782608695645, "y2": 5.6521739130434785, "center_x": 2.8985507246376807, "center_y": 5.507246376811595, "value_uncond": 0.014632488761497914}, {"x": 3.0434782608695663, "y": 5.362318840579711, "x2": 3.333333333333334, "y2": 5.6521739130434785, "center_x": 3.18840579710145, "center_y": 5.507246376811595, "value_uncond": 0.015160869307387047}, {"x": 3.333333333333334, "y": 5.362318840579711, "x2": 3.6231884057971016, "y2": 5.6521739130434785, "center_x": 3.4782608695652177, "center_y": 5.507246376811595, "value_uncond": 0.01556237310593858}, {"x": 3.6231884057971016, "y": 5.362318840579711, "x2": 3.913043478260869, "y2": 5.6521739130434785, "center_x": 3.7681159420289854, "center_y": 5.507246376811595, "value_uncond": 0.015826080012913323}, {"x": 3.913043478260871, "y": 5.362318840579711, "x2": 4.202898550724639, "y2": 5.6521739130434785, "center_x": 4.057971014492755, "center_y": 5.507246376811595, "value_uncond": 0.015944712962350577}, {"x": 4.202898550724639, "y": 5.362318840579711, "x2": 4.492753623188406, "y2": 5.6521739130434785, "center_x": 4.347826086956522, "center_y": 5.507246376811595, "value_uncond": 0.01591497161452705}, {"x": 4.492753623188406, "y": 5.362318840579711, "x2": 4.782608695652174, "y2": 5.6521739130434785, "center_x": 4.63768115942029, "center_y": 5.507246376811595, "value_uncond": 0.015737684907116793}, {"x": 4.782608695652174, "y": 5.362318840579711, "x2": 5.0724637681159415, "y2": 5.6521739130434785, "center_x": 4.927536231884058, "center_y": 5.507246376811595, "value_uncond": 0.015417772668133083}, {"x": 5.072463768115943, "y": 5.362318840579711, "x2": 5.362318840579711, "y2": 5.6521739130434785, "center_x": 5.217391304347827, "center_y": 5.507246376811595, "value_uncond": 0.014964018771678233}, {"x": 5.362318840579711, "y": 5.362318840579711, "x2": 5.6521739130434785, "y2": 5.6521739130434785, "center_x": 5.507246376811595, "center_y": 5.507246376811595, "value_uncond": 0.014388670434439739}, {"x": 5.6521739130434785, "y": 5.362318840579711, "x2": 5.942028985507246, "y2": 5.6521739130434785, "center_x": 5.797101449275362, "center_y": 5.507246376811595, "value_uncond": 0.013706889163690632}, {"x": 5.942028985507246, "y": 5.362318840579711, "x2": 6.231884057971014, "y2": 5.6521739130434785, "center_x": 6.08695652173913, "center_y": 5.507246376811595, "value_uncond": 0.01293608769873285}, {"x": 6.2318840579710155, "y": 5.362318840579711, "x2": 6.521739130434783, "y2": 5.6521739130434785, "center_x": 6.376811594202899, "center_y": 5.507246376811595, "value_uncond": 0.012095193366675168}, {"x": 6.521739130434785, "y": 5.362318840579711, "x2": 6.8115942028985526, "y2": 5.6521739130434785, "center_x": 6.666666666666669, "center_y": 5.507246376811595, "value_uncond": 0.011203881198226821}, {"x": 6.811594202898551, "y": 5.362318840579711, "x2": 7.101449275362318, "y2": 5.6521739130434785, "center_x": 6.956521739130435, "center_y": 5.507246376811595, "value_uncond": 0.010281819817347382}, {"x": 7.10144927536232, "y": 5.362318840579711, "x2": 7.391304347826088, "y2": 5.6521739130434785, "center_x": 7.246376811594204, "center_y": 5.507246376811595, "value_uncond": 0.00934796972449207}, {"x": 7.391304347826086, "y": 5.362318840579711, "x2": 7.681159420289854, "y2": 5.6521739130434785, "center_x": 7.53623188405797, "center_y": 5.507246376811595, "value_uncond": 0.008419967593680685}, {"x": 7.681159420289855, "y": 5.362318840579711, "x2": 7.971014492753623, "y2": 5.6521739130434785, "center_x": 7.826086956521739, "center_y": 5.507246376811595, "value_uncond": 0.007513622257563381}, {"x": 7.971014492753625, "y": 5.362318840579711, "x2": 8.260869565217392, "y2": 5.6521739130434785, "center_x": 8.115942028985508, "center_y": 5.507246376811595, "value_uncond": 0.00664253894489518}, {"x": 8.26086956521739, "y": 5.362318840579711, "x2": 8.550724637681158, "y2": 5.6521739130434785, "center_x": 8.405797101449274, "center_y": 5.507246376811595, "value_uncond": 0.005817878882702297}, {"x": 8.55072463768116, "y": 5.362318840579711, "x2": 8.840579710144928, "y2": 5.6521739130434785, "center_x": 8.695652173913043, "center_y": 5.507246376811595, "value_uncond": 0.005048252358228618}, {"x": 8.84057971014493, "y": 5.362318840579711, "x2": 9.130434782608697, "y2": 5.6521739130434785, "center_x": 8.985507246376812, "center_y": 5.507246376811595, "value_uncond": 0.004339735416245373}, {"x": 9.130434782608695, "y": 5.362318840579711, "x2": 9.420289855072463, "y2": 5.6521739130434785, "center_x": 9.275362318840578, "center_y": 5.507246376811595, "value_uncond": 0.003695994042099792}, {"x": 9.420289855072465, "y": 5.362318840579711, "x2": 9.710144927536232, "y2": 5.6521739130434785, "center_x": 9.565217391304348, "center_y": 5.507246376811595, "value_uncond": 0.003118495251592849}, {"x": 9.710144927536234, "y": 5.362318840579711, "x2": 10.000000000000002, "y2": 5.6521739130434785, "center_x": 9.855072463768117, "center_y": 5.507246376811595, "value_uncond": 0.002606782076692864}, {"x": 10.0, "y": 5.362318840579711, "x2": 10.289855072463768, "y2": 5.6521739130434785, "center_x": 10.144927536231883, "center_y": 5.507246376811595, "value_uncond": 0.0021587889180850065}, {"x": -10.0, "y": 5.6521739130434785, "x2": -9.710144927536232, "y2": 5.942028985507246, "center_x": -9.855072463768117, "center_y": 5.797101449275362, "value_uncond": 2.8361749763298007e-07}, {"x": -9.710144927536232, "y": 5.6521739130434785, "x2": -9.420289855072465, "y2": 5.942028985507246, "center_x": -9.565217391304348, "center_y": 5.797101449275362, "value_uncond": 4.4312176897744417e-07}, {"x": -9.420289855072463, "y": 5.6521739130434785, "x2": -9.130434782608695, "y2": 5.942028985507246, "center_x": -9.275362318840578, "center_y": 5.797101449275362, "value_uncond": 6.858970980172719e-07}, {"x": -9.130434782608695, "y": 5.6521739130434785, "x2": -8.840579710144928, "y2": 5.942028985507246, "center_x": -8.985507246376812, "center_y": 5.797101449275362, "value_uncond": 1.0518181470687534e-06}, {"x": -8.840579710144928, "y": 5.6521739130434785, "x2": -8.55072463768116, "y2": 5.942028985507246, "center_x": -8.695652173913043, "center_y": 5.797101449275362, "value_uncond": 1.5979683308139013e-06}, {"x": -8.55072463768116, "y": 5.6521739130434785, "x2": -8.260869565217392, "y2": 5.942028985507246, "center_x": -8.405797101449277, "center_y": 5.797101449275362, "value_uncond": 2.4051462581167118e-06}, {"x": -8.26086956521739, "y": 5.6521739130434785, "x2": -7.971014492753623, "y2": 5.942028985507246, "center_x": -8.115942028985508, "center_y": 5.797101449275362, "value_uncond": 3.586415714893573e-06}, {"x": -7.971014492753623, "y": 5.6521739130434785, "x2": -7.681159420289855, "y2": 5.942028985507246, "center_x": -7.826086956521739, "center_y": 5.797101449275362, "value_uncond": 5.2981662408916325e-06}, {"x": -7.681159420289855, "y": 5.6521739130434785, "x2": -7.391304347826088, "y2": 5.942028985507246, "center_x": -7.536231884057972, "center_y": 5.797101449275362, "value_uncond": 7.754188384982478e-06}, {"x": -7.391304347826087, "y": 5.6521739130434785, "x2": -7.101449275362319, "y2": 5.942028985507246, "center_x": -7.246376811594203, "center_y": 5.797101449275362, "value_uncond": 1.1243277482148635e-05}, {"x": -7.101449275362318, "y": 5.6521739130434785, "x2": -6.811594202898551, "y2": 5.942028985507246, "center_x": -6.956521739130435, "center_y": 5.797101449275362, "value_uncond": 1.6150847816069353e-05}, {"x": -6.811594202898551, "y": 5.6521739130434785, "x2": -6.521739130434783, "y2": 5.942028985507246, "center_x": -6.666666666666667, "center_y": 5.797101449275362, "value_uncond": 2.2984948516464874e-05}, {"x": -6.521739130434782, "y": 5.6521739130434785, "x2": -6.231884057971015, "y2": 5.942028985507246, "center_x": -6.3768115942028984, "center_y": 5.797101449275362, "value_uncond": 3.2406905315616995e-05}, {"x": -6.231884057971014, "y": 5.6521739130434785, "x2": -5.942028985507246, "y2": 5.942028985507246, "center_x": -6.08695652173913, "center_y": 5.797101449275362, "value_uncond": 4.52665503943964e-05}, {"x": -5.942028985507246, "y": 5.6521739130434785, "x2": -5.6521739130434785, "y2": 5.942028985507246, "center_x": -5.797101449275362, "center_y": 5.797101449275362, "value_uncond": 6.26416305336118e-05}, {"x": -5.6521739130434785, "y": 5.6521739130434785, "x2": -5.362318840579711, "y2": 5.942028985507246, "center_x": -5.507246376811595, "center_y": 5.797101449275362, "value_uncond": 8.588049168906403e-05}, {"x": -5.36231884057971, "y": 5.6521739130434785, "x2": -5.072463768115942, "y2": 5.942028985507246, "center_x": -5.217391304347826, "center_y": 5.797101449275362, "value_uncond": 0.00011664652499581822}, {"x": -5.0724637681159415, "y": 5.6521739130434785, "x2": -4.782608695652174, "y2": 5.942028985507246, "center_x": -4.927536231884058, "center_y": 5.797101449275362, "value_uncond": 0.00015696213701197142}, {"x": -4.782608695652174, "y": 5.6521739130434785, "x2": -4.492753623188406, "y2": 5.942028985507246, "center_x": -4.63768115942029, "center_y": 5.797101449275362, "value_uncond": 0.00020924920424001095}, {"x": -4.492753623188405, "y": 5.6521739130434785, "x2": -4.202898550724638, "y2": 5.942028985507246, "center_x": -4.3478260869565215, "center_y": 5.797101449275362, "value_uncond": 0.0002763621366955009}, {"x": -4.202898550724638, "y": 5.6521739130434785, "x2": -3.91304347826087, "y2": 5.942028985507246, "center_x": -4.057971014492754, "center_y": 5.797101449275362, "value_uncond": 0.00036160887679011775}, {"x": -3.913043478260869, "y": 5.6521739130434785, "x2": -3.6231884057971016, "y2": 5.942028985507246, "center_x": -3.7681159420289854, "center_y": 5.797101449275362, "value_uncond": 0.0004687544879648525}, {"x": -3.6231884057971016, "y": 5.6521739130434785, "x2": -3.333333333333334, "y2": 5.942028985507246, "center_x": -3.4782608695652177, "center_y": 5.797101449275362, "value_uncond": 0.0006020015495218082}, {"x": -3.333333333333333, "y": 5.6521739130434785, "x2": -3.0434782608695654, "y2": 5.942028985507246, "center_x": -3.1884057971014492, "center_y": 5.797101449275362, "value_uncond": 0.0007659414876603125}, {"x": -3.0434782608695645, "y": 5.6521739130434785, "x2": -2.753623188405797, "y2": 5.942028985507246, "center_x": -2.8985507246376807, "center_y": 5.797101449275362, "value_uncond": 0.0009654713557573767}, {"x": -2.753623188405797, "y": 5.6521739130434785, "x2": -2.4637681159420293, "y2": 5.942028985507246, "center_x": -2.608695652173913, "center_y": 5.797101449275362, "value_uncond": 0.001205671534013852}, {"x": -2.4637681159420284, "y": 5.6521739130434785, "x2": -2.1739130434782608, "y2": 5.942028985507246, "center_x": -2.3188405797101446, "center_y": 5.797101449275362, "value_uncond": 0.0014916414248630431}, {"x": -2.1739130434782608, "y": 5.6521739130434785, "x2": -1.8840579710144931, "y2": 5.942028985507246, "center_x": -2.028985507246377, "center_y": 5.797101449275362, "value_uncond": 0.0018282925046500629}, {"x": -1.8840579710144922, "y": 5.6521739130434785, "x2": -1.5942028985507246, "y2": 5.942028985507246, "center_x": -1.7391304347826084, "center_y": 5.797101449275362, "value_uncond": 0.002220101020085922}, {"x": -1.5942028985507246, "y": 5.6521739130434785, "x2": -1.304347826086957, "y2": 5.942028985507246, "center_x": -1.4492753623188408, "center_y": 5.797101449275362, "value_uncond": 0.0026708260806577767}, {"x": -1.304347826086957, "y": 5.6521739130434785, "x2": -1.0144927536231894, "y2": 5.942028985507246, "center_x": -1.1594202898550732, "center_y": 5.797101449275362, "value_uncond": 0.003183202704457242}, {"x": -1.0144927536231876, "y": 5.6521739130434785, "x2": -0.72463768115942, "y2": 5.942028985507246, "center_x": -0.8695652173913038, "center_y": 5.797101449275362, "value_uncond": 0.0037586232536219923}, {"x": -0.72463768115942, "y": 5.6521739130434785, "x2": -0.43478260869565233, "y2": 5.942028985507246, "center_x": -0.5797101449275361, "center_y": 5.797101449275362, "value_uncond": 0.004396824307575779}, {"x": -0.43478260869565233, "y": 5.6521739130434785, "x2": -0.1449275362318847, "y2": 5.942028985507246, "center_x": -0.2898550724637685, "center_y": 5.797101449275362, "value_uncond": 0.005095598983248022}, {"x": -0.14492753623188293, "y": 5.6521739130434785, "x2": 0.1449275362318847, "y2": 5.942028985507246, "center_x": 8.881784197001252e-16, "center_y": 5.797101449275362, "value_uncond": 0.005850556625482325}, {"x": 0.1449275362318847, "y": 5.6521739130434785, "x2": 0.43478260869565233, "y2": 5.942028985507246, "center_x": 0.2898550724637685, "center_y": 5.797101449275362, "value_uncond": 0.006654952291646691}, {"x": 0.43478260869565233, "y": 5.6521739130434785, "x2": 0.72463768115942, "y2": 5.942028985507246, "center_x": 0.5797101449275361, "center_y": 5.797101449275362, "value_uncond": 0.0074996072512409475}, {"x": 0.72463768115942, "y": 5.6521739130434785, "x2": 1.0144927536231876, "y2": 5.942028985507246, "center_x": 0.8695652173913038, "center_y": 5.797101449275362, "value_uncond": 0.008372938643641286}, {"x": 1.0144927536231894, "y": 5.6521739130434785, "x2": 1.304347826086957, "y2": 5.942028985507246, "center_x": 1.1594202898550732, "center_y": 5.797101449275362, "value_uncond": 0.009261111473147477}, {"x": 1.304347826086957, "y": 5.6521739130434785, "x2": 1.5942028985507246, "y2": 5.942028985507246, "center_x": 1.4492753623188408, "center_y": 5.797101449275362, "value_uncond": 0.010148319442265323}, {"x": 1.5942028985507246, "y": 5.6521739130434785, "x2": 1.8840579710144922, "y2": 5.942028985507246, "center_x": 1.7391304347826084, "center_y": 5.797101449275362, "value_uncond": 0.011017193095140902}, {"x": 1.884057971014494, "y": 5.6521739130434785, "x2": 2.1739130434782616, "y2": 5.942028985507246, "center_x": 2.028985507246378, "center_y": 5.797101449275362, "value_uncond": 0.011849324904210014}, {"x": 2.1739130434782616, "y": 5.6521739130434785, "x2": 2.4637681159420293, "y2": 5.942028985507246, "center_x": 2.3188405797101455, "center_y": 5.797101449275362, "value_uncond": 0.012625891966458132}, {"x": 2.4637681159420293, "y": 5.6521739130434785, "x2": 2.753623188405797, "y2": 5.942028985507246, "center_x": 2.608695652173913, "center_y": 5.797101449275362, "value_uncond": 0.013328348647328502}, {"x": 2.753623188405797, "y": 5.6521739130434785, "x2": 3.0434782608695645, "y2": 5.942028985507246, "center_x": 2.8985507246376807, "center_y": 5.797101449275362, "value_uncond": 0.013939154597824402}, {"x": 3.0434782608695663, "y": 5.6521739130434785, "x2": 3.333333333333334, "y2": 5.942028985507246, "center_x": 3.18840579710145, "center_y": 5.797101449275362, "value_uncond": 0.01444249878183029}, {"x": 3.333333333333334, "y": 5.6521739130434785, "x2": 3.6231884057971016, "y2": 5.942028985507246, "center_x": 3.4782608695652177, "center_y": 5.797101449275362, "value_uncond": 0.014824978044985428}, {"x": 3.6231884057971016, "y": 5.6521739130434785, "x2": 3.913043478260869, "y2": 5.942028985507246, "center_x": 3.7681159420289854, "center_y": 5.797101449275362, "value_uncond": 0.015076189674445703}, {"x": 3.913043478260871, "y": 5.6521739130434785, "x2": 4.202898550724639, "y2": 5.942028985507246, "center_x": 4.057971014492755, "center_y": 5.797101449275362, "value_uncond": 0.01518920141493328}, {"x": 4.202898550724639, "y": 5.6521739130434785, "x2": 4.492753623188406, "y2": 5.942028985507246, "center_x": 4.347826086956522, "center_y": 5.797101449275362, "value_uncond": 0.015160869307387045}, {"x": 4.492753623188406, "y": 5.6521739130434785, "x2": 4.782608695652174, "y2": 5.942028985507246, "center_x": 4.63768115942029, "center_y": 5.797101449275362, "value_uncond": 0.014991983011760197}, {"x": 4.782608695652174, "y": 5.6521739130434785, "x2": 5.0724637681159415, "y2": 5.942028985507246, "center_x": 4.927536231884058, "center_y": 5.797101449275362, "value_uncond": 0.014687229238863838}, {"x": 5.072463768115943, "y": 5.6521739130434785, "x2": 5.362318840579711, "y2": 5.942028985507246, "center_x": 5.217391304347827, "center_y": 5.797101449275362, "value_uncond": 0.014254975654723591}, {"x": 5.362318840579711, "y": 5.6521739130434785, "x2": 5.6521739130434785, "y2": 5.942028985507246, "center_x": 5.507246376811595, "center_y": 5.797101449275362, "value_uncond": 0.013706889163690632}, {"x": 5.6521739130434785, "y": 5.6521739130434785, "x2": 5.942028985507246, "y2": 5.942028985507246, "center_x": 5.797101449275362, "center_y": 5.797101449275362, "value_uncond": 0.013057412872283585}, {"x": 5.942028985507246, "y": 5.6521739130434785, "x2": 6.231884057971014, "y2": 5.942028985507246, "center_x": 6.08695652173913, "center_y": 5.797101449275362, "value_uncond": 0.012323134448469086}, {"x": 6.2318840579710155, "y": 5.6521739130434785, "x2": 6.521739130434783, "y2": 5.942028985507246, "center_x": 6.376811594202899, "center_y": 5.797101449275362, "value_uncond": 0.011522084382001349}, {"x": 6.521739130434785, "y": 5.6521739130434785, "x2": 6.8115942028985526, "y2": 5.942028985507246, "center_x": 6.666666666666669, "center_y": 5.797101449275362, "value_uncond": 0.010673005437644672}, {"x": 6.811594202898551, "y": 5.6521739130434785, "x2": 7.101449275362318, "y2": 5.942028985507246, "center_x": 6.956521739130435, "center_y": 5.797101449275362, "value_uncond": 0.009794634276985995}, {"x": 7.10144927536232, "y": 5.6521739130434785, "x2": 7.391304347826088, "y2": 5.942028985507246, "center_x": 7.246376811594204, "center_y": 5.797101449275362, "value_uncond": 0.00890503299126662}, {"x": 7.391304347826086, "y": 5.6521739130434785, "x2": 7.681159420289854, "y2": 5.942028985507246, "center_x": 7.53623188405797, "center_y": 5.797101449275362, "value_uncond": 0.008021002572427181}, {"x": 7.681159420289855, "y": 5.6521739130434785, "x2": 7.971014492753623, "y2": 5.942028985507246, "center_x": 7.826086956521739, "center_y": 5.797101449275362, "value_uncond": 0.007157602780014635}, {"x": 7.971014492753625, "y": 5.6521739130434785, "x2": 8.260869565217392, "y2": 5.942028985507246, "center_x": 8.115942028985508, "center_y": 5.797101449275362, "value_uncond": 0.006327794183488224}, {"x": 8.26086956521739, "y": 5.6521739130434785, "x2": 8.550724637681158, "y2": 5.942028985507246, "center_x": 8.405797101449274, "center_y": 5.797101449275362, "value_uncond": 0.005542209155204808}, {"x": 8.55072463768116, "y": 5.6521739130434785, "x2": 8.840579710144928, "y2": 5.942028985507246, "center_x": 8.695652173913043, "center_y": 5.797101449275362, "value_uncond": 0.004809049999432685}, {"x": 8.84057971014493, "y": 5.6521739130434785, "x2": 9.130434782608697, "y2": 5.942028985507246, "center_x": 8.985507246376812, "center_y": 5.797101449275362, "value_uncond": 0.004134104858489265}, {"x": 9.130434782608695, "y": 5.6521739130434785, "x2": 9.420289855072463, "y2": 5.942028985507246, "center_x": 9.275362318840578, "center_y": 5.797101449275362, "value_uncond": 0.003520866011599312}, {"x": 9.420289855072465, "y": 5.6521739130434785, "x2": 9.710144927536232, "y2": 5.942028985507246, "center_x": 9.565217391304348, "center_y": 5.797101449275362, "value_uncond": 0.002970730962658476}, {"x": 9.710144927536234, "y": 5.6521739130434785, "x2": 10.000000000000002, "y2": 5.942028985507246, "center_x": 9.855072463768117, "center_y": 5.797101449275362, "value_uncond": 0.0024832643962434085}, {"x": 10.0, "y": 5.6521739130434785, "x2": 10.289855072463768, "y2": 5.942028985507246, "center_x": 10.144927536231883, "center_y": 5.797101449275362, "value_uncond": 0.0020564985877478664}, {"x": -10.0, "y": 5.942028985507246, "x2": -9.710144927536232, "y2": 6.231884057971014, "center_x": -9.855072463768117, "center_y": 6.08695652173913, "value_uncond": 2.6766838036410634e-07}, {"x": -9.710144927536232, "y": 5.942028985507246, "x2": -9.420289855072465, "y2": 6.231884057971014, "center_x": -9.565217391304348, "center_y": 6.08695652173913, "value_uncond": 4.182029923970312e-07}, {"x": -9.420289855072463, "y": 5.942028985507246, "x2": -9.130434782608695, "y2": 6.231884057971014, "center_x": -9.275362318840578, "center_y": 6.08695652173913, "value_uncond": 6.473259472880103e-07}, {"x": -9.130434782608695, "y": 5.942028985507246, "x2": -8.840579710144928, "y2": 6.231884057971014, "center_x": -8.985507246376812, "center_y": 6.08695652173913, "value_uncond": 9.926695715642979e-07}, {"x": -8.840579710144928, "y": 5.942028985507246, "x2": -8.55072463768116, "y2": 6.231884057971014, "center_x": -8.695652173913043, "center_y": 6.08695652173913, "value_uncond": 1.5081072167683986e-06}, {"x": -8.55072463768116, "y": 5.942028985507246, "x2": -8.260869565217392, "y2": 6.231884057971014, "center_x": -8.405797101449277, "center_y": 6.08695652173913, "value_uncond": 2.2698938141044712e-06}, {"x": -8.26086956521739, "y": 5.942028985507246, "x2": -7.971014492753623, "y2": 6.231884057971014, "center_x": -8.115942028985508, "center_y": 6.08695652173913, "value_uncond": 3.3847350524198137e-06}, {"x": -7.971014492753623, "y": 5.942028985507246, "x2": -7.681159420289855, "y2": 6.231884057971014, "center_x": -7.826086956521739, "center_y": 6.08695652173913, "value_uncond": 5.0002259678435955e-06}, {"x": -7.681159420289855, "y": 5.942028985507246, "x2": -7.391304347826088, "y2": 6.231884057971014, "center_x": -7.536231884057972, "center_y": 6.08695652173913, "value_uncond": 7.318134682692684e-06}, {"x": -7.391304347826087, "y": 5.942028985507246, "x2": -7.101449275362319, "y2": 6.231884057971014, "center_x": -7.246376811594203, "center_y": 6.08695652173913, "value_uncond": 1.0611016241055063e-05}, {"x": -7.101449275362318, "y": 5.942028985507246, "x2": -6.811594202898551, "y2": 6.231884057971014, "center_x": -6.956521739130435, "center_y": 6.08695652173913, "value_uncond": 1.524261130753217e-05}, {"x": -6.811594202898551, "y": 5.942028985507246, "x2": -6.521739130434783, "y2": 6.231884057971014, "center_x": -6.666666666666667, "center_y": 6.08695652173913, "value_uncond": 2.1692399070934804e-05}, {"x": -6.521739130434782, "y": 5.942028985507246, "x2": -6.231884057971015, "y2": 6.231884057971014, "center_x": -6.3768115942028984, "center_y": 6.08695652173913, "value_uncond": 3.0584515873802894e-05}, {"x": -6.231884057971014, "y": 5.942028985507246, "x2": -5.942028985507246, "y2": 6.231884057971014, "center_x": -6.08695652173913, "center_y": 6.08695652173913, "value_uncond": 4.272100392204194e-05}, {"x": -5.942028985507246, "y": 5.942028985507246, "x2": -5.6521739130434785, "y2": 6.231884057971014, "center_x": -5.797101449275362, "center_y": 6.08695652173913, "value_uncond": 5.911900333454195e-05}, {"x": -5.6521739130434785, "y": 5.942028985507246, "x2": -5.362318840579711, "y2": 6.231884057971014, "center_x": -5.507246376811595, "center_y": 6.08695652173913, "value_uncond": 8.105103636811636e-05}, {"x": -5.36231884057971, "y": 5.942028985507246, "x2": -5.072463768115942, "y2": 6.231884057971014, "center_x": -5.217391304347826, "center_y": 6.08695652173913, "value_uncond": 0.00011008695401838697}, {"x": -5.0724637681159415, "y": 5.942028985507246, "x2": -4.782608695652174, "y2": 6.231884057971014, "center_x": -4.927536231884058, "center_y": 6.08695652173913, "value_uncond": 0.0001481354336143672}, {"x": -4.782608695652174, "y": 5.942028985507246, "x2": -4.492753623188406, "y2": 6.231884057971014, "center_x": -4.63768115942029, "center_y": 6.08695652173913, "value_uncond": 0.00019748215839588857}, {"x": -4.492753623188405, "y": 5.942028985507246, "x2": -4.202898550724638, "y2": 6.231884057971014, "center_x": -4.3478260869565215, "center_y": 6.08695652173913, "value_uncond": 0.00026082102176564175}, {"x": -4.202898550724638, "y": 5.942028985507246, "x2": -3.91304347826087, "y2": 6.231884057971014, "center_x": -4.057971014492754, "center_y": 6.08695652173913, "value_uncond": 0.0003412739453083699}, {"x": -3.913043478260869, "y": 5.942028985507246, "x2": -3.6231884057971016, "y2": 6.231884057971014, "center_x": -3.7681159420289854, "center_y": 6.08695652173913, "value_uncond": 0.00044239426561870794}, {"x": -3.6231884057971016, "y": 5.942028985507246, "x2": -3.333333333333334, "y2": 6.231884057971014, "center_x": -3.4782608695652177, "center_y": 6.08695652173913, "value_uncond": 0.0005681482316218242}, {"x": -3.333333333333333, "y": 5.942028985507246, "x2": -3.0434782608695654, "y2": 6.231884057971014, "center_x": -3.1884057971014492, "center_y": 6.08695652173913, "value_uncond": 0.0007228690724893748}, {"x": -3.0434782608695645, "y": 5.942028985507246, "x2": -2.753623188405797, "y2": 6.231884057971014, "center_x": -2.8985507246376807, "center_y": 6.08695652173913, "value_uncond": 0.0009111784577478195}, {"x": -2.753623188405797, "y": 5.942028985507246, "x2": -2.4637681159420293, "y2": 6.231884057971014, "center_x": -2.608695652173913, "center_y": 6.08695652173913, "value_uncond": 0.0011378710744363743}, {"x": -2.4637681159420284, "y": 5.942028985507246, "x2": -2.1739130434782608, "y2": 6.231884057971014, "center_x": -2.3188405797101446, "center_y": 6.08695652173913, "value_uncond": 0.0014077595621190266}, {"x": -2.1739130434782608, "y": 5.942028985507246, "x2": -1.8840579710144931, "y2": 6.231884057971014, "center_x": -2.028985507246377, "center_y": 6.08695652173913, "value_uncond": 0.0017254792022204579}, {"x": -1.8840579710144922, "y": 5.942028985507246, "x2": -1.5942028985507246, "y2": 6.231884057971014, "center_x": -1.7391304347826084, "center_y": 6.08695652173913, "value_uncond": 0.0020952545214967607}, {"x": -1.5942028985507246, "y": 5.942028985507246, "x2": -1.304347826086957, "y2": 6.231884057971014, "center_x": -1.4492753623188408, "center_y": 6.08695652173913, "value_uncond": 0.002520633237406963}, {"x": -1.304347826086957, "y": 5.942028985507246, "x2": -1.0144927536231894, "y2": 6.231884057971014, "center_x": -1.1594202898550732, "center_y": 6.08695652173913, "value_uncond": 0.003004196565387202}, {"x": -1.0144927536231876, "y": 5.942028985507246, "x2": -0.72463768115942, "y2": 6.231884057971014, "center_x": -0.8695652173913038, "center_y": 6.08695652173913, "value_uncond": 0.003547258568643672}, {"x": -0.72463768115942, "y": 5.942028985507246, "x2": -0.43478260869565233, "y2": 6.231884057971014, "center_x": -0.5797101449275361, "center_y": 6.08695652173913, "value_uncond": 0.004149570639951542}, {"x": -0.43478260869565233, "y": 5.942028985507246, "x2": -0.1449275362318847, "y2": 6.231884057971014, "center_x": -0.2898550724637685, "center_y": 6.08695652173913, "value_uncond": 0.004809049999432688}, {"x": -0.14492753623188293, "y": 5.942028985507246, "x2": 0.1449275362318847, "y2": 6.231884057971014, "center_x": 8.881784197001252e-16, "center_y": 6.08695652173913, "value_uncond": 0.005521552898678568}, {"x": 0.1449275362318847, "y": 5.942028985507246, "x2": 0.43478260869565233, "y2": 6.231884057971014, "center_x": 0.2898550724637685, "center_y": 6.08695652173913, "value_uncond": 0.006280713694225636}, {"x": 0.43478260869565233, "y": 5.942028985507246, "x2": 0.72463768115942, "y2": 6.231884057971014, "center_x": 0.5797101449275361, "center_y": 6.08695652173913, "value_uncond": 0.00707786981783574}, {"x": 0.72463768115942, "y": 5.942028985507246, "x2": 1.0144927536231876, "y2": 6.231884057971014, "center_x": 0.8695652173913038, "center_y": 6.08695652173913, "value_uncond": 0.007902089766449183}, {"x": 1.0144927536231894, "y": 5.942028985507246, "x2": 1.304347826086957, "y2": 6.231884057971014, "center_x": 1.1594202898550732, "center_y": 6.08695652173913, "value_uncond": 0.008740316549850866}, {"x": 1.304347826086957, "y": 5.942028985507246, "x2": 1.5942028985507246, "y2": 6.231884057971014, "center_x": 1.4492753623188408, "center_y": 6.08695652173913, "value_uncond": 0.009577632731404702}, {"x": 1.5942028985507246, "y": 5.942028985507246, "x2": 1.8840579710144922, "y2": 6.231884057971014, "center_x": 1.7391304347826084, "center_y": 6.08695652173913, "value_uncond": 0.010397645619704042}, {"x": 1.884057971014494, "y": 5.942028985507246, "x2": 2.1739130434782616, "y2": 6.231884057971014, "center_x": 2.028985507246378, "center_y": 6.08695652173913, "value_uncond": 0.011182982827182043}, {"x": 2.1739130434782616, "y": 5.942028985507246, "x2": 2.4637681159420293, "y2": 6.231884057971014, "center_x": 2.3188405797101455, "center_y": 6.08695652173913, "value_uncond": 0.011915879949294914}, {"x": 2.4637681159420293, "y": 5.942028985507246, "x2": 2.753623188405797, "y2": 6.231884057971014, "center_x": 2.608695652173913, "center_y": 6.08695652173913, "value_uncond": 0.012578834257875109}, {"x": 2.753623188405797, "y": 5.942028985507246, "x2": 3.0434782608695645, "y2": 6.231884057971014, "center_x": 2.8985507246376807, "center_y": 6.08695652173913, "value_uncond": 0.013155291778481145}, {"x": 3.0434782608695663, "y": 5.942028985507246, "x2": 3.333333333333334, "y2": 6.231884057971014, "center_x": 3.18840579710145, "center_y": 6.08695652173913, "value_uncond": 0.013630330602330078}, {"x": 3.333333333333334, "y": 5.942028985507246, "x2": 3.6231884057971016, "y2": 6.231884057971014, "center_x": 3.4782608695652177, "center_y": 6.08695652173913, "value_uncond": 0.01399130129612019}, {"x": 3.6231884057971016, "y": 5.942028985507246, "x2": 3.913043478260869, "y2": 6.231884057971014, "center_x": 3.7681159420289854, "center_y": 6.08695652173913, "value_uncond": 0.014228386139430086}, {"x": 3.913043478260871, "y": 5.942028985507246, "x2": 4.202898550724639, "y2": 6.231884057971014, "center_x": 4.057971014492755, "center_y": 6.08695652173913, "value_uncond": 0.014335042709602576}, {"x": 4.202898550724639, "y": 5.942028985507246, "x2": 4.492753623188406, "y2": 6.231884057971014, "center_x": 4.347826086956522, "center_y": 6.08695652173913, "value_uncond": 0.014308303846864935}, {"x": 4.492753623188406, "y": 5.942028985507246, "x2": 4.782608695652174, "y2": 6.231884057971014, "center_x": 4.63768115942029, "center_y": 6.08695652173913, "value_uncond": 0.014148914804956699}, {"x": 4.782608695652174, "y": 5.942028985507246, "x2": 5.0724637681159415, "y2": 6.231884057971014, "center_x": 4.927536231884058, "center_y": 6.08695652173913, "value_uncond": 0.013861298739369025}, {"x": 5.072463768115943, "y": 5.942028985507246, "x2": 5.362318840579711, "y2": 6.231884057971014, "center_x": 5.217391304347827, "center_y": 6.08695652173913, "value_uncond": 0.013453352763753925}, {"x": 5.362318840579711, "y": 5.942028985507246, "x2": 5.6521739130434785, "y2": 6.231884057971014, "center_x": 5.507246376811595, "center_y": 6.08695652173913, "value_uncond": 0.01293608769873285}, {"x": 5.6521739130434785, "y": 5.942028985507246, "x2": 5.942028985507246, "y2": 6.231884057971014, "center_x": 5.797101449275362, "center_y": 6.08695652173913, "value_uncond": 0.012323134448469086}, {"x": 5.942028985507246, "y": 5.942028985507246, "x2": 6.231884057971014, "y2": 6.231884057971014, "center_x": 6.08695652173913, "center_y": 6.08695652173913, "value_uncond": 0.01163014788001316}, {"x": 6.2318840579710155, "y": 5.942028985507246, "x2": 6.521739130434783, "y2": 6.231884057971014, "center_x": 6.376811594202899, "center_y": 6.08695652173913, "value_uncond": 0.010874144545693331}, {"x": 6.521739130434785, "y": 5.942028985507246, "x2": 6.8115942028985526, "y2": 6.231884057971014, "center_x": 6.666666666666669, "center_y": 6.08695652173913, "value_uncond": 0.010072813218345815}, {"x": 6.811594202898551, "y": 5.942028985507246, "x2": 7.101449275362318, "y2": 6.231884057971014, "center_x": 6.956521739130435, "center_y": 6.08695652173913, "value_uncond": 0.009243836910839224}, {"x": 7.10144927536232, "y": 5.942028985507246, "x2": 7.391304347826088, "y2": 6.231884057971014, "center_x": 7.246376811594204, "center_y": 6.08695652173913, "value_uncond": 0.008404261999891829}, {"x": 7.391304347826086, "y": 5.942028985507246, "x2": 7.681159420289854, "y2": 6.231884057971014, "center_x": 7.53623188405797, "center_y": 6.08695652173913, "value_uncond": 0.007569944680339263}, {"x": 7.681159420289855, "y": 5.942028985507246, "x2": 7.971014492753623, "y2": 6.231884057971014, "center_x": 7.826086956521739, "center_y": 6.08695652173913, "value_uncond": 0.00675509783213515}, {"x": 7.971014492753625, "y": 5.942028985507246, "x2": 8.260869565217392, "y2": 6.231884057971014, "center_x": 8.115942028985508, "center_y": 6.08695652173913, "value_uncond": 0.005971953192265764}, {"x": 8.26086956521739, "y": 5.942028985507246, "x2": 8.550724637681158, "y2": 6.231884057971014, "center_x": 8.405797101449274, "center_y": 6.08695652173913, "value_uncond": 0.00523054522585382}, {"x": 8.55072463768116, "y": 5.942028985507246, "x2": 8.840579710144928, "y2": 6.231884057971014, "center_x": 8.695652173913043, "center_y": 6.08695652173913, "value_uncond": 0.004538614983846707}, {"x": 8.84057971014493, "y": 5.942028985507246, "x2": 9.130434782608697, "y2": 6.231884057971014, "center_x": 8.985507246376812, "center_y": 6.08695652173913, "value_uncond": 0.003901625114678845}, {"x": 9.130434782608695, "y": 5.942028985507246, "x2": 9.420289855072463, "y2": 6.231884057971014, "center_x": 9.275362318840578, "center_y": 6.08695652173913, "value_uncond": 0.003322871510640635}, {"x": 9.420289855072465, "y": 5.942028985507246, "x2": 9.710144927536232, "y2": 6.231884057971014, "center_x": 9.565217391304348, "center_y": 6.08695652173913, "value_uncond": 0.0028036730875515285}, {"x": 9.710144927536234, "y": 5.942028985507246, "x2": 10.000000000000002, "y2": 6.231884057971014, "center_x": 9.855072463768117, "center_y": 6.08695652173913, "value_uncond": 0.002343619009778012}, {"x": 10.0, "y": 5.942028985507246, "x2": 10.289855072463768, "y2": 6.231884057971014, "center_x": 10.144927536231883, "center_y": 6.08695652173913, "value_uncond": 0.0019408522069250963}, {"x": -10.0, "y": 6.2318840579710155, "x2": -9.710144927536232, "y2": 6.521739130434783, "center_x": -9.855072463768117, "center_y": 6.376811594202899, "value_uncond": 2.502689293738903e-07}, {"x": -9.710144927536232, "y": 6.2318840579710155, "x2": -9.420289855072465, "y2": 6.521739130434783, "center_x": -9.565217391304348, "center_y": 6.376811594202899, "value_uncond": 3.9101822570820645e-07}, {"x": -9.420289855072463, "y": 6.2318840579710155, "x2": -9.130434782608695, "y2": 6.521739130434783, "center_x": -9.275362318840578, "center_y": 6.376811594202899, "value_uncond": 6.052473271715371e-07}, {"x": -9.130434782608695, "y": 6.2318840579710155, "x2": -8.840579710144928, "y2": 6.521739130434783, "center_x": -8.985507246376812, "center_y": 6.376811594202899, "value_uncond": 9.281423175927344e-07}, {"x": -8.840579710144928, "y": 6.2318840579710155, "x2": -8.55072463768116, "y2": 6.521739130434783, "center_x": -8.695652173913043, "center_y": 6.376811594202899, "value_uncond": 1.4100745781337623e-06}, {"x": -8.55072463768116, "y": 6.2318840579710155, "x2": -8.260869565217392, "y2": 6.521739130434783, "center_x": -8.405797101449277, "center_y": 6.376811594202899, "value_uncond": 2.1223421827994186e-06}, {"x": -8.26086956521739, "y": 6.2318840579710155, "x2": -7.971014492753623, "y2": 6.521739130434783, "center_x": -8.115942028985508, "center_y": 6.376811594202899, "value_uncond": 3.1647145495149364e-06}, {"x": -7.971014492753623, "y": 6.2318840579710155, "x2": -7.681159420289855, "y2": 6.521739130434783, "center_x": -7.826086956521739, "center_y": 6.376811594202899, "value_uncond": 4.675192482195596e-06}, {"x": -7.681159420289855, "y": 6.2318840579710155, "x2": -7.391304347826088, "y2": 6.521739130434783, "center_x": -7.536231884057972, "center_y": 6.376811594202899, "value_uncond": 6.842428416685089e-06}, {"x": -7.391304347826087, "y": 6.2318840579710155, "x2": -7.101449275362319, "y2": 6.521739130434783, "center_x": -7.246376811594203, "center_y": 6.376811594202899, "value_uncond": 9.921260294568306e-06}, {"x": -7.101449275362318, "y": 6.2318840579710155, "x2": -6.811594202898551, "y2": 6.521739130434783, "center_x": -6.956521739130435, "center_y": 6.376811594202899, "value_uncond": 1.4251784269809043e-05}, {"x": -6.811594202898551, "y": 6.2318840579710155, "x2": -6.521739130434783, "y2": 6.521739130434783, "center_x": -6.666666666666667, "center_y": 6.376811594202899, "value_uncond": 2.0282311581402006e-05}, {"x": -6.521739130434782, "y": 6.2318840579710155, "x2": -6.231884057971015, "y2": 6.521739130434783, "center_x": -6.3768115942028984, "center_y": 6.376811594202899, "value_uncond": 2.8596407363257766e-05}, {"x": -6.231884057971014, "y": 6.2318840579710155, "x2": -5.942028985507246, "y2": 6.521739130434783, "center_x": -6.08695652173913, "center_y": 6.376811594202899, "value_uncond": 3.9943978062718354e-05}, {"x": -5.942028985507246, "y": 6.2318840579710155, "x2": -5.6521739130434785, "y2": 6.521739130434783, "center_x": -5.797101449275362, "center_y": 6.376811594202899, "value_uncond": 5.5276045867132e-05}, {"x": -5.6521739130434785, "y": 6.2318840579710155, "x2": -5.362318840579711, "y2": 6.521739130434783, "center_x": -5.507246376811595, "center_y": 6.376811594202899, "value_uncond": 7.578241430272746e-05}, {"x": -5.36231884057971, "y": 6.2318840579710155, "x2": -5.072463768115942, "y2": 6.521739130434783, "center_x": -5.217391304347826, "center_y": 6.376811594202899, "value_uncond": 0.00010293088814874822}, {"x": -5.0724637681159415, "y": 6.2318840579710155, "x2": -4.782608695652174, "y2": 6.521739130434783, "center_x": -4.927536231884058, "center_y": 6.376811594202899, "value_uncond": 0.00013850607353238278}, {"x": -4.782608695652174, "y": 6.2318840579710155, "x2": -4.492753623188406, "y2": 6.521739130434783, "center_x": -4.63768115942029, "center_y": 6.376811594202899, "value_uncond": 0.00018464507569012695}, {"x": -4.492753623188405, "y": 6.2318840579710155, "x2": -4.202898550724638, "y2": 6.521739130434783, "center_x": -4.3478260869565215, "center_y": 6.376811594202899, "value_uncond": 0.00024386667482613364}, {"x": -4.202898550724638, "y": 6.2318840579710155, "x2": -3.91304347826087, "y2": 6.521739130434783, "center_x": -4.057971014492754, "center_y": 6.376811594202899, "value_uncond": 0.0003190898558856549}, {"x": -3.913043478260869, "y": 6.2318840579710155, "x2": -3.6231884057971016, "y2": 6.521739130434783, "center_x": -3.7681159420289854, "center_y": 6.376811594202899, "value_uncond": 0.0004136369752263406}, {"x": -3.6231884057971016, "y": 6.2318840579710155, "x2": -3.333333333333334, "y2": 6.521739130434783, "center_x": -3.4782608695652177, "center_y": 6.376811594202899, "value_uncond": 0.0005312164606825947}, {"x": -3.333333333333333, "y": 6.2318840579710155, "x2": -3.0434782608695654, "y2": 6.521739130434783, "center_x": -3.1884057971014492, "center_y": 6.376811594202899, "value_uncond": 0.0006758798652396703}, {"x": -3.0434782608695645, "y": 6.2318840579710155, "x2": -2.753623188405797, "y2": 6.521739130434783, "center_x": -2.8985507246376807, "center_y": 6.376811594202899, "value_uncond": 0.0008519484325302061}, {"x": -2.753623188405797, "y": 6.2318840579710155, "x2": -2.4637681159420293, "y2": 6.521739130434783, "center_x": -2.608695652173913, "center_y": 6.376811594202899, "value_uncond": 0.0010639051769108295}, {"x": -2.4637681159420284, "y": 6.2318840579710155, "x2": -2.1739130434782608, "y2": 6.521739130434783, "center_x": -2.3188405797101446, "center_y": 6.376811594202899, "value_uncond": 0.0013162498982813384}, {"x": -2.1739130434782608, "y": 6.2318840579710155, "x2": -1.8840579710144931, "y2": 6.521739130434783, "center_x": -2.028985507246377, "center_y": 6.376811594202899, "value_uncond": 0.0016133165673480364}, {"x": -1.8840579710144922, "y": 6.2318840579710155, "x2": -1.5942028985507246, "y2": 6.521739130434783, "center_x": -1.7391304347826084, "center_y": 6.376811594202899, "value_uncond": 0.001959055100746278}, {"x": -1.5942028985507246, "y": 6.2318840579710155, "x2": -1.304347826086957, "y2": 6.521739130434783, "center_x": -1.4492753623188408, "center_y": 6.376811594202899, "value_uncond": 0.0023567826009630436}, {"x": -1.304347826086957, "y": 6.2318840579710155, "x2": -1.0144927536231894, "y2": 6.521739130434783, "center_x": -1.1594202898550732, "center_y": 6.376811594202899, "value_uncond": 0.0028089124947273613}, {"x": -1.0144927536231876, "y": 6.2318840579710155, "x2": -0.72463768115942, "y2": 6.521739130434783, "center_x": -0.8695652173913038, "center_y": 6.376811594202899, "value_uncond": 0.0033166734261969566}, {"x": -0.72463768115942, "y": 6.2318840579710155, "x2": -0.43478260869565233, "y2": 6.521739130434783, "center_x": -0.5797101449275361, "center_y": 6.376811594202899, "value_uncond": 0.003879832948551227}, {"x": -0.43478260869565233, "y": 6.2318840579710155, "x2": -0.1449275362318847, "y2": 6.521739130434783, "center_x": -0.2898550724637685, "center_y": 6.376811594202899, "value_uncond": 0.004496443670434078}, {"x": -0.14492753623188293, "y": 6.2318840579710155, "x2": 0.1449275362318847, "y2": 6.521739130434783, "center_x": 8.881784197001252e-16, "center_y": 6.376811594202899, "value_uncond": 0.005162631202661442}, {"x": 0.1449275362318847, "y": 6.2318840579710155, "x2": 0.43478260869565233, "y2": 6.521739130434783, "center_x": 0.2898550724637685, "center_y": 6.376811594202899, "value_uncond": 0.0058724436925257605}, {"x": 0.43478260869565233, "y": 6.2318840579710155, "x2": 0.72463768115942, "y2": 6.521739130434783, "center_x": 0.5797101449275361, "center_y": 6.376811594202899, "value_uncond": 0.006617781671290226}, {"x": 0.72463768115942, "y": 6.2318840579710155, "x2": 1.0144927536231876, "y2": 6.521739130434783, "center_x": 0.8695652173913038, "center_y": 6.376811594202899, "value_uncond": 0.007388424224689674}, {"x": 1.0144927536231894, "y": 6.2318840579710155, "x2": 1.304347826086957, "y2": 6.521739130434783, "center_x": 1.1594202898550732, "center_y": 6.376811594202899, "value_uncond": 0.008172163115959143}, {"x": 1.304347826086957, "y": 6.2318840579710155, "x2": 1.5942028985507246, "y2": 6.521739130434783, "center_x": 1.4492753623188408, "center_y": 6.376811594202899, "value_uncond": 0.008955050597924173}, {"x": 1.5942028985507246, "y": 6.2318840579710155, "x2": 1.8840579710144922, "y2": 6.521739130434783, "center_x": 1.7391304347826084, "center_y": 6.376811594202899, "value_uncond": 0.00972175956574586}, {"x": 1.884057971014494, "y": 6.2318840579710155, "x2": 2.1739130434782616, "y2": 6.521739130434783, "center_x": 2.028985507246378, "center_y": 6.376811594202899, "value_uncond": 0.010456046902358579}, {"x": 2.1739130434782616, "y": 6.2318840579710155, "x2": 2.4637681159420293, "y2": 6.521739130434783, "center_x": 2.3188405797101455, "center_y": 6.376811594202899, "value_uncond": 0.011141302956296993}, {"x": 2.4637681159420293, "y": 6.2318840579710155, "x2": 2.753623188405797, "y2": 6.521739130434783, "center_x": 2.608695652173913, "center_y": 6.376811594202899, "value_uncond": 0.011761162742523812}, {"x": 2.753623188405797, "y": 6.2318840579710155, "x2": 3.0434782608695645, "y2": 6.521739130434783, "center_x": 2.8985507246376807, "center_y": 6.376811594202899, "value_uncond": 0.012300148357168889}, {"x": 3.0434782608695663, "y": 6.2318840579710155, "x2": 3.333333333333334, "y2": 6.521739130434783, "center_x": 3.18840579710145, "center_y": 6.376811594202899, "value_uncond": 0.012744307871617264}, {"x": 3.333333333333334, "y": 6.2318840579710155, "x2": 3.6231884057971016, "y2": 6.521739130434783, "center_x": 3.4782608695652177, "center_y": 6.376811594202899, "value_uncond": 0.01308181411328583}, {"x": 3.6231884057971016, "y": 6.2318840579710155, "x2": 3.913043478260869, "y2": 6.521739130434783, "center_x": 3.7681159420289854, "center_y": 6.376811594202899, "value_uncond": 0.013303487550489101}, {"x": 3.913043478260871, "y": 6.2318840579710155, "x2": 4.202898550724639, "y2": 6.521739130434783, "center_x": 4.057971014492755, "center_y": 6.376811594202899, "value_uncond": 0.013403211042638046}, {"x": 4.202898550724639, "y": 6.2318840579710155, "x2": 4.492753623188406, "y2": 6.521739130434783, "center_x": 4.347826086956522, "center_y": 6.376811594202899, "value_uncond": 0.013378210306499836}, {"x": 4.492753623188406, "y": 6.2318840579710155, "x2": 4.782608695652174, "y2": 6.521739130434783, "center_x": 4.63768115942029, "center_y": 6.376811594202899, "value_uncond": 0.01322918215151925}, {"x": 4.782608695652174, "y": 6.2318840579710155, "x2": 5.0724637681159415, "y2": 6.521739130434783, "center_x": 4.927536231884058, "center_y": 6.376811594202899, "value_uncond": 0.012960262211452207}, {"x": 5.072463768115943, "y": 6.2318840579710155, "x2": 5.362318840579711, "y2": 6.521739130434783, "center_x": 5.217391304347827, "center_y": 6.376811594202899, "value_uncond": 0.012578834257875104}, {"x": 5.362318840579711, "y": 6.2318840579710155, "x2": 5.6521739130434785, "y2": 6.521739130434783, "center_x": 5.507246376811595, "center_y": 6.376811594202899, "value_uncond": 0.012095193366675168}, {"x": 5.6521739130434785, "y": 6.2318840579710155, "x2": 5.942028985507246, "y2": 6.521739130434783, "center_x": 5.797101449275362, "center_y": 6.376811594202899, "value_uncond": 0.011522084382001349}, {"x": 5.942028985507246, "y": 6.2318840579710155, "x2": 6.231884057971014, "y2": 6.521739130434783, "center_x": 6.08695652173913, "center_y": 6.376811594202899, "value_uncond": 0.010874144545693331}, {"x": 6.2318840579710155, "y": 6.2318840579710155, "x2": 6.521739130434783, "y2": 6.521739130434783, "center_x": 6.376811594202899, "center_y": 6.376811594202899, "value_uncond": 0.010167284270206396}, {"x": 6.521739130434785, "y": 6.2318840579710155, "x2": 6.8115942028985526, "y2": 6.521739130434783, "center_x": 6.666666666666669, "center_y": 6.376811594202899, "value_uncond": 0.009418042491643618}, {"x": 6.811594202898551, "y": 6.2318840579710155, "x2": 7.101449275362318, "y2": 6.521739130434783, "center_x": 6.956521739130435, "center_y": 6.376811594202899, "value_uncond": 0.008642952760560024}, {"x": 7.10144927536232, "y": 6.2318840579710155, "x2": 7.391304347826088, "y2": 6.521739130434783, "center_x": 7.246376811594204, "center_y": 6.376811594202899, "value_uncond": 0.007857953375103437}, {"x": 7.391304347826086, "y": 6.2318840579710155, "x2": 7.681159420289854, "y2": 6.521739130434783, "center_x": 7.53623188405797, "center_y": 6.376811594202899, "value_uncond": 0.00707786981783574}, {"x": 7.681159420289855, "y": 6.2318840579710155, "x2": 7.971014492753623, "y2": 6.521739130434783, "center_x": 7.826086956521739, "center_y": 6.376811594202899, "value_uncond": 0.00631599107808199}, {"x": 7.971014492753625, "y": 6.2318840579710155, "x2": 8.260869565217392, "y2": 6.521739130434783, "center_x": 8.115942028985508, "center_y": 6.376811594202899, "value_uncond": 0.005583753783940637}, {"x": 8.26086956521739, "y": 6.2318840579710155, "x2": 8.550724637681158, "y2": 6.521739130434783, "center_x": 8.405797101449274, "center_y": 6.376811594202899, "value_uncond": 0.004890540122578068}, {"x": 8.55072463768116, "y": 6.2318840579710155, "x2": 8.840579710144928, "y2": 6.521739130434783, "center_x": 8.695652173913043, "center_y": 6.376811594202899, "value_uncond": 0.0042435879475285635}, {"x": 8.84057971014493, "y": 6.2318840579710155, "x2": 9.130434782608697, "y2": 6.521739130434783, "center_x": 8.985507246376812, "center_y": 6.376811594202899, "value_uncond": 0.003648004814542142}, {"x": 9.130434782608695, "y": 6.2318840579710155, "x2": 9.420289855072463, "y2": 6.521739130434783, "center_x": 9.275362318840578, "center_y": 6.376811594202899, "value_uncond": 0.0031068723705198263}, {"x": 9.420289855072465, "y": 6.2318840579710155, "x2": 9.710144927536232, "y2": 6.521739130434783, "center_x": 9.565217391304348, "center_y": 6.376811594202899, "value_uncond": 0.002621423796794503}, {"x": 9.710144927536234, "y": 6.2318840579710155, "x2": 10.000000000000002, "y2": 6.521739130434783, "center_x": 9.855072463768117, "center_y": 6.376811594202899, "value_uncond": 0.0021912749635933215}, {"x": 10.0, "y": 6.2318840579710155, "x2": 10.289855072463768, "y2": 6.521739130434783, "center_x": 10.144927536231883, "center_y": 6.376811594202899, "value_uncond": 0.0018146895170783953}, {"x": -10.0, "y": 6.521739130434785, "x2": -9.710144927536232, "y2": 6.8115942028985526, "center_x": -9.855072463768117, "center_y": 6.666666666666669, "value_uncond": 2.318262525705508e-07}, {"x": -9.710144927536232, "y": 6.521739130434785, "x2": -9.420289855072465, "y2": 6.8115942028985526, "center_x": -9.565217391304348, "center_y": 6.666666666666669, "value_uncond": 3.6220353113548075e-07}, {"x": -9.420289855072463, "y": 6.521739130434785, "x2": -9.130434782608695, "y2": 6.8115942028985526, "center_x": -9.275362318840578, "center_y": 6.666666666666669, "value_uncond": 5.606457824690636e-07}, {"x": -9.130434782608695, "y": 6.521739130434785, "x2": -8.840579710144928, "y2": 6.8115942028985526, "center_x": -8.985507246376812, "center_y": 6.666666666666669, "value_uncond": 8.59746177353957e-07}, {"x": -8.840579710144928, "y": 6.521739130434785, "x2": -8.55072463768116, "y2": 6.8115942028985526, "center_x": -8.695652173913043, "center_y": 6.666666666666669, "value_uncond": 1.3061641575386623e-06}, {"x": -8.55072463768116, "y": 6.521739130434785, "x2": -8.260869565217392, "y2": 6.8115942028985526, "center_x": -8.405797101449277, "center_y": 6.666666666666669, "value_uncond": 1.965943739567227e-06}, {"x": -8.26086956521739, "y": 6.521739130434785, "x2": -7.971014492753623, "y2": 6.8115942028985526, "center_x": -8.115942028985508, "center_y": 6.666666666666669, "value_uncond": 2.931502189684466e-06}, {"x": -7.971014492753623, "y": 6.521739130434785, "x2": -7.681159420289855, "y2": 6.8115942028985526, "center_x": -7.826086956521739, "center_y": 6.666666666666669, "value_uncond": 4.330670834389596e-06}, {"x": -7.681159420289855, "y": 6.521739130434785, "x2": -7.391304347826088, "y2": 6.8115942028985526, "center_x": -7.536231884057972, "center_y": 6.666666666666669, "value_uncond": 6.338200040615343e-06}, {"x": -7.391304347826087, "y": 6.521739130434785, "x2": -7.101449275362319, "y2": 6.8115942028985526, "center_x": -7.246376811594203, "center_y": 6.666666666666669, "value_uncond": 9.190148376072125e-06}, {"x": -7.101449275362318, "y": 6.521739130434785, "x2": -6.811594202898551, "y2": 6.8115942028985526, "center_x": -6.956521739130435, "center_y": 6.666666666666669, "value_uncond": 1.3201549820744305e-05}, {"x": -6.811594202898551, "y": 6.521739130434785, "x2": -6.521739130434783, "y2": 6.8115942028985526, "center_x": -6.666666666666667, "center_y": 6.666666666666669, "value_uncond": 1.8787678914629364e-05}, {"x": -6.521739130434782, "y": 6.521739130434785, "x2": -6.231884057971015, "y2": 6.8115942028985526, "center_x": -6.3768115942028984, "center_y": 6.666666666666669, "value_uncond": 2.6489097038893434e-05}, {"x": -6.231884057971014, "y": 6.521739130434785, "x2": -5.942028985507246, "y2": 6.8115942028985526, "center_x": -6.08695652173913, "center_y": 6.666666666666669, "value_uncond": 3.70004489578735e-05}, {"x": -5.942028985507246, "y": 6.521739130434785, "x2": -5.6521739130434785, "y2": 6.8115942028985526, "center_x": -5.797101449275362, "center_y": 6.666666666666669, "value_uncond": 5.12026746682202e-05}, {"x": -5.6521739130434785, "y": 6.521739130434785, "x2": -5.362318840579711, "y2": 6.8115942028985526, "center_x": -5.507246376811595, "center_y": 6.666666666666669, "value_uncond": 7.019789936570147e-05}, {"x": -5.36231884057971, "y": 6.521739130434785, "x2": -5.072463768115942, "y2": 6.8115942028985526, "center_x": -5.217391304347826, "center_y": 6.666666666666669, "value_uncond": 9.534576318754272e-05}, {"x": -5.0724637681159415, "y": 6.521739130434785, "x2": -4.782608695652174, "y2": 6.8115942028985526, "center_x": -4.927536231884058, "center_y": 6.666666666666669, "value_uncond": 0.00012829936207264282}, {"x": -4.782608695652174, "y": 6.521739130434785, "x2": -4.492753623188406, "y2": 6.8115942028985526, "center_x": -4.63768115942029, "center_y": 6.666666666666669, "value_uncond": 0.00017103831490363806}, {"x": -4.492753623188405, "y": 6.521739130434785, "x2": -4.202898550724638, "y2": 6.8115942028985526, "center_x": -4.3478260869565215, "center_y": 6.666666666666669, "value_uncond": 0.00022589578935435225}, {"x": -4.202898550724638, "y": 6.521739130434785, "x2": -3.91304347826087, "y2": 6.8115942028985526, "center_x": -4.057971014492754, "center_y": 6.666666666666669, "value_uncond": 0.00029557566617762447}, {"x": -3.913043478260869, "y": 6.521739130434785, "x2": -3.6231884057971016, "y2": 6.8115942028985526, "center_x": -3.7681159420289854, "center_y": 6.666666666666669, "value_uncond": 0.00038315547252005096}, {"x": -3.6231884057971016, "y": 6.521739130434785, "x2": -3.333333333333334, "y2": 6.8115942028985526, "center_x": -3.4782608695652177, "center_y": 6.666666666666669, "value_uncond": 0.000492070356843445}, {"x": -3.333333333333333, "y": 6.521739130434785, "x2": -3.0434782608695654, "y2": 6.8115942028985526, "center_x": -3.1884057971014492, "center_y": 6.666666666666669, "value_uncond": 0.0006260733073753584}, {"x": -3.0434782608695645, "y": 6.521739130434785, "x2": -2.753623188405797, "y2": 6.8115942028985526, "center_x": -2.8985507246376807, "center_y": 6.666666666666669, "value_uncond": 0.0007891671290996348}, {"x": -2.753623188405797, "y": 6.521739130434785, "x2": -2.4637681159420293, "y2": 6.8115942028985526, "center_x": -2.608695652173913, "center_y": 6.666666666666669, "value_uncond": 0.000985504476607145}, {"x": -2.4637681159420284, "y": 6.521739130434785, "x2": -2.1739130434782608, "y2": 6.8115942028985526, "center_x": -2.3188405797101446, "center_y": 6.666666666666669, "value_uncond": 0.0012192535530811497}, {"x": -2.1739130434782608, "y": 6.521739130434785, "x2": -1.8840579710144931, "y2": 6.8115942028985526, "center_x": -2.028985507246377, "center_y": 6.666666666666669, "value_uncond": 0.0014944289527028226}, {"x": -1.8840579710144922, "y": 6.521739130434785, "x2": -1.5942028985507246, "y2": 6.8115942028985526, "center_x": -1.7391304347826084, "center_y": 6.666666666666669, "value_uncond": 0.0018146895170783953}, {"x": -1.5942028985507246, "y": 6.521739130434785, "x2": -1.304347826086957, "y2": 6.8115942028985526, "center_x": -1.4492753623188408, "center_y": 6.666666666666669, "value_uncond": 0.0021831079066490715}, {"x": -1.304347826086957, "y": 6.521739130434785, "x2": -1.0144927536231894, "y2": 6.8115942028985526, "center_x": -1.1594202898550732, "center_y": 6.666666666666669, "value_uncond": 0.0026019196992624204}, {"x": -1.0144927536231876, "y": 6.521739130434785, "x2": -0.72463768115942, "y2": 6.8115942028985526, "center_x": -0.8695652173913038, "center_y": 6.666666666666669, "value_uncond": 0.0030722629985238}, {"x": -0.72463768115942, "y": 6.521739130434785, "x2": -0.43478260869565233, "y2": 6.8115942028985526, "center_x": -0.5797101449275361, "center_y": 6.666666666666669, "value_uncond": 0.0035939224869526182}, {"x": -0.43478260869565233, "y": 6.521739130434785, "x2": -0.1449275362318847, "y2": 6.8115942028985526, "center_x": -0.2898550724637685, "center_y": 6.666666666666669, "value_uncond": 0.004165094279258357}, {"x": -0.14492753623188293, "y": 6.521739130434785, "x2": 0.1449275362318847, "y2": 6.8115942028985526, "center_x": 8.881784197001252e-16, "center_y": 6.666666666666669, "value_uncond": 0.004782189495559725}, {"x": 0.1449275362318847, "y": 6.521739130434785, "x2": 0.43478260869565233, "y2": 6.8115942028985526, "center_x": 0.2898550724637685, "center_y": 6.666666666666669, "value_uncond": 0.005439694883722319}, {"x": 0.43478260869565233, "y": 6.521739130434785, "x2": 0.72463768115942, "y2": 6.8115942028985526, "center_x": 0.5797101449275361, "center_y": 6.666666666666669, "value_uncond": 0.006130107836491764}, {"x": 0.72463768115942, "y": 6.521739130434785, "x2": 1.0144927536231876, "y2": 6.8115942028985526, "center_x": 0.8695652173913038, "center_y": 6.666666666666669, "value_uncond": 0.006843960633452795}, {"x": 1.0144927536231894, "y": 6.521739130434785, "x2": 1.304347826086957, "y2": 6.8115942028985526, "center_x": 1.1594202898550732, "center_y": 6.666666666666669, "value_uncond": 0.0075699446803392575}, {"x": 1.304347826086957, "y": 6.521739130434785, "x2": 1.5942028985507246, "y2": 6.8115942028985526, "center_x": 1.4492753623188408, "center_y": 6.666666666666669, "value_uncond": 0.008295140059495587}, {"x": 1.5942028985507246, "y": 6.521739130434785, "x2": 1.8840579710144922, "y2": 6.8115942028985526, "center_x": 1.7391304347826084, "center_y": 6.666666666666669, "value_uncond": 0.009005349142448897}, {"x": 1.884057971014494, "y": 6.521739130434785, "x2": 2.1739130434782616, "y2": 6.8115942028985526, "center_x": 2.028985507246378, "center_y": 6.666666666666669, "value_uncond": 0.009685525790755987}, {"x": 2.1739130434782616, "y": 6.521739130434785, "x2": 2.4637681159420293, "y2": 6.8115942028985526, "center_x": 2.3188405797101455, "center_y": 6.666666666666669, "value_uncond": 0.01032028434202024}, {"x": 2.4637681159420293, "y": 6.521739130434785, "x2": 2.753623188405797, "y2": 6.8115942028985526, "center_x": 2.608695652173913, "center_y": 6.666666666666669, "value_uncond": 0.010894465770452633}, {"x": 2.753623188405797, "y": 6.521739130434785, "x2": 3.0434782608695645, "y2": 6.8115942028985526, "center_x": 2.8985507246376807, "center_y": 6.666666666666669, "value_uncond": 0.011393732761146198}, {"x": 3.0434782608695663, "y": 6.521739130434785, "x2": 3.333333333333334, "y2": 6.8115942028985526, "center_x": 3.18840579710145, "center_y": 6.666666666666669, "value_uncond": 0.011805161523141232}, {"x": 3.333333333333334, "y": 6.521739130434785, "x2": 3.6231884057971016, "y2": 6.8115942028985526, "center_x": 3.4782608695652177, "center_y": 6.666666666666669, "value_uncond": 0.012117796445186641}, {"x": 3.6231884057971016, "y": 6.521739130434785, "x2": 3.913043478260869, "y2": 6.8115942028985526, "center_x": 3.7681159420289854, "center_y": 6.666666666666669, "value_uncond": 0.012323134448469077}, {"x": 3.913043478260871, "y": 6.521739130434785, "x2": 4.202898550724639, "y2": 6.8115942028985526, "center_x": 4.057971014492755, "center_y": 6.666666666666669, "value_uncond": 0.012415509173274013}, {"x": 4.202898550724639, "y": 6.521739130434785, "x2": 4.492753623188406, "y2": 6.8115942028985526, "center_x": 4.347826086956522, "center_y": 6.666666666666669, "value_uncond": 0.01239235077728404}, {"x": 4.492753623188406, "y": 6.521739130434785, "x2": 4.782608695652174, "y2": 6.8115942028985526, "center_x": 4.63768115942029, "center_y": 6.666666666666669, "value_uncond": 0.01225430472105531}, {"x": 4.782608695652174, "y": 6.521739130434785, "x2": 5.0724637681159415, "y2": 6.8115942028985526, "center_x": 4.927536231884058, "center_y": 6.666666666666669, "value_uncond": 0.012005201877553301}, {"x": 5.072463768115943, "y": 6.521739130434785, "x2": 5.362318840579711, "y2": 6.8115942028985526, "center_x": 5.217391304347827, "center_y": 6.666666666666669, "value_uncond": 0.011651881897623508}, {"x": 5.362318840579711, "y": 6.521739130434785, "x2": 5.6521739130434785, "y2": 6.8115942028985526, "center_x": 5.507246376811595, "center_y": 6.666666666666669, "value_uncond": 0.011203881198226821}, {"x": 5.6521739130434785, "y": 6.521739130434785, "x2": 5.942028985507246, "y2": 6.8115942028985526, "center_x": 5.797101449275362, "center_y": 6.666666666666669, "value_uncond": 0.010673005437644672}, {"x": 5.942028985507246, "y": 6.521739130434785, "x2": 6.231884057971014, "y2": 6.8115942028985526, "center_x": 6.08695652173913, "center_y": 6.666666666666669, "value_uncond": 0.010072813218345815}, {"x": 6.2318840579710155, "y": 6.521739130434785, "x2": 6.521739130434783, "y2": 6.8115942028985526, "center_x": 6.376811594202899, "center_y": 6.666666666666669, "value_uncond": 0.009418042491643618}, {"x": 6.521739130434785, "y": 6.521739130434785, "x2": 6.8115942028985526, "y2": 6.8115942028985526, "center_x": 6.666666666666669, "center_y": 6.666666666666669, "value_uncond": 0.008724013415689036}, {"x": 6.811594202898551, "y": 6.521739130434785, "x2": 7.101449275362318, "y2": 6.8115942028985526, "center_x": 6.956521739130435, "center_y": 6.666666666666669, "value_uncond": 0.008006041159953757}, {"x": 7.10144927536232, "y": 6.521739130434785, "x2": 7.391304347826088, "y2": 6.8115942028985526, "center_x": 7.246376811594204, "center_y": 6.666666666666669, "value_uncond": 0.007278889506506953}, {"x": 7.391304347826086, "y": 6.521739130434785, "x2": 7.681159420289854, "y2": 6.8115942028985526, "center_x": 7.53623188405797, "center_y": 6.666666666666669, "value_uncond": 0.0065562914268104434}, {"x": 7.681159420289855, "y": 6.521739130434785, "x2": 7.971014492753623, "y2": 6.8115942028985526, "center_x": 7.826086956521739, "center_y": 6.666666666666669, "value_uncond": 0.005850556625482317}, {"x": 7.971014492753625, "y": 6.521739130434785, "x2": 8.260869565217392, "y2": 6.8115942028985526, "center_x": 8.115942028985508, "center_y": 6.666666666666669, "value_uncond": 0.005172278949072917}, {"x": 8.26086956521739, "y": 6.521739130434785, "x2": 8.550724637681158, "y2": 6.8115942028985526, "center_x": 8.405797101449274, "center_y": 6.666666666666669, "value_uncond": 0.004530149197903092}, {"x": 8.55072463768116, "y": 6.521739130434785, "x2": 8.840579710144928, "y2": 6.8115942028985526, "center_x": 8.695652173913043, "center_y": 6.666666666666669, "value_uncond": 0.003930871857686281}, {"x": 8.84057971014493, "y": 6.521739130434785, "x2": 9.130434782608697, "y2": 6.8115942028985526, "center_x": 8.985507246376812, "center_y": 6.666666666666669, "value_uncond": 0.0033791781010546027}, {"x": 9.130434782608695, "y": 6.521739130434785, "x2": 9.420289855072463, "y2": 6.8115942028985526, "center_x": 9.275362318840578, "center_y": 6.666666666666669, "value_uncond": 0.0028779224839235533}, {"x": 9.420289855072465, "y": 6.521739130434785, "x2": 9.710144927536232, "y2": 6.8115942028985526, "center_x": 9.565217391304348, "center_y": 6.666666666666669, "value_uncond": 0.0024282473127226916}, {"x": 9.710144927536234, "y": 6.521739130434785, "x2": 10.000000000000002, "y2": 6.8115942028985526, "center_x": 9.855072463768117, "center_y": 6.666666666666669, "value_uncond": 0.002029796764753759}, {"x": 10.0, "y": 6.521739130434785, "x2": 10.289855072463768, "y2": 6.8115942028985526, "center_x": 10.144927536231883, "center_y": 6.666666666666669, "value_uncond": 0.0016809624405866655}, {"x": -10.0, "y": 6.811594202898551, "x2": -9.710144927536232, "y2": 7.101449275362318, "center_x": -9.855072463768117, "center_y": 6.956521739130435, "value_uncond": 2.1274732529638975e-07}, {"x": -9.710144927536232, "y": 6.811594202898551, "x2": -9.420289855072465, "y2": 7.101449275362318, "center_x": -9.565217391304348, "center_y": 6.956521739130435, "value_uncond": 3.32394763783409e-07}, {"x": -9.420289855072463, "y": 6.811594202898551, "x2": -9.130434782608695, "y2": 7.101449275362318, "center_x": -9.275362318840578, "center_y": 6.956521739130435, "value_uncond": 5.145055373860044e-07}, {"x": -9.130434782608695, "y": 6.811594202898551, "x2": -8.840579710144928, "y2": 7.101449275362318, "center_x": -8.985507246376812, "center_y": 6.956521739130435, "value_uncond": 7.889904514165666e-07}, {"x": -8.840579710144928, "y": 6.811594202898551, "x2": -8.55072463768116, "y2": 7.101449275362318, "center_x": -8.695652173913043, "center_y": 6.956521739130435, "value_uncond": 1.198668950703914e-06}, {"x": -8.55072463768116, "y": 6.811594202898551, "x2": -8.260869565217392, "y2": 7.101449275362318, "center_x": -8.405797101449277, "center_y": 6.956521739130435, "value_uncond": 1.8041497355819331e-06}, {"x": -8.26086956521739, "y": 6.811594202898551, "x2": -7.971014492753623, "y2": 7.101449275362318, "center_x": -8.115942028985508, "center_y": 6.956521739130435, "value_uncond": 2.6902442801040447e-06}, {"x": -7.971014492753623, "y": 6.811594202898551, "x2": -7.681159420289855, "y2": 7.101449275362318, "center_x": -7.826086956521739, "center_y": 6.956521739130435, "value_uncond": 3.974263598446794e-06}, {"x": -7.681159420289855, "y": 6.811594202898551, "x2": -7.391304347826088, "y2": 7.101449275362318, "center_x": -7.536231884057972, "center_y": 6.956521739130435, "value_uncond": 5.816576383746788e-06}, {"x": -7.391304347826087, "y": 6.811594202898551, "x2": -7.101449275362319, "y2": 7.101449275362318, "center_x": -7.246376811594203, "center_y": 6.956521739130435, "value_uncond": 8.433813963719633e-06}, {"x": -7.101449275362318, "y": 6.811594202898551, "x2": -6.811594202898551, "y2": 7.101449275362318, "center_x": -6.956521739130435, "center_y": 6.956521739130435, "value_uncond": 1.2115083529099698e-05}, {"x": -6.811594202898551, "y": 6.811594202898551, "x2": -6.521739130434783, "y2": 7.101449275362318, "center_x": -6.666666666666667, "center_y": 6.956521739130435, "value_uncond": 1.7241483193963888e-05}, {"x": -6.521739130434782, "y": 6.811594202898551, "x2": -6.231884057971015, "y2": 7.101449275362318, "center_x": -6.3768115942028984, "center_y": 6.956521739130435, "value_uncond": 2.4309087008280366e-05}, {"x": -6.231884057971014, "y": 6.811594202898551, "x2": -5.942028985507246, "y2": 7.101449275362318, "center_x": -6.08695652173913, "center_y": 6.956521739130435, "value_uncond": 3.3955371590875396e-05}, {"x": -5.942028985507246, "y": 6.811594202898551, "x2": -5.6521739130434785, "y2": 7.101449275362318, "center_x": -5.797101449275362, "center_y": 6.956521739130435, "value_uncond": 4.698877699526274e-05}, {"x": -5.6521739130434785, "y": 6.811594202898551, "x2": -5.362318840579711, "y2": 7.101449275362318, "center_x": -5.507246376811595, "center_y": 6.956521739130435, "value_uncond": 6.44207252883631e-05}, {"x": -5.36231884057971, "y": 6.811594202898551, "x2": -5.072463768115942, "y2": 7.101449275362318, "center_x": -5.217391304347826, "center_y": 6.956521739130435, "value_uncond": 8.74989604135519e-05}, {"x": -5.0724637681159415, "y": 6.811594202898551, "x2": -4.782608695652174, "y2": 7.101449275362318, "center_x": -4.927536231884058, "center_y": 6.956521739130435, "value_uncond": 0.00011774053117595541}, {"x": -4.782608695652174, "y": 6.811594202898551, "x2": -4.492753623188406, "y2": 7.101449275362318, "center_x": -4.63768115942029, "center_y": 6.956521739130435, "value_uncond": 0.00015696213701197131}, {"x": -4.492753623188405, "y": 6.811594202898551, "x2": -4.202898550724638, "y2": 7.101449275362318, "center_x": -4.3478260869565215, "center_y": 6.956521739130435, "value_uncond": 0.00020730492965299356}, {"x": -4.202898550724638, "y": 6.811594202898551, "x2": -3.91304347826087, "y2": 7.101449275362318, "center_x": -4.057971014492754, "center_y": 6.956521739130435, "value_uncond": 0.0002712502648199919}, {"x": -3.913043478260869, "y": 6.811594202898551, "x2": -3.6231884057971016, "y2": 7.101449275362318, "center_x": -3.7681159420289854, "center_y": 6.956521739130435, "value_uncond": 0.000351622394131174}, {"x": -3.6231884057971016, "y": 6.811594202898551, "x2": -3.333333333333334, "y2": 7.101449275362318, "center_x": -3.4782608695652177, "center_y": 6.956521739130435, "value_uncond": 0.0004515737588616033}, {"x": -3.333333333333333, "y": 6.811594202898551, "x2": -3.0434782608695654, "y2": 7.101449275362318, "center_x": -3.1884057971014492, "center_y": 6.956521739130435, "value_uncond": 0.0005745484823511837}, {"x": -3.0434782608695645, "y": 6.811594202898551, "x2": -2.753623188405797, "y2": 7.101449275362318, "center_x": -2.8985507246376807, "center_y": 6.956521739130435, "value_uncond": 0.0007242199451793485}, {"x": -2.753623188405797, "y": 6.811594202898551, "x2": -2.4637681159420293, "y2": 7.101449275362318, "center_x": -2.608695652173913, "center_y": 6.956521739130435, "value_uncond": 0.0009043990451512076}, {"x": -2.4637681159420284, "y": 6.811594202898551, "x2": -2.1739130434782608, "y2": 7.101449275362318, "center_x": -2.3188405797101446, "center_y": 6.956521739130435, "value_uncond": 0.001118910949040142}, {"x": -2.1739130434782608, "y": 6.811594202898551, "x2": -1.8840579710144931, "y2": 7.101449275362318, "center_x": -2.028985507246377, "center_y": 6.956521739130435, "value_uncond": 0.0013714398563909602}, {"x": -1.8840579710144922, "y": 6.811594202898551, "x2": -1.5942028985507246, "y2": 7.101449275362318, "center_x": -1.7391304347826084, "center_y": 6.956521739130435, "value_uncond": 0.0016653434920375757}, {"x": -1.5942028985507246, "y": 6.811594202898551, "x2": -1.304347826086957, "y2": 7.101449275362318, "center_x": -1.4492753623188408, "center_y": 6.956521739130435, "value_uncond": 0.0020034416414148196}, {"x": -1.304347826086957, "y": 6.811594202898551, "x2": -1.0144927536231894, "y2": 7.101449275362318, "center_x": -1.1594202898550732, "center_y": 6.956521739130435, "value_uncond": 0.002387785897913383}, {"x": -1.0144927536231876, "y": 6.811594202898551, "x2": -0.72463768115942, "y2": 7.101449275362318, "center_x": -0.8695652173913038, "center_y": 6.956521739130435, "value_uncond": 0.0028194207010446017}, {"x": -0.72463768115942, "y": 6.811594202898551, "x2": -0.43478260869565233, "y2": 7.101449275362318, "center_x": -0.5797101449275361, "center_y": 6.956521739130435, "value_uncond": 0.00329814845360981}, {"x": -0.43478260869565233, "y": 6.811594202898551, "x2": -0.1449275362318847, "y2": 7.101449275362318, "center_x": -0.2898550724637685, "center_y": 6.956521739130435, "value_uncond": 0.0038223137271730825}, {"x": -0.14492753623188293, "y": 6.811594202898551, "x2": 0.1449275362318847, "y2": 7.101449275362318, "center_x": 8.881784197001252e-16, "center_y": 6.956521739130435, "value_uncond": 0.004388623000888145}, {"x": 0.1449275362318847, "y": 6.811594202898551, "x2": 0.43478260869565233, "y2": 7.101449275362318, "center_x": 0.2898550724637685, "center_y": 6.956521739130435, "value_uncond": 0.004992016754393205}, {"x": 0.43478260869565233, "y": 6.811594202898551, "x2": 0.72463768115942, "y2": 7.101449275362318, "center_x": 0.5797101449275361, "center_y": 6.956521739130435, "value_uncond": 0.005625609832929387}, {"x": 0.72463768115942, "y": 6.811594202898551, "x2": 1.0144927536231876, "y2": 7.101449275362318, "center_x": 0.8695652173913038, "center_y": 6.956521739130435, "value_uncond": 0.006280713694225632}, {"x": 1.0144927536231894, "y": 6.811594202898551, "x2": 1.304347826086957, "y2": 7.101449275362318, "center_x": 1.1594202898550732, "center_y": 6.956521739130435, "value_uncond": 0.006946950423113533}, {"x": 1.304347826086957, "y": 6.811594202898551, "x2": 1.5942028985507246, "y2": 7.101449275362318, "center_x": 1.4492753623188408, "center_y": 6.956521739130435, "value_uncond": 0.007612463390355489}, {"x": 1.5942028985507246, "y": 6.811594202898551, "x2": 1.8840579710144922, "y2": 7.101449275362318, "center_x": 1.7391304347826084, "center_y": 6.956521739130435, "value_uncond": 0.008264223409439334}, {"x": 1.884057971014494, "y": 6.811594202898551, "x2": 2.1739130434782616, "y2": 7.101449275362318, "center_x": 2.028985507246378, "center_y": 6.956521739130435, "value_uncond": 0.00888842261488678}, {"x": 2.1739130434782616, "y": 6.811594202898551, "x2": 2.4637681159420293, "y2": 7.101449275362318, "center_x": 2.3188405797101455, "center_y": 6.956521739130435, "value_uncond": 0.009470941559540745}, {"x": 2.4637681159420293, "y": 6.811594202898551, "x2": 2.753623188405797, "y2": 7.101449275362318, "center_x": 2.608695652173913, "center_y": 6.956521739130435, "value_uncond": 0.0099978687810239}, {"x": 2.753623188405797, "y": 6.811594202898551, "x2": 3.0434782608695645, "y2": 7.101449275362318, "center_x": 2.8985507246376807, "center_y": 6.956521739130435, "value_uncond": 0.010456046902358577}, {"x": 3.0434782608695663, "y": 6.811594202898551, "x2": 3.333333333333334, "y2": 7.101449275362318, "center_x": 3.18840579710145, "center_y": 6.956521739130435, "value_uncond": 0.010833615739769736}, {"x": 3.333333333333334, "y": 6.811594202898551, "x2": 3.6231884057971016, "y2": 7.101449275362318, "center_x": 3.4782608695652177, "center_y": 6.956521739130435, "value_uncond": 0.011120521311170306}, {"x": 3.6231884057971016, "y": 6.811594202898551, "x2": 3.913043478260869, "y2": 7.101449275362318, "center_x": 3.7681159420289854, "center_y": 6.956521739130435, "value_uncond": 0.011308960327440668}, {"x": 3.913043478260871, "y": 6.811594202898551, "x2": 4.202898550724639, "y2": 7.101449275362318, "center_x": 4.057971014492755, "center_y": 6.956521739130435, "value_uncond": 0.011393732761146204}, {"x": 4.202898550724639, "y": 6.811594202898551, "x2": 4.492753623188406, "y2": 7.101449275362318, "center_x": 4.347826086956522, "center_y": 6.956521739130435, "value_uncond": 0.011372480263853986}, {"x": 4.492753623188406, "y": 6.811594202898551, "x2": 4.782608695652174, "y2": 7.101449275362318, "center_x": 4.63768115942029, "center_y": 6.956521739130435, "value_uncond": 0.011245795175755779}, {"x": 4.782608695652174, "y": 6.811594202898551, "x2": 5.0724637681159415, "y2": 7.101449275362318, "center_x": 4.927536231884058, "center_y": 6.956521739130435, "value_uncond": 0.011017193095140902}, {"x": 5.072463768115943, "y": 6.811594202898551, "x2": 5.362318840579711, "y2": 7.101449275362318, "center_x": 5.217391304347827, "center_y": 6.956521739130435, "value_uncond": 0.010692950780604234}, {"x": 5.362318840579711, "y": 6.811594202898551, "x2": 5.6521739130434785, "y2": 7.101449275362318, "center_x": 5.507246376811595, "center_y": 6.956521739130435, "value_uncond": 0.010281819817347382}, {"x": 5.6521739130434785, "y": 6.811594202898551, "x2": 5.942028985507246, "y2": 7.101449275362318, "center_x": 5.797101449275362, "center_y": 6.956521739130435, "value_uncond": 0.009794634276985995}, {"x": 5.942028985507246, "y": 6.811594202898551, "x2": 6.231884057971014, "y2": 7.101449275362318, "center_x": 6.08695652173913, "center_y": 6.956521739130435, "value_uncond": 0.009243836910839224}, {"x": 6.2318840579710155, "y": 6.811594202898551, "x2": 6.521739130434783, "y2": 7.101449275362318, "center_x": 6.376811594202899, "center_y": 6.956521739130435, "value_uncond": 0.008642952760560024}, {"x": 6.521739130434785, "y": 6.811594202898551, "x2": 6.8115942028985526, "y2": 7.101449275362318, "center_x": 6.666666666666669, "center_y": 6.956521739130435, "value_uncond": 0.008006041159953757}, {"x": 6.811594202898551, "y": 6.811594202898551, "x2": 7.101449275362318, "y2": 7.101449275362318, "center_x": 6.956521739130435, "center_y": 6.956521739130435, "value_uncond": 0.0073471568647067755}, {"x": 7.10144927536232, "y": 6.811594202898551, "x2": 7.391304347826088, "y2": 7.101449275362318, "center_x": 7.246376811594204, "center_y": 6.956521739130435, "value_uncond": 0.00667984862139824}, {"x": 7.391304347826086, "y": 6.811594202898551, "x2": 7.681159420289854, "y2": 7.101449275362318, "center_x": 7.53623188405797, "center_y": 6.956521739130435, "value_uncond": 0.00601671920005302}, {"x": 7.681159420289855, "y": 6.811594202898551, "x2": 7.971014492753623, "y2": 7.101449275362318, "center_x": 7.826086956521739, "center_y": 6.956521739130435, "value_uncond": 0.00536906523642159}, {"x": 7.971014492753625, "y": 6.811594202898551, "x2": 8.260869565217392, "y2": 7.101449275362318, "center_x": 8.115942028985508, "center_y": 6.956521739130435, "value_uncond": 0.004746608720542592}, {"x": 8.26086956521739, "y": 6.811594202898551, "x2": 8.550724637681158, "y2": 7.101449275362318, "center_x": 8.405797101449274, "center_y": 6.956521739130435, "value_uncond": 0.004157325213865356}, {"x": 8.55072463768116, "y": 6.811594202898551, "x2": 8.840579710144928, "y2": 7.101449275362318, "center_x": 8.695652173913043, "center_y": 6.956521739130435, "value_uncond": 0.003607367433725416}, {"x": 8.84057971014493, "y": 6.811594202898551, "x2": 9.130434782608697, "y2": 7.101449275362318, "center_x": 8.985507246376812, "center_y": 6.956521739130435, "value_uncond": 0.003101077184865926}, {"x": 9.130434782608695, "y": 6.811594202898551, "x2": 9.420289855072463, "y2": 7.101449275362318, "center_x": 9.275362318840578, "center_y": 6.956521739130435, "value_uncond": 0.002641074097847261}, {"x": 9.420289855072465, "y": 6.811594202898551, "x2": 9.710144927536232, "y2": 7.101449275362318, "center_x": 9.565217391304348, "center_y": 6.956521739130435, "value_uncond": 0.002228406469119295}, {"x": 9.710144927536234, "y": 6.811594202898551, "x2": 10.000000000000002, "y2": 7.101449275362318, "center_x": 9.855072463768117, "center_y": 6.956521739130435, "value_uncond": 0.0018627477596188527}, {"x": 10.0, "y": 6.811594202898551, "x2": 10.289855072463768, "y2": 7.101449275362318, "center_x": 10.144927536231883, "center_y": 6.956521739130435, "value_uncond": 0.0015426219385989153}, {"x": -10.0, "y": 7.10144927536232, "x2": -9.710144927536232, "y2": 7.391304347826088, "center_x": -9.855072463768117, "center_y": 7.246376811594204, "value_uncond": 1.9342447068386744e-07}, {"x": -9.710144927536232, "y": 7.10144927536232, "x2": -9.420289855072465, "y2": 7.391304347826088, "center_x": -9.565217391304348, "center_y": 7.246376811594204, "value_uncond": 3.022048862580275e-07}, {"x": -9.420289855072463, "y": 7.10144927536232, "x2": -9.130434782608695, "y2": 7.391304347826088, "center_x": -9.275362318840578, "center_y": 7.246376811594204, "value_uncond": 4.677753814021533e-07}, {"x": -9.130434782608695, "y": 7.10144927536232, "x2": -8.840579710144928, "y2": 7.391304347826088, "center_x": -8.985507246376812, "center_y": 7.246376811594204, "value_uncond": 7.17330101458459e-07}, {"x": -8.840579710144928, "y": 7.10144927536232, "x2": -8.55072463768116, "y2": 7.391304347826088, "center_x": -8.695652173913043, "center_y": 7.246376811594204, "value_uncond": 1.089799399320701e-06}, {"x": -8.55072463768116, "y": 7.10144927536232, "x2": -8.260869565217392, "y2": 7.391304347826088, "center_x": -8.405797101449277, "center_y": 7.246376811594204, "value_uncond": 1.6402871676680804e-06}, {"x": -8.26086956521739, "y": 7.10144927536232, "x2": -7.971014492753623, "y2": 7.391304347826088, "center_x": -8.115942028985508, "center_y": 7.246376811594204, "value_uncond": 2.445901847012585e-06}, {"x": -7.971014492753623, "y": 7.10144927536232, "x2": -7.681159420289855, "y2": 7.391304347826088, "center_x": -7.826086956521739, "center_y": 7.246376811594204, "value_uncond": 3.613299635221212e-06}, {"x": -7.681159420289855, "y": 7.10144927536232, "x2": -7.391304347826088, "y2": 7.391304347826088, "center_x": -7.536231884057972, "center_y": 7.246376811594204, "value_uncond": 5.288283679482755e-06}, {"x": -7.391304347826087, "y": 7.10144927536232, "x2": -7.101449275362319, "y2": 7.391304347826088, "center_x": -7.246376811594203, "center_y": 7.246376811594204, "value_uncond": 7.66780968694211e-06}, {"x": -7.101449275362318, "y": 7.10144927536232, "x2": -6.811594202898551, "y2": 7.391304347826088, "center_x": -6.956521739130435, "center_y": 7.246376811594204, "value_uncond": 1.1014726580662296e-05}, {"x": -6.811594202898551, "y": 7.10144927536232, "x2": -6.521739130434783, "y2": 7.391304347826088, "center_x": -6.666666666666667, "center_y": 7.246376811594204, "value_uncond": 1.56755190973668e-05}, {"x": -6.521739130434782, "y": 7.10144927536232, "x2": -6.231884057971015, "y2": 7.391304347826088, "center_x": -6.3768115942028984, "center_y": 7.246376811594204, "value_uncond": 2.21012051777109e-05}, {"x": -6.231884057971014, "y": 7.10144927536232, "x2": -5.942028985507246, "y2": 7.391304347826088, "center_x": -6.08695652173913, "center_y": 7.246376811594204, "value_uncond": 3.0871362390521965e-05}, {"x": -5.942028985507246, "y": 7.10144927536232, "x2": -5.6521739130434785, "y2": 7.391304347826088, "center_x": -5.797101449275362, "center_y": 7.246376811594204, "value_uncond": 4.27210039220419e-05}, {"x": -5.6521739130434785, "y": 7.10144927536232, "x2": -5.362318840579711, "y2": 7.391304347826088, "center_x": -5.507246376811595, "center_y": 7.246376811594204, "value_uncond": 5.856968905537602e-05}, {"x": -5.36231884057971, "y": 7.10144927536232, "x2": -5.072463768115942, "y2": 7.391304347826088, "center_x": -5.217391304347826, "center_y": 7.246376811594204, "value_uncond": 7.955183492813184e-05}, {"x": -5.0724637681159415, "y": 7.10144927536232, "x2": -4.782608695652174, "y2": 7.391304347826088, "center_x": -4.927536231884058, "center_y": 7.246376811594204, "value_uncond": 0.00010704670382586031}, {"x": -4.782608695652174, "y": 7.10144927536232, "x2": -4.492753623188406, "y2": 7.391304347826088, "center_x": -4.63768115942029, "center_y": 7.246376811594204, "value_uncond": 0.00014270599278582075}, {"x": -4.492753623188405, "y": 7.10144927536232, "x2": -4.202898550724638, "y2": 7.391304347826088, "center_x": -4.3478260869565215, "center_y": 7.246376811594204, "value_uncond": 0.00018847638264041263}, {"x": -4.202898550724638, "y": 7.10144927536232, "x2": -3.91304347826087, "y2": 7.391304347826088, "center_x": -4.057971014492754, "center_y": 7.246376811594204, "value_uncond": 0.0002466138590582607}, {"x": -3.913043478260869, "y": 7.10144927536232, "x2": -3.6231884057971016, "y2": 7.391304347826088, "center_x": -3.7681159420289854, "center_y": 7.246376811594204, "value_uncond": 0.00031968615995836775}, {"x": -3.6231884057971016, "y": 7.10144927536232, "x2": -3.333333333333334, "y2": 7.391304347826088, "center_x": -3.4782608695652177, "center_y": 7.246376811594204, "value_uncond": 0.00041055940496946086}, {"x": -3.333333333333333, "y": 7.10144927536232, "x2": -3.0434782608695654, "y2": 7.391304347826088, "center_x": -3.1884057971014492, "center_y": 7.246376811594204, "value_uncond": 0.0005223649036535408}, {"x": -3.0434782608695645, "y": 7.10144927536232, "x2": -2.753623188405797, "y2": 7.391304347826088, "center_x": -2.8985507246376807, "center_y": 7.246376811594204, "value_uncond": 0.0006584424004384523}, {"x": -2.753623188405797, "y": 7.10144927536232, "x2": -2.4637681159420293, "y2": 7.391304347826088, "center_x": -2.608695652173913, "center_y": 7.246376811594204, "value_uncond": 0.000822256666924762}, {"x": -2.4637681159420284, "y": 7.10144927536232, "x2": -2.1739130434782608, "y2": 7.391304347826088, "center_x": -2.3188405797101446, "center_y": 7.246376811594204, "value_uncond": 0.0010172854476969823}, {"x": -2.1739130434782608, "y": 7.10144927536232, "x2": -1.8840579710144931, "y2": 7.391304347826088, "center_x": -2.028985507246377, "center_y": 7.246376811594204, "value_uncond": 0.001246878323511795}, {"x": -1.8840579710144922, "y": 7.10144927536232, "x2": -1.5942028985507246, "y2": 7.391304347826088, "center_x": -1.7391304347826084, "center_y": 7.246376811594204, "value_uncond": 0.001514088052601515}, {"x": -1.5942028985507246, "y": 7.10144927536232, "x2": -1.304347826086957, "y2": 7.391304347826088, "center_x": -1.4492753623188408, "center_y": 7.246376811594204, "value_uncond": 0.001821478312344528}, {"x": -1.304347826086957, "y": 7.10144927536232, "x2": -1.0144927536231894, "y2": 7.391304347826088, "center_x": -1.1594202898550732, "center_y": 7.246376811594204, "value_uncond": 0.0021709143594019938}, {"x": -1.0144927536231876, "y": 7.10144927536232, "x2": -0.72463768115942, "y2": 7.391304347826088, "center_x": -0.8695652173913038, "center_y": 7.246376811594204, "value_uncond": 0.002563345771679815}, {"x": -0.72463768115942, "y": 7.10144927536232, "x2": -0.43478260869565233, "y2": 7.391304347826088, "center_x": -0.5797101449275361, "center_y": 7.246376811594204, "value_uncond": 0.0029985928988180773}, {"x": -0.43478260869565233, "y": 7.10144927536232, "x2": -0.1449275362318847, "y2": 7.391304347826088, "center_x": -0.2898550724637685, "center_y": 7.246376811594204, "value_uncond": 0.003475150667281647}, {"x": -0.14492753623188293, "y": 7.10144927536232, "x2": 0.1449275362318847, "y2": 7.391304347826088, "center_x": 8.881784197001252e-16, "center_y": 7.246376811594204, "value_uncond": 0.003990024691474892}, {"x": 0.1449275362318847, "y": 7.10144927536232, "x2": 0.43478260869565233, "y2": 7.391304347826088, "center_x": 0.2898550724637685, "center_y": 7.246376811594204, "value_uncond": 0.004538614983846708}, {"x": 0.43478260869565233, "y": 7.10144927536232, "x2": 0.72463768115942, "y2": 7.391304347826088, "center_x": 0.5797101449275361, "center_y": 7.246376811594204, "value_uncond": 0.005114661736369161}, {"x": 0.72463768115942, "y": 7.10144927536232, "x2": 1.0144927536231876, "y2": 7.391304347826088, "center_x": 0.8695652173913038, "center_y": 7.246376811594204, "value_uncond": 0.0057102655468408235}, {"x": 1.0144927536231894, "y": 7.10144927536232, "x2": 1.304347826086957, "y2": 7.391304347826088, "center_x": 1.1594202898550732, "center_y": 7.246376811594204, "value_uncond": 0.006315991078081992}, {"x": 1.304347826086957, "y": 7.10144927536232, "x2": 1.5942028985507246, "y2": 7.391304347826088, "center_x": 1.4492753623188408, "center_y": 7.246376811594204, "value_uncond": 0.00692105858359676}, {"x": 1.5942028985507246, "y": 7.10144927536232, "x2": 1.8840579710144922, "y2": 7.391304347826088, "center_x": 1.7391304347826084, "center_y": 7.246376811594204, "value_uncond": 0.0075136222575633805}, {"x": 1.884057971014494, "y": 7.10144927536232, "x2": 2.1739130434782616, "y2": 7.391304347826088, "center_x": 2.028985507246378, "center_y": 7.246376811594204, "value_uncond": 0.008081128338999469}, {"x": 2.1739130434782616, "y": 7.10144927536232, "x2": 2.4637681159420293, "y2": 7.391304347826088, "center_x": 2.3188405797101455, "center_y": 7.246376811594204, "value_uncond": 0.008610739784765224}, {"x": 2.4637681159420293, "y": 7.10144927536232, "x2": 2.753623188405797, "y2": 7.391304347826088, "center_x": 2.608695652173913, "center_y": 7.246376811594204, "value_uncond": 0.009089808646205944}, {"x": 2.753623188405797, "y": 7.10144927536232, "x2": 3.0434782608695645, "y2": 7.391304347826088, "center_x": 2.8985507246376807, "center_y": 7.246376811594204, "value_uncond": 0.00950637256998089}, {"x": 3.0434782608695663, "y": 7.10144927536232, "x2": 3.333333333333334, "y2": 7.391304347826088, "center_x": 3.18840579710145, "center_y": 7.246376811594204, "value_uncond": 0.00984964857789889}, {"x": 3.333333333333334, "y": 7.10144927536232, "x2": 3.6231884057971016, "y2": 7.391304347826088, "center_x": 3.4782608695652177, "center_y": 7.246376811594204, "value_uncond": 0.010110495844519491}, {"x": 3.6231884057971016, "y": 7.10144927536232, "x2": 3.913043478260869, "y2": 7.391304347826088, "center_x": 3.7681159420289854, "center_y": 7.246376811594204, "value_uncond": 0.010281819817347378}, {"x": 3.913043478260871, "y": 7.10144927536232, "x2": 4.202898550724639, "y2": 7.391304347826088, "center_x": 4.057971014492755, "center_y": 7.246376811594204, "value_uncond": 0.010358892763365537}, {"x": 4.202898550724639, "y": 7.10144927536232, "x2": 4.492753623188406, "y2": 7.391304347826088, "center_x": 4.347826086956522, "center_y": 7.246376811594204, "value_uncond": 0.010339570532010896}, {"x": 4.492753623188406, "y": 7.10144927536232, "x2": 4.782608695652174, "y2": 7.391304347826088, "center_x": 4.63768115942029, "center_y": 7.246376811594204, "value_uncond": 0.01022439166395793}, {"x": 4.782608695652174, "y": 7.10144927536232, "x2": 5.0724637681159415, "y2": 7.391304347826088, "center_x": 4.927536231884058, "center_y": 7.246376811594204, "value_uncond": 0.010016552451979297}, {"x": 5.072463768115943, "y": 7.10144927536232, "x2": 5.362318840579711, "y2": 7.391304347826088, "center_x": 5.217391304347827, "center_y": 7.246376811594204, "value_uncond": 0.009721759565745856}, {"x": 5.362318840579711, "y": 7.10144927536232, "x2": 5.6521739130434785, "y2": 7.391304347826088, "center_x": 5.507246376811595, "center_y": 7.246376811594204, "value_uncond": 0.00934796972449207}, {"x": 5.6521739130434785, "y": 7.10144927536232, "x2": 5.942028985507246, "y2": 7.391304347826088, "center_x": 5.797101449275362, "center_y": 7.246376811594204, "value_uncond": 0.00890503299126662}, {"x": 5.942028985507246, "y": 7.10144927536232, "x2": 6.231884057971014, "y2": 7.391304347826088, "center_x": 6.08695652173913, "center_y": 7.246376811594204, "value_uncond": 0.008404261999891829}, {"x": 6.2318840579710155, "y": 7.10144927536232, "x2": 6.521739130434783, "y2": 7.391304347826088, "center_x": 6.376811594202899, "center_y": 7.246376811594204, "value_uncond": 0.007857953375103437}, {"x": 6.521739130434785, "y": 7.10144927536232, "x2": 6.8115942028985526, "y2": 7.391304347826088, "center_x": 6.666666666666669, "center_y": 7.246376811594204, "value_uncond": 0.007278889506506953}, {"x": 6.811594202898551, "y": 7.10144927536232, "x2": 7.101449275362318, "y2": 7.391304347826088, "center_x": 6.956521739130435, "center_y": 7.246376811594204, "value_uncond": 0.00667984862139824}, {"x": 7.10144927536232, "y": 7.10144927536232, "x2": 7.391304347826088, "y2": 7.391304347826088, "center_x": 7.246376811594204, "center_y": 7.246376811594204, "value_uncond": 0.0060731488964305335}, {"x": 7.391304347826086, "y": 7.10144927536232, "x2": 7.681159420289854, "y2": 7.391304347826088, "center_x": 7.53623188405797, "center_y": 7.246376811594204, "value_uncond": 0.005470248450373667}, {"x": 7.681159420289855, "y": 7.10144927536232, "x2": 7.971014492753623, "y2": 7.391304347826088, "center_x": 7.826086956521739, "center_y": 7.246376811594204, "value_uncond": 0.0048814178978522915}, {"x": 7.971014492753625, "y": 7.10144927536232, "x2": 8.260869565217392, "y2": 7.391304347826088, "center_x": 8.115942028985508, "center_y": 7.246376811594204, "value_uncond": 0.004315496225559179}, {"x": 8.26086956521739, "y": 7.10144927536232, "x2": 8.550724637681158, "y2": 7.391304347826088, "center_x": 8.405797101449274, "center_y": 7.246376811594204, "value_uncond": 0.0037797346116212206}, {"x": 8.55072463768116, "y": 7.10144927536232, "x2": 8.840579710144928, "y2": 7.391304347826088, "center_x": 8.695652173913043, "center_y": 7.246376811594204, "value_uncond": 0.0032797269505432467}, {"x": 8.84057971014493, "y": 7.10144927536232, "x2": 9.130434782608697, "y2": 7.391304347826088, "center_x": 8.985507246376812, "center_y": 7.246376811594204, "value_uncond": 0.002819420701044596}, {"x": 9.130434782608695, "y": 7.10144927536232, "x2": 9.420289855072463, "y2": 7.391304347826088, "center_x": 9.275362318840578, "center_y": 7.246376811594204, "value_uncond": 0.0024011975647698}, {"x": 9.420289855072465, "y": 7.10144927536232, "x2": 9.710144927536232, "y2": 7.391304347826088, "center_x": 9.565217391304348, "center_y": 7.246376811594204, "value_uncond": 0.0020260106262554294}, {"x": 9.710144927536234, "y": 7.10144927536232, "x2": 10.000000000000002, "y2": 7.391304347826088, "center_x": 9.855072463768117, "center_y": 7.246376811594204, "value_uncond": 0.0016935630044696544}, {"x": 10.0, "y": 7.10144927536232, "x2": 10.289855072463768, "y2": 7.391304347826088, "center_x": 10.144927536231883, "center_y": 7.246376811594204, "value_uncond": 0.0014025127297047169}, {"x": -10.0, "y": 7.391304347826086, "x2": -9.710144927536232, "y2": 7.681159420289854, "center_x": -9.855072463768117, "center_y": 7.53623188405797, "value_uncond": 1.7422261977549334e-07}, {"x": -9.710144927536232, "y": 7.391304347826086, "x2": -9.420289855072465, "y2": 7.681159420289854, "center_x": -9.565217391304348, "center_y": 7.53623188405797, "value_uncond": 2.7220406397741216e-07}, {"x": -9.420289855072463, "y": 7.391304347826086, "x2": -9.130434782608695, "y2": 7.681159420289854, "center_x": -9.275362318840578, "center_y": 7.53623188405797, "value_uncond": 4.213378593009689e-07}, {"x": -9.130434782608695, "y": 7.391304347826086, "x2": -8.840579710144928, "y2": 7.681159420289854, "center_x": -8.985507246376812, "center_y": 7.53623188405797, "value_uncond": 6.461185034036994e-07}, {"x": -8.840579710144928, "y": 7.391304347826086, "x2": -8.55072463768116, "y2": 7.681159420289854, "center_x": -8.695652173913043, "center_y": 7.53623188405797, "value_uncond": 9.8161161154077e-07}, {"x": -8.55072463768116, "y": 7.391304347826086, "x2": -8.260869565217392, "y2": 7.681159420289854, "center_x": -8.405797101449277, "center_y": 7.53623188405797, "value_uncond": 1.4774507409785143e-06}, {"x": -8.26086956521739, "y": 7.391304347826086, "x2": -7.971014492753623, "y2": 7.681159420289854, "center_x": -8.115942028985508, "center_y": 7.53623188405797, "value_uncond": 2.2030895366735617e-06}, {"x": -7.971014492753623, "y": 7.391304347826086, "x2": -7.681159420289855, "y2": 7.681159420289854, "center_x": -7.826086956521739, "center_y": 7.53623188405797, "value_uncond": 3.2545961028424198e-06}, {"x": -7.681159420289855, "y": 7.391304347826086, "x2": -7.391304347826088, "y2": 7.681159420289854, "center_x": -7.536231884057972, "center_y": 7.53623188405797, "value_uncond": 4.763299253181387e-06}, {"x": -7.391304347826087, "y": 7.391304347826086, "x2": -7.101449275362319, "y2": 7.681159420289854, "center_x": -7.246376811594203, "center_y": 7.53623188405797, "value_uncond": 6.906602287062016e-06}, {"x": -7.101449275362318, "y": 7.391304347826086, "x2": -6.811594202898551, "y2": 7.681159420289854, "center_x": -6.956521739130435, "center_y": 7.53623188405797, "value_uncond": 9.921260294568306e-06}, {"x": -6.811594202898551, "y": 7.391304347826086, "x2": -6.521739130434783, "y2": 7.681159420289854, "center_x": -6.666666666666667, "center_y": 7.53623188405797, "value_uncond": 1.4119361391184097e-05}, {"x": -6.521739130434782, "y": 7.391304347826086, "x2": -6.231884057971015, "y2": 7.681159420289854, "center_x": -6.3768115942028984, "center_y": 7.53623188405797, "value_uncond": 1.9907149558908627e-05}, {"x": -6.231884057971014, "y": 7.391304347826086, "x2": -5.942028985507246, "y2": 7.681159420289854, "center_x": -6.08695652173913, "center_y": 7.53623188405797, "value_uncond": 2.780666589237285e-05}, {"x": -5.942028985507246, "y": 7.391304347826086, "x2": -5.6521739130434785, "y2": 7.681159420289854, "center_x": -5.797101449275362, "center_y": 7.53623188405797, "value_uncond": 3.8479956524746164e-05}, {"x": -5.6521739130434785, "y": 7.391304347826086, "x2": -5.362318840579711, "y2": 7.681159420289854, "center_x": -5.507246376811595, "center_y": 7.53623188405797, "value_uncond": 5.275529321903279e-05}, {"x": -5.36231884057971, "y": 7.391304347826086, "x2": -5.072463768115942, "y2": 7.681159420289854, "center_x": -5.217391304347826, "center_y": 7.53623188405797, "value_uncond": 7.165447598292267e-05}, {"x": -5.0724637681159415, "y": 7.391304347826086, "x2": -4.782608695652174, "y2": 7.681159420289854, "center_x": -4.927536231884058, "center_y": 7.53623188405797, "value_uncond": 9.641984343001844e-05}, {"x": -4.782608695652174, "y": 7.391304347826086, "x2": -4.492753623188406, "y2": 7.681159420289854, "center_x": -4.63768115942029, "center_y": 7.53623188405797, "value_uncond": 0.0001285391234775238}, {"x": -4.492753623188405, "y": 7.391304347826086, "x2": -4.202898550724638, "y2": 7.681159420289854, "center_x": -4.3478260869565215, "center_y": 7.53623188405797, "value_uncond": 0.0001697657438757553}, {"x": -4.202898550724638, "y": 7.391304347826086, "x2": -3.91304347826087, "y2": 7.681159420289854, "center_x": -4.057971014492754, "center_y": 7.53623188405797, "value_uncond": 0.00022213173155478084}, {"x": -3.913043478260869, "y": 7.391304347826086, "x2": -3.6231884057971016, "y2": 7.681159420289854, "center_x": -3.7681159420289854, "center_y": 7.53623188405797, "value_uncond": 0.0002879499170761312}, {"x": -3.6231884057971016, "y": 7.391304347826086, "x2": -3.333333333333334, "y2": 7.681159420289854, "center_x": -3.4782608695652177, "center_y": 7.53623188405797, "value_uncond": 0.0003698018914274478}, {"x": -3.333333333333333, "y": 7.391304347826086, "x2": -3.0434782608695654, "y2": 7.681159420289854, "center_x": -3.1884057971014492, "center_y": 7.53623188405797, "value_uncond": 0.00047050810929727627}, {"x": -3.0434782608695645, "y": 7.391304347826086, "x2": -2.753623188405797, "y2": 7.681159420289854, "center_x": -2.8985507246376807, "center_y": 7.53623188405797, "value_uncond": 0.000593076768260322}, {"x": -2.753623188405797, "y": 7.391304347826086, "x2": -2.4637681159420293, "y2": 7.681159420289854, "center_x": -2.608695652173913, "center_y": 7.53623188405797, "value_uncond": 0.0007406286812263477}, {"x": -2.4637681159420284, "y": 7.391304347826086, "x2": -2.1739130434782608, "y2": 7.681159420289854, "center_x": -2.3188405797101446, "center_y": 7.53623188405797, "value_uncond": 0.0009162963462204569}, {"x": -2.1739130434782608, "y": 7.391304347826086, "x2": -1.8840579710144931, "y2": 7.681159420289854, "center_x": -2.028985507246377, "center_y": 7.53623188405797, "value_uncond": 0.0011230968206631274}, {"x": -1.8840579710144922, "y": 7.391304347826086, "x2": -1.5942028985507246, "y2": 7.681159420289854, "center_x": -1.7391304347826084, "center_y": 7.53623188405797, "value_uncond": 0.0013637798059488858}, {"x": -1.5942028985507246, "y": 7.391304347826086, "x2": -1.304347826086957, "y2": 7.681159420289854, "center_x": -1.4492753623188408, "center_y": 7.53623188405797, "value_uncond": 0.0016406544752011858}, {"x": -1.304347826086957, "y": 7.391304347826086, "x2": -1.0144927536231894, "y2": 7.681159420289854, "center_x": -1.1594202898550732, "center_y": 7.53623188405797, "value_uncond": 0.001955400915230719}, {"x": -1.0144927536231876, "y": 7.391304347826086, "x2": -0.72463768115942, "y2": 7.681159420289854, "center_x": -0.8695652173913038, "center_y": 7.53623188405797, "value_uncond": 0.0023088744363809113}, {"x": -0.72463768115942, "y": 7.391304347826086, "x2": -0.43478260869565233, "y2": 7.681159420289854, "center_x": -0.5797101449275361, "center_y": 7.53623188405797, "value_uncond": 0.002700913222743788}, {"x": -0.43478260869565233, "y": 7.391304347826086, "x2": -0.1449275362318847, "y2": 7.681159420289854, "center_x": -0.2898550724637685, "center_y": 7.53623188405797, "value_uncond": 0.003130161614131584}, {"x": -0.14492753623188293, "y": 7.391304347826086, "x2": 0.1449275362318847, "y2": 7.681159420289854, "center_x": 8.881784197001252e-16, "center_y": 7.53623188405797, "value_uncond": 0.003593922486952622}, {"x": 0.1449275362318847, "y": 7.391304347826086, "x2": 0.43478260869565233, "y2": 7.681159420289854, "center_x": 0.2898550724637685, "center_y": 7.53623188405797, "value_uncond": 0.004088052508777173}, {"x": 0.43478260869565233, "y": 7.391304347826086, "x2": 0.72463768115942, "y2": 7.681159420289854, "center_x": 0.5797101449275361, "center_y": 7.53623188405797, "value_uncond": 0.004606913302257929}, {"x": 0.72463768115942, "y": 7.391304347826086, "x2": 1.0144927536231876, "y2": 7.681159420289854, "center_x": 0.8695652173913038, "center_y": 7.53623188405797, "value_uncond": 0.00514338966350509}, {"x": 1.0144927536231894, "y": 7.391304347826086, "x2": 1.304347826086957, "y2": 7.681159420289854, "center_x": 1.1594202898550732, "center_y": 7.53623188405797, "value_uncond": 0.0056889829307097284}, {"x": 1.304347826086957, "y": 7.391304347826086, "x2": 1.5942028985507246, "y2": 7.681159420289854, "center_x": 1.4492753623188408, "center_y": 7.53623188405797, "value_uncond": 0.00623398349645561}, {"x": 1.5942028985507246, "y": 7.391304347826086, "x2": 1.8840579710144922, "y2": 7.681159420289854, "center_x": 1.7391304347826084, "center_y": 7.53623188405797, "value_uncond": 0.006767721525037255}, {"x": 1.884057971014494, "y": 7.391304347826086, "x2": 2.1739130434782616, "y2": 7.681159420289854, "center_x": 2.028985507246378, "center_y": 7.53623188405797, "value_uncond": 0.007278889506506966}, {"x": 2.1739130434782616, "y": 7.391304347826086, "x2": 2.4637681159420293, "y2": 7.681159420289854, "center_x": 2.3188405797101455, "center_y": 7.53623188405797, "value_uncond": 0.007755924771063552}, {"x": 2.4637681159420293, "y": 7.391304347826086, "x2": 2.753623188405797, "y2": 7.681159420289854, "center_x": 2.608695652173913, "center_y": 7.53623188405797, "value_uncond": 0.0081874349713912}, {"x": 2.753623188405797, "y": 7.391304347826086, "x2": 3.0434782608695645, "y2": 7.681159420289854, "center_x": 2.8985507246376807, "center_y": 7.53623188405797, "value_uncond": 0.008562645294301409}, {"x": 3.0434782608695663, "y": 7.391304347826086, "x2": 3.333333333333334, "y2": 7.681159420289854, "center_x": 3.18840579710145, "center_y": 7.53623188405797, "value_uncond": 0.008871843221503157}, {"x": 3.333333333333334, "y": 7.391304347826086, "x2": 3.6231884057971016, "y2": 7.681159420289854, "center_x": 3.4782608695652177, "center_y": 7.53623188405797, "value_uncond": 0.0091067953658272}, {"x": 3.6231884057971016, "y": 7.391304347826086, "x2": 3.913043478260869, "y2": 7.681159420289854, "center_x": 3.7681159420289854, "center_y": 7.53623188405797, "value_uncond": 0.009261111473147477}, {"x": 3.913043478260871, "y": 7.391304347826086, "x2": 4.202898550724639, "y2": 7.681159420289854, "center_x": 4.057971014492755, "center_y": 7.53623188405797, "value_uncond": 0.009330533147259464}, {"x": 4.202898550724639, "y": 7.391304347826086, "x2": 4.492753623188406, "y2": 7.681159420289854, "center_x": 4.347826086956522, "center_y": 7.53623188405797, "value_uncond": 0.009313129094118662}, {"x": 4.492753623188406, "y": 7.391304347826086, "x2": 4.782608695652174, "y2": 7.681159420289854, "center_x": 4.63768115942029, "center_y": 7.53623188405797, "value_uncond": 0.009209384391785931}, {"x": 4.782608695652174, "y": 7.391304347826086, "x2": 5.0724637681159415, "y2": 7.681159420289854, "center_x": 4.927536231884058, "center_y": 7.53623188405797, "value_uncond": 0.009022178027074335}, {"x": 5.072463768115943, "y": 7.391304347826086, "x2": 5.362318840579711, "y2": 7.681159420289854, "center_x": 5.217391304347827, "center_y": 7.53623188405797, "value_uncond": 0.00875665015074523}, {"x": 5.362318840579711, "y": 7.391304347826086, "x2": 5.6521739130434785, "y2": 7.681159420289854, "center_x": 5.507246376811595, "center_y": 7.53623188405797, "value_uncond": 0.008419967593680685}, {"x": 5.6521739130434785, "y": 7.391304347826086, "x2": 5.942028985507246, "y2": 7.681159420289854, "center_x": 5.797101449275362, "center_y": 7.53623188405797, "value_uncond": 0.008021002572427181}, {"x": 5.942028985507246, "y": 7.391304347826086, "x2": 6.231884057971014, "y2": 7.681159420289854, "center_x": 6.08695652173913, "center_y": 7.53623188405797, "value_uncond": 0.007569944680339263}, {"x": 6.2318840579710155, "y": 7.391304347826086, "x2": 6.521739130434783, "y2": 7.681159420289854, "center_x": 6.376811594202899, "center_y": 7.53623188405797, "value_uncond": 0.00707786981783574}, {"x": 6.521739130434785, "y": 7.391304347826086, "x2": 6.8115942028985526, "y2": 7.681159420289854, "center_x": 6.666666666666669, "center_y": 7.53623188405797, "value_uncond": 0.0065562914268104434}, {"x": 6.811594202898551, "y": 7.391304347826086, "x2": 7.101449275362318, "y2": 7.681159420289854, "center_x": 6.956521739130435, "center_y": 7.53623188405797, "value_uncond": 0.00601671920005302}, {"x": 7.10144927536232, "y": 7.391304347826086, "x2": 7.391304347826088, "y2": 7.681159420289854, "center_x": 7.246376811594204, "center_y": 7.53623188405797, "value_uncond": 0.005470248450373667}, {"x": 7.391304347826086, "y": 7.391304347826086, "x2": 7.681159420289854, "y2": 7.681159420289854, "center_x": 7.53623188405797, "center_y": 7.53623188405797, "value_uncond": 0.00492719981332962}, {"x": 7.681159420289855, "y": 7.391304347826086, "x2": 7.971014492753623, "y2": 7.681159420289854, "center_x": 7.826086956521739, "center_y": 7.53623188405797, "value_uncond": 0.004396824307575778}, {"x": 7.971014492753625, "y": 7.391304347826086, "x2": 8.260869565217392, "y2": 7.681159420289854, "center_x": 8.115942028985508, "center_y": 7.53623188405797, "value_uncond": 0.003887083446008268}, {"x": 8.26086956521739, "y": 7.391304347826086, "x2": 8.550724637681158, "y2": 7.681159420289854, "center_x": 8.405797101449274, "center_y": 7.53623188405797, "value_uncond": 0.0034045085596694285}, {"x": 8.55072463768116, "y": 7.391304347826086, "x2": 8.840579710144928, "y2": 7.681159420289854, "center_x": 8.695652173913043, "center_y": 7.53623188405797, "value_uncond": 0.002954138219697305}, {"x": 8.84057971014493, "y": 7.391304347826086, "x2": 9.130434782608697, "y2": 7.681159420289854, "center_x": 8.985507246376812, "center_y": 7.53623188405797, "value_uncond": 0.002539528008263621}, {"x": 9.130434782608695, "y": 7.391304347826086, "x2": 9.420289855072463, "y2": 7.681159420289854, "center_x": 9.275362318840578, "center_y": 7.53623188405797, "value_uncond": 0.002162823188057047}, {"x": 9.420289855072465, "y": 7.391304347826086, "x2": 9.710144927536232, "y2": 7.681159420289854, "center_x": 9.565217391304348, "center_y": 7.53623188405797, "value_uncond": 0.0018248822279375043}, {"x": 9.710144927536234, "y": 7.391304347826086, "x2": 10.000000000000002, "y2": 7.681159420289854, "center_x": 9.855072463768117, "center_y": 7.53623188405797, "value_uncond": 0.001525437719179798}, {"x": 10.0, "y": 7.391304347826086, "x2": 10.289855072463768, "y2": 7.681159420289854, "center_x": 10.144927536231883, "center_y": 7.53623188405797, "value_uncond": 0.001263280913597526}, {"x": -10.0, "y": 7.681159420289855, "x2": -9.710144927536232, "y2": 7.971014492753623, "center_x": -9.855072463768117, "center_y": 7.826086956521739, "value_uncond": 1.5546888264731634e-07}, {"x": -9.710144927536232, "y": 7.681159420289855, "x2": -9.420289855072465, "y2": 7.971014492753623, "center_x": -9.565217391304348, "center_y": 7.826086956521739, "value_uncond": 2.4290337117625886e-07}, {"x": -9.420289855072463, "y": 7.681159420289855, "x2": -9.130434782608695, "y2": 7.971014492753623, "center_x": -9.275362318840578, "center_y": 7.826086956521739, "value_uncond": 3.7598405010178783e-07}, {"x": -9.130434782608695, "y": 7.681159420289855, "x2": -8.840579710144928, "y2": 7.971014492753623, "center_x": -8.985507246376812, "center_y": 7.826086956521739, "value_uncond": 5.765687711008647e-07}, {"x": -8.840579710144928, "y": 7.681159420289855, "x2": -8.55072463768116, "y2": 7.971014492753623, "center_x": -8.695652173913043, "center_y": 7.826086956521739, "value_uncond": 8.759486032096825e-07}, {"x": -8.55072463768116, "y": 7.681159420289855, "x2": -8.260869565217392, "y2": 7.971014492753623, "center_x": -8.405797101449277, "center_y": 7.826086956521739, "value_uncond": 1.3184144295520983e-06}, {"x": -8.26086956521739, "y": 7.681159420289855, "x2": -7.971014492753623, "y2": 7.971014492753623, "center_x": -8.115942028985508, "center_y": 7.826086956521739, "value_uncond": 1.965943739567227e-06}, {"x": -7.971014492753623, "y": 7.681159420289855, "x2": -7.681159420289855, "y2": 7.971014492753623, "center_x": -7.826086956521739, "center_y": 7.826086956521739, "value_uncond": 2.9042636382649264e-06}, {"x": -7.681159420289855, "y": 7.681159420289855, "x2": -7.391304347826088, "y2": 7.971014492753623, "center_x": -7.536231884057972, "center_y": 7.826086956521739, "value_uncond": 4.250566393509563e-06}, {"x": -7.391304347826087, "y": 7.681159420289855, "x2": -7.101449275362319, "y2": 7.971014492753623, "center_x": -7.246376811594203, "center_y": 7.826086956521739, "value_uncond": 6.163159191628511e-06}, {"x": -7.101449275362318, "y": 7.681159420289855, "x2": -6.811594202898551, "y2": 7.971014492753623, "center_x": -6.956521739130435, "center_y": 7.826086956521739, "value_uncond": 8.853312241759115e-06}, {"x": -6.811594202898551, "y": 7.681159420289855, "x2": -6.521739130434783, "y2": 7.971014492753623, "center_x": -6.666666666666667, "center_y": 7.826086956521739, "value_uncond": 1.2599519752427816e-05}, {"x": -6.521739130434782, "y": 7.681159420289855, "x2": -6.231884057971015, "y2": 7.971014492753623, "center_x": -6.3768115942028984, "center_y": 7.826086956521739, "value_uncond": 1.7764296637283633e-05}, {"x": -6.231884057971014, "y": 7.681159420289855, "x2": -5.942028985507246, "y2": 7.971014492753623, "center_x": -6.08695652173913, "center_y": 7.826086956521739, "value_uncond": 2.4813490246015368e-05}, {"x": -5.942028985507246, "y": 7.681159420289855, "x2": -5.6521739130434785, "y2": 7.971014492753623, "center_x": -5.797101449275362, "center_y": 7.826086956521739, "value_uncond": 3.43378824915426e-05}, {"x": -5.6521739130434785, "y": 7.681159420289855, "x2": -5.362318840579711, "y2": 7.971014492753623, "center_x": -5.507246376811595, "center_y": 7.826086956521739, "value_uncond": 4.707658799450714e-05}, {"x": -5.36231884057971, "y": 7.681159420289855, "x2": -5.072463768115942, "y2": 7.971014492753623, "center_x": -5.217391304347826, "center_y": 7.826086956521739, "value_uncond": 6.394141777973048e-05}, {"x": -5.0724637681159415, "y": 7.681159420289855, "x2": -4.782608695652174, "y2": 7.971014492753623, "center_x": -4.927536231884058, "center_y": 7.826086956521739, "value_uncond": 8.604098217792227e-05}, {"x": -4.782608695652174, "y": 7.681159420289855, "x2": -4.492753623188406, "y2": 7.971014492753623, "center_x": -4.63768115942029, "center_y": 7.826086956521739, "value_uncond": 0.00011470286653516983}, {"x": -4.492753623188405, "y": 7.681159420289855, "x2": -4.202898550724638, "y2": 7.971014492753623, "center_x": -4.3478260869565215, "center_y": 7.826086956521739, "value_uncond": 0.00015149175546875064}, {"x": -4.202898550724638, "y": 7.681159420289855, "x2": -3.91304347826087, "y2": 7.971014492753623, "center_x": -4.057971014492754, "center_y": 7.826086956521739, "value_uncond": 0.0001982209436974218}, {"x": -3.913043478260869, "y": 7.681159420289855, "x2": -3.6231884057971016, "y2": 7.971014492753623, "center_x": -3.7681159420289854, "center_y": 7.826086956521739, "value_uncond": 0.00025695430320070645}, {"x": -3.6231884057971016, "y": 7.681159420289855, "x2": -3.333333333333334, "y2": 7.971014492753623, "center_x": -3.4782608695652177, "center_y": 7.826086956521739, "value_uncond": 0.00032999553637280677}, {"x": -3.333333333333333, "y": 7.681159420289855, "x2": -3.0434782608695654, "y2": 7.971014492753623, "center_x": -3.1884057971014492, "center_y": 7.826086956521739, "value_uncond": 0.0004198614974519994}, {"x": -3.0434782608695645, "y": 7.681159420289855, "x2": -2.753623188405797, "y2": 7.971014492753623, "center_x": -2.8985507246376807, "center_y": 7.826086956521739, "value_uncond": 0.0005292365744719645}, {"x": -2.753623188405797, "y": 7.681159420289855, "x2": -2.4637681159420293, "y2": 7.971014492753623, "center_x": -2.608695652173913, "center_y": 7.826086956521739, "value_uncond": 0.0006609056486189536}, {"x": -2.4637681159420284, "y": 7.681159420289855, "x2": -2.1739130434782608, "y2": 7.971014492753623, "center_x": -2.3188405797101446, "center_y": 7.826086956521739, "value_uncond": 0.0008176640283809533}, {"x": -2.1739130434782608, "y": 7.681159420289855, "x2": -1.8840579710144931, "y2": 7.971014492753623, "center_x": -2.028985507246377, "center_y": 7.826086956521739, "value_uncond": 0.0010022040079425468}, {"x": -1.8840579710144922, "y": 7.681159420289855, "x2": -1.5942028985507246, "y2": 7.971014492753623, "center_x": -1.7391304347826084, "center_y": 7.826086956521739, "value_uncond": 0.0012169793043008256}, {"x": -1.5942028985507246, "y": 7.681159420289855, "x2": -1.304347826086957, "y2": 7.971014492753623, "center_x": -1.4492753623188408, "center_y": 7.826086956521739, "value_uncond": 0.0014640505256925686}, {"x": -1.304347826086957, "y": 7.681159420289855, "x2": -1.0144927536231894, "y2": 7.971014492753623, "center_x": -1.1594202898550732, "center_y": 7.826086956521739, "value_uncond": 0.0017449169103885887}, {"x": -1.0144927536231876, "y": 7.681159420289855, "x2": -0.72463768115942, "y2": 7.971014492753623, "center_x": -0.8695652173913038, "center_y": 7.826086956521739, "value_uncond": 0.0020603417010928485}, {"x": -0.72463768115942, "y": 7.681159420289855, "x2": -0.43478260869565233, "y2": 7.971014492753623, "center_x": -0.5797101449275361, "center_y": 7.826086956521739, "value_uncond": 0.0024101805001465392}, {"x": -0.43478260869565233, "y": 7.681159420289855, "x2": -0.1449275362318847, "y2": 7.971014492753623, "center_x": -0.2898550724637685, "center_y": 7.826086956521739, "value_uncond": 0.002793223573848532}, {"x": -0.14492753623188293, "y": 7.681159420289855, "x2": 0.1449275362318847, "y2": 7.971014492753623, "center_x": 8.881784197001252e-16, "center_y": 7.826086956521739, "value_uncond": 0.0032070641234048475}, {"x": 0.1449275362318847, "y": 7.681159420289855, "x2": 0.43478260869565233, "y2": 7.971014492753623, "center_x": 0.2898550724637685, "center_y": 7.826086956521739, "value_uncond": 0.0036480048145421467}, {"x": 0.43478260869565233, "y": 7.681159420289855, "x2": 0.72463768115942, "y2": 7.971014492753623, "center_x": 0.5797101449275361, "center_y": 7.826086956521739, "value_uncond": 0.004111014198259955}, {"x": 0.72463768115942, "y": 7.681159420289855, "x2": 1.0144927536231876, "y2": 7.971014492753623, "center_x": 0.8695652173913038, "center_y": 7.826086956521739, "value_uncond": 0.004589742968136519}, {"x": 1.0144927536231894, "y": 7.681159420289855, "x2": 1.304347826086957, "y2": 7.971014492753623, "center_x": 1.1594202898550732, "center_y": 7.826086956521739, "value_uncond": 0.0050766072785315055}, {"x": 1.304347826086957, "y": 7.681159420289855, "x2": 1.5942028985507246, "y2": 7.971014492753623, "center_x": 1.4492753623188408, "center_y": 7.826086956521739, "value_uncond": 0.005562942687262318}, {"x": 1.5942028985507246, "y": 7.681159420289855, "x2": 1.8840579710144922, "y2": 7.971014492753623, "center_x": 1.7391304347826084, "center_y": 7.826086956521739, "value_uncond": 0.006039227885113773}, {"x": 1.884057971014494, "y": 7.681159420289855, "x2": 2.1739130434782616, "y2": 7.971014492753623, "center_x": 2.028985507246378, "center_y": 7.826086956521739, "value_uncond": 0.006495372529400421}, {"x": 2.1739130434782616, "y": 7.681159420289855, "x2": 2.4637681159420293, "y2": 7.971014492753623, "center_x": 2.3188405797101455, "center_y": 7.826086956521739, "value_uncond": 0.006921058583596764}, {"x": 2.4637681159420293, "y": 7.681159420289855, "x2": 2.753623188405797, "y2": 7.971014492753623, "center_x": 2.608695652173913, "center_y": 7.826086956521739, "value_uncond": 0.007306119999745298}, {"x": 2.753623188405797, "y": 7.681159420289855, "x2": 3.0434782608695645, "y2": 7.971014492753623, "center_x": 2.8985507246376807, "center_y": 7.826086956521739, "value_uncond": 0.00764094179117375}, {"x": 3.0434782608695663, "y": 7.681159420289855, "x2": 3.333333333333334, "y2": 7.971014492753623, "center_x": 3.18840579710145, "center_y": 7.826086956521739, "value_uncond": 0.007916856918158218}, {"x": 3.333333333333334, "y": 7.681159420289855, "x2": 3.6231884057971016, "y2": 7.971014492753623, "center_x": 3.4782608695652177, "center_y": 7.826086956521739, "value_uncond": 0.008126518254904964}, {"x": 3.6231884057971016, "y": 7.681159420289855, "x2": 3.913043478260869, "y2": 7.971014492753623, "center_x": 3.7681159420289854, "center_y": 7.826086956521739, "value_uncond": 0.008264223409439334}, {"x": 3.913043478260871, "y": 7.681159420289855, "x2": 4.202898550724639, "y2": 7.971014492753623, "center_x": 4.057971014492755, "center_y": 7.826086956521739, "value_uncond": 0.008326172369451556}, {"x": 4.202898550724639, "y": 7.681159420289855, "x2": 4.492753623188406, "y2": 7.971014492753623, "center_x": 4.347826086956522, "center_y": 7.826086956521739, "value_uncond": 0.00831064172998108}, {"x": 4.492753623188406, "y": 7.681159420289855, "x2": 4.782608695652174, "y2": 7.971014492753623, "center_x": 4.63768115942029, "center_y": 7.826086956521739, "value_uncond": 0.008218064354132682}, {"x": 4.782608695652174, "y": 7.681159420289855, "x2": 5.0724637681159415, "y2": 7.971014492753623, "center_x": 4.927536231884058, "center_y": 7.826086956521739, "value_uncond": 0.008051009327732077}, {"x": 5.072463768115943, "y": 7.681159420289855, "x2": 5.362318840579711, "y2": 7.971014492753623, "center_x": 5.217391304347827, "center_y": 7.826086956521739, "value_uncond": 0.007814063503488377}, {"x": 5.362318840579711, "y": 7.681159420289855, "x2": 5.6521739130434785, "y2": 7.971014492753623, "center_x": 5.507246376811595, "center_y": 7.826086956521739, "value_uncond": 0.007513622257563381}, {"x": 5.6521739130434785, "y": 7.681159420289855, "x2": 5.942028985507246, "y2": 7.971014492753623, "center_x": 5.797101449275362, "center_y": 7.826086956521739, "value_uncond": 0.007157602780014635}, {"x": 5.942028985507246, "y": 7.681159420289855, "x2": 6.231884057971014, "y2": 7.971014492753623, "center_x": 6.08695652173913, "center_y": 7.826086956521739, "value_uncond": 0.00675509783213515}, {"x": 6.2318840579710155, "y": 7.681159420289855, "x2": 6.521739130434783, "y2": 7.971014492753623, "center_x": 6.376811594202899, "center_y": 7.826086956521739, "value_uncond": 0.00631599107808199}, {"x": 6.521739130434785, "y": 7.681159420289855, "x2": 6.8115942028985526, "y2": 7.971014492753623, "center_x": 6.666666666666669, "center_y": 7.826086956521739, "value_uncond": 0.005850556625482317}, {"x": 6.811594202898551, "y": 7.681159420289855, "x2": 7.101449275362318, "y2": 7.971014492753623, "center_x": 6.956521739130435, "center_y": 7.826086956521739, "value_uncond": 0.00536906523642159}, {"x": 7.10144927536232, "y": 7.681159420289855, "x2": 7.391304347826088, "y2": 7.971014492753623, "center_x": 7.246376811594204, "center_y": 7.826086956521739, "value_uncond": 0.0048814178978522915}, {"x": 7.391304347826086, "y": 7.681159420289855, "x2": 7.681159420289854, "y2": 7.971014492753623, "center_x": 7.53623188405797, "center_y": 7.826086956521739, "value_uncond": 0.004396824307575778}, {"x": 7.681159420289855, "y": 7.681159420289855, "x2": 7.971014492753623, "y2": 7.971014492753623, "center_x": 7.826086956521739, "center_y": 7.826086956521739, "value_uncond": 0.003923539682598204}, {"x": 7.971014492753625, "y": 7.681159420289855, "x2": 8.260869565217392, "y2": 7.971014492753623, "center_x": 8.115942028985508, "center_y": 7.826086956521739, "value_uncond": 0.003468668539633514}, {"x": 8.26086956521739, "y": 7.681159420289855, "x2": 8.550724637681158, "y2": 7.971014492753623, "center_x": 8.405797101449274, "center_y": 7.826086956521739, "value_uncond": 0.0030380391617178667}, {"x": 8.55072463768116, "y": 7.681159420289855, "x2": 8.840579710144928, "y2": 7.971014492753623, "center_x": 8.695652173913043, "center_y": 7.826086956521739, "value_uncond": 0.0026361477562092976}, {"x": 8.84057971014493, "y": 7.681159420289855, "x2": 9.130434782608697, "y2": 7.971014492753623, "center_x": 8.985507246376812, "center_y": 7.826086956521739, "value_uncond": 0.0022661671739586946}, {"x": 9.130434782608695, "y": 7.681159420289855, "x2": 9.420289855072463, "y2": 7.971014492753623, "center_x": 9.275362318840578, "center_y": 7.826086956521739, "value_uncond": 0.001930011756477064}, {"x": 9.420289855072465, "y": 7.681159420289855, "x2": 9.710144927536232, "y2": 7.971014492753623, "center_x": 9.565217391304348, "center_y": 7.826086956521739, "value_uncond": 0.0016284475649946393}, {"x": 9.710144927536234, "y": 7.681159420289855, "x2": 10.000000000000002, "y2": 7.971014492753623, "center_x": 9.855072463768117, "center_y": 7.826086956521739, "value_uncond": 0.001361235975297355}, {"x": 10.0, "y": 7.681159420289855, "x2": 10.289855072463768, "y2": 7.971014492753623, "center_x": 10.144927536231883, "center_y": 7.826086956521739, "value_uncond": 0.001127298351728233}, {"x": -10.0, "y": 7.971014492753625, "x2": -9.710144927536232, "y2": 8.260869565217392, "center_x": -9.855072463768117, "center_y": 8.115942028985508, "value_uncond": 1.3744477328023635e-07}, {"x": -9.710144927536232, "y": 7.971014492753625, "x2": -9.420289855072465, "y2": 8.260869565217392, "center_x": -9.565217391304348, "center_y": 8.115942028985508, "value_uncond": 2.1474264310538734e-07}, {"x": -9.420289855072463, "y": 7.971014492753625, "x2": -9.130434782608695, "y2": 8.260869565217392, "center_x": -9.275362318840578, "center_y": 8.115942028985508, "value_uncond": 3.32394763783409e-07}, {"x": -9.130434782608695, "y": 7.971014492753625, "x2": -8.840579710144928, "y2": 8.260869565217392, "center_x": -8.985507246376812, "center_y": 8.115942028985508, "value_uncond": 5.097249216371772e-07}, {"x": -8.840579710144928, "y": 7.971014492753625, "x2": -8.55072463768116, "y2": 8.260869565217392, "center_x": -8.695652173913043, "center_y": 8.115942028985508, "value_uncond": 7.74396490945468e-07}, {"x": -8.55072463768116, "y": 7.971014492753625, "x2": -8.260869565217392, "y2": 8.260869565217392, "center_x": -8.405797101449277, "center_y": 8.115942028985508, "value_uncond": 1.165565541306785e-06}, {"x": -8.26086956521739, "y": 7.971014492753625, "x2": -7.971014492753623, "y2": 8.260869565217392, "center_x": -8.115942028985508, "center_y": 8.115942028985508, "value_uncond": 1.7380242719019876e-06}, {"x": -7.971014492753623, "y": 7.971014492753625, "x2": -7.681159420289855, "y2": 8.260869565217392, "center_x": -7.826086956521739, "center_y": 8.115942028985508, "value_uncond": 2.567561112617595e-06}, {"x": -7.681159420289855, "y": 7.971014492753625, "x2": -7.391304347826088, "y2": 8.260869565217392, "center_x": -7.536231884057972, "center_y": 8.115942028985508, "value_uncond": 3.7577817780669465e-06}, {"x": -7.391304347826087, "y": 7.971014492753625, "x2": -7.101449275362319, "y2": 8.260869565217392, "center_x": -7.246376811594203, "center_y": 8.115942028985508, "value_uncond": 5.448640289677979e-06}, {"x": -7.101449275362318, "y": 7.971014492753625, "x2": -6.811594202898551, "y2": 8.260869565217392, "center_x": -6.956521739130435, "center_y": 8.115942028985508, "value_uncond": 7.826913483440587e-06}, {"x": -6.811594202898551, "y": 7.971014492753625, "x2": -6.521739130434783, "y2": 8.260869565217392, "center_x": -6.666666666666667, "center_y": 8.115942028985508, "value_uncond": 1.1138808656268394e-05}, {"x": -6.521739130434782, "y": 7.971014492753625, "x2": -6.231884057971015, "y2": 8.260869565217392, "center_x": -6.3768115942028984, "center_y": 8.115942028985508, "value_uncond": 1.5704812964618436e-05}, {"x": -6.231884057971014, "y": 7.971014492753625, "x2": -5.942028985507246, "y2": 8.260869565217392, "center_x": -6.08695652173913, "center_y": 8.115942028985508, "value_uncond": 2.1936766271689755e-05}, {"x": -5.942028985507246, "y": 7.971014492753625, "x2": -5.6521739130434785, "y2": 8.260869565217392, "center_x": -5.797101449275362, "center_y": 8.115942028985508, "value_uncond": 3.035695885638976e-05}, {"x": -5.6521739130434785, "y": 7.971014492753625, "x2": -5.362318840579711, "y2": 8.260869565217392, "center_x": -5.507246376811595, "center_y": 8.115942028985508, "value_uncond": 4.161881692036346e-05}, {"x": -5.36231884057971, "y": 7.971014492753625, "x2": -5.072463768115942, "y2": 8.260869565217392, "center_x": -5.217391304347826, "center_y": 8.115942028985508, "value_uncond": 5.652844170681143e-05}, {"x": -5.0724637681159415, "y": 7.971014492753625, "x2": -4.782608695652174, "y2": 8.260869565217392, "center_x": -4.927536231884058, "center_y": 8.115942028985508, "value_uncond": 7.606591805950384e-05}, {"x": -4.782608695652174, "y": 7.971014492753625, "x2": -4.492753623188406, "y2": 8.260869565217392, "center_x": -4.63768115942029, "center_y": 8.115942028985508, "value_uncond": 0.00010140491921642922}, {"x": -4.492753623188405, "y": 7.971014492753625, "x2": -4.202898550724638, "y2": 8.260869565217392, "center_x": -4.3478260869565215, "center_y": 8.115942028985508, "value_uncond": 0.00013392872985047388}, {"x": -4.202898550724638, "y": 7.971014492753625, "x2": -3.91304347826087, "y2": 8.260869565217392, "center_x": -4.057971014492754, "center_y": 8.115942028985508, "value_uncond": 0.00017524042240459845}, {"x": -3.913043478260869, "y": 7.971014492753625, "x2": -3.6231884057971016, "y2": 8.260869565217392, "center_x": -3.7681159420289854, "center_y": 8.115942028985508, "value_uncond": 0.00022716459619073407}, {"x": -3.6231884057971016, "y": 7.971014492753625, "x2": -3.333333333333334, "y2": 8.260869565217392, "center_x": -3.4782608695652177, "center_y": 8.115942028985508, "value_uncond": 0.00029173787646716157}, {"x": -3.333333333333333, "y": 7.971014492753625, "x2": -3.0434782608695654, "y2": 8.260869565217392, "center_x": -3.1884057971014492, "center_y": 8.115942028985508, "value_uncond": 0.00037118532881786785}, {"x": -3.0434782608695645, "y": 7.971014492753625, "x2": -2.753623188405797, "y2": 8.260869565217392, "center_x": -2.8985507246376807, "center_y": 8.115942028985508, "value_uncond": 0.0004678801297808371}, {"x": -2.753623188405797, "y": 7.971014492753625, "x2": -2.4637681159420293, "y2": 8.260869565217392, "center_x": -2.608695652173913, "center_y": 8.115942028985508, "value_uncond": 0.0005842842984864515}, {"x": -2.4637681159420284, "y": 7.971014492753625, "x2": -2.1739130434782608, "y2": 8.260869565217392, "center_x": -2.3188405797101446, "center_y": 8.115942028985508, "value_uncond": 0.0007228690724893741}, {"x": -2.1739130434782608, "y": 7.971014492753625, "x2": -1.8840579710144931, "y2": 8.260869565217392, "center_x": -2.028985507246377, "center_y": 8.115942028985508, "value_uncond": 0.0008860146178878153}, {"x": -1.8840579710144922, "y": 7.971014492753625, "x2": -1.5942028985507246, "y2": 8.260869565217392, "center_x": -1.7391304347826084, "center_y": 8.115942028985508, "value_uncond": 0.0010758901827693436}, {"x": -1.5942028985507246, "y": 7.971014492753625, "x2": -1.304347826086957, "y2": 8.260869565217392, "center_x": -1.4492753623188408, "center_y": 8.115942028985508, "value_uncond": 0.0012943174810814762}, {"x": -1.304347826086957, "y": 7.971014492753625, "x2": -1.0144927536231894, "y2": 8.260869565217392, "center_x": -1.1594202898550732, "center_y": 8.115942028985508, "value_uncond": 0.001542621938598914}, {"x": -1.0144927536231876, "y": 7.971014492753625, "x2": -0.72463768115942, "y2": 8.260869565217392, "center_x": -0.8695652173913038, "center_y": 8.115942028985508, "value_uncond": 0.001821478312344528}, {"x": -0.72463768115942, "y": 7.971014492753625, "x2": -0.43478260869565233, "y2": 8.260869565217392, "center_x": -0.5797101449275361, "center_y": 8.115942028985508, "value_uncond": 0.00213075894523904}, {"x": -0.43478260869565233, "y": 7.971014492753625, "x2": -0.1449275362318847, "y2": 8.260869565217392, "center_x": -0.2898550724637685, "center_y": 8.115942028985508, "value_uncond": 0.002469394352692033}, {"x": -0.14492753623188293, "y": 7.971014492753625, "x2": 0.1449275362318847, "y2": 8.260869565217392, "center_x": 8.881784197001252e-16, "center_y": 8.115942028985508, "value_uncond": 0.002835256765410144}, {"x": 0.1449275362318847, "y": 7.971014492753625, "x2": 0.43478260869565233, "y2": 8.260869565217392, "center_x": 0.2898550724637685, "center_y": 8.115942028985508, "value_uncond": 0.0032250774953942927}, {"x": 0.43478260869565233, "y": 7.971014492753625, "x2": 0.72463768115942, "y2": 8.260869565217392, "center_x": 0.5797101449275361, "center_y": 8.115942028985508, "value_uncond": 0.0036344084090027774}, {"x": 0.72463768115942, "y": 7.971014492753625, "x2": 1.0144927536231876, "y2": 8.260869565217392, "center_x": 0.8695652173913038, "center_y": 8.115942028985508, "value_uncond": 0.004057636299484735}, {"x": 1.0144927536231894, "y": 7.971014492753625, "x2": 1.304347826086957, "y2": 8.260869565217392, "center_x": 1.1594202898550732, "center_y": 8.115942028985508, "value_uncond": 0.004488056545781094}, {"x": 1.304347826086957, "y": 7.971014492753625, "x2": 1.5942028985507246, "y2": 8.260869565217392, "center_x": 1.4492753623188408, "center_y": 8.115942028985508, "value_uncond": 0.0049180092080305235}, {"x": 1.5942028985507246, "y": 7.971014492753625, "x2": 1.8840579710144922, "y2": 8.260869565217392, "center_x": 1.7391304347826084, "center_y": 8.115942028985508, "value_uncond": 0.005339076819251023}, {"x": 1.884057971014494, "y": 7.971014492753625, "x2": 2.1739130434782616, "y2": 8.260869565217392, "center_x": 2.028985507246378, "center_y": 8.115942028985508, "value_uncond": 0.0057423388492432005}, {"x": 2.1739130434782616, "y": 7.971014492753625, "x2": 2.4637681159420293, "y2": 8.260869565217392, "center_x": 2.3188405797101455, "center_y": 8.115942028985508, "value_uncond": 0.006118673471395866}, {"x": 2.4637681159420293, "y": 7.971014492753625, "x2": 2.753623188405797, "y2": 8.260869565217392, "center_x": 2.608695652173913, "center_y": 8.115942028985508, "value_uncond": 0.006459093227042803}, {"x": 2.753623188405797, "y": 7.971014492753625, "x2": 3.0434782608695645, "y2": 8.260869565217392, "center_x": 2.8985507246376807, "center_y": 8.115942028985508, "value_uncond": 0.0067550978321351445}, {"x": 3.0434782608695663, "y": 7.971014492753625, "x2": 3.333333333333334, "y2": 8.260869565217392, "center_x": 3.18840579710145, "center_y": 8.115942028985508, "value_uncond": 0.006999025050413267}, {"x": 3.333333333333334, "y": 7.971014492753625, "x2": 3.6231884057971016, "y2": 8.260869565217392, "center_x": 3.4782608695652177, "center_y": 8.115942028985508, "value_uncond": 0.007184379536816565}, {"x": 3.6231884057971016, "y": 7.971014492753625, "x2": 3.913043478260869, "y2": 8.260869565217392, "center_x": 3.7681159420289854, "center_y": 8.115942028985508, "value_uncond": 0.0073061199997452924}, {"x": 3.913043478260871, "y": 7.971014492753625, "x2": 4.202898550724639, "y2": 8.260869565217392, "center_x": 4.057971014492755, "center_y": 8.115942028985508, "value_uncond": 0.007360886977026152}, {"x": 4.202898550724639, "y": 7.971014492753625, "x2": 4.492753623188406, "y2": 8.260869565217392, "center_x": 4.347826086956522, "center_y": 8.115942028985508, "value_uncond": 0.007347156864706769}, {"x": 4.492753623188406, "y": 7.971014492753625, "x2": 4.782608695652174, "y2": 8.260869565217392, "center_x": 4.63768115942029, "center_y": 8.115942028985508, "value_uncond": 0.00726531234239662}, {"x": 4.782608695652174, "y": 7.971014492753625, "x2": 5.0724637681159415, "y2": 8.260869565217392, "center_x": 4.927536231884058, "center_y": 8.115942028985508, "value_uncond": 0.007117624651857015}, {"x": 5.072463768115943, "y": 7.971014492753625, "x2": 5.362318840579711, "y2": 8.260869565217392, "center_x": 5.217391304347827, "center_y": 8.115942028985508, "value_uncond": 0.006908148874207331}, {"x": 5.362318840579711, "y": 7.971014492753625, "x2": 5.6521739130434785, "y2": 8.260869565217392, "center_x": 5.507246376811595, "center_y": 8.115942028985508, "value_uncond": 0.00664253894489518}, {"x": 5.6521739130434785, "y": 7.971014492753625, "x2": 5.942028985507246, "y2": 8.260869565217392, "center_x": 5.797101449275362, "center_y": 8.115942028985508, "value_uncond": 0.006327794183488224}, {"x": 5.942028985507246, "y": 7.971014492753625, "x2": 6.231884057971014, "y2": 8.260869565217392, "center_x": 6.08695652173913, "center_y": 8.115942028985508, "value_uncond": 0.005971953192265764}, {"x": 6.2318840579710155, "y": 7.971014492753625, "x2": 6.521739130434783, "y2": 8.260869565217392, "center_x": 6.376811594202899, "center_y": 8.115942028985508, "value_uncond": 0.005583753783940637}, {"x": 6.521739130434785, "y": 7.971014492753625, "x2": 6.8115942028985526, "y2": 8.260869565217392, "center_x": 6.666666666666669, "center_y": 8.115942028985508, "value_uncond": 0.005172278949072917}, {"x": 6.811594202898551, "y": 7.971014492753625, "x2": 7.101449275362318, "y2": 8.260869565217392, "center_x": 6.956521739130435, "center_y": 8.115942028985508, "value_uncond": 0.004746608720542592}, {"x": 7.10144927536232, "y": 7.971014492753625, "x2": 7.391304347826088, "y2": 8.260869565217392, "center_x": 7.246376811594204, "center_y": 8.115942028985508, "value_uncond": 0.004315496225559179}, {"x": 7.391304347826086, "y": 7.971014492753625, "x2": 7.681159420289854, "y2": 8.260869565217392, "center_x": 7.53623188405797, "center_y": 8.115942028985508, "value_uncond": 0.003887083446008268}, {"x": 7.681159420289855, "y": 7.971014492753625, "x2": 7.971014492753623, "y2": 8.260869565217392, "center_x": 7.826086956521739, "center_y": 8.115942028985508, "value_uncond": 0.003468668539633514}, {"x": 7.971014492753625, "y": 7.971014492753625, "x2": 8.260869565217392, "y2": 8.260869565217392, "center_x": 8.115942028985508, "center_y": 8.115942028985508, "value_uncond": 0.003066532369025466}, {"x": 8.26086956521739, "y": 7.971014492753625, "x2": 8.550724637681158, "y2": 8.260869565217392, "center_x": 8.405797101449274, "center_y": 8.115942028985508, "value_uncond": 0.0026858275218073005}, {"x": 8.55072463768116, "y": 7.971014492753625, "x2": 8.840579710144928, "y2": 8.260869565217392, "center_x": 8.695652173913043, "center_y": 8.115942028985508, "value_uncond": 0.0023305289426137467}, {"x": 8.84057971014493, "y": 7.971014492753625, "x2": 9.130434782608697, "y2": 8.260869565217392, "center_x": 8.985507246376812, "center_y": 8.115942028985508, "value_uncond": 0.002003441641414816}, {"x": 9.130434782608695, "y": 7.971014492753625, "x2": 9.420289855072463, "y2": 8.260869565217392, "center_x": 9.275362318840578, "center_y": 8.115942028985508, "value_uncond": 0.0017062580226999524}, {"x": 9.420289855072465, "y": 7.971014492753625, "x2": 9.710144927536232, "y2": 8.260869565217392, "center_x": 9.565217391304348, "center_y": 8.115942028985508, "value_uncond": 0.0014396553352556355}, {"x": 9.710144927536234, "y": 7.971014492753625, "x2": 10.000000000000002, "y2": 8.260869565217392, "center_x": 9.855072463768117, "center_y": 8.115942028985508, "value_uncond": 0.0012034226194966226}, {"x": 10.0, "y": 7.971014492753625, "x2": 10.289855072463768, "y2": 8.260869565217392, "center_x": 10.144927536231883, "center_y": 8.115942028985508, "value_uncond": 0.0009966062901729214}, {"x": -10.0, "y": 8.26086956521739, "x2": -9.710144927536232, "y2": 8.550724637681158, "center_x": -9.855072463768117, "center_y": 8.405797101449274, "value_uncond": 1.203812353436658e-07}, {"x": -9.710144927536232, "y": 8.26086956521739, "x2": -9.420289855072465, "y2": 8.550724637681158, "center_x": -9.565217391304348, "center_y": 8.405797101449274, "value_uncond": 1.880827043548819e-07}, {"x": -9.420289855072463, "y": 8.26086956521739, "x2": -9.130434782608695, "y2": 8.550724637681158, "center_x": -9.275362318840578, "center_y": 8.405797101449274, "value_uncond": 2.911285116999536e-07}, {"x": -9.130434782608695, "y": 8.26086956521739, "x2": -8.840579710144928, "y2": 8.550724637681158, "center_x": -8.985507246376812, "center_y": 8.405797101449274, "value_uncond": 4.4644342805984316e-07}, {"x": -8.840579710144928, "y": 8.26086956521739, "x2": -8.55072463768116, "y2": 8.550724637681158, "center_x": -8.695652173913043, "center_y": 8.405797101449274, "value_uncond": 6.782564662225695e-07}, {"x": -8.55072463768116, "y": 8.26086956521739, "x2": -8.260869565217392, "y2": 8.550724637681158, "center_x": -8.405797101449277, "center_y": 8.405797101449274, "value_uncond": 1.020862535459508e-06}, {"x": -8.26086956521739, "y": 8.26086956521739, "x2": -7.971014492753623, "y2": 8.550724637681158, "center_x": -8.115942028985508, "center_y": 8.405797101449274, "value_uncond": 1.5222514753780152e-06}, {"x": -7.971014492753623, "y": 8.26086956521739, "x2": -7.681159420289855, "y2": 8.550724637681158, "center_x": -7.826086956521739, "center_y": 8.405797101449274, "value_uncond": 2.248802709485845e-06}, {"x": -7.681159420289855, "y": 8.26086956521739, "x2": -7.391304347826088, "y2": 8.550724637681158, "center_x": -7.536231884057972, "center_y": 8.405797101449274, "value_uncond": 3.291259476802988e-06}, {"x": -7.391304347826087, "y": 8.26086956521739, "x2": -7.101449275362319, "y2": 8.550724637681158, "center_x": -7.246376811594203, "center_y": 8.405797101449274, "value_uncond": 4.772200741874412e-06}, {"x": -7.101449275362318, "y": 8.26086956521739, "x2": -6.811594202898551, "y2": 8.550724637681158, "center_x": -6.956521739130435, "center_y": 8.405797101449274, "value_uncond": 6.855215309959383e-06}, {"x": -6.811594202898551, "y": 8.26086956521739, "x2": -6.521739130434783, "y2": 8.550724637681158, "center_x": -6.666666666666667, "center_y": 8.405797101449274, "value_uncond": 9.755944255256153e-06}, {"x": -6.521739130434782, "y": 8.26086956521739, "x2": -6.231884057971015, "y2": 8.550724637681158, "center_x": -6.3768115942028984, "center_y": 8.405797101449274, "value_uncond": 1.375508679160399e-05}, {"x": -6.231884057971014, "y": 8.26086956521739, "x2": -5.942028985507246, "y2": 8.550724637681158, "center_x": -6.08695652173913, "center_y": 8.405797101449274, "value_uncond": 1.921335355435446e-05}, {"x": -5.942028985507246, "y": 8.26086956521739, "x2": -5.6521739130434785, "y2": 8.550724637681158, "center_x": -5.797101449275362, "center_y": 8.405797101449274, "value_uncond": 2.658819336082033e-05}, {"x": -5.6521739130434785, "y": 8.26086956521739, "x2": -5.362318840579711, "y2": 8.550724637681158, "center_x": -5.507246376811595, "center_y": 8.405797101449274, "value_uncond": 3.645191064632239e-05}, {"x": -5.36231884057971, "y": 8.26086956521739, "x2": -5.072463768115942, "y2": 8.550724637681158, "center_x": -5.217391304347826, "center_y": 8.405797101449274, "value_uncond": 4.9510530537554236e-05}, {"x": -5.0724637681159415, "y": 8.26086956521739, "x2": -4.782608695652174, "y2": 8.550724637681158, "center_x": -4.927536231884058, "center_y": 8.405797101449274, "value_uncond": 6.662246198975567e-05}, {"x": -4.782608695652174, "y": 8.26086956521739, "x2": -4.492753623188406, "y2": 8.550724637681158, "center_x": -4.63768115942029, "center_y": 8.405797101449274, "value_uncond": 8.881566867813159e-05}, {"x": -4.492753623188405, "y": 8.26086956521739, "x2": -4.202898550724638, "y2": 8.550724637681158, "center_x": -4.3478260869565215, "center_y": 8.405797101449274, "value_uncond": 0.00011730170280492166}, {"x": -4.202898550724638, "y": 8.26086956521739, "x2": -3.91304347826087, "y2": 8.550724637681158, "center_x": -4.057971014492754, "center_y": 8.405797101449274, "value_uncond": 0.00015348461805964338}, {"x": -3.913043478260869, "y": 8.26086956521739, "x2": -3.6231884057971016, "y2": 8.550724637681158, "center_x": -3.7681159420289854, "center_y": 8.405797101449274, "value_uncond": 0.00019896249281177862}, {"x": -3.6231884057971016, "y": 8.26086956521739, "x2": -3.333333333333334, "y2": 8.550724637681158, "center_x": -3.4782608695652177, "center_y": 8.405797101449274, "value_uncond": 0.000255519108711751}, {"x": -3.333333333333333, "y": 8.26086956521739, "x2": -3.0434782608695654, "y2": 8.550724637681158, "center_x": -3.1884057971014492, "center_y": 8.405797101449274, "value_uncond": 0.0003251032931855033}, {"x": -3.0434782608695645, "y": 8.26086956521739, "x2": -2.753623188405797, "y2": 8.550724637681158, "center_x": -2.8985507246376807, "center_y": 8.405797101449274, "value_uncond": 0.0004097935968866038}, {"x": -2.753623188405797, "y": 8.26086956521739, "x2": -2.4637681159420293, "y2": 8.550724637681158, "center_x": -2.608695652173913, "center_y": 8.405797101449274, "value_uncond": 0.0005117463834022718}, {"x": -2.4637681159420284, "y": 8.26086956521739, "x2": -2.1739130434782608, "y2": 8.550724637681158, "center_x": -2.3188405797101446, "center_y": 8.405797101449274, "value_uncond": 0.0006331260902921042}, {"x": -2.1739130434782608, "y": 8.26086956521739, "x2": -1.8840579710144931, "y2": 8.550724637681158, "center_x": -2.028985507246377, "center_y": 8.405797101449274, "value_uncond": 0.0007760173900277234}, {"x": -1.8840579710144922, "y": 8.26086956521739, "x2": -1.5942028985507246, "y2": 8.550724637681158, "center_x": -1.7391304347826084, "center_y": 8.405797101449274, "value_uncond": 0.0009423202221871583}, {"x": -1.5942028985507246, "y": 8.26086956521739, "x2": -1.304347826086957, "y2": 8.550724637681158, "center_x": -1.4492753623188408, "center_y": 8.405797101449274, "value_uncond": 0.001133630137988626}, {"x": -1.304347826086957, "y": 8.26086956521739, "x2": -1.0144927536231894, "y2": 8.550724637681158, "center_x": -1.1594202898550732, "center_y": 8.405797101449274, "value_uncond": 0.0013511080138212909}, {"x": -1.0144927536231876, "y": 8.26086956521739, "x2": -0.72463768115942, "y2": 8.550724637681158, "center_x": -0.8695652173913038, "center_y": 8.405797101449274, "value_uncond": 0.0015953448367560417}, {"x": -0.72463768115942, "y": 8.26086956521739, "x2": -0.43478260869565233, "y2": 8.550724637681158, "center_x": -0.5797101449275361, "center_y": 8.405797101449274, "value_uncond": 0.0018662287981257527}, {"x": -0.43478260869565233, "y": 8.26086956521739, "x2": -0.1449275362318847, "y2": 8.550724637681158, "center_x": -0.2898550724637685, "center_y": 8.405797101449274, "value_uncond": 0.002162823188057046}, {"x": -0.14492753623188293, "y": 8.26086956521739, "x2": 0.1449275362318847, "y2": 8.550724637681158, "center_x": 8.881784197001252e-16, "center_y": 8.405797101449274, "value_uncond": 0.002483264396243414}, {"x": 0.1449275362318847, "y": 8.26086956521739, "x2": 0.43478260869565233, "y2": 8.550724637681158, "center_x": 0.2898550724637685, "center_y": 8.405797101449274, "value_uncond": 0.0028246895368151965}, {"x": 0.43478260869565233, "y": 8.26086956521739, "x2": 0.72463768115942, "y2": 8.550724637681158, "center_x": 0.5797101449275361, "center_y": 8.405797101449274, "value_uncond": 0.0031832027044572447}, {"x": 0.72463768115942, "y": 8.26086956521739, "x2": 1.0144927536231876, "y2": 8.550724637681158, "center_x": 0.8695652173913038, "center_y": 8.405797101449274, "value_uncond": 0.0035538875626164724}, {"x": 1.0144927536231894, "y": 8.26086956521739, "x2": 1.304347826086957, "y2": 8.550724637681158, "center_x": 1.1594202898550732, "center_y": 8.405797101449274, "value_uncond": 0.003930871857686288}, {"x": 1.304347826086957, "y": 8.26086956521739, "x2": 1.5942028985507246, "y2": 8.550724637681158, "center_x": 1.4492753623188408, "center_y": 8.405797101449274, "value_uncond": 0.004307446618483881}, {"x": 1.5942028985507246, "y": 8.26086956521739, "x2": 1.8840579710144922, "y2": 8.550724637681158, "center_x": 1.7391304347826084, "center_y": 8.405797101449274, "value_uncond": 0.004676239392426481}, {"x": 1.884057971014494, "y": 8.26086956521739, "x2": 2.1739130434782616, "y2": 8.550724637681158, "center_x": 2.028985507246378, "center_y": 8.405797101449274, "value_uncond": 0.005029437118168106}, {"x": 2.1739130434782616, "y": 8.26086956521739, "x2": 2.4637681159420293, "y2": 8.550724637681158, "center_x": 2.3188405797101455, "center_y": 8.405797101449274, "value_uncond": 0.005359050428562672}, {"x": 2.4637681159420293, "y": 8.26086956521739, "x2": 2.753623188405797, "y2": 8.550724637681158, "center_x": 2.608695652173913, "center_y": 8.405797101449274, "value_uncond": 0.005657207642854211}, {"x": 2.753623188405797, "y": 8.26086956521739, "x2": 3.0434782608695645, "y2": 8.550724637681158, "center_x": 2.8985507246376807, "center_y": 8.405797101449274, "value_uncond": 0.005916463772992945}, {"x": 3.0434782608695663, "y": 8.26086956521739, "x2": 3.333333333333334, "y2": 8.550724637681158, "center_x": 3.18840579710145, "center_y": 8.405797101449274, "value_uncond": 0.00613010783649177}, {"x": 3.333333333333334, "y": 8.26086956521739, "x2": 3.6231884057971016, "y2": 8.550724637681158, "center_x": 3.4782608695652177, "center_y": 8.405797101449274, "value_uncond": 0.006292450874478565}, {"x": 3.6231884057971016, "y": 8.26086956521739, "x2": 3.913043478260869, "y2": 8.550724637681158, "center_x": 3.7681159420289854, "center_y": 8.405797101449274, "value_uncond": 0.006399077463245162}, {"x": 3.913043478260871, "y": 8.26086956521739, "x2": 4.202898550724639, "y2": 8.550724637681158, "center_x": 4.057971014492755, "center_y": 8.405797101449274, "value_uncond": 0.006447045212209076}, {"x": 4.202898550724639, "y": 8.26086956521739, "x2": 4.492753623188406, "y2": 8.550724637681158, "center_x": 4.347826086956522, "center_y": 8.405797101449274, "value_uncond": 0.006435019670291634}, {"x": 4.492753623188406, "y": 8.26086956521739, "x2": 4.782608695652174, "y2": 8.550724637681158, "center_x": 4.63768115942029, "center_y": 8.405797101449274, "value_uncond": 0.00636333600807103}, {"x": 4.782608695652174, "y": 8.26086956521739, "x2": 5.0724637681159415, "y2": 8.550724637681158, "center_x": 4.927536231884058, "center_y": 8.405797101449274, "value_uncond": 0.00623398349645561}, {"x": 5.072463768115943, "y": 8.26086956521739, "x2": 5.362318840579711, "y2": 8.550724637681158, "center_x": 5.217391304347827, "center_y": 8.405797101449274, "value_uncond": 0.006050513785049202}, {"x": 5.362318840579711, "y": 8.26086956521739, "x2": 5.6521739130434785, "y2": 8.550724637681158, "center_x": 5.507246376811595, "center_y": 8.405797101449274, "value_uncond": 0.005817878882702297}, {"x": 5.6521739130434785, "y": 8.26086956521739, "x2": 5.942028985507246, "y2": 8.550724637681158, "center_x": 5.797101449275362, "center_y": 8.405797101449274, "value_uncond": 0.005542209155204808}, {"x": 5.942028985507246, "y": 8.26086956521739, "x2": 6.231884057971014, "y2": 8.550724637681158, "center_x": 6.08695652173913, "center_y": 8.405797101449274, "value_uncond": 0.00523054522585382}, {"x": 6.2318840579710155, "y": 8.26086956521739, "x2": 6.521739130434783, "y2": 8.550724637681158, "center_x": 6.376811594202899, "center_y": 8.405797101449274, "value_uncond": 0.004890540122578068}, {"x": 6.521739130434785, "y": 8.26086956521739, "x2": 6.8115942028985526, "y2": 8.550724637681158, "center_x": 6.666666666666669, "center_y": 8.405797101449274, "value_uncond": 0.004530149197903092}, {"x": 6.811594202898551, "y": 8.26086956521739, "x2": 7.101449275362318, "y2": 8.550724637681158, "center_x": 6.956521739130435, "center_y": 8.405797101449274, "value_uncond": 0.004157325213865356}, {"x": 7.10144927536232, "y": 8.26086956521739, "x2": 7.391304347826088, "y2": 8.550724637681158, "center_x": 7.246376811594204, "center_y": 8.405797101449274, "value_uncond": 0.0037797346116212206}, {"x": 7.391304347826086, "y": 8.26086956521739, "x2": 7.681159420289854, "y2": 8.550724637681158, "center_x": 7.53623188405797, "center_y": 8.405797101449274, "value_uncond": 0.0034045085596694285}, {"x": 7.681159420289855, "y": 8.26086956521739, "x2": 7.971014492753623, "y2": 8.550724637681158, "center_x": 7.826086956521739, "center_y": 8.405797101449274, "value_uncond": 0.0030380391617178667}, {"x": 7.971014492753625, "y": 8.26086956521739, "x2": 8.260869565217392, "y2": 8.550724637681158, "center_x": 8.115942028985508, "center_y": 8.405797101449274, "value_uncond": 0.0026858275218073005}, {"x": 8.26086956521739, "y": 8.26086956521739, "x2": 8.550724637681158, "y2": 8.550724637681158, "center_x": 8.405797101449274, "center_y": 8.405797101449274, "value_uncond": 0.0023523865424548013}, {"x": 8.55072463768116, "y": 8.26086956521739, "x2": 8.840579710144928, "y2": 8.550724637681158, "center_x": 8.695652173913043, "center_y": 8.405797101449274, "value_uncond": 0.0020411976855896304}, {"x": 8.84057971014493, "y": 8.26086956521739, "x2": 9.130434782608697, "y2": 8.550724637681158, "center_x": 8.985507246376812, "center_y": 8.405797101449274, "value_uncond": 0.0017547177239015214}, {"x": 9.130434782608695, "y": 8.26086956521739, "x2": 9.420289855072463, "y2": 8.550724637681158, "center_x": 9.275362318840578, "center_y": 8.405797101449274, "value_uncond": 0.0014944289527028252}, {"x": 9.420289855072465, "y": 8.26086956521739, "x2": 9.710144927536232, "y2": 8.550724637681158, "center_x": 9.565217391304348, "center_y": 8.405797101449274, "value_uncond": 0.0012609245414797678}, {"x": 9.710144927536234, "y": 8.26086956521739, "x2": 10.000000000000002, "y2": 8.550724637681158, "center_x": 9.855072463768117, "center_y": 8.405797101449274, "value_uncond": 0.0010540197209255755}, {"x": 10.0, "y": 8.26086956521739, "x2": 10.289855072463768, "y2": 8.550724637681158, "center_x": 10.144927536231883, "center_y": 8.405797101449274, "value_uncond": 0.0008728792917986891}, {"x": -10.0, "y": 8.55072463768116, "x2": -9.710144927536232, "y2": 8.840579710144928, "center_x": -9.855072463768117, "center_y": 8.695652173913043, "value_uncond": 1.0445642947586815e-07}, {"x": -9.710144927536232, "y": 8.55072463768116, "x2": -9.420289855072465, "y2": 8.840579710144928, "center_x": -9.565217391304348, "center_y": 8.695652173913043, "value_uncond": 1.6320191171812923e-07}, {"x": -9.420289855072463, "y": 8.55072463768116, "x2": -9.130434782608695, "y2": 8.840579710144928, "center_x": -9.275362318840578, "center_y": 8.695652173913043, "value_uncond": 2.5261615536661616e-07}, {"x": -9.130434782608695, "y": 8.55072463768116, "x2": -8.840579710144928, "y2": 8.840579710144928, "center_x": -8.985507246376812, "center_y": 8.695652173913043, "value_uncond": 3.873850133284215e-07}, {"x": -8.840579710144928, "y": 8.55072463768116, "x2": -8.55072463768116, "y2": 8.840579710144928, "center_x": -8.695652173913043, "center_y": 8.695652173913043, "value_uncond": 5.885323283838296e-07}, {"x": -8.55072463768116, "y": 8.55072463768116, "x2": -8.260869565217392, "y2": 8.840579710144928, "center_x": -8.405797101449277, "center_y": 8.695652173913043, "value_uncond": 8.858162581182798e-07}, {"x": -8.26086956521739, "y": 8.55072463768116, "x2": -7.971014492753623, "y2": 8.840579710144928, "center_x": -8.115942028985508, "center_y": 8.695652173913043, "value_uncond": 1.3208782367818309e-06}, {"x": -7.971014492753623, "y": 8.55072463768116, "x2": -7.681159420289855, "y2": 8.840579710144928, "center_x": -7.826086956521739, "center_y": 8.695652173913043, "value_uncond": 1.9513165898152533e-06}, {"x": -7.681159420289855, "y": 8.55072463768116, "x2": -7.391304347826088, "y2": 8.840579710144928, "center_x": -7.536231884057972, "center_y": 8.695652173913043, "value_uncond": 2.8558704555904338e-06}, {"x": -7.391304347826087, "y": 8.55072463768116, "x2": -7.101449275362319, "y2": 8.840579710144928, "center_x": -7.246376811594203, "center_y": 8.695652173913043, "value_uncond": 4.140903262997788e-06}, {"x": -7.101449275362318, "y": 8.55072463768116, "x2": -6.811594202898551, "y2": 8.840579710144928, "center_x": -6.956521739130435, "center_y": 8.695652173913043, "value_uncond": 5.948363235535961e-06}, {"x": -6.811594202898551, "y": 8.55072463768116, "x2": -6.521739130434783, "y2": 8.840579710144928, "center_x": -6.666666666666667, "center_y": 8.695652173913043, "value_uncond": 8.465365055944217e-06}, {"x": -6.521739130434782, "y": 8.55072463768116, "x2": -6.231884057971015, "y2": 8.840579710144928, "center_x": -6.3768115942028984, "center_y": 8.695652173913043, "value_uncond": 1.1935475236483604e-05}, {"x": -6.231884057971014, "y": 8.55072463768116, "x2": -5.942028985507246, "y2": 8.840579710144928, "center_x": -6.08695652173913, "center_y": 8.695652173913043, "value_uncond": 1.6671687284283626e-05}, {"x": -5.942028985507246, "y": 8.55072463768116, "x2": -5.6521739130434785, "y2": 8.840579710144928, "center_x": -5.797101449275362, "center_y": 8.695652173913043, "value_uncond": 2.3070935738087277e-05}, {"x": -5.6521739130434785, "y": 8.55072463768116, "x2": -5.362318840579711, "y2": 8.840579710144928, "center_x": -5.507246376811595, "center_y": 8.695652173913043, "value_uncond": 3.1629816913060714e-05}, {"x": -5.36231884057971, "y": 8.55072463768116, "x2": -5.072463768115942, "y2": 8.840579710144928, "center_x": -5.217391304347826, "center_y": 8.695652173913043, "value_uncond": 4.296095838063664e-05}, {"x": -5.0724637681159415, "y": 8.55072463768116, "x2": -4.782608695652174, "y2": 8.840579710144928, "center_x": -4.927536231884058, "center_y": 8.695652173913043, "value_uncond": 5.780921322558761e-05}, {"x": -4.782608695652174, "y": 8.55072463768116, "x2": -4.492753623188406, "y2": 8.840579710144928, "center_x": -4.63768115942029, "center_y": 8.695652173913043, "value_uncond": 7.706655946123317e-05}, {"x": -4.492753623188405, "y": 8.55072463768116, "x2": -4.202898550724638, "y2": 8.840579710144928, "center_x": -4.3478260869565215, "center_y": 8.695652173913043, "value_uncond": 0.00010178427735403919}, {"x": -4.202898550724638, "y": 8.55072463768116, "x2": -3.91304347826087, "y2": 8.840579710144928, "center_x": -4.057971014492754, "center_y": 8.695652173913043, "value_uncond": 0.0001331806833200212}, {"x": -3.913043478260869, "y": 8.55072463768116, "x2": -3.6231884057971016, "y2": 8.840579710144928, "center_x": -3.7681159420289854, "center_y": 8.695652173913043, "value_uncond": 0.00017264245161968284}, {"x": -3.6231884057971016, "y": 8.55072463768116, "x2": -3.333333333333334, "y2": 8.840579710144928, "center_x": -3.4782608695652177, "center_y": 8.695652173913043, "value_uncond": 0.0002217173937673012}, {"x": -3.333333333333333, "y": 8.55072463768116, "x2": -3.0434782608695654, "y2": 8.840579710144928, "center_x": -3.1884057971014492, "center_y": 8.695652173913043, "value_uncond": 0.0002820965337334934}, {"x": -3.0434782608695645, "y": 8.55072463768116, "x2": -2.753623188405797, "y2": 8.840579710144928, "center_x": -2.8985507246376807, "center_y": 8.695652173913043, "value_uncond": 0.0003555834580916702}, {"x": -2.753623188405797, "y": 8.55072463768116, "x2": -2.4637681159420293, "y2": 8.840579710144928, "center_x": -2.608695652173913, "center_y": 8.695652173913043, "value_uncond": 0.0004440492727523974}, {"x": -2.4637681159420284, "y": 8.55072463768116, "x2": -2.1739130434782608, "y2": 8.840579710144928, "center_x": -2.3188405797101446, "center_y": 8.695652173913043, "value_uncond": 0.0005493720895215017}, {"x": -2.1739130434782608, "y": 8.55072463768116, "x2": -1.8840579710144931, "y2": 8.840579710144928, "center_x": -2.028985507246377, "center_y": 8.695652173913043, "value_uncond": 0.0006733608069568906}, {"x": -1.8840579710144922, "y": 8.55072463768116, "x2": -1.5942028985507246, "y2": 8.840579710144928, "center_x": -1.7391304347826084, "center_y": 8.695652173913043, "value_uncond": 0.0008176640283809529}, {"x": -1.5942028985507246, "y": 8.55072463768116, "x2": -1.304347826086957, "y2": 8.840579710144928, "center_x": -1.4492753623188408, "center_y": 8.695652173913043, "value_uncond": 0.0009836662352107881}, {"x": -1.304347826086957, "y": 8.55072463768116, "x2": -1.0144927536231894, "y2": 8.840579710144928, "center_x": -1.1594202898550732, "center_y": 8.695652173913043, "value_uncond": 0.00117237473562303}, {"x": -1.0144927536231876, "y": 8.55072463768116, "x2": -0.72463768115942, "y2": 8.840579710144928, "center_x": -0.8695652173913038, "center_y": 8.695652173913043, "value_uncond": 0.0013843023371089397}, {"x": -0.72463768115942, "y": 8.55072463768116, "x2": -0.43478260869565233, "y2": 8.840579710144928, "center_x": -0.5797101449275361, "center_y": 8.695652173913043, "value_uncond": 0.0016193520217726706}, {"x": -0.43478260869565233, "y": 8.55072463768116, "x2": -0.1449275362318847, "y2": 8.840579710144928, "center_x": -0.2898550724637685, "center_y": 8.695652173913043, "value_uncond": 0.0018767109937615424}, {"x": -0.14492753623188293, "y": 8.55072463768116, "x2": 0.1449275362318847, "y2": 8.840579710144928, "center_x": 8.881784197001252e-16, "center_y": 8.695652173913043, "value_uncond": 0.0021547621731544497}, {"x": 0.1449275362318847, "y": 8.55072463768116, "x2": 0.43478260869565233, "y2": 8.840579710144928, "center_x": 0.2898550724637685, "center_y": 8.695652173913043, "value_uncond": 0.002451021395080612}, {"x": 0.43478260869565233, "y": 8.55072463768116, "x2": 0.72463768115942, "y2": 8.840579710144928, "center_x": 0.5797101449275361, "center_y": 8.695652173913043, "value_uncond": 0.0027621081296955365}, {"x": 0.72463768115942, "y": 8.55072463768116, "x2": 1.0144927536231876, "y2": 8.840579710144928, "center_x": 0.8695652173913038, "center_y": 8.695652173913043, "value_uncond": 0.003083756405139314}, {"x": 1.0144927536231894, "y": 8.55072463768116, "x2": 1.304347826086957, "y2": 8.840579710144928, "center_x": 1.1594202898550732, "center_y": 8.695652173913043, "value_uncond": 0.0034108707873688375}, {"x": 1.304347826086957, "y": 8.55072463768116, "x2": 1.5942028985507246, "y2": 8.840579710144928, "center_x": 1.4492753623188408, "center_y": 8.695652173913043, "value_uncond": 0.003737629811159793}, {"x": 1.5942028985507246, "y": 8.55072463768116, "x2": 1.8840579710144922, "y2": 8.840579710144928, "center_x": 1.7391304347826084, "center_y": 8.695652173913043, "value_uncond": 0.004057636299484736}, {"x": 1.884057971014494, "y": 8.55072463768116, "x2": 2.1739130434782616, "y2": 8.840579710144928, "center_x": 2.028985507246378, "center_y": 8.695652173913043, "value_uncond": 0.004364110753120656}, {"x": 2.1739130434782616, "y": 8.55072463768116, "x2": 2.4637681159420293, "y2": 8.840579710144928, "center_x": 2.3188405797101455, "center_y": 8.695652173913043, "value_uncond": 0.004650120689912263}, {"x": 2.4637681159420293, "y": 8.55072463768116, "x2": 2.753623188405797, "y2": 8.840579710144928, "center_x": 2.608695652173913, "center_y": 8.695652173913043, "value_uncond": 0.004908835745780014}, {"x": 2.753623188405797, "y": 8.55072463768116, "x2": 3.0434782608695645, "y2": 8.840579710144928, "center_x": 2.8985507246376807, "center_y": 8.695652173913043, "value_uncond": 0.0051337958036886434}, {"x": 3.0434782608695663, "y": 8.55072463768116, "x2": 3.333333333333334, "y2": 8.840579710144928, "center_x": 3.18840579710145, "center_y": 8.695652173913043, "value_uncond": 0.005319177653177839}, {"x": 3.333333333333334, "y": 8.55072463768116, "x2": 3.6231884057971016, "y2": 8.840579710144928, "center_x": 3.4782608695652177, "center_y": 8.695652173913043, "value_uncond": 0.005460044907529852}, {"x": 3.6231884057971016, "y": 8.55072463768116, "x2": 3.913043478260869, "y2": 8.840579710144928, "center_x": 3.7681159420289854, "center_y": 8.695652173913043, "value_uncond": 0.005552566243749356}, {"x": 3.913043478260871, "y": 8.55072463768116, "x2": 4.202898550724639, "y2": 8.840579710144928, "center_x": 4.057971014492755, "center_y": 8.695652173913043, "value_uncond": 0.005594188509648697}, {"x": 4.202898550724639, "y": 8.55072463768116, "x2": 4.492753623188406, "y2": 8.840579710144928, "center_x": 4.347826086956522, "center_y": 8.695652173913043, "value_uncond": 0.005583753783940638}, {"x": 4.492753623188406, "y": 8.55072463768116, "x2": 4.782608695652174, "y2": 8.840579710144928, "center_x": 4.63768115942029, "center_y": 8.695652173913043, "value_uncond": 0.005521552898678561}, {"x": 4.782608695652174, "y": 8.55072463768116, "x2": 5.0724637681159415, "y2": 8.840579710144928, "center_x": 4.927536231884058, "center_y": 8.695652173913043, "value_uncond": 0.005409311971190908}, {"x": 5.072463768115943, "y": 8.55072463768116, "x2": 5.362318840579711, "y2": 8.840579710144928, "center_x": 5.217391304347827, "center_y": 8.695652173913043, "value_uncond": 0.005250112815975646}, {"x": 5.362318840579711, "y": 8.55072463768116, "x2": 5.6521739130434785, "y2": 8.840579710144928, "center_x": 5.507246376811595, "center_y": 8.695652173913043, "value_uncond": 0.005048252358228618}, {"x": 5.6521739130434785, "y": 8.55072463768116, "x2": 5.942028985507246, "y2": 8.840579710144928, "center_x": 5.797101449275362, "center_y": 8.695652173913043, "value_uncond": 0.004809049999432685}, {"x": 5.942028985507246, "y": 8.55072463768116, "x2": 6.231884057971014, "y2": 8.840579710144928, "center_x": 6.08695652173913, "center_y": 8.695652173913043, "value_uncond": 0.004538614983846707}, {"x": 6.2318840579710155, "y": 8.55072463768116, "x2": 6.521739130434783, "y2": 8.840579710144928, "center_x": 6.376811594202899, "center_y": 8.695652173913043, "value_uncond": 0.0042435879475285635}, {"x": 6.521739130434785, "y": 8.55072463768116, "x2": 6.8115942028985526, "y2": 8.840579710144928, "center_x": 6.666666666666669, "center_y": 8.695652173913043, "value_uncond": 0.003930871857686281}, {"x": 6.811594202898551, "y": 8.55072463768116, "x2": 7.101449275362318, "y2": 8.840579710144928, "center_x": 6.956521739130435, "center_y": 8.695652173913043, "value_uncond": 0.003607367433725416}, {"x": 7.10144927536232, "y": 8.55072463768116, "x2": 7.391304347826088, "y2": 8.840579710144928, "center_x": 7.246376811594204, "center_y": 8.695652173913043, "value_uncond": 0.0032797269505432467}, {"x": 7.391304347826086, "y": 8.55072463768116, "x2": 7.681159420289854, "y2": 8.840579710144928, "center_x": 7.53623188405797, "center_y": 8.695652173913043, "value_uncond": 0.002954138219697305}, {"x": 7.681159420289855, "y": 8.55072463768116, "x2": 7.971014492753623, "y2": 8.840579710144928, "center_x": 7.826086956521739, "center_y": 8.695652173913043, "value_uncond": 0.0026361477562092976}, {"x": 7.971014492753625, "y": 8.55072463768116, "x2": 8.260869565217392, "y2": 8.840579710144928, "center_x": 8.115942028985508, "center_y": 8.695652173913043, "value_uncond": 0.0023305289426137467}, {"x": 8.26086956521739, "y": 8.55072463768116, "x2": 8.550724637681158, "y2": 8.840579710144928, "center_x": 8.405797101449274, "center_y": 8.695652173913043, "value_uncond": 0.0020411976855896304}, {"x": 8.55072463768116, "y": 8.55072463768116, "x2": 8.840579710144928, "y2": 8.840579710144928, "center_x": 8.695652173913043, "center_y": 8.695652173913043, "value_uncond": 0.0017711748968384177}, {"x": 8.84057971014493, "y": 8.55072463768116, "x2": 9.130434782608697, "y2": 8.840579710144928, "center_x": 8.985507246376812, "center_y": 8.695652173913043, "value_uncond": 0.0015225923513204718}, {"x": 9.130434782608695, "y": 8.55072463768116, "x2": 9.420289855072463, "y2": 8.840579710144928, "center_x": 9.275362318840578, "center_y": 8.695652173913043, "value_uncond": 0.0012967362567683765}, {"x": 9.420289855072465, "y": 8.55072463768116, "x2": 9.710144927536232, "y2": 8.840579710144928, "center_x": 9.565217391304348, "center_y": 8.695652173913043, "value_uncond": 0.0010941213143847602}, {"x": 9.710144927536234, "y": 8.55072463768116, "x2": 10.000000000000002, "y2": 8.840579710144928, "center_x": 9.855072463768117, "center_y": 8.695652173913043, "value_uncond": 0.000914587197337893}, {"x": 10.0, "y": 8.55072463768116, "x2": 10.289855072463768, "y2": 8.840579710144928, "center_x": 10.144927536231883, "center_y": 8.695652173913043, "value_uncond": 0.0007574091919261327}, {"x": -10.0, "y": 8.84057971014493, "x2": -9.710144927536232, "y2": 9.130434782608697, "center_x": -9.855072463768117, "center_y": 8.985507246376812, "value_uncond": 8.979607877804766e-08}, {"x": -9.710144927536232, "y": 8.84057971014493, "x2": -9.420289855072465, "y2": 9.130434782608697, "center_x": -9.565217391304348, "center_y": 8.985507246376812, "value_uncond": 1.402966939890929e-07}, {"x": -9.420289855072463, "y": 8.84057971014493, "x2": -9.130434782608695, "y2": 9.130434782608697, "center_x": -9.275362318840578, "center_y": 8.985507246376812, "value_uncond": 2.1716174199835867e-07}, {"x": -9.130434782608695, "y": 8.84057971014493, "x2": -8.840579710144928, "y2": 9.130434782608697, "center_x": -8.985507246376812, "center_y": 8.985507246376812, "value_uncond": 3.330159316072577e-07}, {"x": -8.840579710144928, "y": 8.84057971014493, "x2": -8.55072463768116, "y2": 9.130434782608697, "center_x": -8.695652173913043, "center_y": 8.985507246376812, "value_uncond": 5.059324312362338e-07}, {"x": -8.55072463768116, "y": 8.84057971014493, "x2": -8.260869565217392, "y2": 9.130434782608697, "center_x": -8.405797101449277, "center_y": 8.985507246376812, "value_uncond": 7.614928721571976e-07}, {"x": -8.26086956521739, "y": 8.84057971014493, "x2": -7.971014492753623, "y2": 9.130434782608697, "center_x": -8.115942028985508, "center_y": 8.985507246376812, "value_uncond": 1.1354943568473354e-06}, {"x": -7.971014492753623, "y": 8.84057971014493, "x2": -7.681159420289855, "y2": 9.130434782608697, "center_x": -7.826086956521739, "center_y": 8.985507246376812, "value_uncond": 1.6774513459742732e-06}, {"x": -7.681159420289855, "y": 8.84057971014493, "x2": -7.391304347826088, "y2": 9.130434782608697, "center_x": -7.536231884057972, "center_y": 8.985507246376812, "value_uncond": 2.455052022138501e-06}, {"x": -7.391304347826087, "y": 8.84057971014493, "x2": -7.101449275362319, "y2": 9.130434782608697, "center_x": -7.246376811594203, "center_y": 8.985507246376812, "value_uncond": 3.559731818157989e-06}, {"x": -7.101449275362318, "y": 8.84057971014493, "x2": -6.811594202898551, "y2": 9.130434782608697, "center_x": -6.956521739130435, "center_y": 8.985507246376812, "value_uncond": 5.113516672729353e-06}, {"x": -6.811594202898551, "y": 8.84057971014493, "x2": -6.521739130434783, "y2": 9.130434782608697, "center_x": -6.666666666666667, "center_y": 8.985507246376812, "value_uncond": 7.277259918443921e-06}, {"x": -6.521739130434782, "y": 8.84057971014493, "x2": -6.231884057971015, "y2": 9.130434782608697, "center_x": -6.3768115942028984, "center_y": 8.985507246376812, "value_uncond": 1.0260343762145541e-05}, {"x": -6.231884057971014, "y": 8.84057971014493, "x2": -5.942028985507246, "y2": 9.130434782608697, "center_x": -6.08695652173913, "center_y": 8.985507246376812, "value_uncond": 1.4331833399382685e-05}, {"x": -5.942028985507246, "y": 8.84057971014493, "x2": -5.6521739130434785, "y2": 9.130434782608697, "center_x": -5.797101449275362, "center_y": 8.985507246376812, "value_uncond": 1.9832954021266523e-05}, {"x": -5.6521739130434785, "y": 8.84057971014493, "x2": -5.362318840579711, "y2": 9.130434782608697, "center_x": -5.507246376811595, "center_y": 8.985507246376812, "value_uncond": 2.719060516917808e-05}, {"x": -5.36231884057971, "y": 8.84057971014493, "x2": -5.072463768115942, "y2": 9.130434782608697, "center_x": -5.217391304347826, "center_y": 8.985507246376812, "value_uncond": 3.6931432775225205e-05}, {"x": -5.0724637681159415, "y": 8.84057971014493, "x2": -4.782608695652174, "y2": 9.130434782608697, "center_x": -4.927536231884058, "center_y": 8.985507246376812, "value_uncond": 4.9695750572262035e-05}, {"x": -4.782608695652174, "y": 8.84057971014493, "x2": -4.492753623188406, "y2": 9.130434782608697, "center_x": -4.63768115942029, "center_y": 8.985507246376812, "value_uncond": 6.625034839174487e-05}, {"x": -4.492753623188405, "y": 8.84057971014493, "x2": -4.202898550724638, "y2": 9.130434782608697, "center_x": -4.3478260869565215, "center_y": 8.985507246376812, "value_uncond": 8.74989604135519e-05}, {"x": -4.202898550724638, "y": 8.84057971014493, "x2": -3.91304347826087, "y2": 9.130434782608697, "center_x": -4.057971014492754, "center_y": 8.985507246376812, "value_uncond": 0.00011448891361810995}, {"x": -3.913043478260869, "y": 8.84057971014493, "x2": -3.6231884057971016, "y2": 9.130434782608697, "center_x": -3.7681159420289854, "center_y": 8.985507246376812, "value_uncond": 0.00014841226398282917}, {"x": -3.6231884057971016, "y": 8.84057971014493, "x2": -3.333333333333334, "y2": 9.130434782608697, "center_x": -3.4782608695652177, "center_y": 8.985507246376812, "value_uncond": 0.00019059958929374977}, {"x": -3.333333333333333, "y": 8.84057971014493, "x2": -3.0434782608695654, "y2": 9.130434782608697, "center_x": -3.1884057971014492, "center_y": 8.985507246376812, "value_uncond": 0.0002425045800746907}, {"x": -3.0434782608695645, "y": 8.84057971014493, "x2": -2.753623188405797, "y2": 9.130434782608697, "center_x": -2.8985507246376807, "center_y": 8.985507246376812, "value_uncond": 0.00030567769140861566}, {"x": -2.753623188405797, "y": 8.84057971014493, "x2": -2.4637681159420293, "y2": 9.130434782608697, "center_x": -2.608695652173913, "center_y": 8.985507246376812, "value_uncond": 0.00038172742144724434}, {"x": -2.4637681159420284, "y": 8.84057971014493, "x2": -2.1739130434782608, "y2": 9.130434782608697, "center_x": -2.3188405797101446, "center_y": 8.985507246376812, "value_uncond": 0.000472268290967481}, {"x": -2.1739130434782608, "y": 8.84057971014493, "x2": -1.8840579710144931, "y2": 9.130434782608697, "center_x": -2.028985507246377, "center_y": 8.985507246376812, "value_uncond": 0.0005788553215053133}, {"x": -1.8840579710144922, "y": 8.84057971014493, "x2": -1.5942028985507246, "y2": 9.130434782608697, "center_x": -1.7391304347826084, "center_y": 8.985507246376812, "value_uncond": 0.0007029057366299728}, {"x": -1.5942028985507246, "y": 8.84057971014493, "x2": -1.304347826086957, "y2": 9.130434782608697, "center_x": -1.4492753623188408, "center_y": 8.985507246376812, "value_uncond": 0.0008456097072387457}, {"x": -1.304347826086957, "y": 8.84057971014493, "x2": -1.0144927536231894, "y2": 9.130434782608697, "center_x": -1.1594202898550732, "center_y": 8.985507246376812, "value_uncond": 0.0010078331668585262}, {"x": -1.0144927536231876, "y": 8.84057971014493, "x2": -0.72463768115942, "y2": 9.130434782608697, "center_x": -0.8695652173913038, "center_y": 8.985507246376812, "value_uncond": 0.001190016950985169}, {"x": -0.72463768115942, "y": 8.84057971014493, "x2": -0.43478260869565233, "y2": 9.130434782608697, "center_x": -0.5797101449275361, "center_y": 8.985507246376812, "value_uncond": 0.0013920776580831054}, {"x": -0.43478260869565233, "y": 8.84057971014493, "x2": -0.1449275362318847, "y2": 9.130434782608697, "center_x": -0.2898550724637685, "center_y": 8.985507246376812, "value_uncond": 0.001613316567348035}, {"x": -0.14492753623188293, "y": 8.84057971014493, "x2": 0.1449275362318847, "y2": 9.130434782608697, "center_x": 8.881784197001252e-16, "center_y": 8.985507246376812, "value_uncond": 0.0018523435543355879}, {"x": 0.1449275362318847, "y": 8.84057971014493, "x2": 0.43478260869565233, "y2": 9.130434782608697, "center_x": 0.2898550724637685, "center_y": 8.985507246376812, "value_uncond": 0.002107023104118119}, {"x": 0.43478260869565233, "y": 8.84057971014493, "x2": 0.72463768115942, "y2": 9.130434782608697, "center_x": 0.5797101449275361, "center_y": 8.985507246376812, "value_uncond": 0.0023744491406814394}, {"x": 0.72463768115942, "y": 8.84057971014493, "x2": 1.0144927536231876, "y2": 9.130434782608697, "center_x": 0.8695652173913038, "center_y": 8.985507246376812, "value_uncond": 0.002650954416857332}, {"x": 1.0144927536231894, "y": 8.84057971014493, "x2": 1.304347826086957, "y2": 9.130434782608697, "center_x": 1.1594202898550732, "center_y": 8.985507246376812, "value_uncond": 0.0029321586374448324}, {"x": 1.304347826086957, "y": 8.84057971014493, "x2": 1.5942028985507246, "y2": 9.130434782608697, "center_x": 1.4492753623188408, "center_y": 8.985507246376812, "value_uncond": 0.0032130573737791934}, {"x": 1.5942028985507246, "y": 8.84057971014493, "x2": 1.8840579710144922, "y2": 9.130434782608697, "center_x": 1.7391304347826084, "center_y": 8.985507246376812, "value_uncond": 0.0034881512859423654}, {"x": 1.884057971014494, "y": 8.84057971014493, "x2": 2.1739130434782616, "y2": 9.130434782608697, "center_x": 2.028985507246378, "center_y": 8.985507246376812, "value_uncond": 0.003751612370341272}, {"x": 2.1739130434782616, "y": 8.84057971014493, "x2": 2.4637681159420293, "y2": 9.130434782608697, "center_x": 2.3188405797101455, "center_y": 8.985507246376812, "value_uncond": 0.003997481111445207}, {"x": 2.4637681159420293, "y": 8.84057971014493, "x2": 2.753623188405797, "y2": 9.130434782608697, "center_x": 2.608695652173913, "center_y": 8.985507246376812, "value_uncond": 0.004219885779634011}, {"x": 2.753623188405797, "y": 8.84057971014493, "x2": 3.0434782608695645, "y2": 9.130434782608697, "center_x": 2.8985507246376807, "center_y": 8.985507246376812, "value_uncond": 0.004413272928546124}, {"x": 3.0434782608695663, "y": 8.84057971014493, "x2": 3.333333333333334, "y2": 9.130434782608697, "center_x": 3.18840579710145, "center_y": 8.985507246376812, "value_uncond": 0.0045726366292228515}, {"x": 3.333333333333334, "y": 8.84057971014493, "x2": 3.6231884057971016, "y2": 9.130434782608697, "center_x": 3.4782608695652177, "center_y": 8.985507246376812, "value_uncond": 0.00469373331166271}, {"x": 3.6231884057971016, "y": 8.84057971014493, "x2": 3.913043478260869, "y2": 9.130434782608697, "center_x": 3.7681159420289854, "center_y": 8.985507246376812, "value_uncond": 0.004773269375048221}, {"x": 3.913043478260871, "y": 8.84057971014493, "x2": 4.202898550724639, "y2": 9.130434782608697, "center_x": 4.057971014492755, "center_y": 8.985507246376812, "value_uncond": 0.004809049999432683}, {"x": 4.202898550724639, "y": 8.84057971014493, "x2": 4.492753623188406, "y2": 9.130434782608697, "center_x": 4.347826086956522, "center_y": 8.985507246376812, "value_uncond": 0.00480007977657125}, {"x": 4.492753623188406, "y": 8.84057971014493, "x2": 4.782608695652174, "y2": 9.130434782608697, "center_x": 4.63768115942029, "center_y": 8.985507246376812, "value_uncond": 0.004746608720542591}, {"x": 4.782608695652174, "y": 8.84057971014493, "x2": 5.0724637681159415, "y2": 9.130434782608697, "center_x": 4.927536231884058, "center_y": 8.985507246376812, "value_uncond": 0.004650120689912261}, {"x": 5.072463768115943, "y": 8.84057971014493, "x2": 5.362318840579711, "y2": 9.130434782608697, "center_x": 5.217391304347827, "center_y": 8.985507246376812, "value_uncond": 0.004513264969734587}, {"x": 5.362318840579711, "y": 8.84057971014493, "x2": 5.6521739130434785, "y2": 9.130434782608697, "center_x": 5.507246376811595, "center_y": 8.985507246376812, "value_uncond": 0.004339735416245373}, {"x": 5.6521739130434785, "y": 8.84057971014493, "x2": 5.942028985507246, "y2": 9.130434782608697, "center_x": 5.797101449275362, "center_y": 8.985507246376812, "value_uncond": 0.004134104858489265}, {"x": 5.942028985507246, "y": 8.84057971014493, "x2": 6.231884057971014, "y2": 9.130434782608697, "center_x": 6.08695652173913, "center_y": 8.985507246376812, "value_uncond": 0.003901625114678845}, {"x": 6.2318840579710155, "y": 8.84057971014493, "x2": 6.521739130434783, "y2": 9.130434782608697, "center_x": 6.376811594202899, "center_y": 8.985507246376812, "value_uncond": 0.003648004814542142}, {"x": 6.521739130434785, "y": 8.84057971014493, "x2": 6.8115942028985526, "y2": 9.130434782608697, "center_x": 6.666666666666669, "center_y": 8.985507246376812, "value_uncond": 0.0033791781010546027}, {"x": 6.811594202898551, "y": 8.84057971014493, "x2": 7.101449275362318, "y2": 9.130434782608697, "center_x": 6.956521739130435, "center_y": 8.985507246376812, "value_uncond": 0.003101077184865926}, {"x": 7.10144927536232, "y": 8.84057971014493, "x2": 7.391304347826088, "y2": 9.130434782608697, "center_x": 7.246376811594204, "center_y": 8.985507246376812, "value_uncond": 0.002819420701044596}, {"x": 7.391304347826086, "y": 8.84057971014493, "x2": 7.681159420289854, "y2": 9.130434782608697, "center_x": 7.53623188405797, "center_y": 8.985507246376812, "value_uncond": 0.002539528008263621}, {"x": 7.681159420289855, "y": 8.84057971014493, "x2": 7.971014492753623, "y2": 9.130434782608697, "center_x": 7.826086956521739, "center_y": 8.985507246376812, "value_uncond": 0.0022661671739586946}, {"x": 7.971014492753625, "y": 8.84057971014493, "x2": 8.260869565217392, "y2": 9.130434782608697, "center_x": 8.115942028985508, "center_y": 8.985507246376812, "value_uncond": 0.002003441641414816}, {"x": 8.26086956521739, "y": 8.84057971014493, "x2": 8.550724637681158, "y2": 9.130434782608697, "center_x": 8.405797101449274, "center_y": 8.985507246376812, "value_uncond": 0.0017547177239015214}, {"x": 8.55072463768116, "y": 8.84057971014493, "x2": 8.840579710144928, "y2": 9.130434782608697, "center_x": 8.695652173913043, "center_y": 8.985507246376812, "value_uncond": 0.0015225923513204718}, {"x": 8.84057971014493, "y": 8.84057971014493, "x2": 9.130434782608697, "y2": 9.130434782608697, "center_x": 8.985507246376812, "center_y": 8.985507246376812, "value_uncond": 0.0013088981062445}, {"x": 9.130434782608695, "y": 8.84057971014493, "x2": 9.420289855072463, "y2": 9.130434782608697, "center_x": 9.275362318840578, "center_y": 8.985507246376812, "value_uncond": 0.0011147406784952822}, {"x": 9.420289855072465, "y": 8.84057971014493, "x2": 9.710144927536232, "y2": 9.130434782608697, "center_x": 9.565217391304348, "center_y": 8.985507246376812, "value_uncond": 0.0009405625314996294}, {"x": 9.710144927536234, "y": 8.84057971014493, "x2": 10.000000000000002, "y2": 9.130434782608697, "center_x": 9.855072463768117, "center_y": 8.985507246376812, "value_uncond": 0.0007862258401290695}, {"x": 10.0, "y": 8.84057971014493, "x2": 10.289855072463768, "y2": 9.130434782608697, "center_x": 10.144927536231883, "center_y": 8.985507246376812, "value_uncond": 0.000651107603492506}, {"x": -10.0, "y": 9.130434782608695, "x2": -9.710144927536232, "y2": 9.420289855072463, "center_x": -9.855072463768117, "center_y": 9.275362318840578, "value_uncond": 7.647603836058899e-08}, {"x": -9.710144927536232, "y": 9.130434782608695, "x2": -9.420289855072465, "y2": 9.420289855072463, "center_x": -9.565217391304348, "center_y": 9.275362318840578, "value_uncond": 1.1948556660134085e-07}, {"x": -9.420289855072463, "y": 9.130434782608695, "x2": -9.130434782608695, "y2": 9.420289855072463, "center_x": -9.275362318840578, "center_y": 9.275362318840578, "value_uncond": 1.8494871866920357e-07}, {"x": -9.130434782608695, "y": 9.130434782608695, "x2": -8.840579710144928, "y2": 9.420289855072463, "center_x": -8.985507246376812, "center_y": 9.275362318840578, "value_uncond": 2.836174976329806e-07}, {"x": -8.840579710144928, "y": 9.130434782608695, "x2": -8.55072463768116, "y2": 9.420289855072463, "center_x": -8.695652173913043, "center_y": 9.275362318840578, "value_uncond": 4.308841604846021e-07}, {"x": -8.55072463768116, "y": 9.130434782608695, "x2": -8.260869565217392, "y2": 9.420289855072463, "center_x": -8.405797101449277, "center_y": 9.275362318840578, "value_uncond": 6.485356476016378e-07}, {"x": -8.26086956521739, "y": 9.130434782608695, "x2": -7.971014492753623, "y2": 9.420289855072463, "center_x": -8.115942028985508, "center_y": 9.275362318840578, "value_uncond": 9.670590428244664e-07}, {"x": -7.971014492753623, "y": 9.130434782608695, "x2": -7.681159420289855, "y2": 9.420289855072463, "center_x": -7.826086956521739, "center_y": 9.275362318840578, "value_uncond": 1.4286240026119246e-06}, {"x": -7.681159420289855, "y": 9.130434782608695, "x2": -7.391304347826088, "y2": 9.420289855072463, "center_x": -7.536231884057972, "center_y": 9.275362318840578, "value_uncond": 2.0908780781662027e-06}, {"x": -7.391304347826087, "y": 9.130434782608695, "x2": -7.101449275362319, "y2": 9.420289855072463, "center_x": -7.246376811594203, "center_y": 9.275362318840578, "value_uncond": 3.0316934857673573e-06}, {"x": -7.101449275362318, "y": 9.130434782608695, "x2": -6.811594202898551, "y2": 9.420289855072463, "center_x": -6.956521739130435, "center_y": 9.275362318840578, "value_uncond": 4.354995257507432e-06}, {"x": -6.811594202898551, "y": 9.130434782608695, "x2": -6.521739130434783, "y2": 9.420289855072463, "center_x": -6.666666666666667, "center_y": 9.275362318840578, "value_uncond": 6.197776297765796e-06}, {"x": -6.521739130434782, "y": 9.130434782608695, "x2": -6.231884057971015, "y2": 9.420289855072463, "center_x": -6.3768115942028984, "center_y": 9.275362318840578, "value_uncond": 8.738359779452863e-06}, {"x": -6.231884057971014, "y": 9.130434782608695, "x2": -5.942028985507246, "y2": 9.420289855072463, "center_x": -6.08695652173913, "center_y": 9.275362318840578, "value_uncond": 1.2205898695619978e-05}, {"x": -5.942028985507246, "y": 9.130434782608695, "x2": -5.6521739130434785, "y2": 9.420289855072463, "center_x": -5.797101449275362, "center_y": 9.275362318840578, "value_uncond": 1.6891002070181413e-05}, {"x": -5.6521739130434785, "y": 9.130434782608695, "x2": -5.362318840579711, "y2": 9.420289855072463, "center_x": -5.507246376811595, "center_y": 9.275362318840578, "value_uncond": 2.315724463988563e-05}, {"x": -5.36231884057971, "y": 9.130434782608695, "x2": -5.072463768115942, "y2": 9.420289855072463, "center_x": -5.217391304347826, "center_y": 9.275362318840578, "value_uncond": 3.1453151496856975e-05}, {"x": -5.0724637681159415, "y": 9.130434782608695, "x2": -4.782608695652174, "y2": 9.420289855072463, "center_x": -4.927536231884058, "center_y": 9.275362318840578, "value_uncond": 4.2324054444699044e-05}, {"x": -4.782608695652174, "y": 9.130434782608695, "x2": -4.492753623188406, "y2": 9.420289855072463, "center_x": -4.63768115942029, "center_y": 9.275362318840578, "value_uncond": 5.642300035765128e-05}, {"x": -4.492753623188405, "y": 9.130434782608695, "x2": -4.202898550724638, "y2": 9.420289855072463, "center_x": -4.3478260869565215, "center_y": 9.275362318840578, "value_uncond": 7.451966660635891e-05}, {"x": -4.202898550724638, "y": 9.130434782608695, "x2": -3.91304347826087, "y2": 9.420289855072463, "center_x": -4.057971014492754, "center_y": 9.275362318840578, "value_uncond": 9.750602330155659e-05}, {"x": -3.913043478260869, "y": 9.130434782608695, "x2": -3.6231884057971016, "y2": 9.420289855072463, "center_x": -3.7681159420289854, "center_y": 9.275362318840578, "value_uncond": 0.00012639730095104576}, {"x": -3.6231884057971016, "y": 9.130434782608695, "x2": -3.333333333333334, "y2": 9.420289855072463, "center_x": -3.4782608695652177, "center_y": 9.275362318840578, "value_uncond": 0.00016232670402423812}, {"x": -3.333333333333333, "y": 9.130434782608695, "x2": -3.0434782608695654, "y2": 9.420289855072463, "center_x": -3.1884057971014492, "center_y": 9.275362318840578, "value_uncond": 0.000206532287609695}, {"x": -3.0434782608695645, "y": 9.130434782608695, "x2": -2.753623188405797, "y2": 9.420289855072463, "center_x": -2.8985507246376807, "center_y": 9.275362318840578, "value_uncond": 0.00026033451763437723}, {"x": -2.753623188405797, "y": 9.130434782608695, "x2": -2.4637681159420293, "y2": 9.420289855072463, "center_x": -2.608695652173913, "center_y": 9.275362318840578, "value_uncond": 0.00032510329318550315}, {"x": -2.4637681159420284, "y": 9.130434782608695, "x2": -2.1739130434782608, "y2": 9.420289855072463, "center_x": -2.3188405797101446, "center_y": 9.275362318840578, "value_uncond": 0.0004022136426000418}, {"x": -2.1739130434782608, "y": 9.130434782608695, "x2": -1.8840579710144931, "y2": 9.420289855072463, "center_x": -2.028985507246377, "center_y": 9.275362318840578, "value_uncond": 0.0004929899208860965}, {"x": -1.8840579710144922, "y": 9.130434782608695, "x2": -1.5942028985507246, "y2": 9.420289855072463, "center_x": -1.7391304347826084, "center_y": 9.275362318840578, "value_uncond": 0.0005986391255598276}, {"x": -1.5942028985507246, "y": 9.130434782608695, "x2": -1.304347826086957, "y2": 9.420289855072463, "center_x": -1.4492753623188408, "center_y": 9.275362318840578, "value_uncond": 0.0007201748816751926}, {"x": -1.304347826086957, "y": 9.130434782608695, "x2": -1.0144927536231894, "y2": 9.420289855072463, "center_x": -1.1594202898550732, "center_y": 9.275362318840578, "value_uncond": 0.0008583346731682558}, {"x": -1.0144927536231876, "y": 9.130434782608695, "x2": -0.72463768115942, "y2": 9.420289855072463, "center_x": -0.8695652173913038, "center_y": 9.275362318840578, "value_uncond": 0.0010134939435188506}, {"x": -0.72463768115942, "y": 9.130434782608695, "x2": -0.43478260869565233, "y2": 9.420289855072463, "center_x": -0.5797101449275361, "center_y": 9.275362318840578, "value_uncond": 0.0011855816626873544}, {"x": -0.43478260869565233, "y": 9.130434782608695, "x2": -0.1449275362318847, "y2": 9.420289855072463, "center_x": -0.2898550724637685, "center_y": 9.275362318840578, "value_uncond": 0.0013740027557021192}, {"x": -0.14492753623188293, "y": 9.130434782608695, "x2": 0.1449275362318847, "y2": 9.420289855072463, "center_x": 8.881784197001252e-16, "center_y": 9.275362318840578, "value_uncond": 0.0015775733043811879}, {"x": 0.1449275362318847, "y": 9.130434782608695, "x2": 0.43478260869565233, "y2": 9.420289855072463, "center_x": 0.2898550724637685, "center_y": 9.275362318840578, "value_uncond": 0.001794474568711094}, {"x": 0.43478260869565233, "y": 9.130434782608695, "x2": 0.72463768115942, "y2": 9.420289855072463, "center_x": 0.5797101449275361, "center_y": 9.275362318840578, "value_uncond": 0.002022231549964005}, {"x": 0.72463768115942, "y": 9.130434782608695, "x2": 1.0144927536231876, "y2": 9.420289855072463, "center_x": 0.8695652173913038, "center_y": 9.275362318840578, "value_uncond": 0.002257720987760062}, {"x": 1.0144927536231894, "y": 9.130434782608695, "x2": 1.304347826086957, "y2": 9.420289855072463, "center_x": 1.1594202898550732, "center_y": 9.275362318840578, "value_uncond": 0.0024972123447709275}, {"x": 1.304347826086957, "y": 9.130434782608695, "x2": 1.5942028985507246, "y2": 9.420289855072463, "center_x": 1.4492753623188408, "center_y": 9.275362318840578, "value_uncond": 0.002736443532008462}, {"x": 1.5942028985507246, "y": 9.130434782608695, "x2": 1.8840579710144922, "y2": 9.420289855072463, "center_x": 1.7391304347826084, "center_y": 9.275362318840578, "value_uncond": 0.002970730962658479}, {"x": 1.884057971014494, "y": 9.130434782608695, "x2": 2.1739130434782616, "y2": 9.420289855072463, "center_x": 2.028985507246378, "center_y": 9.275362318840578, "value_uncond": 0.0031951111390670145}, {"x": 2.1739130434782616, "y": 9.130434782608695, "x2": 2.4637681159420293, "y2": 9.420289855072463, "center_x": 2.3188405797101455, "center_y": 9.275362318840578, "value_uncond": 0.0034045085596694277}, {"x": 2.4637681159420293, "y": 9.130434782608695, "x2": 2.753623188405797, "y2": 9.420289855072463, "center_x": 2.608695652173913, "center_y": 9.275362318840578, "value_uncond": 0.0035939224869526204}, {"x": 2.753623188405797, "y": 9.130434782608695, "x2": 3.0434782608695645, "y2": 9.420289855072463, "center_x": 2.8985507246376807, "center_y": 9.275362318840578, "value_uncond": 0.0037586232536219915}, {"x": 3.0434782608695663, "y": 9.130434782608695, "x2": 3.333333333333334, "y2": 9.420289855072463, "center_x": 3.18840579710145, "center_y": 9.275362318840578, "value_uncond": 0.0038943474929438796}, {"x": 3.333333333333334, "y": 9.130434782608695, "x2": 3.6231884057971016, "y2": 9.420289855072463, "center_x": 3.4782608695652177, "center_y": 9.275362318840578, "value_uncond": 0.003997481111445211}, {"x": 3.6231884057971016, "y": 9.130434782608695, "x2": 3.913043478260869, "y2": 9.420289855072463, "center_x": 3.7681159420289854, "center_y": 9.275362318840578, "value_uncond": 0.004065219069686742}, {"x": 3.913043478260871, "y": 9.130434782608695, "x2": 4.202898550724639, "y2": 9.420289855072463, "center_x": 4.057971014492755, "center_y": 9.275362318840578, "value_uncond": 0.004095692119737797}, {"x": 4.202898550724639, "y": 9.130434782608695, "x2": 4.492753623188406, "y2": 9.420289855072463, "center_x": 4.347826086956522, "center_y": 9.275362318840578, "value_uncond": 0.004088052508777171}, {"x": 4.492753623188406, "y": 9.130434782608695, "x2": 4.782608695652174, "y2": 9.420289855072463, "center_x": 4.63768115942029, "center_y": 9.275362318840578, "value_uncond": 0.004042513164657964}, {"x": 4.782608695652174, "y": 9.130434782608695, "x2": 5.0724637681159415, "y2": 9.420289855072463, "center_x": 4.927536231884058, "center_y": 9.275362318840578, "value_uncond": 0.003960337835487279}, {"x": 5.072463768115943, "y": 9.130434782608695, "x2": 5.362318840579711, "y2": 9.420289855072463, "center_x": 5.217391304347827, "center_y": 9.275362318840578, "value_uncond": 0.0038437828205178234}, {"x": 5.362318840579711, "y": 9.130434782608695, "x2": 5.6521739130434785, "y2": 9.420289855072463, "center_x": 5.507246376811595, "center_y": 9.275362318840578, "value_uncond": 0.003695994042099792}, {"x": 5.6521739130434785, "y": 9.130434782608695, "x2": 5.942028985507246, "y2": 9.420289855072463, "center_x": 5.797101449275362, "center_y": 9.275362318840578, "value_uncond": 0.003520866011599312}, {"x": 5.942028985507246, "y": 9.130434782608695, "x2": 6.231884057971014, "y2": 9.420289855072463, "center_x": 6.08695652173913, "center_y": 9.275362318840578, "value_uncond": 0.003322871510640635}, {"x": 6.2318840579710155, "y": 9.130434782608695, "x2": 6.521739130434783, "y2": 9.420289855072463, "center_x": 6.376811594202899, "center_y": 9.275362318840578, "value_uncond": 0.0031068723705198263}, {"x": 6.521739130434785, "y": 9.130434782608695, "x2": 6.8115942028985526, "y2": 9.420289855072463, "center_x": 6.666666666666669, "center_y": 9.275362318840578, "value_uncond": 0.0028779224839235533}, {"x": 6.811594202898551, "y": 9.130434782608695, "x2": 7.101449275362318, "y2": 9.420289855072463, "center_x": 6.956521739130435, "center_y": 9.275362318840578, "value_uncond": 0.002641074097847261}, {"x": 7.10144927536232, "y": 9.130434782608695, "x2": 7.391304347826088, "y2": 9.420289855072463, "center_x": 7.246376811594204, "center_y": 9.275362318840578, "value_uncond": 0.0024011975647698}, {"x": 7.391304347826086, "y": 9.130434782608695, "x2": 7.681159420289854, "y2": 9.420289855072463, "center_x": 7.53623188405797, "center_y": 9.275362318840578, "value_uncond": 0.002162823188057047}, {"x": 7.681159420289855, "y": 9.130434782608695, "x2": 7.971014492753623, "y2": 9.420289855072463, "center_x": 7.826086956521739, "center_y": 9.275362318840578, "value_uncond": 0.001930011756477064}, {"x": 7.971014492753625, "y": 9.130434782608695, "x2": 8.260869565217392, "y2": 9.420289855072463, "center_x": 8.115942028985508, "center_y": 9.275362318840578, "value_uncond": 0.0017062580226999524}, {"x": 8.26086956521739, "y": 9.130434782608695, "x2": 8.550724637681158, "y2": 9.420289855072463, "center_x": 8.405797101449274, "center_y": 9.275362318840578, "value_uncond": 0.0014944289527028252}, {"x": 8.55072463768116, "y": 9.130434782608695, "x2": 8.840579710144928, "y2": 9.420289855072463, "center_x": 8.695652173913043, "center_y": 9.275362318840578, "value_uncond": 0.0012967362567683765}, {"x": 8.84057971014493, "y": 9.130434782608695, "x2": 9.130434782608697, "y2": 9.420289855072463, "center_x": 8.985507246376812, "center_y": 9.275362318840578, "value_uncond": 0.0011147406784952822}, {"x": 9.130434782608695, "y": 9.130434782608695, "x2": 9.420289855072463, "y2": 9.420289855072463, "center_x": 9.275362318840578, "center_y": 9.275362318840578, "value_uncond": 0.0009493838934930793}, {"x": 9.420289855072465, "y": 9.130434782608695, "x2": 9.710144927536232, "y2": 9.420289855072463, "center_x": 9.565217391304348, "center_y": 9.275362318840578, "value_uncond": 0.0008010427316908976}, {"x": 9.710144927536234, "y": 9.130434782608695, "x2": 10.000000000000002, "y2": 9.420289855072463, "center_x": 9.855072463768117, "center_y": 9.275362318840578, "value_uncond": 0.0006695998124641526}, {"x": 10.0, "y": 9.130434782608695, "x2": 10.289855072463768, "y2": 9.420289855072463, "center_x": 10.144927536231883, "center_y": 9.275362318840578, "value_uncond": 0.0005545245487238043}, {"x": -10.0, "y": 9.420289855072465, "x2": -9.710144927536232, "y2": 9.710144927536232, "center_x": -9.855072463768117, "center_y": 9.565217391304348, "value_uncond": 6.452666313083046e-08}, {"x": -9.710144927536232, "y": 9.420289855072465, "x2": -9.420289855072465, "y2": 9.710144927536232, "center_x": -9.565217391304348, "center_y": 9.565217391304348, "value_uncond": 1.0081595582564033e-07}, {"x": -9.420289855072463, "y": 9.420289855072465, "x2": -9.130434782608695, "y2": 9.710144927536232, "center_x": -9.275362318840578, "center_y": 9.565217391304348, "value_uncond": 1.5605049531692952e-07}, {"x": -9.130434782608695, "y": 9.420289855072465, "x2": -8.840579710144928, "y2": 9.710144927536232, "center_x": -8.985507246376812, "center_y": 9.565217391304348, "value_uncond": 2.3930228500439113e-07}, {"x": -8.840579710144928, "y": 9.420289855072465, "x2": -8.55072463768116, "y2": 9.710144927536232, "center_x": -8.695652173913043, "center_y": 9.565217391304348, "value_uncond": 3.6355854288509836e-07}, {"x": -8.55072463768116, "y": 9.420289855072465, "x2": -8.260869565217392, "y2": 9.710144927536232, "center_x": -8.405797101449277, "center_y": 9.565217391304348, "value_uncond": 5.472020015447292e-07}, {"x": -8.26086956521739, "y": 9.420289855072465, "x2": -7.971014492753623, "y2": 9.710144927536232, "center_x": -8.115942028985508, "center_y": 9.565217391304348, "value_uncond": 8.15956140271452e-07}, {"x": -7.971014492753623, "y": 9.420289855072465, "x2": -7.681159420289855, "y2": 9.710144927536232, "center_x": -7.826086956521739, "center_y": 9.565217391304348, "value_uncond": 1.2054016098807787e-06}, {"x": -7.681159420289855, "y": 9.420289855072465, "x2": -7.391304347826088, "y2": 9.710144927536232, "center_x": -7.536231884057972, "center_y": 9.565217391304348, "value_uncond": 1.7641785360445216e-06}, {"x": -7.391304347826087, "y": 9.420289855072465, "x2": -7.101449275362319, "y2": 9.710144927536232, "center_x": -7.246376811594203, "center_y": 9.565217391304348, "value_uncond": 2.5579916071182954e-06}, {"x": -7.101449275362318, "y": 9.420289855072465, "x2": -6.811594202898551, "y2": 9.710144927536232, "center_x": -6.956521739130435, "center_y": 9.565217391304348, "value_uncond": 3.674527576762701e-06}, {"x": -6.811594202898551, "y": 9.420289855072465, "x2": -6.521739130434783, "y2": 9.710144927536232, "center_x": -6.666666666666667, "center_y": 9.565217391304348, "value_uncond": 5.229374218373128e-06}, {"x": -6.521739130434782, "y": 9.420289855072465, "x2": -6.231884057971015, "y2": 9.710144927536232, "center_x": -6.3768115942028984, "center_y": 9.565217391304348, "value_uncond": 7.372991722533171e-06}, {"x": -6.231884057971014, "y": 9.420289855072465, "x2": -5.942028985507246, "y2": 9.710144927536232, "center_x": -6.08695652173913, "center_y": 9.565217391304348, "value_uncond": 1.0298727944401408e-05}, {"x": -5.942028985507246, "y": 9.420289855072465, "x2": -5.6521739130434785, "y2": 9.710144927536232, "center_x": -5.797101449275362, "center_y": 9.565217391304348, "value_uncond": 1.425178426980903e-05}, {"x": -5.6521739130434785, "y": 9.420289855072465, "x2": -5.362318840579711, "y2": 9.710144927536232, "center_x": -5.507246376811595, "center_y": 9.565217391304348, "value_uncond": 1.9538926910290582e-05}, {"x": -5.36231884057971, "y": 9.420289855072465, "x2": -5.072463768115942, "y2": 9.710144927536232, "center_x": -5.217391304347826, "center_y": 9.565217391304348, "value_uncond": 2.6538598946131802e-05}, {"x": -5.0724637681159415, "y": 9.420289855072465, "x2": -4.782608695652174, "y2": 9.710144927536232, "center_x": -4.927536231884058, "center_y": 9.565217391304348, "value_uncond": 3.5710924127725504e-05}, {"x": -4.782608695652174, "y": 9.420289855072465, "x2": -4.492753623188406, "y2": 9.710144927536232, "center_x": -4.63768115942029, "center_y": 9.565217391304348, "value_uncond": 4.760691080443206e-05}, {"x": -4.492753623188405, "y": 9.420289855072465, "x2": -4.202898550724638, "y2": 9.710144927536232, "center_x": -4.3478260869565215, "center_y": 9.565217391304348, "value_uncond": 6.287597431574483e-05}, {"x": -4.202898550724638, "y": 9.420289855072465, "x2": -3.91304347826087, "y2": 9.710144927536232, "center_x": -4.057971014492754, "center_y": 9.565217391304348, "value_uncond": 8.227071450982501e-05}, {"x": -3.913043478260869, "y": 9.420289855072465, "x2": -3.6231884057971016, "y2": 9.710144927536232, "center_x": -3.7681159420289854, "center_y": 9.565217391304348, "value_uncond": 0.00010664773220414889}, {"x": -3.6231884057971016, "y": 9.420289855072465, "x2": -3.333333333333334, "y2": 9.710144927536232, "center_x": -3.4782608695652177, "center_y": 9.565217391304348, "value_uncond": 0.00013696316875519372}, {"x": -3.333333333333333, "y": 9.420289855072465, "x2": -3.0434782608695654, "y2": 9.710144927536232, "center_x": -3.1884057971014492, "center_y": 9.565217391304348, "value_uncond": 0.00017426163323724657}, {"x": -3.0434782608695645, "y": 9.420289855072465, "x2": -2.753623188405797, "y2": 9.710144927536232, "center_x": -2.8985507246376807, "center_y": 9.565217391304348, "value_uncond": 0.00021965726887570564}, {"x": -2.753623188405797, "y": 9.420289855072465, "x2": -2.4637681159420293, "y2": 9.710144927536232, "center_x": -2.608695652173913, "center_y": 9.565217391304348, "value_uncond": 0.00027430592812866244}, {"x": -2.4637681159420284, "y": 9.420289855072465, "x2": -2.1739130434782608, "y2": 9.710144927536232, "center_x": -2.3188405797101446, "center_y": 9.565217391304348, "value_uncond": 0.0003393677912590714}, {"x": -2.1739130434782608, "y": 9.420289855072465, "x2": -1.8840579710144931, "y2": 9.710144927536232, "center_x": -2.028985507246377, "center_y": 9.565217391304348, "value_uncond": 0.0004159602829048383}, {"x": -1.8840579710144922, "y": 9.420289855072465, "x2": -1.5942028985507246, "y2": 9.710144927536232, "center_x": -1.7391304347826084, "center_y": 9.565217391304348, "value_uncond": 0.0005051018073111961}, {"x": -1.5942028985507246, "y": 9.420289855072465, "x2": -1.304347826086957, "y2": 9.710144927536232, "center_x": -1.4492753623188408, "center_y": 9.565217391304348, "value_uncond": 0.0006076476106938192}, {"x": -1.304347826086957, "y": 9.420289855072465, "x2": -1.0144927536231894, "y2": 9.710144927536232, "center_x": -1.1594202898550732, "center_y": 9.565217391304348, "value_uncond": 0.0007242199451793476}, {"x": -1.0144927536231876, "y": 9.420289855072465, "x2": -0.72463768115942, "y2": 9.710144927536232, "center_x": -0.8695652173913038, "center_y": 9.565217391304348, "value_uncond": 0.0008551355912321872}, {"x": -0.72463768115942, "y": 9.420289855072465, "x2": -0.43478260869565233, "y2": 9.710144927536232, "center_x": -0.5797101449275361, "center_y": 9.565217391304348, "value_uncond": 0.0010003346172510537}, {"x": -0.43478260869565233, "y": 9.420289855072465, "x2": -0.1449275362318847, "y2": 9.710144927536232, "center_x": -0.2898550724637685, "center_y": 9.565217391304348, "value_uncond": 0.0011593149286837669}, {"x": -0.14492753623188293, "y": 9.420289855072465, "x2": 0.1449275362318847, "y2": 9.710144927536232, "center_x": 8.881784197001252e-16, "center_y": 9.565217391304348, "value_uncond": 0.0013310775944750685}, {"x": 0.1449275362318847, "y": 9.420289855072465, "x2": 0.43478260869565233, "y2": 9.710144927536232, "center_x": 0.2898550724637685, "center_y": 9.565217391304348, "value_uncond": 0.0015140880526015143}, {"x": 0.43478260869565233, "y": 9.420289855072465, "x2": 0.72463768115942, "y2": 9.710144927536232, "center_x": 0.5797101449275361, "center_y": 9.565217391304348, "value_uncond": 0.0017062580226999535}, {"x": 0.72463768115942, "y": 9.420289855072465, "x2": 1.0144927536231876, "y2": 9.710144927536232, "center_x": 0.8695652173913038, "center_y": 9.565217391304348, "value_uncond": 0.0019049522535894748}, {"x": 1.0144927536231894, "y": 9.420289855072465, "x2": 1.304347826086957, "y2": 9.710144927536232, "center_x": 1.1594202898550732, "center_y": 9.565217391304348, "value_uncond": 0.00210702310411812}, {"x": 1.304347826086957, "y": 9.420289855072465, "x2": 1.5942028985507246, "y2": 9.710144927536232, "center_x": 1.4492753623188408, "center_y": 9.565217391304348, "value_uncond": 0.0023088744363809082}, {"x": 1.5942028985507246, "y": 9.420289855072465, "x2": 1.8840579710144922, "y2": 9.710144927536232, "center_x": 1.7391304347826084, "center_y": 9.565217391304348, "value_uncond": 0.002506554473650362}, {"x": 1.884057971014494, "y": 9.420289855072465, "x2": 2.1739130434782616, "y2": 9.710144927536232, "center_x": 2.028985507246378, "center_y": 9.565217391304348, "value_uncond": 0.002695875264406846}, {"x": 2.1739130434782616, "y": 9.420289855072465, "x2": 2.4637681159420293, "y2": 9.710144927536232, "center_x": 2.3188405797101455, "center_y": 9.565217391304348, "value_uncond": 0.0028725543538226468}, {"x": 2.4637681159420293, "y": 9.420289855072465, "x2": 2.753623188405797, "y2": 9.710144927536232, "center_x": 2.608695652173913, "center_y": 9.565217391304348, "value_uncond": 0.003032372369244177}, {"x": 2.753623188405797, "y": 9.420289855072465, "x2": 3.0434782608695645, "y2": 9.710144927536232, "center_x": 2.8985507246376807, "center_y": 9.565217391304348, "value_uncond": 0.003171338653535138}, {"x": 3.0434782608695663, "y": 9.420289855072465, "x2": 3.333333333333334, "y2": 9.710144927536232, "center_x": 3.18840579710145, "center_y": 9.565217391304348, "value_uncond": 0.0032858559906926666}, {"x": 3.333333333333334, "y": 9.420289855072465, "x2": 3.6231884057971016, "y2": 9.710144927536232, "center_x": 3.4782608695652177, "center_y": 9.565217391304348, "value_uncond": 0.00337287498907646}, {"x": 3.6231884057971016, "y": 9.420289855072465, "x2": 3.913043478260869, "y2": 9.710144927536232, "center_x": 3.7681159420289854, "center_y": 9.565217391304348, "value_uncond": 0.003430028896448236}, {"x": 3.913043478260871, "y": 9.420289855072465, "x2": 4.202898550724639, "y2": 9.710144927536232, "center_x": 4.057971014492755, "center_y": 9.565217391304348, "value_uncond": 0.003455740534725601}, {"x": 4.202898550724639, "y": 9.420289855072465, "x2": 4.492753623188406, "y2": 9.710144927536232, "center_x": 4.347826086956522, "center_y": 9.565217391304348, "value_uncond": 0.003449294612401767}, {"x": 4.492753623188406, "y": 9.420289855072465, "x2": 4.782608695652174, "y2": 9.710144927536232, "center_x": 4.63768115942029, "center_y": 9.565217391304348, "value_uncond": 0.0034108707873688354}, {"x": 4.782608695652174, "y": 9.420289855072465, "x2": 5.0724637681159415, "y2": 9.710144927536232, "center_x": 4.927536231884058, "center_y": 9.565217391304348, "value_uncond": 0.0033415353471874256}, {"x": 5.072463768115943, "y": 9.420289855072465, "x2": 5.362318840579711, "y2": 9.710144927536232, "center_x": 5.217391304347827, "center_y": 9.565217391304348, "value_uncond": 0.0032431920445220664}, {"x": 5.362318840579711, "y": 9.420289855072465, "x2": 5.6521739130434785, "y2": 9.710144927536232, "center_x": 5.507246376811595, "center_y": 9.565217391304348, "value_uncond": 0.003118495251592849}, {"x": 5.6521739130434785, "y": 9.420289855072465, "x2": 5.942028985507246, "y2": 9.710144927536232, "center_x": 5.797101449275362, "center_y": 9.565217391304348, "value_uncond": 0.002970730962658476}, {"x": 5.942028985507246, "y": 9.420289855072465, "x2": 6.231884057971014, "y2": 9.710144927536232, "center_x": 6.08695652173913, "center_y": 9.565217391304348, "value_uncond": 0.0028036730875515285}, {"x": 6.2318840579710155, "y": 9.420289855072465, "x2": 6.521739130434783, "y2": 9.710144927536232, "center_x": 6.376811594202899, "center_y": 9.565217391304348, "value_uncond": 0.002621423796794503}, {"x": 6.521739130434785, "y": 9.420289855072465, "x2": 6.8115942028985526, "y2": 9.710144927536232, "center_x": 6.666666666666669, "center_y": 9.565217391304348, "value_uncond": 0.0024282473127226916}, {"x": 6.811594202898551, "y": 9.420289855072465, "x2": 7.101449275362318, "y2": 9.710144927536232, "center_x": 6.956521739130435, "center_y": 9.565217391304348, "value_uncond": 0.002228406469119295}, {"x": 7.10144927536232, "y": 9.420289855072465, "x2": 7.391304347826088, "y2": 9.710144927536232, "center_x": 7.246376811594204, "center_y": 9.565217391304348, "value_uncond": 0.0020260106262554294}, {"x": 7.391304347826086, "y": 9.420289855072465, "x2": 7.681159420289854, "y2": 9.710144927536232, "center_x": 7.53623188405797, "center_y": 9.565217391304348, "value_uncond": 0.0018248822279375043}, {"x": 7.681159420289855, "y": 9.420289855072465, "x2": 7.971014492753623, "y2": 9.710144927536232, "center_x": 7.826086956521739, "center_y": 9.565217391304348, "value_uncond": 0.0016284475649946393}, {"x": 7.971014492753625, "y": 9.420289855072465, "x2": 8.260869565217392, "y2": 9.710144927536232, "center_x": 8.115942028985508, "center_y": 9.565217391304348, "value_uncond": 0.0014396553352556355}, {"x": 8.26086956521739, "y": 9.420289855072465, "x2": 8.550724637681158, "y2": 9.710144927536232, "center_x": 8.405797101449274, "center_y": 9.565217391304348, "value_uncond": 0.0012609245414797678}, {"x": 8.55072463768116, "y": 9.420289855072465, "x2": 8.840579710144928, "y2": 9.710144927536232, "center_x": 8.695652173913043, "center_y": 9.565217391304348, "value_uncond": 0.0010941213143847602}, {"x": 8.84057971014493, "y": 9.420289855072465, "x2": 9.130434782608697, "y2": 9.710144927536232, "center_x": 8.985507246376812, "center_y": 9.565217391304348, "value_uncond": 0.0009405625314996294}, {"x": 9.130434782608695, "y": 9.420289855072465, "x2": 9.420289855072463, "y2": 9.710144927536232, "center_x": 9.275362318840578, "center_y": 9.565217391304348, "value_uncond": 0.0008010427316908976}, {"x": 9.420289855072465, "y": 9.420289855072465, "x2": 9.710144927536232, "y2": 9.710144927536232, "center_x": 9.565217391304348, "center_y": 9.565217391304348, "value_uncond": 0.0006758798652396694}, {"x": 9.710144927536234, "y": 9.420289855072465, "x2": 10.000000000000002, "y2": 9.710144927536232, "center_x": 9.855072463768117, "center_y": 9.565217391304348, "value_uncond": 0.0005649748922351057}, {"x": 10.0, "y": 9.420289855072465, "x2": 10.289855072463768, "y2": 9.710144927536232, "center_x": 10.144927536231883, "center_y": 9.565217391304348, "value_uncond": 0.0004678801297808369}, {"x": -10.0, "y": 9.710144927536234, "x2": -9.710144927536232, "y2": 10.000000000000002, "center_x": -9.855072463768117, "center_y": 9.855072463768117, "value_uncond": 5.3938497688053584e-08}, {"x": -9.710144927536232, "y": 9.710144927536234, "x2": -9.420289855072465, "y2": 10.000000000000002, "center_x": -9.565217391304348, "center_y": 9.855072463768117, "value_uncond": 8.427308861756474e-08}, {"x": -9.420289855072463, "y": 9.710144927536234, "x2": -9.130434782608695, "y2": 10.000000000000002, "center_x": -9.275362318840578, "center_y": 9.855072463768117, "value_uncond": 1.3044420511573268e-07}, {"x": -9.130434782608695, "y": 9.710144927536234, "x2": -8.840579710144928, "y2": 10.000000000000002, "center_x": -8.985507246376812, "center_y": 9.855072463768117, "value_uncond": 2.0003522761257018e-07}, {"x": -8.840579710144928, "y": 9.710144927536234, "x2": -8.55072463768116, "y2": 10.000000000000002, "center_x": -8.695652173913043, "center_y": 9.855072463768117, "value_uncond": 3.039023044647501e-07}, {"x": -8.55072463768116, "y": 9.710144927536234, "x2": -8.260869565217392, "y2": 10.000000000000002, "center_x": -8.405797101449277, "center_y": 9.855072463768117, "value_uncond": 4.5741174985874186e-07}, {"x": -8.26086956521739, "y": 9.710144927536234, "x2": -7.971014492753623, "y2": 10.000000000000002, "center_x": -8.115942028985508, "center_y": 9.855072463768117, "value_uncond": 6.820660832305835e-07}, {"x": -7.971014492753623, "y": 9.710144927536234, "x2": -7.681159420289855, "y2": 10.000000000000002, "center_x": -7.826086956521739, "center_y": 9.855072463768117, "value_uncond": 1.0076075345149136e-06}, {"x": -7.681159420289855, "y": 9.710144927536234, "x2": -7.391304347826088, "y2": 10.000000000000002, "center_x": -7.536231884057972, "center_y": 9.855072463768117, "value_uncond": 1.4746948822507115e-06}, {"x": -7.391304347826087, "y": 9.710144927536234, "x2": -7.101449275362319, "y2": 10.000000000000002, "center_x": -7.246376811594203, "center_y": 9.855072463768117, "value_uncond": 2.138251347460231e-06}, {"x": -7.101449275362318, "y": 9.710144927536234, "x2": -6.811594202898551, "y2": 10.000000000000002, "center_x": -6.956521739130435, "center_y": 9.855072463768117, "value_uncond": 3.071575184386158e-06}, {"x": -6.811594202898551, "y": 9.710144927536234, "x2": -6.521739130434783, "y2": 10.000000000000002, "center_x": -6.666666666666667, "center_y": 9.855072463768117, "value_uncond": 4.371287395038365e-06}, {"x": -6.521739130434782, "y": 9.710144927536234, "x2": -6.231884057971015, "y2": 10.000000000000002, "center_x": -6.3768115942028984, "center_y": 9.855072463768117, "value_uncond": 6.1631591916285065e-06}, {"x": -6.231884057971014, "y": 9.710144927536234, "x2": -5.942028985507246, "y2": 10.000000000000002, "center_x": -6.08695652173913, "center_y": 9.855072463768117, "value_uncond": 8.608812023840343e-06}, {"x": -5.942028985507246, "y": 9.710144927536234, "x2": -5.6521739130434785, "y2": 10.000000000000002, "center_x": -5.797101449275362, "center_y": 9.855072463768117, "value_uncond": 1.191321223800342e-05}, {"x": -5.6521739130434785, "y": 9.710144927536234, "x2": -5.362318840579711, "y2": 10.000000000000002, "center_x": -5.507246376811595, "center_y": 9.855072463768117, "value_uncond": 1.6332788847936102e-05}, {"x": -5.36231884057971, "y": 9.710144927536234, "x2": -5.072463768115942, "y2": 10.000000000000002, "center_x": -5.217391304347826, "center_y": 9.855072463768117, "value_uncond": 2.2183886295154995e-05}, {"x": -5.0724637681159415, "y": 9.710144927536234, "x2": -4.782608695652174, "y2": 10.000000000000002, "center_x": -4.927536231884058, "center_y": 9.855072463768117, "value_uncond": 2.9851126728746904e-05}, {"x": -4.782608695652174, "y": 9.710144927536234, "x2": -4.492753623188406, "y2": 10.000000000000002, "center_x": -4.63768115942029, "center_y": 9.855072463768117, "value_uncond": 3.979510366364091e-05}, {"x": -4.492753623188405, "y": 9.710144927536234, "x2": -4.202898550724638, "y2": 10.000000000000002, "center_x": -4.3478260869565215, "center_y": 9.855072463768117, "value_uncond": 5.25586700243223e-05}, {"x": -4.202898550724638, "y": 9.710144927536234, "x2": -3.91304347826087, "y2": 10.000000000000002, "center_x": -4.057971014492754, "center_y": 9.855072463768117, "value_uncond": 6.877093172144017e-05}, {"x": -3.913043478260869, "y": 9.710144927536234, "x2": -3.6231884057971016, "y2": 10.000000000000002, "center_x": -3.7681159420289854, "center_y": 9.855072463768117, "value_uncond": 8.914793013961349e-05}, {"x": -3.6231884057971016, "y": 9.710144927536234, "x2": -3.333333333333334, "y2": 10.000000000000002, "center_x": -3.4782608695652177, "center_y": 9.855072463768117, "value_uncond": 0.00011448891361810975}, {"x": -3.333333333333333, "y": 9.710144927536234, "x2": -3.0434782608695654, "y2": 10.000000000000002, "center_x": -3.1884057971014492, "center_y": 9.855072463768117, "value_uncond": 0.00014566708156635937}, {"x": -3.0434782608695645, "y": 9.710144927536234, "x2": -2.753623188405797, "y2": 10.000000000000002, "center_x": -2.8985507246376807, "center_y": 9.855072463768117, "value_uncond": 0.00018361375770189993}, {"x": -2.753623188405797, "y": 9.710144927536234, "x2": -2.4637681159420293, "y2": 10.000000000000002, "center_x": -2.608695652173913, "center_y": 9.855072463768117, "value_uncond": 0.00022929513091647812}, {"x": -2.4637681159420284, "y": 9.710144927536234, "x2": -2.1739130434782608, "y2": 10.000000000000002, "center_x": -2.3188405797101446, "center_y": 9.855072463768117, "value_uncond": 0.0002836810077581909}, {"x": -2.1739130434782608, "y": 9.710144927536234, "x2": -1.8840579710144931, "y2": 10.000000000000002, "center_x": -2.028985507246377, "center_y": 9.855072463768117, "value_uncond": 0.00034770545491085266}, {"x": -1.8840579710144922, "y": 9.710144927536234, "x2": -1.5942028985507246, "y2": 10.000000000000002, "center_x": -1.7391304347826084, "center_y": 9.855072463768117, "value_uncond": 0.00042221976689926533}, {"x": -1.5942028985507246, "y": 9.710144927536234, "x2": -1.304347826086957, "y2": 10.000000000000002, "center_x": -1.4492753623188408, "center_y": 9.855072463768117, "value_uncond": 0.0005079388527825467}, {"x": -1.304347826086957, "y": 9.710144927536234, "x2": -1.0144927536231894, "y2": 10.000000000000002, "center_x": -1.1594202898550732, "center_y": 9.855072463768117, "value_uncond": 0.000605382859477733}, {"x": -1.0144927536231876, "y": 9.710144927536234, "x2": -0.72463768115942, "y2": 10.000000000000002, "center_x": -0.8695652173913038, "center_y": 9.855072463768117, "value_uncond": 0.0007148165870150437}, {"x": -0.72463768115942, "y": 9.710144927536234, "x2": -0.43478260869565233, "y2": 10.000000000000002, "center_x": -0.5797101449275361, "center_y": 9.855072463768117, "value_uncond": 0.0008361899379559863}, {"x": -0.43478260869565233, "y": 9.710144927536234, "x2": -0.1449275362318847, "y2": 10.000000000000002, "center_x": -0.2898550724637685, "center_y": 9.855072463768117, "value_uncond": 0.0009690832063289839}, {"x": -0.14492753623188293, "y": 9.710144927536234, "x2": 0.1449275362318847, "y2": 10.000000000000002, "center_x": 8.881784197001252e-16, "center_y": 9.855072463768117, "value_uncond": 0.001112661375447905}, {"x": 0.1449275362318847, "y": 9.710144927536234, "x2": 0.43478260869565233, "y2": 10.000000000000002, "center_x": 0.2898550724637685, "center_y": 9.855072463768117, "value_uncond": 0.001265641689221894}, {"x": 0.43478260869565233, "y": 9.710144927536234, "x2": 0.72463768115942, "y2": 10.000000000000002, "center_x": 0.5797101449275361, "center_y": 9.855072463768117, "value_uncond": 0.0014262785327365166}, {"x": 0.72463768115942, "y": 9.710144927536234, "x2": 1.0144927536231876, "y2": 10.000000000000002, "center_x": 0.8695652173913038, "center_y": 9.855072463768117, "value_uncond": 0.0015923690725763713}, {"x": 1.0144927536231894, "y": 9.710144927536234, "x2": 1.304347826086957, "y2": 10.000000000000002, "center_x": 1.1594202898550732, "center_y": 9.855072463768117, "value_uncond": 0.0017612821633085447}, {"x": 1.304347826086957, "y": 9.710144927536234, "x2": 1.5942028985507246, "y2": 10.000000000000002, "center_x": 1.4492753623188408, "center_y": 9.855072463768117, "value_uncond": 0.0019300117564770617}, {"x": 1.5942028985507246, "y": 9.710144927536234, "x2": 1.8840579710144922, "y2": 10.000000000000002, "center_x": 1.7391304347826084, "center_y": 9.855072463768117, "value_uncond": 0.002095254521496756}, {"x": 1.884057971014494, "y": 9.710144927536234, "x2": 2.1739130434782616, "y2": 10.000000000000002, "center_x": 2.028985507246378, "center_y": 9.855072463768117, "value_uncond": 0.0022535097068581075}, {"x": 2.1739130434782616, "y": 9.710144927536234, "x2": 2.4637681159420293, "y2": 10.000000000000002, "center_x": 2.3188405797101455, "center_y": 9.855072463768117, "value_uncond": 0.0024011975647697976}, {"x": 2.4637681159420293, "y": 9.710144927536234, "x2": 2.753623188405797, "y2": 10.000000000000002, "center_x": 2.608695652173913, "center_y": 9.855072463768117, "value_uncond": 0.0025347910784750617}, {"x": 2.753623188405797, "y": 9.710144927536234, "x2": 3.0434782608695645, "y2": 10.000000000000002, "center_x": 2.8985507246376807, "center_y": 9.855072463768117, "value_uncond": 0.002650954416857331}, {"x": 3.0434782608695663, "y": 9.710144927536234, "x2": 3.333333333333334, "y2": 10.000000000000002, "center_x": 3.18840579710145, "center_y": 9.855072463768117, "value_uncond": 0.0027466806302675847}, {"x": 3.333333333333334, "y": 9.710144927536234, "x2": 3.6231884057971016, "y2": 10.000000000000002, "center_x": 3.4782608695652177, "center_y": 9.855072463768117, "value_uncond": 0.002819420701044596}, {"x": 3.6231884057971016, "y": 9.710144927536234, "x2": 3.913043478260869, "y2": 10.000000000000002, "center_x": 3.7681159420289854, "center_y": 9.855072463768117, "value_uncond": 0.0028671962367853064}, {"x": 3.913043478260871, "y": 9.710144927536234, "x2": 4.202898550724639, "y2": 10.000000000000002, "center_x": 4.057971014492755, "center_y": 9.855072463768117, "value_uncond": 0.0028886888581993076}, {"x": 4.202898550724639, "y": 9.710144927536234, "x2": 4.492753623188406, "y2": 10.000000000000002, "center_x": 4.347826086956522, "center_y": 9.855072463768117, "value_uncond": 0.0028833006458000928}, {"x": 4.492753623188406, "y": 9.710144927536234, "x2": 4.782608695652174, "y2": 10.000000000000002, "center_x": 4.63768115942029, "center_y": 9.855072463768117, "value_uncond": 0.002851181777457206}, {"x": 4.782608695652174, "y": 9.710144927536234, "x2": 5.0724637681159415, "y2": 10.000000000000002, "center_x": 4.927536231884058, "center_y": 9.855072463768117, "value_uncond": 0.0027932235738485287}, {"x": 5.072463768115943, "y": 9.710144927536234, "x2": 5.362318840579711, "y2": 10.000000000000002, "center_x": 5.217391304347827, "center_y": 9.855072463768117, "value_uncond": 0.0027110174012978747}, {"x": 5.362318840579711, "y": 9.710144927536234, "x2": 5.6521739130434785, "y2": 10.000000000000002, "center_x": 5.507246376811595, "center_y": 9.855072463768117, "value_uncond": 0.002606782076692864}, {"x": 5.6521739130434785, "y": 9.710144927536234, "x2": 5.942028985507246, "y2": 10.000000000000002, "center_x": 5.797101449275362, "center_y": 9.855072463768117, "value_uncond": 0.0024832643962434085}, {"x": 5.942028985507246, "y": 9.710144927536234, "x2": 6.231884057971014, "y2": 10.000000000000002, "center_x": 6.08695652173913, "center_y": 9.855072463768117, "value_uncond": 0.002343619009778012}, {"x": 6.2318840579710155, "y": 9.710144927536234, "x2": 6.521739130434783, "y2": 10.000000000000002, "center_x": 6.376811594202899, "center_y": 9.855072463768117, "value_uncond": 0.0021912749635933215}, {"x": 6.521739130434785, "y": 9.710144927536234, "x2": 6.8115942028985526, "y2": 10.000000000000002, "center_x": 6.666666666666669, "center_y": 9.855072463768117, "value_uncond": 0.002029796764753759}, {"x": 6.811594202898551, "y": 9.710144927536234, "x2": 7.101449275362318, "y2": 10.000000000000002, "center_x": 6.956521739130435, "center_y": 9.855072463768117, "value_uncond": 0.0018627477596188527}, {"x": 7.10144927536232, "y": 9.710144927536234, "x2": 7.391304347826088, "y2": 10.000000000000002, "center_x": 7.246376811594204, "center_y": 9.855072463768117, "value_uncond": 0.0016935630044696544}, {"x": 7.391304347826086, "y": 9.710144927536234, "x2": 7.681159420289854, "y2": 10.000000000000002, "center_x": 7.53623188405797, "center_y": 9.855072463768117, "value_uncond": 0.001525437719179798}, {"x": 7.681159420289855, "y": 9.710144927536234, "x2": 7.971014492753623, "y2": 10.000000000000002, "center_x": 7.826086956521739, "center_y": 9.855072463768117, "value_uncond": 0.001361235975297355}, {"x": 7.971014492753625, "y": 9.710144927536234, "x2": 8.260869565217392, "y2": 10.000000000000002, "center_x": 8.115942028985508, "center_y": 9.855072463768117, "value_uncond": 0.0012034226194966226}, {"x": 8.26086956521739, "y": 9.710144927536234, "x2": 8.550724637681158, "y2": 10.000000000000002, "center_x": 8.405797101449274, "center_y": 9.855072463768117, "value_uncond": 0.0010540197209255755}, {"x": 8.55072463768116, "y": 9.710144927536234, "x2": 8.840579710144928, "y2": 10.000000000000002, "center_x": 8.695652173913043, "center_y": 9.855072463768117, "value_uncond": 0.000914587197337893}, {"x": 8.84057971014493, "y": 9.710144927536234, "x2": 9.130434782608697, "y2": 10.000000000000002, "center_x": 8.985507246376812, "center_y": 9.855072463768117, "value_uncond": 0.0007862258401290695}, {"x": 9.130434782608695, "y": 9.710144927536234, "x2": 9.420289855072463, "y2": 10.000000000000002, "center_x": 9.275362318840578, "center_y": 9.855072463768117, "value_uncond": 0.0006695998124641526}, {"x": 9.420289855072465, "y": 9.710144927536234, "x2": 9.710144927536232, "y2": 10.000000000000002, "center_x": 9.565217391304348, "center_y": 9.855072463768117, "value_uncond": 0.0005649748922351057}, {"x": 9.710144927536234, "y": 9.710144927536234, "x2": 10.000000000000002, "y2": 10.000000000000002, "center_x": 9.855072463768117, "center_y": 9.855072463768117, "value_uncond": 0.0004722682909674797}, {"x": 10.0, "y": 9.710144927536234, "x2": 10.289855072463768, "y2": 10.000000000000002, "center_x": 10.144927536231883, "center_y": 9.855072463768117, "value_uncond": 0.00039110578594931143}, {"x": -10.0, "y": 10.0, "x2": -9.710144927536232, "y2": 10.289855072463768, "center_x": -9.855072463768117, "center_y": 10.144927536231883, "value_uncond": 4.466880147298297e-08}, {"x": -9.710144927536232, "y": 10.0, "x2": -9.420289855072465, "y2": 10.289855072463768, "center_x": -9.565217391304348, "center_y": 10.144927536231883, "value_uncond": 6.979018746024219e-08}, {"x": -9.420289855072463, "y": 10.0, "x2": -9.130434782608695, "y2": 10.289855072463768, "center_x": -9.275362318840578, "center_y": 10.144927536231883, "value_uncond": 1.080264848182129e-07}, {"x": -9.130434782608695, "y": 10.0, "x2": -8.840579710144928, "y2": 10.289855072463768, "center_x": -8.985507246376812, "center_y": 10.144927536231883, "value_uncond": 1.6565781867906704e-07}, {"x": -8.840579710144928, "y": 10.0, "x2": -8.55072463768116, "y2": 10.289855072463768, "center_x": -8.695652173913043, "center_y": 10.144927536231883, "value_uncond": 2.5167463476322513e-07}, {"x": -8.55072463768116, "y": 10.0, "x2": -8.260869565217392, "y2": 10.289855072463768, "center_x": -8.405797101449277, "center_y": 10.144927536231883, "value_uncond": 3.7880244207052163e-07}, {"x": -8.26086956521739, "y": 10.0, "x2": -7.971014492753623, "y2": 10.289855072463768, "center_x": -8.115942028985508, "center_y": 10.144927536231883, "value_uncond": 5.648484064106578e-07}, {"x": -7.971014492753623, "y": 10.0, "x2": -7.681159420289855, "y2": 10.289855072463768, "center_x": -7.826086956521739, "center_y": 10.144927536231883, "value_uncond": 8.344433540257313e-07}, {"x": -7.681159420289855, "y": 10.0, "x2": -7.391304347826088, "y2": 10.289855072463768, "center_x": -7.536231884057972, "center_y": 10.144927536231883, "value_uncond": 1.221258576934201e-06}, {"x": -7.391304347826087, "y": 10.0, "x2": -7.101449275362319, "y2": 10.289855072463768, "center_x": -7.246376811594203, "center_y": 10.144927536231883, "value_uncond": 1.770778368567611e-06}, {"x": -7.101449275362318, "y": 10.0, "x2": -6.811594202898551, "y2": 10.289855072463768, "center_x": -6.956521739130435, "center_y": 10.144927536231883, "value_uncond": 2.5437041816438e-06}, {"x": -6.811594202898551, "y": 10.0, "x2": -6.521739130434783, "y2": 10.289855072463768, "center_x": -6.666666666666667, "center_y": 10.144927536231883, "value_uncond": 3.6200520444522546e-06}, {"x": -6.521739130434782, "y": 10.0, "x2": -6.231884057971015, "y2": 10.289855072463768, "center_x": -6.3768115942028984, "center_y": 10.144927536231883, "value_uncond": 5.103978534393217e-06}, {"x": -6.231884057971014, "y": 10.0, "x2": -5.942028985507246, "y2": 10.289855072463768, "center_x": -6.08695652173913, "center_y": 10.144927536231883, "value_uncond": 7.1293293601746525e-06}, {"x": -5.942028985507246, "y": 10.0, "x2": -5.6521739130434785, "y2": 10.289855072463768, "center_x": -5.797101449275362, "center_y": 10.144927536231883, "value_uncond": 9.865846013036942e-06}, {"x": -5.6521739130434785, "y": 10.0, "x2": -5.362318840579711, "y2": 10.289855072463768, "center_x": -5.507246376811595, "center_y": 10.144927536231883, "value_uncond": 1.3525888443685628e-05}, {"x": -5.36231884057971, "y": 10.0, "x2": -5.072463768115942, "y2": 10.289855072463768, "center_x": -5.217391304347826, "center_y": 10.144927536231883, "value_uncond": 1.837143515839854e-05}, {"x": -5.0724637681159415, "y": 10.0, "x2": -4.782608695652174, "y2": 10.289855072463768, "center_x": -4.927536231884058, "center_y": 10.144927536231883, "value_uncond": 2.4721008384454473e-05}, {"x": -4.782608695652174, "y": 10.0, "x2": -4.492753623188406, "y2": 10.289855072463768, "center_x": -4.63768115942029, "center_y": 10.144927536231883, "value_uncond": 3.29560455211132e-05}, {"x": -4.492753623188405, "y": 10.0, "x2": -4.202898550724638, "y2": 10.289855072463768, "center_x": -4.3478260869565215, "center_y": 10.144927536231883, "value_uncond": 4.3526106540421027e-05}, {"x": -4.202898550724638, "y": 10.0, "x2": -3.91304347826087, "y2": 10.289855072463768, "center_x": -4.057971014492754, "center_y": 10.144927536231883, "value_uncond": 5.695218124062533e-05}, {"x": -3.913043478260869, "y": 10.0, "x2": -3.6231884057971016, "y2": 10.289855072463768, "center_x": -3.7681159420289854, "center_y": 10.144927536231883, "value_uncond": 7.382725444382787e-05}, {"x": -3.6231884057971016, "y": 10.0, "x2": -3.333333333333334, "y2": 10.289855072463768, "center_x": -3.4782608695652177, "center_y": 10.144927536231883, "value_uncond": 9.48132182479661e-05}, {"x": -3.333333333333333, "y": 10.0, "x2": -3.0434782608695654, "y2": 10.289855072463768, "center_x": -3.1884057971014492, "center_y": 10.144927536231883, "value_uncond": 0.00012063320682877794}, {"x": -3.0434782608695645, "y": 10.0, "x2": -2.753623188405797, "y2": 10.289855072463768, "center_x": -2.8985507246376807, "center_y": 10.144927536231883, "value_uncond": 0.00015205848961401678}, {"x": -2.753623188405797, "y": 10.0, "x2": -2.4637681159420293, "y2": 10.289855072463768, "center_x": -2.608695652173913, "center_y": 10.144927536231883, "value_uncond": 0.00018988920938927623}, {"x": -2.4637681159420284, "y": 10.0, "x2": -2.1739130434782608, "y2": 10.289855072463768, "center_x": -2.3188405797101446, "center_y": 10.144927536231883, "value_uncond": 0.00023492850487774955}, {"x": -2.1739130434782608, "y": 10.0, "x2": -1.8840579710144931, "y2": 10.289855072463768, "center_x": -2.028985507246377, "center_y": 10.144927536231883, "value_uncond": 0.00028794991707613093}, {"x": -1.8840579710144922, "y": 10.0, "x2": -1.5942028985507246, "y2": 10.289855072463768, "center_x": -1.7391304347826084, "center_y": 10.144927536231883, "value_uncond": 0.00034965843977834024}, {"x": -1.5942028985507246, "y": 10.0, "x2": -1.304347826086957, "y2": 10.289855072463768, "center_x": -1.4492753623188408, "center_y": 10.144927536231883, "value_uncond": 0.00042064612007878583}, {"x": -1.304347826086957, "y": 10.0, "x2": -1.0144927536231894, "y2": 10.289855072463768, "center_x": -1.1594202898550732, "center_y": 10.144927536231883, "value_uncond": 0.0005013437141232592}, {"x": -1.0144927536231876, "y": 10.0, "x2": -0.72463768115942, "y2": 10.289855072463768, "center_x": -0.8695652173913038, "center_y": 10.144927536231883, "value_uncond": 0.0005919705142629914}, {"x": -0.72463768115942, "y": 10.0, "x2": -0.43478260869565233, "y2": 10.289855072463768, "center_x": -0.5797101449275361, "center_y": 10.144927536231883, "value_uncond": 0.0006924850326436628}, {"x": -0.43478260869565233, "y": 10.0, "x2": -0.1449275362318847, "y2": 10.289855072463768, "center_x": -0.2898550724637685, "center_y": 10.144927536231883, "value_uncond": 0.0008025396926080617}, {"x": -0.14492753623188293, "y": 10.0, "x2": 0.1449275362318847, "y2": 10.289855072463768, "center_x": 8.881784197001252e-16, "center_y": 10.144927536231883, "value_uncond": 0.0009214429807440965}, {"x": 0.1449275362318847, "y": 10.0, "x2": 0.43478260869565233, "y2": 10.289855072463768, "center_x": 0.2898550724637685, "center_y": 10.144927536231883, "value_uncond": 0.001048132591284704}, {"x": 0.43478260869565233, "y": 10.0, "x2": 0.72463768115942, "y2": 10.289855072463768, "center_x": 0.5797101449275361, "center_y": 10.144927536231883, "value_uncond": 0.0011811629050635496}, {"x": 0.72463768115942, "y": 10.0, "x2": 1.0144927536231876, "y2": 10.289855072463768, "center_x": 0.8695652173913038, "center_y": 10.144927536231883, "value_uncond": 0.0013187096605099884}, {"x": 1.0144927536231894, "y": 10.0, "x2": 1.304347826086957, "y2": 10.289855072463768, "center_x": 1.1594202898550732, "center_y": 10.144927536231883, "value_uncond": 0.0014585938923575234}, {"x": 1.304347826086957, "y": 10.0, "x2": 1.5942028985507246, "y2": 10.289855072463768, "center_x": 1.4492753623188408, "center_y": 10.144927536231883, "value_uncond": 0.001598326161940756}, {"x": 1.5942028985507246, "y": 10.0, "x2": 1.8840579710144922, "y2": 10.289855072463768, "center_x": 1.7391304347826084, "center_y": 10.144927536231883, "value_uncond": 0.0017351708384128314}, {"x": 1.884057971014494, "y": 10.0, "x2": 2.1739130434782616, "y2": 10.289855072463768, "center_x": 2.028985507246378, "center_y": 10.144927536231883, "value_uncond": 0.001866228798125752}, {"x": 2.1739130434782616, "y": 10.0, "x2": 2.4637681159420293, "y2": 10.289855072463768, "center_x": 2.3188405797101455, "center_y": 10.144927536231883, "value_uncond": 0.001988535497195876}, {"x": 2.4637681159420293, "y": 10.0, "x2": 2.753623188405797, "y2": 10.289855072463768, "center_x": 2.608695652173913, "center_y": 10.144927536231883, "value_uncond": 0.002099170060588627}, {"x": 2.753623188405797, "y": 10.0, "x2": 3.0434782608695645, "y2": 10.289855072463768, "center_x": 2.8985507246376807, "center_y": 10.144927536231883, "value_uncond": 0.0021953699423622308}, {"x": 3.0434782608695663, "y": 10.0, "x2": 3.333333333333334, "y2": 10.289855072463768, "center_x": 3.18840579710145, "center_y": 10.144927536231883, "value_uncond": 0.0022746449575343722}, {"x": 3.333333333333334, "y": 10.0, "x2": 3.6231884057971016, "y2": 10.289855072463768, "center_x": 3.4782608695652177, "center_y": 10.144927536231883, "value_uncond": 0.0023348841543963327}, {"x": 3.6231884057971016, "y": 10.0, "x2": 3.913043478260869, "y2": 10.289855072463768, "center_x": 3.7681159420289854, "center_y": 10.144927536231883, "value_uncond": 0.002374449140681441}, {"x": 3.913043478260871, "y": 10.0, "x2": 4.202898550724639, "y2": 10.289855072463768, "center_x": 4.057971014492755, "center_y": 10.144927536231883, "value_uncond": 0.002392248109511243}, {"x": 4.202898550724639, "y": 10.0, "x2": 4.492753623188406, "y2": 10.289855072463768, "center_x": 4.347826086956522, "center_y": 10.144927536231883, "value_uncond": 0.002387785897913383}, {"x": 4.492753623188406, "y": 10.0, "x2": 4.782608695652174, "y2": 10.289855072463768, "center_x": 4.63768115942029, "center_y": 10.144927536231883, "value_uncond": 0.0023611868746731966}, {"x": 4.782608695652174, "y": 10.0, "x2": 5.0724637681159415, "y2": 10.289855072463768, "center_x": 4.927536231884058, "center_y": 10.144927536231883, "value_uncond": 0.002313189180972133}, {"x": 5.072463768115943, "y": 10.0, "x2": 5.362318840579711, "y2": 10.289855072463768, "center_x": 5.217391304347827, "center_y": 10.144927536231883, "value_uncond": 0.002245110696051106}, {"x": 5.362318840579711, "y": 10.0, "x2": 5.6521739130434785, "y2": 10.289855072463768, "center_x": 5.507246376811595, "center_y": 10.144927536231883, "value_uncond": 0.0021587889180850065}, {"x": 5.6521739130434785, "y": 10.0, "x2": 5.942028985507246, "y2": 10.289855072463768, "center_x": 5.797101449275362, "center_y": 10.144927536231883, "value_uncond": 0.0020564985877478664}, {"x": 5.942028985507246, "y": 10.0, "x2": 6.231884057971014, "y2": 10.289855072463768, "center_x": 6.08695652173913, "center_y": 10.144927536231883, "value_uncond": 0.0019408522069250963}, {"x": 6.2318840579710155, "y": 10.0, "x2": 6.521739130434783, "y2": 10.289855072463768, "center_x": 6.376811594202899, "center_y": 10.144927536231883, "value_uncond": 0.0018146895170783953}, {"x": 6.521739130434785, "y": 10.0, "x2": 6.8115942028985526, "y2": 10.289855072463768, "center_x": 6.666666666666669, "center_y": 10.144927536231883, "value_uncond": 0.0016809624405866655}, {"x": 6.811594202898551, "y": 10.0, "x2": 7.101449275362318, "y2": 10.289855072463768, "center_x": 6.956521739130435, "center_y": 10.144927536231883, "value_uncond": 0.0015426219385989153}, {"x": 7.10144927536232, "y": 10.0, "x2": 7.391304347826088, "y2": 10.289855072463768, "center_x": 7.246376811594204, "center_y": 10.144927536231883, "value_uncond": 0.0014025127297047169}, {"x": 7.391304347826086, "y": 10.0, "x2": 7.681159420289854, "y2": 10.289855072463768, "center_x": 7.53623188405797, "center_y": 10.144927536231883, "value_uncond": 0.001263280913597526}, {"x": 7.681159420289855, "y": 10.0, "x2": 7.971014492753623, "y2": 10.289855072463768, "center_x": 7.826086956521739, "center_y": 10.144927536231883, "value_uncond": 0.001127298351728233}, {"x": 7.971014492753625, "y": 10.0, "x2": 8.260869565217392, "y2": 10.289855072463768, "center_x": 8.115942028985508, "center_y": 10.144927536231883, "value_uncond": 0.0009966062901729214}, {"x": 8.26086956521739, "y": 10.0, "x2": 8.550724637681158, "y2": 10.289855072463768, "center_x": 8.405797101449274, "center_y": 10.144927536231883, "value_uncond": 0.0008728792917986891}, {"x": 8.55072463768116, "y": 10.0, "x2": 8.840579710144928, "y2": 10.289855072463768, "center_x": 8.695652173913043, "center_y": 10.144927536231883, "value_uncond": 0.0007574091919261327}, {"x": 8.84057971014493, "y": 10.0, "x2": 9.130434782608697, "y2": 10.289855072463768, "center_x": 8.985507246376812, "center_y": 10.144927536231883, "value_uncond": 0.000651107603492506}, {"x": 9.130434782608695, "y": 10.0, "x2": 9.420289855072463, "y2": 10.289855072463768, "center_x": 9.275362318840578, "center_y": 10.144927536231883, "value_uncond": 0.0005545245487238043}, {"x": 9.420289855072465, "y": 10.0, "x2": 9.710144927536232, "y2": 10.289855072463768, "center_x": 9.565217391304348, "center_y": 10.144927536231883, "value_uncond": 0.0004678801297808369}, {"x": 9.710144927536234, "y": 10.0, "x2": 10.000000000000002, "y2": 10.289855072463768, "center_x": 9.855072463768117, "center_y": 10.144927536231883, "value_uncond": 0.00039110578594931143}, {"x": 10.0, "y": 10.0, "x2": 10.289855072463768, "y2": 10.289855072463768, "center_x": 10.144927536231883, "center_y": 10.144927536231883, "value_uncond": 0.00032389160722535483}], "data-8c80cb8577b8cc407d46734c5f0d66d3": [{"theta": 0.0, "x": 1.0, "y": 0.0}, {"theta": 0.06346651825433926, "x": 0.9979866764718844, "y": 0.0634239196565645}, {"theta": 0.12693303650867852, "x": 0.9919548128307953, "y": 0.12659245357374926}, {"theta": 0.1903995547630178, "x": 0.9819286972627067, "y": 0.18925124436041021}, {"theta": 0.25386607301735703, "x": 0.9679487013963562, "y": 0.2511479871810792}, {"theta": 0.3173325912716963, "x": 0.9500711177409454, "y": 0.31203344569848707}, {"theta": 0.3807991095260356, "x": 0.9283679330160726, "y": 0.3716624556603276}, {"theta": 0.4442656277803748, "x": 0.9029265382866212, "y": 0.42979491208917164}, {"theta": 0.5077321460347141, "x": 0.8738493770697849, "y": 0.4861967361004687}, {"theta": 0.5711986642890533, "x": 0.8412535328311812, "y": 0.5406408174555976}, {"theta": 0.6346651825433925, "x": 0.8052702575310586, "y": 0.5929079290546404}, {"theta": 0.6981317007977318, "x": 0.766044443118978, "y": 0.6427876096865393}, {"theta": 0.7615982190520711, "x": 0.7237340381050702, "y": 0.690079011482112}, {"theta": 0.8250647373064104, "x": 0.6785094115571322, "y": 0.7345917086575333}, {"theta": 0.8885312555607496, "x": 0.6305526670845225, "y": 0.7761464642917568}, {"theta": 0.9519977738150889, "x": 0.5800569095711982, "y": 0.8145759520503357}, {"theta": 1.0154642920694281, "x": 0.5272254676105024, "y": 0.8497254299495144}, {"theta": 1.0789308103237674, "x": 0.4722710747726827, "y": 0.8814533634475821}, {"theta": 1.1423973285781066, "x": 0.41541501300188644, "y": 0.9096319953545183}, {"theta": 1.2058638468324459, "x": 0.3568862215918719, "y": 0.9341478602651067}, {"theta": 1.269330365086785, "x": 0.2969203753282749, "y": 0.9549022414440739}, {"theta": 1.3327968833411243, "x": 0.23575893550942728, "y": 0.9718115683235417}, {"theta": 1.3962634015954636, "x": 0.17364817766693041, "y": 0.984807753012208}, {"theta": 1.4597299198498028, "x": 0.1108381999010111, "y": 0.9938384644612541}, {"theta": 1.5231964381041423, "x": 0.04758191582374218, "y": 0.998867339183008}, {"theta": 1.5866629563584815, "x": -0.01586596383480803, "y": 0.9998741276738751}, {"theta": 1.6501294746128208, "x": -0.07924995685678854, "y": 0.9968547759519424}, {"theta": 1.71359599286716, "x": -0.14231483827328523, "y": 0.9898214418809327}, {"theta": 1.7770625111214993, "x": -0.20480666806519074, "y": 0.9788024462147787}, {"theta": 1.8405290293758385, "x": -0.26647381369003503, "y": 0.963842158559942}, {"theta": 1.9039955476301778, "x": -0.32706796331742166, "y": 0.9450008187146685}, {"theta": 1.967462065884517, "x": -0.3863451256931287, "y": 0.9223542941045814}, {"theta": 2.0309285841388562, "x": -0.4440666126057741, "y": 0.8959937742913359}, {"theta": 2.0943951023931957, "x": -0.5000000000000002, "y": 0.8660254037844386}, {"theta": 2.1578616206475347, "x": -0.5539200638661103, "y": 0.8325698546347714}, {"theta": 2.221328138901874, "x": -0.6056096871376668, "y": 0.795761840530832}, {"theta": 2.284794657156213, "x": -0.6548607339452851, "y": 0.7557495743542583}, {"theta": 2.3482611754105527, "x": -0.7014748877063214, "y": 0.7126941713788628}, {"theta": 2.4117276936648917, "x": -0.7452644496757547, "y": 0.6667690005162916}, {"theta": 2.475194211919231, "x": -0.7860530947427875, "y": 0.6181589862206052}, {"theta": 2.53866073017357, "x": -0.8236765814298327, "y": 0.5670598638627709}, {"theta": 2.6021272484279097, "x": -0.8579834132349771, "y": 0.5136773915734063}, {"theta": 2.6655937666822487, "x": -0.8888354486549234, "y": 0.4582265217274105}, {"theta": 2.729060284936588, "x": -0.9161084574320696, "y": 0.4009305354066136}, {"theta": 2.792526803190927, "x": -0.9396926207859083, "y": 0.3420201433256689}, {"theta": 2.8559933214452666, "x": -0.9594929736144974, "y": 0.28173255684142967}, {"theta": 2.9194598396996057, "x": -0.975429786885407, "y": 0.2203105327865408}, {"theta": 2.982926357953945, "x": -0.9874388886763943, "y": 0.1580013959733499}, {"theta": 3.0463928762082846, "x": -0.9954719225730846, "y": 0.09505604330418244}, {"theta": 3.1098593944626236, "x": -0.9994965423831851, "y": 0.031727933498067656}, {"theta": 3.173325912716963, "x": -0.9994965423831851, "y": -0.03172793349806786}, {"theta": 3.236792430971302, "x": -0.9954719225730846, "y": -0.09505604330418263}, {"theta": 3.3002589492256416, "x": -0.9874388886763943, "y": -0.15800139597335008}, {"theta": 3.3637254674799806, "x": -0.975429786885407, "y": -0.22031053278654056}, {"theta": 3.42719198573432, "x": -0.9594929736144974, "y": -0.28173255684142984}, {"theta": 3.490658503988659, "x": -0.9396926207859084, "y": -0.34202014332566866}, {"theta": 3.5541250222429985, "x": -0.9161084574320696, "y": -0.4009305354066138}, {"theta": 3.6175915404973376, "x": -0.8888354486549235, "y": -0.4582265217274103}, {"theta": 3.681058058751677, "x": -0.857983413234977, "y": -0.5136773915734064}, {"theta": 3.744524577006016, "x": -0.8236765814298328, "y": -0.5670598638627706}, {"theta": 3.8079910952603555, "x": -0.7860530947427874, "y": -0.6181589862206053}, {"theta": 3.8714576135146945, "x": -0.7452644496757548, "y": -0.6667690005162915}, {"theta": 3.934924131769034, "x": -0.7014748877063213, "y": -0.7126941713788629}, {"theta": 3.998390650023373, "x": -0.6548607339452852, "y": -0.7557495743542582}, {"theta": 4.0618571682777125, "x": -0.6056096871376666, "y": -0.7957618405308321}, {"theta": 4.1253236865320515, "x": -0.5539200638661105, "y": -0.8325698546347713}, {"theta": 4.188790204786391, "x": -0.4999999999999996, "y": -0.8660254037844388}, {"theta": 4.25225672304073, "x": -0.44406661260577396, "y": -0.895993774291336}, {"theta": 4.3157232412950695, "x": -0.3863451256931287, "y": -0.9223542941045814}, {"theta": 4.3791897595494085, "x": -0.3270679633174219, "y": -0.9450008187146683}, {"theta": 4.442656277803748, "x": -0.26647381369003464, "y": -0.9638421585599422}, {"theta": 4.506122796058087, "x": -0.20480666806519054, "y": -0.9788024462147787}, {"theta": 4.569589314312426, "x": -0.14231483827328523, "y": -0.9898214418809327}, {"theta": 4.6330558325667655, "x": -0.07924995685678879, "y": -0.9968547759519423}, {"theta": 4.696522350821105, "x": -0.01586596383480761, "y": -0.9998741276738751}, {"theta": 4.759988869075444, "x": 0.04758191582374238, "y": -0.998867339183008}, {"theta": 4.823455387329783, "x": 0.11083819990101086, "y": -0.9938384644612541}, {"theta": 4.886921905584122, "x": 0.17364817766692997, "y": -0.9848077530122081}, {"theta": 4.950388423838462, "x": 0.23575893550942748, "y": -0.9718115683235417}, {"theta": 5.013854942092801, "x": 0.29692037532827487, "y": -0.9549022414440739}, {"theta": 5.07732146034714, "x": 0.35688622159187167, "y": -0.9341478602651068}, {"theta": 5.14078797860148, "x": 0.4154150130018868, "y": -0.9096319953545182}, {"theta": 5.204254496855819, "x": 0.4722710747726829, "y": -0.881453363447582}, {"theta": 5.267721015110158, "x": 0.5272254676105024, "y": -0.8497254299495144}, {"theta": 5.331187533364497, "x": 0.5800569095711979, "y": -0.8145759520503358}, {"theta": 5.394654051618837, "x": 0.6305526670845228, "y": -0.7761464642917566}, {"theta": 5.458120569873176, "x": 0.6785094115571323, "y": -0.7345917086575332}, {"theta": 5.521587088127515, "x": 0.7237340381050701, "y": -0.690079011482112}, {"theta": 5.585053606381854, "x": 0.7660444431189778, "y": -0.6427876096865396}, {"theta": 5.648520124636194, "x": 0.8052702575310589, "y": -0.5929079290546402}, {"theta": 5.711986642890533, "x": 0.8412535328311812, "y": -0.5406408174555976}, {"theta": 5.775453161144872, "x": 0.8738493770697849, "y": -0.4861967361004688}, {"theta": 5.838919679399211, "x": 0.9029265382866211, "y": -0.4297949120891719}, {"theta": 5.902386197653551, "x": 0.9283679330160727, "y": -0.37166245566032724}, {"theta": 5.96585271590789, "x": 0.9500711177409454, "y": -0.31203344569848707}, {"theta": 6.029319234162229, "x": 0.9679487013963562, "y": -0.2511479871810794}, {"theta": 6.092785752416569, "x": 0.9819286972627068, "y": -0.18925124436040974}, {"theta": 6.156252270670908, "x": 0.9919548128307953, "y": -0.12659245357374904}, {"theta": 6.219718788925247, "x": 0.9979866764718844, "y": -0.06342391965656452}, {"theta": 6.283185307179586, "x": 1.0, "y": -2.4492935982947064e-16}]}}, {"mode": "vega-lite"});
</script>
</div>
</div>
</div>


</section>

<div id="remark42">

</div> ]]></description>
  <category>machine learning</category>
  <guid>https://vsheg.com/posts/2023-10-31-conditional-probability/</guid>
  <pubDate>Tue, 31 Oct 2023 00:00:00 GMT</pubDate>
</item>
<item>
  <title>Оценка структурной схожести молекул</title>
  <link>https://vsheg.com/posts/2021-09-00-molecular-fingerprints/</link>
  <description><![CDATA[ 




<p>Важными задачами хемоинформатики являются <em>а</em>) оценка схожести химических структур, <em>б</em>) поиск наиболее похожих и <em>в</em>) наиболее непохожих молекул в наборе, однако, не существует строго математического определения схожести химических структур или, точнее, оно разнится от задачи к задаче.</p>
<section id="поиск-по-подграфу" class="level2" data-number="1">
<h2 data-number="1" class="anchored" data-anchor-id="поиск-по-подграфу"><span class="header-section-number">1</span> Поиск по подграфу</h2>
<p>Самый прямой способ оценить сходство двух молекул, посмотреть на их молекулярные графы и найти в них наибольшую общую подструктуру. На практике, однако, две молекулы могут иметь несколько наибольших общих подграфов (например, метан и этан). Поиск такой подструктуры весьма вычислительно сложная задача и фактически решается перебором; зачастую даже для несложных с химической точки зрения молекул вычисление наибольшего общего подграфа может занимать десятки секунд, что делает этот метод неприменимым для работы с базами миллионов молекул. Для небольшого набора, тем не менее, наибольшие общие подграфы активно применяются для оценки схожести.</p>
<p>Общий подграф может не являться химически валидной структурой: при поиске могут игнорироваться типы связей и атомов, учитываться наличие заряда или даже изотопный состав. Конкретное выражение для схожести конструируется для каждой задачи отдельно. Схожесть между двумя молекулами можно определить через количество общих атомов в подграфе, нормированное на размер самих молекул.</p>
</section>
<section id="молекулярные-отпечатки" class="level2 page-columns page-full" data-number="2">
<h2 data-number="2" class="anchored" data-anchor-id="молекулярные-отпечатки"><span class="header-section-number">2</span> Молекулярные отпечатки</h2>
<p>Для поиска похожих структур необязательно производить исчерпывающий поиск попарных подграфов, вместо этого достаточно сконструировать функцию, отображающую молекулярный граф в более простую для работы структуру — вектор. Потребовав от такого отображения свойство непрерывности (химически близкие молекулы отображаются в близкие векторы), автоматически будет выполнено и свойство компактности (некоторая область векторного пространства будет соответствовать химически отнотипным структурам), полученные векторы называют <em>молекулярными отпечатками</em><sup>1</sup>.</p>
<div class="no-row-height column-margin column-container"><div id="fn1"><p><sup>1</sup>&nbsp;англ. <em>molecular fingerprints</em></p></div><div id="fn2"><p><sup>2</sup>&nbsp;англ. <em>hash</em> — мешанина; урезанное представление данных в виде короткой последовательности битов (как правило фиксированной длины), используется, например, при быстром сравнении двух текстов: тексты совпадают тогда и только тогда, когда совпадают их хеши</p></div></div><p>Одному молекулярному графу строго соответствует один отпечаток, однако, не требуется выполнение взаимно-однозначного соответствия, т.е. одному отпечатку потенциально могут соответствовать много структур, что роднит молекулярные отпечатки с хешем<sup>2</sup>. На практике, однако, встретить две молекулы с одним молекулярным отпечатком удаётся нечасто. Важными преимуществами молекулярных отпечатков является <em>а</em>) высокая скорость их вычисления по сравнению с операциями над графами и <em>б</em>) простота поиска похожих химических структур.</p>
<p>Многие часто используемые алгоритмы вычисления молекулярных отпечатков были разработаны в составе прикладного ПО. Конкретная реализация алгоритма может охраняться коммерческой тайной или патентами, поэтому существует большое число их реализаций. Приведём лишь некоторые из них.</p>
<section id="структурные-отпечатки-ключи" class="level3 page-columns page-full">
<h3 class="anchored" data-anchor-id="структурные-отпечатки-ключи">Структурные отпечатки (ключи)</h3>
<p><strong>Структурные ключи MACCS</strong><sup>3</sup> <span class="citation" data-cites="Durant2002">[1]</span> являются одними из самых часто используемых методов построения отпечатков. MACCS представляют набор из 166 (960 в расширенном варианте) молекулярных фрагментов, на наличие которых тестируется молекулярный граф, если в молекуле найден фрагмент с номером <img src="https://latex.codecogs.com/png.latex?k">, то в итоговом векторе-отпечатке компонента <img src="https://latex.codecogs.com/png.latex?x_k"> приравнивается <img src="https://latex.codecogs.com/png.latex?1">, иначе <img src="https://latex.codecogs.com/png.latex?0">. Например, для молекулы этана <img src="https://latex.codecogs.com/png.latex?%5Cce%7BCH3CH3%7D"> отпечаток MACCS будет вектором из 166 компонент, в которых все компоненты будут нулями, кроме 160ой (наличие метильной группы <img src="https://latex.codecogs.com/png.latex?%5Cce%7BCH_3%7D"> в молекуле) и 149ой (количество метильных групп больше одной), т.е. только 2 бита из 166 несут значимую информацию.</p>
<div class="no-row-height column-margin column-container"><div id="fn3"><p><sup>3</sup>&nbsp;Molecular ACCess System</p></div><div id="ref-Durant2002" class="csl-entry">
<div class="csl-left-margin">1. </div><div class="csl-right-inline">Durant J.L. et al. <a href="https://doi.org/10.1021/ci010132r">Reoptimization of MDL keys for use in drug discovery.</a> // J Chem Inf Comput Sci. United States. Vol. 42, № 6. P. 1273–1280.</div>
</div></div></section>
<section id="хешированные-отпечатки" class="level3 page-columns page-full">
<h3 class="anchored" data-anchor-id="хешированные-отпечатки">Хешированные отпечатки</h3>
<p>Использование структурных фрагментов для создания отпечатков имеет один недостаток — вид отпечатка сильно зависит от используемой библиотеки фрагментов, если библиотека содержит фрагменты, которые редко встречаются в каком-либо подмножестве молекул, отпечатки будет содержать большое число нулей и не будут информативными. Для борьбы с этой проблемой придуманы хешированные отпечатки.</p>
<p>Суть хешированных отпечатков заключается в том, что в итоговом векторе каждой компоненте потенциально может соответствовать много различных подструктур. В молекуле выделяются различные фрагменты, каждый фрагмент затем преобразуется в число (хеш-код), которое используется для вычисления номеров компонент в векторе, на которые будет влиять наличие данного фрагмента. Ввиду сложности деталей реализации этих алгоритмов, ограничимся приведением и краткой характеристикой.</p>
<p><strong>Path-based fingerprints</strong><sup>4</sup> хешируют различные пути в молекулярном графе, т.е. молекула разбивается на фрагменты определённой длинны, каждый такой фрагмент затем подвергается хешированию и влияет на итоговый отпечаток.</p>
<div class="no-row-height column-margin column-container"><div id="fn4"><p><sup>4</sup>&nbsp;отпечатки основанные на путях (в молекулярном графе)</p></div><div id="fn5"><p><sup>5</sup>&nbsp;«круговые» отпечатки (реже: отпечатки Моргана) </p></div></div><p><strong>Circular fingerprints</strong><sup>5</sup> вводят понятие радиальных фрагментов: фрагмент образуют центральный атом и его ближайшие атомы-соседи, соединённые с центром на отдалении не более чем на <img src="https://latex.codecogs.com/png.latex?n"> химических связей, где <img src="https://latex.codecogs.com/png.latex?n"> — радиус. Алгоритм итеративно обновляет хеши для всех атомов в молекуле и конструирует отпечаток, который является сжатым представлением информации обо всех соседях в молекуле.</p>
</section>
</section>
<section id="sec-similarity" class="level2 page-columns page-full" data-number="3">
<h2 data-number="3" class="anchored" data-anchor-id="sec-similarity"><span class="header-section-number">3</span> Структурная схожесть</h2>
<p>Для численной характеристики схожести молекулярных структур<sup>6</sup> используются их векторное представление. Между векторами-отпечатками можно определить метрику расстояния. Чаще всего структурное подобие двух молекул оценивается по индексу Танимото: <img src="https://latex.codecogs.com/png.latex?%20T(A,%20B)%20:=%20%5Cdfrac%7B%20c%20%7D%7Ba%20+%20b%20-%20c%7D,%20"></p>
<div class="no-row-height column-margin column-container"><div id="fn6"><p><sup>6</sup>&nbsp;англ. <em>molecular similarity</em></p></div></div><p>где <img src="https://latex.codecogs.com/png.latex?A"> и <img src="https://latex.codecogs.com/png.latex?B"> — векторы-отпечатки, <img src="https://latex.codecogs.com/png.latex?a"> и <img src="https://latex.codecogs.com/png.latex?b"> — число <img src="https://latex.codecogs.com/png.latex?1"> в отпечатках соответственно, <img src="https://latex.codecogs.com/png.latex?c"> — число <img src="https://latex.codecogs.com/png.latex?1"> общих для обоих отпечатков. Например, для <img src="https://latex.codecogs.com/png.latex?A%20=%20(0,%200,%20%5Cmathbf1,%20%5Cmathbf1,%201),%20%5Cqquad%20B%20=%20(0,%201,%20%5Cmathbf1,%20%5Cmathbf1,%200)"> индекс Танимото <img src="https://latex.codecogs.com/png.latex?%20T%20=%20%5Cdfrac%7B2%7D%7B3%20+%203%20-%202%7D%20=%20%5Cdfrac%7B1%7D%7B2%7D.%20"> Также используется коэффициент Дайса; для примера выше: <img src="https://latex.codecogs.com/png.latex?%0AD(A,%20B)%20:=%20%5Cdfrac%7B2%20c%7D%7Ba%20+%20b%7D%20=%20%5Cdfrac%7B2%20%5Ccdot%202%7D%7B3%20+%203%7D%20=%20%5Cdfrac%7B2%7D%7B3%7D.%0A"></p>
</section>
<section id="sec-rich-space" class="level2" data-number="4">
<h2 data-number="4" class="anchored" data-anchor-id="sec-rich-space"><span class="header-section-number">4</span> Структурно богатое подмножество</h2>
<p>При наличии большого числа кандидатов на экспериментальную проверку неизбежно встаёт вопрос о выделении некоторого набора молекул для первично экспериментальной проверки. Векторное представление молекул позволяет решать и эту задачу.</p>
<p>Структурно близкие молекулы потенциально обладают схожей биологической активностью, при ограниченных ресурсах экспериментальную проверку стоит проводить с молекулами разных классов. Поскольку близкие структуры отображаются в близкие молекулярные отпечатки, задачу можно переформулировать в терминах расстояния: из <img src="https://latex.codecogs.com/png.latex?N"> векторов отпечатков необходимо выбрать <img src="https://latex.codecogs.com/png.latex?n%20%3C%20N"> векторов наиболее удалённых друг от друга (например, в смысле Танимото); соответствующие молекулы и будут кандидатами на экспериментальную проверку.</p>
<p>В такой постановке задача обычно решается с помощью алгоритмов двух классов: <em>а</em>) кластеризации (например, <code>Taylor-Butina</code>, <code>K-Means</code>), когда пул кандидатов делится на заданное число кластеров и затем из каждого кластера выбирается одна молекула, и <em>б</em>) <code>MaxMin</code>, когда из пула последовательно выбираются молекулы, достаточно удалённые от уже выбранных.</p>



</section>


<div id="remark42">

</div> ]]></description>
  <category>chemoinformatics</category>
  <category>russian</category>
  <guid>https://vsheg.com/posts/2021-09-00-molecular-fingerprints/</guid>
  <pubDate>Wed, 01 Sep 2021 00:00:00 GMT</pubDate>
</item>
<item>
  <title>Вычислительная алхимия</title>
  <link>https://vsheg.com/posts/2021-08-00-alchemy/</link>
  <description><![CDATA[ 




<p>В классическом молекулярном моделировании решается задача наиболее полного описания исследуемой системы: хорошая модель должна быть столь физична, сколь возможно этого добиться при имеющихся ограничениях (например, вычислительных ресурсах).</p>

<div class="no-row-height column-margin column-container"><div class="">
<p>Пост является продолжением <a href="../../posts/2021-07-00-fep/index.html">предыдущего</a>, где кратко были рассмотрены методы возмущения свободной энергии (FEP) и термодинамическое интегрирование (TI)</p>
</div></div><p>Квантовой механикой можно достичь субатомного описания относительно небольших молекул; применение <a href="../../posts/2021-03-00-force-fields/index.html#sec-coarse-grained">крупнозернистых полей</a> позволяет приближенно рассчитывать взаимодействия целых ансамблей макромолекул; насыщенные мицеллярные растворы, можно описывать уравнениями фазового состояния. В описанных ситуациях реальным физическим явлениям ставится в соответствие некоторый математический формализм, объясняющий их. Принципиально иной подход положен в основание методов <em>вычислительной алхимии</em>, суть которых заключается в моделировании нефизичного процесса превращения атомов одной природы в другие, при этом по крайней мере нарушается закон сохранения материи (массы).</p>
<section id="алхимический-формализм-одинарной-и-двойной-топологии" class="level2 page-columns page-full" data-number="1">
<h2 data-number="1" class="anchored" data-anchor-id="алхимический-формализм-одинарной-и-двойной-топологии"><span class="header-section-number">1</span> Алхимический формализм одинарной и двойной топологии</h2>
<p>От примера с оценкой энергии связывания фермента <img src="https://latex.codecogs.com/png.latex?%5Cmathrm%7BE%7D"> и субстрата <img src="https://latex.codecogs.com/png.latex?%5Cmathrm%7BL%7D"> мы перешли к интегрированию по пути <img src="https://latex.codecogs.com/png.latex?%5Clambda"> между двумя произвольными состояниями в фазовому пространству (ФП). По определению: точки ФП — это <img src="https://latex.codecogs.com/png.latex?6N">-мерные векторы, состоящие из компонент импульсов <img src="https://latex.codecogs.com/png.latex?%5Cmathbf%7Bp%7D"> и координат <img src="https://latex.codecogs.com/png.latex?%5Cmathbf%7Bq%7D"> всех частиц в системе, ФП описывает состояние <em>физичной</em> системы в смысле классической механики, однако мы можем обогатить ФП новыми степенями свободы, включив в него массу, заряд и другие свойства частиц. В расширенном ФП можно построить путь <img src="https://latex.codecogs.com/png.latex?%5Clambda">, соединяющий состояния <img src="https://latex.codecogs.com/png.latex?%5Cmathcal%7BA%7D"> и <img src="https://latex.codecogs.com/png.latex?%5Cmathcal%7BB%7D">, отвечающие разным химическим молекулам <span class="citation" data-cites="Chipot2007">[1, с. 50]</span>.</p>
<div class="no-row-height column-margin column-container"><div id="ref-Chipot2007" class="csl-entry">
<div class="csl-left-margin">1. </div><div class="csl-right-inline">Chipot Ch. Pohorille, A.,. Free energy calculations : theory and applications in chemistry and biology. Berlin; New York: Springer, 2007.</div>
</div></div><p>На практике расчёт энергии перехода из одного состояния в другое проводится по формуле <a href="../../posts/2021-07-00-fep/index.html#sec-TI">термодинамического интегрирования</a>:</p>
<p><span id="eq-DF-by-avg-lambda-int"><img src="https://latex.codecogs.com/png.latex?%20%5CDelta%20F_%7B%5Cmathcal%7BA%7D%5Cmathcal%7BB%7D%7D%20=%20%5Cint_0%5E1%20%5Cleft%5Clangle%20%5Cfrac%7B%5Cpartial%20U%7D%7B%5Cpartial%20%5Clambda%7D%20%5Cright%5Crangle_%5Clambda%20%5C,%20%5Cmathrm%7Bd%7D%5Clambda,%20%20%5Ctag%7B1%7D"></span></p>
<p>однако этот расчёт можно реализовать по-разному. В дальнейших рассуждениях без ограничения общности будем считать, что алхимической трансформации <img src="https://latex.codecogs.com/png.latex?%5Cmathcal%20A%20%5Cto%20%5Cmathcal%20B"> подвергается молекула лиганда.</p>
<p>В молекулярной динамике (МД) потенциальная энергия <img src="https://latex.codecogs.com/png.latex?U(%5Cmathbf%7Br%7D_1,%5Cldots,%5Cmathbf%7Br%7D_N)"> <a href="../../posts/2021-01-00-molecular-interactions/index.html">вычисляется</a> как сумма всех взаимодействий в системе:</p>
<p><span id="eq-md-U"><img src="https://latex.codecogs.com/png.latex?%0AU%20=%20%5Cunderbrace%7BU_b%20+%20U_v%20+%20U_t%20+%20U_f%7D_%7B%5Ctext%7B%D0%BA%D0%BE%D0%B2%D0%B0%D0%BB%D0%B5%D0%BD%D1%82%D0%BD%D1%8B%D0%B5%7D%7D%20+%20%5Cunderbrace%7BU_q%20+%20U_d%7D_%7B%5Ctext%7B%D0%BD%D0%B5%D0%BA%D0%BE%D0%B2%D0%B0%D0%BB%D0%B5%D0%BD%D1%82%D0%BD%D1%8B%D0%B5%7D%7D.%0A%5Ctag%7B2%7D"></span></p>
<p>Путь алхимической трансформации <img src="https://latex.codecogs.com/png.latex?%5Clambda">, параметризующий превращение лиганда, может быть включён в выражение силового поля (СП), и тогда <em>топология</em> (числовые параметры атомов СП и порядок их связей) трансформируемой молекулы плавно изменяется при движении в ФП, т.е. свойства атомов (масса <img src="https://latex.codecogs.com/png.latex?m">, заряд <img src="https://latex.codecogs.com/png.latex?q"> и др.) находятся в функциональной зависимости от пути <img src="https://latex.codecogs.com/png.latex?%5Clambda">: <img src="https://latex.codecogs.com/png.latex?%0A%5Cbegin%7Baligned%7D%0Aq%5Ei(%5Clambda)%20&amp;=%20%5Clambda%20q%5Ei_%7B%5Cmathcal%7BA%7D%7D%20+%20(1-%5Clambda)%20q%5Ei_%7B%5Cmathcal%7BB%7D%7D,%20%5C%5C%0A&amp;%5C;%5C;%5Cvdots%20%5C%5C%0Am%5Ei(%5Clambda)%20&amp;=%20%5Clambda%20m%5Ei_%7B%5Cmathcal%7BA%7D%7D%20+%20(1-%5Clambda)%20m%5Ei_%7B%5Cmathcal%7BB%7D%7D.%0A%5Cend%7Baligned%7D%0A"></p>
<p>В другой реализации, расчёт проводится непосредственно по 1, тогда в процессе трансформации молекула лиганда будет представлять собой суперпозицию начального <img src="https://latex.codecogs.com/png.latex?%5Cmathcal%20A"> и конечного <img src="https://latex.codecogs.com/png.latex?%5Cmathcal%20B"> состояний, каждая из которых будет описываться своей топологией. В этой постановке всё ФП или его область являются функцией от <img src="https://latex.codecogs.com/png.latex?%5Clambda">.</p>
<p>В обоих подходах в начале (<img src="https://latex.codecogs.com/png.latex?%5Clambda%20=%200">) и в конце (<img src="https://latex.codecogs.com/png.latex?%5Clambda%20=%201">) пути существую физичные молекулы, однако в формализме одинарной топологии в процессе трансформации параметры атомов, будь то заряд, масса или др., будут принимать промежуточные значения, т.е. не будут соответствовать ни одному настоящему атому. В формализме двойной топологии очевидно возникает проблема: потенциальная энергия молекулы в процессе трансформации согласно 1 описывается в виде взвешенной суммы. При попытке поместить две молекулы в одну область пространства неизбежно произойдёт расталкивание электронных облаков<sup>1</sup>, поэтому также необходимо указывать список атомов, общих для обеих структур, чтобы «исключить» их из взаимодействий между собой (и позволить занять одну область пространства), но оставить взаимодействие с окружением, масштабируя его согласно пути <img src="https://latex.codecogs.com/png.latex?%5Clambda">.</p>
<div class="no-row-height column-margin column-container"><div id="fn1"><p><sup>1</sup>&nbsp;в МД аппроксимирующихся зарядами и потенциалами взаимодействия атомов</p></div></div></section>
<section id="интегрирование-по-пути" class="level2 page-columns page-full" data-number="2">
<h2 data-number="2" class="anchored" data-anchor-id="интегрирование-по-пути"><span class="header-section-number">2</span> Интегрирование по пути</h2>
<p>Для проведения алхимической трансформации необходимо просемплировать ФП в разных точках алхимического пути <img src="https://latex.codecogs.com/png.latex?%5Clambda%20=%200..1"> и затем оценить значение интеграла по <a href="../../posts/2021-07-00-fep/index.html#sec-TI">формуле</a>:</p>
<p><span id="eq-DF-avg-lambda-sum"><img src="https://latex.codecogs.com/png.latex?%0A%5CDelta%20F_%7B%5Cmathcal%7BA%7D%5Cmathcal%7BB%7D%7D%20=%20%5Csum_%7B0%20%5Cle%20%5Clambda_k%20%5Cle%201%7D%20%5Cleft%5Clangle%20%5Cfrac%7B%5Cpartial%20U%7D%7B%5Cpartial%20%5Clambda%7D%20%5Cright%5Crangle_%7B%5Clambda_k%7D.%0A%5Ctag%7B3%7D"></span></p>
<p>Поскольку интегрирование проводится численно, узлы интегрирования (значения <img src="https://latex.codecogs.com/png.latex?%5Clambda">) могут выбираться из разных предпосылок. При интегрировании методом параллелограммов значения <img src="https://latex.codecogs.com/png.latex?%5Clambda"> могут браться с определённым шагом <img src="https://latex.codecogs.com/png.latex?%5CDelta%20%5Clambda"> или вовсе произвольно. Более продвинутые методы интегрирования могут накладывать ограничения на выбор <img src="https://latex.codecogs.com/png.latex?%5Clambda">; часто используемый метод Гаусса<sup>2</sup> уже предоставляет набор значений <img src="https://latex.codecogs.com/png.latex?%5Clambda">, который необходимо использовать в расчётах, итоговое значение интеграла вычисляется по простой формуле <img src="https://latex.codecogs.com/png.latex?%0A%5Cint_a%5Eb%20f(%5Clambda)%20%5C,%20%5Cmathrm%7Bd%7D%5Clambda%20%5Capprox%20%5Csum_%7Bi=1%7D%5En%20w_i%20f(%5Clambda_i),%0A"> где <img src="https://latex.codecogs.com/png.latex?w_i"> — известные из метода Гаусса значения весов. Например, для числа узлов <img src="https://latex.codecogs.com/png.latex?n%20=%209">, значения <img src="https://latex.codecogs.com/png.latex?%5Clambda_i"> и <img src="https://latex.codecogs.com/png.latex?w_i"> приведены в ⊞&nbsp;1. Значения <img src="https://latex.codecogs.com/png.latex?%5Clambda_i"> лежат симметрично относительно середины пути <img src="https://latex.codecogs.com/png.latex?%5Clambda%20=%200.5">; веса <img src="https://latex.codecogs.com/png.latex?w_i"> крайних точек в итоговом интеграле минимальны.</p>
<div class="no-row-height column-margin column-container"><div id="fn2"><p><sup>2</sup>&nbsp;англ. Gaussian quadrature</p></div></div><div id="tbl-gauss-int" class="quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-tbl figure">
<figcaption class="quarto-float-caption-top quarto-float-caption quarto-float-tbl" id="tbl-gauss-int-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Table&nbsp;1: Значения <img src="https://latex.codecogs.com/png.latex?%5Clambda_i"> и <img src="https://latex.codecogs.com/png.latex?w_i"> для интегрирования методом Гаусса
</figcaption>
<div aria-describedby="tbl-gauss-int-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<table class="caption-top table">
<colgroup>
<col style="width: 16%">
<col style="width: 9%">
<col style="width: 9%">
<col style="width: 9%">
<col style="width: 9%">
<col style="width: 9%">
<col style="width: 9%">
<col style="width: 9%">
<col style="width: 9%">
<col style="width: 9%">
</colgroup>
<thead>
<tr class="header">
<th><img src="https://latex.codecogs.com/png.latex?i"></th>
<th>1</th>
<th>2</th>
<th>3</th>
<th>4</th>
<th>5</th>
<th>6</th>
<th>7</th>
<th>8</th>
<th>9</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td><img src="https://latex.codecogs.com/png.latex?%5Clambda_i"></td>
<td>0.0159</td>
<td>0.082</td>
<td>0.1933</td>
<td>0.3379</td>
<td>0.5</td>
<td>0.6621</td>
<td>0.8067</td>
<td>0.918</td>
<td>0.9841</td>
</tr>
<tr class="even">
<td><img src="https://latex.codecogs.com/png.latex?w_i"></td>
<td>0.0406</td>
<td>0.0903</td>
<td>0.1303</td>
<td>0.1562</td>
<td>0.1651</td>
<td>0.1562</td>
<td>0.1303</td>
<td>0.0903</td>
<td>0.0406</td>
</tr>
</tbody>
</table>
</div>
</figure>
</div>
</section>
<section id="расчёт-энергии-связывания" class="level2 page-columns page-full" data-number="3">
<h2 data-number="3" class="anchored" data-anchor-id="расчёт-энергии-связывания"><span class="header-section-number">3</span> Расчёт энергии связывания</h2>
<p>Метод алхимической трансформации позволяет оценивать энергию превращения одной молекулы в другую путём изменения параметров атомов или преобразованиями функции внутринней энергии <img src="https://latex.codecogs.com/png.latex?U">. Получаемые в результате алхимии значения энергии <img src="https://latex.codecogs.com/png.latex?%5CDelta_%5Ctext%7Balc%7D%20F"> не могут быть проверены в эксперименте непосредственно, но могут использоваться для получения ТД параметров связывания.</p>
<div id="fig-td-cycle" class="quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-fig figure">
<div aria-describedby="fig-td-cycle-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<a href="td-cycle.svg" class="lightbox" data-gallery="quarto-lightbox-gallery-1" title="Figure&nbsp;1: Термодинамический цикл для расчёта разности энергии связывания \Delta \Delta_b G"><img src="https://vsheg.com/posts/2021-08-00-alchemy/td-cycle.svg" class="img-fluid figure-img" style="width:60.0%"></a>
</div>
<figcaption class="quarto-float-caption-bottom quarto-float-caption quarto-float-fig" id="fig-td-cycle-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Figure&nbsp;1: Термодинамический цикл для расчёта разности энергии связывания <img src="https://latex.codecogs.com/png.latex?%5CDelta%20%5CDelta_b%20G">
</figcaption>
</figure>
</div>
<p>Опишем ТД цикл (⬟&nbsp;1) для определения разности энергий связывания <img src="https://latex.codecogs.com/png.latex?%5CDelta%20%5CDelta_b%20G"> пары лигандов <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BA%7D"> и <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BB%7D">, в активном центре фермента <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BE%7D">. Для трансформаций лигандов <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BA%7D"> <img src="https://latex.codecogs.com/png.latex?%5Cto"> <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BB%7D"> и комплексов <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BEA%7D"> <img src="https://latex.codecogs.com/png.latex?%5Cto"> <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BEB%7D"> соответствующие значения алхимических энергий <img src="https://latex.codecogs.com/png.latex?%5CDelta_%5Ctext%7Balc%7D%20F_L"> и <img src="https://latex.codecogs.com/png.latex?%5CDelta_%5Ctext%7Balc%7D%20F_C"> могут быть рассчитаны, а значения энергий связывания <img src="https://latex.codecogs.com/png.latex?%5CDelta_b%20G_%7B%5Crm%20A%7D"> и <img src="https://latex.codecogs.com/png.latex?%5CDelta_b%20G_%7B%5Crm%20B%7D"> определены в эксперименте. Исходя из ТД цикла и с учётом знаков</p>
<p><img src="https://latex.codecogs.com/png.latex?%0A%5CDelta_%7B%5Cmathrm%7Balc%7D%7D%20F_C%20=%20-%5CDelta_b%20G_%7B%5Cmathrm%7BA%7D%7D%20+%20%5CDelta_%7B%5Cmathrm%7Balc%7D%7D%20F_L%20+%20%5CDelta_b%20G_%7B%5Cmathrm%7BB%7D%7D,%0A"> откуда <img src="https://latex.codecogs.com/png.latex?%0A%5Cunderbrace%7B%5CDelta_%7B%5Cmathrm%7Balc%7D%7D%20F_C%20-%20%5CDelta_%7B%5Cmathrm%7Balc%7D%7D%20F_L%7D_%7B%5CDelta_%7B%5Cmathrm%7Bcalc%7D%7D%20%5CDelta_b%20F%7D%20=%0A%5Cunderbrace%7B%5CDelta_b%20G_%7B%5Cmathrm%7BB%7D%7D%20-%20%5CDelta_b%20G_%7B%5Cmathrm%7BA%7D%7D%7D_%7B%5CDelta_%7B%5Cmathrm%7Bexp%7D%7D%20%5CDelta_b%20G%7D,%0A"> т.е. разница энергий связывания <img src="https://latex.codecogs.com/png.latex?%5CDelta%20%5CDelta_b%20G"> может быть определена экспериментально или рассчитана.</p>
<p>Моделирование белка (в данном случае в комплексе с лигандом) (⬟&nbsp;1 <em>б</em>) требует соответствующего размера ячейки, заполненной водой. Для корректного сопоставления энергии, размер систем (количество частиц<sup>3</sup>) при превращении лигандов должен соответствовать системе белка (комплексов), однако, при превращении свободных лигандов фермент должен быть удалён на бесконечное расстояние (⬟&nbsp;1 <em>а</em>), а поскольку нас интересует только разность энергий <img src="https://latex.codecogs.com/png.latex?%5CDelta_%5Ctext%7Balc%7D%20F_L"> (энергия алхимического превращения), из системы можно исключить фермент и всю необходимую его воду, имеющие одинаковый энергетический вклад до и после превращения; проще говоря, моделирование лигандов можно проводить в ячейке малого размера, что значительно экономит время расчёта.</p>
<div class="no-row-height column-margin column-container"><div id="fn3"><p><sup>3</sup>&nbsp;уже нарушается в процессе алхимической трансформации</p></div><div class="">
<p>Имея в распоряжении экспериментально измеренную энергию связывания с помощью метода алхимической трансформации можно рассчитать поправки и определить энергию связывания для целого набора химически близких лигандов, что делает описанный метод мощным инструментом для поиска ингибиторов и лекарственных молекул.</p>
</div></div>
<p>Рассчитанные значения <img src="https://latex.codecogs.com/png.latex?%5CDelta%20%5CDelta%20F_b"> могут быть использованы как поправки: энергия связывания с лигандом <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BB%7D"> может быть рассчитана через экспериментальное значение энергии связывания <img src="https://latex.codecogs.com/png.latex?%5CDelta_b%20F_A"> и вычисленную поправку — энергию алхимической трансформации <img src="https://latex.codecogs.com/png.latex?%5CDelta%20%5CDelta_b%20F">:</p>
<p><img src="https://latex.codecogs.com/png.latex?%0A%5CDelta_b%20G_%7B%5Cmathrm%7BB%7D%7D%20=%20%5CDelta_b%20G_%7B%5Cmathrm%7BA%7D%7D%20+%20%5CDelta_%7B%5Cmathrm%7BA%7D%20%5Cto%20%5Cmathrm%7BB%7D%7D%20%5CDelta_b%20F,%0A"> последнее верно в силу того, что и <img src="https://latex.codecogs.com/png.latex?F">, и <img src="https://latex.codecogs.com/png.latex?G"> являются функциями состояния, более того, в конденсированных фазах <img src="https://latex.codecogs.com/png.latex?%5CDelta%20F%20%5Capprox%20%5CDelta%20G">.</p>



</section>


<div id="remark42">

</div> ]]></description>
  <category>molecular dynamics</category>
  <category>russian</category>
  <guid>https://vsheg.com/posts/2021-08-00-alchemy/</guid>
  <pubDate>Sun, 01 Aug 2021 00:00:00 GMT</pubDate>
</item>
<item>
  <title>Теория возмущений свободной энергии</title>
  <link>https://vsheg.com/posts/2021-07-00-fep/</link>
  <description><![CDATA[ 




<p>Метод возмущений свободной энергии FEP (<em>free energy perturbation</em>) и термодинамическое интегрование TI (<em>thermodynamic integration</em>) — два важных подхода вычислительной химии, используемые для расчёта разностей свободных энергий, например, при оценке энергии связывания лиганда с белком, термодинамики растворимости, конформационной стабильности и т.д.</p>
<p>В основе методов лежит процедура нетривиального статистического усреднения множества термодинамических наблюдений с использованием формального аппарата статистической термодинамики. Это позволяет получить более точные оценки свободной энергии по сравнению с прямыми расчётами.</p>
<section id="возмущение-свободной-энергии" class="level2 page-columns page-full" data-number="1">
<h2 data-number="1" class="anchored" data-anchor-id="возмущение-свободной-энергии"><span class="header-section-number">1</span> Возмущение свободной энергии</h2>

<div class="no-row-height column-margin column-container"><div class="">
<p>Информацию по разделу см. в <span class="citation" data-cites="Tuckerman2010">[1, с. 312]</span></p>
</div><div id="ref-Tuckerman2010" class="csl-entry">
<div class="csl-left-margin">1. </div><div class="csl-right-inline">Tuckerman M.E. Statistical mechanics : theory and molecular simulation [Electronic resource]. Oxford: Oxford University Press, 2010.</div>
</div></div><p>Пусть имеем термодинамическую систему, состоящую из молекулы лиганда <img src="https://latex.codecogs.com/png.latex?%5Cmathrm%7BL%7D"> и белка <img src="https://latex.codecogs.com/png.latex?%5Cmathrm%7BE%7D">: в состоянии <img src="https://latex.codecogs.com/png.latex?%5Cmathcal%7BA%7D"> лиганд <img src="https://latex.codecogs.com/png.latex?%5Cmathrm%7BL%7D"> и белок <img src="https://latex.codecogs.com/png.latex?%5Cmathrm%7BE%7D"> и не связаны, в состоянии <img src="https://latex.codecogs.com/png.latex?%5Cmathcal%7BB%7D"> — имеет место комплекс <img src="https://latex.codecogs.com/png.latex?%5Crm%7BES%7D">, соответственно введём потенциальные энергии <img src="https://latex.codecogs.com/png.latex?U_%7B%5Cmathcal%7BA%7D%7D(%5Cmathbf%7Br%7D)"> и <img src="https://latex.codecogs.com/png.latex?U_%7B%5Cmathcal%7BB%7D%7D(%5Cmathbf%7Br%7D)"> для несвязанного и связанного состояний. Свободная энергия Гельмгольца перехода в связанное состояние <span class="citation" data-cites="Tuckerman2010">[1, с. 138]</span> <span id="eq-DF-def"><img src="https://latex.codecogs.com/png.latex?%20%5CDelta%20F_%7B%5Cmathcal%7BA%7D%5Cmathcal%7BB%7D%7D%20=%20F_%7B%5Cmathcal%7BB%7D%7D%20-%20F_%7B%5Cmathcal%7BA%7D%7D%20%20%5Ctag%7B1%7D"></span></p>
<p>может быть выражена через суммы по состояниям:</p>
<p><span id="eq-DF-by-Q"><img src="https://latex.codecogs.com/png.latex?%20%5CDelta%20F_%7B%5Cmathcal%7BA%7D%5Cmathcal%7BB%7D%7D%20=%20F_%7B%5Cmathcal%7BB%7D%7D%20-%20F_%7B%5Cmathcal%7BA%7D%7D%20=%20-%20k%20T%20%5Cln%20%5Cdfrac%7BQ_%7B%5Cmathcal%7BB%7D%7D%7D%7BQ_%7B%5Cmathcal%7BA%7D%7D%7D,%20%20%5Ctag%7B2%7D"></span></p>
<p>где, например,</p>
<p><span id="eq-def-Q"><img src="https://latex.codecogs.com/png.latex?%0A%5Cbegin%7Baligned%7D%0AQ_%7B%5Cmathcal%7BA%7D%7D%20&amp;:=%20%5Cdfrac%7B1%7D%7BN!%20h%5E%7B3N%7D%7D%20%5Cint_%5Ctext%7B%D0%A4%D0%9F%7D%20e%5E%7B-%20%5Cbeta%20H(%5Cmathbf%7Bp%7D,%20%5Cmathbf%7Bq%7D)%7D%20%5Cmathrm%7Bd%7D%20%5Cmathbf%7Bp%7D%20%5Cmathrm%7Bd%7D%20%5Cmathbf%7Bq%7D%20=%20%5C%5C%0A&amp;=%20%5Cdfrac%7B1%7D%7BN!%20h%5E%7B3N%7D%7D%20%5Cint_%5Ctext%7B%D0%A4%D0%9F%7D%20%5Cexp%20%5Cleft%5C%7B%20-%20%5Cbeta%20%5Cleft%5B%5Csum_%7Bi=1%7D%5EN%20%5Cdfrac%7B%5Cmathbf%7Bp%7D_i%5E2%7D%7B2m_i%7D%5Cright%5D%20+%20U_%7B%5Cmathcal%7BA%7D%7D%20(%5Cmathbf%7Bq%7D_1,%20%5Ccdots,%20%5Cmathbf%7Bq%7D_N)%5Cright%5C%7D%20%5Cmathrm%7Bd%7D%20%5Cmathbf%7Bp%7D%20%5Cmathrm%7Bd%7D%20%5Cmathbf%7Bq%7D,%0A%5Cend%7Baligned%7D%0A%5Ctag%7B3%7D"></span></p>
<p>где <img src="https://latex.codecogs.com/png.latex?H"> — гамильтониан системы <img src="https://latex.codecogs.com/png.latex?%5Cmathcal%7BA%7D">, <img src="https://latex.codecogs.com/png.latex?N"> — число частиц в ней, <img src="https://latex.codecogs.com/png.latex?%5Cbeta%20=%201%20/%20kT">, <img src="https://latex.codecogs.com/png.latex?%5Cmathrm%7Bd%7D%20%5Cmathbf%7Bp%7D%20%5Cmathrm%7Bd%7D%20%5Cmathbf%7Bq%7D"> — точка ФП; интегрирование ведётся по всему ФП, что эквивалентно интегрированию по области, соответствующей состоянию <img src="https://latex.codecogs.com/png.latex?%5Cmathcal%7BA%7D">, т.е. там, где вероятность пронаблюдать микросостояние состояния <img src="https://latex.codecogs.com/png.latex?%5Cmathcal%7BA%7D"> не нулевая.</p>
<p>Сократив в 2 числитель и знаменатель на импульсозависимую часть <img src="https://latex.codecogs.com/png.latex?%5Cexp%20%5C%7B%20%5Csum_i%20%5Cfrac%7B%5Cmathbf%7Bp%7D_i%5E2%7D%7B2%20m_i%7D%20%5C%7D">, перейдём к конфигурационным интегралам:</p>
<p><span id="eq-DF-by-Z"><img src="https://latex.codecogs.com/png.latex?%20%5CDelta%20F_%7B%5Cmathcal%7BA%7D%5Cmathcal%7BB%7D%7D%20=%20F_%7B%5Cmathcal%7BB%7D%7D%20-%20F_%7B%5Cmathcal%7BA%7D%7D%20=%20-kT%20%5Cln%20%5Cdfrac%7BZ_%7B%5Cmathcal%7BB%7D%7D%7D%7BZ_%7B%5Cmathcal%7BA%7D%7D%7D,%20%20%5Ctag%7B4%7D"></span></p>
<p>где</p>
<p><span id="eq-conf-int-A"><img src="https://latex.codecogs.com/png.latex?%20Z_%7B%5Cmathcal%7BA%7D%7D%20:=%20%5Cint%20e%5E%7B%20-%5Cbeta%20U_%7B%5Cmathcal%7BA%7D%7D%20(%5Cmathbf%7Bq%7D_1,%20%5Ccdots,%20%5Cmathbf%7Bq%7D_2)%20%7D%20%5Cmathrm%7Bd%7D%20%5Cmathbf%7Bq%7D.%20%20%5Ctag%7B5%7D"></span></p>
<p>Оценить <img src="https://latex.codecogs.com/png.latex?%5CDelta%20F"> непосредственно по уравнениям 2 и 4 сложно, поскольку методы МД и Монте-Карло не позволяют непосредственно рассчитывать статистические суммы и интегралы, однако позволяют получить хорошие средние оценки ТД функций.</p>
<p>Уравнение 4 можно переформулировать через средние ТД величины. Конфигурационный интеграл представим в виде интеграла от двух множителей-экспонент: <span id="eq-conf-int-expressed-by-rho"><img src="https://latex.codecogs.com/png.latex?Z_%7B%5Cmathcal%7BB%7D%7D%20=%20%5Cint%20e%5E%7B-%5Cbeta%20U_%7B%5Cmathcal%7BB%7D%7D%7D%20%5Cmathrm%7Bd%7D%20%5Cmathbf%7Bq%7D%20=%0A%5Cint%20e%5E%7B-%5Cbeta%20U_%7B%5Cmathcal%7BB%7D%7D%7D%20e%5E%7B%5Cbeta%20U_%7B%5Cmathcal%7BA%7D%7D%7D%20e%5E%7B-%5Cbeta%20U_%7B%5Cmathcal%7BA%7D%7D%20%7D%20%5Cmathrm%7Bd%7D%20%5Cmathbf%7Bq%7D%20=%0A%5Cint%20e%5E%7B-%20%5Cbeta%20(U_%7B%5Cmathcal%7BB%7D%7D-U_%7B%5Cmathcal%7BA%7D%7D)%7D%20%5Cunderbrace%7B%20e%5E%7B-%5Cbeta%20U_%7B%5Cmathcal%7BA%7D%7D%7D%20%7D_%7B%5Crho_%7B%5Cmathcal%7BA%7D%7D%7D%20%5Cmathrm%7Bd%7D%20%5Cmathbf%7Bq%7D,%0A%5Ctag%7B6%7D"></span> где <img src="https://latex.codecogs.com/png.latex?%5Crho_%7B%5Cmathcal%7BA%7D%7D"> — функция распределения, соответствующая состоянию <img src="https://latex.codecogs.com/png.latex?%5Cmathcal%7BA%7D."> Среднее значение произвольной функции <img src="https://latex.codecogs.com/png.latex?y"> по ансамблю <img src="https://latex.codecogs.com/png.latex?%5Cmathcal%7BA%7D"> можно вычислить через функцию распределения <img src="https://latex.codecogs.com/png.latex?%5Crho_%7B%5Cmathcal%7BA%7D%7D">: <span id="eq-ensemble-avg"><img src="https://latex.codecogs.com/png.latex?%0A%5Clangle%20y%20%5Crangle_%7B%5Cmathcal%7BA%7D%7D%20:=%20%5Cdfrac%201%20%7BZ_%7B%5Cmathcal%7BA%7D%7D%7D%20%5Cint_%5Ctext%7B%D0%A4%D0%9F%7D%20%5Crho_%7B%5Cmathcal%7BA%7D%7D%20(%5Cmathbf%7Bp%7D,%20%5Cmathbf%7Bq%7D)%20%5Ccdot%20y(%5Cmathbf%7Bp%7D,%20%5Cmathbf%7Bq%7D)%20%5Cmathrm%7Bd%7D%20%5Cmathbf%7Bp%7D%20%5Cmathrm%7Bd%7D%20%5Cmathbf%7Bq%7D,%0A%5Ctag%7B7%7D"></span></p>
<p>учитывая 6 и 7, дробь в уравнении 4 примет вид:</p>
<p><img src="https://latex.codecogs.com/png.latex?%0A%5Cdfrac%7BZ_%7B%5Cmathcal%7BB%7D%7D%7D%7BZ_%7B%5Cmathcal%7BA%7D%7D%7D%20=%20%5Cdfrac%201%20%7BZ_%7B%5Cmathcal%7BA%7D%7D%7D%20%5Cint%20e%5E%7B-%5Cbeta%20U_%7B%5Cmathcal%7BA%7D%7D%7D%20e%5E%7B-%5Cbeta%20(U_%7B%5Cmathcal%7BB%7D%7D%20-%20U_%7B%5Cmathcal%7BA%7D)%7D%7D%20=%20%5Clangle%20e%5E%7B-%5Cbeta%20(U_%7B%5Cmathcal%7BB%7D%7D%20-%20U_%7B%5Cmathcal%7BA%7D%7D)%7D%20%5Crangle_%7B%5Cmathcal%7BA%7D%7D,%0A"></p>
<p>т.е. среднее берётся из распределения, соответствующего состоянию <img src="https://latex.codecogs.com/png.latex?%5Cmathcal%7BA%7D">.</p>
<p>Наконец,</p>
<p><span id="eq-free-energy-perturbation"><img src="https://latex.codecogs.com/png.latex?%0A%5CDelta%20F_%7B%5Cmathcal%20A%20%5Cmathcal%20B%7D%20=%20-kT%20%5Cln%20%5Clangle%20e%5E%7B-%5Cbeta%20(U_%7B%5Cmathcal%20B%7D%20-%20U_%7B%5Cmathcal%20A%7D)%7D%20%5Crangle_%7B%5Cmathcal%20A%7D.%0A%5Ctag%7B8%7D"></span></p>
<p>Уравнение 8 известно как <em>возмущение свободной энергии</em>. Опишем, как следует использовать это уравнение. Состоянию <img src="https://latex.codecogs.com/png.latex?%5Cmathcal%20A"> отвечает функция распределения <img src="https://latex.codecogs.com/png.latex?%5Crho_%7B%5Cmathcal%20A%7D"> и потенциал <img src="https://latex.codecogs.com/png.latex?U_%7B%5Cmathcal%20A%7D">, в ходе численного эксперимента мы получаем точки ФП, соответствующие этому распределению, и затем используем их для моделирования состояния <img src="https://latex.codecogs.com/png.latex?%5Cmathcal%20B,"> заменив потенциал на <img src="https://latex.codecogs.com/png.latex?U_%7B%5Cmathcal%20B%7D">. Однако, распределению <img src="https://latex.codecogs.com/png.latex?%5Cmathcal%20B"> соответствует другая функция распределения <img src="https://latex.codecogs.com/png.latex?%5Crho_%7B%5Cmathcal%20B%7D">, поэтому точки ФП следует <em>перевзвесить</em><sup>1</sup>, поделив на исходное <img src="https://latex.codecogs.com/png.latex?e%5E%7B-%5Cbeta%20U_%7B%5Cmathcal%20A%7D%7D"> и умножив на <img src="https://latex.codecogs.com/png.latex?e%5E%7B-%5Cbeta%20U_%7B%5Cmathcal%20B%7D%7D">.</p>
<div class="no-row-height column-margin column-container"><div id="fn1"><p><sup>1</sup>&nbsp;англ. <em>reweighting</em></p></div></div><p>Таким образом, при расчёте <img src="https://latex.codecogs.com/png.latex?%5CDelta%20F"> по 8 мы собираем статистику по ФП, соответствующую начальному состоянию, и затем используем эти наблюдения для оценки <img src="https://latex.codecogs.com/png.latex?%5CDelta%20F">, как если бы они были взяты из распределения состояния <img src="https://latex.codecogs.com/png.latex?%5Cmathcal%20B">. Ограничением этого подхода является то, что микросостояния из распределения <img src="https://latex.codecogs.com/png.latex?%5Cmathcal%20A"> могут не быть микросостояниями с высокой вероятностью в распределении <img src="https://latex.codecogs.com/png.latex?%5Cmathcal%20B">, в этом случае разность <img src="https://latex.codecogs.com/png.latex?U_%7B%5Cmathcal%20B%7D%20-%20U_%7B%5Cmathcal%20A%7D"> будет большой и экспоненциальный фактор <img src="https://latex.codecogs.com/png.latex?e%5E%7B-%5Cbeta%20(U_%7B%5Cmathcal%20B%7D%20-%20U_%7B%5Cmathcal%20A%7D)%7D%20%5Cto%200">, соответствующие состояния будут иметь малый вес в среднем по ансамблю <img src="https://latex.codecogs.com/png.latex?%5Clangle%20%5Ccdots%20%5Crangle_%7B%5Cmathcal%20A%7D"> и, как следствие, сходимость будет медленной. Другими словами, требуется, чтобы состояние <img src="https://latex.codecogs.com/png.latex?%5Cmathcal%20B"> было небольшим возмущением состояния <img src="https://latex.codecogs.com/png.latex?%5Cmathcal%20A"> и их области в ФП существенно перекрывались.</p>
<div class="callout callout-style-simple callout-note no-icon">
<div class="callout-body d-flex">
<div class="callout-icon-container">
<i class="callout-icon no-icon"></i>
</div>
<div class="callout-body-container">
<p>В постановке задачи, состоянию <img src="https://latex.codecogs.com/png.latex?%5Cmathcal%7BA%7D"> соответствует несвязанные белок <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BE%7D"> и лиганд <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BL%7D">, состоянию <img src="https://latex.codecogs.com/png.latex?%5Cmathcal%7BB%7D"> — фермент-субстратный комплекс <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BEL%7D">, на масштабах системы «лиганд—белок—гидратная оболочка» переход из несвязанного в связанное состояние в принципе можно считать небольшим возмущением.</p>
</div>
</div>
</div>
</section>
<section id="sec-TI" class="level2 page-columns page-full" data-number="2">
<h2 data-number="2" class="anchored" data-anchor-id="sec-TI"><span class="header-section-number">2</span> Термодинамическое интегрирование</h2>
<p>Выбор начального и конечного состояний не ограничивается связыванием в комплекс, состояния могут соответствовать любым областям в ФП. В случае, когда <img src="https://latex.codecogs.com/png.latex?%5Cmathcal%7BA%7D"> и <img src="https://latex.codecogs.com/png.latex?%5Cmathcal%7BB%7D"> достаточно далеки, вводят промежуточные состояния, переходы между которыми можно считаться малым возмущением. Уравнение 8 в этом обобщении имеет вид: <img src="https://latex.codecogs.com/png.latex?%0A%5CDelta%20F_%7B%5Cmathcal%7BA%7D%5Cmathcal%7BB%7D%7D%20=%20-kT%20%5Csum_%7Bi%7D%20%5Cln%20%5Clangle%20e%5E%7B-%5Cbeta%20(U_%7Bi+1%7D%20-%20U_i)%7D%20%5Crangle_i,%0A"> где <img src="https://latex.codecogs.com/png.latex?i"> — номер промежуточного состояния, <img src="https://latex.codecogs.com/png.latex?U_i"> — соответствующий ему потенциал, усреднение ведётся по функции распределения <img src="https://latex.codecogs.com/png.latex?e%5E%7B-%5Cbeta%20U_i%7D"> этого состояния.</p>
<p>Однако, можно пойти дальше и от суммирования дискретных состояний перейти к непрерывному интегрированию. Введём путь трансформации <img src="https://latex.codecogs.com/png.latex?%5Clambda%20=%200..1"> — величину по сути аналогичную координате реакции между двумя состояниями ТД системы. Пользуясь <img src="https://latex.codecogs.com/png.latex?%5Clambda"> мы можем определить потенциальную энергию <img src="https://latex.codecogs.com/png.latex?U(%5Clambda)"> промежуточных состояний:</p>
<p><img src="https://latex.codecogs.com/png.latex?%0A%5Cbegin%7Bcases%7D%0A%20%20%20%20U(%5Clambda)%20=%20f(%5Clambda)%20U_%7B%5Cmathcal%7BA%7D%7D%20+%20g(%5Clambda)%20U_%7B%5Cmathcal%7BB%7D%7D,%20%5C%5C%0A%20%20%20%20f(%5Clambda)%20%5Ctext%7B%20%D0%BC%D0%BE%D0%BD%D0%BE%D1%82%D0%BE%D0%BD%D0%BD%D0%BE%20%D1%83%D0%B1%D1%8B%D0%B2%D0%B0%D0%B5%D1%82%20%D0%BE%D1%82%20$1$%20%D0%B4%D0%BE%20$0$%7D,%20%5C%5C%0A%20%20%20%20g(%5Clambda)%20%5Ctext%7B%20%D0%BC%D0%BE%D0%BD%D0%BE%D1%82%D0%BE%D0%BD%D0%BD%D0%BE%20%D0%B2%D0%BE%D0%B7%D1%80%D0%B0%D1%81%D1%82%D0%B0%D0%B5%D1%82%20%D0%BE%D1%82%20$0$%20%D0%B4%D0%BE%20$1$%7D.%0A%5Cend%7Bcases%7D%0A"></p>
<p>Из выражения свободной энергии, соответствующей состоянию <img src="https://latex.codecogs.com/png.latex?U(%5Clambda)">: <img src="https://latex.codecogs.com/png.latex?%20F(%5Clambda)%20=%20-%20k%20T%20%5Cln%20Q(%5Clambda),%20"> можно получить соотношение для производной свободной энергии <img src="https://latex.codecogs.com/png.latex?F"> по параметру пути <img src="https://latex.codecogs.com/png.latex?%5Clambda">: <span id="eq-TD-int"><img src="https://latex.codecogs.com/png.latex?%0A%5Cbegin%7Baligned%7D%0A%5Cfrac%7B%5Cpartial%20F%7D%7B%5Cpartial%20%5Clambda%7D%20&amp;=%20-%5Cfrac%7BkT%7D%7BQ%7D%20%5Cfrac%7B%5Cpartial%20Q%7D%7B%5Cpartial%20%5Clambda%7D%20=%20-%5Cfrac%7BkT%7D%7BZ%7D%20%5Cfrac%7B%5Cpartial%20Z%7D%7B%5Cpartial%20%5Clambda%7D%20%5C%5C%0A&amp;=%20-%5Cfrac%7BkT%7D%7BZ%7D%20%5Cfrac%7B%5Cpartial%7D%7B%5Cpartial%20%5Clambda%7D%20%5Cint_%7B%5Cmathrm%7B%D0%A4%D0%9F%7D%7D%20e%5E%7B-%5Cbeta%20U(%5Cmathbf%7Bq%7D;%20%5Clambda)%7D%20%5C,%20%5Cmathrm%7Bd%7D%5Cmathbf%7Bq%7D%20%5C%5C%0A&amp;=%20-%5Cfrac%7BkT%7D%7BZ%7D%20%5Cint_%7B%5Cmathrm%7B%D0%A4%D0%9F%7D%7D%20%5Cleft(-%5Cbeta%20%5Cfrac%7B%5Cpartial%20U(%5Cmathbf%7Bq%7D;%20%5Clambda)%7D%7B%5Cpartial%20%5Clambda%7D%5Cright)%20e%5E%7B-%5Cbeta%20U(%5Cmathbf%7Bq%7D;%20%5Clambda)%7D%20%5C,%20%5Cmathrm%7Bd%7D%5Cmathbf%7Bq%7D%20%5C%5C%0A&amp;=%20%5Cleft%5Clangle%20%5Cfrac%7B%5Cpartial%20U(%5Clambda)%7D%7B%5Cpartial%20%5Clambda%7D%20%5Cright%5Crangle_%5Clambda%0A%5Cend%7Baligned%7D%0A%5Ctag%7B9%7D"></span></p>
<p>т.е. <img src="https://latex.codecogs.com/png.latex?%5Cpartial%20F%20/%20%5Cpartial%20%5Clambda"> может быть рассчитана через среднее по ансамблю с распределением <img src="https://latex.codecogs.com/png.latex?e%5E%7B-%5Cbeta%20U(%5Clambda)%7D"> при <img src="https://latex.codecogs.com/png.latex?%5Clambda%20=%20%5Cmathrm%7Bconst%7D">.</p>
<p>Изменения свободной энергии при переходе из <img src="https://latex.codecogs.com/png.latex?%5Cmathcal%7BA%7D"> в <img src="https://latex.codecogs.com/png.latex?%5Cmathcal%7BB%7D"> затем может быть рассчитано через интеграл по пути <img src="https://latex.codecogs.com/png.latex?%5Clambda">:</p>
<p><span id="eq-DF-by-avg-lambda-int"><img src="https://latex.codecogs.com/png.latex?%20%5CDelta%20F_%7B%5Cmathcal%7BA%7D%5Cmathcal%7BB%7D%7D%20=%20%5Cint_0%5E1%20%5Cleft%5Clangle%20%5Cfrac%7B%5Cpartial%20U%7D%7B%5Cpartial%20%5Clambda%7D%20%5Cright%5Crangle_%5Clambda%20%5C,%20%5Cmathrm%7Bd%7D%5Clambda%20%20%5Ctag%7B10%7D"></span></p>
<p>Уравнение 10 называется формулой термодинамического интегрирования <span class="citation" data-cites="Zwanzig1954">[2]</span>, этот интеграл не зависит от выбора <img src="https://latex.codecogs.com/png.latex?f(%5Clambda)"> и <img src="https://latex.codecogs.com/png.latex?g(%5Clambda)">, однако, при выборе удачного вида (т.н. выпуклая линейная комбинация) <img src="https://latex.codecogs.com/png.latex?%20U(%5Clambda)%20=%20%5Clambda%20U_%7B%5Cmathcal%7BA%7D%7D%20+%20(1%20-%20%5Clambda)%20U_%7B%5Cmathcal%7BB%7D%7D,%20"> уравнение 10 упростится до <img src="https://latex.codecogs.com/png.latex?%0A%5CDelta%20F_%7B%5Cmathcal%7BA%7D%5Cmathcal%7BB%7D%7D%20=%20%5Cint_0%5E1%20%5Clangle%20U_%7B%5Cmathcal%7BB%7D%7D%20-%20U_%7B%5Cmathcal%7BA%7D%7D%20%5Crangle%20%5Cmathrm%7Bd%7D%20%5Clambda.%0A"></p>
<div class="no-row-height column-margin column-container"><div id="ref-Zwanzig1954" class="csl-entry">
<div class="csl-left-margin">2. </div><div class="csl-right-inline">Zwanzig R.W. <a href="https://doi.org/10.1063/1.1740409">High‐Temperature equation of state by a perturbation method. I. Nonpolar gases</a> // The Journal of Chemical Physics. 1954. Vol. 22, № 8. P. 1420–1426.</div>
</div></div><p>На практике, однако, от интегрирования по <img src="https://latex.codecogs.com/png.latex?%5Clambda"> вновь переходят к суммированию по некоторым промежуточным состояниям <img src="https://latex.codecogs.com/png.latex?%5Clambda_1,%20%5Ccdots,%20%5Clambda_n">: <span id="eq-DF-avg-lambda-sum"><img src="https://latex.codecogs.com/png.latex?%0A%5CDelta%20F_%7B%5Cmathcal%7BA%7D%5Cmathcal%7BB%7D%7D%20=%20%5Csum_%7B0%20%5Cle%20%5Clambda_k%20%5Cle%201%7D%20%5Cleft%5Clangle%20%5Cfrac%7B%5Cpartial%20U%7D%7B%5Cpartial%20%5Clambda%7D%20%5Cright%5Crangle_%7B%5Clambda_k%7D,%0A%5Ctag%7B11%7D"></span> точки ФП для вычисления средних <img src="https://latex.codecogs.com/png.latex?%5Clangle%20%5Cpartial%20U%20/%20%5Clambda%20%5Crangle_%7B%5Clambda_k%7D"> берутся из распределения <img src="https://latex.codecogs.com/png.latex?e%5E%7B-%5Cbeta%20U(%5Clambda%20=%20%5Clambda_k)%7D">.</p>



</section>


<div id="remark42">

</div> ]]></description>
  <category>molecular dynamics</category>
  <category>russian</category>
  <guid>https://vsheg.com/posts/2021-07-00-fep/</guid>
  <pubDate>Thu, 01 Jul 2021 00:00:00 GMT</pubDate>
</item>
<item>
  <title>Молекулярный докинг</title>
  <link>https://vsheg.com/posts/2021-06-00-docking/</link>
  <description><![CDATA[ 




<p>Молекулярная динамика позволяет во времени наблюдать взаимодействие лиганда с ферментом и оценить силу их связывание, однако, применение этого метода невозможно для оценки энергии связывания большого числа молекул-кандидатов в силу значительной вычислительной сложности. Однако, сделав разумные допущения можно прийти к новому методу — молекулярному докингу<sup>1</sup>.</p>
<div class="no-row-height column-margin column-container"><div id="fn1"><p><sup>1</sup>&nbsp;англ. <em>docking</em> — стыковка</p></div></div><section id="описание-метода" class="level2 page-columns page-full" data-number="1">
<h2 data-number="1" class="anchored" data-anchor-id="описание-метода"><span class="header-section-number">1</span> Описание метода</h2>
<p>В докинге не делается попытки физичного описания процесса связывания, напротив, от моделирования процесса в динамике переходят к оценке энергии связывания конкретных конформаций молекулы и белка. В простейшем (и самом распространённом) случае, взаимодействие происходит по механизму «дыбы», т.е. моделируется связывание конформационно гибкого лиганда с жёстко фиксированной конформацией белка, называемой <em>рецептором</em> (случае поиск производится по 6ти степеням свободы лиганда: 3м вращательным и 3м поступательным).</p>
<p>Докинг включает 2 этапа: <em>а</em>) генерацию <em>поз</em> (разных конформаций и положений лиганда) вблизи центра связывания (задача <em>семплинга</em><sup>2</sup> или обхода ФП) и <em>б</em>) их упорядочивание по силе связывания (задача оценки силы связывания, или <em>скоринг</em><sup>3</sup>). Программы для докинга для каждой молекулы предлагают несколько поз связывания, упорядоченных по его силе, в ~80% случаев поза с самым сильным предсказанным связыванием (скором<sup>4</sup>) точно совпадает с положением лиганда в кристалле (<img src="https://latex.codecogs.com/png.latex?%5Cmathrm%7BRMSD%7D%20%3C%202~%5Cmathrm%7B%E2%84%AB%7D">) <span class="citation" data-cites="Wang2016">[1]</span>; первые несколько предложенных поз в ~90% содержат экспериментальное положение лиганда.</p>
<div class="no-row-height column-margin column-container"><div id="fn2"><p><sup>2</sup>&nbsp;англ. <em>sampling</em> — выборка, отбор проб</p></div><div id="fn3"><p><sup>3</sup>&nbsp;англ. <em>scoring</em> — подсчёт, оценивание</p></div><div id="fn4"><p><sup>4</sup>&nbsp;англ. <em>score</em> — оценка, рейтинг</p></div><div id="ref-Wang2016" class="csl-entry">
<div class="csl-left-margin">1. </div><div class="csl-right-inline">Wang Z. et al. <a href="https://doi.org/10.1039/c6cp01555g">Comprehensive evaluation of ten docking programs on a diverse set of protein-ligand complexes: the prediction accuracy of sampling power and scoring power.</a> // Phys Chem Chem Phys. England, 2016. Vol. 18, № 18. P. 12964–12975.</div>
</div><div id="ref-Liu2020" class="csl-entry">
<div class="csl-left-margin">2. </div><div class="csl-right-inline">Liu Y. et al. <a href="https://doi.org/10.1038/s41401-019-0228-6">CB-Dock: a web server for cavity detection-guided protein–ligand blind docking</a> // Acta Pharmacologica Sinica. 2020. Vol. 41, № 1. P. 138–144.</div>
</div><div id="fn5"><p><sup>5</sup>&nbsp;англ. <em>blind docking</em></p></div><div id="ref-Jumper2021" class="csl-entry">
<div class="csl-left-margin">3. </div><div class="csl-right-inline">Jumper J. et al. <a href="https://doi.org/10.1038/s41586-021-03819-2">Highly accurate protein structure prediction with AlphaFold</a> // Nature. 2021. Vol. 596, № 7873. P. 583–589.</div>
</div></div><p>В приведённой выше формулировке для осуществления докинга необходима пространственная структура фермента и знание о положении центра связывания. Информацию о центрах связывания обычно получают из пространственных структур белок—лиганд, иначе эта информация может быть получена анализом гомологичных и аналогичных белков или с помощью программ поиска карманов и полостей на поверхности белка, например, <code>CB-Dock</code> <span class="citation" data-cites="Liu2020">[2]</span>. Указание положения центров связывания значительно улучшает качество докинга, тем не менее, докинг можно проводить и без этого, этот вариант называется «слепой докинг<sup>5</sup>. Если экспериментальные структуры белка недоступны, могут использоваться <em>in silico</em> методы их предсказания, например, <code>AlphaFold</code> <span class="citation" data-cites="Jumper2021">[3]</span>.</p>
</section>
<section id="семплинг" class="level2 page-columns page-full" data-number="2">
<h2 data-number="2" class="anchored" data-anchor-id="семплинг"><span class="header-section-number">2</span> Семплинг</h2>
<p>Задачу обхода фазового пространства белок—лиганд решают алгоритмы семплинга, которые можно разделить на 3 класса: геометрические<sup>6</sup>, «из фрагментов»<sup>7</sup> и стохастические.</p>
<div class="no-row-height column-margin column-container"><div id="fn6"><p><sup>6</sup>&nbsp;англ. <em>matching</em> — соответствие, согласование (между лигандом и рецептором в смысле их геометрических форм)</p></div><div id="fn7"><p><sup>7</sup>&nbsp;англ. <em>fragment-based</em></p></div></div><ul>
<li><p><strong>Геометрические методы</strong> используют <em>фармакофорное</em><sup>8</sup> представление молекул лиганда и белка: рассчитывается матрица расстояний между фармакоформами в белке и лиганде, затем эти расстояния используется как эталонные при генерации различных конформаций лиганда. Преимуществом этого метода является крайняя простота, что позволяет его использование на самых ранних этапах докинга при проверке огромных библиотек химических соединений.</p></li>
<li><p><strong>Методы «из фрагментов»</strong> конструируют позу путём последовательного построение её из функциональных фрагментов, т.е. молекула лиганда изначально разбивается на части, например, по связям со свободным вращением, полученные фрагменты независимо сопоставляются с разными частями рецептора, затем разорванные связи соединяются образуя молекулу в новой конформации. В разных вариациях этого подхода могут генерироваться не только новые конформации, но и молекулы <em>de novo</em> из заданных функциональных фрагментов. Также во внимание могут приниматься специфические взаимодействия, например, водородные и гидрофобные.</p></li>
<li><p><strong>Стохастические методы</strong> строят новые конформации через модификации существующих путём трансляций, вращений в т.ч. вокруг простых связей, затем для каждой конформации рассчитывается энергия напряжения и происходит отсев слишком деформированных структур. В методе Монте-Карло валидные конформации являются затравкой для создания новой через случайные деформации. Конформации генерируются до тех пор, пока их число не достигнет какого-то заданного значения. Другой класс методов построен на <em>генетических алгоритмах</em>, основанных на дарвиновской теории эволюции: степени свободы молекулы представляются в виде одномерного набора чисел (аналог генома), случайные мутации в которых приведут к появлению новой конформации; на каждом шаге алгоритм генерирует ансамбль (популяцию) из нескольких мутантов и даже проводит над нами кроссинговер (обмен участками генома), затем оценивается сила связывания и напряжение (фенотип), конформации делятся на «приспособленные» к рецептору (внешней среде) и «неприспособленные», последние отбрасываются, оставшиеся используются для генерации нового поколения.</p></li>
</ul>
<div class="no-row-height column-margin column-container"><div id="fn8"><p><sup>8</sup>&nbsp;обобщённое представление групп атомов: полярный или неполярный, положительно или отрицательно заряженный, крупный или небольшой</p></div></div></section>
<section id="скоринг" class="level2 page-columns page-full" data-number="3">
<h2 data-number="3" class="anchored" data-anchor-id="скоринг"><span class="header-section-number">3</span> Скоринг</h2>
<p>Скоринг функции решают задачу оценки «качества» сгенерированной позы. Отметим 3 класса скоринг функций.</p>
<ul>
<li><p><strong>Основанные на силовых полях</strong> — в которых сила взаимодействия определяется суммированием попарных взаимодействий атомов (<img src="https://latex.codecogs.com/png.latex?i"> и <img src="https://latex.codecogs.com/png.latex?j">) согласно аналитическому выражению потенциала</p>
<p><span id="eq-scoring-MD"><img src="https://latex.codecogs.com/png.latex?%0A%20%20%5Cbegin%7Baligned%7D%0A%20%20U%20&amp;=%20W_%7B%5Cmathrm%7Bvdw%7D%7D%20%5Csum_%7Bi,j%7D%20%5Cleft%5C%7B%20%5Cfrac%7BA_%7Bij%7D%7D%7Br_%7Bij%7D%5E%7B12%7D%7D%20-%20%5Cfrac%7BB_%7Bij%7D%7D%7Br_%7Bij%7D%5E6%7D%20%5Cright%5C%7D%20+%20W_h%20%5Csum_%7Bi,j%7D%20%5Cleft%5C%7B%20%5Cfrac%7BC_%7Bij%7D%7D%7Br_%7Bij%7D%5E%7B12%7D%7D%20-%20%5Cfrac%7BD_%7Bij%7D%7D%7Br_%7Bij%7D%5E%7B10%7D%7D%20%5Cright%5C%7D%20%5C%5C%0A%20%20&amp;+%20W_%7B%5Cmathrm%7Belec%7D%7D%20%5Csum_%7Bi,j%7D%20%5Cfrac%7Bq_i%20q_j%7D%7B%5Cepsilon(r_%7Bij%7D)%20r_%7Bij%7D%7D%20%5C%5C%0A%20%20&amp;+%20W_%7B%5Cmathrm%7Bsol%7D%7D%20%5Csum_%7Bi,j%7D%20(S_i%20V_j%20+%20S_j%20V_i)%20%5Cexp%5Cleft(-%5Cfrac%7Br_%7Bij%7D%5E2%7D%7B2%5Csigma%5E2%7D%5Cright),%0A%20%20%5Cend%7Baligned%7D%0A%20%20%20%5Ctag%7B1%7D"></span></p>
<p>куда входят эмпирические коэффициенты <img src="https://latex.codecogs.com/png.latex?W_%5Ctext%7Bvdw%7D">, <img src="https://latex.codecogs.com/png.latex?W_h">, <img src="https://latex.codecogs.com/png.latex?W_%5Ctext%7Belec%7D"> и <img src="https://latex.codecogs.com/png.latex?W_%5Ctext%7Bsol%7D"> для описания соответственно вандерваальсовых, водородных, электростатических и сольватационных взаимодействий.</p></li>
<li><p><strong>Эмпирические</strong> <span class="citation" data-cites="Bohm1994 Rarey1996">[4,5]</span> — основанные на различных допущениях и численных аппроксимациях, например, для энергии связывания</p>
<p><span id="eq-scoring-empiric"><img src="https://latex.codecogs.com/png.latex?%0A%20%20%5Cbegin%7Baligned%7D%0A%20%20%5CDelta%20G%20&amp;=%20%5CDelta%20G_0%20+%20%5CDelta%20G_%7B%5Cmathrm%7Brot%7D%7D%20%5Ccdot%20N_%7B%5Cmathrm%7Brot%7D%7D%20%5C%5C%0A%20%20&amp;+%20%5CDelta%20G_h%20%5Csum%20f(%5CDelta%20R,%20%5CDelta%20%5Calpha)%20+%20%5CDelta%20G_i%20%5Csum%20f(%5CDelta%20R,%20%5CDelta%20%5Calpha)%20%5C%5C%0A%20%20&amp;+%20%5CDelta%20G_%7B%5Cmathrm%7Bar%7D%7D%20%5Csum%20f(%5CDelta%20R,%20%5CDelta%20%5Calpha)%20+%20%5CDelta%20G_%7B%5Cmathrm%7Blip%7D%7D%20f%5E*(%5CDelta%20R)%0A%20%20%5Cend%7Baligned%7D%0A%20%20%20%5Ctag%7B2%7D"></span></p>
<p>где <img src="https://latex.codecogs.com/png.latex?%5CDelta%20G_%5Ctext%7Brot%7D">, <img src="https://latex.codecogs.com/png.latex?%5CDelta%20G_h">, <img src="https://latex.codecogs.com/png.latex?%5CDelta%20G_i">, <img src="https://latex.codecogs.com/png.latex?%5CDelta%20G_%5Ctext%7Bar%7D">, <img src="https://latex.codecogs.com/png.latex?%5CDelta%20G_%5Ctext%7Blip%7D"> и <img src="https://latex.codecogs.com/png.latex?%5CDelta%20G_0"> — соответственно коэффициенты регрессии для вкладов вращения простых связей, водородных и электростатических взаимодействие, ароматических и неполярных групп, свободного члена; <img src="https://latex.codecogs.com/png.latex?N_%5Ctext%7Brot%7D"> — число связей со свободным вращением; суммирование ведётся по соответствующему типу взаимодействий; <img src="https://latex.codecogs.com/png.latex?f"> — штраф за отклонение от оптимального расстояния <img src="https://latex.codecogs.com/png.latex?%5CDelta%20R"> и угла <img src="https://latex.codecogs.com/png.latex?%5CDelta%20%5Calpha"> взаимодействия, <img src="https://latex.codecogs.com/png.latex?f%5E*"> — штраф с поправкой на один аргумент.</p></li>
<li><p><strong>Статистические</strong> <span class="citation" data-cites="Muegge1999">[6]</span> — основанные на апостериорной вероятности различного типа межатомных взаимодействий: из базы данных кристаллических структур извлекается информация о частотах взаимодействия между атомами белка типа <img src="https://latex.codecogs.com/png.latex?i"> и атомами лиганда типа <img src="https://latex.codecogs.com/png.latex?j">, свободная энергия рассчитывается исходя из эмпирического распределения:</p>
<p><span id="eq-scoring-stat"><img src="https://latex.codecogs.com/png.latex?%0A%20%20F%20=%20-kT%20%5Cint_0%5E%7Br_%7B%5Cmathrm%7Bmax%7D%7D%7D%20%5Csum_%7Bi,j%7D%20%5Cln%5Cleft%5C%7Bf(r)%20%5Cfrac%7B%5Crho_%7Bij%7D(r)%7D%7B%5Crho_%7Bij%7D%7D%5Cright%5C%7D%20%5C,%20%5Cmathrm%7Bd%7Dr%0A%20%20%20%5Ctag%7B3%7D"></span></p>
<p>где <img src="https://latex.codecogs.com/png.latex?f_j"> — некоторая функция, зависящая от расстояния, <img src="https://latex.codecogs.com/png.latex?r_%7B%5Cmax%7D"> — радиус отсечения, <img src="https://latex.codecogs.com/png.latex?%5Crho_%7Bi,j%7D(r)"> — эмпирическое число взаимодействий между соответствующими атомами на расстоянии <img src="https://latex.codecogs.com/png.latex?r">; <img src="https://latex.codecogs.com/png.latex?%5Crho_%7Bi,j%7D"> — некоторая нормировка. К достоинствам этого метода можно отнести вычислительную простоту и то, что он позволяет учесть весьма специфические взаимодействия (например, <img src="https://latex.codecogs.com/png.latex?%5Cpi">-катионные), которые в других подходах требовалось бы учитывать явно.</p></li>
</ul>


<div class="no-row-height column-margin column-container"><div id="ref-Bohm1994" class="csl-entry">
<div class="csl-left-margin">4. </div><div class="csl-right-inline">Böhm H.-J. <a href="https://doi.org/10.1007/BF00126743">The development of a simple empirical scoring function to estimate the binding constant for a protein-ligand complex of known three-dimensional structure</a> // Journal of Computer-Aided Molecular Design. 1994. Vol. 8, № 3. P. 243–256.</div>
</div><div id="ref-Rarey1996" class="csl-entry">
<div class="csl-left-margin">5. </div><div class="csl-right-inline">Rarey M. et al. <a href="https://doi.org/10.1006/jmbi.1996.0477">A fast flexible docking method using an incremental construction algorithm.</a> // J Mol Biol. Netherlands, 1996. Vol. 261, № 3. P. 470–489.</div>
</div><div id="ref-Muegge1999" class="csl-entry">
<div class="csl-left-margin">6. </div><div class="csl-right-inline">Muegge I., Martin Y.C. <a href="https://doi.org/10.1021/jm980536j">A general and fast scoring function for protein-ligand interactions: a simplified potential approach.</a> // J Med Chem. United States, 1999. Vol. 42, № 5. P. 791–804.</div>
</div></div>
</section>


<div id="remark42">

</div> ]]></description>
  <category>molecular dynamics</category>
  <category>russian</category>
  <guid>https://vsheg.com/posts/2021-06-00-docking/</guid>
  <pubDate>Tue, 01 Jun 2021 00:00:00 GMT</pubDate>
</item>
<item>
  <title>Метадинамика</title>
  <link>https://vsheg.com/posts/2021-05-00-metadynamics/</link>
  <description><![CDATA[ 




<section id="коллективные-переменные" class="level2 page-columns page-full" data-number="1">
<h2 data-number="1" class="anchored" data-anchor-id="коллективные-переменные"><span class="header-section-number">1</span> Коллективные переменные</h2>
<p>Фазовое пространство молекулярно-динамической траектории сложно анализировать непосредственно, но из него можно выделить некоторое полезное подмножество координат, после чего сконструировать из них <em>коллективные переменные</em> <img src="https://latex.codecogs.com/png.latex?%5Cmathbf%7BS%7D%20=%20(S_1,%5Cldots,S_d)">, позволяющие формулировать состоятельные утверждения о внутренних степенях свободы системы (например, белковой молекулы).</p>
<p>Некоторые простые КП и их интерпретация<sup>1</sup>:</p>
<div class="no-row-height column-margin column-container"><div id="fn1"><p><sup>1</sup>&nbsp;для удобства нотации полезно ввести следующий формализм: совокупность КП <img src="https://latex.codecogs.com/png.latex?%5Cmathbf%7BS%7D%20=%20(S_1,%5Cldots,S_d)"> будем называть пространством КП, конкретное значение <img src="https://latex.codecogs.com/png.latex?S_i"> будем обозначать <img src="https://latex.codecogs.com/png.latex?s_i">, вектор в пространстве <img src="https://latex.codecogs.com/png.latex?%5Cmathbf%7BS%7D"> запишем как <img src="https://latex.codecogs.com/png.latex?%5Cmathbf%7Bs%7D%20=%20(s_1,%5Cldots,s_d)">, выражение <img src="https://latex.codecogs.com/png.latex?%5Cmathbf%7BS%7D(%5Cmathbf%7Bq%7D)"> или <img src="https://latex.codecogs.com/png.latex?%5Cmathbf%7BS%7D(t)%20%5Cequiv%20%5Cmathbf%7BS%7D(%5Cmathbf%7Bq%7D(t))"> подчёркивает, что КП зависят от координат или времени соответственно</p></div></div><ol type="1">
<li><p>расстояние между двумя атомами<sup>2</sup> (или между центрами масс групп атомов) <img src="https://latex.codecogs.com/png.latex?S=%7C%5Cmathbf%7Br%7D_i-%5Cmathbf%7Br%7D_j%7C"> — собственно расстояние или длина связи;</p></li>
<li><p>угол между тремя атомами <img src="https://latex.codecogs.com/png.latex?S=%5Cwidehat%7B%5Cmathbf%7Br%7D_i,%5Cmathbf%7Br%7D_j,%5Cmathbf%7Br%7D_k%7D"> — валентный угол;</p></li>
<li><p>двугранный угол, образованный четырьмя атомами, <img src="https://latex.codecogs.com/png.latex?S=%5Cwidehat%7B%5Cmathbf%7Br%7D_%7Bi,j%7D,%5Cmathbf%7Br%7D_%7Bk,l%7D%7D"> — торсионный угол;</p></li>
<li><p>количество соседей внутри шара радиуса <img src="https://latex.codecogs.com/png.latex?R">, описанного вокруг атома, <img src="https://latex.codecogs.com/png.latex?S=%5Cmathrm%7Bcard%7D%20%5Cleft%5C%7B%20%5Cmathbf%7Br%7D_i%20:%20%7C%5Cmathbf%7Br%7D_i-%5Cmathbf%7Br%7D_j%7C%20%5Cleq%20R%20%5Cright%5C%7D%20-%201"> — координационное число, оператор <img src="https://latex.codecogs.com/png.latex?%5Cmathrm%7Bcard%7D"> обозначает размер множества (англ. cardinality).</p></li>
</ol>
<div class="no-row-height column-margin column-container"><div id="fn2"><p><sup>2</sup>&nbsp;здесь и далее — не между произвольными атомами, а между наперёд заданными; <img src="https://latex.codecogs.com/png.latex?%5Cmathbf%7Br%7D_i"> — радиус-вектор <img src="https://latex.codecogs.com/png.latex?i">го атома, <img src="https://latex.codecogs.com/png.latex?%5Cmathbf%7Br%7D_%7Bi,j%7D"> — вектор c началом в <img src="https://latex.codecogs.com/png.latex?i">м и конце в <img src="https://latex.codecogs.com/png.latex?j">м атомах</p></div></div></section>
<section id="метадинамика" class="level2 page-columns page-full" data-number="2">
<h2 data-number="2" class="anchored" data-anchor-id="метадинамика"><span class="header-section-number">2</span> Метадинамика</h2>
<p>Численный эксперимент МД ограничен доступным машинным временем, в нормальном случае его не хватит для исследования всего ФП, а если энергические барьеры между состояниями достаточно высоки, за время моделирования система может даже не покинуть начальную область ФП, пример системы, в которой может наблюдаться такая картина, приведён на ⬟&nbsp;1; подобный маловероятный «прыжок» молекулы из одного минимума в другой называют <em>редким событием</em> <span class="citation" data-cites="Glowacki2009">[1]</span>.</p>
<div class="no-row-height column-margin column-container"><div id="ref-Glowacki2009" class="csl-entry">
<div class="csl-left-margin">1. </div><div class="csl-right-inline">Glowacki D.R., Paci E., Shalashilin D.V. <a href="https://doi.org/10.1021/jp9074898">Boxed molecular dynamics: A simple and general technique for accelerating rare event kinetics and mapping free energy in large molecular systems</a> // Journal of Physical Chemistry B. ACS Publications, 2009. Vol. 113, № 52. P. 16603–16611.</div>
</div></div><div id="fig-reaction-profile" class="quarto-float quarto-figure quarto-figure-center anchored page-columns page-full">
<figure class="quarto-float quarto-float-fig figure page-columns page-full">
<div aria-describedby="fig-reaction-profile-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<a href="reaction-profile.png" class="lightbox" data-gallery="quarto-lightbox-gallery-1" title="Figure&nbsp;1: Профиль свободной энергии @atta-fynn"><img src="https://vsheg.com/posts/2021-05-00-metadynamics/reaction-profile.png" class="img-fluid figure-img" style="width:70.0%"></a>
</div>
<figcaption class="quarto-float-caption-bottom quarto-float-caption quarto-float-fig" id="fig-reaction-profile-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Figure&nbsp;1: Профиль свободной энергии <span class="citation" data-cites="atta-fynn">[2]</span>
</figcaption>
<div class="no-row-height column-margin column-container"><div id="ref-atta-fynn" class="csl-entry">
<div class="csl-left-margin">2. </div><div class="csl-right-inline">Atta-fynn R., Bylaska E.J., Jong W.A.D. <a href="https://nwchemgit.github.io/nwchem-new-pmf.pdf">Finite temperature free energy calculations in NWChem. Metadynamics and umbrella sampling-wham: практическое пособие</a>. Ричленд (Вашингтон): Pacific Northwest National Laboratory.</div>
</div></div></figure>
</div>
<p>Метадинамика — неравновесный метод молекулярного моделирования. Для эффективного получения выборки из ФП к потенциалам взаимодействия, описанным в [Описание метода], добавляют зависящий от КП<sup>3</sup> <img src="https://latex.codecogs.com/png.latex?%5Cmathbf%7BS(q)%7D"> и времени <img src="https://latex.codecogs.com/png.latex?t"> смещающий потенциал <img src="https://latex.codecogs.com/png.latex?V(%5Cmathbf%7BS(q)%7D,t)">, который будет способствовать выходу системы из её энергетического минимума, что, в свою очередь, позволит исследовать новые области ФП.</p>
<div class="no-row-height column-margin column-container"><div id="fn3"><p><sup>3</sup>&nbsp;обозначения коллективных переменных были введены в Коллективные переменные</p></div></div><p>Для пространства <img src="https://latex.codecogs.com/png.latex?%5Cmathbf%7BS(q)%7D"> изменение потенциала <img src="https://latex.codecogs.com/png.latex?V(%5Cmathbf%7BS(q)%7D,t)"> во времени происходит не непрерывно; в начале симуляции <img src="https://latex.codecogs.com/png.latex?V(%5Cmathbf%7BS(q)%7D,t=0)=0">, однако через равные промежутки времени <img src="https://latex.codecogs.com/png.latex?%5Ctau"> к нему добавляются гауссовы функции так, чтобы положение их максимумов совпало с текущем значением коллективных переменных <img src="https://latex.codecogs.com/png.latex?%5Cmathbf%7Bs%7D(t)">:</p>
<p><img src="https://latex.codecogs.com/png.latex?%20V(t)%20=%20V(t-%5Ctau)%20+%20h(t)%5Cexp%5Cleft%5C%7B%20-%5Cfrac%7B1%7D%7B2%7D%5Csum_%7Bi=1%7D%5E%7Bd%7D%5Cleft(%5Cfrac%7Bs_i(t)%20-%20s_i(%5Clfloor%20t/%5Ctau%5Crfloor%5Ccdot%5Ctau)%7D%7B%5Csigma_i%7D%5Cright)%5E2%5Cright%5C%7D%20"></p>
<p>или, если исключить предыдущее значение <img src="https://latex.codecogs.com/png.latex?V(t-%5Ctau)"> и суммировать по шагам <img src="https://latex.codecogs.com/png.latex?k"> явно,</p>
<p><span id="eq-metaMD-eq"><img src="https://latex.codecogs.com/png.latex?%20V(%5Cmathbf%7Bs%7D,t)%20=%20%5Csum_%7Bk=1%7D%5E%7B%5Clfloor%20t/%5Ctau%5Crfloor%7Dh(t)%5Cexp%5Cleft%5C%7B%20-%5Cfrac%7B1%7D%7B2%7D%5Csum_%7Bi=1%7D%5Ed%20%5Cleft(%5Cfrac%7Bs_i%20-%20s_i(k%5Ctau)%7D%7B%5Csigma_i%7D%5Cright)%5E2%5Cright%5C%7D%20%20%5Ctag%7B1%7D"></span></p>
<div id="fig-meta-dynamics" class="quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-fig figure">
<div aria-describedby="fig-meta-dynamics-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<a href="meta-dynamics.png" class="lightbox" data-gallery="quarto-lightbox-gallery-2" title="Figure&nbsp;2: Этапы наложения гауссиан в процессе метадинамики: а) начало симуляции; б) выход из области начального состояния; в) исследование области конечного состояния; г) свободное плавание"><img src="https://vsheg.com/posts/2021-05-00-metadynamics/meta-dynamics.png" class="img-fluid figure-img"></a>
</div>
<figcaption class="quarto-float-caption-bottom quarto-float-caption quarto-float-fig" id="fig-meta-dynamics-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Figure&nbsp;2: Этапы наложения гауссиан в процессе метадинамики: <em>а</em>) начало симуляции; <em>б</em>) выход из области начального состояния; <em>в</em>) исследование области конечного состояния; <em>г</em>) свободное плавание
</figcaption>
</figure>
</div>
<p>Накачку системы энергией называют <em>нагреванием</em>, поскольку в процессе температура неизбежно возрастёт на <em>фиктивную</em> величину <img src="https://latex.codecogs.com/png.latex?%5CDelta%20T">; если в начальный момент система условно находилась в нуле энергии, то в ходе нагрева ей становятся доступны состояния со свободной энергией <img src="https://latex.codecogs.com/png.latex?%5B0%5C,..%5C,k%5CDelta%20T%5D"> за вполне обозримое время.</p>
<p>Высоту экспоненты в 1 задаёт <img src="https://latex.codecogs.com/png.latex?h(t)">, в классической метадинамике её принимают постоянной и равной <img src="https://latex.codecogs.com/png.latex?h_%7B0%7D">. В большом временном пределе <img src="https://latex.codecogs.com/png.latex?F(%5Cmathbf%7Bs%7D)+V(%5Cmathbf%7Bs%7D,t)"> обращается в константу, поэтому оценка свободной энергии</p>
<p><span id="eq-standard-metad-free-energy"><img src="https://latex.codecogs.com/png.latex?%20F(%5Cmathbf%7Bs%7D)%20=%20%5Cmathrm%7Bconst%7D%20-%20%5Clim_%7Bt%5Cto%5Cinfty%7D%20V(%5Cmathbf%7Bs%7D,%20t),%20%20%5Ctag%7B2%7D"></span></p>
<p>т.е. зная, как смещающий потенциал <img src="https://latex.codecogs.com/png.latex?V(%5Cmathbf%7BS%7D,t)"> меняется во времени, можно реконструировать вид поверхности потенциальной энергии <span class="citation" data-cites="Barducci2008 Barducci2011">[3,4]</span>.</p>
<div class="no-row-height column-margin column-container"><div id="ref-Barducci2008" class="csl-entry">
<div class="csl-left-margin">3. </div><div class="csl-right-inline">Barducci A., Bussi G., Parrinello M. <a href="https://doi.org/10.1103/PhysRevLett.100.020603">Well-tempered metadynamics: A smoothly converging and tunable free-energy method</a> // Physical Review Letters. 2008. Vol. 100, № 2.</div>
</div><div id="ref-Barducci2011" class="csl-entry">
<div class="csl-left-margin">4. </div><div class="csl-right-inline">Barducci A., Bonomi M., Parrinello M. <a href="https://doi.org/10.1002/wcms.31">Metadynamics</a> // Wiley Interdisciplinary Reviews: Computational Molecular Science. Wiley Online Library, 2011. Vol. 1, № 5. P. 826–843.</div>
</div></div></section>
<section id="well-tempered-метадинамика" class="level2" data-number="3">
<h2 data-number="3" class="anchored" data-anchor-id="well-tempered-метадинамика"><span class="header-section-number">3</span> <em>Well-tempered</em> метадинамика</h2>
<p>Для лучшей сходимости метадинамики, высота <img src="https://latex.codecogs.com/png.latex?h(t)"> на больших временных масштабах должна уменьшаться, например, по закону:</p>
<p><img src="https://latex.codecogs.com/png.latex?%20h(t)%20=%20h_%7B0%7D%5Cexp%5Cleft%5C%7B%20-%5Cdfrac%7BV(%5Cmathbf%7Bs%7D(t),t)%7D%7Bk%5CDelta%20T%7D%5Cright%5C%7D%20,%20"></p>
<p>эту модификацию называют <em>well-tempered</em> метадинамикой, высота гауссианы определяется привнесённым смещением <img src="https://latex.codecogs.com/png.latex?V(%5Cmathbf%7Bs%7D(t),t)"> и фиктивной температурой <img src="https://latex.codecogs.com/png.latex?%5CDelta%20T">. Если система перешла в новую область ФП, где ещё не был наложен смещающий потенциал, высота добавляемых гауссиан вновь вырастет до значения <img src="https://latex.codecogs.com/png.latex?h_%7B0%7D"> и будет уменьшаться с ростом <img src="https://latex.codecogs.com/png.latex?V(%5Cmathbf%7Bs%7D(t),t)"> в этой области. Аналогично 2 можно записать оценку</p>
<p><img src="https://latex.codecogs.com/png.latex?%20F(%5Cmathbf%7Bs%7D)=%5Cmathrm%7Bconst%7D-%5Cleft(1+%5Cdfrac%7BT%7D%7B%5CDelta%20T%7D%5Cright)%5Clim_%7Bt%5Cto%5Cinfty%7DV(%5Cmathbf%7Bs%7D,t).%20"></p>
<p>На практике далеко не всегда удаётся достичь выхода <img src="https://latex.codecogs.com/png.latex?V(%5Cmathbf%7Bs%7D,t)"> на постоянное значение — глубина исследования ФП определяется доступным машинным временем, однако, стоит упомянуть, что в момент перехода системы в свободное плавание (⬟&nbsp;2 <em>в</em>) она начнёт быстро дрейфовать по поверхности свободной энергии и может даже совершить прыжок в область ФП вне интересующих нас пределов, об этом важно помнить, чтобы остановить моделирование в подходящий момент.</p>
<p>Резюмируем. Протокол метадинамики включает несколько шагов: 1. конструируются коллективные переменные <img src="https://latex.codecogs.com/png.latex?%5Cmathbf%7BS%7D(%5Cmathbf%7Bq%7D)"> — функции координат атомов, цель которых — ёмкое и исчерпывающее описание эволюции системы в процессе моделирования с позиции наблюдения интересующих исследователя событий, иными словами, изменение <img src="https://latex.codecogs.com/png.latex?%5Cmathbf%7BS%7D(%5Cmathbf%7Bq%7D)"> должно отражать протекание конкретного процесса, поскольку сэмплирование ФП происходит согласованно с пространством КП; 2. выбираются период наложения <img src="https://latex.codecogs.com/png.latex?%5Ctau">, начальная высота <img src="https://latex.codecogs.com/png.latex?h_%7B0%7D"> и ширины <img src="https://latex.codecogs.com/png.latex?%5Csigma_%7Bi%7D"> гауссиан; 3. проводится компьютерное моделирование со смещающим потенциалом <img src="https://latex.codecogs.com/png.latex?V(%5Cmathbf%7Bs%7D,t)">; 4. восстанавливается вид поверхности свободной энергии по изменению <img src="https://latex.codecogs.com/png.latex?V(%5Cmathbf%7BS%7D,t)"> во времени.</p>



</section>


<div id="remark42">

</div> ]]></description>
  <category>molecular dynamics</category>
  <category>russian</category>
  <guid>https://vsheg.com/posts/2021-05-00-metadynamics/</guid>
  <pubDate>Sat, 01 May 2021 00:00:00 GMT</pubDate>
</item>
<item>
  <title>Интегрирование уравнений движения в молекулярной динамике</title>
  <link>https://vsheg.com/posts/2021-04-00-trajectories/</link>
  <description><![CDATA[ 




<section id="алгоритм-верле" class="level2 page-columns page-full" data-number="1">
<h2 data-number="1" class="anchored" data-anchor-id="алгоритм-верле"><span class="header-section-number">1</span> Алгоритм Верле</h2>
<p>Задача МД сводится к решению дифференциального уравнения Ньютона для каждой частицы, всего таких уравнений <img src="https://latex.codecogs.com/png.latex?N"> в векторной форме или <img src="https://latex.codecogs.com/png.latex?3N"> в скалярной (для трёхмерного пространства), решением системы будут <img src="https://latex.codecogs.com/png.latex?3N"> проекций координат<sup>1</sup> <img src="https://latex.codecogs.com/png.latex?r_%7Bi,x%7D(t)">, <img src="https://latex.codecogs.com/png.latex?r_%7Bi,y%7D(t)">, <img src="https://latex.codecogs.com/png.latex?r_%7Bi,z%7D(t)"> и <img src="https://latex.codecogs.com/png.latex?3N"> проекций скоростей <img src="https://latex.codecogs.com/png.latex?v_%7Bi,x%7D(t)">, <img src="https://latex.codecogs.com/png.latex?v_%7Bi,y%7D(t)">, <img src="https://latex.codecogs.com/png.latex?v_%7Bi,z%7D(t)"> для всех частиц системы в каждый момент времени.</p>
<div class="no-row-height column-margin column-container"><div id="fn1"><p><sup>1</sup>&nbsp;в данном случае декартовых</p></div><div id="ref-Verlet1967" class="csl-entry">
<div class="csl-left-margin">1. </div><div class="csl-right-inline">Verlet L. <a href="https://doi.org/10.1103/PhysRev.159.98">Computer <span>“experiments”</span> on classical fluids. I. Thermodynamical properties of Lennard-Jones molecules</a> // Physical Review. 1967. Vol. 159, № 1. P. 98–103.</div>
</div></div><p>Известно, что аналитический аппарат классической механики не может справиться с решением подобной задачи уже при <img src="https://latex.codecogs.com/png.latex?N=3"> (задача трёх тел), поэтому здесь применимы только численные подходы: временна́я переменная <img src="https://latex.codecogs.com/png.latex?t"> принимается дискретной, прирастающей на <em>шаг интегрирования</em> <img src="https://latex.codecogs.com/png.latex?%5Cdelta%20t">, от решения дифференциальных уравнений переходят к их численному интегрированию, для этого обычно применяется <em>алгоритм Верле</em> <span class="citation" data-cites="Verlet1967">[1]</span> и его модификации; в МД необходимо знать не только положение частиц, но и их скорости; последние можно определить, если использовать этот алгоритм в т.н. <em>скоростной форме</em>.</p>
<div class="pseudocode-container quarto-float" data-comment-delimiter="&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;#" data-line-number-punc=":" data-caption-prefix="Algorithm" data-pseudocode-number="1" data-line-number="true">
<div class="pseudocode">
\begin{algorithm} \caption{Интегрирование методом Верле} \begin{algorithmic} \For{ частицы $i$ с 1ой по $N$ую} \State $\mathbf r_i(t + \delta t) \gets \mathbf r_i(t) + \mathbf v_i(t) \delta t + \mathbf a_i(t) \dfrac{\delta t^2}{2}$\Comment{$\mathbf r_i$, $\mathbf v_i$, $\mathbf a_i$ c предыдущего шага} \State $\mathbf v_i(t + \delta t / 2) \gets \mathbf v_i(t) + \mathbf a_i(t) \dfrac{\delta t}{2}$\Comment{скорость на половинном шаге} \State $ \mathbf a_i(t + \delta t) \gets \dfrac{\mathbf F_i (t + \delta t)}{m_i}$\Comment{$\displaystyle{\mathbf F_i = -\sum_{j \ne i} \frac{\partial U(r_{i,j})}{\partial r_{i,j}} \dfrac{\mathbf r_{i,j}}{r_{i,j}}}$} \State $\mathbf v_i(t + \delta t) \gets \mathbf v_i(t + \delta t/2) + \mathbf a_i(t + \delta t) \dfrac{\delta t}{2}$\Comment{скорость на целом шаге} \EndFor \end{algorithmic} \end{algorithm}
</div>
</div>
<p>Вычисление скорости на половинном шаге позволяет отразить изменение сил, действующих на частицу, в процессе шага интегрирования, таким образом учитывается взаимное влияние атомов.</p>
</section>
<section id="фазовое-пространство" class="level2" data-number="2">
<h2 data-number="2" class="anchored" data-anchor-id="фазовое-пространство"><span class="header-section-number">2</span> Фазовое пространство</h2>
<p>Результатом интегрирования системы уравнений Ньютона будет набор скоростей и координат всех частиц системы, зависящих от времени; их можно объединить в т.н. <img src="https://latex.codecogs.com/png.latex?6N">-мерное <em>фазовое пространство</em> (ФП), каждая точка <img src="https://latex.codecogs.com/png.latex?(%7B%5Cmathbf%20p%7D,%7B%5Cmathbf%20q%7D)"> которого содержит все импульсы <img src="https://latex.codecogs.com/png.latex?%7B%5Cmathbf%20p%7D=p_%7Bx,1%7D,p_%7By,1%7D,p_%7Bz,1%7D,%5Ccdots,p_%7Bx,N%7D,p_%7By,N%7D,p_%7Bz,N%7D">, и все координаты <img src="https://latex.codecogs.com/png.latex?%7B%5Cmathbf%20q%7D=q_%7Bx,1%7D,q_%7By,1%7D,q_%7Bz,1%7D,%5Ccdots,q_%7Bx,N%7D,q_%7By,N%7D,q_%7Bz,N%7D"> всех частиц в один момент времени <img src="https://latex.codecogs.com/png.latex?t">. Любая точка ФП полностью описывает текущее состояние системы, поэтому её можно интерпретировать как микросостояние, а ФП — как совокупность всех возможных микросостояний. По мере эволюции системы точки движутся в ФП, проделанные ими пути называют <em>фазовыми траекториями</em>. Плотности микросостояний в ФП приписывают <em>функцию распределения</em> <img src="https://latex.codecogs.com/png.latex?%5Crho(%5Cmathbf%7Bp%7D,%5Cmathbf%7Bq%7D,t)">, она в состоянии равновесия не должна зависеть от времени, в этом случае точки распределены в ФП с неизменной плотностью; можно сформулировать и более общее утверждение, называемое теоремой Лиувилля: <img src="https://latex.codecogs.com/png.latex?%0A%5Cfrac%7Bd%5Crho(%5Cmathbf%7Bp%7D,%5Cmathbf%7Bq%7D,t)%7D%7Bdt%7D=0,%0A"> согласно которой плотность фазовых точек при их движении по фазовым траекториям постоянна. Если <img src="https://latex.codecogs.com/png.latex?%5Crho(%5Cmathbf%7Bp%7D,%5Cmathbf%7Bq%7D)"> не зависит от времени явно, то <img src="https://latex.codecogs.com/png.latex?%0A%5Cfrac%7B%5Cpartial%20%5Crho(%5Cmathbf%7Bp%7D,%5Cmathbf%7Bq%7D)%7D%7B%5Cpartial%20t%7D=0.%0A"> Теорема Лиувилля является следствием уравнений Гамильтона: <img src="https://latex.codecogs.com/png.latex?%0A%5Cdot%7Bq%7D_%7Bi%7D=%5Cfrac%7B%5Cpartial%20H(%5Cmathbf%7Bp%7D,%5Cmathbf%7Bq%7D)%7D%7B%5Cpartial%20p_%7Bi%7D%7D%20%5Cquad%20%5Ctext%7B%D0%B8%7D%20%5Cquad%20%5Cdot%7Bp%7D_%7Bi%7D=-%5Cfrac%7B%5Cpartial%20H(%5Cmathbf%7Bp%7D,%5Cmathbf%7Bq%7D)%7D%7B%5Cpartial%20q_%7Bi%7D%7D,%0A"> где <img src="https://latex.codecogs.com/png.latex?H"> — гамильтониан системы, точкой обозначена полная производная по времени.</p>
<p>Если в результате МД было получено достаточно много наблюдений, можно сказать, что система прошла длинную фазовую траекторию и, вероятно, побывала во всех областях ФП, совокупность этих точек будет задавать геометрический прообраз функции распределения <img src="https://latex.codecogs.com/png.latex?%5Crho(%5Cmathbf%7Bp%7D,%5Cmathbf%7Bq%7D)">. Отметим, что закон распределения <img src="https://latex.codecogs.com/png.latex?%5Crho(%5Cmathbf%7Bp%7D,%5Cmathbf%7Bq%7D)"> <strong>полностью</strong> описывает ТД систему в статистическом смысле.</p>
</section>
<section id="rmsd" class="level2 page-columns page-full" data-number="3">
<h2 data-number="3" class="anchored" data-anchor-id="rmsd"><span class="header-section-number">3</span> RMSD</h2>
<p>Полученные траектории атомов можно анализировать с позиции конфигурации молекул. Важным параметром конкретной конфигурации (и всех точек траектории в целом) является RMSD<sup>2</sup> относительно эталонной структуры, по сути это среднеквадратичное отклонение координат атомов от координат соответствующих атомов в эталонной конформации: <img src="https://latex.codecogs.com/png.latex?%0A%5Cmathrm%7BRMSD%7D=%5Csqrt%7B%5Cdfrac%7B1%7D%7B%5COmega%7D%5Csum_%7Bi%7D%5Comega_%7Bi%7D%5Cleft(%5Cmathbf%7Br%7D_%7Bi%7D-%5Cmathbf%7Br%7D_%7Bi%7D%5E%7B%5Ctext%7Bref%7D%7D%5Cright)%5E%7B2%7D%7D,%0A"> где <img src="https://latex.codecogs.com/png.latex?r_%7Bi%7D"> и <img src="https://latex.codecogs.com/png.latex?r_%7Bi%7D%5E%7B%5Ctext%7Bref%7D%7D"> — координаты <img src="https://latex.codecogs.com/png.latex?i">го атома в текущей и эталонной конфигурации, <img src="https://latex.codecogs.com/png.latex?%5Comega_%7Bi%7D"> — вес этой пары (обычно принимается за 1), <img src="https://latex.codecogs.com/png.latex?%5COmega"> — сумма всех весов.</p>


<div class="no-row-height column-margin column-container"><div id="fn2"><p><sup>2</sup>&nbsp;Root-Mean-Square Deviation</p></div></div>
</section>


<div id="remark42">

</div> ]]></description>
  <category>molecular dynamics</category>
  <category>russian</category>
  <guid>https://vsheg.com/posts/2021-04-00-trajectories/</guid>
  <pubDate>Thu, 01 Apr 2021 00:00:00 GMT</pubDate>
</item>
<item>
  <title>Силовые поля в молекулярной динамике</title>
  <link>https://vsheg.com/posts/2021-03-00-force-fields/</link>
  <description><![CDATA[ 




<div class="callout callout-style-simple callout-note no-icon">
<div class="callout-body d-flex">
<div class="callout-icon-container">
<i class="callout-icon no-icon"></i>
</div>
<div class="callout-body-container">
<p>Молекулярная динамика (МД) исторически складывалась как прикладная область — многие ключевые методы были разработаны так, чтобы стать частью прикладного программного обеспечивания. Рассмотрение ведётся со стороны программных пакетов для МД.</p>
</div>
</div>
</div>
<section id="классические-силовые-поля" class="level2 page-columns page-full" data-number="1">
<h2 data-number="1" class="anchored" data-anchor-id="классические-силовые-поля"><span class="header-section-number">1</span> Классические силовые поля</h2>
<p>МД требует явного задания вида потенциалов, описывающих взаимодействия атомов, этот <a href="../../posts/2021-01-00-molecular-interactions/index.html##sec-motion-equation">потенциал</a> определяется вкладом двух составляющих: <img src="https://latex.codecogs.com/png.latex?%20U%20=%20U_%5Ctext%7B%D0%BA%D0%BE%D0%B2.%7D%20+%20U_%5Ctext%7B%D0%BD%D0%B5%D0%BA%D0%BE%D0%B2.%7D,%20"> где терм <img src="https://latex.codecogs.com/png.latex?U_%5Ctext%7B%D0%BA%D0%BE%D0%B2.%7D"> отвечает взаимодействию связанных химической связью атомов, а <img src="https://latex.codecogs.com/png.latex?U_%5Ctext%7B%D0%BD%D0%B5%D0%BA%D0%BE%D0%B2.%7D"> — взаимодействию между далёкими атомами в одной молекуле или атомами в разных молекулах. Это деление обусловлено, во-первых, их видом<sup>1</sup>, и, во-вторых, принципами, по которым оцениваются численные параметры, входящие в их выражения.</p>
<div class="no-row-height column-margin column-container"><div id="fn1"><p><sup>1</sup>&nbsp;ковалентные проявляются во взаимодействии химических связей, валентных углов и т.д., нековалентные действуют через пространство, убывают на расстоянии и суммируются по принципу «каждый с каждым»</p></div></div><p>Описание атома в МД весьма формально: достаточно задать выражение потенциалов взаимодействий и значения численных параметров этих уравнений. Для группировки численных параметров СП вводят т.н. <em>типы атомов</em>: например, в СП <code>GAFF</code> (⊞&nbsp;1) для алифатического <img src="https://latex.codecogs.com/png.latex?sp%5E2"> атома углерода имеется тип атома <code>c2</code>, а для ароматического — <code>ca</code>.</p>
<p>Нековалентные взаимодействия обуславливают вторичную и более высокие порядки структуры макромолекул. Силовые поля, призванные описывать большой спектр химически разнородных молекул, как правило, уступают более специализированным СП. Таковые имеются для белков, нуклеиновых кислот, липидов и сахаров<sup>2</sup>. В противовес им ставятся СП для описания малых молекул, например, лекарственно-подобных или воды.</p>
<div class="no-row-height column-margin column-container"><div id="fn2"><p><sup>2</sup>&nbsp;поскольку природные полимеры и липиды склонны образовывать структуры высших порядков (которые для многих задач МД <strong>критически</strong> важно воспроизводить с высокой точностью) и также содержат лишь небольшое число уникальных фрагментов</p></div></div><div id="tbl-ff" class="quarto-float quarto-figure quarto-figure-center anchored page-columns page-full">
<figure class="quarto-float quarto-float-tbl figure page-columns page-full">
<figcaption class="quarto-float-caption-top quarto-float-caption quarto-float-tbl" id="tbl-ff-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Table&nbsp;1: Классические силовые поля
</figcaption>
<div aria-describedby="tbl-ff-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca" class="page-columns page-full">
<table class="caption-top table">
<colgroup>
<col style="width: 25%">
<col style="width: 49%">
<col style="width: 25%">
</colgroup>
<thead>
<tr class="header">
<th>Пакет ПО</th>
<th>Силовое поле</th>
<th>Типы молекул</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td><code>AMBER</code><sup>3</sup></td>
<td><code>ff19SB</code><sup>4</sup> <span class="citation" data-cites="Tian2020">[1]</span>, <code>ff14SB</code></td>
<td>белки</td>
</tr>
<tr class="even">
<td><code>AMBER</code></td>
<td><code>GAFF</code><sup>5</sup>, <code>GAFF2</code></td>
<td>малые орг. молекулы</td>
</tr>
<tr class="odd">
<td><code>AMBER</code></td>
<td><code>lipids21</code>, <code>lipid14</code> <span class="citation" data-cites="Dickson2014">[2]</span></td>
<td>липиды</td>
</tr>
<tr class="even">
<td><code>GROMACS</code><sup>6</sup></td>
<td><code>GROMOS</code><sup>7</sup></td>
<td>белки</td>
</tr>
<tr class="odd">
<td><code>CHARMM</code><sup>8</sup></td>
<td><code>CHARMM27</code></td>
<td>белки и липиды</td>
</tr>
<tr class="even">
<td><code>CHARMM</code></td>
<td><code>CGenFF</code><sup>9</sup></td>
<td>малые молекулы</td>
</tr>
<tr class="odd">
<td><code>BOSS</code><sup>10</sup></td>
<td><code>OPLS</code><sup>11</sup></td>
<td>орг. молекулы</td>
</tr>
</tbody>
</table>
<div class="no-row-height column-margin column-container"><div id="fn3"><p><sup>3</sup>&nbsp;Assisted Model Building and Energy Refinement</p></div><div id="fn4"><p><sup>4</sup>&nbsp;Force Field Backbone and Side chain</p></div><div id="ref-Tian2020" class="csl-entry">
<div class="csl-left-margin">1. </div><div class="csl-right-inline">Tian C. et al. <a href="https://doi.org/10.1021/acs.jctc.9b00591">ff19SB: Amino-Acid-Specific Protein Backbone Parameters Trained against Quantum Mechanics Energy Surfaces in Solution</a> // J. Chem. Theory Comput. American Chemical Society, 2020. Vol. 16, № 1. P. 528–552.</div>
</div><div id="fn5"><p><sup>5</sup>&nbsp;General AMBER Force Field</p></div><div id="ref-Dickson2014" class="csl-entry">
<div class="csl-left-margin">2. </div><div class="csl-right-inline">Dickson C.J. et al. <a href="https://doi.org/10.1021/ct4010307">Lipid14: The Amber Lipid Force Field</a> // J. Chem. Theory Comput. American Chemical Society, 2014. Vol. 10, № 2. P. 865–879.</div>
</div><div id="fn6"><p><sup>6</sup>&nbsp;GROningen MAchine for Chemical Simulations</p></div><div id="fn7"><p><sup>7</sup>&nbsp;GROningen MOlecular Simulation</p></div><div id="fn8"><p><sup>8</sup>&nbsp;Chemistry at HARvard Molecular Mechanics</p></div><div id="fn9"><p><sup>9</sup>&nbsp;CHARMM General Force Field</p></div><div id="fn10"><p><sup>10</sup>&nbsp;Biochemical and Organic Simulation System</p></div><div id="fn11"><p><sup>11</sup>&nbsp;Optimized Potentials for Liquid Simulations</p></div></div></div>
</figure>
</div>
<section id="sec-ff-development" class="level3 page-columns page-full">
<h3 class="anchored" data-anchor-id="sec-ff-development">Разработка параметров</h3>
<p>Оценка параметров атомов СП производится по данным квантово-механического (КМ) моделирования с опорой на экспериментальные данные. Из серии КМ расчётов, проведённых для разных искажённых геометрий одной молекулы, можно сначала определить потенциальную энергию различных конформаций, а затем найти оценку параметров жёсткости <a href="../../posts/2021-01-00-molecular-interactions/index.html#eq-U-bond">длины связи</a> и её <a href="../../posts/2021-01-00-molecular-interactions/index.html#eq-U-valence">валентных углов</a> в выражениях закона Гука, и <a href="../../posts/2021-01-00-molecular-interactions/index.html#eq-U-torsion">периодических</a> <a href="../../posts/2021-01-00-molecular-interactions/index.html#eq-U-flat">потенциалов</a> взаимодействия, описываемые рядами.</p>
<p>Несколько иначе обстоит дело с первичной оценкой параметров нековалентных взаимодействий, их получают из множества симуляций чистых жидкостей (алканов, спиртов, амидов и т.д.), нацеленных на воспроизведение макроскопических свойств<sup>12</sup>, например, теплот испарения и <img src="https://latex.codecogs.com/png.latex?%5CDelta_%5Ctext%7Bvap%7D%20H"> и плотностей. Полученные на каждом этапе оценки вовлекаются в дальнейшие расчёты и многократно и последовательно уточняются, чтобы прийти к согласию с экспериментальными данными.</p>
<div class="no-row-height column-margin column-container"><div id="fn12"><p><sup>12</sup>&nbsp;тогда как для ковалентные взаимодействия первоначально аппроксимируются на атомных масштабах</p></div></div><p>Для уточнения параметров ковалентных взаимодействий результаты расчётов также приводят к соответствию с экспериментальными данными:</p>
<ul>
<li>совпадению частот колебаний в ИК-спектрах;</li>
<li>воспроизводимости экспериментальных геометрий;</li>
<li>воспроизведению конформаций (распределений величин углов, длин связей, межатомных расстояний по данным РСА;</li>
</ul>
<p>также параметры, рассчитанные в вакууме, переоцениваются в непрерывной среде.</p>
<p>И на микро-, и на макроскопические свойства веществ влияют как ковалентные, так и нековалентные взаимодействия, однако при разработке СП итеративный подход с последовательным уточнением сначала одних, затем других параметров оказывается проще. Это не в полной мере относится к параметрам молекулы воды. В нормальной случае природные молекулы моделируют в водной среде, т/е доля «водных» атомов в системе сверху ограничена только 100%ми. Вклад растворителя в ТД свойства системы пропорционален его доле и может быть решающим, также он играет большую роль при воспроизведении экспериментальных данных.</p>
</section>
<section id="учёт-анизотропии" class="level3 page-columns page-full">
<h3 class="anchored" data-anchor-id="учёт-анизотропии">Учёт анизотропии</h3>
<p>Представление атома как точечного заряда не всегда адекватно описывает реальное положение вещей. Приведём несколько примеров.</p>
<ol type="1">
<li>Атом кислорода в молекуле воды обладает двумя неподелёнными электронными парами, их наличие можно довольно точно учесть, если к описанию молекулы воды тремя материальными зарядами (по одному на каждый атом) добавить два нематериальных отрицательных задяда, поместив их позади атома кислорода (см. §&nbsp;2).</li>
<li>Атомы тяжёлых галогенов <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BX%7D"> обладают высокой поляризуемостью, в некоторых галогенпроизводных <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BRX%7D"> электронное окружение атома галогена может быть смещено к заместителю <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BR%7D">, приводя к обнажению небольшого положительного заряда (т.н. <img src="https://latex.codecogs.com/png.latex?%5Csigma">-дырки) на атоме галогена со стороны <span class="citation" data-cites="Lu2012">[3]</span>, противоположной связи <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BR-X%7D">. Этот положительный заряд может участвовать в электростатических взаимодействиях с другими атомами, образуя <em>галогеновые связи</em> (по аналогии с водородными). <img src="https://latex.codecogs.com/png.latex?%5Csigma">-Дырки могут быть описаны добавлением небольшого положительного заряда в нужною область пространство вблизи атома галогена.</li>
<li>По аналогичным причинам <img src="https://latex.codecogs.com/png.latex?%5Cpi">-облака могут участвовать в координационных <img src="https://latex.codecogs.com/png.latex?%5Cpi">-взаимодействиях <span class="citation" data-cites="Hunter1990">[4]</span>, которые можно учесть добавив 2 отрицательных заряда к каждому атому углерода.</li>
</ol>
<div class="no-row-height column-margin column-container"><div id="ref-Lu2012" class="csl-entry">
<div class="csl-left-margin">3. </div><div class="csl-right-inline">Lu Y. et al. <a href="https://doi.org/10.1517/17460441.2012.678829">Halogen bonding for rational drug design and new drug discovery</a> // Expert Opin. Drug Discov. 2012. Vol. 7, № 5. P. 375–383.</div>
</div><div id="ref-Hunter1990" class="csl-entry">
<div class="csl-left-margin">4. </div><div class="csl-right-inline">Hunter C.A., Sanders J.K.M. <a href="https://doi.org/10.1021/ja00170a016">The nature of .pi.-.pi. interactions</a> // J. Am. Chem. Soc. American Chemical Society, 1990. Vol. 112, № 14. P. 5525–5534.</div>
</div></div><p>Более продвинутые подходы для учёта анизотропии обсуждаются в §&nbsp;3.1.</p>
</section>
<section id="resp" class="level3 page-columns page-full">
<h3 class="anchored" data-anchor-id="resp">RESP</h3>
<p>Заряды на атомах сильно зависят от их связей с другими атомами, поэтому зачастую СП не содержат параметров заряда, требуя их явного указания. Для расчёта зарядов применяется метод RESP<sup>13</sup> <span class="citation" data-cites="Bayly1993">[5]</span>. Приведём его кратное описание.</p>
<div class="no-row-height column-margin column-container"><div id="fn13"><p><sup>13</sup>&nbsp;Restrained Electrostatic Potential</p></div><div id="ref-Bayly1993" class="csl-entry">
<div class="csl-left-margin">5. </div><div class="csl-right-inline">Bayly C.I. et al. <a href="https://doi.org/10.1021/j100142a004">A well-behaved electrostatic potential based method using charge restraints for deriving atomic charges: the RESP model</a> // J. Phys. Chem. American Chemical Society, 1993. Vol. 97, № 40. P. 10269–10280.</div>
</div></div><ol type="1">
<li>Для целевой молекулы должна быть найдена оптимальная геометрия, для сложных органических молекул рекомендуется использовать приближение теории возмущений Мёллера – Плессе 2го порядка (<code>MP2</code>).</li>
<li>Рассчитывается значение электростатического потенциала <img src="https://latex.codecogs.com/png.latex?V_i"> (в базисе <code>6-31G*</code>) в разных точках <img src="https://latex.codecogs.com/png.latex?i"> на небольшом удалении от молекулы.</li>
<li>Методом наименьших квадратов находятся оценки зарядов на атомах:
<ul>
<li><p>Записывается выражение оценки потенциала <img src="https://latex.codecogs.com/png.latex?%5Chat%20V_i"> через заряды: <img src="https://latex.codecogs.com/png.latex?%0A%5Chat%20V_i%20=%20%5Csum_j%20%5Cdfrac%7B%5Chat%20q_j%7D%7Br_%7Bi,j%7D%7D%20%5Cqquad%20i,%20j%20=%201..N,%0A"> где <img src="https://latex.codecogs.com/png.latex?%5Chat%20q_j"> — искомая оценка заряда для атома <img src="https://latex.codecogs.com/png.latex?j">, <img src="https://latex.codecogs.com/png.latex?r_%7Bi,j%7D"> — расстояние от атома <img src="https://latex.codecogs.com/png.latex?j"> до точки <img src="https://latex.codecogs.com/png.latex?i"> измерения потенциала <img src="https://latex.codecogs.com/png.latex?V_i">.</p></li>
<li><p>Определяется выражение целевой функции для метода наименьших квадратов: <img src="https://latex.codecogs.com/png.latex?%0A%5Cchi%5E2%20=%20%5Cunderbrace%7B%5Csum_i%20(V_i%20-%20%5Chat%20V_i)%5E2%7D_%7B%5Cchi%5E2_%5Ctext%7Besp%7D%7D%20+%20%5Cunderbrace%7Ba%20%5Csum_j%20(%5Chat%7B%5Chat%7Bq%7D%7D_j%20-%20%5Chat%20q_j)%5E2%7D_%7B%5Cchi%5E2_%5Ctext%7Brstr%7D%7D%20%5Cto%20%5Cmin_%7B%5Chat%20q_1,%20%5Ccdots,%20%5Chat%20q_N%7D,%0A"> где <img src="https://latex.codecogs.com/png.latex?%5Chat%7B%5Chat%7Bq%7D%7D_j"> — грубая оценка искомого заряда, используемая для регуляризации<sup>14</sup>, <img src="https://latex.codecogs.com/png.latex?a"> — числовой коэффициент, <img src="https://latex.codecogs.com/png.latex?%5Cchi%5E2_%5Ctext%7Besp%7D"> и <img src="https://latex.codecogs.com/png.latex?%5Cchi%5E2_%5Ctext%7Brstr%7D"> — квадратичные невязки на величину потенциала и регуляризацию.</p></li>
<li><p>Ищется экстремум целевой функции, отвечающий минимуму: <img src="https://latex.codecogs.com/png.latex?%0A%5Cfrac%7B%5Cpartial%20%5Cchi%5E2%7D%7B%5Cpartial%20%5Chat%7Bq%7D_j%7D%20=%20%5Cfrac%7B%5Cpartial%20%5Cchi%5E2_%5Ctext%7Besp%7D%7D%7B%5Cpartial%20%5Chat%7Bq%7D_j%7D%20+%20%5Cfrac%7B%5Cpartial%20%5Cchi%5E2_%5Ctext%7Brstr%7D%7D%7B%5Cpartial%20%5Chat%7Bq%7D_j%7D%20=%200%20%5Cqquad%20j%20=%201..N.%0A"> Исходя из симметрии молекулы задаются ограничения на эквивалентность атомов <img src="https://latex.codecogs.com/png.latex?k"> и <img src="https://latex.codecogs.com/png.latex?l">: <img src="https://latex.codecogs.com/png.latex?%5Chat%20q_k%20=%20%5Chat%20q_l">. Полученные оценки <img src="https://latex.codecogs.com/png.latex?%5Chat%20q_j"> используются как параметры заряда атомов в ходе МД.</p></li>
</ul></li>
</ol>
<div class="no-row-height column-margin column-container"><div id="fn14"><p><sup>14</sup>&nbsp;штраф за отклонение оценок от некоторых грубых, но разумных значений</p></div></div></section>
<section id="sec-ff-differences" class="level3 page-columns page-full">
<h3 class="anchored" data-anchor-id="sec-ff-differences">Различия классических силовых полей</h3>
<p>Принципы, лежащие в основе построения силовых полей, во многом близки, однако стоит отметить и различия <span class="citation" data-cites="Guvench2008">[6]</span>.</p>
<div class="no-row-height column-margin column-container"><div id="ref-Guvench2008" class="csl-entry">
<div class="csl-left-margin">6. </div><div class="csl-right-inline">Guvench O., MacKerell A.D. <a href="https://doi.org/10.1007/978-1-59745-177-2_4">Comparison of protein force fields for molecular dynamics simulations</a> // Methods Mol Biol. 2008. Vol. 443. P. 63–88.</div>
</div></div><ol type="1">
<li><p>В некоторых СП семейств <code>OPLS</code>, <code>GROMOS</code> и <code>CHARMM</code> неполярные атомы водорода, например, при алифатических атомах углерода, опускаются, т.е. группа <img src="https://latex.codecogs.com/png.latex?%5Ctext%7B-CH%7D_2%5Ctext%7B-%7D"> представляется одним псевдоатомом углерода, его масса, заряд и другие параметры разработаны так, чтобы в МД походить на метиленовую группу. С одной стороны это ухудшает качество модели, с другой позволяет не тратить время на расчёт иногда не слишком важных взаимодействий. Сообщается, что в этом подходе число вычислений может уменьшаться до 10 раз. <span class="citation" data-cites="Kmiecik2016">[7, с. 7903]</span></p></li>
<li><p>В СП для описания плоских групп вводятся псевдоторсионные углы <img src="https://latex.codecogs.com/png.latex?%5Cxi">, призванные удерживать 4 произвольных атома в одной плоскости. В полях семейств <code>AMBER</code> и <code>OPLS-AA</code> потенциал, накладываемый на этот угол имеет периодический характер <span class="citation" data-cites="amber21">[8, с. 275]</span>: <img src="https://latex.codecogs.com/png.latex?%0AU%20%5Cpropto%201%20+%20%5Ccos%20(n%20(%5Cxi%20-%20%5Cbar%20%5Cxi))%20%5Cqquad%20n%20=%202,%0A"> в полях <code>CHARMM</code> и <code>GROMOS</code> — вводится отдельный параболический потенциал аналогично с длинами связей и валентными углами <span class="citation" data-cites="gromacs2022">[9, ур. 196]</span>: <img src="https://latex.codecogs.com/png.latex?%0AU%20%5Cpropto%20(%5Cxi%20-%20%5Cbar%20%5Cxi)%5E2.%0A"></p></li>
<li><p>СП семейства <code>CHARMM</code> имеют дополнительный терм — т.н. потенциал Юри-Брэдли <span class="citation" data-cites="namd-potential">[10]</span>. Для описания напряжения, возникающего для тройки ковалентно связанных атомов <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BX-Y-Z%7D">, вводится 2 параболических потенциала: первый, на величину валентного угла <img src="https://latex.codecogs.com/png.latex?%5Ctheta%20=%20%5Cwidehat%7B%5Crm%7BX,%20Y,%20Z%7D%7D">, второй на расстояние <img src="https://latex.codecogs.com/png.latex?r_t%20=%20%7C%5Cbf%20r_%7B%5Crm%20X%7D%20-%20%5Cbf%20r_%7B%5Crm%20Z%7D%7C"> между терминальными атомами в тройке. Таким образом, потенциал валентного угла <img src="https://latex.codecogs.com/png.latex?%0AU_a%20=%20k_%5Ctheta%20(%5Ctheta%20-%20%5Cbar%20%5Ctheta)%5E2%20+%20k_t%20(r_t%20-%20%5Cbar%20r_t)%5E2,%0A"> добавление новых степеней свободы в СП мотивировано попыткой лучшего описания колебательный спектров.</p></li>
<li><p>Вид потенциала взаимодействия двух ковалентно несвязанных атомов <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BX%7D"> и <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BY%7D"> задаются <a href="../../posts/2021-01-00-molecular-interactions/index.html#eq-U-LJ">уравнением Ленарда — Джонса</a>. Его можно переформулировать через параметры глубины потенциальной ямы (энергии взаимодействия) <img src="https://latex.codecogs.com/png.latex?%5Cepsilon_%7B%5Cce%20X,%20%5Cce%20Y%7D"> и соответствующего ей расстояния <img src="https://latex.codecogs.com/png.latex?r%5E%7B%5Cmin%7D_%7B%5Cce%20X,%5Cce%20Y%7D">: <img src="https://latex.codecogs.com/png.latex?%0AU_%5Ctext%7BLJ%7D(r)%20=%20%5Cepsilon_%7B%5Cce%20X,%20%5Cce%20Y%7D%20%5Cleft%5C%7B%20%5Cleft(%5Cdfrac%7Br%5E%5Ctext%7Bmin%7D_%7B%5Cce%20X,%20%5Cce%20Y%7D%7D%7Br%7D%5Cright)%5E%7B12%7D%20-%202%20%5Cleft(%5Cdfrac%7Br%5E%5Ctext%7Bmin%7D_%7B%5Cce%20X,%20%5Cce%20Y%7D%7D%7Br%7D%20%5Cright)%5E6%20%5Cright%5C%7D.%0A"> Если природа взаимодействующих атомов идентична (<img src="https://latex.codecogs.com/png.latex?%5Ctext%7BX%7D%20=%20%5Ctext%7BY%7D">), то параметры <img src="https://latex.codecogs.com/png.latex?%5Cepsilon_%7B%5Cce%20X,%20%5Cce%20X%7D"> и <img src="https://latex.codecogs.com/png.latex?r%5E%7B%5Cmin%7D_%7B%5Cce%20X,%20%5Cce%20X%7D"> берутся непосредственно из СП для соответствующего <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BX%7D"> типа атома, если <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BX%7D%20%5Cne%20%5Ctext%7BY%7D">, то параметры попарных взаимодействий необходимо вычислять. В силовых полях <code>OPLS-AA</code> и <code>GROMOS</code> они вычисляются как среднее геометрическое <img src="https://latex.codecogs.com/png.latex?%0A%5Cepsilon_%7B%5Cce%20X,%5Cce%20Y%7D%20:=%20%5Csqrt%7B%5Cepsilon_%7B%5Cce%20X,%20%5Cce%20X%7D%20%5Ccdot%20%5Cepsilon_%7B%5Cce%20Y,%5Cce%20Y%7D%7D,%20%5Cqquad%20r%5E%7B%5Cmin%7D_%7B%5Cce%20X,%5Cce%20Y%7D%20:=%20%5Csqrt%7Br%5E%7B%5Cmin%7D_%7B%5Cce%20X,%5Cce%20X%7D%20%5Ccdot%20r%5E%7B%5Cmin%7D_%7B%5Cce%20Y,%5Cce%20Y%7D%7D,%0A"> в силовых полях <code>CHARMM</code> и <code>AMBER</code> аналогично вычисляется <img src="https://latex.codecogs.com/png.latex?%5Cepsilon_%7B%5Cce%20X,%5Cce%20Y%7D">, а <img src="https://latex.codecogs.com/png.latex?r%5E%7B%5Cmin%7D_%7B%5Cce%20X,%5Cce%20Y%7D"> как среднее арифметическое: <img src="https://latex.codecogs.com/png.latex?%0Ar%5E%7B%5Cmin%7D_%7B%5Cce%20X,%5Cce%20Y%7D%20=%20%5Cdfrac%201%202%20(%20r%5E%7B%5Cmin%7D_%7B%5Cce%20X,%5Cce%20X%7D%20+%20r%5E%7B%5Cmin%7D_%7B%5Cce%20Y,%5Cce%20Y%7D%20).%0A"></p></li>
<li><p>Поскольку параметры потенциала вычисляются для пар разных атомов по весьма простым правилам, для лучшей воспроизводимости экспериментальных барьеров вращения торсионных углов в разных СП вводятся масштабирующие множители к <strong>1-4 взаимодействиям</strong>. В <code>AMBER</code> величина кулоновских и леннардджонсоновских взаимодействия умножаются на <img src="https://latex.codecogs.com/png.latex?1%20/%202"> и <img src="https://latex.codecogs.com/png.latex?5%20/%206"> соответственно, в <code>OPLS-AA</code> оба на <img src="https://latex.codecogs.com/png.latex?1%20/%202">, <code>GROMOS</code> и <code>CHARMM</code> применяют разные корректировки к разным парам атомов.</p></li>
<li><p>Для лучшего описания пар торсионных углов <img src="https://latex.codecogs.com/png.latex?%5Calpha"> и <img src="https://latex.codecogs.com/png.latex?%5Cbeta"> в <code>CHARMM</code> (и затем в других СП) появились CMAP<sup>15</sup> — дискретные энергетические поправки, представляющий собой матрицы из чисел для всех значений пары двугранных углов <img src="https://latex.codecogs.com/png.latex?%5Calpha"> и <img src="https://latex.codecogs.com/png.latex?%5Cbeta"> с шагом <img src="https://latex.codecogs.com/png.latex?15%5E%5Ccirc">, т.е. <img src="https://latex.codecogs.com/png.latex?%0A(%5Cdelta%20U)_%7Bi,j%7D%20%5Cquad%20%5Ccolon%20%5Cquad%20%5Calpha_i,%20%5Cbeta_j%20=%20-180%5E%5Ccirc,%20-165%5E%5Ccirc,%20%5Ccdots,%20+165,%20+180%5E%5Ccirc,%0A"> на основе этой сетки конструируется непрерывная функция, которая используется для коррекции энергии <span class="citation" data-cites="Bjelkmar2010">[11]</span>.</p></li>
</ol>
<div class="no-row-height column-margin column-container"><div id="ref-amber21" class="csl-entry">
<div class="csl-left-margin">8. </div><div class="csl-right-inline">Amber 2021 Reference Manual. 2021.</div>
</div><div id="ref-gromacs2022" class="csl-entry">
<div class="csl-left-margin">9. </div><div class="csl-right-inline">Bauer P., Hess B., Lindahl E. <a href="https://doi.org/10.5281/zenodo.6103568">GROMACS 2022 manual</a>. Zenodo, 2022.</div>
</div><div id="ref-namd-potential" class="csl-entry">
<div class="csl-left-margin">10. </div><div class="csl-right-inline">Potential energy functions [Electronic resource]. URL: <a href="https://www.ks.uiuc.edu/Research/namd/2.9/ug/node22.html">https://www.ks.uiuc.edu/Research/namd/2.9/ug/node22.html</a> (accessed: 29.04.2022).</div>
</div><div id="fn15"><p><sup>15</sup>&nbsp;Correction MAP</p></div><div id="ref-Bjelkmar2010" class="csl-entry">
<div class="csl-left-margin">11. </div><div class="csl-right-inline">Bjelkmar P. et al. <a href="https://doi.org/10.1021/ct900549r">Implementation of the CHARMM Force Field in GROMACS: Analysis of Protein Stability Effects from Correction Maps, Virtual Interaction Sites, and Water Models</a> // J. Chem. Theory Comput. 2010. Vol. 6, № 2. P. 459–466.</div>
</div></div></section>
</section>
<section id="sec-water-models" class="level2 page-columns page-full" data-number="2">
<h2 data-number="2" class="anchored" data-anchor-id="sec-water-models"><span class="header-section-number">2</span> Модели воды</h2>
<p>Молекула воды обладает высоким дипольным моментом (в следствие анизотропии, вызванной неподелёнными электронными парами, и высокой электроотрицательностью кислорода) и способна образовывать 4 водородные связи: 2 будучи донором, 2 как акцептор. Помимо этого, объёмные электронные облака атома кислорода в окружении молекул с высоким дипольным моментом подвергаются поляризации. Классические СП не могут учесть явно ни наличие неподелённых электронных пар, ни поляризацию, поэтому для представления молекул воды были разработаны специальные подходы <span class="citation" data-cites="Onufriev2018">[12]</span>.</p>
<div class="no-row-height column-margin column-container"><div id="ref-Onufriev2018" class="csl-entry">
<div class="csl-left-margin">12. </div><div class="csl-right-inline">Onufriev A.V., Izadi S. <a href="https://doi.org/10.1002/wcms.1347">Water models for biomolecular simulations</a> // WIREs Computational Molecular Science. John Wiley &amp; Sons, Ltd, 2018. Vol. 8, № 2. P. e1347.</div>
</div></div><section id="tipnp" class="level3 page-columns page-full">
<h3 class="anchored" data-anchor-id="tipnp"><code>TIP</code><img src="https://latex.codecogs.com/png.latex?n"><code>P</code></h3>
<p>Как было сказано ранее, обычно в МД большая часть атомов системы относится к растворителю, поэтому существует большой соблазн оптимизировать его модель так, чтобы большая часть вычислительных ресурсов не уходила на рассчёт взаимодействий между молекулами воды. Наиболее часто используемое семейство СП для описания воды — <code>TIP</code><img src="https://latex.codecogs.com/png.latex?n"><code>P</code><sup>16</sup>, где <img src="https://latex.codecogs.com/png.latex?n%20=%202..6"> — число материальных точек, аппроксимирующих электронную плотность молекулы воды; взаимное расположение этих точек фиксировано, т.е. жёсткость связей и валентных углов не берётся в расчёт для экономии вычислительных ресурсов; в межмолекулярном взаимодействии участвует только атом кислорода, который имеет потенциал Ленарда — Джонса, другие частицы в системе его не имеют<sup>17</sup>.</p>
<div class="no-row-height column-margin column-container"><div id="fn16"><p><sup>16</sup>&nbsp;Transferable Intermolecular Potential with <img src="https://latex.codecogs.com/png.latex?n"> Points</p></div><div id="fn17"><p><sup>17</sup>&nbsp;в более общих реализациях <code>TIP</code><img src="https://latex.codecogs.com/png.latex?n">`P$, потенциал можно задавать для всех частиц в молекуле</p></div><div id="ref-Jorgensen1981" class="csl-entry">
<div class="csl-left-margin">13. </div><div class="csl-right-inline">Jorgensen W.L. <a href="https://doi.org/10.1021/ja00392a016">Quantum and statistical mechanical studies of liquids. 10. Transferable intermolecular potential functions for water, alcohols, and ethers. Application to liquid water</a> // J. Am. Chem. Soc. American Chemical Society, 1981. Vol. 103, № 2. P. 335–340.</div>
</div><div id="fn18"><p><sup>18</sup>&nbsp;иными словами, анизотропии электронной плотности</p></div><div id="ref-Jorgensen1983" class="csl-entry">
<div class="csl-left-margin">14. </div><div class="csl-right-inline">Jorgensen W.L. et al. <a href="https://doi.org/10.1063/1.445869">Comparison of simple potential functions for simulating liquid water</a> // J. Chem. Phys. American Institute of Physics, 1983. Vol. 79, № 2. P. 926–935.</div>
</div></div><p>Первой моделью была <code>TIP3P</code> <span class="citation" data-cites="Jorgensen1981">[13]</span>, в ней молекула воды описывается тремя зарядами, находящимися в центре трёх её атомов. Затем для учёта квадрупольного момента<sup>18</sup> была предложена <span class="citation" data-cites="Jorgensen1983">[14]</span> модель <code>TIP4P</code>, в которой вводится четвёртый заряд, помещаемый близко к условному центру молекулы. Наконец, появилась модель <code>TIP5P</code>, в которой каждой неподелённой паре кислорода приписывается нематериальный заряд. Существуют также <code>TIP2P</code>, в которой молекула воды описывается простым диполем, и <code>TIP6P</code> — комбинация подходов <code>TIP5P</code> и <code>TIP4P</code>, т.е. 2 дополнительных заряда аппроксимируют электронную плотность позади атома кислорода и 1 — около геометрического центра.</p>
<p>Несмотря на то что усложнение модели приводит к повышению её точности и лучшему описанию экспериментальных данных, модель воды <code>TIP3P</code> сейчас используется наиболее часто ввиду того, что при достаточно точном описании позволяет существенно сократить затраты на расчёты.</p>
<p>В подходе к разработке СП (§&nbsp;1.1), когда результаты расчётов итеративно подводят под согласие с термодинамическими или спектроскопическими данными, параметры СП неизбежно зависят от выбранной модели воды, что приводит к концепции <em>самосогласованности</em> силовых полей: поскольку все числовые параметры находятся в сложной зависимости друг от друга, рекомендуется использовать только те наборы параметров, которые использовались при создании СП и рекомендуются его разработчиками. Например, если СП для молекулы белка было разработано для использования с моделью воды <code>TIP3P</code>, то использование модели <code>TIP6P</code> в нормальном случае приведёт к ухудшению результатов, поскольку СП белка было оптимизировано для работы с более простой моделью растворителя.</p>
</section>
<section id="opc" class="level3 page-columns page-full">
<h3 class="anchored" data-anchor-id="opc"><code>OPC</code></h3>
<p>Геометрия молекулы воды в моделях <code>TIP</code><img src="https://latex.codecogs.com/png.latex?n"><code>P</code> берётся из геометрии молекулы в газовой фазе. Иной подход был использован при разработке модели <code>OPC</code><sup>19</sup>, геометрия которой была <em>оптимизирована</em> с одним лишь ограничением — в группе симметрии <img src="https://latex.codecogs.com/png.latex?C_%7B2v%7D">. Как и <code>TIP4P</code> молекула воды в <code>OPC</code> состоит из 4х точек: условного атома кислорода, создающего потенциал Леннарда — Джонса, но <strong>не обладающего зарядом</strong>, и 3х точек (условно, двух водородов и одного кислорода), аппроксимирующих электростатический потенциал, но не имеющих параметров вандерваальсовых взаимодействий. Таким образом, заряд атома кислорода находится не в его центре. Модель <code>OPC</code> хорошо воспроизводит рассчитанный квантовыми методами распределение заряда и физические свойства жидкой воды и в большинстве случаев показывает себя лучше, чем <code>TIP3P</code>. Разработчики СП <code>ff19SB</code> (семейство <code>AMBER</code>) использовали <code>OPC</code> при разработке и рекомендуют использовать при расчётах.</p>
<div class="no-row-height column-margin column-container"><div id="fn19"><p><sup>19</sup>&nbsp;Optimal Point Charges</p></div></div></section>
</section>
<section id="неклассические-силовые-поля" class="level2 page-columns page-full" data-number="3">
<h2 data-number="3" class="anchored" data-anchor-id="неклассические-силовые-поля"><span class="header-section-number">3</span> Неклассические силовые поля</h2>
<section id="sec-polarizable-ff" class="level3 page-columns page-full">
<h3 class="anchored" data-anchor-id="sec-polarizable-ff">Поляризуемые силовые поля</h3>
<p>На атомных масштабах представление атома в виде материальной точки может оказаться слишком простым. Тот факт, что электронная плотность динамически подстраивается под влияние окружающего поля и атомного ядра приводит к явлению анизотропии, которое невозможно описать в рамках классических силовых полей. Для учёта этого эффекта разработан ряд подходов <span class="citation" data-cites="Jing2019">[15]</span>, которые, однако, на практике применяются не очень часто ввиду того, что требуют бóльших вычислений, но с каждым годом использование этих методов становится всё более оправданным <span class="citation" data-cites="Baker2015">[16]</span>.</p>
<div class="no-row-height column-margin column-container"><div id="ref-Jing2019" class="csl-entry">
<div class="csl-left-margin">15. </div><div class="csl-right-inline">Jing Z. et al. <a href="https://doi.org/10.1146/annurev-biophys-070317-033349">Polarizable force fields for biomolecular simulations: Recent advances and applications</a> // Annual Review of Biophysics. 2019. Vol. 48, № 1. P. 371–394.</div>
</div><div id="ref-Baker2015" class="csl-entry">
<div class="csl-left-margin">16. </div><div class="csl-right-inline">Baker C.M. <a href="https://doi.org/10.1002/wcms.1215">Polarizable force fields for molecular dynamics simulations of biomolecules</a> // WIREs Comput Mol Sci. 2015. Vol. 5, № 2. P. 241–254.</div>
</div></div><p>Полная энергия электростатического взаимодействия <img src="https://latex.codecogs.com/png.latex?%0AE_t%20=%20E_q%20+%20E_p,%0A"> где <img src="https://latex.codecogs.com/png.latex?E_q"> — сумма кулоновских потенциалов, <img src="https://latex.codecogs.com/png.latex?E_p"> — работа по перераспределению индуцированных зарядов, вид которой (обычно квадратичный) в разных подходах различен.</p>
<div id="tbl-ff-polarizable" class="quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-tbl figure">
<figcaption class="quarto-float-caption-top quarto-float-caption quarto-float-tbl" id="tbl-ff-polarizable-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Table&nbsp;2: Поляризуемые силовые поля
</figcaption>
<div aria-describedby="tbl-ff-polarizable-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<table class="caption-top table">
<colgroup>
<col style="width: 22%">
<col style="width: 23%">
<col style="width: 54%">
</colgroup>
<thead>
<tr class="header">
<th>силовое поле</th>
<th>метод</th>
<th>пакет ПО</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td><code>AMBER</code></td>
<td>инд. диполи</td>
<td><code>AMBER</code></td>
</tr>
<tr class="even">
<td><code>AMOEBA</code></td>
<td>инд. диполи</td>
<td><code>AMBER</code>, <code>TINKER</code>, <code>OpenMM</code></td>
</tr>
<tr class="odd">
<td><code>CHARMM-Drude</code></td>
<td>«заряды на пружинах»</td>
<td><code>AMBER</code>, <code>CHARMM</code>, <code>NAMD</code>, <code>GROMACS</code>, <code>OpenMM</code></td>
</tr>
<tr class="even">
<td><code>CHARMM-FQ</code></td>
<td>колебл. заряды</td>
<td><code>CHARMM</code></td>
</tr>
<tr class="odd">
<td><code>SIBRA</code></td>
<td>инд. диполи</td>
<td><code>TINKER</code></td>
</tr>
<tr class="even">
<td><code>ABEEM</code><img src="https://latex.codecogs.com/png.latex?%5Csigma%20%5Cpi"></td>
<td>колебл. заряды</td>
<td><code>TINKER</code></td>
</tr>
</tbody>
</table>
</div>
</figure>
</div>
<section id="колеблющиеся-заряды" class="level4">
<h4 class="anchored" data-anchor-id="колеблющиеся-заряды">Колеблющиеся заряды<sup>20</sup></h4>
<p>В методе колеблющихся зарядов взаимодействие между атомами рассчитывается аналогично тому, как это реализовано в неполяризуемых СП. Отличие заключается в том, что частичные атомные заряды получают свои степени свободы в уравнении движения и могут перетекать по связям в молекулярном графе, причём это реализуется непосредственно в СП: заряду приписывается некоторая инертность (аналог массы), и заряд, участвуя во взаимодействиях, испытывает на себе влияние других зарядов и, соответственно, стремится выгодно перераспределиться в молекуле. <img src="https://latex.codecogs.com/png.latex?%0AE_p%20:=%20%5Csum_i%20(%5Cchi_i%20q_i%20+%20%5Ceta_i%20q_i%5E2),%0A"> где <img src="https://latex.codecogs.com/png.latex?%5Cchi"> и <img src="https://latex.codecogs.com/png.latex?%5Ceta"> — электроотрицательность (<img src="https://latex.codecogs.com/png.latex?%5Cpartial%20E_p%20/%20%5Cpartial%20q">) и жёсткость (<img src="https://latex.codecogs.com/png.latex?%5Cpartial%5E2%20E_p%20/%20%5Cpartial%20q%5E2">) соответственно. Этот подход применим только для описания поляризации, возникающей вдоль химической связи, и, например, не способен описать перераспределение электронной плотности в <img src="https://latex.codecogs.com/png.latex?%5Cpi">-облаках ароматических колец.</p>
</section>
<div class="no-row-height column-margin column-container"><div id="fn20"><p><sup>20</sup>&nbsp;англ. fluctuating charges</p></div><div id="fn21"><p><sup>21</sup>&nbsp;англ. Drude oscillators или <em>charges on springs</em></p></div></div><section id="заряды-на-пружинах" class="level4">
<h4 class="anchored" data-anchor-id="заряды-на-пружинах">«Заряды на пружинах»<sup>21</sup></h4>
<p>В модели заряда на пружинах каждый атом представляется в виде пары зарядов: один находится в центре атома и обладает массой, а второй нематериальный заряд крепится к первому с помощью относительно короткой пружины жёсткость <img src="https://latex.codecogs.com/png.latex?k">. В ходе расчёта заряд частиц остаётся постоянным, но его распределение в пространстве меняется вследствие того, что нематериальный заряд свободно перемещается относительно центрального на величину смещения <img src="https://latex.codecogs.com/png.latex?%5Cbf%20d">, подстраиваясь под внешнее поле (и создавая дипольный момент): <img src="https://latex.codecogs.com/png.latex?%0AE_p%20:=%20%5Cdfrac%201%202%20%5Csum_i%20k_i%20%5Cbf%20d_i%5E2.%0A"> В отличие от метода колеблющихся зарядов, в этом приближении делается попытка описания электронной плотности молекулы, а не просто перераспределения частичных зарядов.</p>
</section>
<section id="индуцируемые-диполи" class="level4">
<h4 class="anchored" data-anchor-id="индуцируемые-диполи">Индуцируемые диполи</h4>
<p>В методе индуцированного диполя каждому атому приписывается поляризуемость <img src="https://latex.codecogs.com/png.latex?%5Calpha"> и динамически вычисляется индуцированный дипольный момент: <img src="https://latex.codecogs.com/png.latex?%0A%5Cmu%20=%20%5Calpha%20E,%0A"> где <img src="https://latex.codecogs.com/png.latex?E"> — напряжённость внешнего поля и <img src="https://latex.codecogs.com/png.latex?%0AE_p%20=%20%5Cfrac%7B1%7D%7B2%7D%20%5Csum_i%20%5Cfrac%7B%5Cboldsymbol%20%5Cmu_i%5E2%7D%7B%5Calpha_i%7D.%0A"> В этом подходе явным образом вводится новая сущность — диполь, соответственно СП должно включать термы для описания взаимодействий диполь—диполь и диполь—заряд.</p>
</section>
</section>
<section id="sec-coarse-grained" class="level3 page-columns page-full">
<h3 class="anchored" data-anchor-id="sec-coarse-grained">Крупнозернистые силовые поля</h3>
<p>Поляризуемые СП стремятся пожертвовать скоростью в пользу точности, но даже классические СП зачастую слишком ресурсозатратны для моделирования надмолекулярных систем: клеточных мембран, цепей нуклеиновых кислот и полисахаридов, и даже белков. В §&nbsp;1.4 отмечалось, что неполярные атомы водорода для экономии вычислительных ресурсов могут опускаться, однако в подходе крупнозернистых<sup>22</sup> (КЗ) полей — целые группы атомов упрощаются до одного псевдоатома <span class="citation" data-cites="Kmiecik2016">[7]</span>.</p>
<div class="no-row-height column-margin column-container"><div id="fn22"><p><sup>22</sup>&nbsp;англ. <em>coarse-grained</em> force fields</p></div></div><p>Важной задачей является моделирования сворачивания белков, однако при текущей доступности ресурсов классическая МД ограничена размером системы и временем её моделирования, поэтому изучению этим методом поддаётся лишь малое множество объектов — небольшие быстро сворачивающиеся белки; появление КЗ СП обусловлено желанием перенести МД на масштабы и времена бóльших биологических систем.</p>
<div id="fig-coarse-grained-representation" class="quarto-float quarto-figure quarto-figure-center anchored page-columns page-full">
<figure class="quarto-float quarto-float-fig figure page-columns page-full">
<div aria-describedby="fig-coarse-grained-representation-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<a href="coarse-grained-representation.png" class="lightbox" data-gallery="quarto-lightbox-gallery-1" title="Figure&nbsp;1: Представление пептида в различных крупнозернистых подходах @Kmiecik2016"><img src="https://vsheg.com/posts/2021-03-00-force-fields/coarse-grained-representation.png" class="img-fluid figure-img" style="width:50.0%"></a>
</div>
<figcaption class="quarto-float-caption-bottom quarto-float-caption quarto-float-fig" id="fig-coarse-grained-representation-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Figure&nbsp;1: Представление пептида в различных крупнозернистых подходах <span class="citation" data-cites="Kmiecik2016">[7]</span>
</figcaption>
<div class="no-row-height column-margin column-container"><div id="ref-Kmiecik2016" class="csl-entry">
<div class="csl-left-margin">7. </div><div class="csl-right-inline">Kmiecik S. et al. <a href="https://doi.org/10.1021/acs.chemrev.6b00163">Coarse-Grained Protein Models and Their Applications</a> // Chem. Rev. American Chemical Society, 2016. Vol. 116, № 14. P. 7898–7936.</div>
</div></div></figure>
</div>
<p>На примере белков отметим ряд общих подходов, используемых при построении крупнозернистых силовых полей:</p>
<ol type="1">
<li><p>Группы атомов объединяются в один псевдоатом, так полипептидная цепь на разных уровнях детализации может представлять собой: <em>а</em>) полноатомную цепь с опущенными неполярными атомами водорода; <em>б</em>) идеализированную цепь, состоящую из «бусин»<sup>23</sup> (нескольких атомов, слитых в один псевдоатом) — аминокислотных остовов, к которым крепятся 2 типа бусин боковых остатков (полярные и неполярные); в) цель состоящую из одинаковых бусин. Так же возможно большое число промежуточных вариантов ⬟&nbsp;1.</p></li>
<li><p>Псевдоатомы параметризуется так, чтобы походить в МД на исходную группу. Для этого применяются два подхода. В первом: данные, полученные из моделирования бековой глобулы с классическим силовым полем, используются для разработки необходимых параметров, при этом используется итеративная процедура, в которой результат моделирования КЗ ансамбля последовательно подводится под воспроизведение свойств классического; в качестве целевой метрики может использоваться <em>радиальная функция распределения</em> <img src="https://latex.codecogs.com/png.latex?%0A%5Crho%20(r)%20%5Cpropto%20%5Cdfrac%201%20%7B4%20%5Cpi%20r%5E2%7D%20%5Cdfrac%7B%5Cmathrm%7Bd%7D%20N(r)%7D%7B%5Cmathrm%7Bd%7D%20r%7D,%0A"> показывающая пространственное распределение числа частиц <img src="https://latex.codecogs.com/png.latex?N"> на расстоянии <img src="https://latex.codecogs.com/png.latex?r"> от выбранной точки<sup>24</sup>, эта функция ёмко описывает порядок между частицами в системе. Во втором подходе не используются косвенные данные, полученные из ансамблей более точных моделей МД, вместо этого используются арсенал методов, применяемый при построении классических силовых полей: данные квантового моделирования и эксперимента.</p></li>
<li><p>Атомы в классических моделях существуют в непрерывном пространстве, КЗ модели могут вводить дискретные пространства, или <em>решётки</em>, т.е. атомы в них могут находиться только в конечном числе точек пространства, что значительно ускоряет время расчёта.</p></li>
<li><p>Длина связи между псеводоатомами в КЗ моделях может быть фиксированной, т.е. изменение конформации белка будет возможно только за счёт вращения вокруг связи.</p></li>
<li><p>Степени свободы валентных углов также могут ограничиваться, например, положение, которое боковая цепь занимает по отношению к основной цепи, может быть детерминированной функций от координат псевдоатомов, например, псевдоатом боковой группы может лежать на биссектрисе угла, образованного тремя атомами остова.</p></li>
</ol>
<div class="no-row-height column-margin column-container"><div id="fn23"><p><sup>23</sup>&nbsp;англ. beads</p></div><div id="fn24"><p><sup>24</sup>&nbsp;на практике может строиться гистограмма всех попарных расстояний между частицами в системе, полученное распределение и есть радиальная функция распределения</p></div></div><p>Следует подчеркнуть, что в КЗ подходах можно получать точные оценки свободной энергии, однако при оценке энтропийного вклада требуется внесение поправок для учёта меньшего числа частиц в системе.</p>



</section>
</section>


<div id="remark42">

</div> ]]></description>
  <category>molecular dynamics</category>
  <category>russian</category>
  <guid>https://vsheg.com/posts/2021-03-00-force-fields/</guid>
  <pubDate>Mon, 01 Mar 2021 00:00:00 GMT</pubDate>
</item>
<item>
  <title>Оценка термодинамических микро- и макропараметров в классической молекулярной динамике</title>
  <link>https://vsheg.com/posts/2021-02-00-micro--and-macroparameters/</link>
  <description><![CDATA[ 




<p>Для описания МД систем применяют методы статистической механики, биологические системы обычно моделируют в NPT-ансамбле, в нём число частиц, давление и температура принимаются неизменными.</p>
<section id="sec-temperature" class="level2 page-columns page-full" data-number="1">
<h2 data-number="1" class="anchored" data-anchor-id="sec-temperature"><span class="header-section-number">1</span> Температура</h2>
<p>Мгновенную полную энергию системы <img src="https://latex.codecogs.com/png.latex?E"> можно определить простым суммированием по кинетическим энергиям и по полным потенциалам взаимодействия двух частиц: <img src="https://latex.codecogs.com/png.latex?%0AE(t)%20=%20%5Csum_%7Bi%7D%20%5Cfrac%7Bm_%7Bi%7D%20%5Cmathbf%7Bv%7D_%7Bi%7D%5E%7B2%7D(t)%7D%7B2%7D%20+%20%5Csum_%7Bi%20%3C%20j%7D%20U_%7Bi,j%7D,%0A"> каждое парное взаимодействие входит в выражение лишь единожды.</p>
<p>Температура непосредственно связана со средней (по частицам) кинетической энергией, приходящейся на одну степень свободы: <span id="eq-T-instant"><img src="https://latex.codecogs.com/png.latex?%0AT(t)%20=%20%5Cfrac%7B2%7D%7B3kN%7D%20%5Csum_%7Bi%7D%20%5Cfrac%7Bm_%7Bi%7D%20%5Cmathbf%7Bv%7D_%7Bi%7D%5E%7B2%7D(t)%7D%7B2%7D,%0A%5Ctag%7B1%7D"></span> видно, что температура неявным образом зависит от времени, что нарушает предпосылки NPT-ансамбля, это противоречие можно устранить введя ограничение на среднюю кинетическую скорость.</p>
<p>Согласно 1, разность мгновенной <img src="https://latex.codecogs.com/png.latex?T(t)"> и фиксированной в ансамбле <img src="https://latex.codecogs.com/png.latex?%5CTheta"> температур <img src="https://latex.codecogs.com/png.latex?%0A%5CDelta%20T%20=%20T(t)%20-%20%5CTheta%20=%20%5Cfrac%7B2%7D%7B3kN%7D%20%5Cleft%5C%7B%20%5Csum_%7Bi%7D%20%5Clambda%5E%7B2%7D%20%5Cmathbf%7Bv%7D_%7Bi%7D%5E%7B2%7D(t)%20-%20%5Csum_%7Bi%7D%20%5Cmathbf%7Bv%7D_%7Bi%7D%5E%7B2%7D(t)%20%5Cright%5C%7D,%0A"> коэффициент <img src="https://latex.codecogs.com/png.latex?%5Clambda"> — некий параметр, показывающий среднее отклонение мгновенных скоростей от ожидаемых в условиях NPT-ансамбля, выделив явно: <img src="https://latex.codecogs.com/png.latex?%0A%5Clambda%20=%20%5Csqrt%7B%5Cfrac%7B%5CTheta%7D%7BT(t)%7D%7D,%0A"> этот параметр масштабирования скоростей включается на каждом шаге интегрирования: <img src="https://latex.codecogs.com/png.latex?%0A%5Cmathbf%7Bv%7D_%7Bi%7D(t%20+%20%5Cdelta%20t)%20%5Cgets%20%5Clambda%20%5Cmathbf%7Bv%7D_%7Bi%7D(t)%20+%20%5Cmathbf%7Ba%7D_%7Bi%7D(t)%20%5Cdelta%20t.%0A"></p>
<p>Существуют и другие подходы поддержания постоянной температуры в системе, они воспроизводят теплообмен с внешним источником тепловой энергии — <em>термостатом</em>, а сами называются <em>методами термостатирования</em>.</p>
<dl class="page-columns page-full">
<dt>Термостат Берендсена <span class="citation" data-cites="Berendsen1984">[1]</span></dt>
<div class="no-row-height column-margin column-container"></div><dd>
так же вводит масштабирующий коэффициент скорости <img src="https://latex.codecogs.com/png.latex?%5Clambda_%5Ctext%7BB%7D"> для каждого шага интегрирования: <img src="https://latex.codecogs.com/png.latex?%5Clambda_%5Ctext%7BB%7D%20=%20%5Csqrt%7B1%20+%20%5Cfrac%7B%5Cdelta%20t%7D%7BQ%7D%20%5Cleft(%20%5Cfrac%7B%5CTheta%7D%7BT(t)%7D%20-%201%20%5Cright)%7D,"> интенсивность теплообмена между системой и термостатом учитывается выбором <img src="https://latex.codecogs.com/png.latex?Q">.
</dd>
<dt>Термостат Нозе-Гувера <span class="citation" data-cites="Nose1984 Hoover1985">[2,3]</span></dt>
<div class="no-row-height column-margin column-container"></div><dd>
модифицирует <a href="../../posts/2021-01-00-molecular-interactions/index.html#eq-newton2law">уравнение движения</a>, масштабируя координаты и скорости системы через параметр <img src="https://latex.codecogs.com/png.latex?%5Clambda_%5Ctext%7BNG%7D%20=%20%5Cfrac%7B1%7D%7BQ%7D%20%5Cleft%5C%7B%20%5Csum_%7Bi%7D%20%5Cfrac%7Bm_%7Bi%7D%20%5Cmathbf%7Bv%7D_%7Bi%7D%5E%7B2%7D(t)%7D%7B2%7D%20-%203kN%5CTheta%20%5Cright%5C%7D,"> где <img src="https://latex.codecogs.com/png.latex?Q"> учитывает интенсивность теплового обмена; задача МД сводится к решению систем уравнений движения вида <img src="https://latex.codecogs.com/png.latex?%5Cfrac%7Bd%5E2%20%5Cmathbf%7Br%7D_%7Bi%7D(t)%7D%7Bdt%5E2%7D%20=%20%5Cfrac%7B%5Cmathbf%7BF%7D_%7Bi%7D%7D%7Bm_%7Bi%7D%7D%20-%20%5Clambda_%5Ctext%7BNG%7D%20%5Cmathbf%7Bv%7D_%7Bi%7D,"> <img src="https://latex.codecogs.com/png.latex?%5Clambda_%5Ctext%7BNG%7D"> по сути является коэффициентом вязкого трения.
</dd>
<dt>Термостат Ланжевена <span class="citation" data-cites="Podryga2014 Davidchack2009 Brunger2020">[4–6]</span></dt>
<div class="no-row-height column-margin column-container"><div id="ref-Podryga2014" class="csl-entry">
<div class="csl-left-margin">4. </div><div class="csl-right-inline">Подрыга В.О., Поляков С.В. Молекулярно-динамическое моделирование процесса установления термодинамического равновесия нагретого никеля // Препринты Института прикладной математики им. М. В Келдыша РАН. 2014. P. 20–41.</div>
</div><div id="ref-Brunger2020" class="csl-entry">
<div class="csl-left-margin">6. </div><div class="csl-right-inline">Brünger A.T. X-plor version 3.1: A system for x-ray crystallography and NMR // Нью-Хейвен (Коннектикут): Yale Univ Press. 1992. P. 39.</div>
</div></div><dd>
основан на уравнениях движения броуновской динамики — вводятся две дополнительные силы: случайная составляющая <img src="https://latex.codecogs.com/png.latex?%5Cmathbf%7Ba%7D">, вызывающая нагрев частиц, и диссипативная сила <img src="https://latex.codecogs.com/png.latex?%5Cmathbf%7Bb%7D">, рассеивающая лишнюю энергию (по сути сила трения). Аналогично уравнению Ньютона, уравнение движения: <img src="https://latex.codecogs.com/png.latex?m_%7Bi%7D%20%5Cfrac%7Bd%5E2%20%5Cmathbf%7Br%7D_%7Bi%7D(t)%7D%7Bdt%5E2%7D%20=%20%5Csum_%7Bi%20%5Cne%20j%7D%20%5Cmathbf%7BF%7D_%7Bi,j%7D(t)%20+%20%5Cmathbf%7Ba%7D_%7Bi%7D%20+%20%5Cmathbf%7Bb%7D_%7Bi%7D%20%5Cquad%20i,j=1..N,"> случайная составляющая распределена нормально: <img src="https://latex.codecogs.com/png.latex?%5Cmathbf%7Ba%7D_%7Bi%7D%20%5Csim%20%5Cmathcal%7BN%7D%20(%5Cmathbf%7B0%7D,%20%5Cboldsymbol%7B%5Csigma%7D_%7Bi%7D)%20%5Cquad%20%5Ctext%7B%D0%B8%7D%20%5Cquad%20%5Csigma_%7Bi%7D%20=%20%5Cfrac%7Bm_%7Bi%7D%20k%20%5CTheta%7D%7B%5Cdelta%20t%20%5Ccdot%20Q%7D,"> где вектора <img src="https://latex.codecogs.com/png.latex?%5Cmathbf%7B0%7D,%20%5Cboldsymbol%7B%5Csigma%7D_%7Bi%7D%20%5Cin%20%5Cmathbb%7BR%7D%5E%7B3%7D">, <img src="https://latex.codecogs.com/png.latex?%5Csigma_%7Bi%7D"> — компонента <img src="https://latex.codecogs.com/png.latex?%5Cboldsymbol%7B%5Csigma%7D">, <img src="https://latex.codecogs.com/png.latex?Q"> — параметр теплового обмена, <img src="https://latex.codecogs.com/png.latex?%5CTheta"> — поддерживаемая температура. Для трения: <img src="https://latex.codecogs.com/png.latex?%5Cmathbf%7Bb%7D_%7Bi%7D%20=%20-Q%20%5Cfrac%7Bm_%7Bi%7D%7D%7B2%7D%20%5Cfrac%7Bd%20%5Cmathbf%7Br%7D_%7Bi%7D%7D%7Bdt%7D.">
</dd>
</dl>
</section>
<section id="sec-pressure" class="level2 page-columns page-full" data-number="2">
<h2 data-number="2" class="anchored" data-anchor-id="sec-pressure"><span class="header-section-number">2</span> Давление</h2>
<p>Для описания макропараметров реальных систем одни параметры раскладывают в степенной ряд по другим, например, по обратным степеням молярного объёма: <img src="https://latex.codecogs.com/png.latex?%0A%5Cfrac%7BP%7D%7BRT%7D%20=%20%5Csum_%7Bn=1%7D%5E%7B%5Cinfty%7D%20%5Cfrac%7BB_%7Bi%7D(T)%7D%7BV_%7Bm%7D%5E%7Bn-1%7D%7D,%0A"> где <img src="https://latex.codecogs.com/png.latex?B_%7Bi%7D(T)"> — функция, зависящая от температуры; такие уравнения называют <em>вириальными</em>. Вириальное уравнение не имеет чёткого физического смысла. Аналогичный подход используется и в МД, здесь мгновенное давление определяется вириальным соотношением <img src="https://latex.codecogs.com/png.latex?%0AP(t)%20=%20%5Cfrac%7B1%7D%7B3V%7D%20%5Csum_%7Bi%7D%20%5Cleft%5C%7B%20%5Cfrac%7B%5Cmathbf%7Bp%7D_%7Bi%7D%5E%7B2%7D(t)%7D%7Bm_%7Bi%7D%7D%20+%20%5Csum_%7Bj%20%5Cne%20i%7D%20%5Cmathbf%7BF%7D_%7Bi%7D(t)%20%5Ccdot%20%5Cmathbf%7Br%7D_%7Bi,j%7D%20%5Cright%5C%7D,%0A"> что, как и в случае температуры, противоречит предпосылкам NPT-ансамбля. Эту проблему решают алгоритмы <em>баростатирования</em>.</p>
<dl class="page-columns page-full">
<dt>Баростат Берендсена <span class="citation" data-cites="Berendsen1984">[1]</span></dt>
<div class="no-row-height column-margin column-container"><div id="ref-Berendsen1984" class="csl-entry">
<div class="csl-left-margin">1. </div><div class="csl-right-inline">Berendsen H.J.C. et al. <a href="https://doi.org/10.1063/1.448118">Molecular dynamics with coupling to an external bath</a> // The Journal of Chemical Physics. 1984. Vol. 81, № 8. P. 3684–3690.</div>
</div></div><dd>
использует <em>принцип локального возмущения</em>, где изменение давления во времени определяется как <img src="https://latex.codecogs.com/png.latex?%5Cfrac%7BdP(t)%7D%7Bdt%7D%20=%20%5Cfrac%7B%5CPhi%20-%20P(t)%7D%7BQ%7D,"> параметр <img src="https://latex.codecogs.com/png.latex?Q"> учитывает интенсивность баростата, <img src="https://latex.codecogs.com/png.latex?%5CPhi"> — поддерживаемое им давление путём изменения размера системы: объём масштабируется с помощью коэффициента <img src="https://latex.codecogs.com/png.latex?%5Cxi_%7BB%7D%20=%20%5Cfrac%7B%5Cbeta_%7BT%7D%7D%7B3Q%7D%20%5Cleft%5C%7B%20P(t)%20-%20%5CPhi%20%5Cright%5C%7D,"> изменение объёма записывается как <span id="eq-delta-V"><img src="https://latex.codecogs.com/png.latex?%5CDelta%20V%20=%20V(t)%20-%20V,%20%5Ctag%7B2%7D"></span> уравнения движения принимают вид: <img src="https://latex.codecogs.com/png.latex?%5Cfrac%7Bd%20%5Cmathbf%7Br%7D_%7Bi%7D(t)%7D%7Bdt%7D%20=%20%5Cmathbf%7Bv%7D_%7Bi%7D%20-%20%5Cxi_%7BB%7D%20%5Cmathbf%7Br%7D_%7Bi%7D.">
</dd>
<dt>Баростат Нозе-Гувера <span class="citation" data-cites="Nose1984 Hoover1985">[2,3]</span></dt>
<div class="no-row-height column-margin column-container"><div id="ref-Nose1984" class="csl-entry">
<div class="csl-left-margin">2. </div><div class="csl-right-inline">Nosé S. <a href="https://doi.org/10.1063/1.447334">A unified formulation of the constant temperature molecular dynamics methods</a> // The Journal of Chemical Physics. 1984. Vol. 81, № 1. P. 511–519.</div>
</div><div id="ref-Hoover1985" class="csl-entry">
<div class="csl-left-margin">3. </div><div class="csl-right-inline">Hoover W.G. <a href="https://doi.org/10.1103/PhysRevA.31.1695">Canonical dynamics: Equilibrium phase-space distributions</a> // Physical Review A. 1985. Vol. 31, № 3. P. 1695–1697.</div>
</div></div><dd>
аналогично вводит масштабирующий множитель: <img src="https://latex.codecogs.com/png.latex?%5Cfrac%7Bd%20%5Cxi_%7B%5Ctext%7BNG%7D%7D%7D%7Bdt%7D%20=%20%5Cfrac%7BV(t)%7D%7BQ%7D%20%5Cleft%5C%7B%20P(t)%20-%20%5CPhi%20%5Cright%5C%7D,"> изменение объёма как в 2, уравнения движения: <img src="https://latex.codecogs.com/png.latex?%5Cfrac%7Bd%5E2%20%5Cmathbf%7Br%7D_%7Bi%7D(t)%7D%7Bdt%5E2%7D%20=%20%5Cfrac%7B%5Cmathbf%7BF%7D_%7Bi%7D%7D%7Bm_%7Bi%7D%7D%20-%20%5Cxi_%7B%5Ctext%7BNG%7D%7D%20%5Cmathbf%7Bv%7D_%7Bi%7D.">
</dd>
<dt>Баростат Ланжевена <span class="citation" data-cites="Feller1995">[7]</span></dt>
<div class="no-row-height column-margin column-container"><div id="ref-Feller1995" class="csl-entry">
<div class="csl-left-margin">7. </div><div class="csl-right-inline">Feller S.E. et al. <a href="https://doi.org/10.1063/1.470648">Constant pressure molecular dynamics simulation: The Langevin piston method</a> // The Journal of Chemical Physics. American Institute of Physics, 1995. Vol. 103, № 11. P. 4613–4621.</div>
</div></div><dd>
основан на уравнениях Ланжевена и броуновской динамике. Принципы, лежащие в основе приведены в §&nbsp;1, ввиду его сложных построений, ограничимся лишь указанием.
</dd>
</dl>
</section>
<section id="размер" class="level2 page-columns page-full" data-number="3">
<h2 data-number="3" class="anchored" data-anchor-id="размер"><span class="header-section-number">3</span> Размер</h2>
<p>Если не наложены ограничения на размеры системы, она сама заполнит предоставленный ей объём, так можно описывать молекулы в вакууме или в газе, однако в ходе такого моделирования частицы разлетятся на огромные расстояния, и нам рано или поздно не хватит размера машинных чисел даже для простого задания координат; поэтому разумным приближением будет введение некой <em>ячейки моделирования</em>, подойдя к границе которой частицы испытают либо упругое соударение, либо их координаты будут транслированы на противоположную сторону этой ячейки.</p>
<p>Периодические граничные условия <span class="citation" data-cites="Bekker2004">[8]</span> могут задаваться прямоугольным параллелепипедом, гексагональной призмой, усечённым октаэдром, ромбическим додекаэдром; непериодические граничные условия можно задавать сферой.</p>
<div class="no-row-height column-margin column-container"><div id="ref-Bekker2004" class="csl-entry">
<div class="csl-left-margin">8. </div><div class="csl-right-inline">Bekker H., Van Den Berg J.P., Wassenaar T.A. <a href="https://doi.org/10.1002/jcc.20050">A method to obtain a near-minimal-volume molecular simulation of a macromolecule, using periodic boundary conditions and rotational constraints</a> // Journal of Computational Chemistry. 2004. Vol. 25, № 8. P. 1037–1046.</div>
</div></div><p>В конденсированных фазах часто присутствует ближний и дальний порядок, это означает, что для описания всей системы достаточно описания небольшой её части. Здесь применение периодичности особенно полезно. Кроме того, за счёт изменения размеров ячейки моделирования возможно поддержание постоянного давления (§&nbsp;2).</p>



</section>

<div id="remark42">

</div> ]]></description>
  <category>molecular dynamics</category>
  <category>russian</category>
  <guid>https://vsheg.com/posts/2021-02-00-micro--and-macroparameters/</guid>
  <pubDate>Mon, 01 Feb 2021 00:00:00 GMT</pubDate>
</item>
<item>
  <title>Молекулярные взаимодействия в классической молекулярной динамике</title>
  <link>https://vsheg.com/posts/2021-01-00-molecular-interactions/</link>
  <description><![CDATA[ 




<section id="sec-motion-equation" class="level2 page-columns page-full" data-number="1">
<h2 data-number="1" class="anchored" data-anchor-id="sec-motion-equation"><span class="header-section-number">1</span> Уравнение движения</h2>
<p>В классической молекулярной динамике (МД) молекулы<sup>1</sup> представляются в виде идеализированных систем, состоящих из материальных точек — абстрактных моделей атомов и ионов. Эти частицы взаимодействуют друг с другом явно, т/е выражения соответствующих сил задаются явно. Полный набор аналитических соотношений вместе со значениями всех необходимых численных параметров, необходимых для расчёта сил, составляет <em>силовое поле</em> (СП), т/е силовое поле — это набор уравнений и констант, описывающих взаимодействия между молекулами.</p>
<div class="no-row-height column-margin column-container"><div id="fn1"><p><sup>1</sup>&nbsp;под молекулами подразумеваются втч атомы и ионы</p></div></div><p>Задачей МД является нахождение траекторий всех <img src="https://latex.codecogs.com/png.latex?N"> частиц, входящих в систему, через решение 2го уравнения динамики Ньютона: <span id="eq-newton2law"><img src="https://latex.codecogs.com/png.latex?%0Am_i%20%5Cfrac%7Bd%5Cmathbf%7Br%7D_i(t)%7D%7Bdt%7D%20=%20%5Csum_%7Bi%20%5Cneq%20j%7D%5Cmathbf%7BF%7D_%7Bi,j%7D(t)%20%5Cquad%20i,j=1..N,%0A%5Ctag%7B1%7D"></span> где <img src="https://latex.codecogs.com/png.latex?m_i"> и <img src="https://latex.codecogs.com/png.latex?%7B%5Cmathbf%20r_%7Bi%7D%7D"> — масса и радиус-вектор <img src="https://latex.codecogs.com/png.latex?i">ой частицы (атома, иона идр), <img src="https://latex.codecogs.com/png.latex?%7B%5Cmathbf%20F%7D_%7Bi,j%7D"> — сила действующая на <img src="https://latex.codecogs.com/png.latex?i">ю частицу со стороны <img src="https://latex.codecogs.com/png.latex?j">ой частицы, величину <img src="https://latex.codecogs.com/png.latex?%7B%5Cmathbf%20F%7D_%7Bi,j%7D"> определяет потенциал: <span id="eq-forceasgrad"><img src="https://latex.codecogs.com/png.latex?%0A%5Cmathbf%7BF%7D_%7Bi,j%7D%20=%20-%5Cnabla%20U_%7Bi,j%7D,%0A%5Ctag%7B2%7D"></span> где <img src="https://latex.codecogs.com/png.latex?U_%7Bi,j%7D"> — потенциал взаимодействия частиц, <img src="https://latex.codecogs.com/png.latex?%5Cnabla"> — оператор набла, <img src="https://latex.codecogs.com/png.latex?%5Cnabla%20U_%7Bi,j%7D">&nbsp;— градиент <img src="https://latex.codecogs.com/png.latex?U_%7Bi,j%7D">.</p>
<p>Полная потенциальная энергия взаимодействия частиц <img src="https://latex.codecogs.com/png.latex?U"> складывается из нескольких составляющих: <span id="eq-md-U"><img src="https://latex.codecogs.com/png.latex?%0AU%20=%20%5Cunderbrace%7BU_b%20+%20U_v%20+%20U_t%20+%20U_f%7D_%7B%5Ctext%7B%D0%BA%D0%BE%D0%B2%D0%B0%D0%BB%D0%B5%D0%BD%D1%82%D0%BD%D1%8B%D0%B5%7D%7D%20+%20%5Cunderbrace%7BU_q%20+%20U_d%7D_%7B%5Ctext%7B%D0%BD%D0%B5%D0%BA%D0%BE%D0%B2%D0%B0%D0%BB%D0%B5%D0%BD%D1%82%D0%BD%D1%8B%D0%B5%7D%7D.%0A%5Ctag%7B3%7D"></span></p>
<p>Далее приводятся конкретные выражения термов из 3, используемые в большинстве подходах МД. В разных СП эти термы могут вычисляться по-разному, однако, различия скорее касаются деталей.</p>
<div class="cell" data-fig-width="100%" data-layout-align="default">
<div class="cell-output-display">
<div>
<p></p><figure class="figure"><p></p>
<div>
<pre class="mermaid mermaid-js">flowchart LR
    I[взаимодействия]
        I --&gt; C[ковалентные]
            C --&gt; P[параболические]
                P --&gt; L(длины связей)
                P --&gt; A(валентные углы)
                P -..-&gt; D(двугранные углы)
            C --&gt; S[ряды]
                S --&gt; D
        I --&gt; N[нековалентные]
            N --&gt; E(электростатические)
            N --&gt; W[вандерваальсовы]
                W --&gt; O(ориентационные)
                W --&gt; Di(дисперсионные)
                W --&gt; In(индукционные)

click L "#sec-bond-lengths"
click A "#sec-valence-angles"
click D "#sec-dihedrals"
click E "#sec-electrostatics"
click W "#sec-vanderwaals"
</pre>
</div>
<p></p></figure><p></p>
</div>
</div>
</div>
</section>
<section id="sec-covalent-interactions" class="level2 page-columns page-full" data-number="2">
<h2 data-number="2" class="anchored" data-anchor-id="sec-covalent-interactions"><span class="header-section-number">2</span> Ковалентные взаимодействия</h2>
<section id="параболические" class="level3 page-columns page-full">
<h3 class="anchored" data-anchor-id="параболические">Параболические</h3>

<div class="no-row-height column-margin column-container"><div class="">
<p>Потенциалы длин связей 4 и валентных углов 5 приближаются законом Гука (параболой), хотя их природе соответствует потенциал Ленарда—Джонса 10. Упрощённые выражения используются из-за простоты их численного вычисления и другой важной особенности: при удалении длины связи <img src="https://latex.codecogs.com/png.latex?l"> от равновесного значения <img src="https://latex.codecogs.com/png.latex?%5Cbar%20l"> на бесконечность, стремительно растёт и соответствующий параболический потенциал <img src="https://latex.codecogs.com/png.latex?U_b%20%5Cpropto%20(l%20-%20%5Cbar%20l)%5E2">. В этом приближении смоделировать разрыв связи невозможно в принципе, и это хорошо — в процессе численного эксперимента целостность молекулы не нарушится. Такой системе не страшны даже высокие температуры.</p>
</div></div><section id="sec-bond-lengths" class="level4">
<h4 class="anchored" data-anchor-id="sec-bond-lengths">Длины связей</h4>
<p>Потенциал — аддитивная величина. Суммарная энергия деформации длин ковалентных связей: <span id="eq-U-bond"><img src="https://latex.codecogs.com/png.latex?U_b%20=%20%5Cfrac%7B1%7D%7B2%7D%20%5Csum_i%20K_%7Bb,i%7D%20(l_i%20-%20%5Cbar%7Bl%7D_i)%5E2,%20%5Ctag%7B4%7D"></span> где <img src="https://latex.codecogs.com/png.latex?i"> — номер связи, <img src="https://latex.codecogs.com/png.latex?K_%7Bb,i%7D"> — эффективная жёсткость гуковской «пружины», <img src="https://latex.codecogs.com/png.latex?l_i"> и <img src="https://latex.codecogs.com/png.latex?%5Cbar%20l_i"> — длина и равновесная длина связи;</p>
</section>
<section id="sec-valence-angles" class="level4">
<h4 class="anchored" data-anchor-id="sec-valence-angles">Валентные углы</h4>
<p><span id="eq-U-valence"><img src="https://latex.codecogs.com/png.latex?U_v%20=%20%5Cfrac%7B1%7D%7B2%7D%5Csum_i%20K_%7Bv,i%7D(%5Calpha_i%20-%20%5Cbar%7B%5Calpha%7D_i)%5E2,%20%5Ctag%7B5%7D"></span> где <img src="https://latex.codecogs.com/png.latex?K_%7Bv,i%7D"> — эффективная упругость валентного угла <img src="https://latex.codecogs.com/png.latex?%5Calpha_i">, <img src="https://latex.codecogs.com/png.latex?%5Cbar%20%5Calpha_i"> — его равновесное значение;</p>
</section>
</section>
<section id="ряды" class="level3 page-columns page-full">
<h3 class="anchored" data-anchor-id="ряды">Ряды</h3>
<section id="sec-dihedrals" class="level4 page-columns page-full">
<h4 class="anchored" data-anchor-id="sec-dihedrals">Торсионные (двугранные) углы</h4>

<div class="no-row-height column-margin column-container"><div class="">
<p>Потенциалы двугранных углов 6 и плоских групп 7 представляются рядами Фурье, как правило, для корректного описания достаточно 4х членов ряда (включая нулевой)</p>
</div></div><p>Периодические потенциалы вращения вокруг простых связей описываемых разложением в ряд Фурье <span id="eq-U-torsion"><img src="https://latex.codecogs.com/png.latex?%0AU_t%20=%20%5Cfrac%7B1%7D%7B2%7D%20%5Csum_i%20%5Csum_l%20K_%7B%5Cphi,l%7D%20%5Cleft(1%20+%20g_%7Bi,l%7D%20%5Ccos(n_%7Bi,l%7D%5Cphi_i)%20%5Cright),%0A%5Ctag%7B6%7D"></span> суммирование ведётся по номерам торсионных углов <img src="https://latex.codecogs.com/png.latex?i"> и гармоникам <img src="https://latex.codecogs.com/png.latex?l">, константа <img src="https://latex.codecogs.com/png.latex?K_%7B%5Cphi,l%7D"> — аналог жёсткости, <img src="https://latex.codecogs.com/png.latex?g_%7Bi,l%7D%20%5Cin%20%5B-1%5C,..%5C,1%5D"> — вклад гармоники, <img src="https://latex.codecogs.com/png.latex?n_%7Bi,l%7D"> — её кратность.</p>
</section>
<section id="sec-flat-angles" class="level4">
<h4 class="anchored" data-anchor-id="sec-flat-angles">Плоские группы</h4>
<p>Для описания плоских фрагментов, например, пептидных связей, достаточно задать необходимое количество двухгранных углов между атомами, от которых требуется находиться в одной плоскости, и приписать соответствующие потенциалы с <em>высоким</em> барьером вращения, препятствующим выходу атомов из плоскости: <span id="eq-U-flat"><img src="https://latex.codecogs.com/png.latex?U_%7Bf%7D%20=%20%5Ccdots,%20%5Ctag%7B7%7D"></span> задаётся аналогично 6, с поправкой на собственную константу <img src="https://latex.codecogs.com/png.latex?K_%7Bf,l%7D">;</p>
</section>
</section>
</section>
<section id="sec-noncovalent-interactions" class="level2 page-columns page-full" data-number="3">
<h2 data-number="3" class="anchored" data-anchor-id="sec-noncovalent-interactions"><span class="header-section-number">3</span> Нековалентные взаимодействия</h2>

<div class="no-row-height column-margin column-container"><div class="">
<p>кулоновские 8, вандерваальсовы 10 и водородные 11 взаимодействия суммируются по принципу «каждый с каждым»</p>
</div></div><section id="sec-electrostatics" class="level4 page-columns page-full">
<h4 class="anchored" data-anchor-id="sec-electrostatics">Кулоновские (электростатические) взаимодействия</h4>
<p><span id="eq-U-coulomb"><img src="https://latex.codecogs.com/png.latex?%0AU_q%20=%20%5Cfrac%7B1%7D%7B4%5Cpi%5Cepsilon%5Cepsilon_0%7D%5Csum_%7Bi%20%3C%20j%7D%5Cfrac%7Bq_i%20q_j%7D%7Br_%7Bi,j%7D%7D,%0A%5Ctag%7B8%7D"></span></p>
<p>здесь и ниже <img src="https://latex.codecogs.com/png.latex?r_%7Bi,j%7D=%7C%7B%5Cmathbf%20r_%7Bi%7D-%7B%5Cmathbf%20r_%7Bj%7D%7C%7D%7D">, <img src="https://latex.codecogs.com/png.latex?q_%7Bi%7D"> и <img src="https://latex.codecogs.com/png.latex?q_%7Bj%7D"> — заряды частиц, <img src="https://latex.codecogs.com/png.latex?%5Cepsilon"> и <img src="https://latex.codecogs.com/png.latex?%5Cepsilon_%7B0%7D"> — диэлектрические проницаемости среды и вакуума, <img src="https://latex.codecogs.com/png.latex?i%20%3C%20j"> подчёркивает, что взаимодействие между двумя частицами считается лишь единожды;</p>

<div class="no-row-height column-margin column-container"><div class="">
<p>Кулоновский потенциал 8 медленно убывает на расстоянии (<img src="https://latex.codecogs.com/png.latex?U_%7Bq%7D%5Cpropto%20r%5E%7B-1%7D">), поэтому нередко применяются 2 подхода для уменьшения учёта этого взаимодействия:</p>
<ul>
<li>вводится <em>радиус отсечения</em> — расстояние за границами которого от попарного суммирования электростатических взаимодействий переходят к <em>суммированию по Эвальду</em> <span class="citation" data-cites="Yeh1999">[1]</span> (обычно применяется для периодических систем в конденсированном состоянии), а порой вовсе пренебрегают этими дальнодействующими взаимодействиями;</li>
<li>диэлектрическая проницаемость вакуума <img src="https://latex.codecogs.com/png.latex?%5Cepsilon_%7B0%7D"> в 8 заменяется на расстояние <img src="https://latex.codecogs.com/png.latex?r">, в результате потенциал спадает быстрее (<img src="https://latex.codecogs.com/png.latex?U_%7Bq%7D%5Cpropto%20r%5E%7B-2%7D">).</li>
<div id="ref-Yeh1999" class="csl-entry">
<div class="csl-left-margin">1. </div><div class="csl-right-inline">Yeh I.C., Berkowitz M.L. <a href="https://doi.org/10.1063/1.479595">Ewald summation for systems with slab geometry</a> // Journal of Chemical Physics. American Institute of Physics, 1999. Vol. 111, № 7. P. 3155–3162.</div>
</div></ul>
<p>Радиус отсечения может вводиться и для иных типов взаимодействий, суммирующихся по принципу «каждый с каждым», всё потому, что асимптотическая сложность подобного суммирования <img src="https://latex.codecogs.com/png.latex?O(N%5E%7B2%7D)"></p>
</div></div></section>
<section id="sec-vanderwaals" class="level4 page-columns page-full">
<h4 class="anchored" data-anchor-id="sec-vanderwaals">Вандерваальсовы взаимодействия</h4>
<p>Простейший диполь состоит из двух материальных точек с одинаковыми по величине разноимёными зарядами (<img src="https://latex.codecogs.com/png.latex?+q"> и <img src="https://latex.codecogs.com/png.latex?-q">), находящихся на расстоянии <img src="https://latex.codecogs.com/png.latex?l"> друг от друга. Для такой системы <em>электрическим</em><sup>2</sup> <em>дипольным моментом</em> называют вектор<sup>3</sup> <img src="https://latex.codecogs.com/png.latex?%0A%5Cmathbf%20p%20=%20q%20%5Cmathbf%20l,%0A"> где <img src="https://latex.codecogs.com/png.latex?%5Cmathbf%20l"> — вектор с началом в <img src="https://latex.codecogs.com/png.latex?-q"> и концом в <img src="https://latex.codecogs.com/png.latex?+q"><sup>4</sup>.</p>
<!-- TODO: add plot -->
<!-- 
#| fig-cap: "Поле, создаваемое диполем: цветом показан потенциал $U_q$, стрелками --- линии напряжённости поля $\\mathbf E$"

import matplotlib.pyplot as plt
import numpy as np
import sympy as sp
from sympy.abc import x, y


# electric potential of a point charge
def phi(x, y):
    return 1 / sp.sqrt(x**2 + y**2)

# total potential
phi_tot = phi(x - 1/3, y) - phi(x + 1/3, y)

# electric field projections
E_x = -phi_tot.diff(x)
E_y = -phi_tot.diff(y)

# convert symbolic expressions to functions
E_x = sp.lambdify((x, y), E_x)
E_y = sp.lambdify((x, y), E_y)
phi_tot = sp.lambdify((x, y), phi_tot)


X, Y = np.meshgrid(np.linspace(-1, 1, 100), np.linspace(-1, 1, 100))

U = E_x(X, Y)
V = E_y(X, Y)
color = phi_tot(X, Y)

plt.imshow(
    color,
    extent=[-1, 1, -1, 1],
    cmap='bwr',
    interpolation='bicubic',
)
plt.streamplot(X, Y, U, V, density=1.5, arrowsize=0.5, linewidth=0.8)
plt.show()
``` -->
<div class="no-row-height column-margin column-container"><div id="fn2"><p><sup>2</sup>&nbsp;ёщё бывает магнитный</p></div><div id="fn3"><p><sup>3</sup>&nbsp;электрический дипольный момент молекул традиционно измеряют в единицах системы СГС — в дебаях (<img src="https://latex.codecogs.com/png.latex?%5Cmathrm%20%D0%94">, <img src="https://latex.codecogs.com/png.latex?%5Cmathrm%20D">), эквивалентной единицей в СИ является метр <img src="https://latex.codecogs.com/png.latex?%5Ctimes"> кулон</p></div><div id="fn4"><p><sup>4</sup>&nbsp;дипольный момент направлен от <img src="https://latex.codecogs.com/png.latex?%5Cominus"> к <img src="https://latex.codecogs.com/png.latex?%5Coplus">, в отличие от линий напряжённости <img src="https://latex.codecogs.com/png.latex?%5Cmathbf%20E"></p></div></div><p>Дипольным моментом обладает любая система зарядов. В общем случае: <img src="https://latex.codecogs.com/png.latex?%0A%5Cmathbf%20p%20=%20%5Csum_i%20q_i%20%5Cmathbf%20r_i,%0A"> где <img src="https://latex.codecogs.com/png.latex?q_i"> — величина <img src="https://latex.codecogs.com/png.latex?i">го заряда, <img src="https://latex.codecogs.com/png.latex?%5Cmathbf%20r_i"> — его положение.</p>
<p>Внешнее электрическое поле может приводить к перераспределению заряда в системе, что повлечёт изменение дипольных моментов. Величину пропорциональности между индуцированным (наведённым) дипольным моментом <img src="https://latex.codecogs.com/png.latex?%5Cmathbf%20p"> и напряжённостью внешнего поля <img src="https://latex.codecogs.com/png.latex?%5Cmathbf%20E"> называют поляризуемостью <img src="https://latex.codecogs.com/png.latex?%5Calpha">: <img src="https://latex.codecogs.com/png.latex?%0A%5Cmathbf%20p%20=%20%5Calpha%20%5Cmathbf%20E.%0A"></p>
<p>Силы межмолекулярного взаимодействия, возникающие в результате взаимодействия диполей (истинных и наведённых) называют силами Ван-дер-Ваальса<sup>5</sup>, их разделяются на 3 типа:</p>
<div class="no-row-height column-margin column-container"><div id="fn5"><p><sup>5</sup>&nbsp;Взяв уравнения состояния <em>идеального газа</em> Ван-дер-Ваальс предложил уравнение для <em>реального</em> газа, добавив 2 параметра (<img src="https://latex.codecogs.com/png.latex?a"> и <img src="https://latex.codecogs.com/png.latex?b">) для учёта притяжения и отталкивания между молекулами: <img src="https://latex.codecogs.com/png.latex?%20%5Cbiggl(%20P%20+%20%5Cunderbrace%7B%5Cfrac%7Ba%7D%7BV_m%5E2%7D%7D_%7BP_i%7D%20%5Cbiggr)%20%5Cleft(V_m%20-%20b%5Cright)%20=%20RT.%20"></p>
<ul>
<li><img src="https://latex.codecogs.com/png.latex?b"> — объём, занимаемый молекулами газа и поэтому недоступный из-за взаимного <strong>отталкивания</strong>.</li>
<li><img src="https://latex.codecogs.com/png.latex?a"> — параметр <strong>притяжения</strong> молекул, который проявляется в возникновении избыточного давлении <img src="https://latex.codecogs.com/png.latex?P_i">: силы межмолекулярного притяжения стремятся собрать газ в меньший объём, они действуют из толщи газа и отсутствуют на стенках. Слагаемое <img src="https://latex.codecogs.com/png.latex?P"> обусловленно столкновениями.</li>
</ul>
</div></div><ol type="1">
<li><strong>ориентационные</strong> (диполь-дипольные) — взаимодействие между двумя истинными диполями;</li>
<li><strong>индукционные</strong> (поляризационные, дебаевские) — между истинным и наведённым диполем;</li>
<li><strong>дисперсионные</strong> (лондоновские) — между двумя наведёнными диполями.</li>
</ol>
<p>В классической МД ориентационную составляющую не требуется описывать специально, поскольку для расчёта сил взаимодействия двух диполей достаточно закона Кулона 8, выражения для потенциала пружины 4 между положительным и отрицательным концами диполя и 2го закона Ньютона 1.</p>
<p>В первом приближении поляризуемостью атомов можно принебречь и не учитывать поляризационные взаимодействия. Биополимеры в основном состоят из слабополяризуемых атомов 1го<sup>6</sup> и 2го периодов: <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BH%7D">, <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BC%7D">, <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BN%7D">, <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BO%7D">; заметной<sup>7</sup> поляризуемостью обладают атомы халькогенов (<img src="https://latex.codecogs.com/png.latex?%5Ctext%7BS%7D">, <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BSe%7D">), тяжёлых галогенов (<img src="https://latex.codecogs.com/png.latex?%5Ctext%7BBr%7D">, <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BI%7D">), <img src="https://latex.codecogs.com/png.latex?d">- и <img src="https://latex.codecogs.com/png.latex?f">-элементов, иногда соответствующие им катионы (<img src="https://latex.codecogs.com/png.latex?%5Ctext%7BCs%7D%5E+">, <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BRb%7D%5E+">, <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BBa%7D%5E%7B2+%7D">). Анионы обладают большей поляризуемостью (<img src="https://latex.codecogs.com/png.latex?%5Ctext%7BO%7D%5E-">, <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BS%7D%5E-">, <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BBr%7D%5E-">).</p>
<div class="no-row-height column-margin column-container"><div id="fn6"><p><sup>6</sup>&nbsp;атом <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BH%7D"> может быть как неполяризован (в связи <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BCH%7D">), так и поляризован (<img src="https://latex.codecogs.com/png.latex?%5Ctext%7BOH%7D">, <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BNH%7D"> итд)</p></div><div id="fn7"><p><sup>7</sup>&nbsp;если поляризуемостью нельзя принебречь, следует использовать <a href="../../posts/2021-03-00-force-fields/index.html#sec-polarizable-ff">специальные силовые поля</a></p></div></div><p>Индукционное взаимодействие обусловлено мгновенными дипольными моментами, самопроизвольно возникающими у атомов и молекул в следствие флуктуаций электронной плотности и перераспределения заряда. Случайно возникший диполь индуцирует перераспределение электронной плотности в соседних атомах, молекулах и ионах, приводя к появлению у них собственного дипольного момента. Этот тип взаимодействия <em>универсален</em>, т/е проявляется во всех случаях, поскольку возникает самопроизвольно между любыми близкими частицами. В случае ионов, однако, его сила будет малозаметна на фоне более сильного притяжения или отталкивания истинных зарядов.</p>
<p>Индукционные взаимодействия хотя и являются слабыми, играют большую роль: именно они отвечают за гидрофобный эффект, возникающий при контакте 2х фаз (полярной и неполярной), что невозможно не учитывать при моделировании белковых глобул, липидных слоёв и, например, там, где индукционное взаимодействие будет основным или даже единственным — в сжиженных углеводородах или в благородных газах.</p>
<p>Таким образом, вандерваальсовы силы часто сводят к индукционным и приближают их потенциалом Ленарда — Джонса: <span id="eq-U-LJ-theor"><img src="https://latex.codecogs.com/png.latex?%0AU_%7BLJ%7D(r)%20=%204%5Cepsilon%5Cleft%5C%7B%5Cleft(%5Cfrac%7B%5Csigma%7D%7Br%7D%5Cright)%5E%7B12%7D%20-%20%5Cleft(%5Cfrac%7B%5Csigma%7D%7Br%7D%5Cright)%5E6%5Cright%5C%7D,%0A%5Ctag%7B9%7D"></span> где <img src="https://latex.codecogs.com/png.latex?%5Cepsilon"> — глубина потенциальной ямы, <img src="https://latex.codecogs.com/png.latex?%5Csigma"> — расстояние, при котором <img src="https://latex.codecogs.com/png.latex?U_%7BLJ%7D(%5Csigma)=0">; степенная функция <img src="https://latex.codecogs.com/png.latex?r%5E%7B-6%7D"> аппроксимирует притяжение частиц, <img src="https://latex.codecogs.com/png.latex?r%5E%7B-12%7D"> — отталкивание, отсюда это выражение также называют «потенциалом 6-12», он описывает энергию взаимодействия частиц как функцию расстояния между ними.</p>
<p>Существуют и другие параметризации 9: <span id="eq-U-LJ"><img src="https://latex.codecogs.com/png.latex?%0AU_d%20=%20%5Csum_%7Bi%20%3C%20j%7D%20%5Cleft%5C%7B%5Cfrac%7BA_%7Bi,j%7D%7D%7Br_%7Bi,j%7D%5E%7B12%7D%7D%20-%20%5Cfrac%7BB_%7Bi,j%7D%7D%7Br_%7Bi,j%7D%5E6%7D%5Cright%5C%7D,%0A%5Ctag%7B10%7D"></span> также иногда используется потенциал Букиннгема: <img src="https://latex.codecogs.com/png.latex?%0AU_d%20=%20%5Csum_%7Bi%20%3C%20j%7D%20%5Cleft%20%5C%7B%20A_%7Bi,j%7D%20%5Cexp%20(-%20B_%7Bi,j%7D%20r_%7Bi,j%7D)%20-%20%5Cdfrac%7BC_%7Bi,j%7D%7D%7Br_%7Bi,j%7D%5E6%7D%20%5Cright%20%5C%7D,%0A"> где <img src="https://latex.codecogs.com/png.latex?A_%7Bi,j%7D">, <img src="https://latex.codecogs.com/png.latex?B_%7Bi,j%7D"> и <img src="https://latex.codecogs.com/png.latex?C_%7Bi,j%7D"> — константы, параметризующие потенциальную яму для пары взаимодействующих частиц <img src="https://latex.codecogs.com/png.latex?i"> и <img src="https://latex.codecogs.com/png.latex?j">.</p>
</section>
<section id="sec-hydrogen-bond" class="level4">
<h4 class="anchored" data-anchor-id="sec-hydrogen-bond">Водородная связь</h4>
<p>Ввиду своей специфичности, вызванной малыми размерами и высокой плотностью заряда на атоме водорода, иногда полярному водороду приписывают потенциал <span id="eq-U-hydrogen"><img src="https://latex.codecogs.com/png.latex?%0AU_%7Bh%7D=%20%5Csum_%7Bi%20%3C%20j%7D%20%5Cleft%20%5C%7B%20%5Cdfrac%7BA_%7Bi,j%7D'%7D%7Br_%7Bi,j%7D%5E%7B12%7D%7D-%5Cdfrac%7BB_%7Bi,j%7D'%7D%7Br_%7Bi,j%7D%5E%7B10%7D%7D%20%5Cright%20%5C%7D,%0A%5Ctag%7B11%7D"></span> <img src="https://latex.codecogs.com/png.latex?A_%7Bi,j%7D'"> и <img src="https://latex.codecogs.com/png.latex?B_%7Bi,j%7D'"> — аналогично 10 с поправкой на степень при <img src="https://latex.codecogs.com/png.latex?B_%7Bi,j%7D'">. Член <img src="https://latex.codecogs.com/png.latex?r%5E%7B-10%7D"> берётся из феноменологических соображений.</p>



</section>
</section>


<div id="remark42">

</div> ]]></description>
  <category>molecular dynamics</category>
  <category>russian</category>
  <guid>https://vsheg.com/posts/2021-01-00-molecular-interactions/</guid>
  <pubDate>Fri, 01 Jan 2021 00:00:00 GMT</pubDate>
</item>
<item>
  <title>Modeling flammability limits in hydrogen-air mixtures using Mathematica</title>
  <link>https://vsheg.com/posts/2020-05-05-flammability-limits/</link>
  <description><![CDATA[ 




<p>This post demonstrates how to use Mathematica to calculate and visualize the 3 flammability limits that occur in hydrogen-air mixtures. The implementation calculates reaction durations across various pressure and temperature conditions to identify these critical boundaries.</p>
<section id="equations-of-hydrogen-combustion" class="level2" data-number="1">
<h2 data-number="1" class="anchored" data-anchor-id="equations-of-hydrogen-combustion"><span class="header-section-number">1</span> Equations of hydrogen combustion</h2>
<p>The values of constants and kinetic equations are taken from the author of the <code>KINET</code> program A. V. Abramenkov (Lomonosov MSU, Moscow).</p>
<div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode txt code-with-copy"><code class="sourceCode default"><span id="cb1-1">H2 + O2 = OH + OH,      k = 1.48 e + 10, 161.080</span>
<span id="cb1-2">OH + OH = H2 + O2,      k = 4.6 e + 08, 85.600</span>
<span id="cb1-3">OH + H2 = H2O + H,      k = 2 e + 10, 21.760</span>
<span id="cb1-4">H2O + H = OH + H2,      k = 8.5 e + 10, 86.400</span>
<span id="cb1-5">H + O2 = OH + O,        k = 2.5 e + 11, 71.760</span>
<span id="cb1-6">OH + O = H + O2,        k = 2.55 e + 10, 1.570</span>
<span id="cb1-7">O + H2 = OH + H,        k = 5.66 e + 09, 36.610, 1.00</span>
<span id="cb1-8">OH + H = O + H2,        k = 2.46 e + 09, 29.290, 1.00</span>
<span id="cb1-9">O + H2O = OH + OH,      k = 7 e + 10, 77.610</span>
<span id="cb1-10">OH + OH = O + H2O,      k = 6.5 e + 09, 4.810</span>
<span id="cb1-11">H + H + M = H2 + M,     k = 6.5 e + 08</span>
<span id="cb1-12">H2 + M = H + H + M,     k = 6.71 e + 12, 428.860, -1.00</span>
<span id="cb1-13">O + O + M = O2 + M,     k = 6.5 e + 08</span>
<span id="cb1-14">O2 + M = O + O + M,     k = 2.35 e + 13, 500.820, -1.00</span>
<span id="cb1-15">H + OH + M = H2O + M,   k = 1.69 e + 12, , -2.00</span>
<span id="cb1-16">H2O + M = H + OH + M,   k = 2.5 e + 13, 442.670</span>
<span id="cb1-17">OH + OH + M = H2O2 + M, k = 8.75 e + 08, -21.610</span>
<span id="cb1-18">H2O2 + M = OH + OH + M, k = 1.2 e + 14, 191.210</span>
<span id="cb1-19">OH + O + M = HO2 + M,   k = 4.75 e + 10</span>
<span id="cb1-20">HO2 + M = OH + O + M,   k = 1 e + 12, 280.330</span>
<span id="cb1-21">H + O2 + M = HO2 + M,   k = 2.7 e + 09, -6.020</span>
<span id="cb1-22">HO2 + M = H + O2 + M,   k = 2.25 e + 12, 194.140</span>
<span id="cb1-23">HO2 + H2 = H2O2 + H,    k = 7.25 e + 08, 82.840</span>
<span id="cb1-24">H2O2 + H = HO2 + H2,    k = 1.55 e + 09, 16.740</span>
<span id="cb1-25">HO2 + H2 = H2O + OH,    k = 1.15 e + 08, 99.580</span>
<span id="cb1-26">H2O + OH = HO2 + H2,    k = 2.76 e + 07, 232.630, 0.50</span>
<span id="cb1-27">HO2 + H2O = H2O2 + OH,  k = 2.5 e + 10, 135.980</span>
<span id="cb1-28">H2O2 + OH = HO2 + H2O,  k = 1.15 e + 10, 7.410</span>
<span id="cb1-29">HO2 + HO2 = H2O2 + O2,  k = 3 e + 09</span>
<span id="cb1-30">H2O2 + O2 = HO2 + HO2,  k = 2.16 e + 09, 172.380, 0.50</span>
<span id="cb1-31">H + HO2 = OH + OH,      k = 2 e + 11, 7.470</span>
<span id="cb1-32">OH + OH = H + HO2,      k = 1.15 e + 10, 168.620</span>
<span id="cb1-33">H + HO2 = H2O + O,      k = 1.4 e + 10, 8.740</span>
<span id="cb1-34">H2O + O = H + HO2,      k = 5.5 e + 09, 242.670</span>
<span id="cb1-35">H + HO2 = H2 + O2,      k = 4 e + 10, 2.510</span>
<span id="cb1-36">H2 + O2 = H + HO2,      k = 5.5 e + 10, 241.840</span>
<span id="cb1-37">O + HO2 = OH + O2,      k = 3.5 e + 10</span>
<span id="cb1-38">OH + O2 = O + HO2,      k = 3.5 e + 10, 236.400</span>
<span id="cb1-39">H + H2O2 = H2O + OH,    k = 1 e + 12, 44.770</span>
<span id="cb1-40">H2O + OH = H + H2O2,    k = 1.15 e + 11, 333.460</span>
<span id="cb1-41">O + H2O2 = OH + HO2,    k = 2.5 e + 10, 4.600</span>
<span id="cb1-42">OH + HO2 = O + H2O2,    k = 3.8 e + 10, 50.210</span>
<span id="cb1-43">H2 + O2 = H2O + O,      k = 5.5 e + 10, 228.030</span>
<span id="cb1-44">H2O + O = H2 + O2,      k = 5.5 e + 10, 228.030</span>
<span id="cb1-45">H2 + O2 + M = H2O2 + M, k = 3 e + 07, 83.260</span>
<span id="cb1-46">H2O2 + M = H2 + O2 + M, k = 2.75 e + 10, 209.200</span>
<span id="cb1-47">OH + M = O + H + M,     k = 2.5 e + 13, 432.210</span>
<span id="cb1-48">O + H + M = OH + M,     k = 2.55 e + 10</span>
<span id="cb1-49">HO2 + OH = H2O + O2,    k = 2 e + 10, 1.260</span>
<span id="cb1-50">H2O + O2 = HO2 + OH,    k = 1.9 e + 11, 307.520, 0.50</span>
<span id="cb1-51">H2 + O + M = H2O + M,   k = 2.75 e + 08</span>
<span id="cb1-52">H2O + M = H2 + O + M,   k = 2.75 e + 14, 456.060</span>
<span id="cb1-53">O + H2O + M = H2O2 + M, k = 7.5 e + 07, 50.210</span>
<span id="cb1-54">H2O2 + M = O + H2O + M, k = 1.05 e + 12, 190.790</span>
<span id="cb1-55">O + H2O2 = H2O + O2,    k = 1.3 e + 08, 112.970</span>
<span id="cb1-56">H2O + O2 = O + H2O2,    k = 1.25 e + 09, 445.600</span>
<span id="cb1-57">H2 + H2O2 = H2O + H2O,  k = 1.3 e + 10, 87.860</span>
<span id="cb1-58">H2O + H2O = H2 + H2O2,  k = 3.5 e + 09, 460.240</span>
<span id="cb1-59">H + HO2 + M = H2O2 + M, k = 1.9 e + 08, 5.230</span>
<span id="cb1-60">H2O2 + M = H + HO2 + M, k = 1.5 e + 12, 380.740</span></code></pre></div>
<p>Save the above data in a file named <code>H2Burn.kin</code> in the same directory as this notebook.</p>
</section>
<section id="extract-data-from-file" class="level2" data-number="2">
<h2 data-number="2" class="anchored" data-anchor-id="extract-data-from-file"><span class="header-section-number">2</span> Extract data from file</h2>
<p>We start by importing the reaction data from the file. The data is in a text format, so we use <code>Import</code> to read it:</p>
<div class="sourceCode" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode mathematica code-with-copy"><code class="sourceCode mathematica"><span id="cb2-1">str <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Import</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"H2Burn.kin"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Text"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span>;</span></code></pre></div>
<p>Now we parse the reaction data. Each line contains a reaction equation and kinetic parameters:</p>
<div class="sourceCode" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode mathematica code-with-copy"><code class="sourceCode mathematica"><span id="cb3-1">lines <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Replace</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span></span>
<span id="cb3-2">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">StringSplit</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">StringSplit</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span>str<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">\n</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">],</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">RegularExpression</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">",</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">\\</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">s+"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]],</span></span>
<span id="cb3-3">  <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{{</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">eq_</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">k_</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span>:&gt;<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>eq<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">k</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">},{</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">eq_</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">A_</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Ea_</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span>:&gt;<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>eq<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">A</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span>Ea<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}},</span></span>
<span id="cb3-4">  <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span></span>
<span id="cb3-5"><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span>;</span></code></pre></div>
<p>Next, we extract the different components from our parsed data:</p>
<div class="sourceCode" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode mathematica code-with-copy"><code class="sourceCode mathematica"><span id="cb4-1"><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>reactionStrings<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> preExponential<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> activations<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> empirical<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> Transpose@lines;</span></code></pre></div>
<p>The pre-exponential factors need to be converted to numerical values:</p>
<div class="sourceCode" id="cb5" style="background: #f1f3f5;"><pre class="sourceCode mathematica code-with-copy"><code class="sourceCode mathematica"><span id="cb5-1">preExponential <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> Interpreter<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Number"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span>@<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">*</span>StringDelete<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">RegularExpression</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">\\</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">s+"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]]</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>@StringTrim<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span>preExponential<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,{</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"k = "</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}]</span><span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">/.</span><span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">Null</span><span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">-&gt;</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>;</span></code></pre></div>
<p>Similarly, we process the activation energies and empirical coefficients:</p>
<div class="sourceCode" id="cb6" style="background: #f1f3f5;"><pre class="sourceCode mathematica code-with-copy"><code class="sourceCode mathematica"><span id="cb6-1">activations <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1000</span>ToExpression<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>@activations<span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">/.</span><span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">Null</span><span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">-&gt;</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>;</span>
<span id="cb6-2">empirical <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">ToExpression</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>@empirical;</span></code></pre></div>
<p>We transform the reaction strings into rule-based format for easier processing:</p>
<div class="sourceCode" id="cb7" style="background: #f1f3f5;"><pre class="sourceCode mathematica code-with-copy"><code class="sourceCode mathematica"><span id="cb7-1">rules <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> Rule@@@(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">StringSplit</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span>#<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">" + "</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span>&amp;<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>@StringSplit<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span>reactionStrings<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">" = "</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span>)<span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">/.</span><span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">Null</span><span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">-&gt;</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>;</span></code></pre></div>
<p>Finally, we extract all unique reagents from the reactions:</p>
<div class="sourceCode" id="cb8" style="background: #f1f3f5;"><pre class="sourceCode mathematica code-with-copy"><code class="sourceCode mathematica"><span id="cb8-1">reagents <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> DeleteDuplicates@Flatten<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span>List@@@rules<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span>;</span></code></pre></div>
</section>
<section id="transform-data-to-system-of-equations" class="level2" data-number="3">
<h2 data-number="3" class="anchored" data-anchor-id="transform-data-to-system-of-equations"><span class="header-section-number">3</span> Transform data to system of equations</h2>
<p>Now we’ll create a function that builds differential equations for each reagent. This function identifies reactions involving a specific reagent and computes its rate of change:</p>
<div class="sourceCode" id="cb9" style="background: #f1f3f5;"><pre class="sourceCode mathematica code-with-copy"><code class="sourceCode mathematica"><span id="cb9-1">makeEq<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">reag_</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">:=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Module</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[{</span>mask<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> factors<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> act<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> pre<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> emp<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> consts<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">},</span></span>
<span id="cb9-2">  mask <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Map</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span>Not@<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">*</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">FreeQ</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span>reag<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">],</span> rules<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span>;</span>
<span id="cb9-3">  factors <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Cases</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span></span>
<span id="cb9-4">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Pick</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span>rules<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> mask<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">],</span></span>
<span id="cb9-5">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">HoldPattern</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">r_</span><span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">-&gt;</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">p_</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span> :&gt; Times@@(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span>#<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">][</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">t</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span>&amp;<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>@r)(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Count</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span>reag<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span>@p<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Count</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span>reag<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span>@r)</span>
<span id="cb9-6">  <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span>;</span>
<span id="cb9-7">  act <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Pick</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span>activations<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> mask<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span>;</span>
<span id="cb9-8">  pre <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Pick</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span>preExponential<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> mask<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span>;</span>
<span id="cb9-9">  emp <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Pick</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span>empirical<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> mask<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span>;</span>
<span id="cb9-10">  consts <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Replace</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span></span>
<span id="cb9-11">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Transpose</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[{</span>pre<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> act<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> emp<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}],</span></span>
<span id="cb9-12">    <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">a_</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">e_</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">n_</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span> :&gt; <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">a</span> (<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">T</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">298</span>)<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">^</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">n</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Exp</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span>( <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">e</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>(<span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">8.31</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">T</span>))<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">],</span></span>
<span id="cb9-13">    <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span></span>
<span id="cb9-14">  <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span>;</span>
<span id="cb9-15">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span>reag<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span>'<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">t</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">==</span> factors . consts</span>
<span id="cb9-16"><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span></span></code></pre></div>
<p>The rate constants follow the Arrhenius equation with temperature dependence.</p>
<p>Next, we build a complete system of differential equations for all reagents:</p>
<div class="sourceCode" id="cb10" style="background: #f1f3f5;"><pre class="sourceCode mathematica code-with-copy"><code class="sourceCode mathematica"><span id="cb10-1">makeSys<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">init_</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">temp_</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">:=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Module</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[{</span>eqs<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> inits<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> unconditioned<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> sys<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">},</span></span>
<span id="cb10-2">  eqs <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> makeEq<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>@reagents;</span>
<span id="cb10-3">  unconditioned <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Complement</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span>reagents<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">First</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>@init<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span>;</span>
<span id="cb10-4">  inits <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> init<span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">/.</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">HoldPattern</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">r_</span><span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">-&gt;</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">conc_</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span>:&gt;<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">r</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">][</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">==</span>conc;</span>
<span id="cb10-5">  unconditioned <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span>#<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">][</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">==</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>&amp;<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>@unconditioned;</span>
<span id="cb10-6"></span>
<span id="cb10-7">  sys <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Join</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span>eqs<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> inits<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> unconditioned<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span><span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">/.</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">T</span><span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">-&gt;</span>temp;</span>
<span id="cb10-8">  sys <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Select</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span>sys<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">FreeQ</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span>#<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"M"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span>'<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">t</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">==</span><span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">0.</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span>&amp;&amp;<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">FreeQ</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span>#<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"M"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">][</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]]</span>&amp;<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span>;</span>
<span id="cb10-9">  sys <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> sys<span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">/.</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"M"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">][</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">t</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span><span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">-&gt;</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"H2"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">][</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">t</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"N2"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">][</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">t</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"O2"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">][</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">t</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span>;</span>
<span id="cb10-10">  sys <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> sys<span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">/.</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"N2"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">][</span>_<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span><span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">-&gt;</span>cN2;</span>
<span id="cb10-11">  sys <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> sys<span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">/.</span><span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">True</span><span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">-&gt;</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Nothing</span>;</span>
<span id="cb10-12"></span>
<span id="cb10-13">  sys</span>
<span id="cb10-14"><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span></span></code></pre></div>
<p>Prepare the list of variables for which we’ll solve the system:</p>
<div class="sourceCode" id="cb11" style="background: #f1f3f5;"><pre class="sourceCode mathematica code-with-copy"><code class="sourceCode mathematica"><span id="cb11-1">vars <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> DeleteDuplicates@DeleteCases<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Map</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span>#<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">][</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">t</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span>&amp;<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> reagents<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">],</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"M"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">][</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">t</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]]</span>;</span></code></pre></div>
<p>Now we define the solver function that will integrate our system of ODEs:</p>
<div class="sourceCode" id="cb12" style="background: #f1f3f5;"><pre class="sourceCode mathematica code-with-copy"><code class="sourceCode mathematica"><span id="cb12-1">sol<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">cH2_</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">cO2_</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">cN2_</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">T_</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">tmax_</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">:=</span></span>
<span id="cb12-2">  Quiet@Module<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[{</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">end</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> sol1<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">},</span></span>
<span id="cb12-3">    sol1 <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">First</span> @ <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">NDSolve</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span></span>
<span id="cb12-4">      makeSys<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[{</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"H2"</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">-&gt;</span> cH2<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"O2"</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">-&gt;</span> cO2<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"N2"</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">-&gt;</span> cN2<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">},</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">T</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">],</span></span>
<span id="cb12-5">      vars<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb12-6">      <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">t</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> tmax<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">},</span></span>
<span id="cb12-7">      <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Method</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span></span>
<span id="cb12-8">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"EventLocator"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb12-9">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Event"</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"H2"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">][</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">t</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span> &lt;<span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> cH2 <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span> <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">||</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"O2"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">][</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">t</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span> &lt;<span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> cO2 <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">},</span></span>
<span id="cb12-10">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"EventAction"</span> :&gt; <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Throw</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">end</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">t</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"StopIntegration"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span></span>
<span id="cb12-11">      <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span></span>
<span id="cb12-12">    <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span>;</span>
<span id="cb12-13">    <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>sol1<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">end</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span></span>
<span id="cb12-14">  <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span></span></code></pre></div>
</section>
<section id="define-measurable-metrics" class="level2" data-number="4">
<h2 data-number="4" class="anchored" data-anchor-id="define-measurable-metrics"><span class="header-section-number">4</span> Define measurable metrics</h2>
<p>Now we define functions to characterize the flammability limits. First, a function to calculate reaction duration at a given pressure and temperature:</p>
<div class="sourceCode" id="cb13" style="background: #f1f3f5;"><pre class="sourceCode mathematica code-with-copy"><code class="sourceCode mathematica"><span id="cb13-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">ClearAll</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span>duration<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span>;</span>
<span id="cb13-2">duration<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">p_</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">T_</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">:=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Module</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[{</span></span>
<span id="cb13-3">  coeffs <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span><span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">6.9797</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">1.4657</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">5.5140</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">^-</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb13-4">  press</span>
<span id="cb13-5">  <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">},</span></span>
<span id="cb13-6">  press <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> coeffs<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">p</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">p</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">p</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span>;</span>
<span id="cb13-7">  Last@sol<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span>Sequence@@press<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">T</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span></span>
<span id="cb13-8"><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span></span></code></pre></div>
<p>Next, we define a function to calculate data points across a range of pressures and temperatures:</p>
<div class="sourceCode" id="cb14" style="background: #f1f3f5;"><pre class="sourceCode mathematica code-with-copy"><code class="sourceCode mathematica"><span id="cb14-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">ClearAll</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span>calculate<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span>;</span>
<span id="cb14-2">calculate<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[{</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">logPmin_</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">logPmax_</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">},</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Tmin_</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Tmax_</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">},</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">grid_</span>:<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">:=</span></span>
<span id="cb14-3">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Flatten</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span>#<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span>&amp; @ <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">ParallelTable</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span></span>
<span id="cb14-4">    <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">T</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">p</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Log10</span> @ duration<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">p</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">T</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]},</span></span>
<span id="cb14-5">    <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">p</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">^</span>Subdivide<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span>logPmin<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> logPmax<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">grid</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]},</span></span>
<span id="cb14-6">    <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">T</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> Subdivide<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span>Tmin<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> Tmax<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">grid</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]}</span></span>
<span id="cb14-7">  <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span>;</span></code></pre></div>
</section>
<section id="start-parallel-calculations-and-plot-results" class="level2" data-number="5">
<h2 data-number="5" class="anchored" data-anchor-id="start-parallel-calculations-and-plot-results"><span class="header-section-number">5</span> Start parallel calculations and plot results</h2>
<p>Now we run our calculation across a range of pressures (10^-3 to 10^3 atm) and temperatures (600 to 1000 K):</p>
<div class="sourceCode" id="cb15" style="background: #f1f3f5;"><pre class="sourceCode mathematica code-with-copy"><code class="sourceCode mathematica"><span id="cb15-1">data <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> calculate<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[{</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">},</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">600</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1000</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">},</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span>;</span></code></pre></div>
<p>Finally, we visualize the results as a contour plot showing the three distinct flammability limits:</p>
<div class="sourceCode" id="cb16" style="background: #f1f3f5;"><pre class="sourceCode mathematica code-with-copy"><code class="sourceCode mathematica"><span id="cb16-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">ListContourPlot</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span></span>
<span id="cb16-2">  data<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb16-3">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">ClippingStyle</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">Automatic</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb16-4">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">ScalingFunctions</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span><span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">None</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Log10"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">},</span></span>
<span id="cb16-5">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Epilog</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span></span>
<span id="cb16-6">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Text</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Style</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"1st limit"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">20</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">White</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">],</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Scaled</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[{</span>.<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">7</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> .<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}]],</span></span>
<span id="cb16-7">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Text</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Style</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2nd limit"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">20</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">White</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">],</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Scaled</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[{</span>.<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">7</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> .<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}],</span> <span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">Automatic</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">0.4</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}],</span></span>
<span id="cb16-8">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Text</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Style</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"3rd limit"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">20</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">White</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">],</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Scaled</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[{</span>.<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> .<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">7</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}],</span> <span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">Automatic</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">0.2</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}]</span></span>
<span id="cb16-9">  <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">},</span></span>
<span id="cb16-10">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">FrameLabel</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"T, K"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"p, atm"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">},</span></span>
<span id="cb16-11">  PlotLegends <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">Automatic</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb16-12">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">ColorFunction</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"TemperatureMap"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb16-13">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">PlotLabel</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"-lg [duration]"</span></span>
<span id="cb16-14"><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span></span></code></pre></div>
<p><a href="diagram.png" class="lightbox" data-gallery="quarto-lightbox-gallery-1"><img src="https://vsheg.com/posts/2020-05-05-flammability-limits/diagram.png" class="img-fluid" style="width:50.0%"></a></p>
<p>The resulting plot shows three distinct regions corresponding to the three flammability limits of hydrogen-air mixtures. These limits represent boundaries where combustion becomes sustainable or unsustainable based on mixture composition, pressure, and temperature conditions.</p>


</section>

<div id="remark42">

</div> ]]></description>
  <category>chemistry</category>
  <category>mathematica</category>
  <guid>https://vsheg.com/posts/2020-05-05-flammability-limits/</guid>
  <pubDate>Tue, 05 May 2020 00:00:00 GMT</pubDate>
</item>
<item>
  <title>Calculation of pH titration curves in Mathematica</title>
  <link>https://vsheg.com/posts/2018-11-05-pH-titration-mathematica/</link>
  <description><![CDATA[ 




<p>Computer algebra systems are useful for solving chemical equilibria. Here, a simple example is presented: the titration of a dibasic acid with a strong base. The goal is to derive the pH titration curve and identify the equivalence points.</p>
<section id="chemical-equilibria" class="level2" data-number="1">
<h2 data-number="1" class="anchored" data-anchor-id="chemical-equilibria"><span class="header-section-number">1</span> Chemical equilibria</h2>
<p>A dibasic acid <img src="https://latex.codecogs.com/png.latex?H_%7B2%7DZ"> dissociates in water in 2 steps:</p>
<p><img src="https://latex.codecogs.com/png.latex?%5Ctext%7B%20H%7D_%7B2%7D%5Ctext%7BZ%20%7D%20+%20%5Ctext%7B%20H%7D_%7B2%7D%5Ctext%7BO%20%7D%20%5Crightarrow%20%5Ctext%7B%20H%7D_%7B3%7DO%5E%7B+%7D%20+%20%5Ctext%7B%20HZ%7D%5E%7B-%7D"> <img src="https://latex.codecogs.com/png.latex?%5Ctext%7B%20HZ%7D%5E%7B-%7D%20+%20%5Ctext%7B%20H%7D_%7B2%7D%5Ctext%7BO%20%7D%20%5Crightarrow%20%5Ctext%7B%20H%7D_%7B3%7DO%5E%7B+%7D%20+%20%5Ctext%7B%20Z%7D%5E%7B2%20-%7D"></p>
<p>During titration with a base like <img src="https://latex.codecogs.com/png.latex?%5Ctext%7BNaOH%7D">, the pH changes, and this can be modeled with a system of equations.</p>
<p>To model equilibria, we need to write three types of equations:</p>
<ul>
<li><p>Equations of charge balance to ensure that the total charge in the solution is zero. <img src="https://latex.codecogs.com/png.latex?%5Cunderset%7B%5Ctext%7B%20positive%20ions%7D%7D%7B%5Cunderbrace%7B%5Cleft%5Clbrack%20H%5E%7B+%7D%20%5Cright%5Crbrack%20+%20%5Cleft%5Clbrack%20%5Ctext%7BNa%7D%5E%7B+%7D%20%5Cright%5Crbrack%7D%7D%20=%20%5Cunderset%7B%5Ctext%7B%20negative%20ions%7D%7D%7B%5Cunderbrace%7B%5Cleft%5Clbrack%20%5Ctext%7BOH%7D%5E%7B-%7D%20%5Cright%5Crbrack%20+%20%5Cleft%5Clbrack%20%5Ctext%7BHZ%7D%5E%7B-%7D%20%5Cright%5Crbrack%20+%202%5Cleft%5Clbrack%20Z%5E%7B2%20-%7D%20%5Cright%5Crbrack%7D%7D"></p></li>
<li><p>So-called mass balance equations which impose conservation of matter (ions and atoms of each type). <img src="https://latex.codecogs.com/png.latex?%5Cleft%5Clbrack%20H_%7B2%7DZ%20%5Cright%5Crbrack%20+%20%5Cleft%5Clbrack%20%5Ctext%7BHZ%7D%5E%7B-%7D%20%5Cright%5Crbrack%20+%20%5Cleft%5Clbrack%20Z%5E%7B2%20-%7D%20%5Cright%5Crbrack%20=%20C%20-%20%5Cleft%5Clbrack%20%5Ctext%7BNa%7D%5E%7B+%7D%20%5Cright%5Crbrack"> <img src="https://latex.codecogs.com/png.latex?%5Cleft%5Clbrack%20%5Ctext%7BNa%7D%5E%7B+%7D%20%5Cright%5Crbrack%20=%20%5Cleft(%20C%20-%20%5Cleft%5Clbrack%20%5Ctext%7BNa%7D%5E%7B+%7D%20%5Cright%5Crbrack%20%5Cright)%20%5Ccdot%20%5Ctau"> As we add base, the concentration of the acid decreases and the concentration of the conjugate base increases. The parameter <img src="https://latex.codecogs.com/png.latex?%5Ctau"> represents the degree of titration - when <img src="https://latex.codecogs.com/png.latex?%5Ctau%20=%201">, we’ve added exactly enough base to neutralize the 1st proton in all acid molecules, and when <img src="https://latex.codecogs.com/png.latex?%5Ctau%20=%202">, we’ve neutralized both protons.</p></li>
<li><p>All equilibrium constants for all reactions in the system. <img src="https://latex.codecogs.com/png.latex?10%5E%7B-%20pK_%7Ba,1%7D%7D%20=%20%5Cfrac%7B%5Cleft%5Clbrack%20H%5E%7B+%7D%20%5Cright%5Crbrack%20%5Ccdot%20%5Cleft%5Clbrack%20%5Ctext%7BHZ%7D%5E%7B-%7D%20%5Cright%5Crbrack%7D%7B%5Cleft%5Clbrack%20H_%7B2%7DZ%20%5Cright%5Crbrack%7D,%5Cquad%2010%5E%7B-%20pK_%7Ba,2%7D%7D%20=%20%5Cfrac%7B%5Cleft%5Clbrack%20H%5E%7B+%7D%20%5Cright%5Crbrack%20%5Ccdot%20%5Cleft%5Clbrack%20Z%5E%7B2%20-%7D%20%5Cright%5Crbrack%7D%7B%5Cleft%5Clbrack%20%5Ctext%7BHZ%7D%5E%7B-%7D%20%5Cright%5Crbrack%7D"> <img src="https://latex.codecogs.com/png.latex?10%5E%7B-%20pK_%7Bw%7D%7D%20=%20%5Cleft%5Clbrack%20H%5E%7B+%7D%20%5Cright%5Crbrack%20%5Ccdot%20%5Cleft%5Clbrack%20%5Ctext%7BOH%7D%5E%7B-%7D%20%5Cright%5Crbrack"> These equations represent stepwise acid constants <img src="https://latex.codecogs.com/png.latex?K_%7Ba,1%7D">, <img src="https://latex.codecogs.com/png.latex?K_%7Ba,2%7D"> and water ion product <img src="https://latex.codecogs.com/png.latex?K_%7Bw%7D"> respectively.</p></li>
</ul>
<p>In <em>Mathematica</em>, the system of equations can be represented as:</p>
<div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode mathematica code-with-copy"><code class="sourceCode mathematica"><span id="cb1-1">sys <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span></span>
<span id="cb1-2">  <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">^-</span>pKa1 <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">==</span> (<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"H+"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"HZ-"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span>)<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"H2Z"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">],</span></span>
<span id="cb1-3">  <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">^-</span>pKa2 <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">==</span> (<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"H+"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Z2-"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span>)<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"HZ-"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">],</span></span>
<span id="cb1-4">  <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">^-</span>pKw <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">==</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"H+"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"OH-"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">],</span></span>
<span id="cb1-5">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"H2Z"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span> <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"HZ-"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span> <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Z2-"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">==</span> conc <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Na+"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">],</span></span>
<span id="cb1-6">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Na+"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">==</span> (conc <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Na+"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span>) τ<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb1-7">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"H+"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span> <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Na+"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">==</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"OH-"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span> <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"HZ-"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span> <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Z2-"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span></span>
<span id="cb1-8"><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span></span></code></pre></div>
</section>
<section id="solving-the-system" class="level2" data-number="2">
<h2 data-number="2" class="anchored" data-anchor-id="solving-the-system"><span class="header-section-number">2</span> Solving the system</h2>
<p><em>Mathematica</em> can be used to solve the system of equations. We will use the <code>Eliminate</code> function to remove intermediate variables and get a single equation in terms of the hydrogen ion concentration <img src="https://latex.codecogs.com/png.latex?c%5Cleft%5Clbrack%20%5Ctext%7BH+%7D%20%5Cright%5Crbrack"> and our parameters.</p>
<div class="sourceCode" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode mathematica code-with-copy"><code class="sourceCode mathematica"><span id="cb2-1">elim <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Eliminate</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span></span>
<span id="cb2-2">  sys<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb2-3">  <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"OH-"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">],</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"H2Z"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">],</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"HZ-"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">],</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Z2-"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">],</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Na+"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]}</span></span>
<span id="cb2-4"><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span>;</span></code></pre></div>
<p>The <code>Eliminate</code> function removes intermediate variables, giving us a single equation in terms of <code>c["H+"]</code> and our parameters.</p>
<p>Now we can solve for the hydrogen ion concentration:</p>
<div class="sourceCode" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode mathematica code-with-copy"><code class="sourceCode mathematica"><span id="cb3-1">sol <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Solve</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span>elim<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"H+"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]]</span>;</span></code></pre></div>
<p>This gives us multiple possible solutions, but only one will be physically meaningful for our chemistry problem.</p>
</section>
<section id="substituting-numerical-values" class="level2" data-number="3">
<h2 data-number="3" class="anchored" data-anchor-id="substituting-numerical-values"><span class="header-section-number">3</span> Substituting numerical values</h2>
<p>To make our calculations concrete, we’ll use specific values for our constants.</p>
<p>Malic acid is a dibasic organic acid found in many fruits, with pKa values of 3.40 and 5.20. We’re modeling a solution with 1 molar concentration and titrating at 25°C.</p>
<div class="sourceCode" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode mathematica code-with-copy"><code class="sourceCode mathematica"><span id="cb4-1">consts <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> &lt;<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|</span></span>
<span id="cb4-2">  pKa1 <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">3.40</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb4-3">  pKa2 <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">5.20</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">(* malic acid *)</span></span>
<span id="cb4-4">  pKw <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">14.</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span>    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">(* ion-product of water at 25 °C *)</span></span>
<span id="cb4-5">  waterConc <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">55.35</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span>         <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">(* at 25 °C *)</span></span>
<span id="cb4-6">  conc <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span>                  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">(* acid concentration *)</span></span>
<span id="cb4-7">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Na+"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">-&gt;</span> τ               <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">(* titrant *)</span></span>
<span id="cb4-8"><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|</span>&gt;;</span></code></pre></div>
<p>Near the equivalence point, the pH changes rapidly, requiring high precision calculations:</p>
<div class="sourceCode" id="cb5" style="background: #f1f3f5;"><pre class="sourceCode mathematica code-with-copy"><code class="sourceCode mathematica"><span id="cb5-1">consts <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">SetPrecision</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span>#<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">100</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span> &amp; <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>@ consts;</span></code></pre></div>
<p>Now we convert our hydrogen ion concentration to pH values:</p>
<div class="sourceCode" id="cb6" style="background: #f1f3f5;"><pre class="sourceCode mathematica code-with-copy"><code class="sourceCode mathematica"><span id="cb6-1">solList <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Log10</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"H+"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]]</span><span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">/.</span>sol<span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">/.</span>consts;</span></code></pre></div>
<p>And select the physically meaningful solution:</p>
<div class="sourceCode" id="cb7" style="background: #f1f3f5;"><pre class="sourceCode mathematica code-with-copy"><code class="sourceCode mathematica"><span id="cb7-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">f</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span>τ_<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> solList<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[[</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]]</span>;</span></code></pre></div>
<p>The function f[τ] now gives us the pH at any point during the titration.</p>
</section>
<section id="visualizing-the-titration-curve" class="level2" data-number="4">
<h2 data-number="4" class="anchored" data-anchor-id="visualizing-the-titration-curve"><span class="header-section-number">4</span> Visualizing the titration curve</h2>
<p>Let’s calculate points for our titration curve, sampling τ from 0 (no added base) to 2.5 (excess base):</p>
<div class="sourceCode" id="cb8" style="background: #f1f3f5;"><pre class="sourceCode mathematica code-with-copy"><code class="sourceCode mathematica"><span id="cb8-1">titrationCurve <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Table</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[{</span>τ<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">f</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span>τ<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]},</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>τ<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">2.5</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1000</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}]</span>;</span></code></pre></div>
<p>The derivative of the pH curve helps identify equivalence points, where we see sharp changes in pH:</p>
<div class="sourceCode" id="cb9" style="background: #f1f3f5;"><pre class="sourceCode mathematica code-with-copy"><code class="sourceCode mathematica"><span id="cb9-1">df <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> f';</span></code></pre></div>
<p>We’ll calculate this derivative curve as well:</p>
<div class="sourceCode" id="cb10" style="background: #f1f3f5;"><pre class="sourceCode mathematica code-with-copy"><code class="sourceCode mathematica"><span id="cb10-1">diffCurve <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">Table</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[{</span>τ<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> Chop@df<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span>τ<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]},</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>τ<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">2.5</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1000</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}]</span>;</span></code></pre></div>
<p>Finally, we can plot both curves:</p>
<div class="sourceCode" id="cb11" style="background: #f1f3f5;"><pre class="sourceCode mathematica code-with-copy"><code class="sourceCode mathematica"><span id="cb11-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">plot</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">ListLinePlot</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span></span>
<span id="cb11-2">  <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>titrationCurve<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> diffCurve<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">},</span></span>
<span id="cb11-3">  PlotLegends <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"pH(τ)"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"dpH/dτ"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">},</span></span>
<span id="cb11-4">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">PlotRange</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{{</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">2.5</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">},</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">14</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}},</span></span>
<span id="cb11-5">  PlotTheme <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Detailed"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb11-6">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">FrameLabel</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"degree of titration τ"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span></span>
<span id="cb11-7"><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span></span></code></pre></div>
<p><a href="titration-curve.png" class="lightbox" data-gallery="quarto-lightbox-gallery-1"><img src="https://vsheg.com/posts/2018-11-05-pH-titration-mathematica/titration-curve.png" class="img-fluid" style="width:50.0%"></a></p>
<p>The differential curve (<img src="https://latex.codecogs.com/png.latex?%5Cfrac%7B%5Cmathrm%7Bd%7D%5Ctext%7BpH%7D%7D%7B%5Cmathrm%7Bd%7D%5Ctau%7D">) shows peaks at these equivalence points. The buffer regions, where pH changes slowly, occur around <img src="https://latex.codecogs.com/png.latex?%5Ctau%20=%200.5"> and <img src="https://latex.codecogs.com/png.latex?%5Ctau%20=%201.5">.</p>
<p>These buffer regions correspond to solutions where the ratio of acid to conjugate base forms provides resistance to pH changes upon addition of small amounts of strong base or acid.</p>
<p>With this analytical approach, we can predict titration behavior for any dibasic acid by simply changing the <img src="https://latex.codecogs.com/png.latex?pK_%7Ba%7D"> values in our model.</p>


</section>

<div id="remark42">

</div> ]]></description>
  <category>chemistry</category>
  <category>mathematica</category>
  <guid>https://vsheg.com/posts/2018-11-05-pH-titration-mathematica/</guid>
  <pubDate>Mon, 05 Nov 2018 00:00:00 GMT</pubDate>
</item>
</channel>
</rss>
